/*
font-family: 'Karla', sans-serif;
*/

/*GENERAL STYLES*/
html, body{
    font-family: 'Karla', sans-serif;
    font-size: 16px;
}

h1{font-size: 2.5em;}
p{font-size: .95em;}


.margins-top-bottom{margin: 40px 0;}
.align-center{text-align: center;}
.gray-text{color: #868686;}
.mb{margin-bottom: 30px;}
.line-height{line-height: 1.8em;}
.tb-gray-border{
    padding: 25px;
    border-top: 1px solid #c5c5c5; 
    border-bottom: 1px solid #c5c5c5;
}

.no-bullets{list-style: none;}
.light-heading{color: #5a5a5a;}
.green-text{color: #00c03f;}




/*END GENERAL STYLES*/

.header{padding: 0 50px;}

.logo{
    width: 20%;
    float: left;
    padding-top: 10px;
    /*outline: 1px solid black;*/
}



nav{
    width: 80%;
    float: left;
    text-align: right;
    /*outline: 1px solid black;*/
}

nav ul li{display: inline-block;}

nav ul li a{
    display: block;
    color: #949494;
    padding: 20px;
}

.active,
nav ul li a:hover{
    background-color: #00c03f;
    color: #ffffff;
    text-decoration: none;
}

.home-page-img-holder{
    margin-top: 30px;
}







/*FOOTER*/

#footer{
    background-color: #323232;
    padding: 40px 0;
    margin-top: 60px;
}

#footer h4{
    color: #ebebeb;
    margin: 40px auto;
    font-size: 1em;
}

#footer ul{
    padding: 0;
}

#footer ul li{
    padding: 5px 0;
    list-style: none;
    font-size: .85em;
}

#footer p,
#footer a{
    color: #5c5c5c;
    list-style: none;
    font-size: 1em;
}

#footer ul li a:hover{
    color: #99C169;
    text-decoration: none;
}

#footer p.footer-heading{
    font-size: .95em;
    color: #99C169;
}







@media screen and (max-width: 800px){
    
    .burger-button{
        height: 50px;
        cursor: pointer;
        background: url(../images/Menu-50.png) no-repeat 98% center;
        margin-bottom: 20px;
        /*outline: 1px solid black;*/
    }
    
    .logo{
        width: 100%;
        float: none;
        padding: 20px 0;
        text-align: center;
        
    }
    
    nav{
        width: 100%;
        float: none;
    }
    
    nav ul{
        padding: 0px;
        display: none;
    }
    
    nav ul li{
        display: inline;
        text-align: center;
        list-style-type: none;
    }
    
    
    
    
} /*end 800px*/


