.services-page {
	margin-left: 10px;
	flex: 1;
}

.row {
	display: flex;
	list-style: none;
}

.row > li {
	display: flex;
	flex-direction: column;
	border: solid 3px;
	width: 300px;
	height: 300px;
	background-color: #77c9d3;
	transition: transform 0.5s, font 0.5s;
}

.row > li:hover {
	transform: scale(1.1);
	background-color: #2fb1e0;
	z-index: 2;
}

li > h3, p, .compact-list {
	color: #000;
}

.compact-list {
	margin: 0;
	line-height: 1em;
}

.compact-list > li {
	padding: 0;
}

.description {
	height: 85%;
}

.price {
	text-align: center;
	font-size: 1.5em;
	font-weight: bold;
}

.ribbon {
	text-align: center;
	font-size: 1.5em;
	padding: 10px;
	padding-bottom: 40px;
	margin: 0;
	background-color: #34b1eb;
}

.ribbon-text {
	color: #fff;
	list-style: none;
}

@media only screen and (max-width: 1000px) {
	.row {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 0;
	}

	html {
		text-align: center;
	}

	.row > li {
		width: 80%;
	}

	.row > li:hover {
		width: 90%;
		height: 350px;
	}

	.compact-list {
		text-align: left;
	}
}