.section-advantages{
    padding: 34px 0 64px 0;
}
.section-advantages.style-col-2 {
    padding: 32px 0;
}

.section-advantages__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;
}
.advantage-item{
    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-align: center;
    -ms-flex-align: center;
            align-items: center;
    justify-self: center;
    text-align: center;
    max-width: 390px;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 24px;
    margin: 8px;

}

.advantage-item .h5{
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 10px;
}
.advantage-item figure{
    width: 32px;
    margin: 0 0 16px 0;
}

/* v2 */

.section-advantages.style-col-2 .advantage-item{
    -webkit-box-align: start;
    -ms-flex-align: start;    
    align-items: flex-start;
    max-width: 600px;
    width: calc(50% - 12px);
    margin: 0 0 24px 0;
    text-align: left;
    
}
.section-advantages.style-col-2 .advantage-item:nth-child(2n){
    margin: 0 0 24px 24px;
}

@media screen and (max-width:920px) {
    .section-advantages__row{
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

}
@media screen and (max-width:600px) {
  
    .section-advantages.style-col-2 .advantage-item{
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
    }
    .section-advantages.style-col-2 .advantage-item{
        margin: 0 0 16px 0;
    }
    .section-advantages.style-col-2 .advantage-item:nth-child(2n){
        margin: 0 0 16px 0;
    }

    .advantage-item .h5{
        font-size: 1.5rem;
    
    }
}