
.healthcare-hero {
    position: relative;
    min-height: 520px;
    background-image: url('../images/services/ccr_healthcare_hero_banner.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.healthcare-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, rgba(89, 89, 91, 0.85) 0%, rgba(89, 89, 91, 0.6) 100%); */
    z-index: 1;
}

.healthcare-hero .container {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 60px;
}

/* =============================================================================
   RESPONSIVE BREAKPOINTS
   ============================================================================= */

/* Tablet */
@media (max-width: 991px) {
    .healthcare-hero {
        min-height: 450px;
    }    

}

/* Mobile */
@media (max-width: 767px) {

    .healthcare-hero {
        min-height: 400px;
    }    


    .healthcare-hero .container {
        padding-top: 90px;
        padding-bottom: 40px;
    }
}