.cta-banner {
	display: grid;
	grid-template-columns: 280px auto 300px;
	align-items: center;
	column-gap: 80px;
}

.cta-banner__text {
	max-width: 494px;
}

@media (max-width: 1210px) {
	.cta-banner {
		grid-template-columns: 280px auto 250px;
		column-gap: 40px;
	}
}

{# Form styles #}
.cta-banner__form form {
	display: flex;
	align-items: flex-end;
	column-gap: 14px;
}
.cta-banner__form form .hs-form-field {
	margin: 0;
}
.cta-banner__form form .hs-form-field label {
	display: none;
}
.cta-banner__form form .hs-form-field .input input {
	padding: 0 0 17px 0;
	color: #FFFFFF;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%;
	border: none;
	border-bottom: 2px solid #FFFFFF;
	background: transparent;
	width: 245px;
}
.cta-banner__form form .hs-form-field .input input::placeholder {
	color: #FFFFFF;
}
.cta-banner__form form .actions {
	margin: 0;
}
@media (max-width: 768PX) {
	.cta-banner__form form {
		flex-direction: column;
		align-items: flex-start;
		row-gap: 33px;
		margin-top: 43px;
	}
	.cta-banner__form form .hs-form-field,
	.cta-banner__form form .hs-form-field .input input {
		width: 100%;
	}
}