/* /////////////////////////////////////////////
HERO BANNER COMPONENT
///////////////////////////////////////////// */


/* ///////  DEFAULT STYLING /////// */

.hero-banner {
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 560px;
    display: flex;
    align-items: center;
    padding:224px 0 96px;
    background-position: 75% 50%;
}
.hero-banner .overlay {
    color: #fff;
    padding: 0;
    width: 100%;
}
.hero-banner .text.shadow {
    text-shadow: 0px 0px 4px rgba(0,0,0,0.75);
}
.hero-banner .text .header {
    font-family: "MetropolisExtraBold", san-serif;
    font-size: 42px;
    margin-bottom: 24px;
    line-height: 1;
    padding: 0;
}
.hero-banner .text .sub-header {
    font-size:20px;
    font-weight:400;
    line-height:1.3;
    margin-bottom: 32px;
    padding:0;
}





/* ///////  MAX WIDTH 1399PX /////// */

@media screen and (max-width: 1399px) {
    .hero-banner .text .header {
        font-size: 44px;
    }
}



/* ///////  MAX WIDTH 991PX /////// */

@media screen and (max-width: 991px) {
    .hero-banner {
        min-height: 480px;
        padding: 200px 0 72px;
        background-position: 60% 50%;
    }
    .hero-banner .text .header {
        font-size:40px;
    }
    .hero-banner .text .sub-header {
          font-size: 18px;
    }
}




