/*Format mobile*/
div#numbers {
    display: flex;
    flex-direction: column;
    margin: 60px 0;
    align-items: center;
    gap: 1rem;
    
    svg {
        width: 30%;
        height: 30%;
    }

    .block_number {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .number {
        color: var(--title-color);
        font-size: 20px;
        font-family: Bebas Neue, sans-serif;
    }
}

/*Format tablette*/
@media (min-width: 768px) {
    div#numbers {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        
        svg {
            width: 50%;
            height: 50%;
        }
    }


    &>p {
        font-size: 16px;
    }
}

/*Format desktop*/
@media (min-width: 1700px) {
    div#numbers {
        svg {
            width: 70%;
            height: 70%;
        }

        .number {
            font-size: 36px;
        }
    
        &>p {
            font-size: 20px;
        }
    }
}