:root {
  --fontRoboto: 'Roboto', sans-serif;
  --fontRobotoMono: 'Roboto Mono', monospace;
  --fontCenturyGothic: 'Century Gothic', sans-serif;
  --robotoMono: 'Roboto Mono', monospace;
  --colorLiteAccent: #d2c2ff;
  --colorAccent: #662eff;
  --colorDeepAccent: #1c0b43;
  --colorGray: #9ba9bb;
  --colorBlack: #1c0b43;
  --colorWhite: #fff;

  --lilac: #662eff;
  --dark-lilac: #521DCA;
  --purple: #1c0b43;
  --bl-gray: #9ba9bb;
  --light-gray: #E0E4EA;
  --light-blue: #F7FAFE;
  --violet: #8B61FF;
  --white: #fff;
  --pink: #f54b5e;
  --red: #FF0000;
  --orange: #F5A623;

  --gray-filter: contrast(0) grayscale(100%);
  --light-gray-filter: contrast(0) brightness(150%);
  --white-filter: brightness(10);

  --mob-step: 12px;
  --step: 32px;

  --button-transition: background 0.3s ease, border 0.3s ease;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  --fontH4: 24px;
  --fontH2: 18px;
  --fontP: 16px;
  --fontSub: 12px;

  --purple400: #8B55FF;
  --purple500: #662EFF;
  --purple800: #150833;
  --purple900: #2A174F;
  --purple950: #271840;
  --gray500: #95A2B3;

  --shadow500: 0px 28px 64px rgba(28, 11, 67, 0.25);

  --pad8: 8px;
  --pad16: 16px;
  --pad24: 24px;
  --pad32: 32px;
  --pad40: 40px;
  --pad48: 48px;
  --pad56: 56px;
  --pad64: 64px;
  --pad72: 72px;
  --pad80: 80px;
  --pad88: 88px;
  --pad96: 96px;
  --pad104: 104px;
  --pad112: 112px;
  --pad120: 120px;
}

@font-face {
  font-family: 'icomoon';
  src: url('../icomoon.eot');
  src: url('../icomoon.eot#iefix') format('embedded-opentype'),
  url('../icomoon.ttf') format('truetype'),
  url('../icomoon.woff') format('woff'),
  url('../icomoon.svg#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

.button_primary--light {
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  border-radius: 0.25rem;
  outline: 0;
  box-sizing: border-box;
  padding: 0.9444rem 1.3333rem;
  background-color: #662eff;
  border: 0.063rem solid #662eff;
  color: rgb(255, 255, 255);
 font-family: var(--fontCenturyGothic);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.019rem;
  margin: 0.6666rem;
  transition: var(--button-transition)
}

.button_primary--light:hover,
  .button_primary--light.hover,
  .button_primary--light:focus {
    color: #976eff;
    background-color: #33147d;
    border: 0.063rem solid #33147d;
  }

.button_primary--light:active,
  .button_primary--light.active {
    background-color: #1c0b43;
    border: 0.063rem solid #1c0b43;
    color: #fff;
  }

.button_primary--light:disabled, .button_primary--light.disabled {
    background-color: #e6e6e6;
    border: 0.063rem solid rgb(230, 230, 230);
    color: #9b9b9b;
    cursor: not-allowed;
  }

.button--light {
  vertical-align: middle;
  text-decoration: none;
  border-radius: 0.25rem;
  outline: 0;
  box-sizing: border-box;
  padding: 0.9444rem 1.3333rem;
  background-color: transparent;
  border: 0.063rem solid #662eff;
  color: #662eff;
 font-family: var(--fontCenturyGothic);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.019rem;
  margin: 0.6666rem;
  transition: var(--button-transition)
}

.button--light:hover,
  .button--light.hover,
  .button--light:focus {
    color: #976eff;
    border: 0.063rem solid #1c0b43;
    background-color: #33147d;
  }

.button--light:active,
  .button--light.active {
    border: 0.063rem solid #250e59;
    background-color: #1c0b43;
    color: #fff;
  }

.button--light:disabled {
    background-color: #e6e6e6;
    border: 0.063rem solid #e6e6e6;
    color: #9b9b9b;
    cursor: not-allowed;
  }

.button--dark {
  text-decoration: none;
  border-radius: 0.25rem;
  outline: 0;
  box-sizing: border-box;
  padding: 0.9444rem 1.3333rem;
  background-color: transparent;
  border: 0.063rem solid #662eff;
  color: rgb(255, 255, 255);
 font-family: var(--fontCenturyGothic);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.019rem;
  margin: 0.6666rem;
  transition:  var(--button-transition), color 0.2s ease
}

.button--dark:hover,
  .button--dark.hover {
    border: 0.063rem solid #d2c2ff;
    background-color: #d2c2ff;
    color: #150633;
  }

.button--dark:active,.button--dark:focus,.button--dark.active {
    border: 0.063rem solid #fff;
    background-color: #fff;
    color: #150633;
  }

.button--dark:disabled {
    background-color: #342459;
    border: 0.063rem solid #342459;
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
  }

.button--dark.fullWidth {
    width: 100%;
    margin: 0px;
  }

.button--dark_ru {
    max-width: 180px;
    height: 45px;
    padding: 4px 1.3333rem;
    line-height: 14px
  }

.button--white {
  text-decoration: none;
  border-radius: 0.25rem;
  outline: 0;
  box-sizing: border-box;
  padding: 0.9444rem 1.3333rem;
  background-color: transparent;
  border: 0.063rem solid rgb(255, 255, 255);
  color: rgb(255, 255, 255);
 font-family: var(--fontCenturyGothic);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.019rem;
  margin: 0.6666rem;
  transition:  var(--button-transition)
}

.button--white:hover,
  .button--white.hover,
  .button--white:focus {
    color: #5100ff;
    background-color: #d2c2ff;
    border: 0.063rem solid #d2c2ff;
  }

.button--white:active,
  .button--white.active {
    background-color: #ffffff;
    border: 0.063rem solid #ffffff;
    color: #5100ff;
  }

.button--white:disabled {
    background-color: rgba(122, 74, 255, 0.5);
    border: 0.063rem solid rgba(122, 74, 255, 0.5);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
  }

.button_cancel--light {
  text-decoration: none;
  border-radius: 0.25rem;
  outline: 0;
  box-sizing: border-box;
  padding: 0.9444rem 1.3333rem;
  background-color: transparent;
  border: 0.063rem solid rgb(208, 2, 27);
  color: rgb(208, 2, 27);
 font-family: var(--fontCenturyGothic);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.019rem;
  margin: 0.6666rem;
  transition:  var(--button-transition)
}

.button_cancel--light:hover,
  .button_cancel--light.hover,
  .button_cancel--light:focus {
    background-color: rgba(245, 75, 94, 0.4);
    color: rgb(245, 75, 94);
    border: 0.063rem solid rgba(245, 75, 94, 0.4);
  }

.button_cancel--light:active,
  .button_cancel--light.active {
    background-color: rgb(208, 2, 27);
    border: 0.063rem solid rgb(208, 2, 27);
    color: rgb(255, 255, 255);
  }

.button_cancel--light:disabled {
    color: rgb(155, 155, 155);
    background-color: rgb(230, 230, 230);
    border: 0.063rem solid rgb(230, 230, 230);
  }

.button_cancel--dark {
  text-decoration: none;
  border-radius: 0.25rem;
  outline: 0;
  box-sizing: border-box;
  padding: 0.9444rem 1.3333rem;
  background-color: transparent;
  border: 0.063rem solid rgb(245, 75, 94);
  color: rgb(255, 255, 255);
 font-family: var(--fontCenturyGothic);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.019rem;
  margin: 0.6666rem;
  transition:  var(--button-transition)
}

.button_cancel--dark:hover,
  .button_cancel--dark.hover,
  .button_cancel--dark:focus {
    background-color: transparent;
    color: rgb(245, 75, 94);
    border: 0.063rem solid rgb(245, 75, 94);
  }

.button_cancel--dark:active,
  .button_cancel--dark.active {
    border: 0.063rem solid rgb(245, 75, 94);
    background-color: rgb(245, 75, 94);
    color: rgb(255, 255, 255);
  }

.button_cancel--dark:disabled {
    color: rgba(255, 255, 255, 0.3);
    background-color: rgb(52, 36, 89);
    border: 0.063rem solid rgb(52, 36, 89);
  }

.button_cancel--white {
  text-decoration: none;
  border-radius: 0.25rem;
  outline: 0;
  box-sizing: border-box;
  padding: 0.9444rem 1.3333rem;
  background-color: transparent;
  border: 0.063rem solid rgb(252, 121, 136);
  color: rgb(255, 255, 255);
 font-family: var(--fontCenturyGothic);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.019rem;
  margin: 0.6666rem;
  transition: var(--button-transition)
}

.button_cancel--white:hover,
  .button_cancel--white.hover,
  .button_cancel--white:focus {
    background-color: transparent;
    color: rgb(252, 121, 136);
    border: 0.063rem solid rgb(252, 121, 136);
  }

.button_cancel--white:active,
  .button_cancel--white.active {
    border: 0.063rem solid rgb(252, 121, 136);
    background-color: rgb(252, 121, 136);
    color: rgb(255, 255, 255);
  }

.button_cancel--white:disabled {
    color: rgba(255, 255, 255, 0.4);
    background-color: rgb(122, 74, 255);
    border: 0.063rem solid rgb(122, 74, 255);
  }

.button_cancel_primary--light {
  text-decoration: none;
  border-radius: 0.25rem;
  outline: 0;
  box-sizing: border-box;
  padding: 0.9444rem 1.3333rem;
  background-color: rgb(208, 2, 27);
  border: 0.063rem solid rgb(208, 2, 27);
  color: rgb(255, 255, 255);
 font-family: var(--fontCenturyGothic);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.019rem;
  margin: 0.6666rem;
  transition: var(--button-transition)
}

.button_cancel_primary--light:hover,
  .button_cancel_primary--light.hover,
  .button_cancel_primary--light:focus {
    background-color: transparent;
    color: rgb(245, 75, 94);
    border: 0.063rem solid rgb(245, 75, 94);
  }

.button_cancel_primary--light:active,
  .button_cancel_primary--light.active {
    background-color: transparent;
    border: 0.063rem solid rgb(208, 2, 27);
    color: rgb(208, 2, 27);
  }

.button_cancel_primary--light:disabled {
    color: rgb(155, 155, 155);
    background-color: rgb(230, 230, 230);
    border: 0.063rem solid rgb(230, 230, 230);
  }

.button_cancel_primary--dark {
  text-decoration: none;
  border-radius: 0.25rem;
  outline: 0;
  box-sizing: border-box;
  padding: 0.9444rem 1.3333rem;
  border: 0.063rem solid rgb(245, 75, 94);
  background-color: rgb(245, 75, 94);
  color: rgb(255, 255, 255);
 font-family: var(--fontCenturyGothic);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.019rem;
  margin: 0.6666rem;
  transition: var(--button-transition)
}

.button_cancel_primary--dark:hover,
  .button_cancel_primary--dark.hover,
  .button_cancel_primary--dark:focus {
    background-color: transparent;
    color: rgb(245, 75, 94);
    border: 0.063rem solid rgb(245, 75, 94);
  }

.button_cancel_primary--dark:active,
  .button_cancel_primary--dark.active {
    border: 0.063rem solid rgb(245, 75, 94);
    background-color: transparent;
    color: rgb(255, 255, 255);
  }

.button_cancel_primary--dark:disabled {
    color: rgba(255, 255, 255, 0.3);
    background-color: rgb(52, 36, 89);
    border: 0.063rem solid rgb(52, 36, 89);
  }

.button_cancel_primary--white {
  text-decoration: none;
  border-radius: 0.25rem;
  outline: 0;
  box-sizing: border-box;
  padding: 0.9444rem 1.3333rem;
  background-color: rgb(252, 121, 136);
  border: 0.063rem solid rgb(252, 121, 136);
  color: rgb(255, 255, 255);
 font-family: var(--fontCenturyGothic);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.019rem;
  margin: 0.6666rem;
  transition: var(--button-transition)
}

.button_cancel_primary--white:hover,
  .button_cancel_primary--white.hover,
  .button_cancel_primary--white:focus {
    background-color: transparent;
    color: rgb(252, 121, 136);
    border: 0.063rem solid rgb(252, 121, 136);
  }

.button_cancel_primary--white:active,
  .button_cancel_primary--white.active {
    border: 0.063rem solid rgb(252, 121, 136);
    background-color: transparent;
    color: rgb(255, 255, 255);
  }

.button_cancel_primary--white:disabled {
    color: rgba(255, 255, 255, 0.4);
    background-color: rgb(122, 74, 255);
    border: 0.063rem solid rgb(122, 74, 255);
  }

.button_primary--dark {
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  border-radius: 0.25rem;
  outline: 0;
  box-sizing: border-box;
  padding: 0.9444rem 1.3333rem;
  background-color: #662eff;
  border: 0.063rem solid #662eff;
  color: #fff;
 font-family: var(--fontCenturyGothic);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.019rem;
  margin: 0.6666rem;
  transition: var(--button-transition)
}

.button_primary--dark:hover,
  .button_primary--dark.hover,
  .button_primary--dark:focus {
    color: #150633;
    background-color: #d2c2ff;
    border: 0.063rem solid #d2c2ff;
  }

.button_primary--dark:active,
  .button_primary--dark.active {
    background-color: #fff;
    border: 0.063rem solid #fff;
    color: #150633;
  }

.button_primary--dark:disabled {
    background-color: #342459;
    border: 0.063rem solid #342459;
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
  }

.button_primary--white {
  text-decoration: none;
  margin: 0.6666rem;
  border-radius: 0.25rem;
  outline: 0;
  box-sizing: border-box;
  padding: 0.9444rem 1.3333rem;
  background-color: rgb(255, 255, 255);
  border: 0.063rem solid rgb(255, 255, 255);
  color: #662eff;
 font-family: var(--fontCenturyGothic);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.019rem;
  transition: var(--button-transition)
}

.button_primary--white:hover,
  .button_primary--white.hover,
  .button_primary--white:focus {
    color: #5100ff;
    background-color: #d2c2ff;
    border: 0.063rem solid #d2c2ff;
  }

.button_primary--white:active,
  .button_primary--white.active {
    background-color: #ffffff;
    border: 0.063rem solid #ffffff;
    color: #5100ff;
  }

.button_primary--white:disabled {
    background-color: #342459;
    border: 0.063rem solid rgba(255, 255, 255, 0.35);
    color: rgb(102, 46, 255);
    cursor: not-allowed;
  }

.button_primary--white.resetmargin {
    margin: 0px !important;
  }

.button_primary--white.fullWidth {
    width: 100%;
    margin: 0px;
  }

.button {
  padding: 15px 23px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.1666;
  font-weight: 500;
  font-size: 12px;
  font-family: var(--fontCenturyGothic);
  border: 1px solid transparent;
  text-decoration: none;
  display: inline-block;
  transition: all 200ms ease;
}

.button + .button {
  margin-left: 5px;
}

.button__primary {
  color: #fff;
  background-color: #662eff;
  border: 1px solid #662eff;
}

.button__primary:hover, .button__primary:focus {
  color: #662eff;
  background-color: #fff;
}

.button__secondary {
  color: #662eff;
  border-color: #662eff;
}

.button__secondary:hover, .button__secondary:focus {
  color: #fff;
  background-color: #662eff;
}

.button__secondary.dark {
  color: #fff;
  background: transparent;
  border-color: #fff;
}

.button__secondary.dark:hover, .button__secondary.dark:focus {
  color: #662eff;
  background: #fff;
  border-color: #fff;
}

.contact-form.header-nav-block {
  padding-top: 24px;
  padding-bottom: 24px;
}

.contact-form {
  padding-top: 48px;
  padding-bottom: 48px;
  background-color: #662eff
}

.contact-form .wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: stretch;
    align-items: center
  }

.contact-form .contact-form__title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3333;
    letter-spacing: 0.4px;
    align-self: auto;
    box-sizing: border-box;
    padding-right: 32px
  }

