.cta{
	position: relative;
	padding: 80px 0;
	background: var(--wp--preset--color--blue-primary);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	color: #fff;
}
.cta .bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.cta .container{
	position: relative;
	z-index: 1;
}
.cta .h2{
	margin-bottom: 32px;
	padding-bottom: 29px;
}
.cta .h2:after{
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 64px;
	height: 5px;
	background: #fff;
}
.cta .text{
	text-wrap: balance;
}
.cta .buttons{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 48px;
}
@media( max-width: 1439px ){
	.cta .bg{
		object-fit: cover;
	}
}
@media( max-width: 991px ){
	.cta .bg{
		display: none;
	}
}
@media( max-width: 767px ){
	.cta{
		padding: 64px 0;
	}
}
@media( max-width: 575px ){
	.cta .btn{
		width: 100%;
	}
}