/* VARS */

:root {
  --animation-duration: 0.2s;
  --color-bg: #132344;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-blue: #006fff;
  --color-blue-dark: #252d4c;
  --color-blue-dark2: #13258b;
  --color-blue-light: #afc6e4;
  --color-blue-light2: #6591ff;
  --color-yellow: #e7e714;
  --color-red: #dd0000;
}

/* FONTS */

@font-face {
  font-family: SFProDisplay;
  font-display: swap;
  src: url("../fonts/SFProDisplay-Bold.woff2") format("woff2"), url("../fonts/SFProDisplay-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: SFProDisplay;
  font-display: swap;
  src: url("../fonts/SFProDisplay-Medium.woff2") format("woff2"), url("../fonts/SFProDisplay-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: SFProDisplay;
  font-display: swap;
  src: url("../fonts/SFProDisplay-Regular.woff2") format("woff2"), url("../fonts/SFProDisplay-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

/* CSS RESET */

* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-tap-highlight-color: transparent;
}

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

html,
body {
  position: relative;
  min-width: 360px;
  height: 100%;
}

body {
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

input,
button,
textarea,
select {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type="submit"] {
  display: inline-block;
  background-color: transparent;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
}

input:focus,
input:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

a {
  color: inherit;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

address {
  font-style: normal;
}

legend {
  display: block;
}

svg *[fill] {
  fill: currentColor;
}

svg *[stroke] {
  stroke: currentColor;
}

svg {
  -webkit-transition-property: fill, stroke;
  transition-property: fill, stroke;
}

/* BODY */

body {
  color: var(--color-white);
  font-family: "SFProDisplay", sans-serif;
  font-size: 22px;
  line-height: 1;
  background-color: var(--color-bg);
}

body._locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

/* WRAPPER */

.wrapper {
  position: relative;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.wrapper > * {
  min-width: 0;
}

/* MAIN */

.main {
  padding-top: 170px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  position: relative;
}

.main-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.main-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
  opacity: 0.75;
}

/* CONTAINER */

.container {
  position: relative;
  margin: 0 auto;
  padding: 0 80px;
  width: 100%;
  max-width: 1600px;
}

/* COMMON */

/* SECTION */

.section {
  position: relative;
}

.section:not(:last-child) {
  padding-bottom: 116px;
}

.section:last-child {
  padding-bottom: 100px;
}

.section-top {
  margin-bottom: 72px;
}

.section-title {
  position: relative;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.4;
}

.section-title:not(:last-child) {
  margin-bottom: 12px;
}

.section-title > .bg-line {
  top: 0.75em;
  left: -68px;
  width: 40px;
  height: 1px;
  z-index: 1;
}

.section-title > .bg-line::before,
.section-title > .bg-line::after {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.section-title > .bg-line::before {
  left: 0;
}

.section-title > .bg-line::after {
  right: 0;
}

.section-text {
  font-size: 26px;
  line-height: 1.5;
}

/* CONTENT EDITOR */

.content-editor {
  font-size: 22px;
  line-height: 1.65;
}

.content-editor > *:first-child {
  margin-top: 0;
  padding-top: 0;
}

.content-editor > *:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.content-editor hr {
  display: block;
  background-color: var(--color-blue-light);
  margin-bottom: 20px;
}

.content-editor h1,
.content-editor h2,
.content-editor h3,
.content-editor h4,
.content-editor h5,
.content-editor h6 {
  padding: 0;
  margin: 0;
  margin-top: 40px;
  margin-bottom: 32px;
  font-weight: 600;
  line-height: 1.15;
}

.content-editor h1,
.content-editor h2 {
  font-size: 50px;
}

.content-editor h3 {
  font-size: 40px;
}

.content-editor h4 {
  font-size: 36px;
}

.content-editor h5,
.content-editor h6 {
  font-size: 28px;
}

.content-editor p {
  margin-bottom: 20px;
}

.content-editor img {
  margin-bottom: 20px;
  width: 100%;
  height: auto;
  max-height: 412px;
  -o-object-fit: contain;
  object-fit: contain;
}

.content-editor a {
  font-weight: 500;
  text-decoration: underline;
}

.content-editor ul,
.content-editor ol {
  padding: 0;
  margin: 10px 0 28px;
}

.content-editor ul > li,
.content-editor ol > li {
  list-style-position: inside;
  position: relative;
}

.content-editor ul > li:not(:last-child),
.content-editor ol > li:not(:last-child) {
  margin-bottom: 8px;
}

.content-editor ul > li {
  list-style: disc;
  list-style-position: inside;
}

/* BUTTONS */

.btn {
  padding: 4px 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  min-height: 70px;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--color-black);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  background-color: var(--color-white);
  border-radius: 70px;
  border: 2px solid var(--color-white);
  overflow: hidden;
  -webkit-transition: color var(--animation-duration) ease, background-color var(--animation-duration) ease;
  transition: color var(--animation-duration) ease, background-color var(--animation-duration) ease;
}

.btn::after {
  content: attr(data-btn-text);
  padding: 0 20px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 150%);
  -ms-transform: translate(-50%, 150%);
  transform: translate(-50%, 150%);
  width: 100%;
  z-index: 2;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  will-change: transform;
  -webkit-transition: opacity var(--animation-duration) ease, visibility var(--animation-duration) ease, -webkit-transform var(--animation-duration) ease;
  transition: opacity var(--animation-duration) ease, visibility var(--animation-duration) ease, -webkit-transform var(--animation-duration) ease;
  transition: transform var(--animation-duration) ease, opacity var(--animation-duration) ease, visibility var(--animation-duration) ease;
  transition: transform var(--animation-duration) ease, opacity var(--animation-duration) ease, visibility var(--animation-duration) ease, -webkit-transform var(--animation-duration) ease;
}

.btn > span {
  pointer-events: none;
  will-change: transform;
  -webkit-transition: opacity var(--animation-duration) ease, visibility var(--animation-duration) ease, -webkit-transform var(--animation-duration) ease;
  transition: opacity var(--animation-duration) ease, visibility var(--animation-duration) ease, -webkit-transform var(--animation-duration) ease;
  transition: transform var(--animation-duration) ease, opacity var(--animation-duration) ease, visibility var(--animation-duration) ease;
  transition: transform var(--animation-duration) ease, opacity var(--animation-duration) ease, visibility var(--animation-duration) ease, -webkit-transform var(--animation-duration) ease;
}

/* FORM-SECTION */

.form-section {
  padding: 120px 0 320px;
  position: relative;
  z-index: 2;
}

.form-section-bg-line--l.bg-line {
  bottom: 0;
  left: 15px;
  width: 1px;
  height: 95%;
}

.form-section-bg-line--l.bg-line::before {
  top: 0;
  left: -2px;
}

.form-section-bg-line--l.bg-line::after {
  bottom: -3px;
  left: -2px;
}

.form-section-bg-square--rb.bg-square {
  bottom: -1px;
  right: -1px;
  width: 7vw;
  height: 150px;
  border-bottom-color: transparent;
  border-right-color: transparent;
}

.form-section-bg-square--rb.bg-square::before {
  top: -3px;
  left: -3px;
}

.form-section-bg-square--rb.bg-square::after {
  bottom: -3px;
  left: -3px;
}

.form-section__inner.form-section__inner--small {
  margin: 0 auto;
  max-width: 1052px;
}

.form-section__top {
  margin-bottom: 32px;
}

.form-section__title.section-title {
  display: inline-block;
}

.form-section__title.section-title > .bg-line {
  left: -65px;
  width: 50vw;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}

.form-section__title.section-title > .bg-line::before {
  display: none;
}

.form-section__title.section-title > .bg-line::after {
  right: -4px;
}

.form-section__title.section-title > .bg-square {
  top: 0.75em;
  right: -65px;
  -webkit-transform: translate(100%, -100%);
  -ms-transform: translate(100%, -100%);
  transform: translate(100%, -100%);
  width: 12vw;
  height: 50vh;
  border-left-color: transparent;
  border-top-color: transparent;
}

.form-section__title.section-title > .bg-square::before {
  bottom: -3px;
  left: -3px;
}

.form-section__title.section-title > .bg-square::after {
  bottom: -3px;
  right: -3px;
}

.form-section__body {
  padding: 56px 44px 0;
  position: relative;
}

.form-section__body .form-row:not(:last-child) {
  margin-bottom: 56px;
}

.form-section__body .form-section-bg-line--r.bg-line {
  top: 50%;
  left: calc(100% + 60px);
  width: 50vw;
  height: 1px;
}

.form-section__body .form-section-bg-line--r.bg-line::before {
  top: -2px;
}

.form-section__body .form-section-bg-line--r.bg-line::after {
  display: none;
}

.form-section__btns {
  margin-top: -32px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 24px;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
}

.form-section__btns > .form-btn {
  margin: 0;
}

/* FORMS */

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border-radius: 0;
}

.form {
  position: relative;
}

.form:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  background: rgba(37, 45, 76, 0.4) url("../img/loading.svg") center/100px 100px no-repeat;
  border-radius: 12px;
  -webkit-transition: all var(--animation-duration) ease 0s;
  transition: all var(--animation-duration) ease 0s;
}

.form._sending::after {
  opacity: 1;
  visibility: visible;
}

.form._sending button[type="submit"] {
  opacity: 0.3;
  pointer-events: none;
}

.form-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-row:not(:last-child) {
  margin-bottom: 24px;
}

.form-row.form-row--3cols {
  -ms-grid-columns: (1fr) [3];
  grid-template-columns: repeat(3, 1fr);
}

.form-row.form-row--4cols {
  -ms-grid-columns: (1fr) [4];
  grid-template-columns: repeat(4, 1fr);
}

.form-row > .form-item:not(:last-child) {
  margin: 0;
}

.form-item {
  position: relative;
  font-size: 22px;
}

.form-item:not(:last-child) {
  margin-bottom: 24px;
}

.form-item > a {
  color: var(--color-blue-light);
  -webkit-transition: color var(--animation-duration) ease;
  transition: color var(--animation-duration) ease;
}

.form-item #pass-strength-result {
  margin-top: 5px;
  padding: 0 12px;
  text-align: right;
  font-size: 14px;
  line-height: 1;
}

.form-item #pass-strength-result.strong {
  color: green;
}

