
/* ====
   HERO
   ==== */	
   
.m__hero {
	position: relative;
	height: 70vh;
	background: var(--color__midnight);
	display: flex;
	color: var(--color__white);
	align-items: center; 
 	text-align: center; }
 	  
.hero_container {
	z-index: 6;
	text-align: center;
	padding: 0 var(--spacing-side);
	box-sizing: border-box;
	max-width: var(--global-max-width);
	margin-left: auto;
	margin-right: auto; } 
	
			
	
.m__hero h1 {
	margin-bottom: .5em; }
	
.m__hero p.sub-heading {
	font-size: 5rem;
	margin-top: .3em;
	line-height: 1.25em;
	font-weight: 300; }	
	

	
/* Gallery */
.m__hero .hero_gallery {
	overflow: hidden;
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%; }

.m__hero .hero_gallery video {
	object-fit: cover;
    width: 100%;
    height: 100%; }


.m__hero .hero_gallery iframe {
	box-sizing: border-box;
    height: 56.25vw;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    width: 177.77777778vh; }
    

@media all and (max-width: 800px) {
	
	.m__hero {
		min-height: 50vh;
		height: auto; }
		
	.m__hero p.sub-heading {
		font-size: 4rem; }	

}	

	
@media all and (max-width: 500px) {
	
	.m__hero p.sub-heading {
		font-size: 3rem; }	
		
}	