.contact-form .contact-form__button-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    text-align: right;
    white-space: nowrap;
    align-self: auto
  }

.contact-form .contact-form__button-container button, .contact-form .contact-form__button-container a {
      margin: 0
    }

.contact-form .contact-form__button-container button:not(:first-child), .contact-form .contact-form__button-container a:not(:first-child) {
        margin-left: 8px;
      }

.contact-form button {
    margin-bottom: 10px;
  }

.dark .contact-form {
  background-color: #1c0b43;
}

.contact-block {
  position: fixed;
  z-index: 999;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 544px;
  max-height: 100%;
  background-color: var(--lilac);
  transform: translateX(-50%) translateY(-50%);
  overflow: auto;
  z-index: 999
}

.contact-block::-webkit-scrollbar {
    height: 100%;
    width: 12px;
    background-color: var(--lilac);
  }

.contact-block::-webkit-scrollbar-thumb {
    background-color: var(--dark-lilac);
    border-radius: 4px;
  }

.contact-block.hidden {
    display: none;
  }

.contact-block__title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 5px;
}

.contact-block__subtitle {
  margin-bottom: 33px;
}

.contact-block__input,
.contact-block__select,
.contact-block__textarea {
  position: relative;
}

.contact-block__input-title, .contact-block__select-title, .contact-block__textarea-title {
  color: #ffffff;
  font-family: var(--fontCenturyGothic);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 16px;
  text-transform: uppercase;
  position: absolute;
  top: 24px;
  pointer-events: none;
  transition: all 200ms ease;
}

.contact-block__input-input,
.contact-block__input .select2,
.contact-block__select-input,
.contact-block__select .select2,
.contact-block__textarea-input,
.contact-block__textarea .select2 {
  padding-top: 16px;
  padding-bottom: 16px;
  color: #fff;
  background: transparent;
  font-family: var(--fontCenturyGothic);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .3px;
  text-transform: uppercase;
  border: none;
  border-bottom: 1px solid #b29afc;
  margin-bottom: 46px;
  transition: all 200ms ease;
  width: 100%;
}

.contact-block__select.form-field {
  margin-top: 1.9444rem;
}

.contact-block__input-input .active, .contact-block__input .select2 .active, .contact-block__select-input .active, .contact-block__select .select2 .active, .contact-block__textarea-input .active, .contact-block__textarea .select2 .active {
  border-bottom: 1px solid #fff;
}

.contact-block__input-desc, .contact-block__select-desc, .contact-block__textarea-desc {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.28px;
  line-height: 12px;
  position: absolute;
  bottom: 25px;
  opacity: 0;
  transition: opacity 200ms ease;
  will-change: opacity;
}

.contact-block__select {
  padding: 0;
}

.contact-block__select .select2 {
    margin-bottom: 0;
  }

.contact-block__select .select2-container .select2-selection--single {
      background-color: transparent;
      border: none;
    }

.contact-block__select .select2-container .select2-selection--single .select2-selection__rendered {
        color: #fff;
        font-family: var(--fontCenturyGothic);
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0.3px;
        line-height: 16px;
        text-transform: uppercase;
        padding: 14px 0 0;
      }

.contact-block__select-title {
  top: 13px;
}

.contact-block__select .select2 {
  padding: 0 0 10px 0;
}

.contact-block__textarea-input {
  height: 165px;
}

.contact-block--fade {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 990
}

.contact-block--fade.hidden {
    display: none;
  }

.contact-block__close {
  position: absolute;
  top: 64px;
  right: 64px;
}

.contact-block__close path {
    transition: fill 0.4s ease;
    fill: #b29afc;
  }

.contact-block__close:hover path, .contact-block__close:focus path {
      fill: var(--white);
    }

.active .contact-block__input-title,
  .active .contact-block__textarea-title {
    top: -4px;
    font-size: 12px;
  }

.active .contact-block__select-title {
    top: -12px;
    font-size: 12px;
  }

.active .contact-block__input-desc,
  .active .contact-block__select-desc,
  .active .contact-block__textarea-desc {
    opacity: 1;
  }

body.modal-open {
  overflow: hidden;
}

.cloud-loader {
  display: block;
  position: fixed;
  z-index: 9000;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(28, 10, 67, 0.8)
}

.cloud-loader.hidden {
    display: none;
  }

.cloud-loader > svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

.cloud-loader__dots {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: stretch;
    align-items: center;
    width: 120px;
  }

.cloud-loader__dot {
    order: 0;
    flex: 0 1 auto;
    align-self: auto;
    margin: 0 4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #FFFFFF
  }

.cloud-loader__dot:nth-child(1) {
      animation: preloader-dot-anim1 1.4s infinite;
      animation-fill-mode: both;
    }

.cloud-loader__dot:nth-child(2) {
      animation: preloader-dot-anim1 1.4s infinite .2s;
      animation-fill-mode: both;
    }

.cloud-loader__dot:nth-child(3) {
      animation: preloader-dot-anim1 1.4s infinite .4s;
      animation-fill-mode: both;
    }

@keyframes preloader-dot-anim1 {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}

.form-field {
  position: relative;
  display: flex;
  flex-direction: column;
}

.form-field label {
    order: 0;
    line-height: 16px;
    transform: translateY(32px);
    will-change: transform;
    transition: transform .4s ease, font-size .4s ease;
    cursor: inherit;
    pointer-events: none;
    font-family: var(--fontCenturyGothic);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .3px;
  }

.form-field input,
  .form-field textarea {
    order: 1;
    box-sizing: border-box;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--purple);
    border-bottom: 1px solid var(--light-gray)
  }

.form-field input.focus,
    .form-field input.filled,
    .form-field input.valid,
    .form-field input:focus,
    .form-field textarea.focus,
    .form-field textarea.filled,
    .form-field textarea.valid,
    .form-field textarea:focus {
      border-color: var(--lilac)
    }

.form-field input.focus ~ label, .form-field input.filled ~ label, .form-field input.valid ~ label, .form-field input:focus ~ label, .form-field textarea.focus ~ label, .form-field textarea.filled ~ label, .form-field textarea.valid ~ label, .form-field textarea:focus ~ label {
        transform: translateY(0);
        font-size: 12px;
      }

.form-field input:invalid,
    .form-field input.invalid,
    .form-field textarea:invalid,
    .form-field textarea.invalid {
      box-shadow: none;
      border-color: var(--red);
    }

