.hero-wrapper {
	position: relative;
}
.hero-image {
	display: block;
	
	width: 100%;
	height: 570px;
	object-fit: cover;
}
.hero-content-container {
	position: absolute;
	top: 50%;
	left: 50%;
	
	width: 90%;
	
	transform: translate(-50%, -50%);
	
	text-align: center;
}
.hero-subtext {
	font-family: "Georgia";
	font-size: 16px;
	color: white !important;
	
    letter-spacing: 2px;
    text-transform: uppercase;
	
    padding-bottom: 4px;
}
.hero-title {
	font-size: 46px;
	font-weight: 500;
	
	color: white !important;
	
	line-height: 1.2;
	
	max-width: 800px;
	margin: 0 auto;
}

@media all and (min-width: 768px) {
	.hero-title {
		font-size: 52px;
	}
}

@media all and (min-width: 981px) {
	.hero-title {
		font-size: 64px;
	}
	.hero-image {
		height: 680px;
	}
}