/* ---------------------------Custom Home slider------------------------------   */


.style__btn {
  height: 50px;
  line-height: 50px;
  display: flex;
  align-items: center;
  gap: 50px;
  color: #000000;
  padding: 0 20px;
  margin-top: 20px;
  width: fit-content;
  background: transparent;
  border: 1px solid #aea58c;
}

.style__btn img {
  transition: all 0.4s ease-in-out !important;
}

.spotlight-slider .style__btn {
  color: #000000;
}

.spotlight-slider .style__btn:hover {
  background: #c51230;
  color: #ffffff;
}

.spotlight-slider .style__btn:hover img {
  filter: grayscale(1) !important;
  transform: translate(7px, -4px);
}

.custom__arrows .style__btn:not(:hover) img {
  filter: invert();
}

.slider__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* .swiper .swiper-slide:not(.swiper-slide-active) {
  opacity: 0;
  visibility: hidden;
} */

.slider__content {
  width: 30%;
}

.slider__content h4 {
  font-size: 24px;
  font-weight: 400;
}

.slider__content__inside {
  min-height: 200px;
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
}

.slider__image {
  width: 60%;
  padding-right: 100px;
}

.slider__image img {
  width: 100%;
  min-height: 470px;
  object-fit: cover;
}

/* .swiper.custom__arrows {
  overflow: visible;
} */

.custom__arrows .swiper-button-next,
.custom__arrows .swiper-button-prev {
  width: 52px;
  height: 52px;
  background: #e6e6e6;
}

.custom__arrows .swiper-button-next:hover,
.custom__arrows .swiper-button-prev:hover {
  background: #c51230 !important;
}

.custom__arrows .swiper-button-next:hover:after,
.custom__arrows .swiper-button-prev:hover:after {
  color: #ffffff !important;
}

.custom__arrows .swiper-button-prev {
  left: -100px;
}

.custom__arrows .swiper-button-next {
  right: -100px;
}

.custom__arrows .swiper-button-next:after,
.custom__arrows .swiper-button-prev:after {
  font-size: 14px;
  color: #c51230;
}

.custom__arrows .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  bottom: 60px;
}

.custom__arrows .swiper-pagination::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  background: #c51230;
  left: 0 !important;
  bottom: -1px;
}

.custom__arrows .swiper-pagination-bullet {
  width: 200px;
  height: 8px;
  margin: 0 !important;
  background: #c51230;
  border-radius: initial;
}

.swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
  opacity: 0;
  transform: translateY(-10px);
}

.spotlight-slider .swiper-slide .slider__content {
  transform: translateY(100px);
  transition: all .6s ease-in-out;
}

.spotlight-slider .swiper-slide.swiper-slide-active .slider__content {
  transform: translateY(0);
}

.spotlight-slider .swiper-slide .slider__image {
  transition: all .6s ease-in-out;
}

.spotlight-slider .swiper-slide:not(.swiper-slide-active) .slider__image {
  transform: scale(1.2);
}

/* ---------------------------------------------------------   */
/* ---------------------------------------------------------   */

@media (max-width: 860px) {
  .slider__content h4 {
    font-size: 18px;
  }

  .style__btn {
    height: 44px;
    line-height: 44px;
    gap: 40px;
    padding: 0 15px;
  }

  .slider__image img {
    min-height: 370px;
  }

  .custom__arrows .swiper-pagination {
    bottom: 30px;
  }

  .slider__content {
    width: 40%;
  }

  .slider__image {
    width: 55%;
    padding-right: 20px;
  }
}

@media (max-width: 767px) {

  .slider__content,
  .slider__image {
    width: 100%;
    padding: 0;
  }

  .slider__wrap {
    row-gap: 40px;
    flex-wrap: wrap;
  }

  .slider__wrap {
    min-height: 200px;
  }

  .slider__content h4 {
    font-size: 18px;
  }

  .slider__image img {
    min-height: 300px;
  }

  .spotlight-slider .swiper-slide .slider__content {
    transform: translateY(20px);
  }

  .slider__content__inside {
    min-height: auto;
  }

  .spotlight-slider .swiper-slide:not(.swiper-slide-active) .slider__image {
    transform: unset;
  }
}