

*,
*:before,
*:after {
    box-sizing: border-box;
}

.container {
    margin: 0 auto;
    max-width: 100%;
}

main .container {
    padding: 1em;
}



.screen-reader-text {
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
}



/************************************************/
/****************** NAVIGATION ******************/
/************************************************/
nav {
    background: #f59f59;
    color: #f59f59;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}

nav label img {
	width:10%;
	height: auto;
	float:left;
}


/*** INPUT ***/
nav input {
    opacity: 0;
    position: absolute;
    z-index: -1;
}


/*** LABEL ***/
nav label {
    cursor: pointer;
    display: block;
    font: 2em;
    padding:2em;
}



/* Hamburger Icon */
#menu-icon,
#menu-icon:before,
#menu-icon:after {
    background: #160821;
    border-radius: 0.05em;
    height: 0.1em;
    transition: all 0.2s ease-in-out;
    width: 100%;
}

#menu-icon {
    display: inline-block;
    margin: 0em 0;
    max-width: 3.5em;
	font-weight: lighter;
    position: relative;
}

nav label #menu-icon {
    float: right;
	margin-right: 5%;
}

#menu-icon:before,
#menu-icon:after {
    content: '';
    left: 0;
    position: absolute;
}

#menu-icon:before {
    top: -0.4em;
}

#menu-icon:after {
    bottom: -0.4em;
}

/* Close Icon */
nav input[type=checkbox]:checked + label #menu-icon {
    background: transparent;
}

nav input[type=checkbox]:checked + label #menu-icon:before {
    top: 0;
    transform: rotate(-45deg);
}

nav input[type=checkbox]:checked + label #menu-icon:after {
    bottom: 0;
    transform: rotate(45deg);
}


/*** MENU ***/
/* Overlay */
nav input:checked ~ #overlay {
    background:#f59f59;
    bottom: 0;
    left: 0;
    height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
    width: 100vw;
    z-index: -1;
}

/* List */
nav ul {
    font-size: 2.2em;
    list-style: none;
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    text-align: center;
	font-weight: 600;
}

nav input:checked ~ ul {
    margin: 1em;
    max-height: inherit;
    opacity: 1;
	margin-top: 2%;
}

nav ul > li {
    margin: 1em 0;
}

nav ul a {
    color: #160821!important;
    text-decoration: none;
}

nav ul a:hover {
    text-decoration: underline;
}

/* Social Media */
nav ul#social-media > li {
    display: inline-block;
    font-size: 1em;
    margin: 0.5em;
}



@media screen and (max-width: 1900px) {	


nav label {
    font: 2em;
    padding:2.6em;
}


}


@media screen and (max-width: 1600px) {	
	
nav ul {
    font-size: 1.6em;
    list-style: none;
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    text-align: center;
	font-weight: 600;
}

nav label {
    font: 2em;
    padding:2em;
}
	
	
nav input:checked ~ ul {
    margin: 1em;
    max-height: inherit;
    opacity: 1;
	margin-top: 3%;
}	


}

@media screen and (max-width: 1200px) {	
	
nav ul {
    font-size: 1.4em;
    list-style: none;
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    text-align: center;
	font-weight: 600;
}


}



@media screen and (max-width: 500px) {	


nav label {
    font: 2em;
    padding:1.8em;
}
		
#menu-icon {
    display: inline-block;
    margin: 0em 0;
    max-width: 2.2em;
	font-weight: lighter;
    position: relative;
}
	
nav label #menu-icon {
    float: right;
	margin-right: 2%;
}	
	
		
	
nav ul {
    font-size: 1.2em;
}	
		
	
/* Social Media */
nav ul#social-media > li {
    font-size: 1em;
}
	
#menu-icon,
#menu-icon:before,
#menu-icon:after {
    border-radius: 0.05em;
    height: 0.1em;
    transition: all 0.2s ease-in-out;
    width: 100%;
}

}



