/* Homepage full-bleed video hero */
.home_video_hero {
	position: relative;
	width: 100%;
	min-height: 72vh;
	max-height: 900px;
	display: flex;
	align-items: center;
	overflow: hidden;
	color: #fff;
	background: #1a2218;
}

/* Old slider used negative margin to overlap .wr_bg; video hero must not */
.home_video_hero + .wr_bg {
	margin-top: 0;
	overflow: visible;
}

.home_video_hero + .wr_bg::after {
	top: 0;
}
.home_video_hero_media {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.home_video_hero_video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.home_video_hero_shade {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(18, 24, 16, 0.78) 0%, rgba(18, 24, 16, 0.45) 48%, rgba(18, 24, 16, 0.28) 100%),
		linear-gradient(180deg, rgba(18, 24, 16, 0.25) 0%, rgba(18, 24, 16, 0.55) 100%);
	pointer-events: none;
}
.home_video_hero_inner {
	position: relative;
	z-index: 2;
	padding-top: 72px;
	padding-bottom: 72px;
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}
.home_video_hero_brand {
	margin: 0 0 14px;
	font-family: "Nunito", "ProximaNova", sans-serif;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #d7b46a;
}
.home_video_hero_title {
	margin: 0 0 16px;
	font-family: "Nunito", "ProximaNova", sans-serif;
	font-size: 48px;
	line-height: 1.18;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.02em;
}
.home_video_hero_title::after {
	content: "";
	display: block;
	width: 64px;
	height: 3px;
	margin-top: 16px;
	border-radius: 3px;
	background: #d7b46a;
}
.home_video_hero_usp {
	margin: 0;
	max-width: 560px;
	font-family: "Nunito", "ProximaNova", sans-serif;
	font-size: 19px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.94);
}
.home_video_hero_cta {
	padding-top: 32px;
}
.home_video_hero_cta .btn {
	display: inline-block;
	text-decoration: none;
}

@media screen and (max-width: 1000px) {
	.home_video_hero {
		min-height: 62vh;
	}
	.home_video_hero_title {
		font-size: 34px;
	}
	.home_video_hero_usp {
		font-size: 16px;
	}
}
@media screen and (max-width: 720px) {
	.home_video_hero {
		min-height: 78vh;
		max-height: none;
		align-items: flex-end;
	}
	.home_video_hero_inner {
		padding-top: 48px;
		padding-bottom: 48px;
	}
	.home_video_hero_title {
		font-size: 28px;
	}
	.home_video_hero_usp {
		font-size: 15px;
	}
	.home_video_hero_shade {
		background:
			linear-gradient(180deg, rgba(18, 24, 16, 0.2) 0%, rgba(18, 24, 16, 0.78) 70%, rgba(18, 24, 16, 0.88) 100%);
	}
}
