#hero {
	height:100vh;
	width:100%;
	display:flex;
	align-items:center;
	justify-content: center;
	margin:0;
}

#hero::after{
	width:100%;
	height:100%;
	content:'';
	position: absolute;
	top:0;
	left:0;
	background:rgba(0,0,0,0.5);
	z-index: 10;
}

#hero video {
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	z-index:5;
	object-fit:cover;
}

#hero .texture{
	width:100%;
	height:100%;
		position:absolute;
	top:0;
	left:0;
	z-index: 15;
	background:url("../images/carbon-fibre.png");
	
}
#hero .caption {
	position:relative;
	z-index:20;
}
	
#hero .caption h1{
	color:#ffffff;
	text-transform: uppercase;
	font-size:2em;
	font-family: 'Oswald', sans-serif;
	margin-bottom:0.5rem;
}

#hero .caption h2{
	color:#ffffff;
	font-weight:400;
	text-transform: uppercase;
	font-size:1.5rem;
	font-family: 'PT Sans', sans-serif;
	margin:0;
}