.headerTitle {
    position: relative;
}
.headerTitle .headerForeground {
    max-width: var( --page-width );
    margin: 100px auto 100px auto;
}
@media ( max-width: 800px ) {
    .headerTitle .headerForeground {
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 60px;
        margin-bottom: 60px;
    }
}



.headerTitle .headerForeground h1:empty,
.headerTitle .headerForeground h2:empty,
.headerTitle .headerForeground h3:empty {
    display: none;
}



/**
 * Title
 */
.headerTitle .headerForeground h1 {
    color: #dddddd;
    font-size: 75px;
    font-weight: 400;
    text-align: left;
}
@media ( max-width: 800px ) {
    .headerTitle .headerForeground h1 {
        font-size: 50px;
    }
}



/**
 * Subtitle
 */
.headerTitle .headerForeground h2 {
    color: #dddddd;
    font-size: 25px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
}
@media ( max-width: 800px ) {
    .headerTitle .headerForeground h2 {
        font-size: 22px;
    }
}



/**
 * Pretitle
 */
.headerTitle .headerForeground h3 {
    color: #dddddd;
    font-size: 25px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
}
@media ( max-width: 800px ) {
    .headerTitle .headerForeground h3 {
        font-size: 22px;
    }
}



/**
 * Logo
 */
.headerTitle .headerForeground img {
    display: block;
    margin: auto;
}



/**
 * Background
 */
.headerTitle .headerBackground {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
}
.headerTitle .headerBackground::after {
    content: "";
    z-index: 0;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    opacity: 0.75;
    background-color: #000000;
}
