#header-banner-content {
    color: #163247;
    z-index: 2;
    position: relative;
    height: 500px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url('../images/doctor-technology.jpg');
    display: flex;
    align-items: center;
}
/*
#header-banner-content::before {
    z-index: -1;
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 500px;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.2;
}*/
#header-banner-content h1 {
    margin-bottom: 1rem;
}
#banner-cta-wrapper {
    text-align: left;
}
#banner-cta-wrapper a:first-child {
    margin-right: 1rem;
}
#header-banner-content p {
    margin-bottom: 3rem;
}
#header-banner-content .major-text {
    font-size: 1.5rem;
    font-weight: 700;
}

#intro-description {
    color: #fff;
    background: #163247;
}

#footer-cta {
    background: #e1792c;
    color: #fff;
    padding: 1.5rem 0;
}
#footer-cta .major-text {
    margin-bottom: 0;
}
#footer-cta a.cta {
    margin-top: 0;
    margin-left: 0.5rem;
}
#footer-cta .general-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}



@media all and (max-width: 768px) {
    #header-banner-content {
        height: 550px;
    }
    #header-banner-content:before {
        height: 550px;
    }
}

@media all and (max-width: 480px) {
    #header-banner-content {
        text-align: center;
    }
    #header-banner-content h1 {
        font-size: 2rem;
    }
    #header-banner-content .major-text {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    #header-banner-content a.cta {
        margin: 0.5rem 0 0 0;
    }

    #footer-cta .general-content {
        flex-direction: content;
    }
    #footer-cta a.cta {
        margin-left: 0;
        margin-top: 1rem;
    }
    
}