/********GENERAL SECTION***********/
section.chiffres {
    display: flex;
    flex-direction: column;

    padding: 0;
    position: relative;
    align-items: center;
}
picture{
    height: 100%;
    width: 100%;
}
section.chiffres .background_img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
}

section.chiffres h2{
    z-index: 1;
    color: var(--couleur-12);
    margin-top: 5rem;
    font-family: var(--police-Quicksand-Regular);
    text-align: center;
    padding: 0 10%;
}
section.chiffres h2 .strong{
    font-family: var(--police-Quicksand-Bold);
    color: var(--couleur-12);
}

section.chiffres .all_chiffres{
    z-index: 1;
    display: flex;
    gap: 50px;
    padding: 5rem 10%;
    width: 100%;
    box-sizing: border-box;
}

section.chiffres .chiffre {
    flex: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
}

section.chiffres .chiffre p{
    color: #fff;
}


section.chiffres .chiffre .number,
section.chiffres .chiffre .number .nombre {
    font: 5rem var(--police-Quicksand-Bold);
    /* font-size: 3rem; */
    color: #fff !important;
}

section.chiffres .chiffre:last-child {
    margin: 0;
}

section.chiffres .chiffre .texte{
    margin-top: 2rem;
}

section.chiffres .chiffre .texte p {
    font: 1rem var(--police-Quicksand-Regular);
}

section.chiffres .chiffre .texte p span {
    font: 1rem var(--police-Quicksand-Bold);
}

section.chiffres .chiffre .texte .desc_title{
    font: 1.1rem var(--police-Quicksand-Bold);
}

section.chiffres .chiffre .texte .desc_desc{
    font: 1rem var(--police-Quicksand-Regular);
}



/***** MEDIA *****/


@media screen and (max-width: 1024px) {
    section.chiffres .chiffre {
        flex: calc(50% - 50px);
        margin: 0 0 25px 0;
    }

    section.chiffres .all_chiffres{
        flex-wrap: wrap;
    }

    section.chiffres .chiffre:last-child,
    section.chiffres .chiffre:nth-child(2) {
        margin: 0;
        margin: 0 0 25px;
    }
}

@media screen and (max-width: 768px) {

    section.chiffres .chiffre .number,
    section.chiffres .chiffre .number .nombre {
        font-size: 3rem;
    }

    section.chiffres .chiffre .texte p,
    section.chiffres .chiffre .texte p span {
        font: .8rem var(--police-Optima-Bold);
    }


    
    section.chiffres h2{
        padding: 0 5%;
    }

    section.chiffres .all_chiffres{
        padding: 3rem 5%;
    }
}

@media screen and (max-width: 500px) {
    section.chiffres .chiffre {
        flex: 100%;
        margin: 0 0 25px;
    }

    section.chiffres .chiffre:last-child {
        margin: 0;
    }

}