*{
  font-family: Poppins !important;
}

.text-justify {
  text-align: justify !important;
}
.h-100 {
  height: 100% !important;
}

ul{
  list-style: none;
}

a{
  text-decoration: none;
}

header{
  position: sticky;
  top: 0px;
  background-color: #000;
  width: 100%;
  z-index: 5;
}

.loader {
  width: 20px;
  height: 20px;
  border: 2.5px solid #000;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
} 
.nav-container{
/*  max-width: 72rem;*/
  padding: 0 1rem;
  margin: 0 auto;
  display: flex;
  position: relative;
  height: 3.2em;
}

.logo-container{
  flex: 1;
  display: flex;
  align-items: center;
}

.nav-btn{
  flex: 3;
  display: flex;
}

.nav-links{
  flex: 2;
}

.log-sign{
  margin-left: 5em;
  display: flex;
  justify-content: end;
  align-items: center;
  flex: 1;
}

.logo{
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 3rem;
}

.logo span{
  font-weight: 300;
}

.nav-btn-2{
  display: inline-block;
  padding: .5rem 1.3rem;
  font-size: .8rem;
  border: 1.5px solid #fff;
  border-radius: 2rem;
  line-height: 1;
  margin: 0 .2rem;
  transition: .3s;
  text-transform: uppercase;
}

.nav-btn-2.solid, .nav-btn-2.transparent:hover{
  background-color: #fff;
  color: #000;
}

.nav-btn-2.transparent, .nav-btn-2.solid:hover{
  background-color: transparent;
  color: #fff;
}

.nav-links > ul{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35em;
}

.nav-link{
  position: relative;
  width: 28%;
}

.nav-link > a{
  line-height: 3rem;
  color: #fff;
  padding: 0 .8rem;
  letter-spacing: 1px;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: .1s;
}

.nav-link > a > i{
  margin-left: .2rem;
}

.nav-link:hover > a{
  font-weight: bold;
}

header .dropdown{
  position: absolute;
  top: 3.2em;
  background-color: #000;
  color: white;
  left: -5rem;
  width: 18rem;
  padding: 1rem 2.7rem;
  border-radius: 12px;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: .35s;
}
header .dropdown-products{
  position: absolute;
  top: 3.2em;
  background-color: #000;
  color: white;
  left: -20rem;
  width: 68rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: .35s;
}
header .dropdown-products h5 {
  margin-bottom: 0.9rem;
}
.navbar-img{
  height: 3em;
}

.dropdown ul a{
  color: white;
  font-size: 0.8em;
}

.dropdown ul li{
  margin-bottom: 0.1em;
}

.dropdown ul a:hover{
  font-weight: bold;
}

.dropdown ul{
  position: relative;
  padding-left: 0;
}


.dropdown-products ul a{
  color: white;
  font-size: 0.8em;
  display: block;
  line-height: 15px;
  margin-bottom: 0.8em;
}

.dropdown-products ul li{
  margin-bottom: 0.1em;
}

.dropdown-products ul a:hover{
  font-weight: bold;
}

.dropdown-products ul{
  position: relative;
  padding-left: 0;
}

.dropdown-link > a{
  display: flex;
  background-color: #fff;
  color: #3498db;
  padding: .5rem 1rem;
  font-size: .9rem;
  align-items: center;
  justify-content: space-between;
  transition: .3s;
}

.dropdown-link:hover > a{
  background-color: #3498db;
  color: #fff;
}

.dropdown-link:not(:nth-last-child(2)){
  border-bottom: 1px solid #efefef;
}

.dropdown-link i{
  transform: rotate(-90deg);
}

.arrow{
  position: absolute;
  width: 11px;
  height: 11px;
  top: -5.5px;
  left: 32px;
  background-color: #fff;
  transform: rotate(45deg);
  cursor: pointer;
  transition: .3s;
  z-index: -1;
}

.dropdown-link:first-child:hover ~ .arrow{
  background-color: #3498db;
}

