html,
body {
  position: relative;
  height: 100%;
}
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  height: 95vh !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slide-1{
  background: linear-gradient(rgba(1, 4, 66, 0.33), rgba(1, 4, 66, 0.33)), url(./../assets/img/bg5.png) 66% / cover;

}
.slide-2{
  background: linear-gradient(rgba(1, 4, 66, 0.33), rgba(1, 4, 66, 0.33)), url(./../assets/img/bg1.jpg) 66% / cover;

}
.slide-3{
  background: linear-gradient(rgba(1, 4, 66, 0.33), rgba(1, 4, 66, 0.33)), url(./../assets/img/bg2.jpg) 66% / cover;

}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  color: white;
  font-size: 1.4rem !important;
  font-weight: 900;
}

.swiper-slide .title {
  bottom: 10px;
  left: 10%;
  z-index: 10000;
  opacity: 0;
  position: absolute;
  animation: slideIn 1s ease-out forwards;
 
}

@keyframes slideIn {
  0% {
    bottom: 10px;
    opacity: 0;
  }
  0% {
    opacity: 0;
  }
  100% {
    bottom: 35%;
    opacity: 1;
  }
}

@media only screen and (max-width: 1140px) {
  .swiper-slide {
    height: 75vh !important;
  }
}
@media only screen and (max-width: 768px) {
  .swiper-slide {
    height: 50vh !important;
  }


}
