.content-cards-plus {
	overflow: hidden;
}

.content-cards-plus + section {
	margin-top: 0;
}

.content-cards-plus .description {
	padding: 88px 0 20px;
	/*padding-bottom: 20px;*/
	text-align: center;
}

.content-cards-plus .eyebrow {
	margin-bottom: 17px;
}

.content-cards-plus .description p {
	margin-top: 11px;
	font-size: 18px;
}

.content-cards-plus__heading {
	margin-bottom: 1rem;
	font-size: clamp(60px, calc(60px + 18 * ((100vw - 390px) / 1050)), 78px);
	line-height: 0.9;
}

.content-cards-plus .card {
	display: flex;
	margin-bottom: 25px;
	padding: 30px 40px;
	background: #fff;
	box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.15);
	min-height: 240px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transform: translateY(-160px);
}

.content-cards-plus .card:last-child {
	margin-bottom: 0;
}

.content-cards-plus .card-heading {
	margin-bottom: 15px;
	font: 500 12px/1.2 var(--highlight-font-family);
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0;
}

.content-cards-plus__heading {
    font-weight: 600;
}

.content-cards-plus .card-body {
	font-size: 20px;
	line-height: 1.3;
}

.content-cards-plus .card-body h3 {
	font: 600 clamp(40px, calc(40px + 38 * ((100vw - 390px) / 1050)), 78px) / 1 var(--secondary-font-family);
	color: var(--color-theme-blue-bright);
}

.content-cards-plus .card-body ul {
	margin: 0;
	padding: 0 0 0 20px;
	font-size: 17px;
}

.content-cards-plus .eyebrow {
    font: 500 14px / 1.52 var(--highlight-font-family);
    text-transform: uppercase;
    letter-spacing: 0.28px;
}

.decor-text span {
    color: var(--color-theme-blue-bright);
}

.single-programs .content-cards-plus .card-heading {
	margin-bottom: 16px;
	font-size: 42px;
	font-family: var(--secondary-font-family);
	line-height: 1;
	color: var(--color-theme-blue-bright);
	text-align: left;
}

@media only screen and (max-width: 768px) {
	.content-cards-plus .container {
		padding: 0 40px;
	}

	.content-cards-plus .card-group {
		padding: 40px;
		background: var(--content-cards-plus-bg) no-repeat center / cover;
	}

	.content-cards-plus .card {
		transform: none;
	}

	.content-cards-plus .description {
		padding: 0;
	}
}

@media only screen and (min-width: 769px) {
	.content-cards-plus {
		position: relative;
	}

	.content-cards-plus::before {
		position: absolute;
		content: '';
		top: 0;
		left: 50%;
		width: 50%;
		height: 100%;
		background: var(--content-cards-plus-bg) no-repeat center / cover,
		lightgray 65.857px -187.91px / 114.738% 114.95% no-repeat;
	}

	.content-cards-plus .description {
		padding-top: 174px;
		padding-right: 100px;
	}

	.content-cards-plus .container {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.content-cards-plus .eyebrow {
		margin-bottom: 19px;
	}

	.content-cards-plus__heading {
		margin-bottom: 2.2rem;
	}

	.content-cards-plus .description {
		text-align: left;
	}

	.content-cards-plus .description p {
		max-width: 380px;
	}

	.content-cards-plus .card-group {
		display: grid;
		padding: 120px 0;
		width: calc(100% + 70px);
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-gap: 20px;
		transform: translateX(-70px);
	}

	.content-cards-plus .card {
		margin-bottom: 0;
		padding: 20px;
		transform: none;
	}
}

@media only screen and (min-width: 1024px) {
	.content-cards-plus .card {
		padding: 30px 40px;
	}
}