.banner {
  position: relative;
}

.banner-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(280deg, rgba(0, 0, 0, 0.129) 5%, #0053a9 82%);
  z-index: 90;
}

.hero {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  width: 100%;
  z-index: 95;
  display: none;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out; 
}

.hero.active{
  display: block !important;
  animation: fadeIn 1s ease-in-out; /* Apply animation */

}

.swiper-wrapper img{
  background-position: center;
  background-size: contain;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-35%);
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

.container-banner {
  position: relative !important;
}

.swiper-pagination-bullet-active {
  background: #ffffff !important;
  z-index: 10;
}

.hero h1 {
  margin: 0;
  font-size: 70px;
  font-weight: 700;
  line-height: 56px;
  color: #ffffff;
  max-width: 800px;
  line-height: 70px;
  margin: 15px 0px;
}

.hero .desc{
  font-size: 18px;
  color: #fff;
  margin: 15px 0px;
  max-width: 700px;
}

.hero .sub-tit{
  text-transform: uppercase;
  font-size: 13px;
  color: #fff;
  max-width: 800px;
  font-weight: 800;
  margin: 15px 0px !important;
}


.btn-white {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 1px;
  display: inline-block;
  padding: 20px 28px;
  border-radius: 4px;
  z-index: 1;
  transition: 0.5s;
  color: #262F5A;
  background: #fff;
  margin: 15px 0px;
}



@media (max-width: 768px) {
  .hero h1 {
      font-size: 38px;
      line-height: 36px;
  }

  .hero h2 {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
      font-size: 13px;
  }
}

@media (max-width: 408px) {
  .hero h1 {
      font-size: 32px;
      line-height: 36px;
  }
}

@media (max-width: 360px) {
  .hero h1 {
      font-size: 28px;
      line-height: 36px;
  }
  .hero .btn-watch-video {
      font-size: 11px;
  }
}

@media (max-height: 500px) {
  .hero {
      height: 120vh;
  }
}

@media (max-height: 500px) {
  .hero .desc{
    font-size: 15px;
  }
}
