.emb-block-enquiry {
	position: relative;
	width: 100%;
	height: auto;
	margin-top: 12rem;
}

.emb-block-enquiry__background-image,
.emb-block-enquiry__pattern,
.emb-block-enquiry__gradient {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%);
	height: 100%;
	width: 100vw;
}

.emb-block-enquiry__gradient {
	background: rgb(0,0,128);
	background: linear-gradient(90deg, rgba(0,0,128,1) 0%, rgba(0,94,165,1) 70%);
	z-index: 1;
}

.emb-block-enquiry__pattern {
	background: url('../../images/enquiry-pattern.png') top center no-repeat;
	background-size: auto 100%;
	z-index: 3;
}

.emb-block-enquiry__background-image {
	z-index: 2;
	mix-blend-mode: overlay;
	opacity: .8;
}

.emb-block-enquiry__background-image img {
	height: 100%;
	width: 100%;
	object-fit: contain;
	object-position: center top;
	display: block;
}

.emb-block-enquiry__form {
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	z-index: 4;
	min-height: 10rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2rem 1.5rem;
	box-shadow: 0px 0px 25px 10px rgba(0,0,0,0.20);
	gap: .5rem;
	margin: 0 auto -4rem;
	background: var(--colors-light-grey);
	border-radius: 30px;
	transform: translate3d(0,-8rem,0);
	max-width: 970px;
}

.emb-block-enquiry__form > h3,
.emb-block-enquiry__form > p
{
	color: var(--colors--blue);
	max-width: 550px;
}

.emb-block-enquiry__form > p a {
	font-weight: bold;
	color: var(--colors--blue);
	text-decoration: none;
}

.emb-block-enquiry__form .form-field {
	width: 100%;
}

.emb-block-enquiry__form .wpcf7 .form-field p a {
	color: var(--colors--dark-grey);
	font-weight: bold;
	text-decoration: none;
}

.emb-block-enquiry__form .emb-form {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .75rem;
}

.emb-block-enquiry__form .emb-form .wpcf7-not-valid-tip {
	font-size: 80%;
	margin: .25rem 0 0;
	text-align: right;
}

.emb-block-enquiry__form .wpcf7 form.invalid .wpcf7-response-output,
.emb-block-enquiry__form .wpcf7 form.unaccepted .wpcf7-response-output,
.emb-block-enquiry__form .wpcf7 form.payment-required .wpcf7-response-output {
	border: none;
	margin-top: 1rem;
	padding: 0;
	text-align: center;
}

.wpcf7 .wpcf7-list-item {
	font-weight: bold;
	margin: 1rem 0 0;
	padding-left: 0;
}

.wpcf7-list-item input[type="checkbox"] {
	margin-left: 0;
	padding-left: 0;
}

.emb-block-enquiry__form .wpcf7 form.invalid .wpcf7-response-output {
	color: #dc3232;
	font-size: 80%;
}

.emb-block-enquiry__form .wpcf7-spinner {
	display: none !important;
	visibility: hidden !important;
}

.emb-block-enquiry__form .form-submit {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	margin-top: 1rem;
}

.emb-block-enquiry__form .form-consent {
	margin-top: 1rem;
}

@media all and (min-width: 1280px) {

	.emb-block-enquiry {
		margin-top: 16rem;
	}

	.emb-block-enquiry__form {
		transform: translate3d(0,-12rem,0);
		padding: 4rem;
	}

	.emb-block-enquiry__form .emb-form {
		gap: 1.5rem;
	}

	.emb-block-enquiry__form form {
		margin-top: 2rem;
	}

	.form-field .wpcf7-list-item-label,
	.form-field strong {
		font-size: 1.375rem;
	}

}