@charset "utf-8";
/* CSS Document */
#hero {
	height: 100vh;
	width: 100%;
	background: #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
}

/*the video overlay*/
#hero::after{
	width: 100%;
	height: 100%;
	content: '';
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.5);
}
#hero video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	object-fit: cover;
	font-family: 'object-fit: cover';
}
#hero .caption{
	position: relative;
	z-index: 20;
	text-align: center;
	color: #FFF;
}
#hero .caption h1{
	text-transform: uppercase;
	font-size: 2em;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	margin-bottom: 0.5rem;	
}
#hero .caption h2{
	font-weight: 400;
	font-size: 1.5em;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	margin: 0;	
}
@media screen and (min-width: 768px)
{
	#hero .caption h1{
		font-size: 2.5rem;
}
	#hero .caption h2{
		font-size: 1.75rem;
}
	#logo {
		width: 450px;
}
@media screen and (min-width: 992px)
{
	#hero .caption h1{
		font-size: 3rem;
}
	#hero .caption h2{
		font-size: 2rem;
}
@media screen and (min-width: 1200px)
{
	#hero .caption h1{
		font-size: 4rem;
}
	#hero .caption h2{
		font-size: 2.5rem;
}
}
