@charset "utf-8";

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #1E1E1E;
  border-radius: 0;
}

:root{
    --body-color: #181D27;
    /*--text-color-light: #B1B1B1;*/
    --text-color: #414651;
    --primary-color: #104D84;
    --border-color: #EBEEF7;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: var(--body-color);
}
.inter_font {
  font-family: "Inter", sans-serif;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  transition: all 0.3s;
}

a:focus,
a:hover {
  text-decoration: none;
}

h4{font-size: 20px}

h6{font-size: 14px}

.rounded {
    border-radius: 15px !important;
}

.border {
    border: 1px solid var(--border-color) !important;
}

.gap-20{
    gap:20px;
}

.gap-15{
    gap:15px;
}

p{
  color: var(--text-color);
}

.btn {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    height: 45px;
    border: none !important;
    line-height: 45px;
    padding: 0 15px;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    transition: all .3s ease-in-out;
    max-width: 100%;
}

.btn:hover, .btn:focus {
    background-color: var(--primary-color);
    color: #fff;
}

.header{
  background-color: #fff;
  position: relative;
  padding: 10px 0;
}
.nav_btn {
  display: flex;
  align-items: center;
}
.nav_btn span {
    height: 45px;
    line-height: 45px;
    font-size: 16px;
    padding: 0 15px;
    min-width: 120px;
    background-color: var(--primary-color);
    color: #fff;
    display: inline-block;
    border-radius: 50px;
}
.nav_btn i {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
}


.navbar-brand {
  margin: 0;
}

.navbar-brand img{
    width: 100px;
}
.navbar-nav {
    list-style: disc;
    margin: 0 70px;
}
.navbar-nav li{
  margin-left: 40px;
}
.nav-link {
  font-family: "Inter", sans-serif;
  color: #0D0D0D;
  font-size: 16px;
  text-transform: capitalize;
  padding: 0 !important;
}

.nav-link:hover {
  color: var(--primary-color);
}

