.normal__heroSlider {
  width: 100%;
  height: 60vh;
  position: relative;
}
@media (max-width: 575px) {
  .normal__heroSlider {
    height: 80vh;
  }
}
.normal__heroSlider .swiper,
.normal__heroSlider .swiper-wrapper,
.normal__heroSlider .swiper-slide {
  height: 100%;
}
.normal__heroSlider .grid__card {
  position: relative;
  width: 100%;
  height: 100%;
}
.normal__heroSlider .grid__card .card__img {
  position: relative;
  width: 100%;
  height: 100%;
}
.normal__heroSlider .grid__card .card__img a {
  position: static;
  height: 100%;
  padding-bottom: 0;
}
.normal__heroSlider .grid__card .card__img a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.normal__heroSlider .grid__card .card__img a img {
  position: static;
}
.normal__heroSlider .grid__card .card__details {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px;
  z-index: 2;
  padding-right: 300px;
}
@media (max-width: 575px) {
  .normal__heroSlider .grid__card .card__details {
    padding: 20px;
  }
}
.normal__heroSlider .grid__card .card__details .card__title {
  font-size: 32px;
  font-weight: bold;
  color: white;
  transition: all 300ms ease-in-out;
}
@media (max-width: 768px) {
  .normal__heroSlider .grid__card .card__details .card__title {
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  .normal__heroSlider .grid__card .card__details .card__title {
    font-size: 24px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.normal__heroSlider .grid__card .card__details .card__title:hover {
  color: var(--secondary-color);
}
.normal__heroSlider .grid__card .card__details .card__title a {
  color: inherit;
}
.normal__heroSlider .swiper-pagination {
  z-index: 3;
}
.normal__heroSlider .swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  width: 15px;
  height: 15px;
  background: white;
  opacity: 0.3;
  transition: all 300ms ease-in-out;
}
@media (max-width: 575px) {
  .normal__heroSlider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}
.normal__heroSlider .swiper-pagination .swiper-pagination-bullet:hover {
  opacity: 0.7;
}
.normal__heroSlider
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transform: scale(1.2);
  opacity: 1;
}
