.customChiffres{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    /* background: url(/public/images/decoration/pattern.png) repeat center top #efefef;
    background-blend-mode: lighten; */
    background: #000;
}
    .customChiffres_titre{
        color: #fff;
    }
    .customChiffres_chiffres{
        width: 100%;
        max-width: 1280px;
        display: flex;
        justify-content: center;
        gap: 40px
    }
        .customChiffres_chiffre{
            width: calc(100% / 6);
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #fff;
            font-size: 24px;
            font-weight: 500;
            text-align: center;
        }
            .customChiffres_chiffre-value{
                color: var(--color-gold);
                font-size: 34px;
                font-weight: 600;
            }

@media (max-width: 1280px) {
    .customChiffres_chiffres{
        flex-wrap: wrap;
    }
}

@media (max-width: 800px) {
    .customChiffres_chiffre{
        width: calc(100% / 3);
        font-size: 20px;
    }
}