.services-list__heading {
    font-size: calc(48px + (66 - 48) * ((100vw - 1440px) / (1920 - 1440)));
}

.services-list__row {
    display: flex;
    flex-wrap: wrap;
}

.services-list__item {
    background: #1B1B1B;
}

.services-list__name {
    font-size: calc(36px + (40 - 36) * ((100vw - 1440px) / (1920 - 1440)));
    font-weight: 600;
    margin-bottom: 20px;
}

@media screen and (min-width: 1440px) {
    .services-list__text {
        max-width: 1010px;
        margin-bottom: 77px;
    }

    .services-list__heading {
        max-width: 1116px;
        margin-bottom: 26px;
    }
}

@media screen and (max-width: 1439.98px) {
    .services-list__heading {
        font-size: calc(32px + (36 - 32) * ((100vw - 390px) / (1440 - 390)));
        margin-bottom: 20px;
    }

    .services-list__text {
        margin-bottom: 20px;
    }

    .services-list__name {
        font-size: calc(28px + (32 - 28) * ((100vw - 1440px) / (1440 - 390)));
    }
}

@media screen and (min-width: 1024px) {
    .services-list__row {
        gap: 40px;
    }

    .services-list__item {
        flex-basis: calc((100% - 40px) / 2);
        padding: 50px;
        border-radius: 40px;
        min-height: 284px;
    }
}

@media screen and (max-width: 1023.98px) {
    .services-list__row {
        gap: 20px;
    }

    .services-list__item {
        flex-basis: 100%;
        padding: 20px;
        border-radius: 20px;
    }
}