.hero-section {
    position: relative;
    z-index: 50;
}

.hero-section,
.hero-section-inner,
.hero-section-inner-holder,
.hero-section-inner-holder > .container,
.hero-section-inner-content {
    position: relative;
}

.hero-section-inner {
    padding-bottom: 60px;
    padding-top: 50px;
}

.hero-section-inner-content {
    z-index: 40;
}

.hero-section h1 {
    color: var(--hero-title-color);
}

.breadcrumbs-holder + h1 {
    margin-top: 50px
}

/*** has text pad ***/
.has-text-pad .hero-section-inner-content {
    background: var(--hero-pad-background-color);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
}


/* Image in column */
.hero-section-inner {
    display: grid;
    grid-template-columns: 3fr 2fr;
    column-gap: 40px;
    max-width: 100%;
}

.hero-image {
    align-self: center;
    text-align: right;
}

.hero-image-inner {
    display: inline-block;
    position: relative;
    padding-right: 15px;
    padding-bottom: 15px;
    z-index: 20;
}

.hero-image-inner:after {
    content: '';
    width: 90%;
    height: 90%;
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: var(--hero-image-pad);
    border-radius: 16px;
    z-index: 10;
}


.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    z-index: 20;
    position: relative;
}

.align-right .hero-section-inner .hero-section-inner-content {
    width: 100%;
}


.align-right .breadcrumbs {
    justify-content: flex-start;
}

/* text position */

.align-left .hero-section-inner {
    text-align: left;
}

.align-center .hero-section-inner {
    text-align: center;
    margin: 0 auto
}

/* Right */

.align-right .hero-section-inner .hero-section-inner-content {
    width: 55%;
}

.align-right .hero-section-inner-content {
    order: 2;
}

.align-right .hero-image {
    order: 1;
}

.align-right .hero-image-background {
    right: auto;
    left: -50px;
}

.align-right .breadcrumbs {
    justify-content: flex-end;
}

.hero-text {
    color: var(--hero-text-color);
    font-size: 16px;
}

.hero-text ul li {
    position: relative;
    margin-bottom: 15px;
    display: block;
}

.align-left.check .hero-text ul li,
.align-right.check .hero-text ul li,
.align-left.check-empty .hero-text ul li,
.align-right.check-empty .hero-text ul li,
.align-left.check-circle .hero-text ul li,
.align-right.check-circle .hero-text ul li {
    padding-left: 35px;
}

.align-right.dot .hero-text ul li,
.align-left.dot .hero-text ul li {
    padding-left: 20px;
}

.check .hero-text ul li:before,
.check-empty .hero-text ul li:before,
.check-circle .hero-text ul li:before,
.dot .hero-text ul li:before {
    font-family: 'local-business' !important;
    font-size: 16px;
    line-height: 1;
    color: var(--hero-check-color);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: inline-block;
    margin-right: 10px;
}

.dot .hero-text ul li:before {
    vertical-align: middle;
    content: "";
    background: var(--hero-check-color);
    width: 7px;
    height: 7px;
}

.align-left.check .hero-text ul li:before,
.align-right.check .hero-text ul li:before,
.align-left.check-empty .hero-text ul li:before,
.align-right.check-empty .hero-text ul li:before,
.align-left.check-circle .hero-text ul li:before,
.align-right.check-circle .hero-text ul li:before,
.align-left.dot .hero-text ul li:before,
.align-right.dot .hero-text ul li:before {
    position: absolute;
    top: 4px;
    left: 0;
    margin: 0;
}

.align-right.dot .hero-text ul li:before,
.align-left.dot .hero-text ul li:before {
    top: 10px;
}

.check .hero-text ul li:before {
    content: "\e903";
}

.check-empty .hero-text ul li:before {
    content: "\e90d";
}

.check-circle .hero-text ul li:before {
    content: "\e903";
    background: var(--hero-check-circle-background-color);
    color: var(--hero-check-circle-color);
    line-height: 1.8;
    text-align: center;
    font-size: 14px;
}

.hero-text ul li:last-child {
    margin: 0
}

.list-two-column .hero-text ul {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
    margin-bottom: 30px;
}

.list-two-column .hero-text ul li {
    padding: 35px 0 0;
    width: calc(1/2*100% - (1 - 1/2)*30px);
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.list-two-column.dot .hero-text ul li {
    padding-top: 20px;
}

.list-two-column.check .hero-text ul li:before,
.list-two-column.check-empty .hero-text ul li:before,
.list-two-column.check-circle .hero-text ul li:before,
.list-two-column.dot .hero-text ul li:before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 25px;
    position: absolute;
}

.check-circle.list-two-column .hero-text ul li:before {
    width: 25px;
    height: 25px;
    font-size: 18px;
    line-height: 1.45;
}

.list-two-column.dot .hero-text ul li:before {
    width: 12px;
    height: 12px;
}

.hero-text > *:last-child {
    margin-bottom: 0;
}

.align-center .hero-section-inner .cta-buttons {
    justify-content: center;
}

/* hero list element */
.hero-section-inner .btn.primary {
    color: var(--button-primary-color-on-hero);
    background: var(--button-primary-bkg-color-on-hero);
    border-color: var(--button-primary-border-color-on-hero);
    border-style: var(--button-primary-border-style);
}

.hero-section-inner .btn.primary:hover,
.hero-section-inner .btn.primary:focus,
.hero-section-inner .btn.primary:active {
    color: var(--button-primary-color-hover-on-hero);
    background: var(--button-primary-bkg-color-hover-on-hero);
    border-color: var(--button-primary-border-color-hover-on-hero);
}

.hero-section-inner .btn.secondary {
    color: var(--button-secondary-color-on-hero);
    background: var(--button-secondary-bkg-color-on-hero);
    border-color: var(--button-secondary-border-color-on-hero);
}

.hero-section-inner .btn.secondary:hover,
.hero-section-inner .btn.secondary:focus,
.hero-section-inner .btn.secondary:active {
    color: var(--button-secondary-color-hover-on-hero);
    background: var(--button-secondary-bkg-color-hover-on-hero);
    border-color: var(--button-secondary-border-color-hover-on-hero);
}

@media only screen and (max-width: 1199px) {
    .hero-section-inner-content .cta-buttons {
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 991px) {
    .hero-text {
        font-size: 17px;
    }

    .hero-image-background {
        width: 70%;
    }

    .type-image .hero-section-inner {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .align-right .hero-section-inner-content {
        order: 1;
    }

    .align-right .hero-image {
        order: 2;
    }

    .hero-section-inner-content .cta-buttons.component {
        margin-top: 0;
    }
}

@media only screen and (max-width: 767px) {
    .hero-section-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .has-text-pad .hero-section-inner-content {
        padding: 30px;
    }

    .list-two-column .hero-text ul li {
        width: 100%;
    }

    .hero-section-inner {
        padding-top: 40px;
    }

}