
.how-it-works.sb-block {}

.how-it-works.sb-block .steps__row {
    counter-reset: how-it-wors-list;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /*counter-reset: list;*/
    padding: 0;
    /*margin: 30px 0;*/
}
.how-it-works.sb-block .steps__elem {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-basis: 20%;
}
.how-it-works.sb-block .steps__elem:not(:last-child) {
    padding-right: 30px;
    margin-bottom: 20px;
}
.how-it-works.sb-block .steps__elem_img {
    position: relative;
    width:130px;
    height: 130px;
    margin-bottom: 15px;
}
.how-it-works.sb-block .steps__elem_img img {
    box-shadow: none;
    max-width: 100px;
}
.how-it-works.sb-block .steps__elem_img:before {
    content: counters(how-it-wors-list,".");
    counter-increment: how-it-wors-list;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 2em;
    height: 2em;
    background-color: #5DA1FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-it-works.sb-block .steps__elem_title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1;
    color:#303030;
    margin-bottom: 5px;
}
.how-it-works.sb-block .steps__elem_title:before {
    opacity: 0;
    visibility: hidden;
    height: 0;
    width: 0;
    display: block;
}
.how-it-works.sb-block .steps__elem p {
    font-size: 14px;
    line-height: 1.2;
}

@media (max-width: 991px) {
    .how-it-works.sb-block .steps__row {
        flex-direction: column;
    }
    .how-it-works.sb-block .steps__elem {
        text-align: unset;
        flex-basis: 100%;
        display: flex;
        flex-direction: row;
        margin-bottom: 20px;
    }
    .how-it-works.sb-block .steps__elem_img {
        margin-bottom: 0;
        margin-right: 15px;
        width: 90px;
        height: 90px;
    }
}
@media only screen and (max-width: 767px) {
    .how-it-works.sb-block .steps__elem p {
        display: block;
    }
}

/**/
.how-it-works.sb-block .text-content {
    padding-top: 50px;
    margin-top: 50px;
    border-top: 1px solid #EDEDED;
}
.how-it-works.sb-block .text-content:after {
    content:'';
    clear: both;
    display: table;
}

.how-it-works.sb-block .text-content img {
    max-width: 50%;
    height: auto;
}

@media (max-width: 575px) {
    .how-it-works.sb-block .text-content {
        padding-top: 20px;
        margin-top: 20px;
    }
    .how-it-works.sb-block .text-content img {
        max-width: 100%;
        width:100%;
        float:none;
        box-sizing: border-box;
        display: block;
        margin-left: 0;
        margin-right: 0;
    }
}