.benefits {
    background: #CAD1EA;
}

.benefits__wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 80px 0;
    gap: 56px 89px;
}

.benefits__item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 28%;
    justify-content: center;
    align-items: center;
}

.benefits__item .img-wrapper {
    width: 120px;
    height: 100px;
}

.benefits__item .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefits__item__text {
    font-family: Segoe UI;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
    color: #1A224C;

}
@media screen and (max-width:1024px) {
    .benefits {
        background: #CAD1EA;
    }
    
    .benefits__wrapper {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 30px 0;
        gap: 24px
    }
    
    .benefits__item {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 46%;
        justify-content: center;
        align-items: center;
    }
    
    .benefits__item .img-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .benefits__item .img-wrapper img {
        width: 100%;
        /*height: 100%;*/
        object-fit: contain;
    }
    
    .benefits__item__text {
        font-family: Segoe UI;
        font-weight: 400;
        font-size: 18px;
        line-height: 18px;
        letter-spacing: 0px;
        text-align: center;
        color: #1A224C;
    
    }
}