/* ========== FONTS ========== */

@font-face { src: url("../fonts/Mulish-Light.woff2") format("woff2"); font-family: "Mulish"; font-weight: 300; font-style: normal; font-display: swap; }
@font-face { src: url("../fonts/Mulish-LightItalic.woff2") format("woff2"); font-family: "Mulish"; font-weight: 300; font-style: italic; font-display: swap; }
@font-face { src: url("../fonts/Mulish-Regular.woff2") format("woff2"); font-family: "Mulish"; font-weight: 400; font-style: normal; font-display: swap; }
@font-face { src: url("../fonts/Mulish-Italic.woff2") format("woff2"); font-family: "Mulish"; font-weight: 400; font-style: italic; font-display: swap; }
@font-face { src: url("../fonts/Mulish-Medium.woff2") format("woff2"); font-family: "Mulish"; font-weight: 500; font-style: normal; font-display: swap; }
@font-face { src: url("../fonts/Mulish-MediumItalic.woff2") format("woff2"); font-family: "Mulish"; font-weight: 500; font-style: italic; font-display: swap; }
@font-face { src: url("../fonts/Mulish-SemiBold.woff2") format("woff2"); font-family: "Mulish"; font-weight: 600; font-style: normal; font-display: swap; }
@font-face { src: url("../fonts/Mulish-SemiBoldItalic.woff2") format("woff2"); font-family: "Mulish"; font-weight: 600; font-style: italic; font-display: swap; }
@font-face { src: url("../fonts/Mulish-Bold.woff2") format("woff2"); font-family: "Mulish"; font-weight: 700; font-style: normal; font-display: swap; }
@font-face { src: url("../fonts/Mulish-BoldItalic.woff2") format("woff2"); font-family: "Mulish"; font-weight: 700; font-style: italic; font-display: swap; }

@font-face { src: url("../fonts/NeutralFaceRegular.woff2") format("woff2"); font-family: "NeutralFace"; font-weight: 400; font-style: normal; font-display: swap; }
@font-face { src: url("../fonts/NeutralFaceBold.woff2") format("woff2"); font-family: "NeutralFace"; font-weight: 700; font-style: normal; font-display: swap; }

/* ========== ROOT ========== */

:root {
	--color-accent: #27DCE3;
	--color-hover: #03B7BE;
	--color-text: #1B1B1B;
	--color-bg: #000;
	--color-placeholder: #B6B6B6;
	--color-border: #dddddd;

	--font-base: "Mulish", Arial, sans-serif;
	--font-header: "NeutralFace", Arial, sans-serif;
	--font-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

	--fs-base: 16px;
	--line-height-base: 1.6;

	--container-width: 100%;
	--container-padding: 60px;
	--section-padding: 75px;
	--section-margin: 135px;

	--h1: 48px;
	--h2: 40px;
	--h3: 32px;
	--h4: 26px;
	--h5: 22px;
	--h6: 18px;

	--heading-lineheight: 1.2;
	--heading-weight: 700;
	--text-spacing: 1em;

	--transition-base: 0.25s ease-in-out;
}

/* ========== BASE ========== */

html {
	scroll-behavior: smooth;
	/* scrollbar-gutter: stable; */
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	min-width: 320px;
	margin: 0;
	font-family: var(--font-base);
	font-size: var(--fs-base);
	line-height: var(--line-height-base);
	color: var(--color-text);
	background-color: var(--color-bg);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

::selection {
	color: #ffffff;
	background-color: var(--color-accent);
}

::placeholder {
	color: var(--color-placeholder);
}

img,
svg {
	display: block;
	max-width: 100%;
	height: auto;
	user-select: none;
}

picture {
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
	transition: all var(--transition-base);
}

button,
input,
textarea,
select {
	font: inherit;
}

button {
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	transition: all var(--transition-base);
}

input,
textarea {
	outline: none;
}

:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 2px;
}

strong,
b {
	font-weight: 700;
}

em,
i {
	font-style: italic;
}

hr {
	margin: 40px 0;
	border: 0;
	border-top: 1px solid var(--color-border);
}

/* ========== LAYOUT ========== */

main {
	overflow: hidden;
}

.container {
	width: 100%;
	max-width: 2000px;
	margin-inline: auto;
	padding-left: var(--container-padding);
	padding-right: var(--container-padding);
}

.center {
	text-align: center;
}

.title {
	color: #FFF;
	font-family: var(--font-header);
	font-size: 50px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin-bottom: 80px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 80px;
	padding: 12px 40px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	user-select: none;
	transition: all var(--transition-base);
	overflow: hidden;
	position: relative;
	
	background-color: var(--color-accent);
	border-radius: 20px;
	color: #1B1B1B;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.2;
	z-index: 1;
}
.btn::before {
	content: '';
	width: 100%;
	height: 100%;
	background: linear-gradient(97deg, #03B7BE 8.52%, #27DCE3 71.84%);
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	opacity: 0;
	visibility: hidden;
	transition: all var(--transition-base);
}

.btn:hover::before {
	opacity: 1;
	visibility: visible;
}

.btn:active::before {
	opacity: 0;
	visibility: hidden;
}

.btn:active {
	transform: translateY(1px);
	background-color: #03B7BE;
}

.btn:disabled,
.btn.disabled {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
}

.btn-arrow::after {
	content: '';
	width: 10px;
	height: auto;
	aspect-ratio: 1;
	flex: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='none' viewBox='0 0 10 10'%3e%3cpath fill='%231B1B1B' d='M.146 9.146a.5.5 0 1 0 .708.708L.5 9.5l-.354-.354ZM10 .5a.5.5 0 0 0-.5-.5H5a.5.5 0 0 0 0 1h4v4a.5.5 0 0 0 1 0V.5Zm-9.5 9 .354.354 9-9L9.5.5 9.146.146l-9 9L.5 9.5Z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

@media (max-width: 1500px) {
}
@media (max-width: 1260px) {
	.title {
		font-size: 40px;
	}
	.btn {
		min-height: 68px;
		padding: 12px 35px;
	}
}
@media (max-width: 991px) {
	.title {
		font-size: 30px;
		margin-bottom: 70px;
	}
}
@media (max-width: 767px) {
	.title {
		font-size: 27px;
	}
}
@media (max-width: 575px) {
	.title {
		font-size: 25px;
	}
}
@media (max-width: 355px) {
	.title {
		font-size: 23px;
	}
}

/* ========== TYPOGRAPHY ========== */

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
blockquote {
	margin-top: 0;
	margin-bottom: var(--text-spacing);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: var(--heading-weight);
	line-height: var(--heading-lineheight);
	color: inherit;
}

h1 {
	font-size: var(--h1);
	margin-bottom: 24px;
}

h2 {
	font-size: var(--h2);
	margin-bottom: 20px;
}

h3 {
	font-size: var(--h3);
	margin-bottom: 18px;
}

h4 {
	font-size: var(--h4);
	margin-bottom: 16px;
}

h5 {
	font-size: var(--h5);
	margin-bottom: 14px;
}

h6 {
	font-size: var(--h6);
	margin-bottom: 12px;
}

small {
	font-size: 14px;
	line-height: 1.4;
}

ul,
ol {
	padding-left: 1.5em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

blockquote {
	margin-left: 0;
	padding-left: 20px;
	border-left: 3px solid var(--color-accent);
	font-style: italic;
}

.textContent > *:first-child{
	margin-top: 0;
}

.textContent > *:last-child{
	margin-bottom: 0;
}

.textContent ul {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.textContent ul li {
	padding-left: 18px;
	position: relative;
}

.textContent ul li::before {
	content: '';
    width: 7px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #40EDF7;
    box-shadow: 0 0 4px 3px rgb(64, 237, 247, .5);
    position: absolute;
    left: 0;
    top: 10px;
}

/* ========== KEYFRAMES ========== */

@keyframes lineMoveX {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(180px);
	}
}

@keyframes lineMoveXReverse {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-180px);
	}
}

@keyframes lineMoveY {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(180px);
	}
}

