.hero-section {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    padding: 60px 0 70px;
    z-index: 200;
}

.hero-section:before {
    content: '';
    width: 100%;
    height: 100%;
    background: var(--hero-background-color);
    z-index: 150;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-section-inner {
    position: relative;
    z-index: 160;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.hero-style_1 h1,
.hero-style_2 h1,
.hero-style_3 h1 {
    color: var(--hero-title-color)
}

.hero-style_1,
.hero-style_2,
.hero-style_3 {
    color: var(--hero-text-color)
}

.hero-style_4 .hero-left,
.hero-style_5 .hero-left,
.hero-style_6 .hero-left {
    background: var(--hero-pad-background-color);
    border-radius: 30px;
    padding: 40px;
}

.hero-style_4 h1,
.hero-style_5 h1,
.hero-style_6 h1 {
    color: var(--hero-pad-title-color)
}

.hero-style_4,
.hero-style_5,
.hero-style_6 {
    color: var(--hero-pad-text-color)
}

.hero-style_3 .hero-section-inner,
.hero-style_6 .hero-section-inner {
    justify-content: flex-end;
}

.hero-style_2 .hero-section-inner,
.hero-style_5 .hero-section-inner {
    justify-content: center;
    text-align: center;
}

.hero-style_2 .hero-section-inner .cta-buttons,
.hero-style_5 .hero-section-inner .cta-buttons {
    justify-content: center;
    text-align: center;
}

.hero-style_4 .cta-buttons,
.hero-style_5 .cta-buttons,
.hero-style_6 .cta-buttons {
    margin-bottom: -65px;
}

.hero-section .hero-text ul li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 20px;
    display: block;
}

.hero-style_2.hero-section .hero-text ul li,
.hero-style_5.hero-section .hero-text ul li {
    display: inline-block;
    min-width: 51%;
}

.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-right {
    align-self: center;
}

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image:after,
.hero-image:before {
    content: '';
    display: block;
    z-index: 10;
    position: absolute;
    background: var(--hero-background-color);
    height: 35px;
    width: 101%;
}

.hero-image:after {
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    bottom: -1px;
    left: 0;
}

.hero-image:before {
    clip-path: polygon(100% 0, 0 0, 0 100%);
    top: -1px;
    left: -1px;
}

.hero-benefits {
    background: var(--hero-benefit-background-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 15px;
    position: relative;
    margin-bottom: -120px;
    margin-top: 50px;
    z-index: 20;
    box-shadow: 0 20px 22px rgba(27, 29, 33, .1);
}

@media only screen and (min-width: 1199px) {
    .hero-section-inner .hero-left {
        width: 55%
    }
}

@media only screen and (min-width: 991px) {
    .hero-section-inner .hero-left {
        width: 70%
    }

    .hero-text {
        margin-bottom: 50px;
    }

}


@media only screen and (max-width: 991px) {
    .hero-section {
        padding-top: 10px;
    }

    .hero-section-inner {
        flex-wrap: wrap;
    }

    .hero-left {
        order: 1;
        width: 100%;
    }

    .hero-right {
        order: 2;
        width: 100%;
    }

    .hero-benefits {
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 30px;
        margin-bottom: -90px;
    }

    .hero-benefits > div {
        width: 50%;
        width: calc(1/2*100% - (1 - 1/2)*20px);
    }
}

@media only screen and (max-width: 767px) {
    .hero-style_4 .hero-left,
    .hero-style_5 .hero-left,
    .hero-style_6 .hero-left {
        padding: 30px;
    }
}