.swiper-main {
    @apply size-full;

    .swiper-slide {
        @apply size-full;

        img {
            @apply w-full h-full object-cover pointer-events-none block;
        }

        /* &.swiper-slide-active{
            .gallery-slider-item__content > * {
                @apply opacity-100 transform-none;
            }
            .gallery-slider-item__content > *:nth-child(1) {
                @apply delay-[.3s];
            }
            .gallery-slider-item__content > *:nth-child(2) {
                @apply delay-[.4s];
            }
            .gallery-slider-item__content > *:nth-child(3) {
                @apply delay-[.5s];
            }
            .gallery-slider-item__content > *:nth-child(4) {
                @apply delay-[.6s];
            }
            .gallery-slider-item__content > *:nth-child(5) {
                @apply delay-[.7s];
            }
            .gallery-slider-item__content > *:nth-child(6) {
                @apply delay-[.8s];
            }
            .gallery-slider-item__content > *:nth-child(7) {
                @apply delay-[.9s];
            }
            .gallery-slider-item__content > *:nth-child(8) {
                @apply delay-[1s];
            }
            .gallery-slider-item__content > *:nth-child(9) {
                @apply delay-[1.1s];
            }
            .gallery-slider-item__content > *:nth-child(10) {
                @apply delay-[1.2s];
            }
            .gallery-slider-item__content > *:nth-child(11) {
                @apply delay-[1.3s];
            }
            .gallery-slider-item__content > *:nth-child(12) {
                @apply delay-[1.4s];
            }
            .gallery-slider-item__content > *:nth-child(13) {
                @apply delay-[1.5s];
            }
            .gallery-slider-item__content > *:nth-child(14) {
                @apply delay-[1.6s];
            }
            .gallery-slider-item__content > *:nth-child(15) {
                @apply delay-[1.7s];
            }
        } */
    }

    /* .swiper-slide::after{
        @apply content-[''] absolute top-0 left-0 w-full h-full ;
        background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.6) 100%);
    } */
    /* .gallery-slider-item__item {
        @apply relative;
    }
    .gallery-slider-item__img {
        @apply size-full;
    }
    .gallery-slider-item__title {
        @apply text-5xl leading-snug mb-3 text-white;
    }
    .gallery-slider-item__text {
        @apply text-2xl text-white;
    }
    .gallery-slider-item__content {
        @apply absolute top-1/2 -translate-y-1/2 min-[1600px]:left-80 left-10 w-3/5 z-20 pt-5 lg:pt-[200px];
        & > * {
            @apply opacity-0 transition-all duration-[.4s] translate-y-[25px] ;
        }
    } */
}

.swiper-slide-active {
    .gallery-slider-item__content>* {
        @apply opacity-100 transform-none;
    }

    .gallery-slider-item__content>*:nth-child(1) {
        @apply delay-[.3s];
    }

    .gallery-slider-item__content>*:nth-child(2) {
        @apply delay-[.4s];
    }

    .gallery-slider-item__content>*:nth-child(3) {
        @apply delay-[.5s];
    }

    .gallery-slider-item__content>*:nth-child(4) {
        @apply delay-[.6s];
    }

    .gallery-slider-item__content>*:nth-child(5) {
        @apply delay-[.7s];
    }

    .gallery-slider-item__content>*:nth-child(6) {
        @apply delay-[.8s];
    }

    .gallery-slider-item__content>*:nth-child(7) {
        @apply delay-[.9s];
    }

    .gallery-slider-item__content>*:nth-child(8) {
        @apply delay-[1s];
    }

    .gallery-slider-item__content>*:nth-child(9) {
        @apply delay-[1.1s];
    }

    .gallery-slider-item__content>*:nth-child(10) {
        @apply delay-[1.2s];
    }

    .gallery-slider-item__content>*:nth-child(11) {
        @apply delay-[1.3s];
    }

    .gallery-slider-item__content>*:nth-child(12) {
        @apply delay-[1.4s];
    }

    .gallery-slider-item__content>*:nth-child(13) {
        @apply delay-[1.5s];
    }

    .gallery-slider-item__content>*:nth-child(14) {
        @apply delay-[1.6s];
    }

    .gallery-slider-item__content>*:nth-child(15) {
        @apply delay-[1.7s];
    }
}

.gallery-slider-item__item {
    @apply relative;
}

.gallery-slider-item__img {
    @apply size-full;
}

.gallery-slider-item__title {
    @apply mb-3 text-white;
}

.gallery-slider-item__text {
    @apply text-white;
}

.gallery-slider-item__content {
    @apply absolute top-1/2 -translate-y-1/2 left-0 w-full z-20 pt-5 lg:pt-[200px];

    &>* {
        @apply opacity-0 transition-all duration-[.4s] translate-y-[25px];
    }
}

.swiper-slide:not(.swiper-slide-active) {
    display: none;
}