/* CSS Bloc titre texte */
.titre_texte {
    padding: var(--pad-l);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: var(--gap-m);
    margin-top: -5px;
    position: relative;
    z-index: 1;
}

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

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

.titre_texte .image_bas_gauche {
    position: absolute;
    bottom: 1%;
    left: -7%;
    rotate: 190deg;
    max-width: 400px;
    object-fit: contain;
    z-index: -1;
}

.titre_texte .image_bas_droit {
    position: absolute;
    bottom: 13%;
    right: -6%;
    rotate: 73deg;
    max-width: 400px;
    object-fit: contain;
    z-index: -1;
}

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

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

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

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

/* Responsive */
@media (max-width:850px) {
    .titre_texte {
      padding: var(--pad-mobile);
    }
    .titre_texte .bottom_right_bull, .titre_texte .bottom_left_bull, .titre_texte .top_right_bull, .titre_texte .top_left_bull {
        display: none;
    }
}