.text-banner-form {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, calc(8.333% + 15px)) minmax(0, 560px) minmax(40px, 1fr) minmax(0, 614px);
	align-items: start;
	min-height: 672px;
	background: #000000;
	overflow: hidden;
}

.text-banner-form__content {
	grid-column: 2;
	grid-row: 1;
	width: 100%;
	max-width: 560px;
	margin-top: 182px;
	transition: opacity .55s ease, transform .55s ease, visibility .55s ease;
}

.text-banner-form__content .page-block__title {
	max-width: 560px;
}

.text-banner-form__desc {
	margin-top: 20px;
	font-weight: 300;
	font-size: 14px;
	line-height: normal;
	color: #e6e6e6;
}

.text-banner-form__img {
	grid-column: 4;
	grid-row: 1;
	justify-self: end;
	width: 100%;
}

.text-banner-form__img img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.text-banner-form__btn {
	margin-top: 30px;
}

.text-banner-form__btn .glass-button,
.text-banner-form__submit.glass-button {
	border: 0;
	color: #e6e6e6;
	font-family: inherit;
	cursor: pointer;
	padding: 0 20px;
	font-size: 14px;
}

.text-banner-form__form-panel {
	grid-column: 2;
	grid-row: 1;
	align-self: center;
	width: 100%;
	max-width: 560px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate3d(72px, 0, 0);
	transition: opacity .55s ease, transform .55s ease, visibility .55s ease;
}

.text-banner-form.is-form-active .text-banner-form__content {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate3d(-72px, 0, 0);
}

.text-banner-form.is-form-active .text-banner-form__form-panel {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate3d(0, 0, 0);
}

.text-banner-form__back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 24px;
	padding: 0;
	border: 0;
	color: #e7e7e7;
	font-family: inherit;
	font-weight: 300;
	font-size: 12px;
	line-height: normal;
	background: transparent;
	cursor: pointer;
}

.text-banner-form__back-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.text-banner-form__form {
	width: 100%;
	max-width: 560px;
}

.text-banner-form__form .page-block__title {
	max-width: 560px;
}

.text-banner-form__form-desc {
	margin-top: 20px;
	font-weight: 300;
	font-size: 12px;
	line-height: normal;
	color: #e6e6e6;
}

.text-banner-form__fields {
	width: 460px;
	max-width: 100%;
	margin-top: 30px;
}

.text-banner-form__field {
	--text-banner-form-field-border: rgba(230, 230, 230, 0.5);

	position: relative;
	display: block;
}

.text-banner-form__field:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: var(--text-banner-form-field-border);
	transform: scaleY(0.3);
	transform-origin: bottom;
	pointer-events: none;
	transition: background .2s ease;
}

.text-banner-form__field+.text-banner-form__field {
	margin-top: 1px;
}

.text-banner-form__field input {
	display: block;
	width: 100%;
	height: 49px;
	border: 0;
	border-radius: 0;
	padding: 15px 0;
	color: #e6e6e6;
	font: inherit;
	font-weight: 300;
	font-size: 14px;
	line-height: normal;
	background: transparent;
	outline: none;
}

.text-banner-form__field input::placeholder {
	color: rgba(230, 230, 230, 0.5);
	text-transform: uppercase;
}

.text-banner-form__field:focus-within,
.text-banner-form__field.is-filled {
	--text-banner-form-field-border: #e7e7e7;
}

.text-banner-form__agree {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	width: 460px;
	max-width: 100%;
	margin-top: 25px;
	cursor: pointer;
}

.text-banner-form__agree-input {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.text-banner-form__agree-box {
	--text-banner-form-agree-border: #e7e7e7;

	position: relative;
	flex: 0 0 14px;
	width: 14px;
	height: 14px;
	margin-top: 1px;
	background: transparent;
}

.text-banner-form__agree-box:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 333.333%;
	height: 333.333%;
	border: 1px solid var(--text-banner-form-agree-border);
	transform: scale(0.3);
	transform-origin: top left;
	pointer-events: none;
}

.text-banner-form__agree-box:after {
	content: "";
	position: absolute;
	left: 5px;
	top: 1px;
	width: 4px;
	height: 7px;
	border-right: 1px solid #f2ceb5;
	border-bottom: 1px solid #f2ceb5;
	opacity: 0;
	transform: rotate(45deg);
	transition: opacity .2s ease;
}

.text-banner-form__agree-input:checked+.text-banner-form__agree-box:after {
	opacity: 1;
}

.text-banner-form__agree-input:focus-visible+.text-banner-form__agree-box {
	--text-banner-form-agree-border: #f2ceb5;
}

.text-banner-form__agree-text {
	max-width: 428px;
	font-weight: 300;
	font-size: 12px;
	line-height: normal;
	color: #e6e6e6;
}

.text-banner-form__agree-text a {
	text-decoration: none;
}

