/*==============================================
    Page Header
===============================================*/
.page-header {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: -1;
}

@media (min-width: 1920px) {
    .page-header__inner {
        padding: 160px 0 100px;
    }
}

.page-header__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(32, 57, 129, 0.1); /* Subtle dark blue overlay matching theme */
}

.page-header__inner {
    position: relative;
    display: block;
    padding: 120px 0 80px;
    z-index: 15;
}

@media (max-width: 1199px) {
    .page-header__inner {
        padding: 100px 0 70px;
    }
}

@media (max-width: 991px) {
    .page-header__inner {
        padding: 90px 0 60px;
    }
    .page-header__inner h3 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .page-header {
        min-height: 300px;
        display: flex;
        align-items: center;
    }
    .page-header__inner {
        padding: 80px 0 60px;
        width: 100%;
    }
    .page-header__inner h3 {
        font-size: 26px;
    }
    .page-header__bg {
        background-position: center center;
    }
}

.page-header__inner h2,
.page-header__inner h3 {
    font-size: 48px;
    color: #ffffff;
    line-height: 50px;
    font-weight: 700;
    margin-bottom: 15px;
}

.thm-breadcrumb__inner {
    position: relative;
    display: block;
}

.thm-breadcrumb {
    position: relative;
    display: block;
}

.thm-breadcrumb li {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
    color: #ffffff;
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.thm-breadcrumb li+li {
    margin-left: 5px;
}

.thm-breadcrumb li a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
    color: #ffffff;
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 0.8;
}

.thm-breadcrumb li:hover a {
    color: #ffffff;
    opacity: 1;
}

.thm-breadcrumb li span {
    font-size: 12px;
}














/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/