.cta-banner {
	display: flex;
	align-items: center;
	background: #111111;
	min-height: 328px;
	border-radius: 24px;
	justify-content: space-between;
	flex-direction: column-reverse;
}
.cta-content {
	padding: 40px 20px;
}
.title-cta {
	color: var(--color2);
	font-size: 24px;
	line-height: 48px;
	margin-bottom: 16px;
	text-align: center;
}

@media screen and (min-width: 992px){
	.cta-content .btns-wrap {
		justify-content: center;
	}
}
@media screen and (min-width: 1200px){
	.cta-content {
		padding: 40px 60px;
		flex: 0 0 60%;
		max-width: 60%;
	}
	.cta-banner {
		flex-direction: row;
	}
	.cta-img {
		margin-top: -60px;
	}
	.cta-content .btns-wrap {
		justify-content: start;
	}
	.title-cta {
		font-size: 28px;
		margin-bottom: 16px;
		text-align: right;
	}
}