.text-banner-form__agree-text a:hover {
	text-decoration: underline;
}

.text-banner-form__submit {
	margin-top: 40px;
}

@media (prefers-reduced-motion: reduce) {

	.text-banner-form__content,
	.text-banner-form__form-panel {
		transition: none;
	}
}

@media (min-width: 1441px) {
	.text-banner-form {
		grid-template-columns: minmax(0, calc(8.333% + 15px)) minmax(0, 560px) minmax(40px, 1fr) minmax(0, min(50.6vw, 971px));
	}
}

@media (min-width: 1024px) and (max-width: 1439px) {
	.text-banner-form {
		display: grid;
		grid-template-columns: minmax(0, calc(8.333% + 15px)) minmax(0, 39vw) minmax(40px, 1fr) minmax(0, 42.64vw);
		min-height: 672px;
	}

	.text-banner-form__content {
		width: 100%;
		max-width: none;
		margin-top: 182px;
	}

	.text-banner-form__form-panel {
		max-width: none;
	}

	.text-banner-form__content .page-block__title,
	.text-banner-form__form .page-block__title {
		max-width: none;
		font-size: 32px;
		line-height: normal;
	}

	.text-banner-form__img {
		width: 100%;
	}

	.text-banner-form__img img {
		width: 100%;
		height: auto;
		object-fit: contain;
	}
}

@media (max-width: 1023px) {
	.text-banner-form__btn {
		width: 100%;
	}

	.text-banner-form {
		position: relative;
		display: block;
		min-height: 0;
		background: #1e1e1e;
		min-height: unset;
	}

	.text-banner-form::before {
		content: "";
		position: absolute;
		height: 40%;
		width: 100%;
		top: 0;
		inset: 0;
		z-index: 1;
		background: linear-gradient(180deg, rgba(30, 30, 30, 0.9) 0%, rgba(30, 30, 30, 0.64) 45%, rgba(30, 30, 30, 0.08) 100%);
		pointer-events: none;
	}

	.text-banner-form::after {
		content: "";
		position: absolute;
		bottom: 0;
		height: 40%;
		width: 100%;
		z-index: 1;
		background: linear-gradient(0deg, rgba(30, 30, 30, 0.9) 0%, rgba(30, 30, 30, 0.64) 45%, rgba(30, 30, 30, 0.08) 100%);
		pointer-events: none;
	}

	.text-banner-form__content {
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: 2;
		width: 100%;
		max-width: none;
		margin: 0;
		padding: 38px 20px 31px;
	}

	.text-banner-form__form-panel {
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: 3;
		width: 100%;
		max-width: none;
		padding: 38px 20px 31px;
		transform: translate3d(72px, 0, 0);
	}

	.text-banner-form__content.reveal-item,
	.text-banner-form__img.reveal-item {
		opacity: 1;
		filter: none;
		-webkit-filter: none;
		transform: none;
		-webkit-transform: none;
		-moz-transform: none;
		-ms-transform: none;
		-o-transform: none;
}

	.text-banner-form__content .page-block__title,
	.text-banner-form__form .page-block__title {
		width: auto;
		font-size: 24px;
		line-height: normal;
	}

	.text-banner-form__desc {
		margin-top: 22px;
		font-size: 14px;
		line-height: 1.3;
		max-width: 300px;
	}

	.text-banner-form__desc br {
		display: none;
	}

	.text-banner-form__btn {
		margin-top: 27px;
	}

	.text-banner-form__btn .glass-button,
	.text-banner-form__submit.glass-button {
		min-height: 40px;
		padding-right: 20px;
		padding-left: 20px;
	}

	.text-banner-form__btn .glass-button__content,
	.text-banner-form__submit .glass-button__content {
		width: 100%;
		text-align: center;
	}

	.text-banner-form__back {
		margin-bottom: 24px;
	}

	.text-banner-form__form-desc {
		margin-top: 16px;
		line-height: 1.25;
	}

	.text-banner-form__form-desc br {
		display: none;
	}

	.text-banner-form__fields {
		width: 100%;
		margin-top: 26px;
	}

	.text-banner-form__field input {
		height: 40px;
		padding: 0 0 16px;
	}

	.text-banner-form__field+.text-banner-form__field {
		margin-top: 12px;
	}

	.text-banner-form__agree {
		width: 100%;
		margin-top: 20px;
	}

	.text-banner-form__agree-text {
		max-width: none;
		line-height: 1.25;
	}

	.text-banner-form__submit {
		width: 100%;
		margin-top: 32px;
	}

	.text-banner-form__img {
		position: static;
		z-index: 0;
		width: 100%;
		min-height: 0;
		overflow: hidden;
	}

	.text-banner-form__img picture {
		display: block;
		width: 100%;
		height: 100%;
	}

	.text-banner-form__img img {
		width: 100%;
		height: auto;
		object-fit: cover;
	}
}