.hero-section {
    background-color: var(--hero-background-color);
    text-align: left;
    overflow: hidden;
}

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

.hero-section-inner {
    padding-bottom: 40px;
    display: grid;
    grid-template-columns: 62% 38%;
    max-width: 100%;
}

.no-breadcrumbs .hero-section-inner {
    align-items: center;
}

.hero-section-inner-content {
    padding-right: 60px;
}

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

h1 {
    margin-top: 45px
}

.hero-position-center .hero-image {
    align-self: center;
    position: relative;
    padding-top: 35px
}

.hero-position-top .hero-image {
    position: absolute;
    left: 60%;
    top: 0;
    max-height: 100%;
    height: 100%;
    padding-bottom: 30px;
}

.hero-position-top .hero-image img {
    max-width: initial;
    height: 100%;
}

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

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

.check .hero-text ul li:before,
.check-empty .hero-text ul li:before,
.check-circle .hero-text ul li:before,
.check-square .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;
}

.check-square .hero-text ul li:before {
    border-radius: 0;
    width: 16px;
    height: 16px;
}

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

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

.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,
.check-square .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;
}

.check-square .hero-text ul li:before {
    line-height: 1.4;
    font-size: 12px;
}

.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.check-square .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;
}

.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);
}

.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);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-position-center .hero-image {
        max-width: 50%;
        margin: 0 auto;
    }

    .hero-section-inner-content {
        padding-right: 35%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-position-center .hero-image {
        max-width: 50%;
        margin: 0 auto;
    }
}

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

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

}

@media only screen and (max-width: 767px) {
    h1 {
        margin: 20px 0;
    }

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

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

    .hero-section-inner {
        padding-top: 20px;
        order: 2;
    }
    
    .hero-section-inner-content {
        padding-right: 0;
    }

    .hero-position-top .hero-image {
        position: relative;
        top: auto;
        left: auto;
        height: 230px;
        margin: 0 auto;
        padding-bottom: 0;
        order: 1;
    }

}