#header {
	position: relative;
	margin: 0 !important;
	
	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-size: cover;
	background-position: bottom center;
}
#header > .background > video {
	object-fit: cover;
    object-position: bottom center;
}

/*--------------------------------------------------------------------------------*/

#header > .content-wrapper {
	position: relative;
	display: flex; min-height: 900px;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	
	isolation: isolate;
}
@media (min-width: 900px)	 { #header > .content-wrapper { padding-top: 150px; } }
@media (max-width: 899.99px) { #header > .content-wrapper { padding-top: 125px; } }

/*--------------------------------------------------------------------------------*/


#header > .content-wrapper > .title,
#header > .content-wrapper > .hook {
	text-align: center;
	font-family: 'Stretch Pro';
}
#header > .content-wrapper > .title {
	margin-bottom: 30px;
	
	font-size: 24px;
}
#header > .content-wrapper > .hook {
	max-width: 550px;
	margin-bottom: 80px;
	
	text-transform: uppercase;
}
@media (min-width: 900px) {
	#header > .content-wrapper > .hook { font-size: 40px; }
	#header > .content-wrapper > .description {
		align-self: flex-end;
		max-width: 350px;
		margin-right: 5%;

		line-height: 24px;
		font-size: 14px;
		font-weight: 700;
	}
}
@media (max-width: 899.99px) {
	#header > .content-wrapper > .hook { font-size: 30px; }
	#header > .content-wrapper > .description { display: none; }
}