/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    position: relative;
    display: block;
    background-color: var(--tecture-black);
    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;
    opacity: .60;
    z-index: -1;
}

.page-header__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.23853291316526615) 70%, rgba(0, 0, 0, 1) 100%);
}

.page-header__bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(0, 0, 0);
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5998774509803921) 20%, rgba(9, 0, 0, 0.19371498599439774) 100%);
}


.page-header__bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .55);
    z-index: -1;
}

.page-header__inner {
    position: relative;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 181px 0 188px;
}

.page-header__title {
    font-size: 72px;
    font-weight: 700;
    line-height: 82px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--tecture-white);
    text-align: center !important;
}

.thm-breadcrumb__box {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    text-align: center !important;
    width: 100%;
}

.thm-breadcrumb {
    position: relative;
    display: inline-block;
}

.thm-breadcrumb li {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    color: var(--tecture-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.thm-breadcrumb li+li {
    margin-left: 5px;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.5);
}

.thm-breadcrumb li a {
    position: relative;
    display: inline-block;
    color: var(--tecture-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
    color: var(--tecture-base);
}

.thm-breadcrumb li.active {
    color: var(--tecture-base);
}














/* Responsive Styles */
@media only screen and (max-width: 1199px) {
    .page-header__title {
        font-size: 60px;
        line-height: 70px;
    }

    .page-header__inner {
        padding: 150px 0 160px;
    }
}

@media only screen and (max-width: 991px) {
    .page-header__title {
        font-size: 48px;
        line-height: 58px;
    }

    .page-header__inner {
        padding: 130px 0 140px;
    }

    .thm-breadcrumb li {
        font-size: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .page-header__title {
        font-size: 36px;
        line-height: 46px;
        margin-bottom: 20px;
    }

    .page-header__inner {
        padding: 100px 0 110px;
    }

    .thm-breadcrumb li {
        font-size: 14px;
    }
}

@media only screen and (max-width: 575px) {
    .page-header__title {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 15px;
    }

    .page-header__inner {
        padding: 80px 0 90px;
    }

    .thm-breadcrumb li {
        font-size: 13px;
    }

    .breadcrumb-separator {
        margin: 0 5px;
    }
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/