@keyframes lineLuxuryX {
	0% {
		transform: translateX(0);
		opacity: 0.82;
	}
	25% {
		transform: translateX(16px);
		opacity: 0.9;
	}
	50% {
		transform: translateX(42px);
		opacity: 1;
	}
	75% {
		transform: translateX(70px);
		opacity: 0.94;
	}
	100% {
		transform: translateX(0);
		opacity: 0.82;
	}
}

@keyframes starBlink {
	0%, 100% {
		opacity: .35;
		transform: scale(.9);
		box-shadow: 0 0 2px 1px rgb(64 237 247 / 20%);
	}

	18% {
		opacity: .55;
		transform: scale(1);
		box-shadow: 0 0 3px 2px rgb(64 237 247 / 30%);
	}

	32% {
		opacity: 1;
		transform: scale(1.18);
		box-shadow: 0 0 4px 3px rgb(64 237 247 / 60%);
	}

	42% {
		opacity: .45;
		transform: scale(.96);
		box-shadow: 0 0 2px 1px rgb(64 237 247 / 22%);
	}

	58% {
		opacity: .85;
		transform: scale(1.08);
		box-shadow: 0 0 6px 4px rgb(64 237 247 / 50%);
	}

	72% {
		opacity: .4;
		transform: scale(.92);
		box-shadow: 0 0 2px 1px rgb(64 237 247 / 18%);
	}
}

@keyframes starBlinkSoft {
	0%, 100% {
		opacity: .5;
		transform: scale(1);
		box-shadow: 0 0 4px 2px rgb(64 237 247 / 60%);
	}
	50% {
		opacity: 1;
		transform: scale(1.12);
		box-shadow: 0 0 4px 3px rgb(64 237 247 / 60%);
	}
}

/* ========== BREAKPOINTS ========== */

@media (max-width: 1500px) {
	:root {
		--container-padding: 32px;
		--section-padding: 0;
	}
}

@media (max-width: 1260px) {
	:root {
		--container-width: 960px;
	}
}

@media (max-width: 991px) {
	:root {
		--container-width: 720px;

		--section-margin: 100px;

		--h1: 40px;
		--h2: 34px;
		--h3: 28px;
		--h4: 24px;
		--h5: 20px;
		--h6: 17px;
	}
}

@media (max-width: 767px) {
	:root {
		--container-width: 540px;
		--section-margin: 80px;
	}
}

@media (max-width: 575px) {
	:root {
		--container-width: 100%;
		--container-padding: 16px;

		--h1: 32px;
		--h2: 28px;
		--h3: 24px;
		--h4: 21px;
		--h5: 18px;
		--h6: 16px;
	}
}

/* ========== USER STYLES ========== */

/* header */
.header {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 10;
	top: 26px;
}
.header__container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 0 var(--section-padding);
}
.header__logo {
	max-width: 331px;
	width: 100%;
	height: auto;
}
.header__logo img {
	width: 100%;
	height: auto;
}
.header__call {
	width: 72px;
	height: auto;
	aspect-ratio: 1;
	border-radius: 20px;
	background-color: var(--color-accent);
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='23' height='21' fill='none' viewBox='0 0 23 21'%3e%3cpath fill='%231B1B1B' d='M21.833 14.95c.566.279.943.418 1.085.65.141.232.141 1.347-.33 2.647-.472 1.3-2.733 2.486-3.82 2.646-.975.144-2.209.203-3.564-.22a32.857 32.857 0 0 1-3.226-1.173C6.3 17.09 2.594 11.468 2.31 11.097l-.005-.006C2.006 10.698 0 8.065 0 5.339 0 2.6 1.462 1.254 1.98.696 2.5.14 3.113 0 3.49 0c.377 0 .754.003 1.084.02.348.017.814-.13 1.273.955C6.32 2.09 7.451 4.83 7.592 5.107c.142.28.236.604.047.976-.188.37-.283.603-.566.928-.282.325-.594.726-.848.975-.284.278-.579.579-.249 1.136.33.557 1.466 2.38 3.149 3.855 2.161 1.896 3.985 2.484 4.55 2.763.566.278.896.232 1.226-.14.33-.371 1.415-1.625 1.792-2.182.377-.557.755-.464 1.273-.278.52.185 3.301 1.532 3.867 1.81Z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
	flex: none;

	display: none;
}
.header__call:hover {
	background-color: var(--color-hover);
}
@media (max-width: 1500px) {
}
@media (max-width: 1260px) {
	.header__call {
		width: 68px;
	}
}
@media (max-width: 991px) {
}
@media (max-width: 767px) {
	.header {
		top: 20px;
	}
	.header__logo {
		max-width: 210px;
	}
	.header__call {
		width: 57px;
		background-size: 17px;
	}
}
@media (max-width: 575px) {
	.header__call {
		display: none;
	}
}
/* header */

