/** BLOCK: CONTACTFORM - CSS **/
.contactform {
	width: 60%;
	margin: auto;
}

.form {
	margin-top: 1.5rem;
}

.gform_title {
	display: none;
}

.gfield {
	list-style: none;
	display: flex !important;
	justify-content: space-between;
	align-items: center;
	margin-top: 0.25rem;
}

.gfield:last-of-type {
	align-items: flex-start;
}

.gfield:last-of-type .gfield_label {
	margin-top: 1rem;
}

.gfield_label {
	font-family: var(--font-medium);
}

.ginput_container {
	width: 31.25rem;
	min-width: 31.25rem;
	max-width: 31.25rem;
}

.ginput_container input {
	width: 100%;
	min-height: 50px;
	border: 1px solid #e2e2e2;
	padding: 1rem;
	border-radius: 4px;
}

.hidden_sub_label {
	display: none;
}

.textarea {
	font-family: var(--font-regular);;
	width: 100%;
	border: 1px solid #e2e2e2;
	padding: 1rem;
	max-width: 31.25rem;
	border-radius: 4px;
}

/* FORM FOOTER */
.gform_footer {
	display: flex;
	justify-content: flex-end;
	margin-top: 0.75rem;
}

.gform_footer .button {
	background: var(--primary-color);
	border: 1px solid var(--primary-color);
	color: #ffffff;
	height: 48px;
	padding: 0 1.5rem;
	font-family: var(--font-medium);
	border-radius: 0.25rem;
	cursor: pointer;
}

.gform_footer .button:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

@media only screen and (max-width: 990px) {
	.contactform {
		width: 100%;
	}

	.gfield {
		display: block !important;
		margin-top: 0;
		margin-bottom: 1rem;
	}

	.ginput_container {
		width: 100%;
		max-width: 100%;
		min-width: 100%;
	}

	.gfield_label {
		margin-bottom: 0.5rem;
	}

	.textarea {
		max-width: 100%;
	}
}