.form-field input.invalid ~ p, .form-field textarea.invalid ~ p {
        visibility: visible;
      }

.form-field input:disabled, .form-field textarea:disabled {
      opacity: .5
    }

.form-field input:disabled ~ label, .form-field textarea:disabled ~ label {
        opacity: .5;
      }

.form-field textarea {
    min-height: 125px;
    resize: none;
  }

.form-field .input-error {
    order: 2;
    visibility: hidden;
    height: 32px;
    padding: 8px 0 12px;
    font-size: 12px;
    color: var(--red);
  }

.captcha {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.captcha label {
    padding-top: 8px;
    color: var(--bl-gray);
    font-size: 13px;
    font-weight: 500;
  }

.captcha label a {
    color: var(--bl-gray) !important;
    font-size: 14px;
    font-weight: 500;
  }

.captcha label a:hover, .captcha label a:focus {
    text-decoration: none;
  }

.form-submit,
.form-reset {
  margin: 0;
  margin-right: 32px;
  height: 48px
}

.form-submit.hidden, .form-reset.hidden {
    display: none;
  }

.first-form-error {
  height: 32px;
  color: var(--red);
}

.form-submit-success {
  height: 48px;
  line-height: 48px;
  color: var(--purple)
}

.form-submit-success.hidden {
    display: none;
  }

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

.purple-form {
  padding: 64px;
  color: var(--white);
  background-color: var(--lilac);
}

.purple-form-title {
    padding-bottom: 32px;
    font-size: 40px;
    font-weight: bold;
    line-height: 48px;
  }

.purple-form .first-form-error {
    color: var(--orange);
  }

.purple-form .form-submit-success {
    color: var(--white);
  }

.purple-form .captcha label {
      color: var(--violet);
    }

.purple-form .captcha label a {
      color: var(--violet) !important;
    }

.purple-form .form-field label {
      font-size: 16px;
      transform: translateY(20px);
    }

.purple-form .form-field input,
    .purple-form .form-field textarea {
      padding: 4px 0;
      color: var(--white);
      text-transform: uppercase
    }

.purple-form .form-field input:focus,
      .purple-form .form-field input.focus,
      .purple-form .form-field input.filled,
      .purple-form .form-field input.valid,
      .purple-form .form-field textarea:focus,
      .purple-form .form-field textarea.focus,
      .purple-form .form-field textarea.filled,
      .purple-form .form-field textarea.valid {
        border-color: var(--white);
      }

.purple-form .form-field input:invalid,
      .purple-form .form-field input.invalid,
      .purple-form .form-field textarea:invalid,
      .purple-form .form-field textarea.invalid {
        border-color: var(--pink);
      }

.purple-form .form-field .input-error {
      color: var(--orange);
    }

.purple-form .contact-block__select {
    padding-bottom: 35px;
  }

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -webkit-user-select: none;
          user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -webkit-user-select: none;
          user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-search--inline {
  float: left;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results .ps > .ps__thumb-x, .select2-results .ps > .ps__rail-y {
    display: none !important;
  }

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  -webkit-user-select: none;
          user-select: none;
}

.select2-results__option[aria-selected] {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  border-bottom: 1px solid #aaa;
  cursor: text;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  cursor: default;
  float: left;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  color: #333;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(
          startColorstr='rgb(255, 255, 255)',\A            endColorstr='rgba(255, 238, 238, 0.93333)',
          GradientType=0
  );
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(
          startColorstr='rgba(255, 238, 238, 0.93333)',\A            endColorstr='rgba(255, 204, 204, 0.8)',
          GradientType=0
  );
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(
          startColorstr='rgb(255, 255, 255)',\A            endColorstr='rgba(255, 238, 238, 0.93333)',
          GradientType=0
  );
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(
          startColorstr='rgba(255, 238, 238, 0.93333)',\A            endColorstr='rgb(255, 255, 255)',
          GradientType=0
  );
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:focus {
  color: #555;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: #fff;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

.select2-results__option[aria-selected] {
  color: #9ba9bb;
  font-family: var(--fontCenturyGothic);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 16px;
  text-transform: uppercase;
  padding: 10px;
}

.select2-container--default .select2-results>.select2-results__options {
  padding: 20px;
}

.select2-container.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: transparent;
  color: #662eff;
}

.select2-container.select2-container--default .select2-results__option[aria-selected=true] {
  color: #662eff;
  background: transparent;
}

.select2-results__option:first-child {
  display: none;
}

.select2-container.select2-container--default .select2-results>.select2-results__options {
  max-height: 310px;
}

.select2-container.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
}

.mobile-menu {
  overflow: auto;
  /*z-index: 999999;*/
  /*position: fixed;*/
  /*top: 0;*/
  /*right: 0;*/
  /*width: 100%;*/
  /*background: var(--purple800);*/
  /*overflow-y: auto;*/
  /*height: 100vh;*/
  /*padding: var(--pad32);*/
}

/*padding-top: var(--pad96);*/

.mobile-menu .close-mobile-menu svg path {
    transition: fill 0.6s ease;
    fill: #fff;
  }

.mobile-menu {

  display: flex;
  flex-direction: column
}

.mobile-menu .main-menu > li > a {
        padding-top: var(--pad16);
        padding-bottom: var(--pad16);
        display: block;
        color: var(--colorWhite);
        font-family: var(--robotoMono);
        font-size: var(--fontP);
        font-weight: 500;
        transition: color 0.2s ease
      }

.mobile-menu .main-menu > li > a:hover, .mobile-menu .main-menu > li > a:focus, .mobile-menu .main-menu > li > a:active {
          outline: none;
          text-decoration: none;
          color: var(--colorAccent);
        }

.mobile-menu .main-menu .sub-list > li {
        margin-bottom: var(--pad8)
      }

.mobile-menu .main-menu .sub-list > li > a {
          position: relative;
          display: block;
          padding-left: var(--pad56);
          padding-top: var(--pad8);
          padding-bottom: var(--pad8)
        }

.mobile-menu .main-menu .sub-list > li > a > p {
            color: var(--colorWhite);
            font-weight: 500;
            padding-top: 0;
            padding-bottom: 0;
            transition: color .2s ease;
          }

.mobile-menu .main-menu .sub-list > li > a small {
            display: inline-block;
            color: var(--colorWhite);
            font-size: var(--fontSub);
            line-height: 14px;
          }

.mobile-menu .main-menu .sub-list > li > a:hover, .mobile-menu .main-menu .sub-list > li > a:focus, .mobile-menu .main-menu .sub-list > li > a:active {
            outline: none;
            text-decoration: none
          }

.mobile-menu .main-menu .sub-list > li > a:hover > p, .mobile-menu .main-menu .sub-list > li > a:focus > p, .mobile-menu .main-menu .sub-list > li > a:active > p {
              color: var(--colorAccent);
            }

.mobile-menu .main-menu .sub-list > li > a.platform:before, .mobile-menu .main-menu .sub-list > li > a.kit:before {
            content: "";
            width: 40px;
            height: 40px;
            background-position: 0 0;
            background-repeat: no-repeat;
            vertical-align: middle;
            transition: background-image .2s ease;

            position: absolute;
            left: 0;
            top: 50%;
            transform: translate(0, -50%);
          }

.mobile-menu .main-menu .sub-list > li > a.platform:before {
            background-image: url("../vox-platform-gray.svg");
          }

.mobile-menu .main-menu .sub-list > li > a.kit:before {
            background-image: url("../kit-platform-gray.svg");
          }

.mobile-menu .main-menu .sub-list > li > a:hover.platform:before, .mobile-menu .main-menu .sub-list > li > a:focus.platform:before, .mobile-menu .main-menu .sub-list > li > a:active.platform:before {
              background-image: url("../vox-platform-purple.svg");
            }

.mobile-menu .main-menu .sub-list > li > a:hover.kit:before, .mobile-menu .main-menu .sub-list > li > a:focus.kit:before, .mobile-menu .main-menu .sub-list > li > a:active.kit:before {
              background-image: url("../kit-platform-purple.svg");
            }

.mobile-menu .mobile-menu-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: var(--pad16)
  }

.mobile-menu .mobile-menu-footer > a.phone {
      color: var(--colorWhite);
      font-size: var(--fontP);
      line-height: 12px;
      font-weight: 500;
      white-space: nowrap;
      word-spacing: 4px
    }

.mobile-menu .mobile-menu-footer > a.phone:hover, .mobile-menu .mobile-menu-footer > a.phone:focus, .mobile-menu .mobile-menu-footer > a.phone:active {
        outline: none;
        text-decoration: none;
      }

.mobile-menu .mobile-menu-footer > a.sign-up {
      margin-top: var(--pad32);
      cursor: pointer;
      display: inline-block;
      text-align: center;
      text-decoration: none;
      border: 1px solid var(--colorAccent);
      color: var(--colorWhite);
      font-family: var(--robotoMono);
      padding: 18px 0;
      width: 100%;
      text-transform: uppercase;
      background-color: var(--colorAccent);
      font-size: var(--fontSub);
      border-radius: 6px;
      letter-spacing: 0.3px;
      font-weight: 500;
      line-height: 1;
      white-space: nowrap;
      transition: background-color 0.4s ease, color 0.4s ease
    }

.mobile-menu .mobile-menu-footer > a.sign-up:hover, .mobile-menu .mobile-menu-footer > a.sign-up:focus, .mobile-menu .mobile-menu-footer > a.sign-up:active {
        background: var(--colorLiteAccent);
        border-color: var(--colorLiteAccent);
        color: var(--colorDeepAccent);
      }

.mobile-menu .mobile-menu-footer > a.sign-in {
      margin-top: var(--pad16);
      cursor: pointer;
      display: inline-block;
      text-align: center;
      text-decoration: none;
      border: 0.063rem solid var(--colorAccent);
      color: var(--colorWhite);
      font-family: var(--robotoMono);
      padding: 18px 0;
      width: 100%;
      text-transform: uppercase;
      background-color: transparent;
      font-size: var(--fontSub);
      border-radius: 6px;
      letter-spacing: 0.3px;
      font-weight: 500;
      line-height: 1;
      white-space: nowrap;
      transition: background-color 0.4s ease, color 0.4s ease
    }

.mobile-menu .mobile-menu-footer > a.sign-in:hover, .mobile-menu .mobile-menu-footer > a.sign-in:focus, .mobile-menu .mobile-menu-footer > a.sign-in:active {
        border: 0.063rem solid #d2c2ff;
        background-color: #d2c2ff;
        color: #150633;
      }

.mobile-menu ul {
    list-style: none;
  }

.mobile-menu a {
    text-decoration: none;
  }

.header__main-nav.sticky.color {
  top: 0;
  width: 100%;
  position: fixed;
  background-color: var(--purple900);
  z-index: 999;
}

.header-grid {
  padding-left: var(--pad32);
  padding-right: var(--pad32);
  padding-top: var(--pad24);
  padding-bottom: var(--pad24);
  display: grid;
  grid-gap: var(--pad32);
  align-items: center;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr
}

.header-grid .header-brand {
    text-align: left;
  }

.header-grid .header-menu {
    display: none
  }

