.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;
}
.image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.hero .image img {
	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 .title {
	margin-top: 0;
	font-size: 2rem;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 56px;
	max-width: 1000px;
}
.hero .subtitle {
	font-weight: 500;
	font-size: 18px;
	line-height: 115%;
	text-transform: uppercase;
	color: #c0d725;
	margin-bottom: 15px;
	max-width: 500px;
}
.hero .description {
	font-weight: 500;
	font-size: 18px;
	line-height: 107%;
	color: #e6e6e6;
	font-family: var(--font-montserrat);
}
.hero .description ul {
  padding-left: 15px;
  color: var(--color-green);
}
@media screen and (max-width: 767px){
	.hero .title {
		font-size: 1.5rem;
		margin-bottom: 20px;
	}
	.hero .subtitle,
	.hero .description {
		font-size: .875rem;
	}
	.hero .description-info .btn {
	  margin-bottom: .5rem;
	}
	.hero .description-info .btn:last-child {
	  margin-bottom: 0;
	}
}