.parallaxe {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    min-height: 100svh;
    background-image: url('../images/fondParallaxe3.webp');
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.section__container {
    width: 100%;
    min-height: 100svh;
}

.section__item:nth-child(1),
.section__item:nth-child(3) {
    min-height: 23svh;
    background-color: var(--color-2);
}

.section__item:nth-child(2) {
    --item-height_c : 54svh;
    min-height: var(--item-height_c);
    background-color: transparent;
    box-shadow: inset 0 -5px 10px rgba(0, 0, 0, 0.4),
        inset 0 5px 10px rgba(0, 0, 0, 0.4);
}