/* ========================================= */
/* ============ SERVICES BANNER STYLE ============ */
/* ========================================= */

.about-banner {
    position: relative;
    height: 400px;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("../images/DSC00481.JPG");
}

.about-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.about-banner-content {
    position: relative;
    z-index: 2;
    padding-top: 50px;
}

.about-banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.breadcrumb {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translate(-50%, 50%);
    background-color: #1a4a8d;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 5px;
    border-left: 10px solid #FEDE30;
    display: inline-flex;
    align-items: center;


}

.breadcrumb span {
    font-size: 16px;
    font-weight: 500;

}

@media (max-width: 768px) {
    .about-banner {
        height: 350px;
    }

    .about-banner-content h1 {
        font-size: 36px;
    }

    .about-banner-content {
        padding-top: 60px;
    }

    .breadcrumb {
        transform: translate(-50%, 25%);
        bottom: -135px;
    }

    .breadcrumb span {
        font-size: 14px;
        padding: 5px 5px;
    }
}




@media (max-width: 768px) {
    .about-banner {
        height: 300px;
    }

    .about-banner-content h1 {
        font-size: 32px; /
    }

    .about-banner-content {
        padding-top: 0;
    }

    .breadcrumb {

    position: absolute;
        transform: translate(-50%, 50%);
        bottom: 10px;

    }

    .breadcrumb span {
        font-size: 14px;
    }
}