.form-item #pass-strength-result.good {
  color: yellow;
}

.form-item #pass-strength-result.bad {
  color: orange;
}

.form-item #pass-strength-result.short {
  color: red;
}

.form-label {
  margin-bottom: 20px;
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
}

.form-input {
  padding: 0 30px;
  display: block;
  width: 100%;
  height: 70px;
  color: var(--color-white);
  font-size: 22px;
  line-height: 1;
  background-color: var(--color-blue-dark);
  border-radius: 12px !important;
}

.form-input:focus::-webkit-input-placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input:focus::-moz-placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input:focus:-ms-input-placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input:focus::-ms-input-placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input:focus::placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input::-webkit-input-placeholder {
  color: var(--color-blue-light);
  -webkit-transition: opacity 0.1s ease, visibility 0.1s ease;
  transition: opacity 0.1s ease, visibility 0.1s ease;
}

.form-input::-moz-placeholder {
  color: var(--color-blue-light);
  -moz-transition: opacity 0.1s ease, visibility 0.1s ease;
  transition: opacity 0.1s ease, visibility 0.1s ease;
}

.form-input:-ms-input-placeholder {
  color: var(--color-blue-light);
  -ms-transition: opacity 0.1s ease, visibility 0.1s ease;
  transition: opacity 0.1s ease, visibility 0.1s ease;
}

.form-input::-ms-input-placeholder {
  color: var(--color-blue-light);
  -ms-transition: opacity 0.1s ease, visibility 0.1s ease;
  transition: opacity 0.1s ease, visibility 0.1s ease;
}

.form-input::placeholder {
  color: var(--color-blue-light);
  -webkit-transition: opacity 0.1s ease, visibility 0.1s ease;
  transition: opacity 0.1s ease, visibility 0.1s ease;
}

.form-input.form-input--ta {
  padding: 20px 30px;
  resize: none;
  height: 180px;
  overflow: auto;
  outline: none;
  line-height: 1.2;
}

.form-input.form-input--select {
  outline: none;
}

.form-input.form-input--select option {
  color: black;
  background-color: white;
}

.form-input.form-input--select option:disabled {
  opacity: 0.5;
}

.form-input.form-input--select option:checked {
  background-color: olive;
}

.form-input._error {
  -webkit-box-shadow: inset 0 0 0 1px var(--color-red);
  box-shadow: inset 0 0 0 1px var(--color-red);
}

.form-checkboxes {
  min-height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 44px;
}

.form-info {
  text-align: center;
  color: var(--color-yellow);
  font-size: 16px;
  line-height: 1.2;
}

.form-info:has(> *) {
  margin-bottom: 32px;
}

.form-info > *:not(:last-child) {
  margin-bottom: 10px;
}

.form-btn {
  margin-top: 16px;
  width: 310px;
}

