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



.container {
    margin: 1px 6px;
    max-width: 180em;
	height: 76px;

}

.videocontainer {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
	background-color: black;
}
.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

main .container {
    padding: 1em;
}

p {
    margin-left: auto;
    margin-right: auto;
    max-width: 40em;
}

.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 {
  
    left: 0;
    position: relative;
    top: 0;
    z-index: 2;
	clear: both;
	margin-left: 0;
	margin-top: 10px;
	width: 100%;
	float: right;
	display: block;
    position: fixed;
	margin: auto;
	
}



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


/*** LABEL ***/
nav label {
    cursor: pointer;
    display: block;
    font: 1.9em/1 'Oswald', sans-serif;
    padding: 0.5em;
}

/* Hamburger Icon */
#menu-icon,
#menu-icon:before,
#menu-icon:after {
    background: #fff;
    border-radius: 0.16em;
    height: 0.09em;
    transition: all 0.2s ease-in-out;
    width: 100%;
z-index: 32;
}

#menu-icon {
    display: inline-block;
    margin: 0.5em 0;
    max-width: 1.12em;
    position: relative;
z-index: 32;
}

nav label #menu-icon {
    float: right;
z-index: 32;
}

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

#menu-icon:before {
    top: -0.30em;
z-index: 32;
}

#menu-icon:after {
    bottom: -0.3em;
z-index: 32;
}

/* 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: #000;
	opacity: 0.92;
    bottom: 0;
    left: 0;
    height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
    width: 100vw;
    z-index: -1;
	

}

/* List */



nav ul {
    font-size: 2.8em;
    list-style: none;
    margin: 0;
    max-height: 0;
    position: fixed; 
    overflow-y: scroll;
    top: 0; right: 0; bottom: 0; left: 0;
    opacity: 0;
    padding: 0;
    text-align: center;
}

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

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

nav ul a {
    text-decoration: none;
}

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

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