.hero {
	display: flex;
	min-height: 100vh;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.hero:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #374151;
	opacity: 0.3;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 2;
}
.video {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.hero video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero .inner {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	z-index: 3;
}
.hero .h1 {
	margin-top: 0;
	font-size: 70px;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 56px;
}
.hero .title {
	font-weight: 500;
	font-size: 18px;
	line-height: 115%;
	text-transform: uppercase;
	color: #c0d725;
	margin-bottom: 15px;
	max-width: 250px;
}
.hero .subtitle {
	max-width: 425px;
	font-weight: 500;
	font-size: 18px;
	line-height: 107%;
	color: #e6e6e6;
	font-family: var(--font-montserrat);
}
.hero .scrollTo {
	cursor: pointer;
	position: absolute;
	bottom: 24px;
	right: 0;
	left: 0;
	margin: 0 auto;
	width: 120px;
	height: 120px;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media screen and (max-width: 991px) {
	.hero {
		padding: 1.5rem 0;
	}
}
@media screen and (max-width: 767px) {
	.hero .h1 {
		font-size: 3rem;
	}
}