/*--------------------------------------------------------------
# Enquiry Page : This is a standalone page
# rather than a Section component
--------------------------------------------------------------*/

.enquiry {
	background-color: var(--brand-primary-light) !important;
	width: 100%;
	min-height: 50vh;
	position: relative;
	padding: 80px 0 60px 0;
	display: flex;
	align-items: center;
}

.enquiry .content {
	padding: 24px;
}

/*--------------------------------------------------------------
# Form Section
--------------------------------------------------------------*/

/* CTAs */
.btn-submit {
	background: var(--brand-primary-accent);
	color: var(--brand-primary-dark);
	font-family: var(--heading-font);
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 40px;
	border-radius: 4px;
	transition: 0.5s;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}
.btn-submit:hover, .btn-yellow:focus {
	background: color-mix(in srgb, var(--brand-primary-accent), transparent 50%);
}