body.home {
	background-color: var(--background-color);
	background-image: linear-gradient(var(--background-color), #fff);
}
#intro {
	position: relative;
	height: 500px;
	overflow: hidden;
}
#intro-image {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	height: 100%;
	overflow: hidden;
}
#intro-image img {
	flex: 1 1 auto;
	display: block;
	max-width: -moz-max-content;
	max-width: max-content;
	min-width: 100%;
}
#intro-message {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: absolute;
	top: 50px;
	width: 100%;
}
#intro-message > h1 {
	padding: 0;
	margin: 0;
	font-weight: 900;
	font-size: 2rem;
	text-transform: uppercase;
	text-align: center;
	text-shadow: 4px 4px 1px #3e3e3e;
	color: #fff;
}
#content {
	display: flex;
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
}
#teaser {
	position: relative;
	display: flex;
	justify-self: center;
	align-self: center;
	width: 650px;
	margin-top: 50px;
	border-radius: 14px;
	background-color: var(--light-background-color);
}
#teaser-text {
	padding: 15px 20px 15px 100px;
	line-height: 1.55rem;
}
#teaser-image {
	position: absolute;
	width: 25%;
	margin-left: -9%;
	margin-top: -11%;
}
#aspects {
	display: flex;
	flex-direction: row;
	margin-top: 100px;
}
.aspect {
	flex-grow: 1;
	flex-basis: 33%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 50px 90px;
}
.aspect > p {
	text-align: center;
	flex-grow: 1;
}
#services {
	margin-top: 50px;
}
#services > h1 {
	border-radius: 14px 14px 0 0;
	padding: 15px 20px;
	margin: 0;
	font-size: 1.6rem;
	background-color: var(--dark-background-color);
	color: #fff;
}
#services-wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	padding: 12.5px;
	margin-top: 0;
	margin-bottom: 100px;
	border-radius: 0 0 14px 14px;
	background-color: var(--light-background-color);
}
.service {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex-grow: 1;
	flex-basis: 50%;
	padding: 25px;
}
.service > p {
	text-align: center;
}
#call-to-action {
	margin: 0 auto;
	max-width: 90%;
	width: 500px;
	margin-bottom: 75px;
}
#call-to-action > h1 {
	font-size: 1.5rem;
	text-transform: uppercase;
	text-align: center;
}
#call-to-action > div {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
#outro {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 50px;
}
#outro > h1 {
	padding: 25px;
	border-radius: 15px;
	font-size: 1.6rem;
	font-weight: 900;
	background-color: var(--light-background-color);
	text-align: center;
}
.title {
	color: var(--secondary-color);
	font-size: 2rem;
	font-weight: 900;
	margin-top: 18px;
	margin-bottom: 10px;
}
.icon {
	max-width: 100px;
	height: 80px;
}
p {
	margin-bottom: 0;
}
p:last-child {
	margin-bottom: revert;
}
p + p.adjacent {
	margin-top: 0;
}
@media only screen and (max-width: 600px) {
	#teaser-image {
		width: 10%;
		margin-left: -3%;
		margin-top: -8%;
	}
	#teaser-text {
		padding: 15px 20px;
	}
}
@media only screen and (max-width: 480px) {
	#teaser-image {
		width: 20%;
		margin-left: -7%;
		margin-top: -18%;
	}
}
@media only screen and (max-width: 875px) {
	#teaser {
		max-width: 80%;
	}
	#services > h1 {
		font-size: 1.4rem;
	}
}
@media only screen and (max-width: 600px) {
	#teaser {
		max-width: 90%;
	}
}
@media only screen and (max-width: 650px) {
	#intro {
		height: 200px;
	}
}
@media only screen and (max-width: 1400px) {
	#intro {
		height: 350px;
	}
}
@media only screen and (max-width: 1024px) {
	#intro {
		height: 300px;
	}
}
@media only screen and (max-width: 840px) {
	#intro {
		height: 260px;
	}
}
@media only screen and (max-width: 1185px) {
	.aspect {
		padding: 50px 60px;
	}
}
@media only screen and (max-width: 780px) {
	#aspects {
		flex-direction: column;
	}
	.aspect {
		padding: 20px 50px;
	}
	.aspect > p {
		margin-top: 0;
	}
}
@media only screen and (max-width: 780px) {
	#services-wrapper {
		flex-direction: column;
	}
	.service > p:not(.adjacent) {
		margin-top: 0;
	}
}
