.benefit{
    display: flex;
    flex-direction: column;
    padding: 60px 105px 124px 105px;
    background: var(--blue-4);
}

.benefit__title{
    font-size: 64px;
    font-weight: 800;
    line-height: 64px;
    color: var(--grey-2);
    margin: 0 0 100px 0;
}

.benefit__cards {
    display: flex;
    gap: 85px;
}

.benefit__card{
    display: flex;
    flex-direction: column;
}

.benefit__card-img{
    width: 110px;
    height: 100px;
    margin-left: calc((100% - 110px)/2);
}

.benefit__card-img_h2{
	height: 92px;
    margin-bottom: 8px;
}

.benefit__card-img_h3{
	height: 108px;
    margin-bottom: -8px;

}

.benefit__card-head {
    font-size: 24px;
    line-height: 31.2px;
    font-weight: 900;
    color: var(--grey-2);
    margin: 40px 0 30px 0;
    text-align: center;
}

.benefit__card-text{
    display: flex;
}

.benefit__card-text-img{
    height: 18px;
	margin-right: 16px;
}

@media screen and (max-width: 1023px) {

    .benefit__cards {
        flex-direction: column;
    }

}

@media screen and (max-width: 767px) {

    .benefit{
        padding: 60px 105px 204px 60px;
    }

}

@media screen and (max-width: 575px) {

    .benefit__title{
        font-size: 32px;
        line-height: 32px;
    }

    .benefit {
        padding: 60px 30px 204px 30px;
    }
}


