

.hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero.fixed-attachment {
  background-attachment: fixed;
}

.hero.overlay {
  position: relative;
}

.hero.overlay:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero,
.hero>.containerss>.row {
  height: auto;
  min-height: 600px;
}


@media (max-width: 991.98px) {

  .facts {
    position: relative;
    margin-top: -200px;
    z-index: 1;
  }
}

@media (max-width: 991.98px) {
  .errcontainerss {
    position: relative;
    width: 100%;
    background-color: #FFF6D1;
  }
}


.hero figure {
  position: relative;
}



.hero .quote {
  padding: 50px;
  background: #000839;
  color: #ffffff;
  width: 100%;
  bottom: -20px;
  left: -50px;
  position: absolute;
}

.hero-slant {
  background-color: #ccc;
  position: relative;
  background-size: cover;
}

.hero-slant.overlay {
  position: relative;
}

.hero-slant.overlay:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero-slant .containers {
  position: relative;
}

.hero-slant,
.hero-slant>.containers>.row {
  height: 100vh;
}

.hero-slant .sign-up-form {
  padding: 10px;
  border-radius: 7px;
  background: #ffffff;
  -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
}

.hero-slant .sign-up-form .form-control {
  border: none;
}

.hero-slant .sign-up-form .form-control:active,
.hero-slant .sign-up-form .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.hero-slant .sign-up-form input[type="submit"] {
  -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
  border-radius: 7px;
}

.hero-slant .intro {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.hero-slant .hero_img {
  position: absolute;
  right: 0;
  z-index: 9;
  bottom: 100px;
}

@media (max-width: 991.98px) {
  .hero-slant .hero_img {
    position: relative;
    margin-top: -200px;
    bottom: -100px;
    margin-bottom: 140px;
  }
}

.hero-slant .slant {
  position: absolute;
  width: calc(100% + 2px);
  height: 380px;
  bottom: -2px;
  left: -2px;
  z-index: 1;
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
}

.w-100 {
  max-width: 100%;
  max-height: 100%;
}

/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
  #heros {
    width: 100%;
    position: relative;
    background-size: cover;
    position: relative;
  }
  
  #heros:before {
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }
  
  #heros .container {
    padding-top: 80px;
  }
  
  #heros .btn-get-started {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 14px 50px;
    border-radius: 5px;
    transition: 0.5s;
    margin-top: 30px;
    color: #fff;
    background: #2487ce;
  }
  
  #heros .btn-get-started:hover {
    background: #3194db;
  }
  
  #heros .icon-boxes {
    margin-top: 20px;
  }
  
  #heros .icon-box {
    min-width: 260px;
    min-height: 180px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
  }
  
  #heros .icon-box .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  #heros .icon-box .title a {
    color: #124265;
    transition: 0.3s;
  }
  
  #heros .icon-box .description {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 0;
  }
  
  #heros .icon-box img {
    margin-bottom: 20px;
    padding-top: 10px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    min-width: 30%;
    line-height: 1;
    color: #2487ce;
  }
  
  #heros .icon-box:hover {
    transform: scale(1.08);
  }
  
  #heros .icon-box:hover .title a {
    color: #2487ce;
  }
  
  @media (min-width: 1024px) {
    #heros {
      background-attachment: fixed;
    }
  }
  
  @media (max-width: 992px) {
    #heros {
      height: auto;
    }
  }
  
  @media (max-height: 800px) {
    #heros {
      height: auto;
    }
  }
/*
*
* ==========================================
* STICKY BUTTON
* ==========================================
*
*/
.btns {
  color: white;
  text-decoration: none;
  border-radius: 0px 60px 60px 0px;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  max-width: 60px;
  /** I'm animating max-width because width needs to be auto, and auto can't be animated **/
  -webkit-transition: max-width 0.5s;
  transition: max-width 0.5s;
}

.btns:hover {
  max-width: 300px;
}

.icon {
  margin-right: 15px;
  padding: 0px 8px;
  display: flex;
  align-items: center;
}

img {
  max-width: 30px;
}

.text {
  white-space: nowrap;
  padding-right: 15px;
}

.position {
  position: fixed;
  margin-top: 180px;
  z-index: 9999;
}

/*** Facts ***/
@media (max-width: 819.98px) {
  .facts {
    position: relative;
    margin-top: -400px;
    z-index: 1;
  }

  .w-100 {
    min-height: 480px;
    width: auto;
    object-fit: cover;
  }

}

/*** Facts ***/
@media (min-width: 991.98px) {
  .facts {
    position: relative;
    margin-top: -400px;
    margin-bottom: 80px;
    z-index: 1;
  }

  .logo2 {
    max-width: 200px;
    max-height: 200px;
  }

  .logoa {
    max-width: 150px;
    max-height: 150px;
  }
}



.search-box {
  width: 100%;
}

#search-input .search-input-modal{
  width: 100%;
}

form{
  width:100%;
}

.search-box input[type="text"] {

  border: 1px solid #CCCCCC;

}

.result {
  position: absolute;
  z-index: 99999;
  top: 100%;
  overflow-y: auto;
  overflow-x: auto;
  height: 30vh;
  width: 46vw;

}


/* Formatting result items */
.result p {
  margin: 0;
  border-top: none;
  cursor: pointer;
  background-color: #ffffff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  padding-left: 3vw;
  padding-top: 2vh;
  padding-bottom: 1vh;
}


.result i {
  padding-right: 1vw;
}

.result small {
  font-size: 70%;
  color: grey;
  font-weight: 400;
  padding-left: 2vw;
}

.result p:hover {
  background: #d0d0d0;
}

.modal-body {
  max-height: calc(200vh - 160px);
  overflow: hidden;
}


.modal-body .section-title {
  position: sticky;
}

.modal-body .faq-list {
  max-height: calc(100vh - 450px);
  overflow-y: auto;

}






::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 10px;
}

::-webkit-scrollbar {
  width: 3px !important;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #CCCCCC;
  border-radius: 10px;
}