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

    /* RESPONSIVE HEIGHT based on image ratio (315/1920 = 16.4%) */
    height: 0;
    padding-bottom: 16.40625%; /* 315 ÷ 1920 × 100 */
}

/* Background Image Fix */
.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    background-repeat: no-repeat;

    /* KEY FIX: cover fills full width at all zoom levels */
    background-size: cover;

    /* Keeps image centered, adjust if your subject is left/right */
    background-position: center center;

    z-index: -1;
}

/* Inner Content Alignment */
.page-header__inner {
    position: absolute; /* Must be absolute since parent uses padding-bottom trick */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    z-index: 15;
    padding: 0px 0px 0px 139px;
}

/* Optional Image (Right Side) */
.page-header__img-1 {
    position: absolute;
    bottom: 0;
    right: 0px;
}

.page-header__img-1 img {
    width: auto;
}

/* Shape Fix */
.page-header__shape-1 {
    position: absolute;
    top: 0px;
    right: 393px;
    z-index: -1;
}

.page-header__shape-1 img {
    width: auto;
}

/* Title */
.page-header__inner h3 {
    font-size: 40px;
    color: var(--tanspot-white);
    line-height: 1em;
    font-weight: 600;
    margin-bottom: 14px;
    /* visibility: hidden; */
}

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

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

.thm-breadcrumb li {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
    color: var(--tanspot-white);
    font-family: var(--tanspot-font-two);
    text-transform: capitalize;
    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: 500;
    line-height: 18px;
    color: var(--tanspot-white);
    font-family: var(--tanspot-font-two);
    text-transform: capitalize;
    transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
    color: var(--tanspot-base);
    opacity: 1;
}

.thm-breadcrumb li span {
    font-size: 16px;
    color: var(--tanspot-base);
    font-weight: 700;
    position: relative;
    top: 1px;
}