/*RESET**********************************************/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*END OF RESET**********************************************/


/*HEADER**********************************************/

html {
  overflow-y: scroll;
}

header {
    position: fixed;
    top: 0;
    width: 94%;
    z-index: 3;
    background-color: #000;
    padding: 20px 3% 10px 3%;
}

nav {
    width: 100%;
    font-family: "Barlow", sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 1em;
}

nav h1 {
    float: left;
}

.menu {
    float: right;
    list-style: none;
    text-align: right;
    margin: 15px 0 0 0;
    display: none;
}

.menuSocial {
    font-weight: 300;
    font-size: .7em;
    text-transform: uppercase;
}

.burger {
    float: right;
    cursor:pointer; 
}

nav li {
    display: inline;
    margin: 0 0 0 10px;
}

nav li a {
    color: #fff;
    text-decoration: none;
}

nav li a:hover {
    color: #a7be39;
}

/*END OF HEADER**********************************************/

/* MENU OVERLAY */

.overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
    overflow-y: hidden;
    transition: 0.5s;
    clear: right;
}

.overlay h1 {
    float: left;
    margin: 20px 3%;
    width: 9em;
}

.overlay .closebtn {
    float: right;
    margin: 1.2em 3%;
}

.overlayMenu {
    margin: 0 3%;
    clear: both;
}

.overlayMenu li a {
    display: block;
   
}

.overlayMenu a {
    text-decoration: none;
    transition: 0.3s;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 1em;
    line-height: 1em;
    color: #a7be39;
    margin:0;
    padding:0;
}

.overlayMenu a:hover,
.overlayMenu a:focus {
    color: #f1f1f1;
}

.overlayMenuSocial {
    font-size: .65em;
    line-height: .6em;
}

/* END OF MENU OVERLAY **********************************************/


/* CONTENT */

#content {
	width:94%;
    padding:0 3% 50px 3%;
	font-family: 'Barlow', sans-serif;
    font-weight:300;
    margin: 100px auto 0 auto;
}
#content h2 {
    font-family: "Barlow", sans-serif;
    font-size:2em;
    font-weight: 300;
	color:#000;
    margin:10px 0 20px 0;
}
#content p, #content ul{
    font-size:1.2em;
	line-height:1.4em;
	color:#656D8F;
	margin:0 0 20px 0;
    width:93%;
}
#content ul{
        margin-bottom: 30px;
    }
#content p a{	
	color:#656D8F;
	text-decoration:none;
}
#content a:hover {
	color:#656D8F;
    text-decoration:underline;
}

/* END OF CONTENT */



/* FOOTER **********************************************/
footer{
	z-index: 99;
    display:none;
}

.footerContent{
    width: 94%;
    padding:0 3% 100px 3%;
    font-family: 'Barlow', sans-serif;
    font-size:.8em;
	line-height: 1.1em;
    font-weight:400;
    color:#000;
}

.footerContent a{
    color:#656D8F;
	text-decoration:none;
    padding: 2px 5px;
}
.footerContent a:hover {
    background-color: #a7be39;
	color:#FFF;
}

.footerContent ul{
    float:right;
}

.footerContact {
    float:left;
}

.footerRights {
    float:left;
    clear:both;
    margin:10px 0 0 0;
    font-size:.7em;
    width:33%;
}

.footerContent .menuSocial {
    float: right;
    list-style: none;
    text-align: right;
    margin: 0 0 0 15px;
    font-weight: 500;
    font-size: 1em;
    text-transform: uppercase;
}

/* FOOTER END */



/* RESPONSIVE */

@media only screen and (max-height: 420px) {}

@media only screen and (min-width: 500px) {
    #content h2 {
        font-size: 2em;
    }
    #content p, #content ul{
        width: 85%
    }
}

@media only screen and (min-width: 750px) {
    .overlay {
        display: none;
    }
    .burger {
        display: none;
    }
    .menu {
        display: inline;
    }
    footer {
        display:inline;
    }
}
    
@media only screen and (min-width: 1000px) {
    #content p, #content ul{
        font-size: 1.5em;
        width: 75%;
    }
    #content ul{
        margin-bottom: 40px;
    }
}

@media only screen and (min-width: 1100px) {}

@media only screen and (min-width: 1350px) {}

@media only screen and (min-width: 1600px) {
    nav {
		width:1500px;
		margin:0 auto;
	}
	#content {
		width:1500px;
        margin:100px auto 0 auto;
	}
	.footerContent{
        width:1500px;
        margin:50px auto 0 auto;    
    }
}

@media only screen and (min-width: 1600px) {}

@media only screen and (min-width: 1950px) {}

/* RESPONSIVE END */