/* CHECKBOX & RADIO */

.radio-label,
.checkbox-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.radio-input,
.checkbox-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.radio-custom,
.checkbox-custom {
  margin-right: 20px;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background-color: var(--color-blue-dark);
}

.radio-custom:after,
.checkbox-custom:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  z-index: 1;
  background-color: var(--color-blue-light);
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.radio-custom {
  border-radius: 50%;
}

.radio-custom:after {
  border-radius: 50%;
}

.checkbox-custom {
  border-radius: 4px;
}

.checkbox-custom:after {
  border-radius: 2px;
}

.radio-txt,
.checkbox-txt {
  position: relative;
  color: var(--color-blue-light);
  font-size: 22px;
  line-height: 1.2;
  -webkit-transition: color var(--animation-duration) ease;
  transition: color var(--animation-duration) ease;
}

.radio-input:checked ~ .radio-custom:after,
.radio-input:checked ~ .checkbox-custom:after,
.checkbox-input:checked ~ .radio-custom:after,
.checkbox-input:checked ~ .checkbox-custom:after {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.radio-input:focus-visible ~ .radio-custom,
.radio-input:focus-visible ~ .checkbox-custom,
.checkbox-input:focus-visible ~ .radio-custom,
.checkbox-input:focus-visible ~ .checkbox-custom {
  -webkit-box-shadow: 0 0 0 1px black, 0 0 0 2px white;
  box-shadow: 0 0 0 1px black, 0 0 0 2px white;
}

.radio-input:disabled ~ .radio-custom,
.radio-input:disabled ~ .checkbox-custom,
.checkbox-input:disabled ~ .radio-custom,
.checkbox-input:disabled ~ .checkbox-custom {
  opacity: 0.3;
}

.radio-input._error ~ .radio-custom,
.radio-input._error ~ .checkbox-custom,
.checkbox-input._error ~ .radio-custom,
.checkbox-input._error ~ .checkbox-custom {
  -webkit-box-shadow: inset 0 0 0 1px var(--color-red);
  box-shadow: inset 0 0 0 1px var(--color-red);
}

/* VIDEO */

.video {
  padding-bottom: 68%;
  position: relative;
  width: 100%;
  height: 0;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
}

.video._playing .video-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-overlay {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: background-color var(--animation-duration) ease, opacity var(--animation-duration) ease, visibility var(--animation-duration) ease;
  transition: background-color var(--animation-duration) ease, opacity var(--animation-duration) ease, visibility var(--animation-duration) ease;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 96px;
  height: 68px;
  z-index: 2;
  background: url("../img/icons/play.svg") center/contain no-repeat;
}

.video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}

/* BORDER DASHED */

._border-dashed {
  position: relative;
}

._border-dashed::before {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.4;
  border-radius: 12px;
  background-image: url("data:image/svg+xml;utf8,    <svg width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'>    <rect width='100%' height='100%' rx='12' ry='12'     style='fill:none;stroke:%23006FFF;stroke-width:4;stroke-dasharray:15 15'/>    </svg>");
}

/* BG-LINE */

.section-bg-lines {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.section-bg-lines > .container {
  height: 100%;
}

.bg-line {
  opacity: 0.7;
  pointer-events: none;
  display: block;
  position: absolute;
  z-index: -1;
  background-color: var(--color-blue-dark2);
}

.bg-line::after,
.bg-line::before {
  display: block;
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--color-blue-light2);
  border: 1px solid var(--color-blue-dark2);
  border-radius: 50%;
}

.bg-square {
  opacity: 0.7;
  pointer-events: none;
  display: block;
  position: absolute;
  z-index: -1;
  border: 1px solid var(--color-blue-dark2);
}

.bg-square::after,
.bg-square::before {
  display: block;
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--color-blue-light2);
  border: 1px solid var(--color-blue-dark2);
  border-radius: 50%;
}

/* POPUP */

.popup {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
}

.popup._open {
  opacity: 1;
  visibility: visible;
}

.popup._open .popup-content {
  opacity: 1;
  -webkit-transform: perspective(600px) translate(0px, 0%) rotateX(0deg);
  transform: perspective(600px) translate(0px, 0%) rotateX(0deg);
}

html._loaded .popup {
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease, visibility 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease, visibility 0.6s ease, -webkit-transform 0.6s ease;
}

.popup-body {
  padding: 88px 20px;
  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;
  min-height: 100%;
}

.popup-content {
  padding: 30px;
  position: relative;
  width: 100%;
  max-width: 400px;
  color: var(--color-white);
  background-color: var(--color-bg);
  border-radius: 12px;
  opacity: 0;
  -webkit-transform: perspective(600px) translate(0px, -100%) rotateX(45deg);
  transform: perspective(600px) translate(0px, -100%) rotateX(45deg);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease, -webkit-transform 0.6s ease;
}

.popup-content._border-dashed::before {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: calc(100% + 40px);
  height: calc(100% + 40px);
}

.popup-close__btn {
  position: absolute;
  top: -70px;
  right: 0;
  width: 32px;
  height: 32px;
  z-index: 2;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid var(--color-white);
}

.popup-close__btn::after,
.popup-close__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56%;
  height: 1px;
  background-color: var(--color-white);
  -webkit-transition: background-color var(--animation-duration) ease;
  transition: background-color var(--animation-duration) ease;
}

.popup-close__btn::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.popup-close__btn::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.popup-title {
  font-size: 40px;
  font-weight: 500;
  text-align: left;
}

.popup-title:not(:last-child) {
  margin-bottom: 12px;
}

.popup-text {
  font-size: 20px;
  line-height: 1.55;
}

/* HEADER */

.header {
  padding: 70px 0 40px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}

.header:has(.header-menu._active)::after {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: var(--color-bg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.header > .container {
  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;
  gap: 60px;
}

.header-logo {
  position: relative;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 225px;
  height: 55px;
  z-index: 3;
}

.header-logo img,
.header-logo svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left center;
  object-position: left center;
}

.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
}

.header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6px 60px;
}

.header-menu > li > a {
  padding: 2px 0;
  position: relative;
  display: inline-block;
  color: var(--color-blue-light);
  font-size: 18px;
  line-height: 1;
}

.header-menu > li > a::after {
  content: "";
  pointer-events: none;
  position: absolute;
  bottom: -2px;
  left: 50%;
  -webkit-transform: translateX(-50%) scaleX(0);
  -ms-transform: translateX(-50%) scaleX(0);
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 1px;
  background-color: var(--color-blue-light);
  -webkit-transition: -webkit-transform var(--animation-duration) ease;
  transition: -webkit-transform var(--animation-duration) ease;
  transition: transform var(--animation-duration) ease;
  transition: transform var(--animation-duration) ease, -webkit-transform var(--animation-duration) ease;
}

