.page--title {
    text-align: center;
}

.page--title h1 {
    color: var(--Charcoal, #353535);
    text-align: center;
    font-size: 64px;
    font-weight: 400;
    line-height: normal;
}

.top--wrap {
    position: absolute;
    top: 0;
    left: 0;
    width:100%;
}

section.page--header {
    position: relative;
    overflow: hidden;
    height: 300px;
    display: flex;
    align-items: center;
}

.bottom--wrap {
    position: absolute;
    bottom: 0;
    width:100%;
    right: 0;
    text-align: right;
}

.bottom--wrap img {
    position: relative;
    left: 40px;
}

.top--wrap img {
    position: relative;
    left: -40px;
}

section.page--header.bg--primary {
    background: var(--theme-primary);
}

section.page--header.bg--primary h1, section.page--header.bg--primary h5 {
    color: #fff;
}

section.page--header.bg--primary .top--wrap img{height:190px; filter: brightness(0) invert(1);}
section.page--header.bg--primary .bottom--wrap img{height:190px; filter: brightness(0) invert(1);}


@media(max-width:768px){
    .page--title h1 {
        font-size: 32px;
    }
    section.page--header {
        height: 200px;
    }
    .top--wrap img {
        height: 90px;
    }
    .bottom--wrap img {
        height: 90px;
    }
    section.page--header.bg--primary .top--wrap img{height:90px;}
    section.page--header.bg--primary .bottom--wrap img{height:90px;}
}