.mySwiper {
    padding: 0 0 36px 0;
    height: 480px;
}
  
.mySwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 450ms cubic-bezier(.2,.9,.2,1),opacity 300ms ease,filter 300ms ease,box-shadow 300ms ease;
    will-change: transform, filter, opacity;
}
  
.mySwiper .swiper-slide img {
    width: 100%; 
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transition: transform 450ms ease;
}
  
.mySwiper .swiper-slide:not(.swiper-slide-active) {
    transform: scale(0.64);
    opacity: 0.78;
    filter: blur(1px);
    pointer-events: auto;
}
  
.mySwiper .swiper-slide.swiper-slide-active img{
    transform: scale(1.1);
    opacity: 1;
    filter: none;
    z-index: 6;
    box-shadow: 0 10px 15px rgba(8,18,38,0.18);
}
  
.mySwiper .swiper-slide.swiper-slide-active:hover img {
    transform: scale(1.15);
}

.mySwiper .swiper-slide {
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.6;
}
  
.mySwiper .swiper-slide-active {
    transform: scale(1.2);
    opacity: 1;
    z-index: 2;
}
  
.mySwiper .swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}
  
.swiper-button-next, .swiper-button-prev {
    color: rgba(121, 121, 121, 0.6);
    font-size: 8px;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 35px;
}

.swiper-pagination-bullet-active {
    background-color: #333;
}
  
/* MODAL */
.lightboxModal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}
  
.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
}
  
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    z-index: 10000;
}
  
.myLightbox .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
  
.myLightbox .swiper-slide img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
}
  
@media (max-width:475px) {
    .mySwiper .swiper-slide.swiper-slide-active img{
        transform: scale(0.8) !important;
    }
}