.page__counters {
    margin-bottom: calc(80px + (100 - 80) * ((100vw - 320px) / (1920 - 320)));
}

.counters__body {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 32px;
    justify-content: center;
    align-items: flex-start;
}

.counters__item {
    text-align: center;
}

.counters__digit {
    /*text-shadow: 16px -9px 0 rgb(138 209 0 / 30%);*/
    text-shadow: 16px -9px 0 #D8EEAF;
    margin-bottom: 30px;
    color: #293A3D;
    font-weight: 700;
    font-family: var(--font-family-600);
    font-size: 72px;
    line-height: 1;
}

@media (max-width: 992px) {
    .counters__digit {
        font-size: calc(48px + (72 - 48) * ((100vw - 320px) / (1024 - 320)));
        margin-bottom: calc(16px + (30 - 16) * ((100vw - 320px) / (1024 - 320)));
    }
}

.counters__label {
    font-size: 16px;
    font-weight: 400;
}

@media (max-width: 992px) {
    .counters__label {
        font-size: 13px;
    }
}
