/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
* {
  box-sizing: border-box;
}

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

html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Libraries, which is used in current project. */
/* Libraries, which is used in current project. */
/* Some styles, which is used for correct sprite-generation, vars, mixins and etc */
/* Please, do not edit with file! */
/* This file can be overwritten by update-project! */
/* Mixins, which are specific for current project */
/* Mixins and vars for sprite generation */
/* Scss for used fonts */
/* Vars, which are specific for current project */
/* Styles for UI-elements */
:root {
  --font-family: "Manrope", sans-serif;
  --color-main: #fff;
  --color-accent:#007aff;
  --transition: .3s ease-out;
}

h1, h2, h3, h4, h5, .title {
  margin: 0;
  padding: 0;
  font-weight: bold;
  line-height: 1.1;
  font-family: var(--font-family);
}

a {
  outline: none;
  text-decoration: none;
  color: var(--color-main);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.button {
  height: 40px;
  padding: 0 24px 1px;
  font-size: 12px;
  color: #fff;
  border-radius: 35px;
  border: 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: -webkit-box;
  display: flex;
  position: relative;
  -webkit-box-align: center;
          align-items: center;
  font-weight: 500;
  outline: none;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  overflow: hidden;
  background: none;
  font-family: var(--font-family);
}
.button span {
  position: relative;
  z-index: 2;
}
.button--secondary {
  border: 1px solid var(--color-accent);
}
.button--secondary:before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, from(#005aff), to(#0097ff));
  background: linear-gradient(0turn, #005aff 0%, #0097ff 100%);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  opacity: 0;
}
.button--secondary:hover {
  border-color: transparent;
}
.button--secondary:hover:before {
  opacity: 1;
}
.button--primary {
  background: #00439a;
}
.button--primary:before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, from(#005aff), to(#0097ff));
  background: linear-gradient(0turn, #005aff 0%, #0097ff 100%);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.button--primary:hover:before {
  opacity: 0;
}
.button--medium {
  height: 48px;
  padding: 0 32px 1px;
  font-size: 14px;
}
.button--big {
  height: 64px;
  padding: 0 48px 1px;
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 992px) {
  .button--big {
    height: 48px;
    padding: 0 32px 1px;
    font-size: 14px;
  }
}

.face-svg {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-35%, -50%);
          transform: translate(-35%, -50%);
  pointer-events: none;
  --face-line: #0097ff;
  --face-dot: #fff;
  --face-soft: #0097ff;
  --face-glow: #0097ff;
}
.face-svg svg {
  min-width: 1400px;
  height: auto;
}
.face-svg_main {
  -webkit-transform: translate(-45%, -48%);
          transform: translate(-45%, -48%);
}
.face-svg_main svg {
  min-width: 1500px;
}
@media (max-width: 992px) {
  .face-svg {
    position: initial;
    overflow: hidden;
    width: initial;
    -webkit-transform: none;
            transform: none;
    margin: -50px -20px -42px;
  }
  .face-svg svg {
    min-width: 700px;
    -webkit-transform: translateX(-280px);
            transform: translateX(-280px);
  }
}
.face-svg .cls-5 {
  fill: var(--face-line) !important;
}
.face-svg .cls-8 {
  fill: var(--face-dot) !important;
}
.face-svg .cls-16 {
  fill: var(--face-soft) !important;
}
.face-svg .cls-22 {
  fill: var(--face-glow) !important;
}

/* Common styles for current project */
html, body {
  height: 100%;
}

body {
  background: #080c17;
  color: var(--color-main);
  font-size: 16px;
  font-family: var(--font-family);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-display: swap;
  font-variant-numeric: lining-nums;
}

/*! Common
-----------------------
 */
.section-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 100px;
}

.container {
  padding: 0 32px;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .container {
    padding: 0 20px;
  }
}

/*! Main Page
-----------------------
 */
.main-page {
  position: relative;
  overflow: hidden;
  background: #080c17 url("../img/content/bg.webp") no-repeat 50% 100%;
  background-size: cover;
}
.main-page:before {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
  content: "";
  z-index: 2;
  position: absolute;
  pointer-events: none;
}
@media (max-width: 992px) {
  .main-page:before {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  }
}
.main-page__ill {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  left: 0;
}
.main-page__block {
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  padding: 64px 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
          justify-content: space-between;
  gap: 48px;
}
@media (max-width: 992px) {
  .main-page__block {
    padding: 24px 0 32px;
    gap: 32px;
  }
}
.main-page__topbar {
  position: relative;
  z-index: 3;
}
@media (max-width: 992px) {
  .main-page__topbar {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
  }
}
.main-page__content {
  position: relative;
  z-index: 3;
  width: 100%;
  -webkit-box-flex: 1;
          flex: auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
          justify-content: center;
}
@media (max-width: 992px) {
  .main-page__content {
    overflow: hidden;
  }
}
.main-page__content-button {
  margin: 32px 0 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 8px;
}
.main-page__content-button .button {
  width: 240px;
}
@media (max-width: 992px) {
  .main-page__content-button {
    margin: 24px 0 0;
    width: 100%;
  }
  .main-page__content-button .button {
    width: 100%;
  }
}
.main-page__face {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-35%, -50%);
          transform: translate(-35%, -50%);
  pointer-events: none;
  --face-line: #0097ff;
  --face-dot: #fff;
  --face-soft: #0097ff;
  --face-glow: #0097ff;
}
.main-page__face svg {
  min-width: 1400px;
  height: auto;
}
@media (max-width: 992px) {
  .main-page__face {
    position: initial;
    overflow: hidden;
    width: 100%;
    -webkit-transform: none;
            transform: none;
    margin: 0 0 -34px;
  }
  .main-page__face svg {
    min-width: 500px;
    -webkit-transform: translateX(-130px);
            transform: translateX(-130px);
  }
}
.main-page__face .cls-5 {
  fill: var(--face-line) !important;
}
.main-page__face .cls-8 {
  fill: var(--face-dot) !important;
}
.main-page__face .cls-16 {
  fill: var(--face-soft) !important;
}
.main-page__face .cls-22 {
  fill: var(--face-glow) !important;
}
.main-page__title {
  display: grid;
  max-width: 800px;
  color: #fff;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  --shift: 24px;
}
@media (max-width: 992px) {
  .main-page__title {
    font-size: 28px;
    text-align: center;
    --shift: 16px;
    -webkit-box-align: end;
            align-items: flex-end;
  }
}
.main-page__title > span {
  grid-area: 1/1;
}
.main-page__title .js-word {
  display: inline-block;
  white-space: nowrap;
}
.main-page__title[data-split] .js-char {
  display: inline-block;
  opacity: 0;
}
.main-page__bottom {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 24px;
  position: relative;
  z-index: 3;
}
@media (max-width: 992px) {
  .main-page__bottom {
    margin-top: 48px;
    -webkit-box-pack: center;
            justify-content: center;
    width: 100%;
  }
}
.main-page__social {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 16px;
}
.main-page__social a img {
  height: 44px;
  width: auto;
}
.main-page__social a:hover {
  opacity: 0.7;
}
.main-page__phone {
  color: #fff;
  font-weight: 600;
  font-size: 17px;
}
.main-page__phone:hover {
  color: var(--color-accent);
}

