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

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

.description_texte_image img {
    object-fit: cover;
    width: 50%;
    max-height: 500px;
    border-radius: 50% 50% 0 0;
}

.description_texte_image .content {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--gap-m);
}

/* CSS Option elements decoratifs */
.description_texte_image .image_haut_gauche {
    position: absolute;
    top: 0%;
    left: -12%;
    rotate: 190deg;
    max-width: 400px;
    object-fit: contain;
    z-index: -1;
}

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

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

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

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

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

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

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

@media (max-width:850px) {
    .description_texte_image {
      padding: var(--pad-mobile);
    }
    .description_texte_image .bottom_right_bull, .description_texte_image .bottom_left_bull, .description_texte_image .top_right_bull, .description_texte_image .top_left_bull {
        display: none;
    }
    .description_texte_image .container > * {
        width: 100%;
    }
    .description_texte_image .container{
        flex-direction: column;
    }
    .description_texte_image img {
        max-height: 350px;
    }
}