/* CSS Bloc texte gauche droite  */
.texte_gauche_droite {
    padding: var(--pad-l);
    position: relative;
    z-index: 1;
    margin-top: -5px;
}

.texte_gauche_droite .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap-m);
    width: 100%;
}

.texte_gauche_droite > *{
    width: 50%;
}

 /* CSS elements decoratifs */
 .texte_gauche_droite .image_gauche {
    position: absolute;
    top: 10%;
    left: -15%;
    rotate: 32deg;
    max-width: 400px;
    object-fit: contain;
    z-index: -1;
}

.texte_gauche_droite .image_droit {
    position: absolute;
    top: -3%;
    right: -13%;
    rotate: -15deg;
    max-width: 400px;
    object-fit: contain;
    z-index: -1;
}

/* CSS Options */
.texte_gauche_droite.beige {
    background-color:var(--third-color);
}

.texte_gauche_droite.marron {
    background-color:var(--first-color);
}

.texte_gauche_droite.marron p {
    color:var(--second-color);
}

.texte_gauche_droite.marron_clair {
    background-color:var(--fourth-color);
}

@media (max-width:850px) {
    .texte_gauche_droite {
      padding: var(--pad-mobile);
    }
    .texte_gauche_droite .bottom_right_bull, .texte_gauche_droite .bottom_left_bull, .texte_gauche_droite .top_right_bull, .texte_gauche_droite .top_left_bull {
        display: none;
    }
    .texte_gauche_droite .container {
        flex-direction: column;
    }
}
