.vousEtesPage2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}

.vousEtesPage2 b {
    text-transform: uppercase;
    color: var(--dark-pink);
    font-weight: bold;
}

.vousEtesPage2 p {
    font-size: 25px;
    margin: 0;
    margin-bottom: 10px;
}

.vousEtesPage2 .left {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 50%;
    padding: 90px 90px;
    box-sizing: border-box;
    height: 100%;
}

.vousEtesPage2 .left section {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.vousEtesPage2 .left section h1 {
    width: 55%;
    color: #000;
    font-size: 110px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -1.5px;
    margin: 0;
    margin-bottom: 70px;
}


.vousEtesPage2 .left #section1 {
    animation: section1 46s;

}

@keyframes section1 {
    0% {
        opacity: 0;
        display: none;
        height: 0;
    }
    10% {
        opacity: 1;
        display: flex;
        height: 100%;
    }
    30% {
        opacity: 1;
        display: flex;
        height: 100%;
    }
    35% {
        height: 0;
        opacity: 0;
        display: none;
    }
    100% {
        height: 0;
        opacity: 0;
        display: none;
    }
}

.vousEtesPage2 .left #section2 {
    animation: section2 46s;

}

@keyframes section2 {
    0% {

        opacity: 0;
        display: none;
        height: 0;
    }
    35% {
        opacity: 0;
        display: none;
        height: 0;
    }
    40% {
        opacity: 1;
        display: flex;
        height: 100%;
    }
    55% {
        opacity: 1;
        display: flex;
        height: 100%;
    }
    60% {
        opacity: 0;
        display: none;
        height: 0;
    }
    100% {
        opacity: 0;
        display: none;
        height: 0;
    }
}

.vousEtesPage2 .left #section3 {
    animation: section3 46s;
}

@keyframes section3 {
    0% {

        opacity: 0;
        display: none;
        height: 0;
    }
    60% {
        opacity: 0;
        display: none;
        height: 0;
    }
    65% {
        opacity: 1;
        display: flex;
        height: 100%;
    }
    85% {
        opacity: 1;
        display: flex;
        height: 100%;
    }
    90% {
        opacity: 0;
        display: none;
        height: 0;
    }
    100% {
        opacity: 0;
        display: none;
        height: 0;
    }

}

/* ================= RIGHT ====================*/

.vousEtesPage2 .right {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 50%;
    max-height: 100%;
    height: 100%;
    padding: 90px 40px;
    box-sizing: border-box;
    gap: 20px;
}

.vousEtesPage2 .right img {
    width: calc(50% - 10px);
    height: calc(50% - 10px);
    object-fit: cover;
}

.vousEtesPage2 .right span {
    width: calc(50% - 10px);
    color: #000;
    font-size: 120px;
    font-style: normal;
    font-weight: 600;
    line-height: 94px;
    letter-spacing: -1.5px;
    margin: 0;
    text-align: start;
    align-self: end;
    justify-self: end;
}


.vousEtesPage2 .right #img1 {
    animation: image1 46s;
}

@keyframes image1 {
    0% {
        opacity: 0.3;
    }
    5% {
        opacity: 1;
    }
}

.vousEtesPage2 .right #img2 {
    animation: image2 46s;
}

@keyframes image2 {
    0% {
        opacity: 0.3;
    }
    35% {
        opacity: 0.3;
    }
    40% {
        opacity: 1;
    }
}

.vousEtesPage2 .right #img3 {
    animation: image3 46s;
}

@keyframes image3 {
    0% {
        opacity: 0.3;
    }
    65% {
        opacity: 0.3;
    }
    70% {
        opacity: 1;
    }
}