.about__benefits-wrap {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.about__benefit {
    border: 1px solid #DCE0E5;
    border-radius: 10px;
    padding: 24px;
    width: 413px;
    flex-shrink: 0;
}

.about__benefit-img {
    width: 100%;
    margin-bottom: 20px;
}

.about__benefit-name {
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    color: #00305C;
    margin-bottom: 12px;
}

.about__benefit-text {
    font-size: 16px;
    line-height: 150%;
    color: #636B83;
}

.about__benefit-text a {
    color: #29B7D0;
    text-decoration: underline;
}


@media (max-width: 1439px) {
    .about__benefit {
        width: calc(50% - 15px);
    }
}

@media (max-width: 575px) {
    .about__benefit {
        width: 100%;
        gap: 20px;
        padding: 15px;
    }

    .about__benefit-img {
        margin-bottom: 15px;
    }

    .about__benefit-name {
        font-size: 16px;
    }

    .about__benefit-text {
        font-size: 14px;
        line-height: 150%;
    }
}