/* header {
    mix-blend-mode: difference;
    color: white;
} */



.galeriegauche,
.galeriedroite {
    width: 50%;
    height: 100dvh;
    position: absolute;
    top: 0;
    overflow: hidden;
}

.galeriegauche {
    left: 0;
}

.galeriedroite {
    right: 0;
}

.galeriegauche figure,
.galeriedroite figure {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.galeriegauche figure.active,
.galeriedroite figure.active {
    opacity: 1;
}

.galeriegauche img,
.galeriedroite img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper {
    width: 100%;
    height: 50dvh;
    overflow: visible !important;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1 !important;
    transform: none !important;

    /* margin: 0 !important; */
    /* border: 2px solid red; */
}

.swiper-slide img {
    display: block !important;
    /* width: 100%;
    height: auto;
    object-fit: contain; */
    visibility: visible !important;
    opacity: 1 !important;
}




@media screen and (max-width: 650px) {
    body .is-layout-flex {
        display: block !important;
    }

    .galeriegauche figure,
    .galeriedroite figure {
        opacity: 1 !important;
        transition: none;
    }

    .galerie-container {
        display: flex;
        flex-direction: column;
    }

    .galeriegauche,
    .galeriedroite {
        width: 100%;
        height: 50dvh;
        position: relative;
    }

    .swiper-wrapper {
        display: flex;
    }

    .swiper-slide {
        flex: 0 0 100%;
    }
}