.top-image {
/* 	height: 550px; */
	height: 350px;
/* 	display: flex; */
	display: grid;
/* 	justify-content: center; */
	align-items: center;
}

.top-image > * {
	grid-area: 1/1/-1/-1;
}

.top-image .overlay {
	background-color: #000;
	opacity: 0.5;
	width: 100%;
	height: 100%;
}

.top-image .inner-content {
	z-index: 10;
}

.top-image .inner-content .title {
	align-self: center;
	font-size: 6.250em;
	color: #fff;
	color: var(--white, #fff);
	font-weight: bold;
	margin: 0;
	text-align: center;
}

@media (max-width: 950px) {
	.top-image {
		height: 450px;
	}
}

@media (max-width: 550px) {
	.top-image .inner-content .title {
		text-align: center;
	}
}