.block-chiffres {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-block: 24px;
    scroll-margin-top: 150px;

    @media (width > 768px) {
        margin-block: 48px;
    }

    h2 {
        color: var(--_bg-color);
    }

    .chiffres {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 24px 32px;
        
        @media (width > 830px) {
            grid-template-columns: repeat(3, 1fr);
        }

        .block-chiffre {
            display: flex;
            flex-direction: column;
            gap: 16px;
            padding: 24px;
            border-radius: 16px;
            border: 2px solid #E2E2E2;
            text-align: center;

            @media (width > 830px) {
                text-align: left;
            }

            p {
                margin-bottom: 0;
            }

            .chiffre {
                font-size: 4rem;
                font-weight: 700;
                line-height: 150%;
                font-family: 'Roboto';
            }
            .title {
                font-size: 1.6rem;
                font-weight: 400;
                line-height: 150%;
            }
            .text {
                font-size: 1.4rem;
                font-weight: 400;
                line-height: 150%;
                color: #707070 !important;
            }
        }
    }

}