.dropdown-link{
  position: relative;
}

.dropdown.second{
  top: 0;
  left: 100%;
  padding-left: .8rem;
  cursor: pointer;
  transform: translateX(10px);
}

.dropdown.second .arrow{
  top: 10px;
  left: -5.5px;
}

.nav-link:hover > .dropdown, .nav-link:hover > .dropdown-products,
.dropdown-link:hover > .dropdown, .dropdown-link:hover > .dropdown-products{
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
}

.hamburger-menu-container{
  flex: 1;
  display: none;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu{
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu div{
  width: 1.6rem;
  height: 3px;
  border-radius: 3px;
  background-color: #fff;
  position: relative;
  z-index: 6;
  transition: .5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after{
  content: '';
  position: absolute;
  width: inherit;
  height: inherit;
  background-color: #fff;
  border-radius: 3px;
  transition: .5s;
}

.hamburger-menu div:before{
  transform: translateY(-7px);
}

.hamburger-menu div:after{
  transform: translateY(7px);
}

#check{
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  z-index: 10;
  cursor: pointer;
  opacity: 0;
  display: none;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div{
  background-color: transparent;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:before{
  transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:after{
  transform: translateY(0) rotate(45deg);
}

@keyframes animation{
  from{
    opacity: 0;
    transform: translateY(15px);
  }
  to{
    opacity: 1;
    transform: translateY(0px);
  }
}

@media (max-width: 920px){
  .hamburger-menu-container{
    display: flex;
  }

  #check{
    display: block;
  }

  .nav-btn{
    position: fixed;
    height: 55rem;
    top: 3rem;
    left: 0;
    width: 100%;
    background-color: #000;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateX(100%);
    transition: .65s;
  }

  #check:checked ~ .nav-btn{
    transform: translateX(0);
  }

  #check:checked ~ .nav-btn .nav-link,
  #check:checked ~ .nav-btn .log-sign{
    animation: animation .5s ease forwards var(--i);
  }

  .nav-links{
    flex: initial;
    width: 100%;
  }

  .nav-links > ul{
    flex-direction: column;
  }

  .nav-link{
    width: 100%;
    opacity: 0;
    transform: translateY(15px);
  }

  .nav-link > a{
    line-height: 1;
    padding: 1.6rem 2rem;
  }

  .nav-link:hover > a{
    transform: scale(1);
    background-color: #50a9d6;
  }

  .dropdown, .dropdown.second{
    position: initial;
    top: initial;
    left: initial;
    transform: initial;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    padding: 0;
    background-color: #3183ac;
    display: none;
  }

  .nav-link:hover > .dropdown,
  .dropdown-link:hover > .dropdown{
    display: block;
  }

  .nav-link:hover > a > i,
  .dropdown-link:hover > a > i{
    transform: rotate(360deg);
  }

  .dropdown-link > a{
    background-color: transparent;
    color: #fff;
    padding: 1.2rem 2rem;
    line-height: 1;
  }

  .dropdown.second .dropdown-link > a{
    padding: 1.2rem 2rem 1.2rem 3rem;
  }

  .dropdown.second .dropdown.second .dropdown-link > a{
    padding: 1.2rem 2rem 1.2rem 4rem;
  }

  .dropdown-link:not(:nth-last-child(2)){
    border-bottom: none;
  }

  .arrow{
    z-index: 1;
    background-color: #69bde7;
    left: 10%;
    transform: scale(1.1) rotate(45deg);
    transition: .5s;
  }

  .nav-link:hover .arrow{
    background-color: #50a9d6;
  }

  .dropdown .dropdown .arrow{
    display: none;
  }

  .dropdown-link:hover > a{
    background-color: #3a91bd;
  }

  .dropdown-link:first-child:hover ~ .arrow{
    background-color: #50a9d6;
  }

  .nav-link > a > i{
    font-size: 1.1rem;
    transform: rotate(-90deg);
    transition: .7s;
  }

  .dropdown i{
    font-size: 1rem;
    transition: .7s;
  }

  .log-sign{
    flex: initial;
    width: 100%;
    padding: 1.5rem 1.9rem;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(15px);
  }
}




.section-1{
  height: 98vh;
  display: flex;
  align-items: center;
}
.black-section{
  width: 100%;
  height: auto;
  background-color: #111;
}
.section-2{
  width: 100%;
  height: auto;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  background-color: #111;
  background-image: url('/static/images/lines.png');
}
.section-3{
  width: 100%;
  height: auto;
  background: #111;
}
.landing-feature-img-section{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.landing-feature-img-1{
  position: relative;
  height: 135px;
  left: 10em;
  top: 3em;
  z-index: 2;
  opacity: 0;
}
.landing-feature-img-2{
/*  position: relative;*/
  height: 270px;
/*  left: 18%;
  top: -15%;
  z-index: 1;*/
  opacity: 0;
}
.landing-feature-img-3{
  position: relative;
  height: 130px;
  left: -12em;
  top: -68%;
  z-index: 2;
  opacity: 0;
}
.landing-feature-img-4{
  position: relative;
  height: 120px;
  top: 5em;
  right: 6.5em;
  z-index: 2;
  opacity: 0;
}
.landing-feature-img-5{
/*  position: relative;*/
  height: 270px;
/*  top: 3em;
  left: 0em;
  z-index: 1;*/
  opacity: 0;
}
.landing-feature-img-6{
  position: relative;
  height: 130px;
  top: -4.2em;
  left: 7.5em;
  z-index: 2;
  opacity: 0;
}
.blue-text{
  color: #00acee;
}
.login-btn{
  background: transparent;
  padding: 5%;
  width: 6em;
  outline: 1px solid white;
  border-radius: 8px;
  border: none;
}
.nav-item{
  margin-left: 1.8%;
  width: 8em;
}
.nav-item:hover{
  font-weight: bold;
}
.navbar{
  border-radius: 6px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.heading-1{
  width: 90%;
  font-weight: 700;
  font-size: 1.8em;
  margin-top: 1.1em;
}
.heading-2{
  width: 90%;
  margin-top: 1.5em;
  padding-bottom: 1.5%;
  font-weight: 600;
  font-size: 1.3em;
}
.underline{
  position: relative;
}
.underline:after{
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60%;
  height: 2px; /* Adjust the height to change the thickness of the underline */
  background-color: #000;
}
.heading-3{
  font-weight: 600;
  font-size: 1.8em;
  margin-top: 2%;
  text-align: center;
}
.heading-4{
  font-weight: 700;
  font-size: 1.5em;
  text-align: center;
}
.card-text-2{
  font-weight: 300;
  width: 90%;
  font-size: 0.85em;
  line-height: 1.8;
  text-align: justify !important;
}
.text{
  margin-top: 5%;
  width: 95%;
  z-index: 5;
}
.button{
  background: #111;
  color: #fff;
  width: 10em;
  padding: 1%;
  border-radius: 100px;
  border: none;
}
.button-2{
  background: white;
  color: black;
  width: 10em;
  padding: 1%;
  border-radius: 100px;
  border: none;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.outline-card{
  border: 0.9px solid white;
  border-radius: 16px;
  height: 15em;
  padding-left: 2%;
  padding-right: 2%;
  width: 90%;
  cursor: pointer;
}
.outline-card-text{
  text-align: center !important;
  color: white;
  font-weight: 200;
  font-size: 0.8em;
}

.glide__arrow{
  border: 1.2px solid white;
  height: 30px;
  width: 30px;
  background-color: transparent;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 200px;
  color: white;
  margin-left: 2em;
  margin-right: 2em;
  transition: all 0.25s ease-in;
}
.glide__arrow:hover{
  background-color: white;
  color: black;
}
.glide__bullet{
  height: 7px;
  width: 7px;
  background-color: white;
  margin-left: 1em;
  margin-right: 1em;
  content: '';
  border: none;
  border-radius: 100px;
}
.title-section{
  padding-left: 3%;
  position: relative;
}
.white-section{
  border-radius: 12px;
  background: white;
  padding: 3%;
  height: auto;
  width: 100%;
  margin-top: 2.5%;
  margin-left: auto;
  margin-right: auto;
}
.landing-img{
  height: 25em;
  margin-top: 10%;
}
.blue-circle{
  content: '';
  height: 10em;
  width: 10em;
  border-radius: 200px;
  position: absolute;
  background: rgba(218, 234, 246, 0.5);
  z-index: -1;
  bottom: 20.2em;
  left: 10em;
}
.grey-circle{
  content: '';
  height: 80px;
  width: 80px;
  border-radius: 200px;
  position: absolute;
  background: #eee;
  z-index: -1;
  bottom: 7.2em;
  left: 3em;
}
.card-text{
  text-align: center;
}
.shopify-section{
  border-radius: 23px;
  padding: 5%;
  background: linear-gradient(0deg, rgba(0, 2, 8, 0.1), rgba(0, 2, 8, 0.8)), url('/static/images/shopify-bg.jpeg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.heading-blue{
  color: #00acee;
  font-weight: 700;
  font-size: 1.7em;
  text-align: center;
}
.heading-blue-2{
  color: #00acee !important; 
}
.quotes{
  font-size: 6em;
  font-family: Georgia !important;
  position: relative;
}
.quote-1{
  top: -0.35em;
}
.quote-2{
  top: 0.3em
}
.testimonial-img{
  height: 6em;
}
.text-3{
  font-weight: 300;
  font-size: 0.9em;
  line-height: 0.6;
}
.text-4{
  font-size: 0.6em;
  line-height: 0.6;
  font-weight: 300;
  color: #ddd;
}
.client-logo{
/*  height: 1.8em !important;*/
  width: 5.6em !important;
}
.client-logo-2{
  height: 2em;
}
.award{
  height: 3em;
}
.awards-section{
  height: 15em;
  border-top: 1px solid white;
}
.testimonial-card{
  background-color: #fff;
  border-radius: 12px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}


footer {
  background-color: #121315;
  color: #a7a7a7;
  font-size: 0.7em !important;
  text-align: left;
  border-top: 1.2px solid white;
}

footer h3, p{
  text-align: left !important;
}

footer a{
  color: #bbb;
  text-decoration: none;
}

footer .social-media-icons{
  font-size: 34px;
  margin-right: 4%;
}

footer .social-media-icons:hover{
  color: white;
}

footer a:hover{
  color: white;
}
.footer-section{
  width: 33em;
  margin-left: 2em;
  margin-right: 2em;
}
.footer-logo{
  height: 1.6em;
  margin-right: 0.5em;
}

/* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
    /*@media (max-width:320px)  {
      .navbar-nav{
        margin-top: 2em !important;
      }
      .login-btn{
        width: 100%;
        padding: 2.5%;
      }
      .nav-item{
        margin-left: 2%;
      }
    }*/

    /* smartphones, Android phones, landscape iPhone */
    @media (max-width:480px)  {
      .contact-us-circle{
        width: 14em;
      }
      .navbar-nav{
        margin-top: 2em !important;
      }
      .login-btn{
        width: 100%;
        padding: 2.5%;
      }
      .nav-item{
        margin-left: 2%;
      }
      .landing-img{
        /*left:0;
        top:0;*/
        height: 15em !important;
      }
      .landing-img-section{
        display: flex;
        justify-content: center;
      }
      .heading-2{
        font-size: 1em;
        margin-top: 1em;
      }
      .heading-blue{
        font-size: 1.3em;
      }
      .button-2{
        font-size: 0.7em;
      }
      .section-1{
        height: auto;
      }
      .heading-1{
        font-size: 1.8em !important;
      }
      .text{
        font-size: 0.8em !important;
      }
      .outline-card{
        width: 95%;
        font-size: 0.8em;
      }
      .outline-card h6{
        font-size: 1.2em;
      }
      .outline-card-text{
        font-size: 0.9em;
      }
      .glide__bullet{
        margin-left: 0;
        margin-right: 0.8em;
      }
      .glide__arrow{
        margin: 0;
      }
      .splide__slide p{
        font-size: 0.75em;
      }
      .card-text{
        font-size: 0.9em;
        margin-top: 5%;
      }
      .quotes{
        display: none;
      }
      .testimonial-credentials{
        padding-left: 2em;
      }
      /*.quote-2{
        top: 7.2em !important;
      }*/
      .client-logo{
        height: 1.2em !important;
        width: auto !important;
      }
      .testimonial-img{
        height: 5em;
      }
      .designation{
        line-height: 1.4;
      }
      .modal-content{
        width: 100% !important;
      }

      .modal-content label,
      .modal-content a{
        font-size: 0.5em;
      }

      .expand-button{
        width: 100% !important;
        font-size: 0.8em !important;
      }

      .query-type{
        width: 100%;
      }
      textarea{
        padding: 3%;
      }
      .award{
        height: 1.4em;
      }
      .special-text.-expanded {
        padding-bottom: 1em !important;
      }
      .glide__bullets{
        width: 70%;
        margin-left: auto;
        margin-right: auto;
      }
      .glide__bullet{
        widht: 3px !important;
      }
      .footer-wrapper{
        flex-direction: column;
      }
      .footer-section{
        width: 90% !important;
      }
    }

    /* big landscape tablets, laptops, and desktops */
    @media (max-width:1200px) {
      .blue-circle{
        display: none;
      }
      .navbar-nav{
        margin-top: 2em !important;
      }
      .login-btn{
        width: 100%;
        padding: 2.5%;
      }
      .nav-item{
        margin-left: 2%;
      }
      .landing-img{
        left:0;
        top:0;
        height: 25em; 
      }
      .section-1{
        height: auto;
      }
      .section-2{
        margin-top: 2em;
      }
      .quote-2{
        top: 1.1em;
      }
      .designation{
        line-height: 1.4;
      }
      .heading-4{
        font-size: 0.9em;
      }
      .card-text-2{
        font-size: 0.6em;
        width: 100%;
        line-height: 1.5;
        text-align: center !important;
      }
      .expand-button{
        width: 55%;
      }
      .modal-content{
        left: 0 !important;
        top: 0 !important;
      }
    }

    @media (min-width: 1500px) {
      /*.feature-img-3{
        height: 100px !important;
        top: 8em !important;
        left: -25em !important;
      }*/
      .feature-img-2{
        height: 200px !important;
      }
      .sub_heading{
        margin-top: 4em !important;
      }
      .heading-2{
        font-size: 2em;
      }
      .heading-1{
        font-size: 2.3em;
      }
      .text{
        font-size: 1.5em;
      }
      .landing-img{
        height: 30em;
      }
      .blue-circle{
        left: 15em;
        bottom: 26.2em;
      }
      .grey-circle{
        height: 100px;
        width: 100px;
      }
      .button{
        font-size: 1.2em;
      }
      .nav-container{
        height: 4.2em;
      }
      .nav-links > ul{
        margin-top: 0.3em;
      }
      .modal-content{
        left: 150% !important;
      }
    }

    @media screen and (max-width: 850px) {
      footer .row.primary {
        grid-template-columns: 1fr;
      }
    }


    .accordion-button{
      background-color: transparent !important;
      color: white !important;
    }
    .accordion-item{
      background-color: transparent !important;
    }
    .accordion-button::after{
      background-image: '' !important;
      content: '▼' !important;
    }
    .accordion-body{
      color: white !important;
    }

    .right-appear-modal {
      transform: translateX(100%) !important;
      transition: transform 0.65s ease-out !important;
    }
    .right-appear-modal.show {
      transform: translateX(0) !important;
    }
    .modal-content{
      right: 0 !important;
      left: 100%;
      width: 50em;
      height: 100vh !important;
      border-radius: 0;
      color: white !important;
      background-color: #000 !important;
    }

    .modal-dialog{
      margin: 0 !important;
    }

    .login-img{
      height: 3em;
    }

    .custom-input__input {
      height: 1.6rem;
      width: 100%;
      appearance: none;
      border: 0;
      border-bottom: 0;
      outline: 0;
      font-size: 1rem;
      font-weight: 300;
      background-color: transparent;
      color: white;
      transform: border-color 0.2s ease-in-out;
    }
    .custom-input__input:focus ~ .custom-input__border::after {
      transform: scaleX(1);
    }
    .border-active::after {
      transform: scaleX(1) !important;
    }
    .custom-input .custom-input__border {
      position: relative;
    }
    .custom-input .custom-input__border::before, .custom-input .custom-input__border::after {
      content: "";
      position: absolute;
      top: 0;
      display: block;
      width: 100%;
      height: 2px;
      background: white;
      transition: background 0.2s ease-in-out;
    }
    .custom-input .custom-input__border::after {
      background: #00acee;
      transition: background 0.2s ease-in-out, transform 0.2s ease-in-out;
      transform: scaleX(0);
    }
    .custom-input.custom-input--invalid.custom-input--dirty .custom-input__border::before, .custom-input.custom-input--invalid.custom-input--dirty .custom-input__border::after {
      background: red;
    }

    .login-card__title {
      text-align: center;
      margin: 1rem;
      margin-top: 0;
    }
    .login-card__label {
      display: block;
      margin: 1rem 0;
      position: relative;
    }
    .login-card__icon {
      position: absolute;
      top: 0;
      right: 0;
      opacity: 0.33;
      color: #000;
      transition: opacity 0.2s ease-in-out;
      cursor: pointer;
    }
    .login-card__text {
      display: block;
      font-size: 0.6em;
    }
    .login-card__input {
      display: block;
      height: 1.7rem;
      padding-right: 1rem;
      padding-bottom: 5px;
      box-sizing: border-box;
    }
    .login-card__input:focus + .login-card__icon {
      opacity: 0.5;
    }
    .login-heading{
      letter-spacing: 1.2px;
    }
    .login-button{
      border-radius: 100px;
      width: 8em;
      padding: 1%;
      border: none;
      color: black;
      background-color: #fff;
      transition: all 0.2s ease-out;
    }
    .login-button:hover{
      color: #fff;
      background-color: #00acee;
    }
    .hint-text {
      font-size: 0.8rem;
      color: #777575;
    }
    .expand-button {
      cursor: pointer;
      display: block;
      width: 20%;
      margin-top: 1rem;
      margin-left: auto;
      margin-right: auto;
      border: none;
      border-radius: 100px;
      background-color: #000;
      color: white;
      font-size: 1rem;
      padding: 0.5rem;
    }
    .expand-button:hover, .expand-button:active, .expand-button:focus {
      background-color: #000;
    }

    .special-text {
      position: relative;
      max-height: 300px;
      overflow: hidden;
      transition: max-height 1s ease;
    }
    .special-text.-expanded {
      max-height: 1000vh;
      padding-bottom: 10em;
    }

    .special-text:not(.-expanded)::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(rgba(255, 255, 255, 0), white);
    }



/*Blogs section*/

.blog-card{
  border: 1.2px solid #ccc;
  border-radius: 12px;
}
.blog-date{
  color: #efefef !important;
}
.outline-btn{
  border: 1.2px solid #fff;
  border-radius: 200px;
  width: 8em;
  background-color: transparent;
  transition: all 0.1s ease-in;
  color: #fff;
}
.outline-btn:hover{
  background-color: #fff;
  color: #000 !important;
}
.blog-img{
  border-radius: 12px;
  width: 70%;
}
.blog-card:nth-child(even) {
  flex-direction: row-reverse;
}
/*.blog-desc{
  height: 3em;
  text-overflow: ellipsis;
}*/


.black-section{
  background-color: #000;
  border-top: 1.2px solid #fff;
}
.text-small{
  font-size: 0.7em;
  line-height: 2.2;
  font-weight: 300;
}
.text-2{
  font-size: 0.8em;
  color: #666;
}
.designation{
  font-weight: 600;
  font-size: 0.85em;
}


/*Contact us*/
.contact-card{
  background-color: #fff;
  border-radius: 12px;
  width: 80%;
}
.contact-card-outline{
  background-color: transparent;
  border-radius: 12px;
  width: 70%;
  border: 1.2px solid #ddd;
}
.contact-icon{
  height: 7em;
}
.contact-heading{
  font-weight: 600 !important;
}
.contact-details{
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease;
}
.contact-details:hover{
  color: #00acee;
}
.contact-details a {
  text-decoration: none; 
  color: inherit;
}
.contact-details-heading{
  font-weight: 300;
}


textarea {
  width: 85%;
  height: 8em;
  padding: 2%;
  box-sizing: border-box;
  border: 1.8px solid #fff;
  border-radius: 12px;
  background-color: transparent;
  resize: none;
  color: white;
}

.contact-select{
  background-color: transparent;
  border: 1.8px solid #fff;
  padding: 1%;
  color: white;
  padding-right: 5%;
}


/*Features page*/
.rounded-section{
  border-top-left-radius: 18px !important;
  border-top-right-radius: 18px !important;
}
.img-section{
  width: 100%;
  background-image: linear-gradient(to right bottom, rgba(51,71,81,0.5), rgba(51,71,81,0.5)), url('/static/images/features-img.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 15em;
}

.feature-title{
  font-size: 3.5em;
  font-weight: 700;
}
.feature-heading{
  font-weight: 700;
  opacity: 0;
}
.feature-heading-2{
  font-weight: 700;
}
.feature-text{
  font-weight: 300;
  font-size: 0.9em;
  line-height: 2;
  opacity: 0;
}
.feature-text-2{
  font-weight: 300;
  font-size: 0.75em;
  line-height: 2;
  width: 85%;
  text-align: justify !important;
}
.feature-img-section{
  position: static;
}
.feature-img-section-2{
  position: static;
}
.sub-features{
  height: 18em;
  margin-bottom: 4em;
}

.feature-img-1{
  height: 120px;
  position: relative;
  opacity: 0;
  top: 140px;
  right: -130px;
  z-index: 3;
}
.feature-img-2{
  height: 220px;
  position: relative;
  opacity: 0;
  top: 20px;
}
.feature-img-3{
  height: 100px;
  left: 30px;
  position: relative;
  opacity: 0;
  z-index: 3;

}
.feature-img-4{
  height: 10em;
  position: relative;
  z-index: 2;
  top: 0em;
  left: 14em;
  opacity: 0;
  scale: 1.2;
}
.feature-img-5{
  height: 7em;
  position: relative;
  z-index: 2;
  top: 4em;
  right: 20em;
  opacity: 0;
  scale: 1.2;
}


@media (max-width:480px)  {
  .feature-title{
    font-size: 2em;
  }
  .feature-heading{
    margin-top: 5%;
  }
  /*.feature-img-1{
    height: 4em;
    top: -2em;
    left: 14em;
    z-index: 2;
  }
  .feature-img-2{
    height: 8em;
    top: 2em;
    left: -2em;
    z-index: 1;
  }
  .feature-img-3{
    height: 4em;
    left: -0.6em;
    top: 0.1em;
    z-index: 2;
  }*/
  .feature-heading-2{
    margin-top: 20%;
  }
  .feature-img-4{
    height: 6.5em;
    z-index: 2;
    left: 0;
    opacity: 1;
  }
  .feature-img-5{
    height: 6.5em;
    z-index: 2;
    left: 0;
    opacity: 1;
  }
  .feature-text-2{
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.8em;
    text-align: center !important;
  }
  .white-section-mobile{
    margin-bottom: 5em;
  }
}


@media (max-width:1200px) {
  /*.feature-img-1{
    height: 6em;
    top: 2em;
    left: 7.5em;
  }
  .feature-img-2{
    height: 10em;
    top: 0;
    left: 1em;
  }
  .feature-img-3{
    height: 6em;
    top: -2em;
    left: -2em;
  }*/

  .white-section-mobile{
    margin-bottom: 8em;
    margin-top: 3em;
  }
  .feature-text-2{
    text-align: center !important;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .mb-4{
    margin-bottom: 4.5rem !important;
  }
}



.contact-us-circle{
  border: none;
/*  height: 50px;*/
  width: 12em;
  padding: 0.6em;
  z-index: 10;
  font-size: 0.8em;
  background-color: #00acee;
  color: #fff;
  border-radius: 200px;
  position: fixed;
  bottom: 20px;
  right: 23px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  drop-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

label.field {
  border-radius: 2px;
  color: #888;
  font-weight: 300;
  display: block;
  width: 85%;
  opacity: 0;
  position: relative;
  transition-property: opacity;
/*  z-index: 1;*/
}
label.field span {
  display: block;
  font-size: 16px;
  height: 25px;
  line-height: 5px;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 32px;
  transform: scale(1) translateY(0);
  transition-property: color, font-size, top;
/*  z-index: 1;*/
}
label.field span.required::after {
  color: #fff;
  content: "*";
  display: block;
  height: 20px;
  left: -20px;
  line-height: 20px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 20px;
}
.error label.field span {
  color: inherit;
}
label.field .psuedo_select {
  background: rgba(255, 255, 255, 0);
  position: relative;
  border-color: #fff;
  border-style: solid;
  border-width: 0 0 2px 0;
  color: #888;
  cursor: pointer;
  font-size: 20px;
  height: 24px;
  line-height: 24px;
  margin: 24px 32px 10px 0;
  width: 100%;
  padding-top: 30px;
  outline: 0;
/*  z-index: 1;*/
}
label.field .psuedo_select::after {
  background: url("data:image/svg+xml;utf8,<svg fill='#666' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'> <path d='M7.41 7.84L12 12.42l4.59-4.58L18 9.25l-6 6-6-6z'/> <path d='M0-.75h24v24H0z' fill='none'/> </svg>"), no-repeat;
  content: "";
  height: 24px;
  width: 24px;
  position: absolute;
  top: 0;
  right: 0;
  transition-property: background;
}
label.field .psuedo_select .selected {
  height: 24px;
  left: 1px;
  line-height: 24px;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: translateY(24px);
  transition-property: opacity, transform;
  will-change: transform;
}
label.field .psuedo_select ul {
  background: #fff;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
  display: block;
  height: 0;
  list-style: none;
  margin-top: 2px;
  opacity: 0;
  overflow-y: scroll;
  max-height: 300px;
  padding: 0 1px;
  pointer-events: none;
  transition-property: height, opacity;
  width: 100%;
}
label.field .psuedo_select ul li:hover{
  background-color: #00acee;
  color: white;
}
label.field .psuedo_select ul li {
  padding: 1.8%;
  font-size: 0.8em;
}
label.field .deselect {
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
/*  z-index: -1;*/
}
label.field.focused {
  color: #fff;
}
label.field.focused .psuedo_select {
  border-color: #fff;
}
label.field.focused .psuedo_select::after {
  background: url("data:image/svg+xml;utf8,<svg fill='#007BED' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'> <path d='M7.41 7.84L12 12.42l4.59-4.58L18 9.25l-6 6-6-6z'/> <path d='M0-.75h24v24H0z' fill='none'/> </svg>"), no-repeat;
}
label.field.focused .psuedo_select ul {
  opacity: 1;
  pointer-events: all;
}
.selected{
  color: #fff !important;
}

@media (max-width: 500px) {
.input-container{
  width: 100% !important;
}
}
