body > video {
	height: 0px;
	width: 0px;
}

#site{
	position: relative;
	width: 100%;
	max-width: 1050px;
	margin: auto;
	display: block;
	padding-top: 80px;
	transform: translateY(10vh);
	transition: all 1s ease-out;
}

#site_mobile{
	position: relative;
	width: 63%;
	display: inline-block;
}

#site_desktop{
	position: relative;
	width: 36%;
	display: inline-block;
}

#menu{
	position: fixed;
	height: 80px;
	width: 100%;
	background-color: #bbbbbb;
	background-image: url("../data/menu.jpg");
	background-size: auto 100%;
	background-position: 50%;
	background-repeat: no-repeat;
	z-index: 2;
	top: 0px;
	transform: translateY(10vh);
	transition: transform 1s ease-out;
}

@media screen and (max-width: 700px){
	#site{
		top: 60px;
	}

	#menu{
		height: 60px;
	}

	#site_mobile{
		width: 100%;
	}

	#site_desktop{
		display: none;
	}
}

/*COVER*/

#cover{
	position: fixed;
	top: 0px;
	width: 100%;
	height: 10vh;
	z-index: 3;
	cursor: pointer;
	transition: all 1s ease-out;
}

#banner, #close_30, #expand, #cover_closed, #closefullvideo{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0%;
	top: 0%;
	background-size: cover;
    overflow: hidden;
    image-rendering: -webkit-optimize-contrast!important;
    background-position: 50%;
}

#expand{
	display: none;
	background-color: #000;
}

#closeExpand{
    position: absolute;
    width: 30px;
    height: 80%;
    max-height: 30px;
    top: 0px;
    right: 0px;
    background-image: url('../images/close.svg');
    background-repeat: no-repeat;
    margin: 0!important;
    z-index: 2;
}

#cover_closed{
	background-color: #000;
}

#close_30{
	background-color: #000;
	display: none;
}