.hero {
    height: 60vh;
    position: relative;
    top: 0;
    width: 100%;
}

.hero-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-content {
	color: #fff;
	left: 50%;
	width: 100%;
	text-align: center;
	letter-spacing: .313rem;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
	z-index: 3;
}

.hero-content h1 {
	font-size: 3rem;
    letter-spacing: var(--section-heading-letter-spacing);
}

@media (max-width: 576px) {
    .hero-content h1 {
		font-size: 2.5rem;
	}
}