.lang_btn {
    width: 45px;
    height: 45px;
    border-radius: 16px;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.hero{
  padding: 80px 0;
  overflow: hidden;
  background-image: url(../images/Hero.png);
  background-size: cover;
  margin-top: -80px;
  padding-top: 160px;
}

.hero h1 {
    font-size: 96px;
    font-weight: 500;
    color: #ffffff;
}
.hero h1 span{
  background-color: var(--primary-color);
  border-radius: 32px;
  padding: 0 5px;
}

.hero p{
  font-size: 23px;
  color: #fff;
  width: 485px;
  max-width: 100%;
  font-weight: 100;
  margin-bottom: 20px;
}

.download_btn{
  border: 1px solid #A6A6A6;
  border-radius: 9px;
  overflow: hidden;
}
.download_btn img{
  width: 100%;
}
.hero .right_hero h2{
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 15px;
}
.hero .right_hero h2 img{
  background-color: #F6FEF9;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  padding: 8px;
}
.hero .right_hero p{
  font-size: 18px;
}

.statistic .block{
  text-align: center;
}

.statistic .block h3{
  font-size: 38px;
  font-weight: bold;
  color: #fff;
}

.statistic .block h5{
  font-size: 18px;
  color: #ffffff;
  line-height: 20px;
  margin-bottom: 0;
  opacity: 0.5;
  font-weight: 400;
}
span.blue{
  color: var(--primary-color);
}

.about{
  padding: 60px 0;
}
.title {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 60px;
}
.title h2{
  font-size: 48px;
  font-weight: bold;
  color: #000;
  text-align: center;
}
.title p{
  font-size: 18px;
  line-height: 28px;
  text-align: center;
}

.about .card{
  padding: 20px;
  border-radius: 24px;
  background-color: var(--primary-color);
  position: relative;
}
.about .card .bg{
  position: absolute;
  top: 15px;
  right: 0;
}
.about .card .icon-box{
  width: 64px;
  height: 64px;
  background: linear-gradient(154.82deg, #F0F6F9 -136.1%, #104D84 88.82%);
  border: 2px solid #FFFFFF;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about .card .icon-box img{max-width: 100%}
.about .card h4{
  font-size: 24px;
  line-height: 36px;
  color: #ffffff;
  font-weight: bold;
  margin: 20px 0;
}
.about .card p{
  color: #ffffff;
  width: 90%;
}

.features{
  padding: 60px 0;
  position: relative;
}
.features .card{
  padding: 15px;
  background: #F9FAFB;
  border-radius: 8px;
  font-weight: bold;
  border: none;
  flex: 1;
  transition: all .3s;
  background: linear-gradient(154.82deg, #F9FAFB -136.1%, #F9FAFB 88.82%);
}
.features .card h2{
  font-size: 16px;
  line-height: 60px;
  color: #535862;
  transition: all .4s;
}
.features .card h3 {
    font-size: 16px;
    transition: all .4s;
    width: 90%;
    line-height: 30px;
}

.feature_block{
  background: #F7F9FF;
  border-radius: 16px;
  padding: 32px;
  position: relative;
}
.feature_block img{
  border-radius: 16px;
}
.feature_block img.feature_shape {
    height: 97%;
    width: auto;
    position: absolute;
    top: 0;
    right: 47%;
}
.feature_block div{
  z-index: 9;
}
.feature_block h2{
  font-size: 60px;
  font-weight: bold;
  color: var(--primary-color);
  font-family: "Inter", sans-serif;
}
.feature_block h3{
  font-size: 36px;
  font-weight: bold;
  color: var(--body-color);
  font-family: "Inter", sans-serif;
  width: 60%;
}
.feature_block p{
  color: #414651;
  font-family: "Inter", sans-serif;
}
.feature_block ul{
  padding: 0;
  list-style: none;
}
.feature_block ul li{
  color: #0D0D0D;
  line-height: 24px;
  position: relative;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature_block ul li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 9999px;
  width: 24px;
  height: 24px;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.features .nav-tabs{
  display: flex;
  gap: 15px;
  border: none;
}
.nav-tabs li{
  flex: 1;
}
.nav-tabs .nav-link{
  border: none !important;
  border-radius: 0;
  box-shadow: none !important;
  text-align: start;
}
.nav-tabs .nav-link.active .card{
  background: linear-gradient(154.82deg, #F0F6F9 -136.1%, #104D84 88.82%);
}
.nav-tabs .nav-link.active .card h2{
  color: #fff;
  font-size: 60px;
}
.nav-tabs .nav-link.active .card h3{
  color: #fff;
}
.features .tab-content{
  margin-top: 50px;
}

.customers{
  padding-top: 60px;
  padding-bottom: 20px;
}
.customers .row{
  background-image: url(../images/review_bg.png);
  background-size: 100% 100%;
  background-position: center;
}
.customers .col-md-4:first-child{
  padding-top: 140px;
}
.customers .col-md-4:last-child{
  padding-top: 90px;
}
.reveiw_block{
  display: flex;
  gap: 15px;
  background: #FFFFFF;
  border: 0.5px solid rgba(16, 77, 132, 0.6);
  border-radius: 16px;
  padding: 32px 24px;
  font-family: "Inter", sans-serif;
  margin-bottom: 20px;
}
.reveiw_block .img_box{
  width: 55px;
  height: 55px;
  border-radius: 50px;
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reveiw_block .img_box img{
  max-width: 90%;
  object-fit: contain;
}
.reveiw_block h2{
  font-size: 18px;
  font-weight: 400;
}
.reveiw_block h3{
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
}
.reveiw_block p{
  font-size: 16px;
  font-weight: 400;
  color: #808080;
  margin-bottom: 0;
  margin-top: 15px;
}

.customers .div_shadow {
    margin-top: 50px;
    height: 360px;
    background: linear-gradient(0deg, #ffffff 50%, #00000000 100%);
    margin-top: -370px;
    display: flex;
    align-items: end;
    z-index: 99;
    position: relative;
    padding-bottom: 80px;
}
.customers .btn {
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08), 0px 8px 8px -4px rgba(16, 24, 40, 0.03);
  display: table;
}


.download_sec{
  color: #fff;
  background-image: url(../images/download_bg.png);
  background-size: cover;
  position: relative;
  font-family: "Inter", sans-serif;
}
.download_sec:after{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.7;
}
.download_sec div{
  position: relative;
  z-index: 9;
}
.download_sec h2{
  font-size: 48px;
  margin-top: 56px;
  font-weight: bold;
}
.download_sec p{
  font-size: 20px;
  line-height: 30px;
  margin-top: 20px;
  margin-bottom: 30px;
  color: #fff;
  width: 90%;
  font-weight: 200;
}
.download_sec .stars {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 7px;
}
.download_sec .stars li{
  color: #FDE047;
}
.download_sec h5{
  font-size: 18px;
  color: #fff;
  margin: 0;
}

.contact{
  padding: 60px 0;
  overflow: hidden;
}
.contact h2{
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}
.contact p{
    font-size: 20px;
    line-height: 28px;
    color: #4B5563;
    width: 500px;
    max-width: 100%;
}
.contact h5{
  font-size: 16px;
  font-weight: 600;
}
.contact form{
  padding: 40px;
  background: #FFFFFF;
  border: 1px solid #F6FBFF;
  box-shadow: 0px 0px 50px -18px rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  font-family: "Inter", sans-serif;
}
.contact form label{
  font-size: 18px;
  color: var(--body-color);
  font-weight: 600;
}
/* Style for input background color */
.form-control, .form-select {
    background: #F2F2EF;
    border: 1px solid #F2F2EF;
    border-radius: 10.5px;
    height: 60px;
    transition: all .3s;
}

.form-control:focus, .form-select:focus {
    background-color: #fff;
    border: 1px solid #E5E7EB;
    box-shadow: none !important;
}
textarea.form-control{
  background-color: #fff;
  border: 1px solid #E5E7EB;
  box-shadow: none !important;
  height: 80px;
}
.file-drop-area {
    border: 2px dashed #D8D8D8;
    padding: 1.5rem;
    text-align: center;
    border-radius: 12px
    transition: all 0.3s;
    background-color: #fff;
}
.file-drop-area:hover {
    border-color: var(--primary-color);
}
.file-drop-area i{
  color: var(--primary-color);
}
.file-drop-area p{
  color: var(--primary-color);
  margin-bottom: 0;
}
.file-drop-area .btn{
  padding: 0 50px;
  font-weight: bold;
}
.btn[type=submit] {
  height: 50px;
  border-radius: 8px;
  margin-top: 10px;
  padding: 0 30px;
  font-weight: 500;
}

.footer {
  padding-top: 40px;
  background-color: #111827;
  color: #fff;
}

.footer-logo img {
  width: 150px;
  margin-bottom: 20px;
  max-width: 100%;
}
.footer p {
    font-size: 16px;
    line-height: 26px;
    color: #AAAAAA;
    width: 300px;
    max-width: 100%;
}
.social li a {
  width: 32px;
  height: 32px;
  background: #F3F4F6;
  border-radius: 8px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.info li,.footer .links li{
  margin-bottom: 15px;
}

.info li{
  display: flex;
  align-items: center;
  gap: 10px;
  color: #AAAAAA;
}
.info i{
  width: 48px;
  height: 48px;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 12px;
  color: #0EA5E9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.info li:nth-of-type(2) i{
  background: rgba(6, 182, 212, 0.1);
  color: #06B6D4;
}
.info li:nth-of-type(3) i{
  background: rgba(20, 184, 166, 0.1);
  color: #14B8A6;
}

/*
.footer .column {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}*/

.footer h5{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.footer .links a{
  font-size: 16px;
  color: #AAAAAA;
  text-transform: capitalize;
}

.copyright{
  padding: 20px 0;
  background-color: #111827;
  color: #fff;
}

.copyright p{
  margin-bottom: 0;
  color: #ffffff;
  gap: 5px;
  font-size: 18px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}

.copyright hr {
    border: 0;
    height: 1px;
    margin: 0;
    margin-bottom: 40px;
    background-color: #1F2937;
}
.list-unstyled{padding: 0 !important}

.contact .info{
  padding: 0;
  margin-top: 40px;
}
.contact .info li h5{
  color: var(--body-color);
  margin-bottom: 5px;
}
.contact .info li{
  color: #4B5563;
  margin-bottom: 20px;
}


@media (max-width: 991px){
  .navbar-brand {
      margin: 0;
      margin-right: auto;
  }
  .offcanvas.offcanvas-start{width: 250px}
  .navbar-nav{margin: 0}
  .navbar-nav li {
      margin-left: 20px;
  }
  .hero h1{font-size: 50px;}

  .hero p,.about p{font-size: 16px;line-height: 30px}
  .download_btn{flex: 1; max-width: 160px;}
  .hero .right_hero h2{font-size: 24px}

  .title h2{font-size: 24px}
  .title p{font-size: 16px}
  .download_sec h2{font-size: 30px}

  .title{width: 100%}

  .navbar .nav_btn{display: none;}

  .features{padding: 30px 0;}

  .download_sec .flex-wrap{justify-content: center;}

  .download_sec{text-align: center;}
  .reveiw_block{padding: 15px}
  .reveiw_block .img_box {
    width: 45px;
    height: 45px;
  }
  .reveiw_block h2{font-size: 16px}
  .reveiw_block h3{font-size: 13px}
  .reveiw_block p {
    font-size: 14px;
    margin-top: 10px;
  }
  .download_sec div{justify-content: center;}
  .footer .info{
    padding: 0;
  }
  .features .card h3 {
    font-size: 14px;
    transition: all .4s;
    width: 100%;
    line-height: 24px;
  }
  .feature_block h3 {
      font-size: 26px;
      width: 100%;
  }
  .feature_block p{font-size: 14px}
}

@media (max-width: 768px){
  .statistic .block{margin-bottom: 15px}

  .download_sec p{margin: 20px 0}
  .hero h1 {
        font-size: 40px;
    }
    .hero .right_hero h2{margin-top: 30px}
    .customers .col-md-4:first-child,.customers .col-md-4:last-child{padding-top: 0}
    .download_sec h2{font-size: 24px}
    .download_sec p{font-size: 16px;width: 100%}
    .download_sec h5{font-size: 14px}
    .contact h2{font-size: 38px}
    .contact p{font-size: 16px}
    .contact form{padding: 20px}
    textarea.form-control{height: 100px}
    .form-control, .form-select{font-size: 14px}
    .file-drop-area p{
      font-size: 14px;
      line-height: 18px;
    }
    .nav-tabs li {
      flex: auto;
      width: 40%;
  }
  .nav-tabs .nav-link{width: 100%}
  .features .card{width: 100%}
  .feature_block img.feature_shape{display: none;}
}

@media (max-width: 640px){
  .statistic{flex-wrap: wrap;}

  .statistic .block{width: 100%}
  .btn[type=submit]{
    width: 100%;
  }
  .copyright p{font-size: 14px}
}