.business-outcome-section {
	text-align: center;
}
.business-outcome-section h2 {
	font-weight: 700;
	margin-bottom: 20px;
}
.business-outcome-section p {
	margin: 0 auto 70px;
	font-size: 16px;
	line-height: 24px;
	color: #555;
	max-width: 850px;
}
.outcome-cards {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}
.outcome-cards .outcome-card {
	background: #fff;
	padding: 25px;
	width: 24%;
	border-radius: 6px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
	text-align: left;
	border-top: 7px solid transparent;
	transition: 0.3s;
		border-left: 1px solid #dfdfdf;
	border-right: 1px solid #dfdfdf;
	border-bottom: 1px solid #dfdfdf;
}
.outcome-cards .outcome-card h4 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
}
.outcome-cards .outcome-card p {
	font-size: 16px;
line-height: 24px;
	color: #3a3e50;
	margin-bottom: 10px;
}
.outcome-cards .outcome-card:nth-child(4n+1) {
	border-top-color: #a4e1be;
}
.outcome-cards .outcome-card:nth-child(4n+2) {
	border-top-color: #ffdfa6;
}
.outcome-cards .outcome-card:nth-child(4n+3) {
	border-top-color: #99caff;
}
.outcome-cards .outcome-card:nth-child(4n+4) {
	border-top-color: #bde4dd;
}
/* Hover */
.outcome-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width:1200px) {
	.outcome-cards .outcome-card {
		width: 48%;
	}
	.business-outcome-section p {
		margin: 0 auto 40px;
	}
}

@media screen and (max-width:480px) {
	.outcome-cards .outcome-card {
		width: 100%;
	}
}