.cta-bar {
	position: relative;
	width: 100%;
}

.cta-bar > div[style*="background-image"]{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	z-index: 1;
}

.cta-bar .wrap {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	z-index: 2;
}

.cta-bar .wrap > .col {
	width: 100%;
	padding: 100px 2%;
	text-align: center;
}

.cta-bar .wrap > .col.visual-only {
	height: 25vw;
	min-height: 350px;
}

.col.text-dark {
	color: #2c2c2c;
}

.col.text-light {
	color: #f2f2f2;
}

.cta-bar .wrap > .col h2,
.cta-bar .wrap > .col h3 {
	font-size: 2em;
	line-height: 1.2;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 0.25em;
}

.cta-bar .wrap > .col.no-subtitle h2,
.cta-bar .wrap > .col.no-subtitle h3 {
	padding-bottom: 1em;
}

.cta-bar .wrap > .col h2 + h4,
.cta-bar .wrap > .col h3 + h4 {
	font-size: 1.3em;
	line-height: 1.2;
	max-width: 63%;
	text-align: center;
	padding-bottom: 1.5em;
	margin-bottom: 0em;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

.cta-bar .wrap > .col > p {
	position: relative;
}

.cta-bar .wrap > .col > p:first-of-type {
	padding-top: 1em;
}

.cta-bar .wrap > .col > p:first-of-type::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	width: 100px;
	height: 3px;
	background-color: var(--secondary-accent-color);
	margin-top: -1em;
}

.cta-bar .wrap > .col.text-light > p:first-of-type::before {
	background-color: var(--main-bg-color);
}

.cta-bar .wrap > .col > .button {
	margin-top: 1em;
}

@media only screen and (max-width: 980px) {
	
	.cta-bar .wrap > .col h1 + h3, .cta-bar .wrap > .col h2 + h3 {
		max-width: 80%;
	}

.cta-bar .wrap > .col {
	width: 100%;
	padding: 3% 2%;
}

}