.page-header {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/Background.png');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: cover;
    opacity: 0.4;
    z-index: -1;
}

.page-header h1,
.page-header .page-subtitle {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .page-header::before {
        background-position: bottom center;
        opacity: 0.25;
    }
}