
.section-steps {
    padding-top: 50px;
    padding-bottom: 30px;
}

.teasers-step__title,
.teasers-step__subtitle {
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
    color: #1b1e25;
    text-align: center;
    margin-bottom: 40px;
}

.teasers-step__title {
    font-size: 24px;
}

.teasers-step__subtitle {
    font-size: 15px;
}

.teasers-step {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    display: -webkit-flex;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.teasers-step__grid {
    max-width: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    padding-right: 10px;
    padding-left: 10px;
}

.teasers-step__item {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: calc(100% - 20px);
    min-height: 120px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #F2F2F2;
    padding: 15px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #fff;
}

.teasers-step__icon {
    height: 70px;
}

.teasers-step__num {
    width: 70%;
    text-align: right;
    line-height: 1;
    color: #1b1e25;
}

.teasers-step__icon svg {
    width: auto;
    height: auto;
    display: inline-block;
    max-width: 100%;
    max-height: 100%;
    fill: #383b47 !important;
    stroke: #383b47 !important;
}

.teasers-step__text {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-top: 35px;
    -ms-flex-item-align: end;
    align-self: flex-end;
    font-weight: 500;
}

@media all and (max-width: 991px) {
    .teasers-step__grid {
        max-width: 33.333%;
        -ms-flex-preferred-size: 33.333%;
        flex-basis: 33.333%;
    }
}

@media all and (max-width: 767px) {
    .teasers-step__grid {
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
}