.howItWorksLayout {
    float: left;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.howItWorksLayout .line1 {
    position: absolute;
    top: 75px;
    width: calc(50% - 441px);
    height: 200px;
}
.howItWorksLayout .line1 img {
    max-width: unset !important;
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: right bottom;
}
.howItWorksLayout .line2 {
    position: absolute;
    left: calc(50% - 384px);
    height: 45px;
    top: 168px;
}
.howItWorksLayout .line3 {
    position: absolute;
    left: calc(50% + -82px);
    height: 45px;
    top: 285px;
}
.howItWorksLayout .line4 {
    position: absolute;
    top: 146px;
    width: calc(100% - 825px);
    height: 200px;
    left: calc(50% + 240px);
    background:url("/images/template/line4.png");
    background-repeat:no-repeat;
}
.howItWorksLayout .howItWorks {
    float: left;
    width: 100%;
    background-color: #F2F6F8;
    padding: 90px 0;
    counter-reset: steps;
}
.howItWorksLayout .title {
    text-align: center;
    margin-bottom: 90px;
}
.howItWorksLayout .titleYellow {
    font-size: 50px;
    font-weight: 600;
    line-height: 1;
    color: #FACE4A;
}
.howItWorksLayout .titleBlue {
    font-size: 50px;
    font-weight: 300;
    /* font-style: italic; */
    line-height: 1;
    color: #4A6F7C;
    margin: 0 0 0 8px;
}
.howItWorksLayout .steps {
    position: relative;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    float: left;
    width: 100%;
    position: relative;
    left: -40px;
}
.howItWorksLayout .step {
    float: left;
    width: 260px;
    margin: 0 28px 75px;
    padding-left: 95px;
    box-sizing: border-box;
    position: relative;
    font-size: 21px;
    font-weight: 300;
    line-height: 25px;
}
.howItWorksLayout .step:before {
    counter-increment: steps;
    content: "0"counter(steps);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 50px;
    font-weight: 600;
    line-height: 44px;
    border-right: 5px solid #FCCE4A;
    padding-right: 15px;
    width: 60px;
    text-align: right;
}
.howItWorksLayout .link {
    float: left;
    width: 100%;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
}

@media (max-width: 900px) {
    .howItWorksLayout .line1,
    .howItWorksLayout .line2,
    .howItWorksLayout .line3,
    .howItWorksLayout .line4 {
        display: none;
    }
}
@media (max-width: 500px) {
    .howItWorksLayout .titleYellow::before {
        content: '';
        position: absolute;
        left: 0;
        top: -50px;
        width: 149px;
        height: 134px;
        background-image: url('../../../../../images/template/line1mobile.png');
    }
    .howItWorksLayout .steps::before {
        content: '';
        position: absolute;
        left: calc(50% - 164px);
        top: 10px;
        width: 30px;
        height: 140px;
        background-image: url('../../../../../images/template/line2mobile.png');
        background-repeat: no-repeat;
    }
    .howItWorksLayout .steps::after {
        content: '';
        position: absolute;
        left: calc(50% - 164px);
        top: 150px;
        width: 30px;
        height: 140px;
        background-image: url('../../../../../images/template/line2mobile.png');
        background-repeat: no-repeat;
    }
}