/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--itzone-black);
    z-index: 1;
}

body.site-nav-unified:not(.home-page) .page-header {
    padding-top: 0;
}

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

body.site-nav-unified:not(.home-page) .page-header__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(5, 11, 21, .88) 0%,
            rgba(5, 11, 21, .68) 36%,
            rgba(5, 11, 21, .74) 100%);
}

.page-header__inner {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
    text-align: center;
}

body.site-nav-unified:not(.home-page) .page-header__inner {
    padding: 190px 0 120px;
}

.page-header__inner h3 {
    font-size: 65px;
    color: var(--itzone-white);
    line-height: 75px;
    font-weight: 700;
    margin-bottom: 15px;
}

.thm-breadcrumb__inner {
    position: relative;
    display: block;
}

.thm-breadcrumb {
    position: relative;
    /* use flex layout to keep items on one line and center them vertically */
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    list-style: none; /* remove default bullets */
}

.thm-breadcrumb li {
    position: relative;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: var(--itzone-white);
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    list-style: none;
}

.thm-breadcrumb li+li {
    margin-left: 5px;
}

.thm-breadcrumb li a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    color: var(--itzone-white);
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
    color: var(--itzone-base);
    opacity: 1;
}

.thm-breadcrumb li span {
    font-size: 12px;
    color: var(--itzone-base);
    /* ensure the arrow icon sits vertically centered with text */
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}
