.footer-cta {
	position: relative;
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: center;
	background: var(--blue-e6);
	overflow: hidden;
}

.footer-cta::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 0;
	transform: translate(-50%, -50%);
	width: 409px;
	height: 409px;
	background: url(https://assets.simpleviewinc.com/simpleview/image/upload/v1/clients/welkdigital/sunburst_blue_4ebfe718-7fa1-4d71-8e8e-d45722835997.png);
	background-size: cover;
	background-repeat: no-repeat;
	pointer-events: none;
}

.footer-cta a {
	position: relative;
	z-index: 1;
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	text-decoration: none;
	padding: var(--space-12) var(--space-5);
}

.footer-cta a > h4 {
	font-family: var(--riviera);
	font-size: 2rem;
	line-height: var(--leading-none);
	transform: translateY(2px);
	color: var(--blue-3f);
	pointer-events: none;
}

.footer-cta a > h3 {
	font-family: var(--mark-black);
	font-size: 1.75rem;
	line-height: var(--leading-tight);
	color: var(--blue-001);
	text-transform: uppercase;
	pointer-events: none;
}

@media (hover: hover) {
	.footer-cta a:hover {
		text-decoration: none;
		color: var(--blue-001);
	}
}

@media (min-width: 64em) {
	.footer-cta a > h4 {
		font-size: 2.4375rem;
		transform: translateY(6px);
	}

	.footer-cta a > h3 { font-size: 3.0625rem; }
}