.benefits {
    padding: 3rem 0;
}

.benefits__items {
    display: flex;
    column-gap: 30px;
    flex-wrap: wrap;
}

.benefits__item {
    flex-basis: calc((100% - 90px) / 4);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 2rem 0;
}

.benefits__item-icon-bg {
    background: #dff8eb;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.benefits__item-icon {
    width: 39px;
    height: 39px;
    object-fit: contain;
}

.benefits__item-heading {
    color: #4a6671;
}
.benefits__item-text {
    font-size: .9rem;
    margin-bottom: 0;
}


@media screen and (max-width: 1199.98px) {
    .benefits__item-icon-bg {
        width: 68px;
        height: 68px;
    }

    .benefits__item-icon {
        width: 37px;
        height: 37px;
    }
}

@media screen and (max-width: 1023.98px) {


    .benefits__item {
        flex-basis: calc((100% - 30px) / 2)
    }
}

@media screen and (max-width: 700.98px) {
    .benefits__item-icon-bg {
        width: 64px;
        height: 64px;
    }

    .benefits__items {
        flex-direction: column;
        gap: 0;
    }

    .benefits__item {
        flex-basis: 100%;
    }

    .benefits__item-icon {
        width: 35px;
        height: 35px;
    }
}