/* static banner */
.page .static-banner {
    position: relative;
    width: 100%;
    height: 35vh;
    overflow: hidden;
}

.page .banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page .banner-content {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.banner-title {
    font-size: 4rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
}

/* breadcrumn  */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.breadcrumb-icon {
    margin-right: 0.5rem;
}

.breadcrumb-link {
    margin: 0 0.25rem;
    color: white;
}

.breadcrumb-separator {
    margin: 0 0.25rem;
    color: white;
}

.breadcrumb-current {
    margin-left: 0.25rem;
    color: #ffc107;
    /* Yellow color for active page */
}

@media (max-width: 992px) {
    .page .static-banner {
        position: relative;
        width: 100%;
        height: 25vh;
        overflow: hidden;
    }

    .page .banner-content {
        position: absolute;
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: white;
    }
}

@media (max-width: 767.98px) {
    .page-text {
        font-size: 0.9rem;
    }

    .banner-title {
        font-size: 2rem;
    }
}

.page-main-content {
    background-color: #fff;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    min-height: 48.44svh;
}
