body {}

.swiper {
    height: 100vh;
    width: 100vw;


}

.swiper-mobile {
    display: none !important;
}

@media (width <=968px) {
    .swiper-desktop {
        display: none !important;
    }

    .swiper-mobile {
        display: block !important;
        height: 100dvh;
        width: 100vw;
        position: fixed;
        top: 0;
        left: 0;
    }
}

.swiper-wrapper {
    transition-timing-function: var(--easing) !important;
}

main {
    opacity: 1;
    /* animation: introduction .5s ease-in-out 1s 1 forwards; */
}

.swiper-slide.full {
    width: 100%;
}

.swiper-slide {
    position: relative;
}

.swiper-slide.half-group {
    width: 100%;
    display: flex;

}

.half {
    width: 50%;

    position: relative;
}



.image_description,
.swiper-image_description {
    text-align: center;
    color: var(--color);
    z-index: 1;
    bottom: 0;
    position: fixed;
    width: 50%;
    bottom: calc(100% - (100dvh - var(--body-margin)));
}

picture img[data-orientation="portrait"],
picture img[data-orientation="square"],
video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

picture img[data-orientation="landscape"],
video {
    width: 100%;
    height: 100%;
    object-fit: cover;

}


@keyframes identifier {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

a.active {
    display: none;
}

a {
    text-decoration: none;
    color: var(--color);
}



.image_description.left,
.image_description.right,
.swiper-image_description.left,
.swiper-image_description.right {
    color: var(--color);
    cursor: pointer;
    font-size: var(--font-size);

}

.swiper-image_description>h2>* {
    color: inherit;


}

.swiper-image_description .thumbnails {
    height: 0;
    transition: all 0.2s ease;
    display: inline-block;
    transform: matrix(1, 0, 0, 1, 0, 32);

}

.swiper-image_description:hover>h2>.thumbnails {
    color: inherit;
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0);


}


.image_description.left,
.image_description.right,
.swiper-image_description {
    width: 50%;
}

.image_description.left,
.swiper-image_description.left {
    /* left: 0; */
}

.image_description.right,
.swiper-image_description.right {

    position: absolute;
    left: 50%;
}

picture {
    display: flex;
    height: 100%;
    width: 100%;
}


.transitioning .swiper-desktop .swiper-slide picture>img,
.transitioning .swiper-desktop .swiper-slide video {
    visibility: hidden;
    display: none;

}


.swiper-slide.swiper-slide-visible picture>img,
.swiper-slide.swiper-slide-visible video,
.swiper-slide.swiper-slide-next picture>img,
.swiper-slide.swiper-slide-next video,
.swiper-slide.swiper-slide-prev picture>img,
.swiper-slide.swiper-slide-prev video {
    visibility: visible !important;
    display: block !important;

}

.swiper-slide .animate {
    animation: already 0.5s ease-in-out 0s 1 forwards;

}

@keyframes already {
    0% {
        filter: grayscale(0) blur(0);


    }

    50% {
        filter: grayscale(1) blur(0px);


        ;
    }

    100% {
        filter: grayscale(0) blur(0);

    }

}

@media (width < 960px) {
    .half {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .image_description.right {
        display: none;
    }

    .image_description.left {

        width: 100%;
    }

    .image_description,
    .swiper-image_description {
        position: absolute;
        width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }

}