* {
	margin: 0;
	padding: 0;
}
body {
	font-family: Calibri, sans-serif;
}
.background-wrap {
	position: fixed;
	z-index: -1000;
	width: 100%;
	height: 100%;
	overflow: hidden;
	top: 0;
	left: 0;
}

#video-bg-elem {
	position: absolute;
	top: 0;
	left: 0;
	min-height: 100%;
	min-width: 100%;
}
.content {
	position: absolute;
	top: 0;
	width: 100vw;
	min-height: 100vh;
	z-index: 1000;
	background-color: rgba(0,0,0,0.7);
}

.home_banner img {
	max-width: 95vw;
}
	
.home_banner {
	position: absolute;
	top: 30vh;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	text-align: center;	
}

.home_subtext {
	margin-top: 20px;	
}

.content h1 {
	text-align: center;
	font-size: 65px;
	text-transform: uppercase;
	font-weight: 300;
	color: #fff;
	margin-bottom: 10px;
}

.content p {
	text-align: center;
	font-size: 20px;
	letter-spacing: 3px;
	color: #aaa;
}

.home_tl_border {
	position: absolute;
	top: 0px;
	left: 0px;
}

.home_tr_border {
	position: absolute;
	top: 0px;
	right: 0px;
}

.home_bl_border {
	position: absolute;
	bottom: 0px;
	left: 0px;
}

.home_br_border {
	position: absolute;
	bottom: 0px;
	right: 0px;
}

/* -- Start Mobile Styles ------------------------------------------------------------ */

/*portrait*/
@media screen and (max-width: 480px) and (max-aspect-ratio: 13/9) { 
	.home_border {
		max-width: 110px;
	}
		    
	#video-bg-elem {
		max-height: 100vh;
		max-width: 350vw;
	}
}

/*landscape*/
@media screen and (max-width: 700px) and (orientation: landscape) { 
 	.home_banner {
    	top: 10vh;
 	}
}

/* -- Tablets (Android) ------------------------- */

/*Portrait*/
@media (min-width: 768px) and (max-width: 1024px) {	

}

/*Landscape*/
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	
}

/* -- End Mobile Styles -------------------------------------------------------------- */