/*#region SECTION 2*/
#section21 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: end;
    padding-bottom: var(--spacing-lg);
    column-gap: var(--spacing-md);
    row-gap: var(--spacing-md);
}

.section22 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    padding: var(--spacing-lg) var(--spacing-md);
    box-sizing: border-box;
    border-radius: 16px;
}

.section22-jaune {
    background-color: var(--jaune);
    /* height: 100%; */
}

.section22-vert-clair {
    background-color: var(--vert);
    /* height: 90%; */
}

.section22-vert {
    background-color: var(--vert-fonce);
    /* height: 85%; */
}

.section22-beige {
    background-color: var(--beige);
    /* height: 100%; */
}

.section221 h3 {
    margin-bottom: var(--spacing-sm);
}

.section221 {
    display: flex;
    flex-direction: column;
    align-items: baseline;
}

.section222 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
}

.section222 p {
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
}

.section22-vert p,
.section22-vert .section221 .section2212 {
    color: var(--blanc);
}

.section2211 {
    margin-bottom: var(--spacing-sm);
}

.section2212 {
    font-size: 22px;
}

/* #endregion */

/*#region SECTION 3*/
#section-3 {
    padding: var(--spacing-lg) 0;
}

#section-3 h2 {
    margin: 0 0 var(--spacing-md) 0;
    text-align: center;
}

#section-3-1 {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: var(--spacing-md);
    row-gap: var(--spacing-md);
}

.section-3-1-1 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.section-3-1-1 p {
    margin: 0px;
    text-align: center;
}

.section-3-1-1 img {
    margin-bottom: var(--spacing-sm);
}

/* #endregion */

/*#region SECTION 4*/

#section-4 {
    background-color: var(--gris-clair);
    padding: var(--spacing-xl) 0;
}

#section-4 a:hover{
    text-decoration: underline;
}

#section41 {
    display: flex;
    column-gap: var(--spacing-md);
    row-gap: var(--spacing-md);
}

#section4123 {
    font-weight: bold;
}


/* #endregion */

/*#region SECTION 5 */
#section5 {
    padding: var(--spacing-lg) 0;
}
#section51{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: var(--spacing-md);
    row-gap: var(--spacing-md);
}
#section511 img {
    width: 100%;
    border-radius: 16px;
}
#section512{
    display: flex;
    flex-direction: column;
    align-items: baseline;
    padding: var(--spacing-md) 0;
    justify-content: space-between;
}
#section512 h2{
    margin: 0;
}
/* #endregion */

/*#region SECTION 6*/
#section6 {
    padding: var(--spacing-lg) 0;
}

#section61 {
    display: flex;
    flex-direction: column;
    row-gap: var(--spacing-md);
    column-gap: var(--spacing-md);
    align-items: center;
}

#section612 {
    display: grid;
    column-gap: var(--spacing-md);
    row-gap: var(--spacing-md);
    grid-template-columns: repeat(5, minmax(0, 1fr));
    justify-items: center;
    align-items: center;
    width: 100%;
}

.section6211 img {
    width: 100%;
}

/* #endregion */

/*#region SECTION 7*/
#section7 {
    padding: var(--spacing-xl) 0;
}

#section71 {
    display: flex;
    column-gap: var(--spacing-md);
    flex-direction: column;
    align-items: center;
}

#section712 {
    width: 100%;
}

.question {
    border: 1px solid #ccc;
    margin-bottom: 10px;
    background-color: var(--gris-clair);
}

.question-title {
    cursor: pointer;
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
}

.answer {
    display: none;
    padding: var(--spacing-md);
}

.toggle-icon-moins {
    display: none;
}

#section713 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#section713 p {
    padding: var(--spacing-md) 0;
}

/* #endregion */

/*#region SECTION 8*/
#section8 {
    padding: var(--spacing-lg) 0;
}

#section8-1cont {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

#section8-1-1 {
    line-height: 1.3em;
    font-size: 30px;
}



/* #endregion */

/*#region @MEDIA*/
@media (max-width: 1199px) {
    /*************/
    /* SECTION 2 */
    /*************/
    #section21 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 90px;
    }
    /*************/
    /* SECTION 3 */
    /*************/
    #section-3-1 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    /*************/
    /* SECTION 4 */
    /*************/
    #section41 {
        flex-direction: column;
        align-items: center;
    }

    #section412 {
        text-align: center;
    }
    /*************/
    /* SECTION 5 */
    /*************/
    #section51{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    #section511{
        text-align: center;
    }
    /* #section511 img{
        width: auto;
    } */
    #section512{
        padding: 0;
    }

    /*************/
    /* SECTION 6 */
    /*************/
    #section612 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {

    /*************/
    /* SECTION 1 */
    /*************/
    #section-1 {
        width: 90%;
    }
    /*************/
    /* SECTION 4 */
    /*************/
    #section411 {
        text-align: center;
    }

    /*************/
    /* SECTION 6 */
    /*************/
    #section612 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {

    /*************/
    /* SECTION 2 */
    /*************/
    #section21 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        row-gap: 20px;
    }

    .section22-jaune {
        height: 100%;
    }

    .section22-vert-clair {
        height: 100%;
    }

    .section22-vert {
        height: 100%;
    }

    .section22-beige {
        height: 100%;
    }

    /*************/
    /* SECTION 3 */
    /*************/
    #section-3-1 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    /*************/
    /* SECTION 8*/
    /*************/
    #section8-1cont {
        flex-direction: column;
    }

    #section8-1-1 {
        margin-bottom: 30px;
    }

    #section8-1 p {
        margin-top: 30px;
    }
}

/* #endregion */