/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/

.page-header {
    position: relative;
    display: block;
    padding: 183px 0 60px;
    overflow: hidden;
    z-index: 1;
    margin-top: -128px;
    border-bottom: 2px solid #f7f1ee;
    text-align: center;
}

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

.page-header__bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(238deg, rgba(0, 0, 0, 0) 0%, #f8e8dd 100%);
    transform: matrix(-1, 0, 0, 1, 0, 0);
}

.page-header__bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: -moz-linear-gradient(-90deg, rgb(16, 16, 21) 0%, rgba(16, 16, 21, 0) 60%);
    background-image: -webkit-linear-gradient( 351deg, rgb(248 232 221) 0%, rgba(16, 16, 21, 0) 60%);
    background-image: -ms-linear-gradient(-90deg, rgb(16, 16, 21) 0%, rgba(16, 16, 21, 0) 60%);
    z-index: 1;
}

.page-header__inner {
    position: relative;
    display: block;
}

.page-header__inner h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 70px;
    color: var(--givewell-base);
    text-transform: capitalize;
    margin-bottom: 15px;
}

.thm-breadcrumb__box {
    position: relative;
    display: inline-block;
    border-radius: 4px;
    padding: 2px 12px 3px;
    background-color: rgb(104 120 165 / 13%);
    z-index: 1;
}

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

.thm-breadcrumb li {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--givewell-base);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

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

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

.thm-breadcrumb li a {
    position: relative;
    display: inline-flex;
    color: var(--givewell-base);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    align-items: center;
    gap: 8px;
}

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

@media screen and (max-width: 768px) {
    .page-header__inner h2 {
        font-size: 30px;
        font-weight: 500;
        line-height: 40px;
    }
}