.hero-section {
    position: relative;
    z-index: 50;
    background-color: var(--hero-background-color);
}

.hero-section-inner {
    display: grid;
    column-gap: 90px;
}

.align-left .hero-section-inner {
    grid-template-columns: 50% 1fr;
}

.align-right .hero-section-inner {
    grid-template-columns: 1fr 50%;
}

.no-images .hero-section-inner {
    grid-template-columns: 1fr;
}

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

.no-images .hero-section-inner-content {
    padding-bottom: 50px;
    max-width: 80%;
}

.hero-image-holder {
    margin-bottom: -80px;
    align-self: flex-end;
}

.hero-image {
    display: inline-block;
    padding-top: 20px;
    padding-left: 20px;
    position: relative;
    /* position: absolute;
    bottom: -45px;
    right: 0; */
}

.circle-ornaments .hero-image {
    padding-top: 30px;
}

.hero-image img {
    border-radius: var(--image-border-radius);
    position: relative;
    z-index: 10;
}

.circle-ornaments-element,
.square-ornament .square-ornament-element {
    display: inline-block;
}

.square-ornament .square-ornament-element {
    content: '';
    display: block;
    width: 265px;
    height: 200px;
    background: var(--hero-square-ornament);
    border-radius: 34px;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 5;
}

.square-ornament.circle-ornaments .square-ornament-element {
    top: 10px;
}

.circle-ornaments .circle-ornaments-element {
    content: '';
    display: block;
    border-radius: 50%;
    position: absolute;
    z-index: 15;
}

.circle-ornaments .circle-ornaments-element.top,
.circle-ornaments .circle-ornaments-element.right {
    width: 80px;
    height: 80px;
}

.circle-ornaments .circle-ornaments-element.bottom {
    width: 120px;
    height: 120px;
}

.circle-ornaments .circle-ornaments-element.left {
    width: 120px;
    height: 120px;
}

.circle-ornaments .circle-ornaments-element.top {
    background: var(--hero-circle-ornament);
    top: 0px;
    right: 70px;
}

.circle-ornaments .circle-ornaments-element.right {
    background: var(--hero-circle-ornament-2);
    top: 70px;
    right: -40px;
    opacity: 0.5;
}

.circle-ornaments .circle-ornaments-element.bottom {
    background: var(--hero-circle-ornament);
    bottom: -50px;
    right: 70px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.circle-ornaments .circle-ornaments-element.left {
    background: var(--hero-circle-ornament-2);
    bottom: 70px;
    left: -40px;
    opacity: 0.3;
}

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

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

.align-right .breadcrumbs-holder {
    text-align: left;

}

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

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

.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-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,
.hero-section-inner .btn.btn-call {
    color: var(--button-secondary-color-on-hero);
    background: var(--button-secondary-bkg-color-on-hero);
    border-color: var(--button-secondary-border-color-on-hero);
    border-radius: var(--button-border-radius);
    border-width: 2px;
    border-style: solid;
    text-align: center;
    padding: 5px 25px;
}

.hero-section-inner .btn.btn-call:before {
    display: none;
}

.hero-section-inner .btn.secondary:hover,
.hero-section-inner .btn.secondary:focus,
.hero-section-inner .btn.secondary:active,
.hero-section-inner .btn.btn-call:hover,
.hero-section-inner .btn.btn-call:focus,
.hero-section-inner .btn.btn-call: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);
}


/* text position */

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

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

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


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

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

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

    .hero-image-holder {
        margin-bottom: -40px;
    }
}

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

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

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

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

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

    .hero-image-holder {
        text-align: center;
    }

    .hero-image {
        max-width: 60%;
    }
}

@media only screen and (max-width: 767px) {
    .list-two-column .hero-text ul li {
        width: 100%;
    }

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

    .hero-image {
        max-width: 100%;
    }

    .circle-ornaments .circle-ornaments-element.top,
    .circle-ornaments .circle-ornaments-element.right {
        width: 50px;
        height: 50px;
    }

    .circle-ornaments .circle-ornaments-element.bottom {
        display: none;
    }

    .circle-ornaments .circle-ornaments-element.right {
        right: -10px;
    }

}