.hero-section {
    position: relative;
}

.hero-section h1 {
    color: var(--hero-title-color);
}

.hero-section:before {
    content: '';
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.hero-section:after {
    content: '';
    background-color: var(--hero-background-color);
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 15;
}

.hero-section-inner {
    position: relative;
    z-index: 20;
    padding-top: 30px;
    padding-bottom: 60px;
    max-width: 75%;
}

.align-left .hero-section-inner {
    text-align: left;
}

.align-center .hero-section-inner {
    text-align: center;
    margin: 0 auto
}

.has-benefits .hero-section-inner {
    padding-bottom: 20px;
}

.hero-text {
    color: var(--hero-text-color);
    font-size: 18px;
}

.hero-text ul li {
    position: relative;
    margin-bottom: 15px;
    display: block;
}

.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: 15px;
    margin-right: 15px;
    line-height: 1;
    color: var(--hero-check-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-block;
}

.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.5;
    text-align: center;
}

.dot .hero-text ul li:before {
    content: "";
    background: var(--hero-check-color);
    width: 7px;
    height: 7px;
}

.hero-text ul li:last-child {
    margin: 0
}

.hero-section-inner .cta-buttons {
    justify-content: center;
}

.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: 0;
    width: calc(1/2*100% - (1 - 1/2)*30px);
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.list-two-column .hero-text ul li:before {
    font-size: 25px;
    margin: 0 0 15px;
}

.check-circle.list-two-column .hero-text ul li:before {
    width: 25px;
    height: 25px;
    font-size: 18px;
}

.list-two-column.dot .hero-text ul li:before {
    width: 12px;
    height: 12px;
}

.hero-text > *:last-child {
    margin-bottom: 0;
}

.hero-benefits-holder {
    bottom: -50px;
    position: relative;
    z-index: 50;
}

.hero-benefits {
    background: #fff;
    display: flex;
}

.hero-benefits .benefit {
    flex-grow: 1;
    flex-basis: 0;
    padding: 20px;
}

.hero-benefits .benefit:hover {
    cursor: pointer;
    background: var(--hero-benefits-background-color-hover);
}

.hero-benefits .benefit-inner {
    display: flex;
    gap: 15px;
    padding: 0;
    width: 100%;
    color: var(--hero-benefits-color);
    height: 100%;
}

.hero-benefits .benefit-inner > a {
    display: flex;
    gap: 15px;
    width: 100%;
    color: var(--hero-benefits-color);
    position: relative;
}

.hero-benefits .image {
    width: 60px;
    min-width: 60px;
}

.hero-benefits .image img {
    max-width: 100%;
    height: auto;
}

.hero-benefits .content {
    flex-grow: 1;
}

.hero-benefits .title {
    font-size: 20px;
    font-weight: 500;
    color: var(--hero-benefits-title-color);
    margin-bottom: 10px;
}

.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);
}

.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 (max-width: 1199px) and (min-width: 992px){
    .hero-benefits {
        padding: 15px 5px;
    }

    .hero-benefits a .content {
        padding-bottom: 15px;
    }

    .has-benefits .hero-section-inner {
        padding-bottom: 40px;
    }

}

@media only screen and (max-width: 991px) {
    .hero-section-inner {
        max-width: 100%;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-benefits {
        flex-wrap: wrap;
        row-gap: 50px;
    }

    .hero-benefits .benefit {
        width: 50%;
        flex-basis: auto;
    }

    .hero-benefits .benefit:nth-child(odd) .benefit-inner {
        background-image: none;
    }
}


@media only screen and (max-width: 767px) {

    .has-benefits .hero-section-inner {
        padding-top: 50px;
        padding-bottom: 0px;
    }

    .list-two-column .hero-text ul li {
        width: 100%;
    }

    .hero-benefits {
        padding: 20px 20px;
        row-gap: 30px;
    }

    .hero-benefits .benefit {
        width: 100%;
    }

    .hero-benefits .benefit-inner {
        padding: 0;
        background-image: none
    }

    .hero-benefits .image {
        width: 40px;
        min-width: 40px;
    }

    .hero-benefits .benefit-inner > a:after {
        width: 50px;
        height: 50px;
        bottom: -20px;
        right: -10px;
        line-height: 45px;
    }


}
