.content-form {
	position: relative;
	background: var(--color-theme-primary);
	color: #fff;
	overflow: hidden;
}

.content-form-left {
	padding: 37px 70px 31px;
	text-align: center;
}

.content-form__eyebrow {
	margin-bottom: 6px;
}

.content-form-heading {
	margin-bottom: 8px;
	color: #fff;
	font-size: clamp(68px, calc(68px + 57 * (100vw - 390px) / 1050), 125px);
	line-height: 0.88;
}

.content-form-right {
	margin: 0 calc(var(--gutter) * -1);
	padding: 40px 23px;
	background: var(--color-theme-blue-bright);
}

.content-form-content {
	font-size: clamp(18px, calc(18px + 5 * (100vw - 390px) / 1050), 23px);
	line-height: 1.24;
}

.content-form-card {
	position: relative;
	padding: 40px 30px;
	background: #fff;
	color: var(--color-theme-primary);

	.form_page {
		& > .form_question {
			width: 100% !important;

			.form_label,
			label {
				margin-bottom: 5px;
			}
		}

		.form_responses {
			input,
			select {
				padding: 5px 20px;
				border-radius: 5px;
				border: 1px solid #e9f3f6;
				background-color: #e9f3f6;
				font-size: var(--font-size-regular);
				line-height: 30px;

				::placeholder {
					color: #777;
				}
			}
			select {
				appearance: none;
				background-position: 97% 50%;
				background-repeat: no-repeat;
				background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath stroke='null' d='m12.614 15.789 5.542-5.84a.981 1.032 0 0 0 0-1.466.981 1.032 0 0 0-1.383 0l-4.905 5.108-4.856-5.108a.981 1.032 0 0 0-1.383 0 .981 1.032 0 0 0-.294.733.981 1.032 0 0 0 .294.732l5.543 5.841a.981 1.032 0 0 0 1.442 0z'/%3E%3C/svg%3E");
			}
		}
	}
}

.butler-plus .form_button_submit {
	background-image: none;
}

.content-form-card::before {
	position: absolute;
	content: '';
	right: 0;
	bottom: 0;
	width: 37px;
	height: 37px;
	background: url('data:image/svg+xml;utf8,<svg width="37" height="37" viewBox="0 0 37 37" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M22.5912 37H14.4088V22.3687H0V14.5355H14.4088V0H22.5912V14.5355H37V22.3687H22.5912V37Z" fill="%2313294B"/></svg>')
		no-repeat center;
	transform: translate(50%, 50%);
}

.content-form-card::after {
	position: absolute;
	content: '';
	right: 0;
	bottom: 0;
	width: 96px;
	height: 37px;
	background: url('../../assets/images/cta-mixed-blue-right.svg') no-repeat
		center;
	transform: translate(100%, 100%);
}

.content-form-card-heading {
	margin-bottom: 8px;
	color: var(--color-theme-primary);
}

@media only screen and (min-width: 768px) {
	.content-form {
		position: relative;
	}

	.content-form::before {
		position: absolute;
		content: '';
		top: 130px;
		left: -17px;
		width: 56px;
		height: 80px;
		background: url('../../assets/images/two-column-text-links-image-decor.svg')
			no-repeat center;
	}

	.content-form::after {
		position: absolute;
		content: '';
		top: 0;
		left: 50%;
		width: 100%;
		height: 100%;
		background:
			url('../../assets/images/content-form-bg.svg') no-repeat top left,
			var(--color-theme-blue-bright);
	}

	.content-form .container {
		position: relative;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		z-index: 1;
	}

	.content-form-right {
		margin: 0;
		padding: 68px 0 63px 40px;
		background-color: transparent;
	}

	.content-form-left {
		text-align: left;
		padding: 125px 40px 150px 0;
	}

	.content-form-eyebrow {
		margin-bottom: 20px;
	}

	.content-form-heading {
		margin-bottom: 35px;
	}

	.content-form-content {
		max-width: 340px;
	}

	.content-form .btn-next-section {
		position: absolute;
		left: 50%;
		bottom: 6rem;
		transform: translateX(-50%);
	}
}

@media only screen and (min-width: 1200px) {
	.content-form-left {
		padding-right: 126px;
	}

	.content-form-right {
		padding-left: 126px;
	}
}
