.section-cta {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	position: relative;
}

.section-cta-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.section-cta-image:after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	background: var(--m-gradient);
}

.section-cta-image video,
.section-cta-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.section-cta-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	width: 100%;
	color: var(--color-white);
	z-index: 1;
	min-height: 446px;
	padding-top: var(--py-section);
	padding-bottom: var(--py-section);
}

.section-cta-content h2 {
	font-size: 30px;
	font-weight: 300;
	letter-spacing: 3px;
	font-family: var(--font-family-alt), sans-serif;
}

.section-cta-content p:last-child {
	margin-bottom: 0;
}

.section-cta-text {
	margin-left: auto;
	margin-right: auto;
	max-width: var(--width-narrow);
}

.section-cta-link {
	font-size: 14px;
	font-weight: 500;
	text-transform: none;
	display: inline-block;
	position: relative;
	text-decoration: none;
}

.section-cta-link:after {
	background: var(--color-white);
	height: 1px;
	content: '';
	width: 100%;
	position: absolute;
	bottom: 4px;
	left: 0;
	transition: all .3s;
}

.section-cta-link:hover:after {
	width: 0;
}

@media screen and (min-width: 768px) {
	.section-cta-image:after {
		background: var(--gradient);
	}
}

@media screen and (min-width: 1025px) {
	.section-cta-link {
		font-size: 22px;
	}

	.section-cta-content {
		min-height: 540px;
	}

	.section-cta-content h2 {
		font-size: 60px;
	}
}
