.hero {
	margin-bottom: 150px;
}

.hero__inner {
	width: 100%;
	position: relative;
	min-height: 1080px;
	overflow: hidden;
}

.hero__image {
	position: absolute;
	width: 100vw;
	height: 100%;
	left: 50%;
	top: 0;
	transform: translateX( -50% );
	z-index: 1;
}

.hero__image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.8;
}

.hero__content {
	position: absolute;
	transform: translate( -50%, -50% );
	left: 50%;
	top: 50%;
	width: 100%;
	padding: 40px;
	z-index: 2;
}

.hero__head {
    max-width: 700px;
    margin: 0 auto;
}

.hero__head h2 {
	text-align: center;
	font-size: 48px;
	font-weight: bold;
}


