.serviceGridItem {
	margin-bottom: 26px;
}

.serviceCard {
	padding: 24px 26px;
	background: #e8e8ec;
	min-height: 230px;
}

.serviceCardHeader {
	display: flex;
	align-items: center;
	margin-bottom: 28px;
}

.serviceCardImage {
	flex: 0 0 120px;
	text-align: left;
}

.serviceCardImage img {
	max-width: 105px;
	height: auto;
	display: block;
}

.serviceCardTitle {
	flex: 1;
}

.serviceCardTitle h5 {
	margin: 0;
	font-size: 1.4rem;
	line-height: 1.18;
	font-weight: 600 !important;
	color: #1f2430;
}

.serviceCardSummary {
	font-size: 1rem;
	line-height: 1.15;
	color: #1f2430;
	margin-bottom: 20px;
}

.serviceGrid {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}

.serviceGridItem {
	width: 33.3333%;
	padding: 0 15px;
	margin-bottom: 30px;
}

.serviceCard {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.serviceCardSummary {
	margin-bottom: 20px;
}

.serviceCard .btn {
	margin-top: auto;
	align-self: flex-start;
}

/* -- Animation -- */

.serviceCard {
	padding: 24px 26px;
	background: #e8e8ec;
	min-height: 230px;

	transition:
		border-color 0.3s ease,
		box-shadow 0.3s ease,
		transform 0.3s ease;

	border: 1px solid transparent;
}

.serviceCard:hover {
	border: 1px solid #c9cad3;

	box-shadow:
		0 8px 22px rgba(0,0,0,0.12);

	transform: translateY(-2px);
}

/* -- Animation -- */

@media (max-width: 767px) {
	.serviceCard .btn {
		align-self: center;
	}
}

/* 2 columns */
@media (max-width: 1199px) {
	.serviceGridItem {
		width: 50%;
	}
}

/* 1 column */
@media (max-width: 991px) {
	.serviceGridItem {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.serviceCard {
		text-align: center;
		min-height: 0;
	}

	.serviceCardHeader {
		display: block;
		margin-bottom: 20px;
	}

	.serviceCardImage {
		text-align: center;
		margin-bottom: 15px;
	}

	.serviceCardImage img {
		margin: 0 auto;
	}

	.serviceCardTitle h3 {
		font-size: 30px;
	}

	.serviceCardSummary {
		font-size: 1.0rem;
	}
}

/* ------------------------------------------- */