.hero-section {
    background: var(--hero-background-color);
    position: relative;
    padding: 30px 0;
}

.hero-section > .container {
    position: relative;
}

.hero-section:after {
    content: '';
    display: block;
    z-index: 10;
    position: absolute;
    bottom: -59px;
    left: 0;
    background: var(--hero-background-color);
    height: 60px;
    width: 100%;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.hero-section-inner {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.hero-style_6 .hero-left,
.hero-style_3 .hero-left {
    order: 2;
}

.hero-style_6 .hero-right,
.hero-style_3 .hero-right {
    order: 1;
}

.hero-style_6 .hero-benefits .btn,
.hero-style_3 .hero-benefits .btn {
    order: 1;
}

.hero-style_6 .hero-benefits > div,
.hero-style_3 .hero-benefits > div {
    order: 2;
}

.hero-style_4 .hero-left,
.hero-style_5 .hero-left,
.hero-style_6 .hero-left {
    border-radius: 8px;
    background: #fff;
    padding: 30px;
}

.hero-style_6 .breadcrumbs,
.hero-style_4 .breadcrumbs,
.hero-style_5 .breadcrumbs {
  padding-top: 0;
}

.hero-style_2 .hero-right,
.hero-style_5 .hero-right {
    display: none;
}

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

.hero-section h1 {
    margin-top: 20px;
}

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

.hero-text ul li:before {
    content: "\e903";
    font-family: 'local-business' !important;
    font-size: 14px;
    position: absolute;
    top: 0px;
    left: 3px;
    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);
    }
}

