#stepsCont .steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 50px;
    margin-bottom: 80px;
    padding: 0 22px;
}
#stepsCont .steps.two {
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    gap: 10%;
}
#stepsCont .steps > div {
    background-repeat: no-repeat;
    width: 290px;
    min-height: 150px;
    height: auto;
}
#stepsCont .steps h3,
#stepsCont .steps p {
    margin-left: 68px;
}
#stepsCont .steps h3 {
    font-family: 'corpid_e1s_scd_regular';
    font-size: 20px;
    margin-top: 7px;
    margin-bottom: 0;
}
#stepsCont .steps p {
    font-family: 'corpid_e1s_scd_light';
    font-size: 16px;
    line-height: normal;
    margin-bottom: 0;
    margin-top: 10px;
}
#stepsCont .step1 {
    background-image: url("/images/step1.png");
}
#stepsCont .step2 {
    background-image: url("/images/step2.png");
}
#stepsCont .step3 {
    background-image: url("/images/step3.png");
}
#stepsCont .step4 {
    background-image: url("/images/step4.png");
}

@media all and (max-width: 904px) {
    #stepsCont .steps {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 540px;
        margin: 60px auto 80px;
        gap: 25px;
    }
    #stepsCont .steps > div {
        min-height: 150px;
    }
}
@media all and (max-width: 570px) {
    #stepsCont .steps {
        -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;
    }
    #stepsCont .steps > div {
        height: 150px;
    }
}
@media all and (max-width: 560px) {
    #stepsCont .steps {
        width: 100%;
    }
}