

/* Start:/local/components/custom/content.block/templates/contacts/style.css?17796598988478*/

.contacts-page {
	position: relative;
	color: var(--text-main);
	overflow: hidden;
}


.contacts-page__card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	margin: 0 auto;
	overflow: hidden;
	border: 1px solid rgba(22, 22, 22, 0.12);
	border-radius: 20px;
	background: #fff;
}

.contacts-page__left {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	padding: 56px 48px;
	background: var(--black-color);
	color: #f0ede6;
}

.contacts-page__left::before {
	content: "";
	position: absolute;
	top: -60px;
	right: -60px;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: rgba(79, 0, 255, 0.22);
	pointer-events: none;
}

.contacts-page__left::after {
	content: "";
	position: absolute;
	bottom: 40px;
	left: -40px;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	background: rgba(143, 60, 245, 0.14);
	pointer-events: none;
}

.contacts-page__eyebrow,
.contacts-page__title,
.contacts-page__subtitle,
.contacts-page__divider,
.contacts-page__principles,
.contacts-page__direct {
	position: relative;
	z-index: 1;
}

.contacts-page__eyebrow {
	margin-bottom: 24px;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--theme-color-two);
}

.contacts-page__title {
	margin: 0 0 16px;
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.04em;
	color: #fff;
}

.contacts-page__subtitle {
	max-width: 360px;
	margin: 0 0 38px;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.68);
}

.contacts-page__subtitle span{
    color: var(--theme-color-two);
}

.contacts-page__divider {
	width: 36px;
	height: 1px;
	margin-bottom: 32px;
	background: rgba(207, 115, 255, 0.65);
}

.contacts-page__principles {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 44px;
}

.contacts-page__principle {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.contacts-page__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 36px;
	width: 36px;
	height: 36px;
	margin-top: 2px;
	border: 1px solid rgba(207, 115, 255, 0.28);
	border-radius: 10px;
	background: rgba(143, 60, 245, 0.16);
	color: var(--theme-color-two);
}

.contacts-page__icon svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.contacts-page__principle-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.contacts-page__principle-title {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	color: #fff;
}

.contacts-page__principle-text {
	font-size: 13px;
	font-weight: 400;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.56);
}

.contacts-page__direct-label {
	margin-bottom: 12px;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
}

.contacts-page__links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.contacts-page__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 15px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.2;
	text-decoration: none;
}

.contacts-page__link:hover {
	border-color: rgba(207, 115, 255, 0.55);
	background: rgba(143, 60, 245, 0.22);
	color: #fff;
}

.contacts-page__link svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
	stroke: none;
}

.contacts-page__link[href^="mailto"] svg {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.contacts-page__right {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 56px 48px;
	background: #fff;
}

.contacts-page__form-head {
	margin-bottom: 34px;
}

.contacts-page__form-title {
	margin-bottom: 8px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--text-main);
}

.contacts-page__form-text {
	font-size: 14px;
	line-height: 1.5;
	color: var(--text-muted);
}

.contacts-page__form {
	display: block;
}

.contacts-page__field {
	position: relative;
	margin-bottom: 18px;
}

.contacts-page__field label {
	display: block;
	margin-bottom: 7px;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--text-muted);
}

.contacts-page__field label span {
	color: #e05;
}

.contacts-page__field input,
.contacts-page__field textarea {
	display: block;
	width: 100%;
	border: 1px solid var(--gray-200);
	border-radius: 8px;
	outline: none;
	background: var(--gray-50);
	color: var(--text-main);
	font-family: var(--font-family);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
	transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
	-webkit-appearance: none;
}

.contacts-page__field input {
	height: 48px;
	padding: 0 15px;
}

.contacts-page__field textarea {
	min-height: 110px;
	padding: 14px 15px;
	resize: vertical;
}

.contacts-page__field input::placeholder,
.contacts-page__field textarea::placeholder {
	color: #b0b0b0;
}

.contacts-page__field input:hover,
.contacts-page__field textarea:hover {
	border-color: rgba(22, 22, 22, 0.25);
}

.contacts-page__field input:focus,
.contacts-page__field textarea:focus {
	border-color: var(--primary-color);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(79, 0, 255, 0.08);
}

.contacts-page__field.is-error input,
.contacts-page__field.is-error textarea {
	border-color: #e05;
	background: #fff8f8;
}

.contacts-page__error {
	display: none;
	margin-top: 6px;
	font-size: 12px;
	line-height: 1.3;
	color: #e05;
}

.contacts-page__field.is-error .contacts-page__error {
	display: block;
}

.contacts-page__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	margin-top: 6px;
	padding: 14px 22px;
	border: 0;
	border-radius: 10px;
	background: var(--black-color);
	color: #fff;
	font-family: var(--font-family);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
}

.contacts-page__submit:hover {
	background: var(--primary-color);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 12px 30px rgba(79, 0, 255, 0.25);
}

.contacts-page__submit:active {
	transform: translateY(0);
	box-shadow: none;
}

.contacts-page__policy {
	margin: 14px 0 0;
	font-size: 12px;
	line-height: 1.5;
	color: var(--text-muted);
}

.contacts-page__success {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 320px;
	padding: 40px 20px;
}

.contacts-page__success.is-visible {
	display: flex;
}

.contacts-page__success-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 16px;
	border: 1px solid rgba(79, 0, 255, 0.16);
	border-radius: 50%;
	background: rgba(79, 0, 255, 0.08);
	color: var(--primary-color);
}

.contacts-page__success-icon svg {
	width: 26px;
	height: 26px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.contacts-page__success-title {
	margin-bottom: 8px;
	font-size: 20px;
	font-weight: 700;
	color: var(--text-main);
}

.contacts-page__success-text {
	max-width: 240px;
	font-size: 14px;
	line-height: 1.6;
	color: var(--text-muted);
}

@media (max-width: 991px) {
	.contacts-page__card {
		grid-template-columns: 1fr;
	}

	.contacts-page__left,
	.contacts-page__right {
		padding: 42px 32px;
	}

	.contacts-page__subtitle {
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	.contacts-page {
		padding-top: 40px;
		padding-bottom: 50px;
	}

	.contacts-page__card {
		border-radius: 20px;
	}

	.contacts-page__left,
	.contacts-page__right {
		padding: 34px 22px;
	}

	.contacts-page__left::before {
		width: 160px;
		height: 160px;
	}

	.contacts-page__left::after {
		display: none;
	}

	.contacts-page__title {
		font-size: 34px;
	}

	.contacts-page__subtitle {
		margin-bottom: 30px;
		font-size: 14px;
	}

	.contacts-page__principles {
		margin-bottom: 34px;
	}

	.contacts-page__links {
		flex-direction: column;
	}

	.contacts-page__link {
		justify-content: center;
		width: 100%;
		min-height: 44px;
	}

	.contacts-page__form-title {
		font-size: 20px;
	}
}
/* End */
/* /local/components/custom/content.block/templates/contacts/style.css?17796598988478 */
