/*Stacked*/
.hero-block {
	margin-bottom: 0;
}

.hero-block.stacked img {
	max-height: 650px;
	object-fit: cover;
	width: 100%;
}

/*Resources*/
.hero-block.resources .hero-content:after {
	content: "";
	margin-top: 3em;
	width: 150vw;
	left: -50vw;
	height: 3px;
	background: var(--color-white);
	display: block;
	position: absolute;
	bottom: -1em;
}

.hero-block.resources .floating-image {
	bottom: -50%;
}

.hero-block.resources .menu {
	padding: unset;
	margin: unset;
	list-style: none;
	text-align: center;
}

.hero-block.resources .menu li {
	text-transform: uppercase;
	font-family: "Archivo";
	font-weight: 600;
	display: inline-block;
	padding: 0 4.3em;
}

.hero-block.resources .menu li:after {
	content: "";
	width: 100%;
	display: block;
	background: var(--color-orange);
	height: 2px;
	margin-top: 5px;
	transition: transform 0.25s ease-out;
	transform-origin: bottom right;
}

.hero-block.resources .menu li:hover:after {
	transform: scaleX(0);
}

/* Layered Layout */
.hero-block.layered {
	height: 100vh;
	padding-top: 0;
}

.hero-block.layered .hero-overlay {
	position: relative;
}

.hero-block.layered .hero-overlay video,
.hero-block.layered .hero-overlay img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	z-index: 1;
}

.hero-block.layered .hero-overlay .container-fluid {
	position: relative;
	z-index: 2;
	display: flex;
}

.hero-block.layered .hero-content {
	color: var(--color-white);
	padding: 2rem;
}

/* Gradient */
.hero-gradient {
	position: relative;
}

.hero-gradient::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		0deg,
		rgba(66, 66, 66, 0.2) 0%,
		rgba(66, 66, 66, 0.2) 100%
	);
	z-index: 1;
}

.hero-gradient img,
.hero-gradient video {
	position: relative;
	z-index: 0;
}

/*Floating Image*/
.floating-image {
	position: absolute;
	bottom: -10%;
	right: 0;
}

	.hero-block.layered .hero-overlay .container-fluid {
		align-items: center;
	}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
/*XS Devices 0 - 767px*/
@media only screen and (max-width: 47.9375em) {
	.hero-block.layered {
		height: 85vh;
	}

	.hero-block.layered .hero-content {
		padding-left: 1em;
		padding-right: 1em;
	}

	.hero-block.resources .hero-menu {
		margin-top: 2em;
	}

	.hero-block.resources .menu li {
		padding: 0 0.5em;
	}
}

/*Devices 768px in width*/
@media only screen and (min-width: 48em) {
	.hero-block.resources .hero-menu {
		margin-top: 2em;
	}

	.hero-block.resources .menu li {
		padding: 0 1em;
	}
}

/*Devices 1024px in width*/
@media only screen and (min-width: 64em) {
	.hero-block.layered {
		height: calc(100vh + 140px);
	}

	.hero-block.under-nav {
		margin-top: -178px;
	}

	.hero-block.resources .hero-menu {
		margin-top: 6em;
	}
}

/*Devices 1200px+ in width*/
@media only screen and (min-width: 75em) {
}
