.about-numbers {
    position: relative;
    background-color: #ffffff;
}
.about-numbers h2 {
    margin-top: 0;
    margin-bottom: 60px;
    color: rgb(0, 0, 0);
    font-family: "Tektur", sans-serif;
    font-size: min(calc(46 * 100vw / 1920), 46px);
    font-weight: 500;
    line-height: 120%;
    text-transform: uppercase;
}
.about-numbers .block-content {
    padding: 90px 0;
}
.about-numbers .block-content-item {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(4, 1fr);
}
.about-numbers .numbers-block .numbers {
    color: rgb(110, 115, 238);
    font-family: "Tektur", sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 20px;
}
.about-numbers .numbers-block .description {
    color: rgb(48, 47, 47);
    font-size: 18px;
    font-weight: 400;
    line-height: 130%;
}



@media (max-width: 1440px) {
    .about-numbers .block-content {
        padding: 75px 0;
    }
}
@media (max-width: 1280px) {
    .about-numbers .block-content {
        padding: 60px 0;
    }
    .about-numbers .block-content-item {
        gap: 20px;
    }
}
@media (max-width: 1023px) {
    .about-numbers .block-content {
        padding: 45px 0;
    }
    .about-numbers h2 {
        font-size: min(calc(46 * 100vw / 1023), 46px);
    }
    .about-numbers .block-content-item {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}
@media (max-width: 620px) {
    .about-numbers .block-content {
        padding: 35px 0;
    }
    .about-numbers h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }
    .about-numbers .block-content-item {
        grid-template-columns: repeat(1, 1fr);
    }
    .about-numbers .numbers-block .numbers {
        font-size: 28px;
    }
}