/* Splash section of the page */
#splash {
	text-align: center;
	color: var(--white);
	background-image: linear-gradient(to right, var(--dark), var(--mid), var(--dark));
	height: 70vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
/* The offering section of the page */
#offered {
	padding: 50px 0 0;
	width: 80%;
	margin: auto;
}
#offered li{
	margin: 10px 0;
}
#offered .point{
	text-align: left;
	margin-bottom: 5px;
}
#offered .text {
	width: 60%;
	text-align: justify;
	display: inline-block;
}
#offered .image {
	width: 35%;
	height: 100%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}
/* The pricing section of the page */
#pricing {
	padding: 50px 0 0;
	width: 80%;
	margin: auto;
	text-align: center;
}
.prices {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	margin-top: 10px;
}
.price {
	border: 2px solid black;
	border-radius: 10px;
	background-color: var(--white);
	flex-basis: 30%;
	padding: 2%;
}