/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Apr 05 2026 | 07:33:22 */
@media (min-width: 1024px) {

    /* выравнивание */
    .my-carousel .swiper-wrapper {
        display: flex;
        align-items: center;
    }

    /* все слайды маленькие */
    .my-carousel .swiper-slide {
        transform: scale(0.85) !important;
        transition: transform 0.3s ease !important;
    }

    /* центральный */
    .my-carousel .swiper-slide-active + .swiper-slide {
        transform: scale(1.2) !important;
        z-index: 5;
    }

}