/* promo */
.promo {
	height: 100vh;
	min-height: 700px;
	max-height: 1000px;
	width: 100%;
	position: relative;
	background-color: #03040a;
	z-index: 1;
}
.promo::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: auto;
	aspect-ratio: 1.004184;
	/* background-image: url(../img/promo__bg.png); */
	background-image: url(../img/promo__bgMin.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	z-index: -1;
}
.promo::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	aspect-ratio: 1.004184;
	background-image: url(../img/noise.png);
	background-repeat: repeat;
	background-position: center;
	z-index: -1;
	pointer-events: none;
}
.promo .container {
	height: 100%;
}
.promo__container {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-bottom: 80px;
	padding: 0 var(--section-padding) 80px;
}
.promo__tags {
	display: flex;
	align-items: center;
	gap: 64px;
	flex-wrap: wrap;
	margin-bottom: 60px;
	color: #FFF;
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
}
.promo__tags span {
	visibility: hidden;
	white-space: nowrap;
}
.promo__tags span.is-visible {
	visibility: visible;
}
.promo__tags span.is-typing::after {
	content: "|";
	animation: blink 0.7s infinite;
	margin-left: 2px;
}
@keyframes blink {
	0%, 50% {
		opacity: 1;
	}
	51%, 100% {
		opacity: 0;
	}
}
.promo__content {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	position: relative;
}
.promo__title {
	max-width: 1200px;
	color: #FFF;
	font-family: var(--font-header);
	font-size: 60px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.33;
}
.promo__btn {
	flex: none;
	margin-bottom: 16px;
}
@media (max-width: 1800px) {
	.promo__btn {
		position: absolute;
		right: 0;
		bottom: 0;
		z-index: 2;
		margin-bottom: 10px;
	}
}
@media (max-width: 1500px) {
	.promo__title {
		font-size: 50px;
		max-width: 1000px;
	}
}
@media (max-width: 1260px) {
	.promo__title {
		font-size: 40px;
		max-width: 780px;
	}
	.promo__tags {
		font-size: 14px;
		gap: 48px;
		margin-bottom: 50px;
	}
	.promo::before {
		min-height: 1230px;
		background-size: cover;
	}
}
@media (max-width: 991px) {
	.promo__btn {
		position: relative;
		margin-bottom: 0;
	}
	.promo__content {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 30px;
	}
	.promo__tags {
		gap: 38px;
	}
}
@media (max-width: 767px) {
	.promo__title {
		font-size: 25px;
	}
	.promo__tags {
		font-size: 13px;
		gap: 15px;
		margin-bottom: 30px;
	}
	.promo {
		min-height: auto;
		height: auto;
		max-height: unset;
	}
	.promo__container {
		padding-top: 330px;
	}
	.promo::before {
        min-height: 1150px;
    }
}
@media (max-width: 575px) {
	.promo::before {
		background-image: url(../img/promo__bgMobile.jpg);
		min-height: 100%;
	}
	.promo__title {
		font-size: 25px;
		max-width: 340px;
	}
	.promo::after {
		opacity: .8;
	}
}
@media (max-width: 355px) {
	.promo__title {
		hyphens: auto;
	}
	.promo__tags {
		font-size: 12px;
	}
}
/* promo */

/* about */
.about {
	position: relative;
	z-index: 2;
}
.about::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	aspect-ratio: 1.004184;
	background-image: url(../img/noise.png);
	background-repeat: repeat;
	background-position: center;
	z-index: -1;
	pointer-events: none;
}
.about__container {
	border-radius: 30px;
	background: #FFF;
}
.about__block {
	display: grid;
	grid-template-columns: 530px 1fr;
	min-height: 380px;
}
.about__title {
	position: relative;
	padding: 135px 75px;
	margin: 0;
	color: #1B1B1B;
}
.about__title::before {
    content: "";
    position: absolute;
    right: -3px;
    top: 10%;
    height: 72px;
    width: 5px;
    border-radius: 999px;
    background: #40EDF7;
    animation: lineMoveY 6s ease-in-out infinite alternate;
    transition: .25s var(--transition-base);
}
.about__content {
	display: grid;
	grid-template-columns: 1fr 390px;
	height: 100%;
}
.about__text {
	display: flex;
	align-items: center;
	color: #1B1B1B;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	padding: 40px 90px;
	border-left: 1px solid #000;
	border-right: 1px solid #000;
}
.about__contentBlock {
	padding-top: 135px;
}
.about__advantage {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	max-width: 240px;
	margin: 0 auto;
}
.about__advantageNum {
	color: #1B1B1B;
	font-family: var(--font-header);
	font-size: 50px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
.about__advantageTitle {
	color: #1B1B1B;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.about__list {
	counter-reset: myCounter;
	list-style: none;
	margin: 0;
	padding: 64px 75px;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 32px;
	justify-content: space-between;
	border-top: 1px solid #000;
	position: relative;
}
.about__list::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 60%;
    width: 72px;
    height: 5px;
    border-radius: 999px;
    background: #40EDF7;
    animation: lineMoveX 6s ease-in-out infinite alternate;
    transition: .25s var(--transition-base);
}
.about__list li {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	color: #1B1B1B;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	max-width: 280px;
}
.about__list li::before {
	counter-increment: myCounter;
	content: counter(myCounter, decimal-leading-zero)'.';
	content: '[  'counter(myCounter, decimal-leading-zero)'  ]';
	color: #054375;
	font-family: var(--font-header);
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin-bottom: 24px;
}
@media (max-width: 1800px) {
	.about__block {
		grid-template-columns: 480px 1fr;
		min-height: 310px;
	}
	.about__title {
		padding: 100px 50px;
	}
	.about__text {
		padding: 40px 60px;
	}
	.about__contentBlock {
		padding-top: 100px;
	}
}
@media (max-width: 1500px) {
	.about__block {
		grid-template-columns: 450px 1fr;
		min-height: auto;
	}
	.about__title {
		padding: 50px 35px;
	}
	.about__text {
		padding: 50px 35px;
	}
	.about__contentBlock {
		padding-top: 50px;
	}
	.about__content {
		grid-template-columns: 1fr 260px;
	}
}
@media (max-width: 1260px) {
	.about__block {
		grid-template-columns: 328px 1fr;
	}
	.about__title {
		font-size: 30px;
		padding: 80px 40px;
		border-right: 1px solid #000;
	}
	.about__content {
		padding: 80px 65px;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}
	.about__text {
		padding: 0;
		border: none;
		font-size: 14px;
	}
	.about__contentBlock {
		padding-top: 0;
		order: -1
	}
	.about__list li {
		font-size: 14px;
	}
	.about__list {
		flex-wrap: nowrap;
	}
	.about__list {
		padding: 60px;
	}
}
@media (max-width: 991px) {
	.about__list {
		padding: 40px;
	}
	.about__list li::before {
		margin-bottom: 14px;
	}
	.about__list {
		gap: 24px;
	}
	.about__title {
		padding: 40px;
	}
	.about__content {
		padding: 40px;
	}
}
@media (max-width: 767px) {
	.about__list {
		flex-direction: column;
		align-items: flex-start;
		padding: 40px 30px;
	}
	.about__list li {
		max-width: 100%;
	}
	.about__title {
		padding: 30px;
		border-right: none;
		border-bottom: 1px solid #000
	}
	.about__title::before {
		animation: lineMoveX 6s ease-in-out infinite alternate;
		height: 5px;
		width: 72px;
		right: auto;
		left: 20px;
		top: auto;
		bottom: -3px;
	}
	.about__list::before {
		display: none;
	}
	.about__content {
		padding: 20px 30px;
	}
	.about__block {
		grid-template-columns: 1fr;
	}
	.about__text {
		display: none
	}
}
@media (max-width: 575px) {
	.about::after {
		opacity: .8;
	}
}
@media (max-width: 355px) {
	.about__list {
		padding: 40px 20px;
	}
	.about__title {
		padding: 30px 20px;
	}
	.about__content {
		padding: 20px;
	}
}
/* about */

