.hero-section {
    padding: 140px 0 20px;
    background-color: var(--hero-background-color);
    width: 100%;
    color: #fff
}

.hero-inner {
    display: flex;
}

.hero-section h1 {
    color: var(--hero-title-color);
    font-size: 50px;
    line-height: 1.33;
    position: relative;
    z-index: 4;
    margin: 0;
}

.hero-section h1:before {
    content: '';
    display: block;
    width: 100%;
    height: 60px;
    position: absolute;
    top: -70px;
    left: 0;
    background: url(../../images/heading-arrow.png) no-repeat;
    z-index: 4;
}

.hero-section h1 > span {
    position: relative;
    z-index: 4;
    display: inline-block;
}

.hero-section .hero-cta {
    z-index: 4;
    position: relative;
    display: inline;
    margin-right: 20px;
}

.hero-section .hero-cta .btn {
    font-size: 16px;
    vertical-align: middle;
}

.hero-section .hero-cta .cta-buttons {
    /* display: inline;
    margin: 0; */
}

.hero-content {
    align-self: center;
}

.hero-content .text {
    font-size: 20px;
    margin-top: 30px;
    padding-bottom: 30px;
}

@media screen and (max-width: 1550px) {
    .hero-section {
        padding: 200px 0 0;
    }
}

@media screen and (max-width: 1450px) {
    .hero-inner .hero-image {
        width: 50%;
    }

    .hero-inner .hero-content {
        width: 50%;
    }

    .hero-inner .hero-content .hero-content-text {
        max-width: 100%;
    }

    .hero-inner .hero-content .hero-content-text {
        padding: 0 30px 30px;
    }
}

@media screen and (min-width: 1451px) {

    .hero-inner .hero-image {
        width: 45%;
    }
    
    .hero-inner .hero-content {
        width: 55%;
        display: flex;
        justify-content: flex-end;
    }

    .hero-inner .hero-content .hero-content-text {
        max-width: 700px;
        padding: 0 30px;
    }
}

@media screen and (max-width: 991px) {
    .hero-inner {
        flex-wrap: wrap;
        position: relative;
        min-height: 400px;
        align-items: center;
    }

    .hero-section {
        overflow: hidden;
    }

    .hero-inner .hero-content {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        z-index: 20;
    }
    

    .hero-inner .hero-image {
        position: absolute;
        top: 0;
        left: -40px;
        z-index: 3;
        height: 100%;
        width: 100%;
    }

    .hero-inner .hero-image img {
        max-height: 100%;
        width: auto;
    }

    .hero-inner .hero-image:before img {
        z-index: 2;
        position: relative;
    }
}

@media screen and (max-width: 767px) {
    .hero-section h1 {
        font-size: 35px;
    }

    .hero-inner .hero-content .hero-content-text {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-section .hero-cta {
        display: block;
    }

    .hero-section .hero-cta .btn {
        width: 80%;
    }

    .hero-inner .hero-image {
        left: -20px;
        display: flex;
        align-items: end;
        opacity: 0.3;
    }
}