 /************************
 ** Document
 ************************/
 * {
    padding: 0;
    margin: 0;
 }
body {
    background: #040707;
    font-family: '', sans-serif;
    color: #262d34;
 }

 .container {
     margin: 0 auto;
     width: 100%;
     height: 100%;
     text-align: center;
 }

.contact-form {
    text-align: left;
    width: 100%;
    max-width: 450px;
    padding: 0 0 50px;
}

 /************************
 ** Header
 ************************/
 
header {
    position: relative;
    height: 75px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
}

.sticky {  
    text-align: left;
    width: 100%;
    height: inherit;
    position: fixed;
    top: 0;
    left: 0;
    float: top;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #d8e7ec;
    background: -moz-linear-gradient(top, #d2e7ee 0%, #d8e7ec 5%, #d8e7ec 95%, #d2e7ee 100%);
    background: -webkit-linear-gradient(top, #d2e7ee 0%, #d8e7ec 5%, #d8e7ec 95%, #d2e7ee 100%);
    background: -o-linear-gradient(top, #d2e7ee 0%, #d8e7ec 5%, #d8e7ec 95%, #d2e7ee 100%);
    background: -ms-linear-gradient(top, #d2e7ee 0%, #d8e7ec 5%, #d8e7ec 95%, #d2e7ee 100%);
}

#site-logo {
    padding: 0 5px;
    font-weight: bold;
    text-transform: uppercase;
    color: #42535b;
    flex-grow: 2;
}

#menu-button {
    padding: 0 10px;
    font-size: 1.5rem;
    color: #42535b;
    text-decoration: none;
}
#menu-button:hover {
    font-weight: bold;
    font-size: 1.55rem;
}

#mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:#42535b;
    text-align: center;
}

#nav-close {
    width: 75px;
    height: 35px;
    padding: 5px 7px;
}

#header-nav li{
    list-style: none;
    margin: 7px 0;
    background: #262d34;
    background: -moz-linear-gradient(top, #15181c 0%, #262d34 5%, #262d34 95%, #15181c 100%);
    background: -webkit-linear-gradient(top, #15181c 0%, #262d34 5%, #262d34 95%, #15181c 100%);
    background: -o-linear-gradient(top, #15181c 0%, #262d34 5%, #262d34 95%, #15181c 100%);
    background: -ms-linear-gradient(top, #15181c 0%, #262d34 5%, #262d34 95%, #15181c 100%);
}

#header-nav a {
    display: block;
    font-size: 1.6em;
    font-weight: bold;
    color: #d1d0d0;
    margin: 2px 0;
    padding: 10px 0;
    text-decoration: none;
}
#header-nav a:hover {
    text-decoration: underline;
    font-weight: bold;
    color: #fff;
}

/************************
 ** Main Content
 ************************/
 
main h1 {
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    color: #262d34;
    padding-top: 25px;
}

#about {
    background: #f9f19b;
}

#advice {
    background: #b9e8f0;
}

#contact {
    color: #b9e8f0;
    background: #262d34;
}
#contact h1 {
    color: #f9f19b;
}

.showcase {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    padding: 10px 0;
}

.showcase-banner {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin: 0;
    font-size: 1.2em;
    background-image: url(images/mobile_liminal-screen.jpg);
    background-size: cover;
    background-position: center;
    background-color: #040707;
}

.showcase-banner {
    font-weight: normal;
    text-shadow: 2px 2px 3px #000;
}

.showcase-box {
    transition-property: background-color;
    transition-duration: 0.2s;
    margin: 10px 0;
    padding: 20px 10px;
}


.showcase-photo {
    width: 90%;
    margin: 10px 0;
}

.showcase-desc {
    text-align: left;
}
.showcase-box button {
    width: 100px;
    height: 25px;
    float: right;
    margin: 7px 10px;
}

#advice .showcase-box {    
    -moz-box-shadow: 1px 1px 25px #a1ced6;
    -webkit-box-shadow: 1px 1px 25px #a1ced6;
    box-shadow: 1px 1px 25px #a1ced6;
}

#advice .showcase-box:hover {
    background-color: #c7f7ff;
}
 /************************
 ** Footer
 ************************/
footer {
    width: 100%;
    padding: 17px 2.5%;
    color: #d1d0d0;
    background: #181b1f;
    background: -moz-linear-gradient(top, #15181c 0%, #181b1f 5%, #181b1f 95%, #15181c 100%);
    background: -webkit-linear-gradient(top, #15181c 0%, #181b1f 5%, #181b1f 95%, #15181c 100%);
    background: -o-linear-gradient(top, #15181c 0%, #181b1f 5%, #181b1f 95%, #15181c 100%);
    background: -ms-linear-gradient(top, #15181c 0%, #181b1f 5%, #181b1f 95%, #15181c 100%);
}

#copyright span {
    font-weight: bold;
}

.pure-button {
    background-color:#181b1f;
    color: #fff;
}

#contact-form {
    width: 100%;
}

 /************************
 ** Desktops
 ************************/
@media screen and (min-width: 825px) {
    .container {
        width: 100%;
        height: 100%;
    }

    .contact-form {
        max-width: 600px;
        margin: 0 auto;
    }

    /************************
    ** Header
    ************************/
    
    header {
        padding: 0;
        margin: 0;
    }
    #site-logo {
        font-size: 1em;
        display: inline-block;      
        line-height: 1em;
        width: 30%; 
    }
    #mobile-nav {
        display: initial;
        position: relative;
        top: 0;
        left: 0;
        background: transparent;
        text-align: center;
    }
    #header-nav a {
        display: initial;
        font-size: 1.6em;
        font-weight: bold;
        color: #42535b;
        margin: 2px 0;
        padding: 10px 0;
        text-decoration: none;
    }

    #menu-button {
        display: none;
    }
    
    #header-nav {
        float: right;
        width: 100%;
    }

    #header-nav button {
        display: none;
    }
    
    #header-nav li{
        display: inline-block;
        background: transparent;
        padding: 0 2px;
    }

    #header-nav a{
        font-size: 1.3em;
        padding: 0 5px;
    } 

    #header-nav a:hover {
        background: #262d34;;
        background: -moz-linear-gradient(top, #15181c 0%, #262d34 5%, #262d34 95%, #15181c 100%);
        background: -webkit-linear-gradient(top, #15181c 0%, #262d34 5%, #262d34 95%, #15181c 100%);
        background: -o-linear-gradient(top, #15181c 0%, #262d34 5%, #262d34 95%, #15181c 100%);
        background: -ms-linear-gradient(top, #15181c 0%, #262d34 5%, #262d34 95%, #15181c 100%);
    }

    /************************
    ** Main Content
    ************************/
    main h1 {
        font-size: 1.5em;
    }
    .showcase {
        flex-direction: row;
    }

    /* Banner              */
    .showcase-banner {
        height: 100%;
        background-image: url(images/liminal-screen.jpg);
        margin: 0 0 20px;
    }
    

    .showcase-box {
        width: 45%;
    }

    /************************
    ** Footer
    ************************/
    footer {
        padding: 17px 0;
    }
    
}