/* /////////////////////////////////////////////
CTA BANNER COMPONENT
///////////////////////////////////////////// */


/* ///////  DEFAULT STYLING /////// */

.cta-banner {
    background-size: cover;
    background-repeat: no-repeat;
    height: 256px;
    display: flex;
    align-items: center;
    background-position: 75% 50%;
    text-align:center;
}
.cta-banner .overlay {
    color: #fff;
    width:100%;
}
.cta-banner .text.shadow {
    text-shadow: 0px 0px 4px rgba(0,0,0,0.75);
}
.cta-banner .text .header {
    font-family: "MetropolisExtraBold", san-serif;
    font-size: 38px;
    margin-bottom: 24px;
    line-height: 1;
    padding: 0 24px;
}
.cta-banner .text .sub-header {
    font-size:20px;
    font-weight:400;
    line-height:1.3;
    margin-bottom: 24px;
    padding:0;
}





/* ///////  MAX WIDTH 1399PX /////// */

@media screen and (max-width: 1399px) {
    .cta-banner .text .header {
        font-size: 44px;
    }
}



/* ///////  MAX WIDTH 1199PX /////// */

@media screen and (max-width: 1199px) {
    .cta-banner .overlay {
      bottom: 48px;
    }
    .cta-banner .text .header {
      font-size: 40px;
    }
}



/* ///////  MAX WIDTH 991PX /////// */

@media screen and (max-width: 991px) {
    .cta-banner .background {
        display:none;
    }
    .cta-banner .background-mobile {
        display:block;
    }
    .cta-banner .background-mobile img {
        object-position: 75% 35%;
    }
    .cta-banner .text .header {
        font-size:32px;
    }
}



/* ///////  MAX WIDTH 600PX /////// */

@media screen and (max-width: 600px) {
    .cta-banner .text .lead-in {
        font-size:24px;
    }
}