.page-header {
    width: 100%;
    background-image: url("/res/Forest.jpg");
    background-color: #3D5C41;
    overflow: auto;
}

.header-preface {
    background-image: url("/res/Round-Logo-White.png");
    height: 4rem;
    line-height: 4rem;
    width: 100%;
    z-index: 64;
    max-width: 64rem;
    margin: 1rem auto;
}

.header-preface--fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.header-preface-text-left,
.header-preface-text-right {
    color: #F9F9F9;
    text-decoration: inherit;
    padding: 0 2rem;
}

.header-preface-text-left>i,
.header-preface-text-right>i {
    margin-right: 0.5em;
}

.header-preface-text-left {
    float: left;
}

.header-preface-text-right {
    float: right;
}

.header-navbar {
    position: sticky;
    top: 10px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #F9F9F9;
    font-family: "Rokkitt", serif;
}

.header-navitem {
    flex: 0 1 auto;
    display: inline-block;
    transition: color 0.15s ease;
}

.header-navitem:hover {
    color: #3D5C41;
}

.header-navitem>a {
    padding: 2rem;
    text-decoration: inherit;
    color: inherit;
    display: block;
}

.header-titles-wrapper {
    color: #F9F9F9;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    padding-bottom: 8rem;
}

.header-titles-wrapper:before,
.header-titles-wrapper:after {
    position: absolute;
    border-style: solid;
    content: "";
    bottom: 0;
}

.header-titles-wrapper:before {
    left: 0;
    border-width: 4rem 32rem;
    border-color: transparent transparent #F9F9F9 #F9F9F9;
}

.header-titles-wrapper:after {
    right: 0;
    border-width: 4rem 32rem;
    border-color: transparent #F9F9F9 #F9F9F9 transparent;
}

.header-titles-wrapper>* {
    max-width: 64rem;
    display: inline-block;
    margin-bottom: 2rem;

}

.header-titles-wrapper:last-child {
    margin-bottom: 0;
}

.nav-wrapper-phone {
    display: none;
    float: right;
    height: 100%;
    z-index: 64;
    position: relative;
}

.header-navbar-phone {
    position: absolute;
    top: 100%;
    right: 2rem;
    z-index: 30;
    overflow: hidden;
    list-style: none;
    display: flex;
    flex-direction: column;
    line-height: normal;
    transition: max-height 0.5s ease;
    max-height: 0px;
    align-items: stretch;
    left: -15rem;
}

.header-navitem-phone { 
    flex: 0 0 auto;
    background-color: #F9F9F9;
    text-align: right;
    border-bottom: solid 1px #3D5C41;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.header-navitem-phone:hover { 
    background-color: #3D5C41;
    color: #F9F9F9;
}


.header-navitem-phone > a {
    text-decoration: inherit;
    color: inherit;
    padding: 1rem;
    display: block;
}

.nav-wrapper-toggle {
    background: 0;
    outline: 0;
    border: 0;
    color: #F9F9F9;
    cursor: pointer;
    padding: 0 2rem;
    height: 100%;
}

@media screen and (max-width: 475px) {

    .header-titles-wrapper > h1 {
        font-size: 1.25em;
    }

    .header-titles-wrapper > h3{
        display: none;
    }
}

@media screen and (max-width: 700px) {

    .header-preface-text-left,
    .header-preface-text-right {
        display: none !important;
    }
    .header-titles-wrapper > h1 {
        font-size: 1.5em;
    }

    .header-titles-wrapper > h3{
        font-size: 1em;
    }
}

@media screen and (max-width: 1000px) {

    .header-navbar {
        display: none !important;
    }

    .header-preface-text-right {
        display: none !important;
    }

    .nav-wrapper-phone {
        display: block !important;
    }
}