.header-grid .header-menu .main-menu {
      display: flex;
      flex-direction: row;
      align-items: center
    }

.header-grid .header-menu .main-menu > li > a {
        padding-top: var(--pad16);
        padding-bottom: var(--pad16);
        padding-right: 12px;
        padding-left: 12px;
        white-space: nowrap;
        font-family: var(--robotoMono);
        font-size: var(--fontSub);
        color: var(--colorWhite);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        transition: color 0.4s ease
      }

.header-grid .header-menu .main-menu > li > a:hover, .header-grid .header-menu .main-menu > li > a:active {
          outline: none;
          text-decoration: none;
          color: var(--purple400);
        }

.header-grid .header-menu .main-menu > li > a:focus {
          outline: none;
          text-decoration: none;
        }

.header-grid .header-menu .main-menu .sub-list {
        z-index: 200;
        visibility: hidden;
        opacity: 0;
        position: absolute;
        width: 272px;
        border-radius: 4px;
        background: var(--colorWhite);
        box-shadow: var(--shadow500);
        padding: var(--pad16);
        margin-top: 14px;
        margin-left: -24px;
        transition: visibility 0.1s ease, opacity 0.1s ease
      }

.header-grid .header-menu .main-menu .sub-list > li > a {
            position: relative;
            display: block;
            padding-left: var(--pad56);
            padding-top: var(--pad8);
            padding-bottom: var(--pad8);
            text-align: left
          }

.header-grid .header-menu .main-menu .sub-list > li > a > p {
              color: var(--purple900);
              font-weight: 500;
              padding-top: 0;
              padding-bottom: 0;
              transition: color .2s ease;
            }

.header-grid .header-menu .main-menu .sub-list > li > a small {
              display: inline-block;
              color: var(--purple900);
              font-size: var(--fontSub);
              line-height: 14px;
            }

.header-grid .header-menu .main-menu .sub-list > li > a:hover, .header-grid .header-menu .main-menu .sub-list > li > a:focus, .header-grid .header-menu .main-menu .sub-list > li > a:active {
              outline: none;
              text-decoration: none
            }

.header-grid .header-menu .main-menu .sub-list > li > a:hover > p, .header-grid .header-menu .main-menu .sub-list > li > a:focus > p, .header-grid .header-menu .main-menu .sub-list > li > a:active > p {
                color: var(--purple500);
              }

.header-grid .header-menu .main-menu .sub-list > li > a.platform:before, .header-grid .header-menu .main-menu .sub-list > li > a.kit:before {
              content: "";
              width: 40px;
              height: 40px;
              background-position: 0 0;
              background-repeat: no-repeat;
              vertical-align: middle;
              transition: background-image .2s ease;

              position: absolute;
              left: 0;
              //top: 50%;
              //transform: translate(0, -50%);
            }

.header-grid .header-menu .main-menu .sub-list > li > a.platform:before {
              background-image: url("../vox-platform-gray.svg");
            }

.header-grid .header-menu .main-menu .sub-list > li > a.kit:before {
              background-image: url("../kit-platform-gray.svg");
            }

.header-grid .header-menu .main-menu .sub-list > li > a:hover.platform:before, .header-grid .header-menu .main-menu .sub-list > li > a:focus.platform:before, .header-grid .header-menu .main-menu .sub-list > li > a:active.platform:before {
                background-image: url("../vox-platform-purple.svg");
              }

.header-grid .header-menu .main-menu .sub-list > li > a:hover.kit:before, .header-grid .header-menu .main-menu .sub-list > li > a:focus.kit:before, .header-grid .header-menu .main-menu .sub-list > li > a:active.kit:before {
                background-image: url("../kit-platform-purple.svg");
              }

.header-grid .header-menu .main-menu > li.showSubList > .sub-list {
        visibility: visible;
        opacity: 1;
      }

.header-grid .header-menu .main-menu > li > .sub-list:hover, .header-grid .header-menu .main-menu > li > .sub-list:focus {
        visibility: visible;
        opacity: 1;
      }

.header-grid .header-right {
    justify-self: end;
    display: flex;
    flex-direction: row;
    align-items: center
  }

.header-grid .header-right > a.phone {
      color: var(--colorWhite);
      font-family: var(--robotoMono);
      font-weight: 500;
      font-size: 14px;
      margin-right: var(--pad24);
      white-space: nowrap
    }

.header-grid .header-right > a.phone:hover, .header-grid .header-right > a.phone:focus, .header-grid .header-right > a.phone:active {
        outline: none;
        text-decoration: none;
      }

.header-grid .header-right > a.sign-up {
      margin-right: var(--pad24);
      cursor: pointer;
      text-decoration: none;
      border: 1px solid var(--colorAccent);
      color: var(--colorWhite);
      font-family: var(--robotoMono);
      padding: 9px 16px;
      background-color: var(--colorAccent);
      font-size: var(--fontSub);
      border-radius: 4px;
      letter-spacing: 0.3px;
      font-weight: 500;
      line-height: 1;
      white-space: nowrap;
      text-transform: uppercase;
      transition: background-color 0.4s ease, color 0.4s ease
    }

.header-grid .header-right > a.sign-up:hover, .header-grid .header-right > a.sign-up:focus, .header-grid .header-right > a.sign-up:active {
        background: var(--colorLiteAccent);
        border-color: var(--colorLiteAccent);
        color: var(--colorDeepAccent);
      }

.header-grid .header-right > a.sign-in {
      margin-right: var(--pad8);
      text-decoration: none;
      outline: 0;
      box-sizing: border-box;
      padding: 9px 16px;
      background-color: transparent;
      border: 0.063rem solid #662eff;
      color: var(--colorWhite);
      font-family: var(--robotoMono);
      border-radius: 4px;
      font-size: var(--fontSub);
      font-weight: 500;
      line-height: 1;
      white-space: nowrap;
      text-transform: uppercase;
      cursor: pointer;
      letter-spacing: 0.3px;
      transition:  var(--button-transition), color 0.2s ease
    }

.header-grid .header-right > a.sign-in:hover, .header-grid .header-right > a.sign-in:focus, .header-grid .header-right > a.sign-in:active {
        border: 0.063rem solid #d2c2ff;
        background-color: #d2c2ff;
        color: #150633;
      }

.header-grid .hamburger {
    padding: 6px;
    min-width: 30px
  }

.header-grid .hamburger:hover, .header-grid .hamburger:focus, .header-grid .hamburger:active {
      outline: none;
    }

.header-grid .hidden-on-desktop {
    display: block
  }

.header-grid .hidden-on-tablet {
    display: none
  }

.header-grid .hidden-on-mobile {
    display: none
  }

.header-grid ul {
    list-style: none;
  }

.header-grid a {
    text-decoration: none;
  }

.collapse-enter-active {
  animation: .3s cubic-bezier(0.4, 0, 0.2, 1) 0s 1 normal none running fadeInRight;
}

.collapse-leave-active {
  animation: .3s cubic-bezier(0.4, 0, 0.2, 1) 0s 1 normal none running fadeOut;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--purple900);
  opacity: 0.3;
  z-index: 80;
  overflow: hidden;
}

html {
  box-sizing: border-box;
}

body {
  font-family: var(--fontRoboto);
  overflow-x: hidden;
}

body.mobile-menu-open {
  overflow: hidden;
  height: 100vh;
}

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

* {
  padding: 0;
  margin: 0;
}

*:focus {
  outline: none;
}

.noscroll {
  overflow: hidden;
}

a {
  transition: all 200ms ease-in-out
}

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

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

input,
textarea,
select {
  background: transparent;
  border: none;
  outline: none;
}

.no-transition {
  transition: none !important;
}

