#header {
	position: relative;
	
	background-image: linear-gradient(to bottom, #000, #000);
	
	color: #FFF;
}

/*--------------------------------------------------------------------------------*/

#header > .background {
    position: absolute; top: 0; left: 0;
	height: 100%; width: 100%;
}
#header > .background > .img,
#header > .background > video {
	position: relative;
    display: block; height: 100%; width: 100%;
	
    pointer-events: none;
}
#header > .background > .img {
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
}
#header > .background > video {
	object-fit: cover;
    object-position: center;
}
#header > .background:after {
	content: '';
	position: absolute; top: 0; left: 0;
	display: block; height: 100%; width: 100%;
	
	background-color: #000;
	
	opacity: .3;
}

/*--------------------------------------------------------------------------------*/

#header > .content-wrapper {
	position: relative;
	display: flex; min-height: 800px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	
	text-align: center;
	
	isolation: isolate;
}
#header > .content-wrapper > .title {
	margin-bottom: 30px;
	font-family: 'Stretch Pro';
}
#header > .content-wrapper > .hook {
	max-width: 550px;
	margin-bottom: 30px;
	
	text-transform: uppercase;
	font-family: 'Stretch Pro';
}
#header > .content-wrapper > .description {
	max-width: 350px;
	
	line-height: 24px;
	font-size: 14px;
	font-weight: 700;
}
@media (min-width: 900px) {
	#header > .content-wrapper > .title { font-size: 24px; }
	#header > .content-wrapper > .hook { font-size: 40px; }
}
@media (max-width: 899.99px) {
	#header > .content-wrapper > .title { font-size: 18px; }
	#header > .content-wrapper > .hook { font-size: 24px; }
}