#consultation {
	display: flex;
	position: relative;
	overflow: hidden;
	margin-top: 3rem;
	min-height: 850px;
	border-top: 3px solid white;
	border-bottom: 3px solid #535fab;
	max-height: 1000px;
}
#consultation .jagged-shape {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 3;
}
.jagged-shape svg {
	width: 100%;
	height: auto;
}
#consultation .consult-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.consultation-content {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	width: 50%;
	height: 100%;
	background-color: #535fab;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 10vw;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 25% 100%);
}
.consultation-content h2 {
	margin-top: 3rem;
}
.consultation-content p {
	font-size: 18px;
}
.step {
	max-width: 80%;
}
.step:nth-child(1) {
	margin-left: 0;
}
.step:nth-child(2) {
	margin-left: 30px;
}
.step:nth-child(3) {
	margin-left: 60px;
}
.step h3 {
	color: #cfd4f3;
	font-weight: 700;
	font-size: 24px;
}
.step h3 span {
	color: #ccd7ea;
}
.consultation-content * {
	color: #fff;
}
#consultation .btn {
	background: white;
	color: #464750;
	text-shadow: none;
}
@media (max-width: 1440px) {
	.consultation-content p {
		font-size: inherit;
	}
}
@media (max-width: 992px) {
	#consultation {
		min-height: unset;
	}
	#consultation .consult-img-wrap {
		display: none;
	}
	.consultation-content {
		position: relative;
		top: unset;
		right: unset;
		transform: unset;
		clip-path: unset;
		padding: 2rem;
		width: 100%;
	}
	.step {
		max-width: 100%;
		margin-left: 0 !important;
	}
}