.on--construction{
  background: repeating-linear-gradient(45deg, #000, #000 10px, #ffcc00 10px, #ffcc00 20px);
}

.svg--not-found{
  background: repeating-linear-gradient(45deg, #000, #000 10px, #ffcc00 10px, #ffcc00 20px);
  width: 100%;
  height: 100%;
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.js-animation__opacity {
  opacity: 0;
}

.js-animation__opacity.animate {
  animation: opacity 2s;
  animation-fill-mode: forwards;
}

.ui-radio__label {
  color: #9ba9bb;
  font-size: 14px;
  font-weight: 400;
  line-height: 4;
  cursor: pointer;
  padding-left: 28px;
  position: relative;

}

.ui-radio__label:hover, .ui-radio__label:focus {
  color: #662eff;
}

.ui-radio__label:hover:before, .ui-radio__label:focus:before {
  border-color: #662eff;
}

.ui-radio__input:checked + .ui-radio__label {
  color: #662eff;
}

.ui-radio__input:checked + .ui-radio__label:before {
  border-color: #662eff;
}

.ui-radio__input:checked + .ui-radio__label:after {
  display: block;
}

.ui-radio__label:before {
  content: '';
  width: 18px;
  height: 18px;
  border: 3px solid #9ba9bb;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  left: 0;
  box-sizing: border-box;
}

.ui-radio__label:after {
  content: '';
  width: 4px;
  height: 4px;
  background: #662eff;
  left: 7px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  box-sizing: border-box;
  display: none;
}

.ui-radio__input {
  display: none;
}

.js-float-padding .title {
  transition: padding 100ms ease-in-out;
}

.mt-s {
  margin-top: 60px;
}

.mb-m {
  margin-bottom: 120px;
}

.title {
  color: #1c0b43;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.flex-container {
  display: flex;
  text-align: left;
}

.grid-1 {
  flex: 1;
}

.grid-2 {
  flex: 2;
}

.grid-3 {
  flex: 3;
}

.grid-4 {
  flex: 4;
}

.header__menu {
  background-color: var(--purple900);
  width: 500px;
  height: 100vh;
  position: fixed;
  z-index: 9999;
  padding: var(--pad32) 0;
  overflow: auto
}

.header__menu {
  top:0;
  right: -768px;
  opacity: 0;
  transition: all 0.20s ease
}

.header__menu.active{
    right: 0;
    opacity: 1;
  }

.header__menu_flex{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: flex-start

}

.header__menu_f_column:nth-child(1){
    flex: 0 1 48px;
    margin-right: 48px;
  }

.header__menu_f_column:nth-child(4) .header__menu_subdir{
      height: auto;
      margin-bottom: 40px;
    }

.header__menu_f_column:last-child{
    flex: 0 1 146px;
  }

.header__menu_f_column:last-child button,.header__menu_f_column:last-child a{
      margin: 9px 0 33px 0;
      display: block;
      text-align: center;
    }

.header__menu_f_column{
  order: 0;
  flex: 2 1 auto;
  align-self: auto;
  text-align: left

}

.header__menu-close{
  padding: 15px;
  border: 1px solid #662eff;
  border-radius: 4px;
  line-height: 0;
  display: block;
  transition: border 0.6s ease;
}

.header__menu-close svg path{
      transition: fill 0.6s ease;
      fill: #fff;
    }

.header__menu-close:hover,.header__menu-close:focus{
    border: 1px solid #ffffff;
  }

.header__menu-close:hover path,.header__menu-close:focus path{
      fill: #662eff;
    }

.header__menu_dir{
  text-align: left;
  display: block;
  color: #ffffff;
  font-family: var(--fontRoboto);
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.4px;
  text-decoration: none;
  transition: color 0.6s ease;
  margin: 13px 0 20px 0
}

.header__menu_dir:hover,.header__menu_dir:focus,.header__menu_dir:active{
    color: #662eff;
  }

.header__menu_subdir{
  height: 150px;
}

.header__menu_subdir a{
    display: block;
    color: #8b61ff;
    font-family: var(--fontCenturyGothic);
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    text-transform: uppercase;
    /* Text style for "IOS SDK AN" */
    letter-spacing: 0.3px;
    text-decoration: none;
    margin-bottom: 12px
  }

.header__menu_subdir a:hover,.header__menu_subdir a:focus,.header__menu_subdir a:active{
      color: #ffffff;
    }

.header__menu_flex_social{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-content: stretch;
  align-items: center;
}

.header__menu_flex_social .header__menu_social{
    order: 0;
    flex: 0 1 auto;
    align-self: auto;
    margin-left: 16px;
  }

.header__menu_flex_social .header__menu_social svg path{
        fill: #ffffff;
        transition: fill 0.2s ease
      }

.header__menu_flex_social .header__menu_social svg path:hover,.header__menu_flex_social .header__menu_social svg path:focus,.header__menu_flex_social .header__menu_social svg path:active{
          fill: #662eff;
        }

.wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1184px;
  padding: 0 12px;
}

.visible-desktop {
  display: none !important
}

.visible-tablet {
  display: none !important
}

.visible-phone {
  display: none !important
}

.linear-svg {
  width: 0;
  height: 0;
}

.grecaptcha-badge {
  display: none !important;
}

.content{
  color: #1C0B43;
}

.content h1{
    font-size: 40px;
  }

.content h2{
    margin: 24px 0;
  }

.content h3{
    margin: 12px 0;
  }

.content a{
    color: #662EFF;
    word-break: break-word;
  }

.content img{
    overflow: hidden;
    border: none;
    margin-left: auto;
    margin-right: auto;
    display: block;
    height: auto;
  }

.content p{
     font-size: 16px;
     line-height: 24px;
     margin: 12px 0;
  }

.content ul,.content ol{
    margin-left: 30px;
  }

.content li{
    margin: 10px 0;
  }

.content__quote, .content blockquote{
    border-left: 3px solid #662EFF;;
    padding-left: 30px;
    color: #9BA9BB;
    letter-spacing: 0.38px;
    font-size: 24px;
    line-height: 32px;
    margin: 24px 0;

  }

.content code:not([class*="language-"]){
    color: #5bf6de;
    padding: 3px 5px 2px 5px;
    border-radius: 3px;
    background: radial-gradient(circle 730px at 38.4% 482.05%, #3d0c60 0%, #1c0a43 100%);
  }

.header {
  //background-image: radial-gradient(circle 441px at 38.42% 100%, #3d0c60 0%, #1c0a43 100%) !important;
  padding-bottom: 56px;
  padding-top: 20px;
  position: relative;
  width: 100%;
  white-space: nowrap;
  min-height: calc(100vh - 106px);
  height: calc(100vh - 106px);
  text-align: center;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center
}

.header>.wrapper{
    order: 0;
    flex: 0 1 auto;
    align-self: auto;
  }

.header.white {
  background: #fff;
  height: auto;
  min-height: auto;
}

.header.cases__header {
  overflow: visible;
  background: #1C0A43;
  height: 80px;
  min-height: 80px;
}

.header.white .header__logo-icon path {
  fill: #1c0b43;
}

.header.white .header__dropdown-item {
  color: #662eff;
}

.header.white .header__dropdown-item:hover, .header.white .header__dropdown-item:focus {
  color: #1c0b43;
}

.header.white .header__dropdown:after {
  color: #662eff;
}

.header.white .header__nav-link {
  color: #662eff;
}

.header.white .header__nav-link:hover, .header.white .header__nav-link:focus {
  color: #1c0b43;
}

.header.main-page {
  overflow-x: hidden
}

.header .wrapper {
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
}

.header__dropdown {
  position: relative;
  width: 100px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 4px;
  left: -15px;
}

.header__dropdown:hover, .header__dropdown:focus {
  border-color: #662eff;
  background-color: #ffffff;
}

.header__dropdown:hover:after, .header__dropdown:focus:after {
  color: #662eff;
  transform: rotateX(180deg);
}

.header__dropdown:hover .header__dropdown-item, .header__dropdown:focus .header__dropdown-item {
  display: block;
}

.header__dropdown:hover .header__dropdown-item:first-child, .header__dropdown:focus .header__dropdown-item:first-child {
  color: #662eff;
}

.header__dropdown:after {
  content: "\E900";
  font-family: icomoon, sans-serif;
  display: inline-block;
  position: absolute;
  font-size: 5px;
  color: #fff;
  right: 14px;
  top: 16px;
}

.header__dropdown-item {
  font-family: var(--fontCenturyGothic);
  font-size: 12px;
  font-weight: 500;
  color: #9ba9bb;
  text-transform: uppercase;
  display: none;
  margin-top: 10px;
  text-decoration: none;
  padding-right: 22px;
}

.header__dropdown-item:first-child {
  display: block;
  color: #fff;
  margin-top: 0;
}

.header__dropdown-item:hover, .header__dropdown-item:focus {
  color: #662eff;
}

.header__dropdown-wrapper {
  position: relative;
  height: 40px;
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
  visibility: hidden;
}

.header__logo-text {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  vertical-align: middle;
  display: inline-block;

}

.header__logo-icon {
  vertical-align: middle;
  display: block;
  line-height: 0;
}

.header__nav-list {
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
  text-align: right;
}

.header__nav-item {
  display: inline-block;
  margin-left: 32px;
}

.header__nav-item:first-child {
  margin-left: 0;
}

.header__nav-link {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.1666;
  text-transform: uppercase;
  color: #fff!important;
  font-family: var(--fontCenturyGothic);
  text-decoration: none
}

.header__nav-link:hover{
    color: #8b61ff!important;
  }

.header__nav-link:hover, .header__nav-link:focus {
  color: #8b61ff;
}

.header__title {
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 50px;
}

.header__circle {
  box-shadow: 0 0 50px #471fb5;
  background-color: #1c0b43;
  border-radius: 50%;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  float: left;
  position: relative;
  transition: left 200ms ease-in-out, box-shadow 500ms ease-in-out;
}

.header__circle.active {
  box-shadow: 29px 8px 31px #6c04ff, 2px -23px 40px #00dfff, -41px 42px 89px #fe00ec;
}

.header__circle.active .circle {
  animation: circleDash 4s linear forwards;
}

.header__circle:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.header__circle-content {
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
}

.header__circle-text {
  color: #fff;
  font-family: var(--fontCenturyGothic);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .34px;
  line-height: 1.1666;
  text-transform: uppercase;
}

.header__circle-description {
  color: #662eff;
  font-family: var(--fontCenturyGothic);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .34px;
  line-height: 1.1666;
  text-transform: uppercase;
}

.header__circle .circle {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.header__circle--first {
  width: 156px;
  height: 156px;
  margin-left: 153px;
}

.header__circle--two {
  width: 268px;
  height: 268px;
  margin-left: 120px;
}

.header__circle--three {
  width: 156px;
  height: 156px;
  margin-left: 120px;
}

.header__circle-wrapper {
  height: 213px;
}

.header__circle .circle-svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(90deg);
}

.header__circle .subCircle {
  opacity: .5;
}

.header__prebottom {
  margin-bottom: 72px;
}

.header__bottom {
  margin-top: -82px;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: color 200ms ease;
  z-index: 30;
  position: -webkit-sticky;
  position: sticky;
  top: -1px;
}

.header__bottom .wrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-content: stretch;
    align-items: center;
  }

.header__bottom.sticky {
  background: #1C0A43 !important;
}

.header__bottom.sticky .vox{
    fill: #fff;
  }

.header__bottom.sticky .header__bottom-item-hamburger path{
    fill: #fff;
  }

.header__bottom-list {
  list-style-type: none;
  position: relative;
  padding-left: 0;
  display: inline-block;
  order: 0;
  flex: 0 1 auto;
  align-self: auto
}

.sticky .header__bottom-list {
  padding-left: 75px;
  animation: headerPadding 200ms ease;
  animation-fill-mode: forwards;
}

.header__bottom-item {
  font-family: var(--fontCenturyGothic);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.1666;
  text-transform: uppercase;
  display: inline-block;
  margin-left: 32px
}

.header__bottom-item-hamburger {
  margin-left: 0;
  border-radius: 4px;
  border: 1px solid white;
  padding: 18px 15px;
  cursor: pointer;
  position: relative;
  z-index: 3;
}

.header__bottom-item-hamburger svg{
    position: relative;
    top:2px;
  }

.color .header__bottom-item-hamburger path {
  fill: #8b61ff;
}

.header__bottom-item-logo {
  visibility: hidden;
  position: absolute;
  top: 8.5px;
  left: 0;
  margin-left: 0;
}

.sticky .header__bottom-item-logo {
  visibility: visible;
}

.header__bottom-item-logo .header__bottom-link {
  display: inline-block;
  vertical-align: middle;
  margin-right: 40px;
  width: 50px;
  overflow: hidden;
}

.header__bottom-item-logo .header__bottom-link svg {
  max-width: none;
}

.header__bottom-link {
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 200ms ease;
}

.header__bottom-item.active .header__bottom-link {
    color: #8b61ff;
  }

/*.header__bottom.color:not(.dark) .header__bottom-link:hover {
  color: #471fb5;
}*/

.header__bottom-link:hover, .header__bottom-link:focus {
  color: #8b61ff;
}

.header__button-container {
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-content: stretch;
  align-items: center;
}

.header__button-container button, .header__button-container a{
    margin: 0;
    order: 0;
    flex: 0 1 auto;
    align-self: auto
  }

.header__button-container button:nth-child(2),.header__button-container a:nth-child(2){
      margin: 0 0 0 5px;
    }

.header__mobile .header__button-container {
  position: absolute;
  bottom: 5px;
  right: 20px;
  opacity: 0;
}

.header__button-container .button__primary {
  border: 1px solid #662eff;
}

.header__button-container .button__secondary {
  color: #fff;
}

/*.color:not(.dark) .header__button-container .button__secondary {
  color: #8b61ff;
}

.color:not(.dark) .header__button-container .button__secondary:hover, .color:not(.dark) .header__button-container .button__secondary:focus {
  color: #fff;
}*/

.header__mobile {
  display: none;
}

.header__mobile .header__logo{
    float: left;
  }

.header__mobile .header__mobile-open{
    float: right;
  }

.header__mobile-close {
  padding: 15px;
  display: inline-block;
  border: 1px solid #662eff;
  border-radius: 4px;
  line-height: 0;
  float: left;
  margin-right: 50px;
}

.header__main-nav {
  position: absolute;
  top: 0;
  z-index: 20;
  left: 0;
  right: 0;
}

.header__main-nav .wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-content: stretch;
    align-items: center
  }

.header__mainnav_slot1{
  min-width: 190px;
  order: 0;
  flex: 0 1 auto;
  align-self: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: center;
}

.header__mainnav_slot1 div,.header__mainnav_slot1 a{
    order: 0;
    flex: 0 1 auto;
    align-self: auto;
  }

.header__mainnav_slot2{
  order: 0;
  flex: 0 1 auto;
  align-self: center;

}

.header__main-navClean {
}

.header__mainnav_slot3{
  min-width: 190px;
  order: 0;
  flex: 0 1 auto;
  align-self: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-content: stretch;
  align-items: center;
}

.header__mainnav_slot3 ul{
    order: 0;
    flex: 0 1 auto;
    align-self: auto;
  }

.header__bottom .vox {
    fill: #8b61ff;
  }

.header__main-nav-hamburger{
  display: block;
  padding: 14px;
  border: 1px solid #662EFF;
  border-radius: 4px;
  position: relative;
  margin-right: 14px;
}

.header__main-nav-hamburger path{
    fill: white;
  }

.footer {
  padding: var(--pad32) 0 0 0
}

.footer .footer-grid {
    display: grid;
    grid-gap: var(--pad32);
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto auto auto auto auto;
    grid-template-areas: "platform" "documentation" "help" "industries" "solutions" "about" "blog"
  }

.footer .platform-area {
    grid-area: platform;
  }

.footer .solutions-area {
    grid-area: solutions;
  }

.footer .industries-area {
    grid-area: industries;
    align-self: start;
  }

.footer .showcase-area {
    grid-area: industries;
    align-self: start;
    margin-top: var(--pad40);
  }

.footer .pricing-area {
    grid-area: industries;
    align-self: start;
    margin-top: var(--pad80);
  }

.footer .documentation-area {
    grid-area: documentation;
  }

.footer .help-area {
    grid-area: help;
  }

.footer .about-area {
    grid-area: about;
  }

.footer .blog-area {
    grid-area: blog;
  }

.footer .footer-menu .nav-area h3 > a {
        text-decoration: none;
        color: var(--purple900);
        font-weight: 500;
        font-size: var(--fontP);
        line-height: 1rem;
        transition: color 0.4s ease
      }

.footer .footer-menu .nav-area h3 > a:hover, .footer .footer-menu .nav-area h3 > a:focus, .footer .footer-menu .nav-area h3 > a:active {
          text-decoration: underline;
          outline: none;
          color: var(--colorAccent);
        }

.footer .footer-menu .sub-list {
      list-style: none
    }

.footer .footer-menu .sub-list li {
        margin-top: var(--pad16)
      }

.footer .footer-menu .sub-list li a {
          font-size: 14px;
          text-decoration: none;
          display: block;
          width: auto;
          overflow: hidden;
          white-space: nowrap;
          text-overflow: ellipsis;
          color: var(--gray500);
          transition: color 0.4s ease
        }

.footer .footer-menu .sub-list li a:hover, .footer .footer-menu .sub-list li a:focus, .footer .footer-menu .sub-list li a:active {
            text-decoration: underline;
            outline: none;
            color: var(--colorAccent);
          }

.sub-footer {
  padding: var(--pad72) 0 0 0
}

.sub-footer .sub-footer-grid {
    display: grid;
    grid-gap: var(--pad32);
    grid-template-columns: 100%;;
    grid-template-rows: 1fr 1fr
  }

.sub-footer .sub-footer-brand {
    justify-self: center;
    text-align: center
  }

.sub-footer .sub-footer-brand .copyright {
      display: block;
      padding-top: var(--pad16);
      padding-bottom: var(--pad16);
      color: var(--gray500);
      line-height: 16px;
    }

.sub-footer .sub-footer-brand > a {
      display: block;
    }

.sub-footer .sub-footer-social {
    justify-self: center
  }

.sub-footer .sub-footer-social ul {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: space-around;
      width: 150px;
      list-style: none;
    }

.sub-footer .sub-footer-social a:hover, .sub-footer .sub-footer-social a:focus, .sub-footer .sub-footer-social a:active {

      }

.feedback {
  height: 40rem;
  padding-top: 4.438rem
}

.feedback.feedback_case {
    padding-top: 3.8rem;
    height: 43.838rem;
  }

.feedback.feedback_carousel {
    height: 53.5rem;
    padding-top: 4rem;
  }

.feedback.feedback_carousel .feedback_item .feedback_body {
         color: rgb(28, 11, 67) !important;
      }

.feedback .feedback_carousel_block {
    border-top: 0.063rem solid rgb(224, 228, 234);

    position: relative
  }

.feedback .feedback_goto {
    margin: 2.27777777778rem 0 0 0;
  }

.feedback .feedback_carousel_container {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    display: flex;
    padding: 3rem 0;

  }

.feedback .feedback_carousel_ruller {
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    border-left: 1.094rem solid transparent;
    border-right: 1.094rem solid transparent;
    border-top: 1.063rem solid rgb(224, 228, 234);
    left: 4rem;
    transition: all 0.4s ease;
  }

.feedback .feedback_carousel_item {
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    order: 0;
    flex: 0 1 auto;
    align-self: auto;
    cursor: pointer;
    height: 3rem;
    padding: 0.5rem 0;
    text-align: left;
    width: 9rem;
    margin: 0 1.5rem
  }

.feedback .feedback_carousel_item:first-child {
      margin-left: 0;
    }

.feedback .feedback_carousel_item:last-child {
      margin-right: 0;
    }

.feedback .feedback_carousel_item svg {
      height: 2rem;
      width: 8rem;
    }

.feedback .feedback_carousel_item svg .restroke {
        transition: stroke 200ms ease;
        stroke: #9ba9bb;
      }

.feedback .feedback_carousel_item:hover svg path,
        .feedback .feedback_carousel_item:hover svg circle,
        .feedback .feedback_carousel_item:hover svg image,
        .feedback .feedback_carousel_item:hover svg mesh,
        .feedback .feedback_carousel_item:hover svg ellipse,
        .feedback .feedback_carousel_item:hover svg polygon,
        .feedback .feedback_carousel_item:hover svg rect,
        .feedback .feedback_carousel_item:active svg path,
        .feedback .feedback_carousel_item:active svg circle,
        .feedback .feedback_carousel_item:active svg image,
        .feedback .feedback_carousel_item:active svg mesh,
        .feedback .feedback_carousel_item:active svg ellipse,
        .feedback .feedback_carousel_item:active svg polygon,
        .feedback .feedback_carousel_item:active svg rect,
        .feedback .feedback_carousel_item:focus svg path,
        .feedback .feedback_carousel_item:focus svg circle,
        .feedback .feedback_carousel_item:focus svg image,
        .feedback .feedback_carousel_item:focus svg mesh,
        .feedback .feedback_carousel_item:focus svg ellipse,
        .feedback .feedback_carousel_item:focus svg polygon,
        .feedback .feedback_carousel_item:focus svg rect,
        .feedback .feedback_carousel_item.active svg path,
        .feedback .feedback_carousel_item.active svg circle,
        .feedback .feedback_carousel_item.active svg image,
        .feedback .feedback_carousel_item.active svg mesh,
        .feedback .feedback_carousel_item.active svg ellipse,
        .feedback .feedback_carousel_item.active svg polygon,
        .feedback .feedback_carousel_item.active svg rect {
          fill: #662eff;
        }

.feedback .feedback_carousel_item:hover svg .restroke, .feedback .feedback_carousel_item:active svg .restroke, .feedback .feedback_carousel_item:focus svg .restroke, .feedback .feedback_carousel_item.active svg .restroke {
          stroke: #662eff;
        }

.feedback > .wrapper {
    position: relative;
    height: 40rem;
  }

.feedback .feedback_item {
    position: absolute;
    top: 0;
    height: 40rem;
    width: calc(100vw - 80px);
    max-width: 1120px
  }

.feedback .feedback_item.active {
      z-index: 1;
    }

.feedback .feedback_item.active .feedback_photo img {
          opacity: 0;
          animation: feedback_author_in 0.8s ease forwards;
        }

.feedback .feedback_item.active .feedback_text {
        opacity: 1;
        pointer-events: auto;
      }

.feedback .feedback_item .feedback_photo {
      width: 100%;
      height: 100%;
      padding-right: 580px;
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: center;
      align-content: stretch;
      align-items: flex-end;
    }

.feedback .feedback_item .feedback_photo img {
        flex: 0 1 auto;
        align-self: auto;
        order: 0;
        height: 100%;
        animation: feedback_author_out 0.6s ease forwards;
      }

.feedback .feedback_item .feedback_text {
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.8s ease
    }

.feedback .feedback_item .feedback_text {
      width: 560px;
      position: absolute;
      right: 0;
      bottom: 130px;
      display: flex;
      flex-direction: column;
      flex-wrap: nowrap;
      justify-content: center;
      align-content: stretch;
      align-items: flex-start;
    }

.feedback .feedback_item .feedback_text .feedback_author {
        order: 0;
        flex: 0 1 auto;
        align-self: auto;
        color: rgb(71, 31, 181);
        font-family: var(--fontRoboto);
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1.33;
        /* Text style for "Egor Bayan" */
        letter-spacing: 0.025rem;
        padding-bottom: 12px;
      }

.feedback .feedback_item .feedback_text .feedback_company_position {
        order: 0;
        padding-bottom: 61px;
        flex: 0 1 auto;
        align-self: auto;
        color: rgb(155, 169, 187);
        font-family: var(--fontRoboto);
        font-size: 0.875rem;
        font-weight: 400;
        line-height: 1.29;
      }

.feedback .feedback_item .feedback_text .feedback_body {
        order: 0;
        flex: 0 1 auto;
        align-self: auto;
        font-family: var(--fontRoboto);
        font-size: 1.2rem;
        font-weight: 400;
        line-height: 1.3;
        width: 100%;
        max-height: 320px;
        color: rgba(0, 0, 0, 0);
      }

.feedback .feedback_item .feedback_text .feedback_body p {
          margin-bottom: 10px
        }

.feedback .feedback_item .feedback_text .feedback_body p:last-child {
            margin-bottom: 0;
          }

.feedback .feedback_dots_controlls {
    z-index: 2
  }

.feedback .feedback_dots_controlls {
    position: absolute;
    width: 560px;
    right: 0;
    bottom: 80px;
    padding: 0 30px;
  }

.feedback .feedback_dots_controlls .feedback_bullet {
      margin-right: 10px;
      width: 0.938rem;
      height: 0.938rem;
      box-shadow: none;
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.4s ease;
      border: 0.063rem solid rgb(155, 169, 187);
      background-color: rgb(255, 255, 255)
    }

.feedback .feedback_dots_controlls .feedback_bullet:hover, .feedback .feedback_dots_controlls .feedback_bullet:focus {
        border: 0.063rem solid rgb(71, 31, 181);
        background-color: rgb(71, 31, 181);
      }

@keyframes feedback_author_in {
  from {
    transform: translate(100%, 0);
    opacity: 0;
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes feedback_author_out {
  from {
    transform: translate(0, 0);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, 0);
    opacity: 0;
  }
  to {
    transform: translate(-100%, 0);
    opacity: 0;
  }
}

.triangle {
  position: relative;
  background-color: white;
  text-align: left;
}

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

.triangle:before,
.triangle:after {
  content: '';
  position: absolute;
  background-color: inherit;
}

.triangle,
.triangle:before,
.triangle:after {
  width: 14px;
  height: 14px;
  border-top-right-radius: 60%;
  border-bottom-left-radius: 60%;
}

.triangle {
  margin-left: 7px;
  transform: rotate(30deg) skewX(-30deg) scale(1, .866);
}

.triangle:before {
  transform: rotate(-135deg) skewX(-45deg) scale(1.414, .707) translate(0, -50%);
}

.triangle:after {
  transform: rotate(135deg) skewY(-45deg) scale(.707, 1.414) translate(50%);
}

.header__bottom {
  z-index: 100;
  display: none
}

.header__bottom.sticky {
    display: block;
  }

.fullfill {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}

.fullfill--dark {
    background-color: #1C0B43;
  }

.fullfill--violet {
    background-color: #521DCA;
  }

/* .fullfill--border {
    border-top: 1px solid #E0E4EA;
    border-bottom: 1px solid #E0E4EA;
  } */

.dialogflow {
  min-height: 586px;
  position: relative
}

.dialogflow .intro-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

.dialogflow .intro-block__bg {
      position: absolute;
      left: calc(50% - 195px);
      bottom: 0;
      max-width: none;
      max-height: 600px
    }

.dialogflow .intro-block__title {
      max-width: 543px;
      font-family: var(--fontCenturyGothic);
      font-size: 48px;
      font-weight: bold;
      text-transform: uppercase;
      color: white;
      z-index: 2;
      line-height: 56px
    }

.dialogflow .intro-block_dialogflow {
      min-height: 180px;
      margin-top: 109px
    }

.dialogflow .intro-block_dialogflow .intro-block__image-halo {
          width: 105px;
          height: 72px;
          position: absolute;
          background: #1C0B43;
          top: 161px;
          left: calc(50% + 341px)
        }

.dialogflow .intro-block_dialogflow .intro-block__image-halo_shadow {
            border-radius: 50%;
            width: 100%;
            height: 100%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0.6
          }

.dialogflow .intro-block_dialogflow .intro-block__image-halo_shadow:nth-child(1) {
              box-shadow: 29px 8px 31px rgb(108, 4, 255);
              animation: hai__center_ball_shadow_anim1 4s infinite ease-in-out;
            }

.dialogflow .intro-block_dialogflow .intro-block__image-halo_shadow:nth-child(2) {
              box-shadow: 2px -23px 40px rgb(0, 223, 255);
              animation: hai__center_ball_shadow_anim2 5s infinite ease-in-out;
            }

.dialogflow .intro-block_dialogflow .intro-block__image-halo_shadow:nth-child(3) {
              box-shadow: -20px 21px 45px rgb(254, 0, 236);
              animation: hai__center_ball_shadow_anim3 6s infinite ease-in-out;

            }

.get-demo-block {
  margin: 26px 0;
  z-index: 2;
  position: relative;
  max-width: 543px

}

.get-demo-block__descr {
    color: white;
    font-size: 24px;
    font-weight: 500;
  }

.get-demo-block__button-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 54px;
  }

.get-demo-block__button {
    margin: 5px 0;
    padding: 0.9444rem 2rem;
    margin-right: 22px;
  }

.get-demo-block__button--contact {
      margin-right: 0px;
    }

.solution-about {
  max-width: 544px;
  margin: 120px auto 64px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.solution-about__title {
  //margin-bottom: 32px; font-size: 40px;
    font-weight: bold;
    text-align: center;
    color: #1C0B43;
  }

.solution-about__descr {
    font-family: var(--fontRoboto);
    font-size: 16px;
    line-height: 24px;
    margin: 32px 0;
    text-align: center;
  }

.solution-article__wrapper {
  width: inherit;
  padding-bottom: 1rem;
}

.solution-article {
  margin-top: 120px;
  margin-bottom: 120px;

}

.solution-article__header {
    font-size: 40px;
    margin-bottom: 32px;
  }

.solution-article h2 {
    word-break: break-word;
  }

.solution-article__content h2 {
      margin-top: 40px;
    }

.solution-article .solution-difference {
    max-width: none;
  }

.solution-article .solution-difference__side {
      width: auto;
      max-width: none;
      margin: 0;
      width: 50%
    }

.solution-article .solution-difference__list {
      margin-left: 0;
    }

.solution-article .solution-difference__item {
      margin: 40px 20px
    }

.solution-article .solution-difference__item::before {
        color: #9ba9bb;
      }

.solution-article .solution-difference__item h3 {
        display: inline;
        text-indent: -21px;
        color: rgb(71, 31, 181);
      }

.solution-article .solution-difference__item p {
        text-indent: initial;
      }

.solution-article .solution-difference__service {
      margin: 40px 20px;
    }

.solution-article .solution-difference__service h3 {
        display: inline;
        text-indent: -21px;
        font-family: var(--fontCenturyGothic);
        font-size: 21px;
        font-weight: bold;
      }

.solution-article .solution-difference__service p {
        text-indent: initial;
      }

.solution-article .case_results {
    padding: 6.5rem 0 7.2rem 0;
    border-bottom: 0.063rem solid rgb(224, 228, 234);
  }

.solution-article .case_results h2{
      color: rgb(28, 11, 67);
      font-family: var(--fontRoboto);
      font-size: 2.5rem;
      font-weight: 700;
      line-height: 1.2;
      text-align: center;
      padding-bottom: 4rem;
    }

.solution-article .case_results .case_bottom_results{
      margin-left: 0;
      width: 100%;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: flex-start;
      align-content: stretch;
      align-items: stretch
    }

.solution-article .case_results .case_bottom_results li{
        margin: 0;
        order: 0;
        padding: 36px 40px 23px 40px;
        height: 11.125rem;
        box-sizing: border-box;
        border: 0.063rem solid rgb(224, 228, 234);
        align-self: auto;
        display: block;
        min-width: 33.33333333%
      }

.solution-article .case_results .case_bottom_results li{

        position: relative
      }

.solution-article .case_results .case_bottom_results li:nth-child(3n+2){
          left: -0.063rem;
        }

.solution-article .case_results .case_bottom_results li:nth-child(3n){
          left: -0.126rem;
        }

.solution-article .case_results .case_bottom_results li .case_result_pic{
          position: absolute;
          top: 35px;
          right: 40px
        }

.solution-article .case_results .case_bottom_results li .case_result_title{
          color: rgb(102, 46, 255);
          width: 13.25rem;
          font-family: var(--fontCenturyGothic);
          font-size: 1.5rem;
          font-weight: 700;
          line-height: 1;
          text-transform: uppercase;
        }

.solution-article .case_results .case_bottom_results li .case_result_descr{
          top:95px;
          position: absolute;
          width: 14.25rem;
          color: rgb(155, 169, 187);
          font-family: var(--fontRoboto);
          font-size: 0.875rem;
          font-weight: 400;
          left: 40px;
          line-height: 1.29;
        }

.see-video {
  display: flex;
  max-width: 315px;
  margin-bottom: 60px;
}

.see-video__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 56px;
    flex: 1 0 90px;
    border-radius: 5px;
    background-color: #662EFF;
    margin-right: 24px;
    border: none;
    cursor: pointer;
  }

.see-video__src {
    font-family: var(--fontCenturyGothic);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.34px;
    color: #662EFF;
  }

.see-video__descr {
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    color: #9BA9BB;
  }

.video-container {

  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
}

.video-container .wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
  }

