/* ======================================================================================================
* Section two image - section
* ====================================================================================================== */
.section-two-image {
    width: 100vw;
    height: 100%;
    overflow: unset !important;
}

.section-two-image__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ================ Left ================ */
.section-two-image__feuille-container-left {
    position: relative;
    width: 100%;
    height: 415px;
    margin-top: -220px;
    overflow: hidden;
    user-select: none;
}

.section-two-image__left-feuille {
    width: 300px;
    height: 400px !important;
    object-fit: contain;
    object-position: center;
    rotate: 50deg;
    position: absolute;
    left: -100px;
    top: 60px;
}

/* ================ Right ================ */
.section-two-image__feuille-container-right {
    position: relative;
    width: 100%;
    height: 250px;
    margin-top: -100px;
    overflow: hidden;
}

.section-two-image__right-feuille {
    width: 300px;
    height: 400px !important;
    object-fit: contain;
    object-position: center;
    rotate: 50deg;
    position: absolute;
    right: -100px;
    top: -90px;
}

/* ================ Content ================ */
.section-two-image__content {
    max-width: 900px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 0 20px;
}

.section-two-image__content .section-two-image__content-title {
    flex: 1;
}

.section-two-image__content > p {
    flex: 1;
}

/* ================ Images ================ */
.section-two-image__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1250px;
    padding: 60px 20px 230px 20px;
}

.section-two-image__images img {
    border-radius: 20px;
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
}

.section-two-image__images img:last-child {
    margin-top: 90px;
}

/* ================ Responsive ================ */
@media (max-width: 764px) {
    .section-two-image__right-feuille {
        width: 250px;
        height: 350px !important;
        top: -60px;
    }

    .section-two-image__content {
        flex-direction: column;
        gap: 0px;
    }

    .section-two-image__images {
        width: 100%;

        grid-template-columns: 1fr;
        gap: 30px;
        padding: 60px 20px 60px 20px;
    }

    .section-two-image__images img {
        height: 300px;
    }

    .section-two-image__images img:last-child {
        margin-top: 0px;
    }

    .section-two-image__left-feuille {
        height: 310px !important;
        top: 90px;
    }
}

/* ======================================================================================================
* END Section two image - section
* ====================================================================================================== */