html._loaded .header-menu {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.header-btn.btn {
  position: relative;
  width: 184px;
  min-height: 54px;
  border-radius: 54px;
  font-size: 16px;
  z-index: 3;
}

.header-burger {
  display: none;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  z-index: 3;
  cursor: pointer;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 1px solid var(--color-white);
  border-radius: 6px;
}

.header-burger::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: calc(100% + 12px);
  height: calc(100% + 12px);
}

.header-burger span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 55%;
  height: 1px;
  background-color: var(--color-white);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.header-burger span:before,
.header-burger span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  -webkit-transition: top 0.4s ease, left 0.4s ease, -webkit-transform 0.4s ease;
  transition: top 0.4s ease, left 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, top 0.4s ease, left 0.4s ease;
  transition: transform 0.4s ease, top 0.4s ease, left 0.4s ease, -webkit-transform 0.4s ease;
}

.header-burger span:before {
  top: -7px;
  width: 100%;
}

.header-burger span:after {
  top: 7px;
  width: 100%;
}

.header-burger._active span {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.header-burger._active span:before {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  -ms-transform: translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg);
}

.header-burger._active span:after {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

/* FOOTER */

.footer {
  padding: 92px 0 72px;
  position: relative;
}

.footer > .container {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 40px;
}

.footer-bg-line {
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
}

.footer-bg-line::before,
.footer-bg-line::after {
  display: none;
}

.footer-copy {
  color: var(--color-blue-light);
  font-size: 22px;
  line-height: 1.5;
}

.footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6px 40px;
}

.footer-menu > li {
  font-size: 22px;
}

.footer-menu > li > a {
  position: relative;
  display: inline-block;
  color: var(--color-blue-light);
}

.footer-menu > li > a::after {
  content: "";
  pointer-events: none;
  position: absolute;
  bottom: -2px;
  left: 50%;
  -webkit-transform: translateX(-50%) scaleX(0);
  -ms-transform: translateX(-50%) scaleX(0);
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 1px;
  background-color: var(--color-blue-light);
  -webkit-transition: -webkit-transform var(--animation-duration) ease;
  transition: -webkit-transform var(--animation-duration) ease;
  transition: transform var(--animation-duration) ease;
  transition: transform var(--animation-duration) ease, -webkit-transform var(--animation-duration) ease;
}

/* INTRO */

.intro {
  margin-bottom: 112px;
  padding: 30px 0 192px;
  position: relative;
}

.intro-bg-square--l.bg-square {
  top: -204px;
  right: 65%;
  width: 44vw;
  height: 248px;
  border-right-color: transparent;
}

.intro-bg-square--l.bg-square::before,
.intro-bg-square--l.bg-square::after {
  bottom: -3px;
}

.intro-bg-square--l.bg-square::before {
  left: 60%;
}

.intro-bg-square--l.bg-square::after {
  right: -4px;
}

.intro-bg-square--ct.bg-square {
  top: -204px;
  left: calc(35% - 1px);
  width: 30%;
  height: calc(28% + 204px);
  border-right-color: transparent;
}

.intro-bg-square--ct.bg-square::before {
  left: -2px;
  bottom: -3px;
}

.intro-bg-square--ct.bg-square::after {
  display: none;
}

.intro-bg-square--r.bg-square {
  top: 7%;
  right: 45px;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  width: 30vw;
  height: 220px;
  border-bottom-color: transparent;
}

.intro-bg-square--r.bg-square::before,
.intro-bg-square--r.bg-square::after {
  left: -3px;
}

.intro-bg-square--r.bg-square::before {
  top: -2px;
}

.intro-bg-square--r.bg-square::after {
  bottom: -3px;
}

.intro-bg-line--rt.bg-line {
  top: calc(7% + 219px);
  left: 76%;
  width: 42vw;
  height: 1px;
}

.intro-bg-line--rt.bg-line::before,
.intro-bg-line--rt.bg-line::after {
  display: none;
}

.intro-bg-line--lb.bg-line,
.intro-bg-line--rb.bg-line {
  bottom: -60px;
  height: 1px;
}

.intro-bg-line--lb.bg-line::before,
.intro-bg-line--lb.bg-line::after,
.intro-bg-line--rb.bg-line::before,
.intro-bg-line--rb.bg-line::after {
  display: none;
}

.intro-bg-line--lb.bg-line {
  right: 50%;
  width: 50vw;
}

.intro-bg-line--cb.bg-line {
  bottom: -57px;
  left: 50%;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  width: 1px;
  height: 115px;
}

.intro-bg-line--cb.bg-line::before {
  left: -2px;
}

.intro-bg-line--cb.bg-line::after {
  display: none;
}

.intro-bg-line--rb.bg-line {
  left: 76%;
  width: 42vw;
}

.intro-bg-line--imgb.bg-line {
  bottom: -60px;
  left: 76%;
  width: 1px;
  height: 40%;
}

.intro-bg-line--imgb.bg-line::before {
  bottom: -2px;
  left: -2px;
}

.intro-bg-line--imgb.bg-line::after {
  display: none;
}

.intro-bg-square--cb.bg-square {
  bottom: -60px;
  left: calc(35% - 1px);
  width: 30%;
  height: calc(30% + 60px);
  border-right-color: transparent;
  border-bottom-color: transparent;
}

.intro-bg-square--cb.bg-square::before {
  left: -3px;
  top: -3px;
}

.intro-bg-square--cb.bg-square::after {
  left: -3px;
  bottom: -4px;
}

.intro-body {
  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;
  gap: 30px;
}

.intro-content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.intro-content__top {
  margin-bottom: 20px;
}

.intro-title {
  font-size: 60px;
  font-weight: 500;
  line-height: 1.15;
}

.intro-subtitle {
  font-size: 36px;
  line-height: 1.3;
}

.intro-text {
  margin-bottom: 40px;
  max-width: 586px;
  color: var(--color-blue-light);
}

.intro-btn {
  width: 100%;
  max-width: 384px;
}

.intro-img {
  position: relative;
  z-index: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 53%;
}

.intro-img > .img {
  padding-bottom: 100%;
  position: relative;
  width: 100%;
  height: 0;
  z-index: 2;
}

.intro-img > .img img,
.intro-img > .img svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(8%, 1%) scale(1.25);
  -ms-transform: translate(8%, 1%) scale(1.25);
  transform: translate(8%, 1%) scale(1.25);
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: right center;
  object-position: right center;
}

