/* general */
section.section-FAQ_x_Histoire{
    padding: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.section-FAQ_x_Histoire .maxWidth{
    display: flex;
}

.section-FAQ_x_Histoire .mid{
    width: 50%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 5%;
    box-sizing: border-box;
    text-align: center;
}
.section-FAQ_x_Histoire .mid .bgcImg{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.section-FAQ_x_Histoire .mid .on{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

@media screen and (max-width: 1100px) {
    .section-FAQ_x_Histoire .maxWidth{
        flex-direction: column;
    }
    .section-FAQ_x_Histoire .mid{
        width: 100%;
    }
}
.section-FAQ_x_Histoire .mid .on h2{
    font-family: var(--police-butler_bold);
    font-size: 2rem;
}
/* general */


/* leftSide only */
.section-FAQ_x_Histoire .leftSide{
    background-color: var(--couleur-10);
}
.section-FAQ_x_Histoire .leftSide .questions{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}
.section-FAQ_x_Histoire .leftSide .questions .question{
    border: 1px solid var(--couleur-11);
    border-radius: 5px;
}
.section-FAQ_x_Histoire .leftSide .questions .question .titre{
    padding: 1.3rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: color .2s;
    gap: .5rem;
}
.section-FAQ_x_Histoire .leftSide .questions .question .titre:hover{
    color: var(--couleur-11);
}
.section-FAQ_x_Histoire .leftSide .questions .question .response{
    padding: 0 1.3rem 0 1.3rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height .2s, padding .2s;
    text-align: left;
}
.section-FAQ_x_Histoire .leftSide .questions .question.active .response{
    max-height: 1000px;
    padding: 0 1.3rem 1.3rem 1.3rem;
}

.section-FAQ_x_Histoire .leftSide .titre{
    font-family: var(--police-worksans-regular);
}
.section-FAQ_x_Histoire .leftSide .titre .plus{
    position: relative;
}
.section-FAQ_x_Histoire .leftSide .titre .plus .barre_verticale{
    position: absolute;
    width: 2px;
    height: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    background-color: var(--couleur-11);
    transition: height .2s;
}
.section-FAQ_x_Histoire .leftSide .titre .plus .barre_horizontale{
    position: absolute;
    width: 10px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--couleur-11);
}
.section-FAQ_x_Histoire .leftSide .question.active .titre .plus .barre_verticale{
    height: 0;
}
/* leftSide only */

/* rightSide only */
.section-FAQ_x_Histoire .rightSide .on{
    align-items: flex-end;
    text-align: right;
}
/* rightSide only */