/*Not applied to header background image because each page has different style */
/*header*/
.header-nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0.5em 5%;
}
.branding-logo {
    cursor: pointer;
}
.header-nav--sitemap {
    list-style: none;
    overflow: hidden;
    background-color: #fff;
    float:left;
    padding-left: 10px;
}    
.header-nav--sitemap li {
    display: inline-block;
}
.header-nav--sitemap a {
    color: #000;
    text-decoration: none;
    font-size: 1em;
    text-align: center;
    padding: 14px 16px;
    display: block;
    font-weight: bold;
}
.header-nav--sitemap a:hover {
    background-color: #106ebe;
    color: #fff;
}
    
.header-greetings {
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color:#fff;
    }
.header-greetings h1 {
    font-size: 3em;
    margin-block-start: 8px;
    margin-left: 20px;
    margin-right: 20px;
}
.header-greetings p {
    font-style: italic;
    font-size: 1.5em;
}


/*Footer*/
footer {
    background-color:#808080;
    color: #fff;
    line-height: 2em;
    margin-top: 20px;
    padding: 30px 0;
}

.footer-container {
    padding: 1em 3em;
}

.footer-navigation {
    margin-bottom: 1em;
}
.footer-navigation a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
}
.footer-navigation a:hover {
    color:#58CCED;
}
.footer-navigation ul {
    margin:0;
    padding: 0;
}
.footer-navigation li {
    list-style: none;
    display: inline-block;
    padding-right: 20px;
}

.footer-socialmedia {
    margin:0 0 0 0;
    display: inline-block;
    padding-top: 0;
    max-width: 174px;
}
.footer-socialmedia a {
    text-decoration: none;
}
.copyright {
    text-align: left;
    padding: 1em 3em;
}
.button {
    height: 30px;
    width: 30px;
    color: #fff;
    margin: 0 5px;
}

/* For tablets */
@media (min-width: 640px) {
    .footer-container, .copyright {
        width: 80%;
        margin: auto;
    }
    .header-greetings h1 {
        margin-left: 50px;
        margin-right: 50px
    }
}

/*for desktop*/
@media (min-width: 1008px) {
    .header-greetings h1 {
        font-size: 60px;
    }
    .header-greetings p {
        font-size: 2.5em;
    }
    .footer-container {
        width: 60%;
        margin: auto;
        display: flex;
    }
    .copyright{
        width: 60%;
        margin: auto;
    }
    .footer-socialmedia, .footer-navigation {
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 0px;
    }
    .header-greetings h1{
        margin-left: 120px;
        margin-right: 120px;
    }
}