/*@import url('https://fonts.googleapis.com/css?family=Lato:400,700');*/

/*body {*/
/*    overflow-x: hidden;*/
/*    font-family: 'Lato', sans-serif;*/
/*    color: #505962;*/
/*}*/

*{
	margin: 0;
	padding: 0;
	font-family: "poppins",sans-serif;
	box-sizing: border-box;
}

.header{
	height: 100vh;
	width: 100%;
	padding: 0 8%;
	position: relative;
}

.content{
	position: absolute;
	left: 50%;
	top: 50%;
	width: 90%;
	max-width: 900px;
	transform: translate(-50%, -50%);
	text-align: center;
	/*color: #fff;*/
	padding-top: 50px;
}



.back-video{
	position: absolute;
	right: 0;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -100;
}


@media (min-aspect-ratio: 16/9) {
	.back-video{
		width: 100%;
		height: auto;
	}
}

@media (max-aspect-ratio: 16/9) {
	.back-video{
		width: auto;
		height: 100%;
	}
}