.video-container__video {
    width: 100%;
    height: 70vh;
  }

.video-container__close {
    text-transform: uppercase;
    color: #662EFF;
    cursor: pointer;
    background-size: cover;
  //margin-left: 53%; background: none;
    border: none;
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;

  }

.video-container__close svg {
      margin-left: 5px;
    }

.solution-numbers {

  display: flex;
  justify-content: center;
  align-items: center
}

.solution-numbers.no-border {
    border: none;
  }

.solution-numbers__item {

  }

.number .number__big.number__sm {
  font-size: 57px;
}

.number {
  width: 384px;
  padding: 30px 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-right: 1px solid #E0E4EA
}

.number:last-child {
    border-right: none;
  }

.number__value {
    display: flex;
    align-items: baseline;
  }

.number__big {
    font-family: var(--fontCenturyGothic);
    color: #f6f9f9;
    font-size: 54px;
    font-weight: 500
  }

.number__small {
    font-family: var(--fontCenturyGothic);
    font-size: 24px;
    color: #662EFF;
    font-weight: 500;
    vertical-align: text-bottom;
  }

.number__small--sup {
      margin-top: 13px;
      align-self: flex-start;
    }

.number__descr {
    width: 150px;
    font-size: 12px;
    font-weight: 500;
    margin-left: 1.3vw
  }

