.row-fluid {
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.left-col-fluid {
    width: 45%;
    justify-content: flex-end;
    z-index: 400;    
}

 .right-col-fluid {
    width: 55%;
    z-index: 300;
}

.left-col-fluid,
.right-col-fluid {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: flex-start;

}

.left-col-fluid:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(247, 248, 255, 0.7);
    z-index: 300;
}

.left-col-fluid .left-col {
    width: 600px;
    position: relative;
    z-index: 400;
    padding: 100px 0 100px 20px;
}


.right-col-fluid:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(5, 36, 97, 0.22);
    z-index: 290;
}

.right-col-fluid:before {
    content: '';
    width: 800px;
    height: 100%;
    position: absolute;
    left: -00px;
    top: 0;
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: auto 100%;
    z-index: 300;
}

.hero-section .hero-text {
    color: var(--hero-text-color)
}

.hero-section .hero-text ul li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 20px;
    display: block;
}

.hero-text ul li:before {
    content: "\e903";
    font-family: 'local-business' !important;
    font-size: 14px;
    position: absolute;
    top: -2px;
    left: 0px;
    z-index: 4;
    line-height: 1;
    color: var(--hero-check-color);
    background: var(--hero-check-background-color);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-text ul li:last-child {
    margin: 0
}

.hero-left .cta-buttons.component {
    margin-top: 50px;
}


.hero-style_4 .left-col {
    text-align: center;
}

.hero-style_4.hero-section .hero-text ul  {
    display: inline;
}

.hero-style_4.hero-section .hero-text ul li {
    display: inline-block;
}

.hero-style_4 .cta-buttons {
    justify-content: center;
}

.hero-style_2 .left-col-fluid {
    order: 2;
    justify-content: flex-start;
}

.hero-style_2 .right-col-fluid {
    order: 1
}

.hero-style_2 .right-col-fluid:before {
    left: auto;
    right: 0;
    top: 0;
    background-position: bottom 0 right -1px;
}

@media only screen and (max-width: 1200px){
    .left-col-fluid {
        width: 60%;
        padding-left: 20px;
    }

    .right-col-fluid {
        width: 40%;
    }

    .hero-style_2 .left-col-fluid {
        padding-left: 0;
        padding-right: 20px;
    }
}

@media only screen and (max-width: 1200px) {
    .left-col-fluid {
        width: 100%;
    }

    .right-col-fluid {
        width: 0%;
    }

}