.call-to-action {
	--title-color: var(--gray-100);
	--subtitle-color: var(--gray-100);
	--icon-color: var(--gray-100);
	--title-font-family: var(--font-display);
	--subtitle-font-family: var(--font-body);
	position: relative;
	min-height: 112px;
}

.call-to-action .inner {
	display: flex;
	justify-content: center;
	gap: var(--space-5);
	height: 100%;
	padding: var(--space-5) var(--space-5);
	width: 100%;
	width: 100%;
	height: 100%;
	align-items: center;
	min-height: 112px;
}

.call-to-action .icon {
	color: var(--icon-color);
	font-size: var(--text-2xl);
}

.call-to-action .content {
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
	z-index: 1;
	width: 100%;
	height: 100%;
}

.call-to-action .title {
	font-family: var(--font-display-bold);
	color: var(--title-color);
	font-size: var(--text-base);
	line-height: 1.16;
	text-align: center;
	text-transform: uppercase;
}

.cta1 .call-to-action:after,
.cta2 .call-to-action:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	min-height: 112px;
	background-size: cover;
	pointer-events: none;
	background-position: center;
	border: 2px solid var(--almost-white);
	border-right: 1px solid var(--almost-white);
}

.cta1 .call-to-action:after {
	background-image: url(https://assets.simpleviewinc.com/simpleview/image/upload/q_60/v1/clients/fargo-moorhead/footer_cta_one_mobile_8812f631-5934-45d9-944c-16295d5bbc78.png);
}

.cta2 .call-to-action:after {
	background-image: url(https://assets.simpleviewinc.com/simpleview/image/upload/q_60/v1/clients/fargo-moorhead/footer_cta_two_mobile_9d9bffa8-4935-4b89-b03f-d6f9c5464d08.png);
	border-left: 1px solid var(--almost-white);
	border-right: 2px solid var(--almost-white);
}

@media (hover: hover) {
	.call-to-action a:hover {
		text-decoration: none;
	};
}

@media screen and (min-width: 40em) {
	.cta1 .call-to-action:after {
		background-image: url(https://assets.simpleviewinc.com/simpleview/image/upload/q_60/v1/clients/fargo-moorhead/footer_cta_one_desktop_6a747c31-29e2-4576-afc9-7bdd48605e77.png);
	}
	
	.cta2 .call-to-action:after {
		background-image: url(https://assets.simpleviewinc.com/simpleview/image/upload/q_60/v1/clients/fargo-moorhead/footer_cta_two_desktop_6b736c7a-5d54-4c85-94cb-210803ee33c2.png);
	}
}

@media screen and (min-width: 64em) {
	.call-to-action,
	.call-to-action .inner {
		min-height: 125px;
	}
	
	.call-to-action .inner {
		padding: var(--space-5) 25px;
	}

	.call-to-action .title {
		font-size: 1.625rem;
		letter-spacing: .1em;
	}

	.cta1 .call-to-action:after,
	.cta2 .call-to-action:after {
		min-height: 125px;
		border: 2px solid var(--almost-white);
	}

	.call-to-action .content {
		max-width: 36ch;
	}

	.cta1 .call-to-action::before,
	.cta2 .call-to-action::before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		min-height: 125px;
		width: 100%;
		height: 100%;
		background-position: center;
		border: 2px solid var(--almost-white);
		background: linear-gradient(0deg, rgba(193, 27, 80, 0.45) 0%, rgba(193, 27, 80, 0.45) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.35) 100%);
		z-index: 1;
		opacity: 0;
		transition: opacity .4s ease;
		pointer-events: none;
	}

	.cta2 .call-to-action::before {
		background: linear-gradient(0deg, rgba(244, 134, 27, 0.45) 0%, rgba(244, 134, 27, 0.45) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.35) 100%);
	}

	@media (hover: hover) {
		.call-to-action:hover:before{
			opacity: 1;
		}

		.call-to-action a:hover {
			text-decoration: none;
		}
	}
}
