@charset "UTF-8";
:root {
	--font-family: "Golos Text", sans-serif;
	--content-width: 1400px;
	--container-offset: 15px;
	--container-width: calc(var(--content-width) + (var(--container-offset) * 2));
	--white-color: #fff;
	--black-color: #1e1e1e;
	--light-blue-color: #0bbbef;
	--orange-color: #ffa282;
}
body {
	background: var(--white-color);
}
.custom-checkbox__field:checked + .custom-checkbox__content::after {
	opacity: 1;
}
.custom-checkbox__field:focus + .custom-checkbox__content::before {
	outline: red solid 2px;
	outline-offset: 2px;
}
.custom-checkbox__field:disabled + .custom-checkbox__content {
	opacity: 0.4;
	pointer-events: none;
}
@font-face {
	font-family: "Golos Text";
	src: url(../fonts/Golos-Text_Regular.woff2) format("woff2");
	font-weight: 400;
	font-display: swap;
	font-style: normal;
}
@font-face {
	font-family: "Golos Text";
	src: url(../fonts/Golos-Text_Medium.woff2) format("woff2");
	font-weight: 500;
	font-display: swap;
	font-style: normal;
}
@font-face {
	font-family: "Golos Text";
	src: url(../fonts/Golos-Text_Bold.woff2) format("woff2");
	font-weight: 700;
	font-display: swap;
	font-style: bold;
}
html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
*,
::after,
::before {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}
.page {
	height: 100%;
	font-family: var(--font-family, sans-serif);
	-webkit-text-size-adjust: 100%;
}
.page__body {
	margin: 0;
	min-width: 320px;
	min-height: 100%;
	font-size: 16px;
}
.btn-reset {
	border: none;
	padding: 0;
	background-color: transparent;
	cursor: pointer;
}
.list-reset {
	list-style: none;
	margin: 0;
	padding: 0;
}
.container {
	margin: 0 auto;
	padding: 0 var(--container-offset);
	max-width: var(--container-width);
}
.hero {
	padding: 15px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	min-height: calc(100vh - 30px);
}
.hero__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	overflow: hidden;
	overflow-y: visible;
	height: 100%;
}
.hero__container-moveable {
	position: relative;
	max-width: 870px;
	width: 100%;
	border-radius: 25px;
}
.hero__container-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 60px;
	border-radius: 25px;
	background: var(--light-blue-color);
	margin-right: 10px;
	padding: 25px;
	-webkit-transition: -webkit-transform 0.6s;
	transition: transform 0.6s;
	-o-transition: transform 0.6s;
	transition: transform 0.6s, -webkit-transform 0.6s;
	width: 100%;
	position: relative;
	z-index: 100;
}
.hero__container-slide-hidden {
	-webkit-transform: translateX(-110%);
	-ms-transform: translateX(-110%);
	transform: translateX(-110%);
}
.hero__container-integration {
	position: absolute;
	inset: 0;
	z-index: 50;
	border-radius: 25px;
	padding: 25px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 0.3s, visibility 0.3s;
	-o-transition: opacity 0.3s, visibility 0.3s;
	transition: opacity 0.3s, visibility 0.3s;
}
.hero__container-integration-visible {
	opacity: 1;
	visibility: visible;
}
.hero__container-static {
	padding: 80px 80px 50px 60px;
}
.hero__container-menu {
	padding: 30px;
	border: 1px solid var(--black-color);
	border-radius: 25px;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 40px;
}
.hero__container-footer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 28px;
}
.hero__container-buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	row-gap: 30px;
	margin-bottom: 45px;
}
.hero__container-buttons-form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	gap: 28px;
}
.hero__container-input {
	position: relative;
	width: 100%;
	z-index: 60;
}
.hero__container-input-opened > .hero__select {
	visibility: visible;
	opacity: 1;
}
.hero__container-input::after {
	content: "";
	width: 35px;
	height: 36px;
	border-radius: 10px;
	background: url(../img/bottom-arrow.svg) no-repeat;
	position: absolute;
	top: -1px;
	right: -1px;
}
.hero__container-rows {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	row-gap: 30px;
	max-height: 234px;
	overflow-y: auto;
	padding-bottom: 4px;
	padding-right: 18px;
}
.hero__container-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
}
.hero__select {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity 0.3s, visibility 0.3s;
	-o-transition: opacity 0.3s, visibility 0.3s;
	transition: opacity 0.3s, visibility 0.3s;
	gap: 4px;
	padding: 5px 10px 6px;
	position: absolute;
	bottom: -89px;
	left: -2px;
	right: -2px;
	background: var(--light-blue-color);
	z-index: 75;
	border: 1px solid var(--black-color);
	border-radius: 10px;
}
.hero__icon-button {
	margin-left: 75px;
}
.hero__icon-wave {
	-ms-flex-item-align: end;
	align-self: flex-end;
}
.hero__button-main {
	position: relative;
	padding: 50px 110px;
	border-radius: 25px;
	font-weight: 400;
	font-size: 48px;
	line-height: 58px;
	color: var(--white-color);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 710px;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
}
.hero__button-main::after {
	content: "";
	position: absolute;
	inset: -2px;
	border: 3px solid var(--white-color);
	border-radius: 25px;
	background: 0 0;
	opacity: 0;
	-webkit-transition: opacity 0.3s;
	-o-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
.hero__button-main:hover::after {
	opacity: 1;
}
.hero__button-form {
	margin-top: 12px;
}
.hero__button-tilda {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border: 1px solid var(--black-color);
	border-radius: 10px;
	width: 100%;
	color: var(--black-color);
	background: 0 0;
	font-weight: 400;
	font-size: 20px;
	line-height: 24px;
	text-decoration: none;
	padding-top: 4px;
	padding-bottom: 7px;
}
.hero__button-tilda-before {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-left: 12px;
	padding-right: 12px;
	height: calc(100% + 2px);
	background: var(--orange-color);
	border: 1px solid var(--black-color);
	border-radius: 10px;
	position: absolute;
	top: -1px;
	left: -1px;
}
.hero__button-save {
	background: var(--light-blue-color);
	border: 1px solid var(--black-color);
	border-radius: 9px;
	font-weight: 400;
	font-size: 20px;
	line-height: 24px;
	color: var(--white-color);
	padding: 4px 68px 7px;
}
.hero__title {
	margin: 0;
}
.hero__title-menu {
	font-size: 24px;
	line-height: 29px;
	font-weight: 700;
	margin-bottom: 12px;
}
.hero__title-integration {
	font-size: 60px;
	line-height: 72px;
	font-weight: 700;
	margin-bottom: 52px;
}
.hero__title-entity {
	font-size: 24px;
	line-height: 29px;
	font-weight: 500;
	margin-bottom: 20px;
}
.hero__title-form {
	position: relative;
	font-size: 32px;
	line-height: 38px;
	font-weight: 500;
	margin-bottom: 27px;
}
.hero__title-form::after {
	content: "*поставьте галочку, если поле является множественным";
	font-weight: 400;
	font-size: 12px;
	line-height: 14px;
	opacity: 0.5;
	position: absolute;
	bottom: -20px;
	right: 0;
	color: var(--black-color);
}
.hero__list {
	margin: 0;
	padding-left: 24px;
}
.hero__list-checkboxes {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 26px;
	margin-bottom: 55px;
}
.hero__item {
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
}
.hero__item-select {
	padding: 3px 12px;
	border: 1px solid var(--black-color);
	border-radius: 8px;
	background: var(--white-color);
}
.hero__logo-footer {
	margin-bottom: 25px;
}
.hero__social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.hero__link {
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	color: var(--black-color);
	text-decoration: none;
}
.hero__link:not(:last-child) {
	margin-bottom: 6px;
}
.hero__input-text {
	padding: 5px;
	background: 0 0;
	width: 100%;
	border: 1px solid var(--black-color);
	border-radius: 10px;
	outline: 0;
	text-align: center;
	font-weight: 400;
	font-size: 20px;
	line-height: 24px;
	max-height: 35px;
	cursor: pointer;
}
.hero__input-text-row {
	text-align: left;
	padding: 5px 30px;
}
.hero__input-checkbox {
	opacity: 0;
	visibility: hidden;
	width: 0;
	height: 0;
	position: absolute;
	top: -4px;
	left: -4px;
}
.hero__text {
	font-size: 20px;
	font-weight: 400;
	line-height: 24px;
}
.hero__text-select {
	opacity: 0.5;
}
.hero__label-checkbox {
	position: relative;
	display: block;
	min-width: 250px;
	border: 1px solid var(--black-color);
	border-radius: 10px;
	background: var(--white-color);
	padding-top: 6px;
	padding-bottom: 5px;
	padding-left: 53px;
	text-align: center;
	cursor: pointer;
}
.hero__label-checkbox::before {
	content: "";
	position: absolute;
	top: -1px;
	left: -1px;
	height: calc(100% + 2px);
	width: 53px;
	background: var(--light-blue-color);
	border: 1px solid var(--black-color);
	border-radius: 10px;
}
.hero__label-checkbox-active {
	background: var(--light-blue-color);
	color: var(--white-color);
	padding-left: 0;
	padding-right: 53px;
}
.hero__label-checkbox-active::before {
	left: unset;
	right: -1px;
	background: var(--white-color);
}
.hero__label-checkbox-mark {
	min-width: 40px;
	padding: 0;
}
.hero__label-checkbox-mark::before {
	display: none;
}
.hero__label-checkbox-mark::after {
	content: "";
	background: url(../img/okay.svg);
	position: absolute;
	inset: -1px;
	border-radius: 10px;
	opacity: 0;
	-webkit-transition: opacity 0.3s;
	-o-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
.hero__label-checkbox-mark-active::after {
	opacity: 1;
}
@media (max-width: 1440px) {
	.hero__container-static {
		padding: 60px 60px 30px 40px;
	}
	.hero__container-footer {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.hero__container-slide {
		gap: 40px;
	}
}
@media (max-width: 1380px) {
	.hero__container-static {
		padding: 30px 15px 30px 30px;
	}
	.hero__container-buttons {
		row-gap: 20px;
		margin-bottom: 26px;
	}
	.hero__container-integration {
		inset: unset;
		top: 0;
		right: 0;
		left: 0;
	}
	.hero__container-menu {
		height: unset;
		gap: 80px;
	}
	.hero__button-main {
		padding: 50px 60px;
	}
	.hero__title-integration {
		font-size: 48px;
		line-height: 120%;
		margin-bottom: 28px;
	}
	.hero__list-checkboxes {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: (1fr) [12];
		grid-template-columns: repeat(12, 1fr);
		gap: 14px;
	}
	.hero__item-checkbox {
		-ms-grid-column-span: 4;
		grid-column: 4 span;
	}
	.hero__label-checkbox {
		min-width: unset;
	}
	.hero__label-checkbox-mark {
		min-width: 40px;
	}
	.hero__icon-wave,
	.hero__logo {
		width: 260px;
		height: auto;
	}
}
@media (max-width: 1024px) {
	.hero__container-moveable {
		max-width: 570px;
	}
	.hero__container-rows {
		row-gap: 16px;
	}
	.hero__list-checkboxes {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-bottom: 24px;
	}
	.hero__item-checkbox {
		grid-column: unset;
	}
	.hero__label-checkbox {
		min-width: 250px;
	}
	.hero__label-checkbox-mark {
		min-width: 40px;
	}
	.hero__title-integration {
		font-size: 40px;
	}
	.hero__button-form {
		margin-top: 22px;
	}
}
