/* hero.css */
.swiper {
  margin-top: 3rem;
  width: 100%;
  height: 90vh;
  position: relative; 
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-wrapper {
  transition-timing-function: ease-in-out !important;
}


:root {
  --swiper-theme-color: #fff;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  color: #fff;
}

.swiper-pagination-bullet {
  background: rgba(255,255,255,0.6);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-scrollbar-drag {
  background: rgba(255,255,255,0.7) !important;
}

.swiper .swiper-pagination-bullet {
  background-color: rgba(255,255,255,0.6) !important;
  opacity: 1 !important;
}

.swiper .swiper-pagination-bullet-active {
  background-color: #fff !important;
}
