:root {
    --blue: #0071c4;
    --white: #ffffff;
    --font-16: 16px;
    --bg-light: #f3f7fd;
  }
  
  *,
  *::after,
  *::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  .fb2022-copy {
    display: none;
  }
  
  .navbar-collapse {
    padding: 0px 0;
  }
  
  body {
    /* font-family: "Poppins", sans-serif; */
    font-family: "Lato", sans-serif;
    width: 100%;
    color: rgb(105, 104, 104);
  }
  
  a {
    text-shadow: none;
  }
  
  a:hover {
    cursor: pointer;
  }
  
  .active {
    border-bottom: 1px solid white;

  }
  
  .btn-main {
    color: #0071c4;
    background-color: white;
    border: none;
    border-radius: 10px;
    border: 1px solid white;
    text-decoration: none;
    padding: 10px 30px;
    transition: 0.5s;
  }
  
  .btn-main:hover {
    color: #0071c4;
    cursor: pointer;
    -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
  }



  .btn-secondary-color{
    text-decoration: none;
    padding: 7px 25px;
    color: var(--blue);
    border-radius: 10px;
    background-color: white;

  }
  .btn-secondary-color:hover {
    cursor: pointer;
    -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
  }

  
  .btn-main-color {
    text-decoration: none;
    padding: 7px 25px;
    color: white;

    /* background-image: -webkit-gradient(
      linear,
      right top,
      left top,
      from(rgba(124, 28, 128, 0.6)),
      to(#0071c4)
    ); */
    /* background-image: linear-gradient(
      270deg,
      rgba(124, 28, 128, 0.6) 0%,
      #0071c4 100%
    ); */
    border-radius: 10px;
  }
  
  .btn-main-color:hover {
    color: white;
    cursor: pointer;
    -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
  }
  
  *:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  
  h1 {
    font-weight: 800;
  }
  
  h2 {
    font-weight: 600;
  }
  
  .text-gray {
    color: gray;
  }
  
  .text-blue {
    color: var(--blue);
  }
  
  .font-16 {
    font-size: var(--font-16);
  }
  
  .bg-grey {
    background-color: var(--bg-light);
  }
  
  .line-center {
    width: 150px;
    height: 3px;
    background-color: #0071c4;
    margin-bottom: 30px;
    margin-right: auto;
    /* margin-left: auto; */
  }
  .line {
    width: 150px;
    height: 3px;
    background-color: #0071c4;
    margin-bottom: 30px;
  }
  
  ol.text-list {
    list-style: none;
    counter-reset: steps;
  }
  
  ol.text-list li {
    counter-increment: steps;
  }
  
  ol.text-list li::before {
    content: counter(steps);
    margin-right: 0.5rem;
    background: #0071c4;
    color: white;
    width: 1.2em;
    height: 1.2em;
    border-radius: 50%;
    display: -ms-inline-grid;
    display: inline-grid;
    place-items: center;
    line-height: 1.2em;
  }
  
  nav {
    background-color: transparent;
    -webkit-transition: background-color box-shadow 1s;
    transition: background-color box-shadow 1s;
  }
  
  nav .navbar-toggler:focus,
  nav .navbar-toggler:active,
  nav .navbar-toggler-icon:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  
  nav .navbar-nav {
    margin: 0 auto;
  }
  
  nav .navbar-nav .nav-item {
    padding: 5px;
  }
  
  nav .navbar-nav .nav-item a {
    font-weight: 600;
    color: white;
  }
  
  nav .fas {
    color: white;
  }
  
  nav .btn-main-color {
    border: 1px solid white;
  }
  
  .navbardark {
    background-color: #333333;
  }
  
  .shadow-bg {
    background-color: #0071c4;
    -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
  }
  
  .shadow-bg .fas {
    color: white;
  }
  
  header {
    position: relative;
    width: 100%;
    z-index: 0;
    color: white;
    text-align: center;
    height: 767px;
    background-image: none;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
  }
  
  .hero-banner {
    background-image: url("../../img/bg3.jpg");
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
  }
  
  .hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    /* background: rgba(3, 68, 187, 0.61); */
    /* background: #0071c4d4; */
    background: rgba(2, 114, 189, 0.63);
  }
  
  header .header-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    left: 0;
    z-index: -5;
  }
  header .header {
    position: relative;
    /* padding-top: 200px; */
    padding-left: 200;
    padding-top: 0;
  }
  header .header .header-text {
    padding-top: 5%;
    padding-right: 20px;
    text-align: left;
    width: 85%;
  }
  
  .header-text h1 {
    font-size: 37px;
    text-transform: uppercase;
    font-weight: 600;
    padding-bottom: 20px;
  }
  header .header .header-img {
    z-index: -1;
    /* position: absolute; */
    top: 120px;
    /* right: -250px; */
    width: 90%;
  }
  
  header .partners-logo {
    padding-top: 250px;
  }
  
  header .above {
    font-weight: 500;
  }
  
  /* header h1 {
    padding: 20px 0;
  } */
  
  header .header-img img {
    width: 100%;
  }
  
  .icon-item {
    /* text-align: center; */
    text-align: left;
    box-shadow: 0 0 3px rgb(35 37 41 / 10%);
    height: 100%;
    padding: 20px;
    transition: 0.5s;
    background-color: var(--bg-light);
  }
  .icons-container .col-md-4 {
    margin-bottom: 1.5rem;
  }
  .icon-item img {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border-radius: 50px;
    padding: 10px;
    margin-bottom: 10px;
  }
  
  .icon-item:hover {
    box-shadow: 0 5px 20px rgb(112 134 230 / 20%);
    opacity: 1;
  }
  
  .icon-item b {
    color: var(--blue);
  }
  
  /* why box  */
  
  .benefits-section img {
    width: 100%;
  }
  
  .why-box-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* freight div */
  
  .freight-div {
    background-image: url("../../img/bg.jpg");
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 50px 0;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
  
  .freight-div::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(2, 114, 189, 0.63);
  }
  
  .freight-box {
    z-index: 1;
    display: flex;
    align-items: center;
    background: #ffffff50;
    padding: 10px 25px;
    margin: 10px;
    width: 250px;
  }
  
  .freight-box span {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    margin-left: 10px;
  }
  
  .freight-box i {
    background-color: var(--blue);
    /* padding: 20px; */
    padding: 15px;
    /* border-radius: 50px; */
    border-radius: 50%;
    color: #ffffff;
  }
  
  @media (min-width: 768px) {
    header p {
      font-size: 20px;
    }
    header .above {
      font-size: 30px;
    }
    header h1 {
      font-size: 28px;
      text-transform: uppercase;
    }
  }
  
  @media (min-width: 468px) {
    header p {
      font-size: 20px;
    }
    header .above {
      font-size: 30px;
    }
    header h1 {
      font-size: 18px;
      text-transform: uppercase;
    }
    header .header {
      padding-top: 0;
    }
    header {
      /* height: 600px; */
    }
  }
  
  .mainHeaderBox {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  
  @media (max-width: 1200px) {
    .header-text h1 {
      font-size: 30px;
    }
  }
  @media (max-width: 992px) {
    header {
      height: auto;
      padding: 9rem 0;
    }
    .header-text h1 {
      font-size: 20px;
    }
  }
  
  /*# sourceMappingURL=style.css.map */
  
  /* footer section */
  .footer-main {
    padding: 0;
    overflow: hidden;
    /* background: #f1f6f5; */
    background-image: url("../../img/bg2.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    position: relative;
    padding: 30px;
    padding-top: 60px;
  }
  
  .footer-main::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 84, 145, 0.8);
  }
  
  .footer-content {
    z-index: 1;
    position: relative;
  }
  
  .footer-main a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
  }
  
  .footer-main p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 90%;
  }
  .footer-main span {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .footer-main .footer-heading {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
  }
  
  .footer-main ul.list-unstyled li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 90%;
  }
  
  .footer-main .aside-stretch-right {
    background: #0071c4;
  }
  
  .footer-main .aside-stretch-right:after {
    background: #0071c4;
  }
  
  .footer-bottom a {
    text-decoration: none;
  }
  
  @media (min-width: 768px) {
    .footer-main .footer-heading.footer-heading-white {
      color: #fff;
    }
  }
  
  @media (max-width: 767.98px) {
    .footer-main .aside-stretch-right {
      background: transparent;
    }
    .footer-main .aside-stretch-right:after {
      background: transparent;
      display: none;
    }
  }
  
  .footer-bottom {
    position: relative;
    background: #f1f6f5;
    font-size: 80%;
    overflow: hidden;
    padding: 0 5%;
  }
  
  .footer-bottom a {
    color: #000 !important;
  }
  
  /* privacy policy */
  
  #privacy-policy {
    padding-top: 100px;
  }
  
  .privacy-img {
    text-align: center;
    height: 100%;
    width: 100%;
    margin-bottom: auto;
    display: flex;
    align-items: center;
  }
  .privacy-img img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    margin: auto;
    display: block;
  }
  .policy-container p {
    line-height: 20px;
    font-size: 16px;
  }
  .policy-container {
    padding: 40px 0;
  }
  
  /* about us */
  
  #about-us {
    padding-top: 100px;
  }
  
  .themeTextColor {
    color: var(--blue);
  }
  
  .why-impexo {
    background-image: url("../../img/mapDots.png");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
  }
  
  .why-impexo .whyListBox {
    /* background: #0071c490; */
    /* background: rgba(0, 113, 196, 0.5); */
    background: rgba(0, 113, 196, 0.7);
    padding: 1em 2em;
    color: white;
  }
  
  .why-impexo .whyListBox li {
    line-height: 2em;
  }
  
  #download {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    background: linear-gradient(170deg, white 70%, #eef5fe 70%, #eef5fe 100%);
    position: relative;
    overflow: hidden;
  }
  
  #download .text-container {
    margin-top: 20px;
  }
  
  #download .text-container p {
    margin-bottom: 2.25rem;
    color: #252c38;
    /* font-family: "Poppins", sans-serif; */
    font-size: clamp(25px, 5vw, 35px);
    /* line-height: 1.2; */
    line-height: 3rem;
    font-weight: 600;
  }
  
  #download .image-container {
    height: 700px;
    width: 100%;
    position: relative;
  }
  
  #download .image-container img {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  
  #download #blobd {
    position: absolute;
    top: -4vh;
    right: -50vw;
    z-index: 0;
    opacity: 0.1;
    height: 60vh;
  }
  
  .featureHolder {
    display: flex;
    /* justify-content: center; */
    align-items: center;
  }
  
  .featureHolder p {
    margin-bottom: 0;
    margin-left: 20px;
    font-size: 20px;
    font-weight: 600;
    /* color: var(--blue); */
  }
  
  .featureImageBox {
    height: 50px;
    width: 50px;
  }
  
  .featureImageBox img {
    width: 50px;
    height: 50px;
    object-fit: contain;
  }
  
  #about {
    /* padding: 100px 10px 80px 10px; */
    position: relative;
    overflow: hidden;
    background: linear-gradient(350deg, white 70%, #eef5fe 70%, #eef5fe 100%);
  }
  
  #about .feature-box {
    margin-bottom: 2rem;
  }
  
  #about::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: url("../../img/featureBg.jpg");
    opacity: 0.1;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  /* 
  #about #blob1 {
    position: absolute;
    top: 1px;
    left: -50vw;
    z-index: -2;
    opacity: 0.4;
  } */
  
  /* ABout us */
  .insideHeader {
    padding: 10px;
    background: url("../../img/bg1.jpg");
    color: white;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .insideHeader::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(2, 114, 189, 0.7);
    height: 300px;
  }
  
  /* contact form */
  .insideHeader-contact {
    padding: 10px;
    background: url("../img/contactus.jpeg");
    color: white;
    height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .insideHeader-contact::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(2, 114, 189, 0.7);
    height: 450px;
  }
  
  .page-container {
    /* margin-top: -10vh; */
    min-height: 500px;
    background: #fafafa;
    position: relative;
  }
  
  .section-contact-page {
    padding: 0px 0 25px 0;
    background: #f1f1f1;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
    color: #212121;
    background-image: url("../../img/mapDots.png");
    background-attachment: fixed;
    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='0' x2='0' y1='0' y2='100%25' gradientTransform='rotate(240)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23ffffff'/%3E%3C/linearGradient%3E%3Cpattern patternUnits='userSpaceOnUse' id='b' width='540' height='450' x='0' y='0' viewBox='0 0 1080 900'%3E%3Cg fill-opacity='0.04'%3E%3Cpolygon fill='%23444' points='90 150 0 300 180 300'/%3E%3Cpolygon points='90 150 180 0 0 0'/%3E%3Cpolygon fill='%23AAA' points='270 150 360 0 180 0'/%3E%3Cpolygon fill='%23DDD' points='450 150 360 300 540 300'/%3E%3Cpolygon fill='%23999' points='450 150 540 0 360 0'/%3E%3Cpolygon points='630 150 540 300 720 300'/%3E%3Cpolygon fill='%23DDD' points='630 150 720 0 540 0'/%3E%3Cpolygon fill='%23444' points='810 150 720 300 900 300'/%3E%3Cpolygon fill='%23FFF' points='810 150 900 0 720 0'/%3E%3Cpolygon fill='%23DDD' points='990 150 900 300 1080 300'/%3E%3Cpolygon fill='%23444' points='990 150 1080 0 900 0'/%3E%3Cpolygon fill='%23DDD' points='90 450 0 600 180 600'/%3E%3Cpolygon points='90 450 180 300 0 300'/%3E%3Cpolygon fill='%23666' points='270 450 180 600 360 600'/%3E%3Cpolygon fill='%23AAA' points='270 450 360 300 180 300'/%3E%3Cpolygon fill='%23DDD' points='450 450 360 600 540 600'/%3E%3Cpolygon fill='%23999' points='450 450 540 300 360 300'/%3E%3Cpolygon fill='%23999' points='630 450 540 600 720 600'/%3E%3Cpolygon fill='%23FFF' points='630 450 720 300 540 300'/%3E%3Cpolygon points='810 450 720 600 900 600'/%3E%3Cpolygon fill='%23DDD' points='810 450 900 300 720 300'/%3E%3Cpolygon fill='%23AAA' points='990 450 900 600 1080 600'/%3E%3Cpolygon fill='%23444' points='990 450 1080 300 900 300'/%3E%3Cpolygon fill='%23222' points='90 750 0 900 180 900'/%3E%3Cpolygon points='270 750 180 900 360 900'/%3E%3Cpolygon fill='%23DDD' points='270 750 360 600 180 600'/%3E%3Cpolygon points='450 750 540 600 360 600'/%3E%3Cpolygon points='630 750 540 900 720 900'/%3E%3Cpolygon fill='%23444' points='630 750 720 600 540 600'/%3E%3Cpolygon fill='%23AAA' points='810 750 720 900 900 900'/%3E%3Cpolygon fill='%23666' points='810 750 900 600 720 600'/%3E%3Cpolygon fill='%23999' points='990 750 900 900 1080 900'/%3E%3Cpolygon fill='%23999' points='180 0 90 150 270 150'/%3E%3Cpolygon fill='%23444' points='360 0 270 150 450 150'/%3E%3Cpolygon fill='%23FFF' points='540 0 450 150 630 150'/%3E%3Cpolygon points='900 0 810 150 990 150'/%3E%3Cpolygon fill='%23222' points='0 300 -90 450 90 450'/%3E%3Cpolygon fill='%23FFF' points='0 300 90 150 -90 150'/%3E%3Cpolygon fill='%23FFF' points='180 300 90 450 270 450'/%3E%3Cpolygon fill='%23666' points='180 300 270 150 90 150'/%3E%3Cpolygon fill='%23222' points='360 300 270 450 450 450'/%3E%3Cpolygon fill='%23FFF' points='360 300 450 150 270 150'/%3E%3Cpolygon fill='%23444' points='540 300 450 450 630 450'/%3E%3Cpolygon fill='%23222' points='540 300 630 150 450 150'/%3E%3Cpolygon fill='%23AAA' points='720 300 630 450 810 450'/%3E%3Cpolygon fill='%23666' points='720 300 810 150 630 150'/%3E%3Cpolygon fill='%23FFF' points='900 300 810 450 990 450'/%3E%3Cpolygon fill='%23999' points='900 300 990 150 810 150'/%3E%3Cpolygon points='0 600 -90 750 90 750'/%3E%3Cpolygon fill='%23666' points='0 600 90 450 -90 450'/%3E%3Cpolygon fill='%23AAA' points='180 600 90 750 270 750'/%3E%3Cpolygon fill='%23444' points='180 600 270 450 90 450'/%3E%3Cpolygon fill='%23444' points='360 600 270 750 450 750'/%3E%3Cpolygon fill='%23999' points='360 600 450 450 270 450'/%3E%3Cpolygon fill='%23666' points='540 600 630 450 450 450'/%3E%3Cpolygon fill='%23222' points='720 600 630 750 810 750'/%3E%3Cpolygon fill='%23FFF' points='900 600 810 750 990 750'/%3E%3Cpolygon fill='%23222' points='900 600 990 450 810 450'/%3E%3Cpolygon fill='%23DDD' points='0 900 90 750 -90 750'/%3E%3Cpolygon fill='%23444' points='180 900 270 750 90 750'/%3E%3Cpolygon fill='%23FFF' points='360 900 450 750 270 750'/%3E%3Cpolygon fill='%23AAA' points='540 900 630 750 450 750'/%3E%3Cpolygon fill='%23FFF' points='720 900 810 750 630 750'/%3E%3Cpolygon fill='%23222' points='900 900 990 750 810 750'/%3E%3Cpolygon fill='%23222' points='1080 300 990 450 1170 450'/%3E%3Cpolygon fill='%23FFF' points='1080 300 1170 150 990 150'/%3E%3Cpolygon points='1080 600 990 750 1170 750'/%3E%3Cpolygon fill='%23666' points='1080 600 1170 450 990 450'/%3E%3Cpolygon fill='%23DDD' points='1080 900 1170 750 990 750'/%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3Crect x='0' y='0' fill='url(%23a)' width='100%25' height='100%25'/%3E%3Crect x='0' y='0' fill='url(%23b)' width='100%25' height='100%25'/%3E%3C/svg%3E") !important; */
  }
  
  .section-contact-page::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.4);
  }
  
  .section-contact-page .prow {
    position: relative;
    z-index: 3;
    background: #0071c4;
    padding: 40px 30px;
    margin-top: 0;
    margin: 150px;
    margin-top: -20vh;
  }
  
  .section-contact-page iframe {
    max-width: 100%;
    height: 60vh;
    min-height: 450px;
    position: relative;
    z-index: 1;
  }
  
  .section-contact-page h5 {
    font-weight: 400;
    padding: 5px 10px 5px 10px;
    line-height: 1.2;
    margin: 0;
    margin-bottom: 20px;
    color: white;
  }
  
  .section-contact-page .contact-details {
    margin: 30px 0;
  }
  
  .section-contact-page .contact-details > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .section-contact-page .contact-details > div i {
    text-align: center;
    font-size: 20px;
    min-width: 50px;
    height: 40px;
    padding-top: 10px;
    border-right: 1px solid #ebebeb;
    color: #fff;
  }
  
  .section-contact-page .contact-details > div span {
    padding-left: 15px;
  }
  
  .section-contact-page .contact-details > div span a {
    font-size: 15px;
    color: #e0e0e0;
    font-family: "IBM Plex Sans", sans-serif;
    text-decoration: none;
  }
  
  .section-contact-page .contact-details > div span a:hover {
    color: #fff;
  }
  
  .section-contact-page .contact-details > div span img {
    max-width: 150px;
    max-height: 150px;
  }
  
  .section-contact-page .form-div input,
  .section-contact-page .form-div textarea {
    display: block;
    margin-top: 10px !important;
    padding: 10px 15px 10px 15px;
    width: 100%;
    background: rgba(255, 255, 255, 0.952);
    color: #000 !important;
    font-size: 15px !important;
    font-weight: 400;
    border: none;
    border-bottom: 3px solid #2c2c2c;
  }
  
  .section-contact-page .form-div input::-webkit-input-placeholder,
  .section-contact-page .form-div textarea::-webkit-input-placeholder {
    color: #000000ad;
    font-weight: 400;
  }
  
  .section-contact-page .form-div input:-ms-input-placeholder,
  .section-contact-page .form-div textarea:-ms-input-placeholder {
    color: #000000ad;
    font-weight: 400;
  }
  
  .section-contact-page .form-div input::-ms-input-placeholder,
  .section-contact-page .form-div textarea::-ms-input-placeholder {
    color: #000000ad;
    font-weight: 400;
  }
  
  .section-contact-page .form-div input::placeholder,
  .section-contact-page .form-div textarea::placeholder {
    color: #000000ad;
    font-weight: 400;
  }
  
  .section-contact-page .form-div input:hover,
  .section-contact-page .form-div textarea:hover {
    background: rgba(228, 228, 228, 0.8);
  }
  
  .section-contact-page .form-div input:focus,
  .section-contact-page .form-div textarea:focus {
    background: rgba(228, 228, 228, 0.7);
  }
  
  
  .section-contact-page .form-div input[type=submit] {
    margin-top: 10px !important;
    background: #004270 !important;
    padding: 10px 30px !important;
    border: none !important;
    color: #fff !important;
    font-size: 18px !important;
    border-radius: 0 !important;
    -webkit-box-shadow: 0px 0px 0px #ebebeb, -0px -0px 0px #ffffff !important;
    box-shadow: 0px 0px 0px #ebebeb, -0px -0px 0px #ffffff !important;
  }
  
  .section-contact-page .form-div input[type=submit]:hover {
    background: #000  !important;
    -webkit-box-shadow: 6px 6px 6px #d8d8d81c, -6px -6px 6px #eeeeee15 !important;
    box-shadow: 6px 6px 6px #d8d8d81c, -6px -6px 6px #eeeeee15 !important;
  }
  
  #loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.75) url("../../img/spinner.gif") no-repeat center center;
    z-index: 99999;
  }
  
  
  
  /* .section-contact-page .form-div .btn-submit {
    margin-top: 10px;
    background: #004270;
    padding: 10px 30px;
    border: none;
    color: #fff;
    font-size: 18px;
    border-radius: 0;
    -webkit-box-shadow: 0px 0px 0px #ebebeb, -0px -0px 0px #ffffff;
    box-shadow: 0px 0px 0px #ebebeb, -0px -0px 0px #ffffff;
  }
  
  .section-contact-page .form-div .btn-submit:hover {
    background: #000;
    -webkit-box-shadow: 6px 6px 6px #d8d8d81c, -6px -6px 6px #eeeeee15;
    box-shadow: 6px 6px 6px #d8d8d81c, -6px -6px 6px #eeeeee15;
  } */
  
  .section-contact-page .form-div .error {
    color: red;
    font-size: 80%;
    margin-top: 5px;
  }
  
  
  @media (max-width: 768px) {
    .section-contact-page .prow {
      padding: 5px 10px;
      margin-top: -15vh;
      width: 90%;
      margin-right: auto;
      margin-left: auto;
    }
    .section-contact-page iframe {
      max-width: 100%;
      height: 70vh;
      min-height: 450px;
      position: relative;
      z-index: 1;
    }
    .section-contact-page h5 {
      font-size: 15px;
    }
    .section-contact-page .form-div input,
    .section-contact-page .form-div textarea {
      padding: 5px 7px 5px 7px;
      font-size: 15px;
    }
    .section-contact-page .form-div .btn-submit {
      background: #000;
      padding: 5px 15px;
      border: none;
      color: #fff;
      font-size: 15px;
      border-radius: 0;
      -webkit-box-shadow: 0px 0px 0px #ebebeb, -0px -0px 0px #ffffff;
      box-shadow: 0px 0px 0px #ebebeb, -0px -0px 0px #ffffff;
    }
  
  
    .section-contact-page .form-div .btn-submit:hover {
      background: #000;
  
      -webkit-box-shadow: 6px 6px 6px #d8d8d81c, -6px -6px 6px #eeeeee15;
      box-shadow: 6px 6px 6px #d8d8d81c, -6px -6px 6px #eeeeee15;
    }
  }
  
  .section-contact {
    padding: 40px 0 60px 0;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
    color: #fff;
  }
  
  .section-contact h1 {
    font-weight: 600;
    text-transform: uppercase;
    font-size: clamp(40px, 3vw, 50px);
  }
  
  .section-contact h5 {
    font-weight: 300;
    padding: 15px 20px 15px 20px;
    line-height: 1.5;
    font-size: 14px;
    margin: 0;
    background: rgba(255, 255, 255, 0.109);
  }
  
  .section-contact .contact-details {
    margin: 30px 0;
  }
  
  .section-contact .contact-details > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .section-contact .contact-details > div i {
    text-align: center;
    font-size: 20px;
    min-width: 50px;
    height: 40px;
    padding-top: 10px;
    border-right: 1px solid rgba(235, 235, 235, 0.698);
    color: #fff;
  }
  
  .section-contact .contact-details > div span {
    padding-left: 15px;
  }
  
  .section-contact .contact-details > div span a {
    font-size: 16px;
    color: #ffffff;
    font-family: "IBM Plex Sans", sans-serif;
    text-decoration: none;
  }
  
  .section-contact .contact-details > div span a:hover {
    color: #fff;
  }
  
  .section-contact .contact-details > div span img {
    max-width: 150px;
    max-height: 150px;
  }
  
  .section-contact .form-div {
    margin-left: 20px;
  }
  
  .section-contact .form-div input,
  .section-contact .form-div textarea {
    display: block;
    margin-top: 20px !important;
    padding: 15px 20px 15px 20px;
    width: 100%;
    background: rgba(255, 255, 255, 0.205);
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 400;
    border: none;
    border-bottom: 2px solid #f8f9fa;
  }
  
  .section-contact .form-div input::-webkit-input-placeholder,
  .section-contact .form-div textarea::-webkit-input-placeholder {
    color: #f8f9fa;
    font-weight: 300;
  }
  
  .section-contact .form-div input:-ms-input-placeholder,
  .section-contact .form-div textarea:-ms-input-placeholder {
    color: #f8f9fa;
    font-weight: 300;
  }
  
  .section-contact .form-div input::-ms-input-placeholder,
  .section-contact .form-div textarea::-ms-input-placeholder {
    color: #f8f9fa;
    font-weight: 300;
  }
  
  .section-contact .form-div input::placeholder,
  .section-contact .form-div textarea::placeholder {
    color: #f8f9fa;
    font-weight: 300;
  }
  
  .section-contact .form-div input:hover,
  .section-contact .form-div textarea:hover {
    background: rgba(255, 255, 255, 0.25);
  }
  
  .section-contact .form-div input:focus,
  .section-contact .form-div textarea:focus {
    background: rgba(255, 255, 255, 0.3);
  }
  
  .section-contact .form-div .btn-submit {
    background: #000;
    padding: 10px 30px;
    border: none;
    margin-top: 20px;
    color: #fff;
    font-size: 16px;
    border-radius: 0;
    -webkit-box-shadow: 0px 0px 0px #ebebeb, -0px -0px 0px #ffffff;
    box-shadow: 0px 0px 0px #ebebeb, -0px -0px 0px #ffffff;
  }
  
  .section-contact .form-div .btn-submit:hover {
    background: #000;
    -webkit-box-shadow: 6px 6px 6px #d8d8d81c, -6px -6px 6px #eeeeee15;
    box-shadow: 6px 6px 6px #d8d8d81c, -6px -6px 6px #eeeeee15;
  }
  
  .section-contact .form-div .error {
    color: red;
    font-size: 80%;
    margin-top: 5px;
  }
  
  @media (max-width: 768px) {
    .section-contact .contact-details {
      margin: 30px 0;
    }
    .section-contact .contact-details > div {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      margin-bottom: 30px;
    }
    .section-contact .contact-details > div span {
      padding-left: 20px;
    }
    .section-contact .contact-details > div span a {
      font-size: 15px;
    }
    .section-contact .contact-details > div span img {
      max-width: 150px;
      max-height: 150px;
    }
    .section-contact .form-div {
      margin-left: 0;
    }
    .section-contact .form-div input,
    .section-contact .form-div textarea {
      padding: 15px 10px 15px 10px;
      font-size: 15px;
    }
    .section-contact .form-div .btn-submit {
      background: #000;
      padding: 20px 50px;
      border: none;
      color: #fff;
      font-size: 20px;
      border-radius: 0;
      -webkit-box-shadow: 0px 0px 0px #ebebeb, -0px -0px 0px #ffffff;
      box-shadow: 0px 0px 0px #ebebeb, -0px -0px 0px #ffffff;
    }
    .section-contact .form-div .btn-submit:hover {
      background: #000;
      -webkit-box-shadow: 6px 6px 6px #d8d8d81c, -6px -6px 6px #eeeeee15;
      box-shadow: 6px 6px 6px #d8d8d81c, -6px -6px 6px #eeeeee15;
    }
  }
  
  @media (max-width: 768px) {
    .why-impexo,
    #about,
    .stream,
    #download {
      padding: 2rem !important;
    }
    nav .btn-main-color {
      float: left;
      margin-top: 20px;
    }
    nav .btn-secondary-color {
      float: left;
      margin-top: 20px;
    }
     }
  

     @media (max-width: 968px) {
      .active {
        border-bottom: 1px solid white;
    width: 10%;
      }
  
    
    }

  @media (max-width: 700px) {
    .header {
      flex-direction: column-reverse;
      align-items: center;
    }
    .header-img {
      width: 70%;
      margin-bottom: 30px;
    }
    .header-text h1 {
      text-align: center;
    }
  
    .loginBtn {
      text-align: center;
    }
  
    .deliver-img {
      text-align: center;
    }
    .deliver-img img {
      width: 70%;
    }
    #download .image-container {
      text-align: center;
      height: auto;
    }
  
    #download .image-container img {
      width: 70%;
      height: 100%;
      margin: 2rem;
    }
  
    .store-redirect {
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    .store-redirect img {
      height: 50px !important;
      width: 150px !important;
    }
  }
  