.hero-banner-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: calc(100vh - 75px);
    color: #fff;
    text-align: center;
    position: relative;
    border-radius: 30px;
    z-index: 0
}

@media (max-width: 991px) {
    .hero-banner-section {
        background-position: 0;
        background-size: cover;
        height: calc(100vh - 125px)
    }
}

@media (max-width: 650px) {
    .hero-banner-section {
        background-position: -1000px;
        background-size: cover
    }
}

.hero-banner-section:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background-color: #fff;
    z-index: 1
}

@media (max-width: 991px) {
    .hero-banner-section:after {
        height: 120px
    }
}

@media (max-width: 650px) {
    .hero-banner-section:after {
        height: 85px
    }
}

.hero-banner-section .hero-banner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 0;
    position: relative;
    z-index: 3
}

@media (max-width: 991px) {
    .hero-banner-section .hero-banner {
        flex-direction: column
    }
}

.hero-banner-section .hero-banner h1 {
    font-size: 6em;
    font-family: "Montserrat", sans-serif;
    text-align: left;
    font-weight: 500;
    /*text-shadow: 0 3px 9px rgba(0, 0, 0, .3);*/
    line-height: 1.5em
}

@media (max-width: 991px) {
    .hero-banner-section .hero-banner h1 {
        font-size: 60px
    }
}

@media (max-width: 650px) {
    .hero-banner-section{
        background-position: right;
        height: calc(70vh - 125px);
    }
    .hero-banner-section .hero-banner h1 {
        font-size: 33px
    }
}

.hero-banner-section .hero-banner h1 span {
    color: #fff
}

.hero-banner-section .hero-banner p {
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: left;
    color: #fff
}

@media (max-width: 991px) {
    .hero-banner-section .hero-banner p {
        font-size: 18px
    }
}

.hero-banner-section .hero-banner .button {
    margin-top: 2em
}

@media (max-width: 991px) {
    .hero-banner-section .hero-banner .button {
        font-size: 16px;
        padding: 15px 45px
    }
}