.cards-wrapper {
	margin-bottom: 85px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(273px, 1fr));
	gap: 30px;

	.cards.feature & {
		margin-bottom: 0;
	}

}

.cards-wrapper-clickable {
	margin-bottom: 85px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(273px, 1fr));
	gap: 15px;

	.cards.feature & {
		margin-bottom: 0;
	}

}

.card-service {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	font-size: 16px;
	color: #000;
	height: 100%;
	padding: 30px 18px 30px;
	-webkit-box-shadow: 0 0 14px rgba(0, 0, 0, 0.15);
	box-shadow: 0 0 14px rgba(0, 0, 0, 0.15);
	border-radius: 12px;
}

.card-service-clickable {
	border: 2px solid #efefef;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	font-size: 16px;
	color: #000;
	height: 100%;
	padding: 15px 18px 40px;
	box-shadow: 0 0 14px rgba(0, 0, 0, 0.15);
	border-radius: 12px;
  	transition: 0.1s;
	background-color: #fff;
}

.card-service-clickable:hover {
  	border: 2px solid #A8CCF0;
  	cursor: pointer;
}

.card-service__title {
	color: #000;
	margin-bottom: 2px;
	font-size: 24px;
	font-weight: 700;

}

.cards-subtitle {
	color: #000;
	margin-bottom: 30px;
	display: flex;
	font-size: 25px;
	font-weight: 700;
	line-height: 18px;
	letter-spacing: 0px;
}

.card-service__description {
	color: #000;
	font-size: 16px;
	font-weight: 400;
}

.card-service__icon {
	width: 100%;
	max-width: 125px;
	margin-bottom: 20px;
}

.card-service__icon img {
	display: block;
	width: 100%;
}

.card-service__content {
	-webkit-box-flex: 1;
	-ms-flex: auto;
	flex: auto;
}

.card-service p {
	margin-bottom: 22px;
}