/*! Hero
--------------------
 */
.hero {
  position: relative;
  overflow: hidden;
  background: #080c17 url("../img/content/bg.webp") no-repeat 50% 100%;
  background-size: cover;
}
.hero:before {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: -webkit-gradient(linear, left bottom, left top, from(#080c17), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, #080c17, rgba(0, 0, 0, 0));
  content: "";
  z-index: 4;
  position: absolute;
  pointer-events: none;
}
.hero__ill {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  left: 0;
}
.hero__block {
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  padding: 100px 0 64px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
          justify-content: center;
  gap: 48px;
}
@media (max-width: 992px) {
  .hero__block {
    padding: 64px 0 32px;
    gap: 32px;
  }
}
.hero__content {
  position: relative;
  z-index: 6;
  width: 100%;
}
.hero__content .main-page__title {
  max-width:1170px !important;
}
@media (max-width: 992px) {
  .hero__content {
    overflow: hidden;
    text-align: center;
  }
}
.hero__content-desc {
  margin:32px 0 0;
  font-size:17px;
  color:#fff;
}
@media (max-width: 992px) {
  .hero__content-desc {
    font-size:15px;
  }
}
.hero__content-desc p {
  margin:0;
}
.hero__content-desc p:not(:last-child) {
  margin:0 0 12px;
}
.hero__content-button {
  margin: 48px 0 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 8px;
}
.hero__content-button .button {
  width: 240px;
}
@media (max-width: 992px) {
  .hero__content-button {
    margin: 24px 0 0;
    width: 100%;
  }
  .hero__content-button .button {
    width: 100%;
  }
}
.hero .main-page__title {
  max-width: 800px;
  font-size: 40px;
}
@media (max-width: 992px) {
  .hero .main-page__title {
    font-size: 24px;
    margin-top: 24px;
  }
}

/*! Features
--------------------
 */
.features__title {
  text-align: center;
  margin: 0 0 48px;
  font-size: 35px;
}
@media (max-width: 992px) {
  .features__title {
    font-size: 28px;
  }
}
.features__grid {
  display: -webkit-box;
  display: flex;
  gap: 24px;
}
@media (max-width: 992px) {
  .features__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    gap: 32px;
  }
}
.features__item {
  text-align: center;
  -webkit-box-flex: 1;
          flex: auto;
}
.features__item.fadeIn {
  -webkit-transform: translateY(32px);
          transform: translateY(32px);
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.features__item.fadeIn:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.features__item.fadeIn:nth-child(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.features__item.fadeIn:nth-child(4) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.features__item.fadeIn_active {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
.features__value {
  font-size: 70px;
  color: transparent;
  background: -webkit-gradient(linear, left bottom, left top, from(#005aff), to(#0097ff));
  background: linear-gradient(0turn, #005aff 0%, #0097ff 100%);
  -webkit-background-clip: text;
  will-change: transform;
  line-height: 1;
  font-weight: bold;
  margin: 0 0 16px;
}
.features__desc {
  font-weight: 300;
  font-size: 15px;
  color: #fff;
  max-width: 280px;
  margin: 0 auto;
}

/*! CTA
--------------------
 */
.cta__block {
  border-radius: 30px;
  padding: 80px 64px;
  text-align: center;
  background: #050a29 url("../img/content/cta-bg.webp") no-repeat 50% 50%;
  background-size: cover;
  color: #fff;
  position: relative;
}
@media (max-width: 992px) {
  .cta__block {
    border-radius: 16px;
    padding: 32px 24px;
  }
}
.cta__block:before {
  content: "";
  position: absolute;
  left: 0;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(42%, rgba(8, 12, 23, 0.67)), to(rgba(255, 247, 5, 0)));
  background: linear-gradient(0turn, rgba(8, 12, 23, 0.67) 42%, rgba(255, 247, 5, 0) 100%);
  top: 0;
  width: 100%;
  height: 100%;
}
.cta_style-2 .cta__block {
  background: #050a29 url("../img/content/cta-bg-2.webp") no-repeat 50% 50%;
  background-size: 101%;
}
@media (max-width: 992px) {
  .cta_style-2 .cta__block {
    background-size: cover;
  }
}
.cta__grid {
  position: relative;
  z-index: 2;
}
.cta__title {
  font-weight: 300;
  font-size: 48px;
}
@media (max-width: 992px) {
  .cta__title {
    font-size: 32px;
  }
}
.cta__desc {
  font-weight: 200;
  font-size: 17px;
  margin: 24px auto;
  max-width: 800px;
}
@media (max-width: 992px) {
  .cta__desc {
    font-size: 14px;
    margin: 18px auto;
  }
}
.cta__button {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
}

/*! Steps
--------------------
 */
.steps {
  color: #fff;
}
.steps__title {
  text-align: center;
  margin: 0 0 16px;
  font-size: 35px;
}
@media (max-width: 992px) {
  .steps__title {
    font-size: 30px;
  }
}
.steps__note {
  font-size: 15px;
  margin: 0 0 48px;
  text-align: center;
}
@media (max-width: 992px) {
  .steps__note {
    font-size: 14px;
  }
}
.steps__grid {
  display: -webkit-box;
  display: flex;
  gap: 32px;
}
@media (max-width: 992px) {
  .steps__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    gap: 100px;
  }
}
.steps__item {
  position: relative;
  -webkit-box-flex: 1;
          flex: 1;
  text-align: center;
}
.steps__item.fadeIn {
  -webkit-transform: translateX(-32px);
          transform: translateX(-32px);
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
@media (max-width: 992px) {
  .steps__item.fadeIn {
    -webkit-transform: translateY(-32px);
            transform: translateY(-32px);
  }
}
.steps__item.fadeIn:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.steps__item.fadeIn:nth-child(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.steps__item.fadeIn:nth-child(4) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.steps__item.fadeIn_active {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
.steps__dots {
  display: -webkit-box;
  display: flex;
  width: 130px;
  -webkit-box-pack: justify;
          justify-content: space-between;
  position: absolute;
  left: calc(100% - 50px);
  top: 50px;
}
@media (max-width: 992px) {
  .steps__dots {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    width: initial;
    height: 50px;
    left: 50%;
    top: calc(100% + 25px);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.steps__dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #007cff;
}
@media (max-width: 992px) {
  .steps__dots span {
    width: 3px;
    height: 3px;
  }
  .steps__dots span:last-child, .steps__dots span:nth-child(4) {
    display: none;
  }
}
.steps__item:last-child .steps__dots {
  display: none;
}
.steps__icon {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  background: #080c17;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  border: 1px solid #00254d;
  margin: 0 auto 24px;
}
.steps__icon img {
  height: 64px;
  width: auto;
}
.steps__label {
  font-size: 19px;
  font-weight: 500;
  margin: 0 0 12px;
}
.steps__text {
  font-size: 14px;
}
@media (max-width: 992px) {
  .steps__text {
    max-width: 300px;
    margin-inline: auto;
  }
  .steps__text br {
    display: none;
  }
}

/*! Circle
--------------------
 */
.circle {
  position: relative;
  overflow: hidden;
  padding: 0 0 64px;
}
@media (max-width: 992px) {
  .circle {
    margin-top: -50px;
    padding: 0 0 80px;
  }
}
.circle:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: -webkit-gradient(linear, left top, left bottom, from(#080c17), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to bottom, #080c17, rgba(0, 0, 0, 0));
  content: "";
  z-index: 2;
  position: absolute;
  pointer-events: none;
}
.circle__frame {
  height: 1200px;
  display: -webkit-box;
  display: flex;
  position: relative;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}
@media (max-width: 992px) {
  .circle__frame {
    height: 500px;
  }
}
.circle__item {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  display: -webkit-box;
  display: flex;
  background: #005aff;
  -webkit-box-align: center;
          align-items: center;
  color: #fff;
  line-height: 1.2;
  border-radius: 14px;
  padding: 20px 28px 20px 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 992px) {
  .circle__item {
    padding: 8px 12px 8px 8px;
    border-radius: 10px;
    font-size: 13px;
  }
}
.circle__item span {
  -webkit-box-flex: 0;
          flex: none;
  margin: 0 12px 0 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #00276e;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}
@media (max-width: 992px) {
  .circle__item span {
    margin: 0 8px 0 0;
    width: 36px;
    height: 36px;
    border-radius: 6px;
  }
}
.circle__item span img {
  height: 30px;
  width: auto;
}
@media (max-width: 992px) {
  .circle__item span img {
    height: 20px;
  }
}
.circle__item_1 {
  left: 8%;
  top: 8%;
}
@media (max-width: 992px) {
  .circle__item_1 {
    left: initial;
    right: 0%;
    top: 24%;
  }
}
.circle__item_2 {
  left: 45%;
  top: 10%;
}
@media (max-width: 992px) {
  .circle__item_2 {
    left: 0;
    top: 5%;
  }
}
.circle__item_3 {
  top: 34%;
  right: 8%;
}
@media (max-width: 992px) {
  .circle__item_3 {
    right: initial;
    left: 10%;
    top: 90%;
  }
}
.circle__item_4 {
  top: 45%;
  left: 8%;
}
@media (max-width: 992px) {
  .circle__item_4 {
    top: 26%;
    left: -4%;
  }
}
.circle__item_5 {
  bottom: 25%;
  right: 25%;
}
@media (max-width: 992px) {
  .circle__item_5 {
    bottom: 15%;
    right: 30%;
  }
}
.circle__item_6 {
  bottom: 15%;
  left: 25%;
}
@media (max-width: 992px) {
  .circle__item_6 {
    left: initial;
    right: -4%;
    bottom: 27%;
  }
}
.circle__icon {
  position: absolute;
  pointer-events: none;
  z-index: 3;
}
.circle__icon img {
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}
@media (max-width: 992px) {
  .circle__icon img {
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }
}
.circle__icon.fadeIn {
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.circle__icon.fadeIn:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.circle__icon.fadeIn:nth-child(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.circle__icon.fadeIn:nth-child(4) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.circle__icon.fadeIn:nth-child(5) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.circle__icon.fadeIn:nth-child(6) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.circle__icon.fadeIn_active {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
.circle__icon_1 {
  left: -4%;
  top: 32%;
}
@media (max-width: 992px) {
  .circle__icon_1 {
    display: none;
  }
}
.circle__icon_2 {
  top: 0;
  right: 20%;
}
@media (max-width: 992px) {
  .circle__icon_2 {
    right: -8%;
    top: 0%;
  }
}
.circle__icon_3 {
  top: 25%;
  left: 35%;
}
@media (max-width: 992px) {
  .circle__icon_3 {
    top: 17%;
    left: 25%;
  }
}
.circle__icon_4 {
  top: 65%;
  left: 14%;
}
@media (max-width: 992px) {
  .circle__icon_4 {
    left: -8%;
    top: 55%;
  }
}
.circle__icon_5 {
  bottom: 0;
  right: 20%;
}
@media (max-width: 992px) {
  .circle__icon_5 {
    right: -5%;
    bottom: -2%;
  }
}
.circle__icon_6 {
  top: 55%;
  right: 10%;
}
@media (max-width: 992px) {
  .circle__icon_6 {
    top: 40%;
    right: -15%;
  }
}
.circle__main {
  position: relative;
  z-index: 4;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  font-size: 39px;
  font-weight: bold;
  padding: 16px;
  border-radius: 50%;
  -webkit-box-pack: center;
          justify-content: center;
  text-align: center;
  background: -webkit-gradient(linear, left bottom, left top, from(#005aff), to(#0097ff));
  background: linear-gradient(0turn, #005aff 0%, #0097ff 100%);
  width: 400px;
  height: 400px;
  color: #fff;
  line-height: 1.2;
}
@media (max-width: 992px) {
  .circle__main {
    width: 250px;
    border-radius: 50px;
    height: initial;
    padding: 20px 12px;
    font-size: 20px;
  }
}
.circle__svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  z-index: 2;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 992px) {
  .circle__svg {
    width: 125%;
    margin-top: 20px;
  }
}
.circle__overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* Plugins, which is used in current project. */
/* Components, which is used in current project. */
/*! Header
-----------------
 */
.header {
  padding: 32px 0;
  z-index: 99;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
@media (max-width: 992px) {
  .header {
    padding: 20px 0;
  }
}
.header_shadow {
  padding: 20px 0;
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
}
.header__grid {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
.header__back {
  font-size: 14px;
  font-weight: 600;
  position: relative;
  z-index: 8;
}
.header__back:hover {
  color: #006bff;
}
.header__burger {
  display: none;
  position: relative;
  z-index: 10;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  width: 26px;
}
@media (max-width: 992px) {
  .header__burger {
    display: -webkit-box;
    display: flex;
  }
}
.header__burger i {
  background: #fff;
  width: 26px;
  display: block;
  height: 2px;
  margin: 3px 0;
  -webkit-transition: width 0.1s linear;
  transition: width 0.1s linear;
}
.header__burger i:first-child {
  top: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  position: relative;
  -webkit-transition: top 0.2s linear, -webkit-transform 0.2s linear;
  transition: top 0.2s linear, -webkit-transform 0.2s linear;
  transition: transform 0.2s linear, top 0.2s linear;
  transition: transform 0.2s linear, top 0.2s linear, -webkit-transform 0.2s linear;
}
.header__burger i:nth-child(2) {
  opacity: 1;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.header__burger i:nth-child(3) {
  position: relative;
  top: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: top 0.2s linear, -webkit-transform 0.2s linear;
  transition: top 0.2s linear, -webkit-transform 0.2s linear;
  transition: transform 0.2s linear, top 0.2s linear;
  transition: transform 0.2s linear, top 0.2s linear, -webkit-transform 0.2s linear;
}
.header__burger_active i:first-child {
  top: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: top 0.2s linear, -webkit-transform 0.2s linear;
  transition: top 0.2s linear, -webkit-transform 0.2s linear;
  transition: transform 0.2s linear, top 0.2s linear;
  transition: transform 0.2s linear, top 0.2s linear, -webkit-transform 0.2s linear;
}
.header__burger_active i:nth-child(2) {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.header__burger_active i:nth-child(3) {
  top: -8px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: top 0.2s linear, -webkit-transform 0.2s linear;
  transition: top 0.2s linear, -webkit-transform 0.2s linear;
  transition: transform 0.2s linear, top 0.2s linear;
  transition: transform 0.2s linear, top 0.2s linear, -webkit-transform 0.2s linear;
}
.header__actions {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 24px;
  position: relative;
  z-index: 3;
}
@media (max-width: 992px) {
  .header__actions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #080c17;
    flex-wrap: wrap;
    -webkit-box-pack: center;
            justify-content: center;
    grid-row-gap: 16px;
    padding: 80px 20px 30px;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
  .header__actions_show {
    opacity: 1;
    pointer-events: auto;
  }
}
.header__social {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 16px;
}
.header__social a img {
  height: 44px;
  width: auto;
}
.header__social a:hover {
  opacity: 0.7;
}
.header__phone {
  color: #fff;
  font-weight: 600;
  font-size: 17px;
}
.header__phone:hover {
  color: var(--color-accent);
}

/*! Modal
------------------------
 */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
  overflow-y: auto;
  opacity: 0;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal.active {
  visibility: visible;
  opacity: 1;
}
.modal-block {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  min-height: 100%;
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 20px;
  color: #fff;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 24px;
  color: #fff;
  font-weight: 100;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 48px;
  line-height: 1;
  cursor: pointer;
}
@media (max-width: 992px) {
  .modal-close {
    top: 0;
    right: 10px;
  }
}
.modal-close:hover {
  opacity: 0.7;
}
.modal-container {
  width: 100%;
  border-radius: 30px;
  padding: 40px 45px;
  background: #002746;
  position: relative;
  max-width: 560px;
  z-index: 2;
  -webkit-transform: scale(0.7) translateY(30%);
          transform: scale(0.7) translateY(30%);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  opacity: 0;
}
@media (max-width: 992px) {
  .modal-container {
    border-radius: 20px;
    padding: 32px;
  }
}
.modal.active .modal-container {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
}
.modal-title {
  text-align: center;
  margin: 0 0 20px;
  font-weight: bold;
  font-size: 30px;
}
@media (max-width: 992px) {
  .modal-title {
    font-size: 24px;
    margin: 0 0 12px;
  }
}
.modal-form__list {
  display: -webkit-box;
  display: flex;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}
.modal-form__field input {
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  height: 60px;
  font-size: 17px;
  color: #fff;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background: none;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-weight: 500;
  width: 100%;
  box-sizing: border-box;
}
.modal-form__field input:focus {
  border-color: #fff;
}
.modal-form__field input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.modal-form__field input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.modal-form__field input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.modal-form__field input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.modal-form__field input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.modal-form .button {
  width: 100%;
  margin: 48px 0 0;
}
@media (max-width: 992px) {
  .modal-form .button {
    margin: 32px 0 0;
  }
}
.result {
  padding:64px 0;
}
@media (max-width: 992px) {
  .result {
    padding:32px 0;
  }
}
.result__title {
  text-align:center;
  margin:0 0 48px;
  font-weight: 300;
  font-size: 32px;
}
@media (max-width: 992px) {
  .result__title {
    margin:0 0 32px;
    font-size: 24px;
  }
}

.result__list {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
@media (max-width: 992px) {
  .result__list {
    grid-template-columns:repeat(1,1fr);
  }
}

.result__item {
  z-index: 3;
  display: -webkit-box;
  display: flex;
  background: #fff;
  -webkit-box-align: center;
  align-items: center;
  color: #000;
  line-height: 1.2;
  gap:12px;
  font-size:20px;
  border-radius: 14px;
  padding: 24px;
}
@media (max-width: 992px) {
  .result__item {
    gap:6px;
    font-size:17px;
    border-radius: 10px;
    padding: 18px;
  }
}
.result__item span {
  -webkit-box-flex: 0;
  flex: none;
  margin: 0 12px 0 0;
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background: #2563eb;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.result__item span img {
  height: 36px;
  width: auto;
}
