/*--------------------------------------------------------------
# Page Header - Luxury Style
--------------------------------------------------------------*/
.page-header {
    position: relative;
    display: block;
    background-color: #0a0c09;
    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;
    opacity: .35;
    z-index: -1;
    animation: headerZoom 20s ease-in-out infinite alternate;
}

@keyframes headerZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.page-header__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(
        0deg,
        rgba(10, 12, 9, 1) 0%,
        rgba(10, 12, 9, 0.6) 40%,
        rgba(10, 12, 9, 0.8) 100%
    );
}

.page-header__bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(
        90deg,
        rgba(10, 12, 9, 0.9) 0%,
        rgba(10, 12, 9, 0.3) 50%,
        rgba(10, 12, 9, 0.7) 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;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 220px 0 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-header__inner::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 120px;
    height: 3px;
    background: var(--tecture-base);
}

.page-header__title-box {
    position: relative;
    display: block;
}

.page-header__title-box p {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--tecture-base);
    margin-bottom: 16px;
}

.page-header__title-box h3 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: none;
    margin-bottom: 0;
    color: var(--tecture-white);
    letter-spacing: -1px;
    font-family: var(--tecture-font-luxury);
}

.thm-breadcrumb__box {
    position: relative;
    bottom: 8px;
}

.thm-breadcrumb {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 24px;
    backdrop-filter: blur(6px);
}

.thm-breadcrumb li {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--tecture-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

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

.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);
}

.thm-breadcrumb li span {
    color: rgba(255, 255, 255, 0.25);
}

/* Responsive */
@media (max-width: 991px) {
    .page-header__inner {
        padding: 180px 0 60px;
    }

    .page-header__title-box h3 {
        font-size: 52px;
    }
}

@media (max-width: 767px) {
    .page-header__inner {
        padding: 150px 0 50px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .page-header__title-box h3 {
        font-size: 40px;
    }

    .page-header__title-box p {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .thm-breadcrumb__box {
        position: relative;
        bottom: 0;
    }
}

@media (max-width: 480px) {
    .page-header__title-box h3 {
        font-size: 32px;
    }

    .page-header__inner {
        padding: 130px 0 40px;
    }
}

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