.number__descr-top {

      text-transform: uppercase;
      font-family: var(--fontCenturyGothic);
      color: rgb(12 242 74);
      margin-bottom: 1vw;
    }

.number__descr-bottom {
      color: rgb(224 246 0);
    }

.number__logo {
    width: 100%;
    margin-top: 10px;
  }

.number__logo svg {
      display: block;
      margin: 0 auto;
      width: 100%;
      max-width: 300px;
      height: 50px;
    }

.number__logo img {
      display: block;
      margin: 0 auto;
      width: 100%;
      max-width: 300px;
      height: 250px;
    }
.number__logo1 img {
      display: block;
      margin: 0 auto;
      width: 100%;
      max-width: 250px;
      height: 300px;
    }

.features {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.feature {
  width: 33.33%;
  position: relative;
  padding: 35px 35px;
  display: flex;
  flex-direction: column;
  align-items: flex-start
}

.feature__logo {
    margin-left: -13px;
  }

.feature__logo svg {
      width: 70px;
      height: 70px;
    }

.feature__logo path, .feature__logo circle {
      fill: #9ba9bb;
    }

.feature__title {
    color: #662EFF;
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 20px;
  }

.feature__description {
    font-size: 14px;
    color: #9BA9BB;
  }

.solution-difference {
  max-width: 928px;
  display: flex;
  color: #1C0B43;
  justify-content: space-around
}

.solution-difference__title {
    font-family: var(--fontCenturyGothic);
    font-size: 21px;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    flex: 1 0;
  //height: 70px; align-items: center;
    margin-bottom: 30px;
  }

.solution-difference__title svg {
      width: 90px;
      height: 90px;
      flex: 0 0 90px;
      margin-right: 1vh;
      margin-left: -19px;

    }

.solution-difference__title img {
      width: 90px;
      height: 90px;
      flex: 0 0 90px;
      margin-right: 1vh;
      margin-left: -19px;
    }

.solution-difference__side {
    width: 50%;
    max-width: 400px;
    margin: 0 20px
  }

.solution-difference__list {
    font-size: 16px;
    list-style: none;
  }

.solution-difference__item {
    text-indent: -21px;
    margin-bottom: 56px;
    line-height: 24px
  }

.solution-difference__item::before {
      content: "\25A0";
      margin-right: 10px;
    }

.solution-difference__before path {
      fill: #9ba9bb;
    }

.solution-difference__before .solution-difference__item::before {
      color: #9ba9bb;
    }

.solution-difference__after path {
      fill: #662eff;
    }

.solution-difference__after .solution-difference__item::before {
      color: #662eff;
    }

.footer-demo {
  display: flex;
  margin: 0 auto;
  max-width: 1200px;
  padding: 72px 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-demo__title {
    color: #FFFFFF;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
  }

.footer-demo__description {
    color: white;
    font-size: 14px;
    text-align: center;
    margin-top: 32px;
  }

.footer-demo__button-container {
    margin-top: 52px;

  }

.feedback.feedback_carousel {
  height: auto;
  overflow: hidden;
  position: relative;

}

.feedback_carousel__control {
  display: block;
  position: absolute;
  color: #9BA9BB;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer
}

.feedback_carousel__control--left {
    left: -50px;
  }

.feedback_carousel__control--right {
    right: -50px;
    transform: translateY(-50%) rotate(180deg);
  }

.feedback > .wrapper {
    height: 430px;
  }

.feedback div.feedback_item {
    height: 430px;
  }

@keyframes hai__center_ball_shadow_anim3 {
  from {
    box-shadow: -20px 30px 45px rgb(254, 0, 236);
  }
  30% {
    box-shadow: -31px 42px 89px rgb(254, 0, 236);
  }
  60% {
    box-shadow: -20px 50px 89px rgb(254, 0, 236);
  }
  to {
    box-shadow: -20px 30px 45px rgb(254, 0, 236);
  }
}

@keyframes hai__center_ball_shadow_anim2 {
  from {
    box-shadow: 2px -23px 40px rgb(0, 223, 255);
  }
  30% {
    box-shadow: -8px -30px 90px rgb(0, 223, 255);
  }
  60% {
    box-shadow: 8px -26px 90px rgb(0, 223, 255);
  }
  to {
    box-shadow: 2px -23px 40px rgb(0, 223, 255);
  }
}

@keyframes hai__center_ball_shadow_anim1 {
  from {
    box-shadow: 29px 8px 31px rgb(108, 4, 255);
  }
  30% {
    box-shadow: -30px 8px 81px rgb(108, 4, 255);
  }
  60% {
    box-shadow: 29px 8px 81px rgb(108, 4, 255);
  }
  to {
    box-shadow: 29px 8px 31px rgb(108, 4, 255);
  }
}

@media (min-width: 0px) and (max-width: 767px) {
      .feedback .feedback_item .feedback_text .feedback_body {
          max-height: 360px
      }
        }

@media screen and (min-width: 768px) and (max-width: 1200px) {

.number {
    padding: 20px 10px
}
  .number__big {
      font-size: 44px
  }
  .number__small {
      font-size: 15px
  }
  .number__descr {
      font-size: 10px;
      width: 100px
  }

.feature {
    width: 50%
}
  }

@media (min-width: 768px) {

.mobile-menu {
    width: auto
}

.header-grid .hidden-on-mobile {
      display: block
  }

.footer {
    padding: var(--pad120) 0 97px 0
}

.footer .footer-grid {
      grid-template-columns: 1fr 1fr 1fr;
      grid-template-rows: 130px 248px 1fr;
      grid-template-areas: "platform documentation help"
      "industries solutions about"
      "blog blog NULL"
  }

.sub-footer {
    padding: var(--pad120) 0 0 0
}

.sub-footer .sub-footer-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr
  }

.sub-footer .sub-footer-brand {
      justify-self: start;
      text-align: left
  }

.sub-footer .sub-footer-social {
      justify-self: end
  }
  }

@media screen and (min-width: 768px) and (max-width: 1023px) {

.feedback .feedback_dots_controlls {
      padding: 0 40px
  }
  }

@media (max-width: 1200px) and (min-width: 768px) {

.hidden-tablet {
    display: none !important
}

.visible-tablet {
    display: block !important
}
  }

@media screen and (min-width: 768px){
  .captcha {
    flex-direction: row;
    align-items: center;
  }

.wrapper {
    padding: 0 32px
}
  }

@media (min-width: 768px) and (max-width: 1200px) {
      .feedback .feedback_item .feedback_text .feedback_body {
          max-height: 360px
      }
        }

@media (min-width: 992px) {

.footer .footer-grid {
      grid-template-columns: 1fr 1fr 1fr 1fr;
      grid-template-rows: 148px 1fr;
      grid-template-areas: "platform documentation help industries"
      "solutions about blog blog"
  }
    }

@media screen and (min-width: 1024px) {

.feedback .feedback_dots_controlls {
      padding: 0
  }
  }

@media (min-width: 1200px) {

.header-grid {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: 1fr;
    justify-items: center;
    width: 100%
}

.header-grid .header-menu {
      display: block
  }

.header-grid .header-right > a.sign-up {
        margin-right: 0
    }

.header-grid .hidden-on-desktop {
      display: none
  }

.header-grid .hidden-on-tablet {
      display: block
  }
  }

@media (min-width: 1201px) {

.hidden-desktop {
    display: none !important
}

.visible-desktop {
    display: block !important
}
  }

@media screen and (min-width: 2290px) {
    .dialogflow .intro-block__bg {
        right: auto;
        left: 50%
    }
        .dialogflow .intro-block_dialogflow .intro-block__image-halo {
            right: auto;
            left: calc(50% + 660px)
        }
      }

@media screen and (max-width: 1120px){

.header__menu {
    padding: 19px 8px 32px 8px
}
  }

@media screen and (max-width: 768px) {

.contact-form {
    margin-bottom: 60px
}

  .contact-form .wrapper {
      flex-direction: column;
      align-content: center;
      justify-content: space-between;
  }
      .contact-form .wrapper .contact-form__button-container {
        padding-top: 20px;
      }

  .contact-form .contact-form__title {
      padding-right: 0
  }

.header__menu {
    width: 100%
}

.header {
    height: 100vh
}

.feedback.feedback_carousel {
      height: 40rem
  }
  .feedback .feedback_carousel_block {
      display: none
  }

.solution-numbers {
    flex-wrap: wrap
}

.number {
  width: 100%;
  justify-content: space-around;
  border-right: none;
  border-bottom: 1px solid #E0E4EA
}
  .number:last-child {
    border-bottom: none;
  }

.feature {
  width: 100%
}

.solution-difference {
    flex-wrap: wrap;
    width: 100%
}
  .solution-difference__side {
      width: 100%
  }

.feedback_carousel__control {
    display: none
}
  }

@media screen and (max-width: 576px) {

  .contact-form .contact-form__button-container {
      flex-wrap: wrap;
      justify-content: center
  }
    }

@media screen and (max-width: 1024px) {
  .button--dark_ru {
      white-space: normal !important;
      vertical-align: top
  }

.header__menu_flex{
    flex-direction: column;
    align-items: flex-end

}

.header__menu_f_column{
    order: 0;
    flex: 0 1 auto;
    align-self: auto

}

    .header__menu_f_column:nth-child(1){
      flex: 0 1 auto;
      align-self: flex-start;
    }
    .header__menu_f_column:nth-child(4){
      margin-bottom: 1.3rem;
    }
    .header__menu_f_column:last-child{
      flex: 0 1 auto;
      margin-bottom: 2rem;
      text-align: right;
    }
      .header__menu_f_column:last-child .button--dark{
        margin-bottom: 1rem;

      }
      .header__menu_f_column:last-child button,.header__menu_f_column:last-child a{
        margin: 0 0 0  0.5rem;
        display:inline-block;
        text-align: center;
        white-space: pre;
      }

.header__menu_dir{
    text-align: right;
    margin: 0 0 0.9rem 0;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    /* Text style for "PRODUCT" */
    letter-spacing: 0.27px
}

.header__menu_subdir{
    display: none
}
    }

@media (max-width: 767px) {

.hidden-phone {
    display: none !important
}

.visible-phone {
    display: block !important
}
  .header__main-nav .wrapper {
      justify-content: center
  }
    .solution-article .solution-difference__side {
        width: 100%
    }
  }

@media screen and (max-width: 767px) {

.header__bottom-list {
    width: 100%
}

.header__bottom-item-hamburger {
    float: right
}
    .feedback .feedback_item .feedback_text {
        padding: 0 20px
    }
        .solution-article .case_results .case_bottom_results li .case_result_pic{
            top: 20px;
            right: 20px
        }
  }

@media screen and (max-width: 1130px) {

.dialogflow {
    padding-bottom: 420px
}
    .dialogflow .intro-block__bg {
        max-width: 700px;
        height: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0
    }
    .dialogflow .intro-block__title {
        max-width: 843px
    }

    .dialogflow .intro-block_dialogflow {
        margin-top: 32px
    }
        .dialogflow .intro-block_dialogflow .intro-block__image-halo {
            width: 108px;
            height: 77px;
            left: calc(50% + 122px);
            bottom: 256px;
            top: auto
        }

.get-demo-block {
    max-width: 643px

}
  }

@media screen and (max-width: 720px) {

.dialogflow {
    padding-bottom: 270px
}
    .dialogflow .intro-block__bg {
        max-width: 420px
    }
        .dialogflow .intro-block_dialogflow .intro-block__image-halo {
            width: 67px;
            height: 46px;
            left: calc(50% + 72px);
            bottom: 174px
        }
  }

@media screen and (max-width: 450px) {

.dialogflow {
    padding-bottom: 220px
}
    .dialogflow .intro-block__bg {
        max-width: 350px;
        bottom: 0
    }
        .dialogflow .intro-block_dialogflow .intro-block__image-halo {
            width: 55px;
            height: 38px;
            left: calc(50% + 60px);
            bottom: 144px
        }
  }

@media (max-width: 1200px) {

.header__bottom-item {
    margin-left: 16px
}
    .header__bottom-item:nth-child(1){
      margin-left: 0;
    }
    .header__bottom-item:nth-child(2){
      margin-left: 0;
    }
    .header__bottom-item:nth-child(3){
      margin-left: 32px;
    }
  }

@media screen and (max-width: 500px) {
    .dialogflow .intro-block__title {
        font-size: 40px;
        line-height: 48px;
        max-width: 543px
    }

    .dialogflow .intro-block_dialogflow {
        margin-top: 18px
    }
  .get-demo-block__button {
      margin-right: 0px;
      width: 100%
  }
      }

@media screen and (max-width: 544px) {

.get-demo-block {
    flex-wrap: wrap

}
  }

@media screen and (max-width: 750px){
    .solution-article .case_results .case_bottom_results{
        flex-direction: column;
    }
        .solution-article .case_results .case_bottom_results li {
          min-width: 100%
        }
          .solution-article .case_results .case_bottom_results li:nth-child(2n) {
            left: 0;
          }
          .solution-article .case_results .case_bottom_results li:nth-child(3n+2) {
            left: 0;
          }
          .solution-article .case_results .case_bottom_results li:nth-child(3n) {
            left: 0;
          }
      }

@media screen and (max-width: 1280px){
      .solution-article .case_results .case_bottom_results li{
          min-width: 50%
      }
          .solution-article .case_results .case_bottom_results li:nth-child(2n){
            left: -0.063rem;
          }
          .solution-article .case_results .case_bottom_results li:nth-child(3n+2){
            left: 0;
          }
          .solution-article .case_results .case_bottom_results li:nth-child(3n){
            left: 0;
          }
        }

@media screen and (max-width: 1200px) {
    .feedback .feedback_item .feedback_photo {
        display: none
    }
    .feedback .feedback_item .feedback_text {
        width: 100%
    }
  .feedback .feedback_dots_controlls {
      width: 100%
  }
      }
