
.reasons__title {
    margin-bottom: 40px;
}

.reasons__list {
    margin: 0;
}

.reasons__subtitle {
    margin-bottom: 28px;
}

.cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    gap: 32px;
}

.reasons__cards {
    margin: 64px 0;
}

.cards__item {
    width: 284px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 16px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cards__icon {
    width: 200px;
    height: 200px;
    border-radius: 48px;
}

.cards__description {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}

@media screen and (max-width: 1279px){
    .cards {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        gap: 32px;
        -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
    }

    .cards__item {
        width: 48%;
        max-width: 468px;
    }
}

@media screen and (max-width: 1032px){
    .reasons__title {
        margin-bottom: 26px;
    }

    .cards__item {
        gap: 8px;
        max-width: 352px;
    }

    .cards__icon {
        width: 160px;
        height: 160px;
    }

    .cards__description {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px){
    .reasons__cards {
        margin: 40px 0;
    }

    .reasons__title {
        margin-bottom: 30px;
    }

    .cards {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .cards__item {
        width: 100%;
        max-width: 100%;
    }
}
