.about-banner {
    width: 100%;
    height: 650px;
    background: url("../img/home/background_header.JPG") center center / cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-section {
    width:100%;
    height:900px;
    overflow:hidden;
    border-radius:10px;
}
@media (max-width: 1000px) {
    .image-section {
        height: 300px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .image-section {
        height: 300px;
    }
}

.about-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
}

.about-banner h1 {
    position: relative;
    color: #017bb4;
    font-size: 55px;
    font-weight: 700;
}

.breadcrumb-area {
    position: absolute;
    bottom: 20px;
    color: #017bb4;
}
.breadcrumb-area a { color: #017bb4; }