/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    position: relative;
    display: block;
    padding: 210px 0 100px;
    overflow: hidden;
    z-index: 1;
    margin-top: -128px;
}

.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(90deg, rgb(0 0 0 / 33%) 0%, #000000ba 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(-90deg, rgb(16, 16, 21) 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;
    text-align: center;
}

    .page-header__inner h2 {
        font-size: 40px;
        font-weight: 500;
        line-height: 70px;
        color: var(--givewell-white);
        text-transform: capitalize;
        margin-bottom: 0px;
    }

.thm-breadcrumb__box {
    position: relative;
    display: inline-block;
    border-radius: 4px;
    padding: 2px 12px 3px;
    background-color: rgba(var(--givewell-white-rgb), .12);
    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-white);
        -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-white);
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
            align-items: center;
            gap: 8px;
        }

        .thm-breadcrumb li:hover a {
            color: var(--givewell-base);
        }
