.page-header {
	height: 50vh;
	position: relative;
	padding: 0;
	z-index: 1;
}
.page-header .page-cover {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 2;
	object-fit: cover;
}
.page-header h1 {
	z-index: 3;
	position: absolute;
	left: 1rem;
	top: 25%;
	height: Calc(50% - 1.5rem);
	width: 50%;
	text-align: left;
	font-weight: bold;
	font-size: 36pt;
	color: #fff;
	background: transparent;
	padding: 2rem;
	border-left: 1rem solid darkred;
}
.page-content {
	max-width: 1100px;
	margin: -4rem auto 0px auto;
	z-index: 99 !important;
	position: relative;
	background: #fff;
	padding: 0.5rem;
}
/* Services */
.service-box {
	overflow: hidden;
	position: relative;
	/* height: 480px;*/
	z-index: 1;
	min-height: 50vh;
}

.service-cover {
	position: absolute;
	background-size: cover;
	background-position: center;
	transition: all 0.5s ease-in-out;
	width: 100%;
	height: 480px;
	z-index: 2;
}

.service-box:hover .service-cover {
	transform: scale3d(1.2, 1.2, 1);
}

.service-content {
	z-index: 3;
	position: absolute;
	bottom: 1rem;
	width: Calc(50% - 1rem);
	background: url("/assets/images/overlay_dark.png");
	padding: 2rem;
	text-shadow: 0px 1px 3px #3339;
	height: 100%;
}
.service-content-left {
	right: auto;
	left: 1rem;
	text-align: left;
}
.service-content-right {
	left: auto;
	right: 1rem;
	text-align: right;
}
.service-link {
	margin-top: 1rem;
	color: #fff;
	font-weight: bold;
	border: 1px solid #fff6;
	padding: 0.5rem;
	border-radius: 0.5rem;
	font-size: 1rem;
	background: #900;
	transition: all 0.5s ease-in-out;
}
.service-link:hover {
	background: #e00;
}
