/* === HOME SLIDER STYLES === */
.home-slider {
  height: 50vh;
  min-height: 640px;
  max-height: 1000px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .home-slider {
    height: 50vh;
    min-height: 486px;
  }
}

.home-slider__swiper,
.swiper-wrapper,
.swiper-slide {
  height: 100%;
}

.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.slide-content {
  position: relative;
  z-index: 3;
  padding: 75px 25px 107px;
}

.slide-heading {
  font-family: 'Mukta', sans-serif;
  font-size: 47px;
  font-weight: 600;
  line-height: 38px;
  margin-bottom: 22px;
}

.slide-description {
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .slide-heading {
    font-size: 29px;
    line-height: 1.1em;
  }

  .slide-description {
    font-size: 14px;
  }
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff;
}

.swiper-pagination-bullet {
  background-color: #fff;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background-color: #ffe500;
  opacity: 1;
}
