.home-cta {
	--background: #404c81;
	--secondary-background: #e16287;
	background-color: var(--secondary-background);
	position: relative;
	overflow: hidden;
}
.home-cta:before {
	content: '';
	background: var(--background);
	width: 50%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	right: 0;
}
.home-cta .container {
	position: relative;
}
.home-cta .col {
	background: var(--background);
	padding-top: 1rem;
	display: flex;
	align-items: center;
	gap: 2rem;
	position: relative;
}
.home-cta .col:first-of-type {
	padding-bottom: 1rem;
}
.home-cta__left:before {
	content: '';
	background: var(--secondary-background);
	width: 45%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.home-cta__graphic {
	height: calc(100% + 2rem);
	width: auto;
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
}
.home-cta__icon {
	background: var(--primary);
	border-radius: 50%;
	flex: 0 0 205px;
	height: 205px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.home-cta__icon img {
	display: block;
	width: 70%;
	height: auto;
}
.home-cta__left h2 {
	position: relative;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 700;
	margin: 0;
}

@media only screen and (max-width: 991px) {
	.home-cta {
		padding-bottom: 1rem;
	}
	.home-cta:before {
		height: 182px;
	}
	.home-cta__icon {
		flex: 0 0 150px;
		height: 150px;
	}
	.home-cta .col:not(:first-of-type) {
		background: var(--secondary-background);
	}
	.home-cta .btn {
		max-width: 100%;
	}
}