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

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

.services-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;
}

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

.services h2 {
    margin-bottom: 1rem;
    font-family: var(--serif-font-family);
    letter-spacing: var(--section-heading-letter-spacing);
}

.services p {
    font-size: var(--section-text-font-size);
    letter-spacing: var(--section-text-letter-spacing);
}

.services a {
    letter-spacing: var(--button-letter-spacing);
}