html, body{
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	font-family: 'Open Sans', sans-serif;
	overflow: hidden;
}

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

video { 
	position: fixed; 
	right: 0; 
	bottom: 0;
	min-width: 100%; 
	min-height: 100%;
	width: auto; 
	height: auto; 
	display: block;
	background: url(img/img-video.jpg);
	background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		-webkit-background-size: cover;
}

.img-video{
	display: none;
}

.content{
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
		display: -webkit-flex;
		-webkit-justify-content: center;
		-webkit-align-items: center;
		display: -ms-flex;
		-ms-justify-content: center;
		-ms-align-items: center;
}

.logo{
	width: 35%;
}

.logo img{
	width: 100%;
}

.footer{
	color: #ffffff;
	position: absolute;
	width: 100%;
	bottom: 15px;
}

.footer ul{
	margin: 0;
	padding: 0;
	text-align: center;
}

.footer ul li:last-child{
	border-right: 0;
}

.footer li{
	list-style: none;
	display: inline-block;
	padding: 0 2%;
	border-right: solid 1px #fff;
	height: 14px;
	line-height: 14px;
	font-weight: 100;
	letter-spacing: 4px;
	font-size: 14px;
}

@media (max-width: 1024px){
	video{
		display: none;
	}

	.img-video{
		display: block;
	}

	.footer li{
		padding: 0 10px;
		font-size: 11px;
	}
}

@media (max-width: 768px){
	.footer li{
		display: block;
		margin-bottom: 10px;
	}
}