/* completed */
.completed {
	padding: var(--section-margin) 0;
	position: relative;
	z-index: 1;
}
.completed::before {
	content: '';
	position: absolute;
	left: 0;
	top: -100px;
	width: 100%;
	max-width: 1920px;
	height: auto;
	aspect-ratio: 1.056213;
	background-image: url(../img/completed__bgMin.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	z-index: -1;
}
.completed::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	aspect-ratio: 1.004184;
	background-image: url(../img/noise.png);
	background-repeat: repeat;
	background-position: center;
	z-index: -1;
	pointer-events: none;
}
.completed .title {
	font-size: 40px;
}
.completed__container {
	padding: 0 var(--section-padding);
}
.completed__list {
	counter-reset: myCounter;
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 420px);
	gap: 100px 140px
}
.completed__list li {
	color: #FFF;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.completed__list li::before {
	counter-increment: myCounter;
	content: counter(myCounter, decimal-leading-zero)'.';
	content: '[  'counter(myCounter, decimal-leading-zero)'  ]';
	color: #27DCE3;
	font-family: var(--font-header);
	font-size: 25px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	display: block;
	margin-bottom: 24px;
}
@media (max-width: 1800px) {
	.completed__list {
		grid-template-columns: repeat(3, 1fr);
		gap: 80px 100px
	}
}
@media (max-width: 1500px) {
}
@media (max-width: 1260px) {
	.completed__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 80px
	}
	.completed__list li {
		font-size: 16px;
	}
}
@media (max-width: 991px) {
	.completed__list {
		gap: 50px 20px;
	}
	.completed__list li::before {
		font-size: 20px;
	}
	.completed__list li {
		font-size: 14px;
	}
	.completed__list li::before {
		margin-bottom: 18px;
	}
	.completed .title {
		font-size: 30px;
	}
}
@media (max-width: 767px) {
}
@media (max-width: 575px) {
	.completed .title {
		font-size: 25px;
		margin-bottom: 30px;
	}
	.completed__list {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.completed::after {
		opacity: .8;
	}
}
@media (max-width: 355px) {
	.completed .title {
		font-size: 23px;
	}
}
/* completed */

/* services */
.services {
	position: relative;
	z-index: 1;
}
.services::before {
	content: '';
	position: absolute;
	right: 0;
	top: 0px;
	width: 100%;
	max-width: 1920px;
	height: auto;
	aspect-ratio: 0.615582;
	background-image: url(../img/services__bgMin.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	z-index: -1;
}
.services::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	aspect-ratio: 1.004184;
	background-image: url(../img/noise.png);
	background-repeat: repeat;
	background-position: center;
	z-index: -1;
	pointer-events: none;
}
.services__container {
	display: grid;
	grid-template-columns: 530px 1fr;
	border-radius: 30px;
	border: 1px solid #608EB4;
	background: rgba(2, 49, 88, 0.50);
}
.services__content {
	position: relative;
	padding: 135px 75px;
	border-right: 1px solid #608EB4;
}
.services__content::before {
	content: "";
	position: absolute;
	right: -3px;
	top: 7%;
	height: 72px;
	width: 5px;
	border-radius: 999px;
	background: #40EDF7;
	animation: lineMoveY 6s ease-in-out infinite alternate;
	transition: .25s var(--transition-base);
}
.services__title {
	margin-bottom: 0;
	position: sticky;
	top: 75px;
}
.services__list {
}
.services__item {
	position: relative;
	padding: 75px;
	display: grid;
	grid-template-columns: 1fr 370px;
	gap: 32px;
}
.services__item:not(:last-child) {
	border-bottom: 1px solid #608EB4;
}
.services__item:not(:last-child)::before {
	content: "";
	position: absolute;
	bottom: -3px;
	left: 15%;
	width: 72px;
	height: 5px;
	border-radius: 999px;
	background: #40EDF7;
	animation: lineMoveX 6s ease-in-out infinite alternate;
	transition: .25s var(--transition-base);
}
.services__item:not(:last-child):nth-child(even):before {
	left: auto;
	right: 15%;
	animation: lineMoveXReverse 6s ease-in-out infinite alternate;
}
.services__item:nth-child(2):before {
	animation-duration: 5s!important;
	animation-delay: 1s!important;;
}
.services__item:nth-child(3):before {
	animation-duration: 7s!important;
	animation-delay: 2s!important;;
}
.services__item:nth-child(4):before {
	animation-duration: 8s!important;
	animation-delay: 0s!important;;
}
.services__item:nth-child(5):before {
	animation-duration: 5s!important;
	animation-delay: 2s!important;;
}
.services__item:nth-child(6):before {
	animation-duration: 6s!important;
	animation-delay: 1s!important;;
}
.services__itemContent {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.services__itemTitle {
	color: #27DCE3;
	font-family: var(--font-header);
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.66;
	margin-bottom: 28px;

	display: inline-block;
	position: relative;
	/* white-space: nowrap; */
}
.services__itemTitle::before {
	content: '[ ';
	margin-right: 5px;
}
.services__itemTitle::after {
	content: ' ]';
	margin-left: 5px;
	white-space: nowrap;
}
.services__itemTitle.is-typing {
	border-right: 2px solid currentColor;
	animation: servicesBlinkCursor .7s step-end infinite;
}
.services__itemTitle.is-typed {
	border-right: none;
}
@keyframes servicesBlinkCursor {
	0%, 100% {
		border-color: currentColor;
	}
	50% {
		border-color: transparent;
	}
}
.services__itemText {
	color: #fff;
}
.services__itemInfo {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	gap: 32px;
}
.services__itemPrice {
	color: #fff;
	text-align: right;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
.services__itemBtn {
	width: 70px;
	height: auto;
	aspect-ratio: 1;
	border-radius: 20px;
	background-color: var(--color-accent);
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='none' viewBox='0 0 10 10'%3e%3cpath fill='%231B1B1B' d='M.146 9.146a.5.5 0 1 0 .708.708L.5 9.5l-.354-.354ZM10 .5a.5.5 0 0 0-.5-.5H5a.5.5 0 0 0 0 1h4v4a.5.5 0 0 0 1 0V.5Zm-9.5 9 .354.354 9-9L9.5.5 9.146.146l-9 9L.5 9.5Z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
	flex: none;
}
.services__itemBtn:hover {
	background-color: var(--color-hover);
}
@media (max-width: 1800px) {
	.services__container {
        grid-template-columns: 480px 1fr;
    }
	.services__content {
		padding: 100px 60px;
	}
	.services__item {
		padding: 60px;
		grid-template-columns: 1fr 230px;
	}
}
@media (max-width: 1500px) {
	.services__container {
        grid-template-columns: 290px 1fr;
    }
	.services__content {
		padding: 50px 35px;
	}
	.services__title {
		top: 50px;
	}
}
@media (max-width: 1260px) {
	.services__container {
		grid-template-columns: 1fr;
	}
	.services__content {
		padding: 80px 60px 60px;
		border-right: none
	}
	.services__item:first-child {
		padding-top: 0;
	}
	.services__content::before {
		display: none;
	}
	.services__itemTitle {
		font-size: 20px;
	}
	.textContent ul li {
		font-size: 14px;
	}
	.services__itemBtn {
		width: 68px;
	}
	.textContent ul li::before {
		top: 8px;
	}
}
@media (max-width: 991px) {
	.services__content {
		padding: 40px;
	}
	.services__item {
		padding: 40px;
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.services__itemInfo {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 32px;
	}
	.services__itemPrice {
		text-align: left;
	}
}
@media (max-width: 767px) {
}
@media (max-width: 575px) {
	.services__content {
		padding: 30px;
	}
	.services__item {
		padding: 30px;
		gap: 30px;
	}
	.services__itemTitle {
		font-size: 15px;
		margin-bottom: 18px;
	}
	.services__item:not(:last-child)::before {
		display: none;
	}
	.services::after {
		opacity: .8;
	}
	.services__itemTitle.is-typing {
		border: none;
	}
}
@media (max-width: 355px) {
	.services__content {
		padding: 30px 20px;
	}
	.services__item {
		padding: 30px 20px;
		gap: 20px;
	}
	.services__itemTitle {
		font-size: 15px;
		margin-bottom: 18px;
	}
	.services__item:not(:last-child)::before {
		display: none;
	}
}
/* services */

/* experience */
.experience {
	padding-top: var(--section-margin);
	position: relative;
	z-index: 1;
}
.experience::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	aspect-ratio: 1.004184;
	background-image: url(../img/noise.png);
	background-repeat: repeat;
	background-position: center;
	z-index: -1;
	pointer-events: none;
}
.experience__container {
	border-radius: 30px;
	background: #FFF;
}
.experience__block {
    display: grid;
    grid-template-columns: 530px 1fr;
	overflow: hidden;
}
.experience__title {
    position: relative;
    padding: 135px 75px;
    margin: 0;
    color: #1B1B1B;
}
.experience__title::before {
    content: "";
    position: absolute;
    right: -3px;
    top: 10%;
    height: 72px;
    width: 5px;
    border-radius: 999px;
    background: #40EDF7;
    animation: lineMoveY 6s ease-in-out infinite alternate;
    transition: .25s var(--transition-base);
	z-index: 3;
}
.experience__slider {
	border-left: 1px solid #000;
	max-width: 100%;
    overflow: hidden;
}
.experience__slider.slick-initialized .experience__sliderItem {
	display: grid;
}
.experience__sliderItem {
	display: none;
	grid-template-columns: 620px 1fr;
	align-items: center;
}
.experience__sliderItemImg {
	width: 100%;
	height: 100%;
}
.experience__sliderItemImg img {
	width: 100%;
	height: 100%;
	pointer-events: none;
	user-select: none;
	object-fit: cover;
}
.experience__sliderItemContent {
	padding: 40px 80px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.experience__sliderItemTitle {
	color: #054375;
	font-family: var(--font-header);
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
.experience__sliderItemTitle::before {
	content: '[ ';
	margin-right: 5px;
}
.experience__sliderItemTitle::after {
	content: ' ]';
	margin-left: 5px;
	white-space: nowrap;
}
.experience__sliderItemText {
	color: #1B1B1B;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.experience__sliderItemText > *:last-child {
	margin-bottom: 0;
}
.experience__footer {
	position: relative;
	min-height: 106px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-top: 1px solid #000;
}
.experience__footer::before {
    content: "";
    position: absolute;
    top: -3px;
    right: 25%;
    width: 72px;
    height: 5px;
    border-radius: 999px;
    background: #40EDF7;
    animation: lineMoveX 5s ease-in-out infinite alternate;
    transition: .25s var(--transition-base);
	z-index: 3;
}
.experience__arrows {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
}
.experience__arrow {
	width: 32px;
	height: auto;
	aspect-ratio: 1;
	background-repeat: no-repeat;
	background-position: center;
}
.experience__arrowPrev {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='22' height='15' fill='none' viewBox='0 0 22 15'%3e%3cpath fill='%23000' d='M.293 8.07a1 1 0 0 1 0-1.413L6.657.293A1 1 0 0 1 8.07 1.707L2.414 7.364l5.657 5.657a1 1 0 1 1-1.414 1.414L.293 8.07ZM22 7.365v1H1v-2h21v1Z'/%3e%3c/svg%3e");
}
.experience__arrowPrev:hover {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='22' height='15' fill='none' viewBox='0 0 22 15'%3e%3cpath fill='%2340EDF7' d='M.293 8.07a1 1 0 0 1 0-1.413L6.657.293A1 1 0 0 1 8.07 1.707L2.414 7.364l5.657 5.657a1 1 0 1 1-1.414 1.414L.293 8.07ZM22 7.365v1H1v-2h21v1Z'/%3e%3c/svg%3e");
}
.experience__arrowNext {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='22' height='15' fill='none' viewBox='0 0 22 15'%3e%3cpath fill='%23000' d='M21.707 8.07a1 1 0 0 0 0-1.413L15.343.293a1 1 0 1 0-1.414 1.414l5.657 5.657-5.657 5.657a1 1 0 0 0 1.414 1.414l6.364-6.364ZM0 7.365v1h21v-2H0v1Z'/%3e%3c/svg%3e");
}
.experience__arrowNext:hover {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='22' height='15' fill='none' viewBox='0 0 22 15'%3e%3cpath fill='%2340EDF7' d='M21.707 8.07a1 1 0 0 0 0-1.413L15.343.293a1 1 0 1 0-1.414 1.414l5.657 5.657-5.657 5.657a1 1 0 0 0 1.414 1.414l6.364-6.364ZM0 7.365v1h21v-2H0v1Z'/%3e%3c/svg%3e");
}
@media (max-width: 1800px) {
	.experience__block {
		grid-template-columns: 480px 1fr;
	}
	.experience__title {
		padding: 100px 60px;
	}
	.experience__sliderItem {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 1500px) {
	.experience__sliderItemContent {
		padding: 50px 40px;
	}
	.experience__title {
        padding: 50px 35px;
    }
	.experience__block {
		grid-template-columns: 290px 1fr;
	}
}
@media (max-width: 1260px) {
	.experience__block {
		grid-template-columns: 1fr;
	}
	.experience__title {
		padding: 80px 60px 40px;
	}
	.experience__slider {
		border-top: 1px solid #000;
		border-left: none;
	}
	.experience__title::before {
		height: 5px;
		width: 72px;
		animation: lineMoveX 6s ease-in-out infinite alternate;
		right: 200px;
		top: auto;
		bottom: -3px;
	}
	.experience__footer::before {
		display: none
	}
	.experience__footer {
		min-height: 88px;
	}
	.experience__sliderItemText {
		font-size: 14px;
	}
}
@media (max-width: 991px) {
	.experience__title {
		padding: 40px 40px 30px;
	}
	.experience__sliderItem {
		grid-template-columns: 1fr;
	}
	.experience__sliderItemContent {
		padding: 30px 40px;
		gap: 20px;
	}
	.experience__footer {
		min-height: 70px;
	}
	.experience__sliderItemImg {
		max-height: 300px;
	}
	.experience__title::before {
		display: none
	}
}
@media (max-width: 767px) {
}
@media (max-width: 575px) {
	.experience__title {
		padding: 30px;
	}
	.experience__sliderItemContent {
		padding: 30px;
	}
	.experience__sliderItemImg {
		max-height: 230px;
	}
	.experience::after {
		opacity: .8;
	}
}
@media (max-width: 355px) {
	.experience__sliderItemContent {
		padding: 30px 20px;
	}
}
/* experience */

/* evaluation */
.evaluation {
	padding: var(--section-margin) 0;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.evaluation::before {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	height: auto;
	aspect-ratio: 0.930233;
	background-image: url(../img/evaluation__bgMin.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	z-index: -1;
}
.evaluation::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	aspect-ratio: 1.004184;
	background-image: url(../img/noise.png);
	background-repeat: repeat;
	background-position: center;
	z-index: -1;
	pointer-events: none;
}
.evaluation__container {
	display: grid;
	grid-template-columns: 940px 1fr;
	align-items: center;
	gap: 85px;
}
.evaluation__content {
	border-radius: 30px;
	border: 1px solid #608EB4;
	background: rgba(2, 49, 88, 0.50);
	padding: 135px 75px;
}
.evaluation__title {
	margin-bottom: 70px;
}
.evaluation__text {
	color: #FFF;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.evaluation__text > *:last-child {
	margin-bottom: 0;
}
.evaluation__advantages {
	margin: 48px -75px;
	padding: 48px 75px;
	border-top: 1px solid #608EB4;
	border-bottom: 1px solid #608EB4;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}
.evaluation__advantagesItem {
	display: flex;
	align-items: center;
	gap: 20px;
}
.evaluation__advantagesItemNum {
	color: #27DCE3;
	font-family: var(--font-header);
	font-size: 50px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
.evaluation__advantagesItemTitle {
	color: #FFF;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.evaluation__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	max-width: 700px;
}
.evaluation__tagsItem {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	/* white-space: nowrap; */
	border-radius: 20px;
	background: #111322;
	padding: 10px 25px;
	min-height: 50px;
	color: #B7BAD6;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	transition: all var(--transition-base);
	position: relative;
}
.evaluation__tagsItem:hover {
	cursor: pointer;
	background-color: var(--color-accent);
	color: #1B1B1B;
}
a.evaluation__tagsItem:hover {
	cursor: pointer;
}
.evaluation__tagsItemPopup {
	position: absolute;
	left: 50%;
	top: calc(100% + 10px);
	transform: translateX(-50%) translateY(10px);
	width: 280px;
	padding: 14px 16px;
	border-radius: 14px;
	background: rgba(17, 19, 34, 0.98);
	border: 1px solid #608EB4;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: 0.25s ease;
	z-index: 20;
	text-align: left;
}
.evaluation__tagsItemPopup::before {
	content: '';
	position: absolute;
	left: 50%;
	top: -6px;
	transform: translateX(-50%) rotate(45deg);
	width: 12px;
	height: 12px;
	background: rgba(17, 19, 34, 0.98);
	border-left: 1px solid #608EB4;
	border-top: 1px solid #608EB4;
}
.evaluation__tagsItem.active .evaluation__tagsItemPopup {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
}
.evaluation__tagsItemPopup.is-right {
	left: auto;
	right: 0;
	transform: translateY(10px);
}
.evaluation__tagsItem.active .evaluation__tagsItemPopup.is-right {
	transform: translateY(0);
}
.evaluation__tagsItemPopup.is-right::before {
	left: auto;
	right: 18px;
	transform: rotate(45deg);
}
.evaluation__tagsItemPopup.is-left {
	left: 0;
	transform: translateY(10px);
}
.evaluation__tagsItem.active .evaluation__tagsItemPopup.is-left {
	transform: translateY(0);
}
.evaluation__tagsItemPopup.is-left::before {
	left: 18px;
	transform: rotate(45deg);
}
.evaluation__tagsItemPopupTitle {
	color: #FFF;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 8px;
}
.evaluation__tagsItemPopupText {
	color: #B7BAD6;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.45;
}
@media (max-width: 1800px) {
	.evaluation__container {
		grid-template-columns: 1fr 1fr;
	}
	.evaluation__container {
		gap: 60px
	}
	.evaluation__content {
		padding: 75px 55px;
	}
	.evaluation__advantages {
		margin: 48px -55px;
		padding: 48px 55px;
	}
	.evaluation__title {
		margin-bottom: 40px;
	}
	.evaluation__advantagesItemNum {
		font-size: 40px;
	}
	.evaluation__tags {
		max-width: 100%;
	}
}
@media (max-width: 1500px) {
}
@media (max-width: 1260px) {
	.evaluation__container {
		grid-template-columns: 1fr;
		gap: 144px
	}
	.evaluation__content {
		padding: 80px 60px;
	}
	.evaluation__advantages {
        margin: 40px -60px;
        padding: 40px 60px;
    }
	.evaluation__advantagesItemNum {
		font-size: 50px;
	}
	.evaluation__advantagesItemTitle {
		font-size: 14px;
	}
}
@media (max-width: 991px) {
	.evaluation__tagsItem {
		font-size: 14px;
		min-height: 48px;
	}
	.evaluation__container {
		gap: 60px;
	}
	.evaluation {
		padding: 60px 0;
	}
	.evaluation__title {
		margin-bottom: 30px;
	}
	.evaluation__content {
		padding: 40px;
	}
	.evaluation__advantages {
        margin: 40px -40px;
        padding: 30px 40px;
    }
	.evaluation__advantagesItemNum {
		font-size: 30px;
	}
	.evaluation__advantagesItem {
		gap: 10px;
	}
	.evaluation__text {
		font-size: 14px;
	}
}
@media (max-width: 767px) {
}
@media (max-width: 575px) {
	.evaluation {
		overflow: unset;
		z-index: 2;
	}
	.evaluation__tagsItem {
		min-height: 34px;
		padding: 8px 10px;
		font-size: 14px;
	}
	.evaluation__tags {
		gap: 5px;
	}
	.evaluation__content {
		padding: 30px;
	}
	.evaluation__advantages {
        margin: 30px -30px;
        padding: 30px 30px;
    }
	.evaluation__advantagesItem {
		flex-direction: column;
		gap: 8px;
		align-items: flex-start;
	}
	.evaluation__advantages {
		gap: 24px;
	}
	.evaluation::after {
		opacity: .8;
	}

	.evaluation__tagsItemPopup {
		width: 220px;
		padding: 12px;
	}
}
@media (max-width: 355px) {
	.evaluation__content {
		padding: 20px;
	}
	.evaluation__advantages {
        margin: 20px -20px;
        padding: 20px 20px;
    }
	.evaluation__title {
		margin-bottom: 20px;
	}
}
/* evaluation */

/* questions */
.questions {
	border-top: 1px solid #608EB4;
	border-bottom: 1px solid #608EB4;
	background-color: #05060a;
	background-image: url(../img/questions__bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	z-index: 1;
}
.questions::before {
	content: "";
	position: absolute;
	top: -3px;
	left: 15%;
	width: 72px;
	height: 5px;
	border-radius: 999px;
	background: #40EDF7;
	animation: lineMoveX 6s ease-in-out infinite alternate;
	transition: .25s var(--transition-base);
}
.questions::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	aspect-ratio: 1.004184;
	background-image: url(../img/noise.png);
	background-repeat: repeat;
	background-position: center;
	z-index: -1;
	pointer-events: none;
}
.questions__container {
	padding: 0 var(--section-padding);
	min-height: 495px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.questions__content {
}
.questions__title {
	margin-bottom: 50px;
}
.questions__text {
	color: #FFF;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.questions__btn {
	margin-top: 40px;
}
.questions__img {
}
@media (max-width: 1500px) {
}
@media (max-width: 1260px) {
	.questions {
		background-position: 61% center;
	}
	.questions__text {
		font-size: 14px;
		max-width: 450px;
	}
	.questions__container {
		min-height: 440px;
	}
}
@media (max-width: 991px) {
	.questions__container {
		min-height: 438px;
		padding-top: 90px;
		align-items: flex-start;
	}
	.questions__text {
		max-width: 290px;
	}
	.questions__btn {
		margin-top: 30px;
	}
	.questions__title {
		margin-bottom: 30px;
	}
}
@media (max-width: 767px) {
}
@media (max-width: 575px) {
	.questions__container {
		 padding-top: 60px;
	}
	.questions {
		width: 100%;
		height: auto;
		aspect-ratio: 0.534918;
		background-image: url(../img/questions__bgMobile.jpg);
	}
	.questions::after {
		opacity: .8;
	}
}
/* questions */

/* footer */
.footer {
	padding: 40px 0;
	background-color: #000;
	position: relative;
	z-index: 1;
}
.footer::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/noise.png);
	background-repeat: repeat;
	background-position: center;
	z-index: -1;
	pointer-events: none;
}
.footer__container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 var(--section-padding);
}
.footer__logo {
	max-width: 331px;
	width: 100%;
	height: auto;
}
.footer__logo img {
	width: 100%;
	height: auto;
}
.footer__info {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 16px;
	text-align: right;
}
.footer__phone {
	color: #FFF;
	text-align: right;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
.footer__phone:hover {
	color: var(--color-hover);
}
.footer__mail {
	color: #FFF;
	text-align: right;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
.footer__mail:hover {
	color: var(--color-hover);
}
.footer__company {
	color: #FFF;
	text-align: right;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
@media (max-width: 1500px) {
}
@media (max-width: 1260px) {
	.footer__phone {
		font-size: 14px;
	}
	.footer__company {
		font-size: 14px;
	}
	.footer {
		padding: 30px 0;
	}
}
@media (max-width: 991px) {
}
@media (max-width: 767px) {
	.footer__container {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 30px;
	}
	.footer__info {
		align-items: flex-start;
	}
	.footer__logo {
		max-width: 280px;
	}
}
@media (max-width: 575px) {
	.footer__logo {
		max-width: 210px;
	}
	.footer {
		padding: 20px 0 30px;
	}
	.footer::after {
		opacity: .8;
	}
}
/* footer */

/* form popup */
.white-popup {
    position: relative;
    background: #FFF;
    width: auto;
    max-width: 1090px;
    margin: 20px auto;
    border-radius: 30px;
}
.white-popup.formSuccess {
    position: relative;
    background: #FFF;
    width: auto;
    max-width: 670px;
    margin: 20px auto;
    border-radius: 30px;
}
.form .mfp-close {
    font-size: 0;
    width: 30px;
    height: auto;
	aspect-ratio: 1;
	line-height: 1;
    right: 36px;
    top: 36px;
    opacity: 1;
}
.form .mfp-close:before,
.form .mfp-close:after {
	content: '';
    width: 100%;
    height: 1px;
    background-color: #C7C7C7;
    position: absolute;
    left: 50%;
    top: 50%;
}
.form .mfp-close:hover:before,
.form .mfp-close:hover:after {
    background-color: var(--color-accent);
}
.form .mfp-close:before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.form .mfp-close:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.form__content {
	padding: 140px 130px 58px;
}
.formSuccess .form__content {
	padding: 140px;
}
.formSuccess .form__title {
	margin-bottom: 20px;
	text-align: center;
}
.formSuccess .form__text {
	text-align: center;
}
.form__title {
    margin-bottom: 30px;
	color: #010312;
}
.form__text {
	color: #010312;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.form__wrapper {
	border-top: 1px solid #000;
	padding: 58px 130px 120px;
	position: relative;
}
.form__wrapper::before {
    content: "";
    position: absolute;
    top: -3px;
    right: 30%;
    width: 72px;
    height: 5px;
    border-radius: 999px;
    background: #40EDF7;
    animation: lineMoveX 6s ease-in-out infinite alternate;
    transition: .25s var(--transition-base);
}
.form__block {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 40px;
}
.form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: center;
	flex-direction: column;
	gap: 20px;
}
.form form input {
    width: 100%;
	max-width: 320px;
	height: 80px;
	border-radius: 20px;
	border: 1px solid #B6B6B6;
	padding: 10px 40px;
	color: #3E3E3E;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.form form input:focus-visible {
    outline: none;
}
.form form textarea {
    width: 100%;
	max-width: 100%;
	width: 100%;
	height: 150px;
	border-radius: 20px;
	border: 1px solid #B6B6B6;
	padding: 20px 40px;
	color: #3E3E3E;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	resize: none;
	grid-column: -1/1;
	outline: none;
}
.form .form__grid input {
	max-width: 100%;
	width: 100%;
}
.form form button {
	display: flex;
	white-space: nowrap;
	margin: 20px auto 40px;
}
.form form button:hover {

}
@media (max-width: 1800px) {
}
@media (max-width: 1500px) {
}
@media (max-width: 1260px) {
	.white-popup {
		max-width: 740px;
	}
	.form__content {
		padding: 90px 90px 40px;
	}
	.form__title {
		font-size: 35px;
		text-align: center;
	}
	.form__text {
		font-size: 14px;
		text-align: center;
	}
	.form .mfp-close {
		right: 24px;
		top: 24px;
	}
	.form__wrapper{
		padding: 40px 110px 60px;
	}
	.form form input {
		height: 68px;
		max-width: 290px;
	}
	.form .form__grid input {
		max-width: 100%;
		width: 100%;
	}
	.form__block {
		margin-bottom: 35px;
	}
	.formSuccess .form__content {
		padding: 90px;
	}
	.white-popup.formSuccess {
		max-width: 520px;
	}
	.form__grid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 991px) {
	.white-popup {
		max-width: 680px;
	}
	.form__title {
		font-size: 30px;
		margin-bottom: 25px;
	}
	.form__content {
		padding: 80px 90px 40px;
	}
	.form__text {
		max-width: 420px;
		margin: 0 auto;
	}
	.form__wrapper {
        padding: 40px 80px 50px;
    }
	.formSuccess .form__content {
		padding: 80px;
	}
	.white-popup.formSuccess {
		max-width: 500px;
	}
}
@media (max-width: 767px) {
	.form__content {
        padding: 80px 40px 40px;
    }
	.form__wrapper::before {
		right: 200px
	}
	.form__wrapper {
        padding: 40px 40px 50px;
    }
	.form form input {
		max-width: 100%;
		flex: 1;
	}
	.form form button {
		flex: none;
	}
}
@media (max-width: 575px) {
	.form__wrapper {
		padding: 30px 30px 50px;
	}
	.form__block{
		flex-direction: column;
		gap: 15px;
	}
	.form form input {
		flex: none;
	}
	.form form button {
		width: 100%;
	}
	.form__content {
		padding: 60px 30px 30px;
	}
	.form__title {
		font-size: 25px;
		margin-bottom: 25px;
	}
	.form .mfp-close {
        right: 16px;
        top: 16px;
		width: 26px;
    }
	.form__block {
		margin-bottom: 30px;
	}
	.formSuccess .form__content {
		padding: 60px 30px;
	}
}
/* form popup */

/* Magnific popup */
.my-mfp-zoom-in .zoom-anim-dialog {
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
}
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
}
.my-mfp-zoom-in.mfp-bg {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}
.my-mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.6;
	background-color: #010312;
}
.my-mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}
.my-mfp-slide-bottom {
    opacity: 0;
    opacity--webkit-transition: opacity 0.3s ease-out;
    opacity--moz-transition: opacity 0.3s ease-out;
    opacity--o-transition: opacity 0.3s ease-out;
    opacity-transition: opacity 0.3s ease-out;
}
.my-mfp-slide-bottom .zoom-anim-dialog {
    opacity: 0;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    -moz-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    -ms-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    -o-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    transform: translateY(-20px) perspective(600px) rotateX(10deg);
}
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
    opacity: 1;
    -webkit-transform: translateY(0) perspective(600px) rotateX(0);
    -moz-transform: translateY(0) perspective(600px) rotateX(0);
    -ms-transform: translateY(0) perspective(600px) rotateX(0);
    -o-transform: translateY(0) perspective(600px) rotateX(0);
    transform: translateY(0) perspective(600px) rotateX(0);
}
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
    opacity: 0;
    -webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    -moz-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    -ms-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    -o-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    transform: translateY(-10px) perspective(600px) rotateX(10deg);
}
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
    opacity: 0.8;
}
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
    opacity: 0;
}
/* Magnific popup */

/* checkbox */
.checkbox {
	margin: 0;
	display: block;
}
.checkbox>input {
	position: absolute;
	z-index: -1;
	opacity: 0;
	max-width: 10px;
}
.checkbox>span {
	display: block;
	color: #054375;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	position: relative;
	cursor: pointer;
	padding-left: 50px;
}
.checkbox>span a {
	text-decoration: underline;
}
.checkbox>span a:hover {
	text-decoration: none;
}
.checkbox>span::before {
	content: '';
	width: 35px;
	height: auto;
	aspect-ratio: 1;
	border-radius: 50%;
	border: 1px solid #B6B6B6;
	background-color: transparent;
	flex: none;
	position: absolute;
	left: 0;
	top: -4px;
	background-repeat: no-repeat;
	background-position: center;
	transition: .25s all ease-in-out;
}
.checkbox>span::after {
	content: '';
	width: 21px;
	height: auto;
	aspect-ratio: 1;
	border-radius: 50%;
	background-color: #40EDF7;
	flex: none;
	position: absolute;
    left: 7px;
    top: 3px;
	background-repeat: no-repeat;
	background-position: center;
	transition: .25s all ease-in-out;
	opacity: 0;
	visibility: hidden;
}
.checkbox>input:checked+span::before {
	border-color: #40EDF7;
}
.checkbox>input:checked+span::after {
	opacity: 1;
	visibility: visible;
}
.checkbox>input:disabled+span {
	background-color: #e9ecef;
	opacity: .5;
}
/* checkbox */
