/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    position: relative;
    z-index: 1;
    padding-top: 210px;
    padding-bottom: 195px;
}

@media (max-width: 991px) {
    .page-header {
        padding-top: 150px;
        padding-bottom: 120px;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding-top: 100px;
        padding-bottom: 80px;
    }
}

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

.page-header::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1;
    height: 100%;
    background: rgba(var(--digitalfirehouse-secondary-rgb, 35, 39, 40), 0.6);
}

.page-header .container {
    position: relative;
    z-index: 10;
    text-align: center;
}

.page-header__title {
    margin: 0;
    color: var(--digitalfirehouse-white, #fff);
    text-transform: uppercase;
    margin-bottom: -2px;
    padding-bottom: 0;
    font-family: var(--digitalfirehouse-heading-font, "Roboto", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 94%;
}

@media (max-width: 767px) {
    .page-header__title {
        font-size: 40px;
    }
}