.intro-mouse {
  position: absolute;
  bottom: -80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 44px;
  height: 70px;
  z-index: 2;
  background: url("../img/icons/mouse.svg") center/contain no-repeat;
  -webkit-animation: upDown 1.8s linear 0s infinite alternate;
  animation: upDown 1.8s linear 0s infinite alternate;
}

@-webkit-keyframes upDown {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  35% {
    -webkit-transform: translate3d(-50%, -12px, 0);
    transform: translate3d(-50%, -12px, 0);
  }

  65% {
    -webkit-transform: translate3d(-50%, -12px, 0);
    transform: translate3d(-50%, -12px, 0);
  }

  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes upDown {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  35% {
    -webkit-transform: translate3d(-50%, -12px, 0);
    transform: translate3d(-50%, -12px, 0);
  }

  65% {
    -webkit-transform: translate3d(-50%, -12px, 0);
    transform: translate3d(-50%, -12px, 0);
  }

  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}

/* HOW */

.how {
  position: relative;
  z-index: 3;
}

.how-bg-line--l.bg-line,
.how-bg-line--r1.bg-line {
  bottom: -36px;
  width: 1px;
}

.how-bg-line--l.bg-line {
  left: 14px;
  height: calc(100% + 280px);
}

.how-bg-line--l.bg-line::before {
  top: -3px;
  left: -2px;
}

.how-bg-line--l.bg-line::after {
  display: none;
}

.how-bg-line--r1.bg-line {
  right: 96px;
  height: calc(100% - 200px);
}

.how-bg-line--r1.bg-line::before {
  display: none;
}

.how-bg-line--r1.bg-line::after {
  bottom: -4px;
  left: -2px;
}

.how-bg-line--r2.bg-line {
  top: 236px;
  right: 96px;
  width: 130px;
  height: 1px;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.how-bg-line--r2.bg-line::before {
  top: -2px;
  left: -3px;
}

.how-bg-line--r2.bg-line::after {
  display: none;
}

.how-bg-line--r3.bg-line {
  top: 236px;
  right: -32px;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  width: 1px;
  height: 480px;
}

.how-bg-line--r3.bg-line::before {
  top: -3px;
  left: -2px;
}

.how-bg-line--r3.bg-line::after {
  bottom: -3px;
  left: -2px;
}

.how-items {
  margin-bottom: 50px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.how-item {
  position: relative;
  -ms-grid-column-span: 1;
  grid-column: 1 span;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.how-item:nth-child(1) .how-item-bg-square.bg-square,
.how-item:nth-child(1) .how-item-bg-square.bg-line,
.how-item:nth-child(2) .how-item-bg-square.bg-square,
.how-item:nth-child(2) .how-item-bg-square.bg-line,
.how-item:nth-child(3) .how-item-bg-square.bg-square,
.how-item:nth-child(3) .how-item-bg-square.bg-line {
  display: none;
}

.how-item:nth-child(1) .how-item-bg-square.bg-square {
  top: 49%;
  left: calc(9% + 3px);
  -webkit-transform: translate(-100%, -100%);
  -ms-transform: translate(-100%, -100%);
  transform: translate(-100%, -100%);
  width: 30%;
  height: 90px;
  border-bottom-color: transparent;
}

.how-item:nth-child(1) .how-item-bg-square.bg-square::before {
  top: -3px;
  right: -3px;
}

.how-item:nth-child(1) .how-item-bg-square.bg-square::after {
  display: none;
}

.how-item:nth-child(1) .how-item-bg-square.bg-line {
  top: 49%;
  left: 9%;
  width: 34%;
  height: 1px;
}

.how-item:nth-child(1) .how-item-bg-square.bg-line::before {
  top: -2px;
  left: 0;
}

.how-item:nth-child(1) .how-item-bg-square.bg-line::after {
  top: -2px;
  right: 0;
}

.how-item:nth-child(2) .how-item-bg-square.bg-square {
  top: 49%;
  left: 18%;
  width: 21%;
  height: 30px;
  border-right-color: transparent;
  border-bottom-color: transparent;
}

.how-item:nth-child(2) .how-item-bg-square.bg-square::before {
  top: -3px;
  left: -3px;
}

.how-item:nth-child(2) .how-item-bg-square.bg-square::after {
  top: -3px;
  right: 0;
}

.how-item:nth-child(2) .how-item-bg-square.bg-line {
  top: 49%;
  right: 0;
  width: 33%;
  height: 1px;
}

.how-item:nth-child(2) .how-item-bg-square.bg-line::before {
  top: -2px;
  left: 0;
}

.how-item:nth-child(2) .how-item-bg-square.bg-line::after {
  display: none;
}

.how-item:nth-child(3) .how-item-bg-square.bg-square {
  top: 49%;
  left: 18%;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  width: 21%;
  height: 64px;
  border-right-color: transparent;
  border-top-color: transparent;
}

.how-item:nth-child(3) .how-item-bg-square.bg-square::before {
  bottom: -3px;
  left: -3px;
}

.how-item:nth-child(3) .how-item-bg-square.bg-square::after {
  bottom: -3px;
  right: 0;
}

.how-item__num {
  margin-top: 4px;
  margin-right: 20px;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 62px;
  height: 84px;
}

.how-item__num img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: top left;
  object-position: top left;
}

.how-item__body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.how-item__body > div:nth-child(1) {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
}

.how-item__body > div:nth-child(2) {
  margin-top: 8px;
}

.how-body {
  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;
}

.how-video__wrapper {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 30px;
}

.how-video-bg-square.bg-square {
  display: none;
  top: -30px;
  left: 50%;
  width: 70%;
  height: 20px;
  border-right-color: transparent;
  border-bottom-color: transparent;
}

.how-video-bg-square.bg-square::before {
  top: -3px;
  left: -3px;
}

.how-video-bg-square.bg-square::after {
  display: none;
}

.how-btns {
  padding: 0 52px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 488px;
}

.how-btns__item:not(:last-child) {
  margin-bottom: 132px;
}

.how-btn {
  width: 100%;
}

.how-btns__item-text {
  margin-top: 22px;
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
}

/* CONTACTS */

.contacts {
  position: relative;
  z-index: 2;
}

.contacts > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.contacts-bg-line--r {
  bottom: 0;
  right: 20px;
  width: 1px;
  height: calc(100% - 35px);
}

.contacts-bg-line--r::before {
  top: 0;
  left: -2px;
}

.contacts-bg-line--r::after {
  bottom: -3px;
  left: -2px;
}

.contacts-title.section-title {
  margin-bottom: 32px;
  display: inline-block;
}

.contacts-list {
  margin-bottom: 40px;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 50px;
}

.contacts-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contacts-item__icon {
  margin-right: 24px;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 44px;
  height: 50px;
}

.contacts-item__icon img,
.contacts-item__icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.contacts-item__body > div:nth-child(1) {
  font-size: 18px;
  line-height: 1.2;
}

.contacts-item__body > div:nth-child(2) {
  margin-top: 4px;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 500;
}

.contacts-item__body > div > a {
  position: relative;
  -webkit-transition: color var(--animation-duration) ease;
  transition: color var(--animation-duration) ease;
}

.contacts-item__body > div > a[href*="mailto"],
.contacts-item__body > div > a[href*="tel"] {
  white-space: nowrap;
}

.contacts-form {
  padding: 40px;
}

.contacts-vacancies {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 464px;
}

/* VACANCIES */

.vacancies-bg-line.bg-line {
  display: block;
  left: auto;
  right: 0;
  width: 100vw;
  -webkit-transform: translateX(calc(100% + 40px));
  -ms-transform: translateX(calc(100% + 40px));
  transform: translateX(calc(100% + 40px));
  z-index: -2;
}

.vacancies-bg-line.bg-line::before,
.vacancies-bg-line.bg-line::after {
  display: none;
}

.vacancies-item {
  padding: 40px 40px 30px;
}

.vacancies-item:not(:last-child) {
  margin-bottom: 32px;
}

.vacancies-item__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.vacancies-item__top:not(:last-child) {
  margin-bottom: 12px;
}

.vacancies-item__icon {
  margin-right: 20px;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
}

.vacancies-item__icon img,
.vacancies-item__icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 85%;
  height: 85%;
  -o-object-fit: contain;
  object-fit: contain;
}

.vacancies-item__title {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.55;
}

/* PAGE-404 */

.page-404 {
  padding: 0 50px;
}

.page-404__inner {
  padding: 18vh 0 20vh;
}

.page-404__inner > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.page-404__title {
  color: var(--color-blue-light);
  font-size: 240px;
  font-weight: 700;
}

/* RESPONSIVE */

@media screen and (max-width: 1439.98px) {
  .main {
    padding-top: 140px;
  }

  .section-title {
    font-size: 44px;
  }

  .section-text {
    font-size: 22px;
  }

  .content-editor {
    font-size: 18px;
  }

  .content-editor h1,
  .content-editor h2 {
    font-size: 44px;
  }

  .content-editor h3 {
    font-size: 36px;
  }

  .content-editor h4 {
    font-size: 28px;
  }

  .content-editor h5,
  .content-editor h6 {
    font-size: 24px;
  }

  .btn {
    font-size: 20px;
    min-height: 60px;
  }

  .form-section {
    padding: 80px 0 200px;
  }

  .form-section__body {
    padding: 56px 30px 0;
  }

  .form-item {
    font-size: 18px;
  }

  .form-label {
    margin-bottom: 16px;
    font-size: 18px;
  }

  .form-input {
    padding: 0 24px;
    height: 62px;
    font-size: 18px;
  }

  .form-input.form-input--ta {
    padding: 20px 24px;
  }

  .form-checkboxes {
    min-height: 62px;
  }

  .radio-txt,
  .checkbox-txt {
    font-size: 18px;
  }

  .header {
    padding: 40px 0;
  }

  .intro {
    padding: 30px 0 120px;
  }

  .intro-bg-line--cb.bg-line {
    height: 60px;
  }

  .intro-title {
    font-size: 52px;
  }

  .intro-subtitle {
    font-size: 28px;
  }

  .intro-subtitle {
    font-size: 22px;
  }

  .intro-mouse {
    width: 32px;
    height: 48px;
  }

  .how-bg-line--l.bg-line,
  .how-bg-line--r1.bg-line {
    bottom: -32px;
  }

  .how-bg-line--l.bg-line {
    height: calc(100% + 208px);
  }

  .how-bg-line--r1.bg-line {
    right: 40px;
  }

  .how-bg-line--r1.bg-line {
    right: 20px;
  }

  .how-bg-line--r2.bg-line {
    right: 40px;
  }

  .how-bg-line--r2.bg-line {
    right: 20px;
  }

  .how-bg-line--r3.bg-line {
    display: none;
  }

  .how-item__num {
    width: 48px;
    height: 68px;
  }

  .how-item__body > div:nth-child(1) {
    font-size: 20px;
  }

  .how-video__wrapper {
    padding: 20px;
  }

  .how-btns {
    padding: 0 0 0 40px;
    width: 420px;
  }

  .how-btns__item:not(:last-child) {
    margin-bottom: 80px;
  }

  .how-btns__item-text {
    margin-top: 12px;
    font-size: 18px;
  }

  .contacts-bg-line--r::before {
    display: none;
  }

  .contacts-list {
    padding: 30px;
    gap: 32px 44px;
  }

  .contacts-form {
    padding: 30px;
  }

  .contacts-vacancies {
    width: 400px;
  }

  .vacancies-item {
    padding: 30px;
  }

  .vacancies-item__title {
    font-size: 20px;
  }

  .page-404 {
    padding: 0 20px;
  }
}

@media screen and (max-width: 1199.98px) {
  .main {
    padding-top: 110px;
  }

  .container {
    padding: 0 40px;
  }

  .section:not(:last-child) {
    padding-bottom: 84px;
  }

  .section:last-child {
    padding-bottom: 68px;
  }

  .section-top {
    margin-bottom: 56px;
  }

  .section-title > .bg-line {
    display: none;
  }

  .form-section-bg-square--rb.bg-square {
    display: none;
  }

  .form-section__title.section-title > .bg-square {
    right: -40px;
  }

  .form-section__body .form-row:not(:last-child) {
    margin-bottom: 24px;
  }

  .form-section__body .form-section-bg-line--r.bg-line {
    display: none;
  }

  .form-section__btns {
    margin-top: -12px;
  }

  .form-row.form-row--4cols {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .form-info:has(> *) {
    margin-bottom: 20px;
  }

  .popup-title {
    font-size: 32px;
  }

  .popup-text {
    font-size: 18px;
  }

  .header {
    padding: 30px 0;
  }

  .header-logo {
    width: 168px;
    height: 42px;
  }

  .header-btn.btn {
    min-height: 44px;
  }

  .footer {
    padding: 60px 0;
  }

  .footer-copy {
    font-size: 18px;
  }

  .footer-menu > li {
    font-size: 18px;
  }

  .intro {
    margin-bottom: 20px;
  }

  .intro-bg-square--l.bg-square {
    height: 200px;
  }

  .intro-bg-square--r.bg-square {
    right: 24px;
  }

  .intro-img {
    width: 45%;
  }

  .intro-mouse {
    display: none;
  }

  .how-bg-line--l.bg-line {
    display: none;
  }

  .how-items {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .how-item:nth-child(3) {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }

  .how-btns {
    width: 360px;
  }

  .how-btns__item:not(:last-child) {
    margin-bottom: 60px;
  }

  .contacts > .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  .contacts-body {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .contacts-list {
    margin-bottom: 30px;
  }

  .contacts-vacancies {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 68px;
    width: 100%;
  }

  .vacancies-item:not(:last-child) {
    margin-bottom: 20px;
  }

  .vacancies-item__icon {
    width: 80px;
    height: 80px;
  }

  .vacancies-item__icon {
    width: 60px;
    height: 60px;
  }
}

@media screen and (max-width: 991.98px) {
  .container {
    padding: 0 20px;
  }

  .section-title {
    text-align: center;
  }

  .section-text {
    text-align: center;
  }

  .form-section {
    padding: 40px 0 140px;
  }

  .form-section-bg-line--l.bg-line {
    display: none;
  }

  .form-section__title.section-title {
    display: block;
    text-align: center;
  }

  .form-section__title.section-title > .bg-square {
    display: none;
  }

  .form-section__btns > .form-btn {
    max-width: 300px;
  }

  .form-row.form-row--3cols {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .form-item #pass-strength-result {
    font-size: 10px;
  }

  .form-info {
    font-size: 12px;
  }

  .form-btn {
    margin: 32px auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 400px;
  }

  .header > .container {
    gap: 40px;
  }

  .header-nav {
    gap: 40px;
  }

  .header-menu {
    gap: 6px 30px;
  }

  .header-btn.btn {
    width: 132px;
  }

  .intro {
    margin-bottom: 0;
    padding: 30px 0 110px;
  }

  .intro-bg-square--l.bg-square,
  .intro-bg-square--ct.bg-square,
  .intro-bg-square--r.bg-square,
  .intro-bg-square--cb.bg-square {
    display: none;
  }

  .intro-bg-line--rt.bg-line {
    top: 5%;
    left: auto;
    right: 10%;
    width: 1px;
    height: 47%;
  }

  .intro-bg-line--rt.bg-line::before {
    display: block;
    top: 0;
    left: -2px;
  }

  .intro-bg-line--rt.bg-line::after {
    display: block;
    bottom: -3px;
    left: -2px;
  }

  .intro-bg-line--lb.bg-line {
    top: -40px;
    bottom: auto;
    right: auto;
    left: 6%;
    width: 1px;
    height: 73%;
  }

  .intro-bg-line--lb.bg-line::before {
    display: block;
    top: 0;
    left: -2px;
  }

  .intro-bg-line--cb.bg-line {
    top: 48%;
    bottom: auto;
    left: 0;
    width: 30%;
    height: 1px;
    z-index: 1;
  }

  .intro-bg-line--cb.bg-line::before {
    top: -2px;
    left: 19%;
  }

  .intro-bg-line--rb.bg-line {
    top: 52%;
    left: auto;
    right: 0;
    z-index: -2;
  }

  .intro-bg-line--imgb.bg-line {
    top: calc(73% - 40px);
    left: 6%;
    bottom: auto;
    width: 45%;
    height: 1px;
  }

  .intro-bg-line--imgb.bg-line::after {
    display: block;
    top: -2px;
    right: 0;
  }

  .intro-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 0;
  }

  .intro-content {
    display: contents;
  }

  .intro-content__top {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 0;
  }

  .intro-content__bottom {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-top: -12px;
  }

  .intro-img {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: -6px;
    width: 80%;
    max-width: 500px;
  }

  .intro-img > .img img,
  .intro-img > .img svg {
    -webkit-transform: translate(5%, 0) scale(1.3);
    -ms-transform: translate(5%, 0) scale(1.3);
    transform: translate(5%, 0) scale(1.3);
  }

  .how-bg-line--l,
  .how-bg-line--r1,
  .how-bg-line--r2 {
    display: none;
  }

  .how-items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .how-item {
    display: block;
    text-align: center;
  }

  .how-item:nth-child(3) {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }

  .how-item:nth-child(1) .how-item-bg-square.bg-square,
  .how-item:nth-child(1) .how-item-bg-square.bg-line,
  .how-item:nth-child(2) .how-item-bg-square.bg-square,
  .how-item:nth-child(2) .how-item-bg-square.bg-line,
  .how-item:nth-child(3) .how-item-bg-square.bg-square,
  .how-item:nth-child(3) .how-item-bg-square.bg-line {
    display: block;
  }

  .how-item__num {
    margin: 0 auto 16px;
    width: 100%;
  }

  .how-item__num img {
    -o-object-position: center;
    object-position: center;
  }

  .how-body {
    display: block;
  }

  .how-video__wrapper {
    margin-bottom: 40px;
  }

  .how-video-bg-square.bg-square {
    display: block;
  }

  .how-btns {
    padding: 0;
    width: 100%;
    text-align: center;
  }

  .how-btns__item:not(:last-child) {
    margin-bottom: 36px;
  }

  .how-btn {
    max-width: 300px;
  }

  .contacts-bg-line--r {
    display: none;
  }

  .contacts-title.section-title {
    display: block;
  }

  .vacancies-bg-line.bg-line {
    display: none;
  }
}

@media screen and (max-width: 767.98px) {
  .main {
    padding-top: 100px;
  }

  .section-title {
    font-size: 36px;
  }

  .section-text {
    font-size: 18px;
  }

  .content-editor h1,
  .content-editor h2 {
    font-size: 36px;
  }

  .content-editor h3 {
    font-size: 28px;
  }

  .content-editor h4 {
    font-size: 22px;
  }

  .content-editor h5,
  .content-editor h6 {
    font-size: 18px;
  }

  .btn {
    font-size: 16px;
    min-height: 52px;
  }

  .form-section {
    padding: 40px 0 68px;
  }

  .form-section__body {
    padding: 30px 20px;
  }

  .form-section__btns {
    margin-top: 0;
    padding-top: 12px;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .form-section__btns > .form-btn {
    max-width: unset;
  }

  .form-row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .form-row.form-row--2colsmob {
    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;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .form-row.form-row--3cols {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .form-row.form-row--4cols {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .form-item {
    font-size: 16px;
  }

  .form-label {
    font-size: 16px;
  }

  .form-input {
    padding: 0 20px;
    height: 56px;
    font-size: 16px;
  }

  .form-input.form-input--ta {
    padding: 20px;
  }

  .form-checkboxes {
    padding-bottom: 8px;
    min-height: unset;
    gap: 20px 32px;
  }

  .radio-custom,
  .checkbox-custom {
    margin-right: 10px;
    width: 24px;
    height: 24px;
  }

  .radio-custom:after,
  .checkbox-custom:after {
    width: 14px;
    height: 14px;
  }

  .radio-txt,
  .checkbox-txt {
    font-size: 16px;
  }

  .header > .container {
    gap: 20px;
  }

  .header-logo {
    width: 120px;
    height: 32px;
  }

  .header-nav {
    gap: 20px;
  }

  .header-menu {
    padding: 140px 0 40px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 24px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: var(--color-bg);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transform: translate3d(105%, 0, 0);
    transform: translate3d(105%, 0, 0);
    will-change: transform;
  }

  .header-menu._active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .header-menu > li > a {
    font-size: 24px;
  }

  .header-btn.btn {
    width: 120px;
    min-height: 36px;
    font-size: 14px;
  }

  .header-burger {
    display: block;
  }

  .footer > .container {
    gap: 20px 28px;
  }

  .footer-copy {
    font-size: 14px;
  }

  .footer-menu {
    gap: 6px 24px;
  }

  .footer-menu > li {
    font-size: 14px;
  }

  .intro-title {
    font-size: 44px;
  }

  .how-btns__item-text {
    font-size: 16px;
  }

  .page-404 {
    padding: 0;
  }

  .page-404__inner {
    padding: 160px 0;
    border-radius: 0;
  }

  .page-404__title {
    font-size: 35vw;
  }
}

@media screen and (max-width: 575.98px) {
  .main {
    padding-top: 90px;
  }

  .main-bg img {
    opacity: 0.6;
  }

  .container {
    padding: 0 12px;
  }

  .section:not(:last-child) {
    padding-bottom: 34px;
  }

  .section:last-child {
    padding-bottom: 20px;
  }

  .section-top {
    margin-bottom: 28px;
  }

  .section-title {
    font-size: 30px;
  }

  .section-title:not(:last-child) {
    margin-bottom: 4px;
  }

  .section-text {
    font-size: 14px;
  }

  .content-editor {
    font-size: 14px;
  }

  .content-editor h1,
  .content-editor h2 {
    font-size: 30px;
  }

  .content-editor h3 {
    font-size: 24px;
  }

  .content-editor h4 {
    font-size: 20px;
  }

  .content-editor h5,
  .content-editor h6 {
    font-size: 16px;
  }

  .form-section {
    padding: 20px 0;
  }

  .form-section__top {
    margin-bottom: 20px;
  }

  .form-row.form-row--2colsmob .radio-txt,
  .form-row.form-row--2colsmob .checkbox-txt,
  .form-row.form-row--2colsmob .form-item {
    font-size: 14px;
  }

  .form-item #pass-strength-result {
    font-size: 12px;
  }

  .form-info {
    font-size: 14px;
  }

  .video-play {
    width: 46px;
    height: 34px;
  }

  .popup-body {
    padding: 68px 20px;
  }

  .popup-content {
    padding: 20px;
  }

  .popup-content._border-dashed::before {
    width: calc(100% + 20px);
    height: calc(100% + 20px);
  }

  .popup-close__btn {
    top: -52px;
  }

  .header-logo {
    width: 98px;
    height: 26px;
  }

  .header-menu {
    padding: 120px 0 40px;
  }

  .header-menu > li > a {
    font-size: 20px;
  }

  .header-btn.btn {
    min-height: 28px;
    font-size: 12px;
  }

  .header-burger {
    width: 28px;
    height: 28px;
  }

  .header-burger span:before {
    top: -5px;
  }

  .header-burger span:after {
    top: 5px;
  }

  .footer {
    padding: 40px 0;
  }

  .footer-bg-line {
    display: none;
  }

  .footer-copy {
    font-size: 12px;
  }

  .footer-menu > li {
    font-size: 12px;
  }

  .intro {
    padding: 12px 0 52px;
  }

  .intro-title {
    margin-bottom: 4px;
    font-size: 34px;
  }

  .intro-subtitle {
    font-size: 16px;
  }

  .intro-text {
    margin-bottom: 24px;
  }

  .intro-btn {
    max-width: 300px;
  }

  .how-item__num {
    height: 52px;
  }

  .how-item__body > div:nth-child(1) {
    font-size: 16px;
  }

  .how-video__wrapper {
    padding: 10px;
  }

  .contacts-title.section-title {
    margin-bottom: 20px;
  }

  .contacts-list {
    padding: 40px;
  }

  .contacts-item__body > div:nth-child(1) {
    font-size: 14px;
  }

  .contacts-item__body > div:nth-child(2) {
    font-size: 16px;
  }

  .contacts-form {
    padding: 28px 20px;
  }

  .contacts-vacancies {
    margin-bottom: 38px;
  }

  .vacancies-item {
    padding: 20px;
  }

  .vacancies-item__title {
    font-size: 16px;
  }

  .page-404__inner {
    padding: 120px 0;
  }
}

@media (pointer: fine) {
  .content-editor a:hover {
    text-decoration: none;
  }

  .btn:hover {
    color: var(--color-white);
    background-color: var(--color-bg);
  }

  .btn:hover::after {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .btn:hover > span {
    -webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
  }

  .form-item > a:hover {
    color: var(--color-blue);
  }

  .radio-label:hover .radio-txt,
  .radio-label:hover .checkbox-txt,
  .checkbox-label:hover .radio-txt,
  .checkbox-label:hover .checkbox-txt {
    color: var(--color-blue);
  }

  .video:hover .video-overlay {
    background-color: rgba(0, 0, 0, 0.25);
  }

  .popup-close__btn:hover::after,
  .popup-close__btn:hover::before {
    background-color: var(--color-red);
  }

  .header-menu > li > a:hover::after {
    -webkit-transform: translateX(-50%) scaleX(1);
    -ms-transform: translateX(-50%) scaleX(1);
    transform: translateX(-50%) scaleX(1);
  }

  .footer-menu > li > a:hover::after {
    -webkit-transform: translateX(-50%) scaleX(1);
    -ms-transform: translateX(-50%) scaleX(1);
    transform: translateX(-50%) scaleX(1);
  }

  .contacts-item__body > div > a:hover {
    color: var(--color-blue);
  }
}
