@charset "UTF-8";
/* CSS Document */


/*@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300|Roboto:100,300,400,700');*/
/*@import url('https://fonts.googleapis.com/css?family=Playfair+Display:300,400,500,800|Merriweather:700|Roboto:100,300,400,500,700&display=swap');*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

/* colors:

blue: #0081FF
chargeGreen: #25CC55

*/

body {
    margin: 0;
    padding: 64px 0 0;
    background-color: white;
    overflow-x: hidden;
    width: 100%;
}

h1 {
    font-family: 'Open Sans', sans-serif;
    /*font-weight: 800;
    margin: 0;*/
}

p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
}

a {
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
}

label {
    font-family: 'Open Sans', sans-serif;
}

/* nav --- */

nav {
    display: block;
    position: fixed;
    height: 64px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    
    /*for testing purposes*/
    background-color: whitesmoke;
}

nav > a {
    display: inline-block;
    margin: 0 0 0 5%;
    padding: 10px 0;
}

nav > a > img {
    height: 44px;
    width: auto;
    border-radius: 22px;
}

nav > a > label {
    line-height: 44px;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    position: absolute;
    margin: 1px 0 0 8px;
}

.menu_button {
    display: none;
    float: right;
    margin: 0 10% 0;
    background: none;
    border: none;
    padding: 18px 0 0;
}

.menu_button > img {
    padding: 0;
    margin: 0;
    height: 30px;
    width: auto;
}

nav > ul {
    list-style: none;
    display: inline-block;
    margin: 0 5% 0;
    padding: 10px 0;
    float: right;
}

nav > ul > li {
    display: inline-block;
    height: 44px;
    margin: 0 6px;
}

nav > ul > li > a {
    display: block;
    height: 44px;
    line-height: 44px;
    color: black;
    font-size: 16px;
    font-weight: 400px;
}

#current-page {
    color: #0081FF;
    font-weight: 700;
}

nav > ul > li > a:hover {
    color: #25CC55;
}

@media screen and (max-width: 870px) {
    
    .menu_button {
        display: inline-block;
    }
    
    nav > ul {
        display: none;
        margin: 0;
        padding: 10px 10% 30px 5%;
        float: inherit;
        width: 85%;
        background-color: whitesmoke;
    }

    nav > ul > li {
        display: block;
    height: 44px;
        margin: 0;
    }
    
    nav > ul > li > a {
        text-align: right;
    }
    
}


