@media (max-width: 1024px) {
    .custom-home-slider{ width:80%!important; }
}
.custom-home-slider {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.custom-home-slider .swiper-wrapper { align-items: center; }
.custom-home-slider .swiper-slide {
  opacity: 0.5;
  transform: scale(0.8);
  transition: all 0.6s ease-in-out;
  z-index: 1;
}
.custom-home-slider .swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: all 0.6s ease-in-out;
}
.custom-home-slider .swiper-slide-active {
  opacity: 1;
  transform: scale(1.2);
  z-index: 3;
}
.custom-home-slider .swiper-slide-active img { transform: translateY(-10px); }
.custom-home-slider .swiper-slide-next,
.custom-home-slider .swiper-slide-prev {
  opacity: 0.8;
  transform: scale(0.9);
  z-index: 2;
}
@media (max-width: 768px) {
  .custom-home-slider .swiper-slide,
  .custom-home-slider .swiper-slide-active,
  .custom-home-slider .swiper-slide-next,
  .custom-home-slider .swiper-slide-prev {
    transform: scale(1)!important;
    opacity: 1!important;
  }
}
