.section-text-img{
    padding: 96px 0;
}

.section-text-img__row{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
            justify-content: space-between;
}

.section-text-img__row.row-revers{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-flow: row-reverse wrap;
    flex-flow: row-reverse wrap;
}

.section-text-img__row .col-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
            justify-content: center;
    width: 45%;
}
.section-text-img__row figure{
    margin: 0;
}
.section-text-img__row figure img{
    width: 100%;
    height: auto;
}
.col-box__description ul{
    list-style: none;
    padding-left: 0;
}
.col-box__description ul li::before{
    content: '';
    display: inline-block;
    width: 28px;
    height: 28px;
    margin-right: 10px;
    background: url(img/check-icon.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.col-box__description ul li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
            align-items: center;
    margin: 0 16px 16px 0;
}

.col-box__description p{
    margin-bottom: 16px;
}


@media screen and (max-width:920px) {
    .section-text-img {
        padding: 56px 0;
    }
    .section-text-img__row .col-box{
        width: 100%;
    }
    .col-box.order-top{
        -webkit-box-ordinal-group: 2;    
        -ms-flex-order: 1;    
        order: 1;
        margin-bottom: 24px;
    }
    .col-box.order-botton{
        -webkit-box-ordinal-group: 3;    
        -ms-flex-order: 2;    
        order: 2;
    }
    .col-box .secion-sub-title{
        text-align: center;
    }
    .col-box .h2{
        text-align: center;
    }
    .col-box__description{
        text-align: center;
    }
}
@media screen and (max-width:570px) {
    .col-box .secion-sub-title{
        text-align: left;
    }
    .col-box .h2{
        text-align: left;
    }
    .col-box__description{
        text-align: left;
    }
    .col-box__description p{
        margin-bottom: 33px;
    }

}