.cta{
	display: flex;
	align-items: center;
	margin: 65px 0;
	box-shadow: 0px 8px 13.9px 2.1px rgba(0, 0, 0, 0.06);
	background: var(--white);
	border: solid 1px #efefef;
}
.cta .image{
	flex: 1 0 50%;
	align-self: stretch;
	min-height: 434px;
	flex-shrink: 0;
}
.cta .image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.cta .text{
	flex: 1 0 50%;
	padding: 60px;
	font-size: 20px;
}
.cta h3{
	position: relative;
	margin: 0 0 60px;
	font-size: 35px;
	font-weight: bold;
}
.cta h3:before{
	content: '';
	width: 296px;
	max-width: 50%;
	height: 4px;
	background: var(--orange);
	position: absolute;
	bottom: -18px;
	left: 0;
}
.cta .btn{
	margin-top: 52px;
}

@media( max-width: 991px ){
	.cta{
		flex-direction: column;
	}
}
@media( max-width: 767px ){
	.cta{
		margin-left: var(--snap);
		margin-right: var(--snap);
	}
	.cta .image{
		min-height: 0;
	}
	.cta .text{
		padding: 20px;
	}
	.cta .btn{
		margin-top: 20px;
	}
}