@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: 24px;
}

/**
  Упрощаем работу с изображениями и видео
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
   */
  scrollbar-gutter: stable;
}

/**
  Плавный скролл
 */
html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут fill со значением 'none' или начинается с 'url')
 */
:where([fill]:not([fill=none],
[fill^=url])) {
  fill: currentColor;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут stroke со значением 'none')
 */
:where([stroke]:not([stroke=none],
[stroke^=url])) {
  stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

/**
  Приведение рамок таблиц в классический 'collapse' вид
 */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nekst";
  src: url("../fonts/Nekst-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nekst";
  src: url("../fonts/Nekst-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nekst";
  src: url("../fonts/Nekst-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nekst";
  src: url("../fonts/Nekst-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.container {
  max-width: 1632px;
  margin-inline: auto;
  padding-inline: 16px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(100%) !important;
}

@media (max-width: 767px) {
  .hidden-mobile {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .visible-mobile {
    display: none !important;
  }
}
html.is-lock {
  overflow: hidden;
}
@media (min-width: 768px) {
  html {
    overflow-x: hidden;
  }
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Nekst", sans-serif;
  font-size: 18px;
  letter-spacing: 0;
  color: #161616;
  background-color: #fff;
}

main {
  flex-grow: 1;
}

a,
button,
label,
input,
textarea,
select,
svg * {
  transition-duration: 0.2s;
}

a {
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    color: inherit;
  }
}
@media (hover: none) {
  a:active {
    color: inherit;
  }
}
a[class] {
  text-decoration: none;
}

:focus-visible {
  outline: 2px dashed #fff;
  outline-offset: 4px;
  transition-duration: 0s !important;
}

a[aria-label],
button[aria-label] {
  position: relative;
}
a[aria-label]::before,
button[aria-label]::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  content: "";
  transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}
.page {
  min-width: 320px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 12px;
  height: 48px;
  padding-inline: 27px;
  font-family: "Nekst", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 175%;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  border-radius: 49px;
}
.button--blue {
  color: #fff;
  background: #1843bf;
  border-color: #1843bf;
}
.button--blue:hover {
  background-color: #3869f4;
  color: #fff;
}
.button--orange {
  color: #fff;
  background-color: #f60;
  border-color: #f60;
}
.button--orange:hover {
  background-color: #ff9332;
  color: #fff;
}
.button--outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}
.button--outline:hover {
  background: rgba(255, 255, 255, 0.24);
  border: 1.5px solid #fff;
}
.button--large {
  height: 68px;
  padding-inline: 40px;
  font-size: 19px;
}

@media (max-width: 1500px) {
  .button {
    padding-inline: 14px;
  }
}
@media (max-width: 767px) {
  .button {
    width: 100%;
    min-height: 54px;
    padding-inline: 12px;
    font-size: 14px;
  }
  .button--large {
    min-height: 54px;
    padding-inline: 12px;
    font-size: 14px;
  }
}
.intro {
  padding: 8px 20px;
  color: #fff;
}
.intro__inner {
  width: 100%;
  max-width: 1920px;
  min-height: 921px;
  padding: 14px 16px 73px;
  margin-inline: auto;
  overflow: hidden;
  background: linear-gradient(13deg, #0375ec 0%, #050f54 96.78%);
  border-radius: 20px;
}

@media (max-width: 1500px) {
  .intro__inner {
    min-height: 730px;
  }
}
@media (max-width: 767px) {
  .intro {
    padding: 6px;
  }
  .intro__inner {
    min-height: auto;
    padding: 10px 10px 46px;
    border-radius: 10px;
  }
}
.header {
  display: grid;
  grid-template-columns: auto auto 1fr 370px auto;
  align-items: center;
  column-gap: 40px;
  min-height: 80px;
  padding: 20px 30px;
  color: #1843bf;
  background-color: #fff;
  border-radius: 16px;
  transition: opacity 0.32s ease, transform 0.32s ease, box-shadow 0.32s ease;
}
.header.is-no-transition {
  transition: none;
}
.header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  box-shadow: 0 18px 44px rgba(4, 16, 53, 0.18);
  transform: translateY(-140%);
}
.header.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.header.is-hidden {
  opacity: 0;
  transform: translateY(-140%);
  pointer-events: none;
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__logo img {
  width: 100%;
  height: auto;
}
.header__language {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  border-radius: 8px;
  padding-inline: 12px;
  width: 80px;
  height: 44px;
  font-family: "Onest", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  letter-spacing: 0.03em;
  color: #1843bf;
  background-color: #eff5fa;
  border: 1px solid transparent;
  transition-duration: 0.2s;
}
.header__language:hover {
  background-color: #e1eaf3;
}
.header__nav {
  justify-self: center;
}
.header__menu {
  display: flex;
  align-items: center;
  column-gap: 53px;
  font-family: "Onest", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0.05em;
  color: #1843bf;
}
.header__menu a {
  text-decoration: none;
}
.header__menu a:hover {
  text-decoration: underline;
  text-decoration-color: #FF6600;
  text-underline-offset: 10px;
}
.header__actions {
  display: flex;
  align-items: center;
  column-gap: 18px;
}
.header__burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px 9px;
  color: #063a90;
  background-color: transparent;
  border: 0;
}
.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
  transition: transform 0.24s ease, opacity 0.24s ease;
}
.header__burger span + span {
  margin-top: 6px;
}
.header__burger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__burger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__burger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header.is-fixed + .mobile-menu {
  position: fixed;
  top: 106px;
  left: 20px;
  right: 20px;
  z-index: 89;
  margin-top: 0;
}

@media (max-width: 1500px) {
  .header {
    column-gap: 18px;
  }
  .header__logo {
    width: 250px;
  }
  .header__menu {
    column-gap: 34px;
    font-size: 13px;
  }
}
@media (max-width: 1180px) {
  .header {
    grid-template-columns: auto auto 1fr;
  }
  .header__nav, .header__actions {
    display: none;
  }
  .header__burger {
    display: block;
    justify-self: end;
  }
}
@media (max-width: 767px) {
  .header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    min-height: 62px;
    padding: 8px 10px 8px 14px;
    column-gap: 10px;
  }
  .header__logo {
    width: 190px;
  }
  .header__language {
    min-width: 54px;
    min-height: 36px;
    padding: 8px 10px;
    font-size: 11px;
  }
  .header__language img {
    display: none;
  }
  .header.is-fixed {
    top: 8px;
    left: 6px;
    right: 6px;
    width: auto;
  }
  .header.is-fixed + .mobile-menu {
    top: 76px;
    left: 6px;
    right: 6px;
  }
}
@media (max-width: 420px) {
  .header__logo {
    width: 150px;
  }
}
.mobile-menu {
  display: none;
}

@media (max-width: 1180px) {
  .mobile-menu {
    row-gap: 22px;
    padding: 24px;
    margin-top: 12px;
    overflow: hidden;
    color: #1843bf;
    background-color: #fff;
    border-radius: 16px;
  }
  .mobile-menu[hidden] {
    display: none;
  }
  .mobile-menu:not([hidden]) {
    display: grid;
    animation: mobile-menu-open 0.24s ease forwards;
  }
  .mobile-menu.is-closing {
    animation: mobile-menu-close 0.24s ease forwards;
  }
  .mobile-menu__list {
    display: grid;
    row-gap: 16px;
    font-family: "Onest", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
  }
  .mobile-menu__list a {
    text-decoration: none;
  }
  .mobile-menu__list a:hover {
    text-decoration: underline;
    text-decoration-color: #FF6600;
    text-underline-offset: 10px;
  }
  .mobile-menu__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}
@keyframes mobile-menu-open {
  from {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    max-height: 420px;
    padding-top: 24px;
    padding-bottom: 24px;
    margin-top: 12px;
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes mobile-menu-close {
  from {
    max-height: 420px;
    padding-top: 24px;
    padding-bottom: 24px;
    margin-top: 12px;
    opacity: 1;
    transform: translateY(0);
  }
  to {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    opacity: 0;
    transform: translateY(-10px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu:not([hidden]), .mobile-menu.is-closing {
    animation: none;
  }
}
@media (max-width: 767px) {
  .mobile-menu {
    padding: 18px;
    border-radius: 12px;
  }
  .mobile-menu__list {
    font-size: 16px;
  }
  .mobile-menu__actions {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  @keyframes mobile-menu-open {
    from {
      max-height: 0;
      padding-top: 0;
      padding-bottom: 0;
      margin-top: 0;
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      max-height: 520px;
      padding-top: 18px;
      padding-bottom: 18px;
      margin-top: 12px;
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes mobile-menu-close {
    from {
      max-height: 520px;
      padding-top: 18px;
      padding-bottom: 18px;
      margin-top: 12px;
      opacity: 1;
      transform: translateY(0);
    }
    to {
      max-height: 0;
      padding-top: 0;
      padding-bottom: 0;
      margin-top: 0;
      opacity: 0;
      transform: translateY(-10px);
    }
  }
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 790px) minmax(460px, 1fr);
  align-items: center;
  max-width: 1347px;
  padding-top: 62px;
  margin-inline: auto;
}
.hero__content {
  max-width: 800px;
}
.hero__title {
  max-width: 800px;
  font-family: "Nekst", sans-serif;
  font-weight: 700;
  font-size: 62px;
  line-height: 130%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
}
.hero__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 48px;
  row-gap: 15px;
  padding-top: 30px;
  font-family: "Nekst", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 130%;
  letter-spacing: 0.03em;
}
.hero__features li {
  position: relative;
  display: inline-flex;
  align-items: center;
  column-gap: 12px;
}
.hero__features li svg path {
  fill: #33CC66;
}
.hero__features li svg {
  min-width: 24px;
  min-height: 24px;
}
.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 34px;
}
.hero__media {
  width: 673px;
  height: 673px;
  position: relative;
}
.hero__media img {
  width: 100%;
  height: auto;
}

@media (max-width: 1500px) {
  .hero {
    grid-template-columns: minmax(0, 610px) minmax(380px, 1fr);
    max-width: 1240px;
    padding-top: 80px;
  }
  .hero__title {
    font-size: 54px;
  }
  .hero__media {
    max-width: 560px;
  }
}
@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    row-gap: 44px;
    padding-inline: 24px;
    padding-top: 70px;
  }
  .hero__content {
    max-width: 820px;
  }
  .hero__media {
    justify-self: center;
    max-width: 620px;
  }
}
@media (max-width: 767px) {
  .hero {
    row-gap: 32px;
    padding-inline: 6px;
    padding-top: 48px;
  }
  .hero__title {
    font-size: 36px;
    line-height: 1.12;
  }
  .hero__features {
    grid-template-columns: 1fr;
    row-gap: 14px;
    padding-top: 30px;
    font-size: 13px;
  }
  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    padding-top: 34px;
  }
  .hero__media {
    max-width: 420px;
    max-height: 420px;
  }
}
@media (max-width: 420px) {
  .hero__title {
    font-size: 31px;
  }
  .hero__media {
    max-width: 300px;
    max-height: 300px;
  }
}
.passimpay-vip {
  position: relative;
  min-height: 400vh;
  color: #20232a;
  background-color: #fff;
}
.passimpay-vip__sticky {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 72px 20px;
  overflow: hidden;
  background-color: #fff;
}
.passimpay-vip__inner {
  display: grid;
  grid-template-columns: minmax(360px, 590px) minmax(400px, 710px);
  align-items: center;
  justify-content: center;
  gap: 65px;
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
}
.passimpay-vip__media {
  position: relative;
  width: 100%;
  min-height: 510px;
}
.passimpay-vip__image {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(26px) scale(0.96);
  transition: opacity 0.42s ease, transform 0.42s ease;
}
.passimpay-vip__image.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 1;
}
.passimpay-vip__image.is-missing img {
  display: none;
}
.passimpay-vip__image img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.passimpay-vip__content {
  min-width: 0;
}
.passimpay-vip__title {
  font-family: "Nekst", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 130%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #161616;
}
.passimpay-vip__steps {
  display: grid;
  row-gap: 20px;
  padding-top: 36px;
}
.passimpay-vip__step {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  align-items: center;
  column-gap: 24px;
  min-height: 60px;
  color: #858f99;
  transition: color 0.28s ease, background-color 0.28s ease, box-shadow 0.28s ease, padding 0.28s ease;
}
.passimpay-vip__step.is-active {
  min-height: 130px;
  padding: 24px;
  color: #1843bf;
  background-color: #f5f8fb;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(24, 67, 191, 0.06);
  grid-template-columns: 78px minmax(0, 1fr);
}
.passimpay-vip__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  font-family: "Nekst", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  color: #1843bf;
  border: 1px solid #9fa8b1;
  border-radius: 50%;
  background-color: #fff;
  transition: color 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}
.passimpay-vip__step.is-active .passimpay-vip__number {
  color: #fff;
  border-color: #1843bf;
  background-color: #1843bf;
  font-size: 24px;
  width: 78px;
  height: 78px;
}
.passimpay-vip__copy {
  display: grid;
  row-gap: 7px;
  min-width: 0;
}
.passimpay-vip__label {
  display: block;
  font-family: "Nekst", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 130%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #858f99;
}
.passimpay-vip__description {
  display: none;
  max-width: 410px;
  font-family: "Onest", sans-serif;
  font-size: 17px;
  line-height: 140%;
  letter-spacing: 0.03em;
  color: #5f636e;
}
.passimpay-vip__step.is-active .passimpay-vip__description {
  display: block;
}
.passimpay-vip__step.is-active .passimpay-vip__label {
  color: #1843bf;
}
.passimpay-vip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
}
.passimpay-vip__button {
  min-width: 190px;
  height: 68px;
  padding-inline: 40px;
  font-weight: 700;
  font-size: 19px;
  line-height: 147%;
  letter-spacing: 0.03em;
  color: #fff;
}
.passimpay-vip__button svg {
  color: currentColor;
}
.passimpay-vip__button--outline {
  color: #1843bf;
  border: 1.5px solid rgba(24, 67, 191, 0.7);
  background: rgba(24, 67, 191, 0.12);
}
.passimpay-vip__button--outline:hover {
  color: #1843bf;
  border: 1.5px solid #1843bf;
  background: rgba(24, 67, 191, 0.24);
}

@media (max-width: 1180px) {
  .passimpay-vip {
    min-height: 420vh;
  }
  .passimpay-vip__sticky {
    align-items: start;
    padding-block: 96px 48px;
  }
  .passimpay-vip__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 760px;
  }
  .passimpay-vip__media {
    order: 2;
    max-height: 500px;
    max-width: 500px;
  }
  .passimpay-vip__content {
    order: 1;
  }
  .passimpay-vip__title {
    font-size: 36px;
  }
  .passimpay-vip__image {
    max-height: 500px;
    max-width: 500px;
  }
}
@media (max-width: 767px) {
  .passimpay-vip {
    min-height: 440vh;
  }
  .passimpay-vip__sticky {
    padding: 78px 14px 32px;
  }
  .passimpay-vip__inner {
    gap: 24px;
  }
  .passimpay-vip__title {
    font-size: 28px;
  }
  .passimpay-vip__steps {
    row-gap: 10px;
    padding-top: 22px;
  }
  .passimpay-vip__step {
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 12px;
    min-height: 44px;
  }
  .passimpay-vip__step.is-active {
    min-height: 82px;
    padding: 14px 12px;
    border-radius: 8px;
  }
  .passimpay-vip__number {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }
  .passimpay-vip__label {
    font-size: 14px;
  }
  .passimpay-vip__description {
    font-size: 11px;
  }
  .passimpay-vip__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 22px;
  }
  .passimpay-vip__button {
    width: 100%;
    min-width: 0;
    height: 52px;
    font-size: 13px;
  }
  .passimpay-vip__media {
    min-height: 300px;
  }
  .passimpay-vip__image span {
    width: 148px;
    font-size: 52px;
  }
}
.crypto-accept {
  padding: 92px 0 130px;
  overflow: hidden;
  color: #20232a;
  background-color: #fff;
}
.crypto-accept__title {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 20px;
  font-family: "Nekst", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 130%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  color: #161616;
}
.crypto-accept__slider {
  width: 100%;
  margin-top: 58px;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}
.crypto-accept__slider + .crypto-accept__slider {
  margin-top: 30px;
}
.crypto-accept__slider.is-dragging {
  cursor: grabbing;
}
.crypto-accept__track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  will-change: transform;
}
.crypto-accept__card {
  display: grid;
  justify-items: center;
  align-content: center;
  row-gap: 16px;
  width: 180px;
  height: 200px;
  padding: 40px 30px;
  border-radius: 20px;
  background: #f5f8fb;
}
.crypto-accept__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
}
.crypto-accept__icon img,
.crypto-accept__icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.crypto-accept__name {
  max-width: 100%;
  font-family: "Nekst", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  color: #161616;
}

@media (max-width: 767px) {
  .crypto-accept {
    padding: 64px 0 78px;
  }
  .crypto-accept__title {
    font-size: 28px;
  }
  .crypto-accept__slider {
    margin-top: 36px;
  }
  .crypto-accept__slider + .crypto-accept__slider {
    margin-top: 18px;
  }
  .crypto-accept__track {
    gap: 14px;
  }
  .crypto-accept__card {
    width: 112px;
    min-width: 112px;
    height: 128px;
    row-gap: 12px;
    padding: 15px 10px;
  }
  .crypto-accept__icon {
    width: 58px;
    height: 58px;
    font-size: 18px;
  }
  .crypto-accept__name {
    font-size: 10px;
  }
}
.project-contact {
  padding: 104px 20px;
  background-color: #f1f4f8;
}
.project-contact__card {
  display: grid;
  grid-template-columns: minmax(320px, 510px) minmax(420px, 670px);
  gap: 78px;
  width: 100%;
  max-width: 1343px;
  min-height: 727px;
  padding: 44px;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 30px;
}
.project-contact__info {
  padding-top: 6px;
}
.project-contact__title {
  max-width: 500px;
  font-family: "Nekst", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 130%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #161616;
}
.project-contact__text {
  max-width: 510px;
  padding-top: 10px;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0.03em;
  color: #5f636e;
}
.project-contact__telegram {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 64px;
  align-items: center;
  column-gap: 18px;
  max-width: 501px;
  min-height: 103px;
  padding: 20px;
  margin-top: 30px;
  font-family: "Nekst", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0.03em;
  color: #161616;
  border-radius: 12px;
  background: #f5f8fb;
  transition-duration: 0.2s;
}
.project-contact__telegram:hover {
  background: #e1eaf3;
}
.project-contact__telegram b {
  color: #32b4ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.project-contact__telegram-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  color: #32b4ff;
}
.project-contact__avatar {
  width: 64px;
  height: 64px;
}
.project-contact__form {
  display: grid;
  grid-template-columns: 89px minmax(0, 214px) minmax(0, 1fr);
  align-content: start;
  gap: 19px 20px;
  padding-top: 10px;
}
.project-contact__field {
  display: grid;
  align-content: start;
  min-width: 0;
  font-family: "Onest", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  color: #01061b;
}
.project-contact__field span {
  text-wrap: nowrap;
}
.project-contact__field b {
  color: #ff6600;
}
.project-contact__field input,
.project-contact__field textarea {
  width: 100%;
  height: 56px;
  padding-inline: 16px;
  font-family: "Onest", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #01061b;
  background-color: #fff;
  border: 1px solid #d4dcdf;
  border-radius: 10px;
}
.project-contact__field input::placeholder,
.project-contact__field textarea::placeholder {
  color: #7e90a4;
}
.project-contact__field input:focus,
.project-contact__field textarea:focus {
  border-color: #1843bf;
  outline: none;
}
.project-contact__field textarea {
  height: 152px;
  padding-top: 8px;
  resize: vertical;
}
.project-contact__field--full {
  grid-column: 1/-1;
}
.project-contact__field--wide {
  grid-column: span 2;
}
.project-contact__field--narrow {
  padding-top: 26px;
}
.project-contact__field--narrow input {
  background-color: #dce6f0;
  border-color: #dce6f0;
}
.project-contact__field--phone-code {
  grid-column: span 1;
}
.project-contact__field--phone {
  grid-column: span 1;
  padding-top: 26px;
}
.project-contact__notice {
  grid-column: 1/-1;
  max-width: 613px;
  padding-top: 2px;
  font-family: "Onest", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #5f636e;
}
.project-contact__submit {
  grid-column: 1/-1;
  width: 100%;
  height: 68px;
  font-weight: 700;
  font-size: 19px;
  line-height: 147%;
  letter-spacing: 0.03em;
  color: #fff;
}

.custom-select {
  position: relative;
  width: 100%;
  font-family: "Onest", sans-serif;
}
.custom-select__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
  width: 100%;
  height: 56px;
  padding: 0 14px 0 16px;
  font-weight: 400;
  font-size: 13px;
  line-height: 140%;
  color: #9aa8b7;
  text-align: left;
  background-color: #fff;
  border: 1px solid #cbd6e2;
  border-radius: 8px;
}
.custom-select__button svg {
  flex: 0 0 auto;
  color: #1843bf;
  transition: transform 0.2s ease;
}
.custom-select.is-selected .custom-select__button {
  color: #20232a;
}
.custom-select.is-open .custom-select__button {
  border-color: #1843bf;
}
.custom-select.is-open .custom-select__button svg {
  transform: rotate(180deg);
}
.custom-select__list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 20;
  width: 100%;
  max-height: 190px;
  padding: 8px;
  overflow: auto;
  background-color: #fff;
  border: 1px solid #d7e0ea;
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(18, 30, 52, 0.12);
}
.custom-select__list button {
  display: inline-flex;
  align-items: center;
  column-gap: 20px;
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  font-weight: 500;
  font-size: 13px;
  line-height: 130%;
  color: #20232a;
  text-align: left;
  background-color: transparent;
  border: 0;
  border-radius: 7px;
}
.custom-select__list button:hover {
  color: #1843bf;
  background-color: #f4f8fd;
}
.custom-select--flag .custom-select__button {
  justify-content: center;
  padding-inline: 10px;
  color: #20232a;
  max-width: 89px;
}
.custom-select--flag .custom-select__list {
  min-width: 300px;
}

@media (max-width: 1180px) {
  .project-contact {
    padding-block: 76px;
  }
  .project-contact__card {
    grid-template-columns: 1fr;
    gap: 42px;
    max-width: 760px;
  }
  .project-contact__title {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .project-contact {
    padding: 48px 10px;
  }
  .project-contact__card {
    gap: 30px;
    padding: 24px 14px;
    border-radius: 16px;
  }
  .project-contact__title {
    font-size: 27px;
  }
  .project-contact__text {
    font-size: 14px;
  }
  .project-contact__telegram {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    min-height: 70px;
    padding: 12px;
    font-size: 13px;
  }
  .project-contact__telegram-icon, .project-contact__avatar {
    width: 44px;
    height: 44px;
  }
  .project-contact__form {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .project-contact__field {
    grid-column: 1/-1;
  }
  .project-contact__field--narrow, .project-contact__field--phone {
    padding-top: 0;
  }
  .project-contact__submit {
    height: 54px;
    font-size: 14px;
  }
}
.footer {
  position: relative;
  padding: 86px 20px 80px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(122deg, #05155e 10.53%, #036ee1 100%);
}
.footer__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 330px) minmax(220px, 557px) minmax(260px, 260px);
  align-items: start;
  column-gap: 190px;
  width: 100%;
  max-width: 1330px;
  margin-inline: auto;
}
.footer__brand {
  display: grid;
  row-gap: 24px;
}
.footer__logos {
  display: grid;
  row-gap: 27px;
}
.footer__logos img {
  display: block;
  object-fit: contain;
  object-position: left center;
}
.footer__logos img[src$=".png"] {
  color: transparent;
}
.footer__copyright {
  font-family: "Onest", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: #bcc0e3;
}
.footer__title {
  font-family: "Onest", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 160%;
  letter-spacing: 0.05em;
  color: #97c6ff;
}
.footer__menu {
  display: grid;
  row-gap: 44px;
  padding-top: 24px;
  font-family: "Onest", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0.05em;
  color: #fff;
}
.footer__menu a {
  color: #fff;
  text-decoration: none;
  text-wrap: nowrap;
}
.footer__menu a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-color: #ff8a2a;
}
.footer__address {
  display: grid;
  row-gap: 16px;
  padding-top: 20px;
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.03em;
  color: #fff;
}
.footer__address a {
  color: #fff;
  text-decoration: none;
  text-wrap: nowrap;
}
.footer__address a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-color: #ff8a2a;
}
.footer__socials {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 44px;
}
.footer__socials a {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: #fff;
  border-radius: 50%;
  background-color: #063573;
}
.footer__socials a:hover {
  color: #fff;
  background-color: #ff6600;
  transform: translateY(-3px);
}
.footer__top {
  position: fixed !important;
  right: 40px;
  bottom: 40px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background-color: #ff6600;
  border: 1.13px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  box-shadow: 0 12px 24px rgba(255, 102, 0, 0.28);
  animation: footer-top-float 2.2s ease-in-out infinite;
}
.footer__top:hover {
  background-color: #ff8a2a;
  transform: translateY(-5px);
  animation-play-state: paused;
}
.footer__top:active {
  transform: translateY(-2px) scale(0.96);
}
.footer__top.is-activated {
  animation: footer-top-click 0.52s ease;
}

@keyframes footer-top-float {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -7px;
  }
}
@keyframes footer-top-click {
  0% {
    transform: translateY(0) scale(1);
  }
  45% {
    transform: translateY(-12px) scale(1.08);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 1400px) {
  .footer__inner {
    column-gap: 70px;
  }
}
@media (max-width: 900px) {
  .footer {
    padding-block: 60px;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    row-gap: 42px;
  }
  .footer__menu, .footer__address {
    row-gap: 16px;
    padding-top: 16px;
  }
  .footer__socials {
    padding-top: 24px;
  }
}
@media (max-width: 480px) {
  .footer {
    padding: 48px 16px 60px;
  }
  .footer__logos {
    width: 190px;
  }
  .footer__address {
    font-size: 16px;
  }
  .footer__top {
    width: 38px;
    height: 38px;
  }
}
.language-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 40px;
}
.language-modal[hidden] {
  display: none;
}
.language-modal:not([hidden]) {
  animation: language-modal-fade-in 0.24s ease forwards;
}
.language-modal:not([hidden]) .language-modal__content {
  animation: language-modal-content-in 0.24s ease forwards;
}
.language-modal.is-closing {
  animation: language-modal-fade-out 0.24s ease forwards;
}
.language-modal.is-closing .language-modal__content {
  animation: language-modal-content-out 0.24s ease forwards;
}
.language-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.42);
}
.language-modal__content {
  position: relative;
  z-index: 1;
  width: min(100%, 896px);
  padding: 40px;
  color: #161616;
  background-color: #fff;
  border: 1px solid #d4dcdf;
  border-radius: 24px;
}
.language-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #d0e1e6;
}
.language-modal__title {
  font-family: "Nekst", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 130%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #161616;
}
.language-modal__close {
  position: relative;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  padding: 0;
  color: #93A2A7;
  background-color: #F5F8FB;
  border: 0;
  border-radius: 50%;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.language-modal__close:hover {
  color: #1843bf;
  background-color: #eff5fa;
}
.language-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
}
.language-modal__close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.language-modal__close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.language-modal__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-top: 24px;
}
.language-modal__item {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  height: 75px;
  font-family: "Nekst", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0.03em;
  color: #1843bf;
  text-decoration: none;
  background-color: #f5f8fb;
  border: 0;
  border-radius: 8px;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}
.language-modal__item:hover {
  color: #ff6600;
  background-color: #f5f8fb;
  transform: translateY(-2px);
}
.language-modal__item img {
  width: 36px;
  height: auto;
  flex: 0 0 36px;
}

@keyframes language-modal-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes language-modal-fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes language-modal-content-in {
  from {
    transform: translateY(16px) scale(0.98);
  }
  to {
    transform: translateY(0) scale(1);
  }
}
@keyframes language-modal-content-out {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(16px) scale(0.98);
  }
}
@media (prefers-reduced-motion: reduce) {
  .language-modal:not([hidden]), .language-modal.is-closing, .language-modal:not([hidden]) .language-modal__content, .language-modal.is-closing .language-modal__content {
    animation: none;
  }
  .language-modal__item {
    transition: none;
  }
  .language-modal__item:hover {
    transform: none;
  }
}
@media (max-width: 767px) {
  .language-modal {
    padding: 12px;
  }
  .language-modal__content {
    padding: 28px 20px 24px;
    border-radius: 18px;
  }
  .language-modal__head {
    padding-bottom: 22px;
  }
  .language-modal__title {
    font-size: 28px;
  }
  .language-modal__list {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 22px;
  }
  .language-modal__item {
    justify-content: flex-start;
    min-height: 70px;
    font-size: 20px;
  }
}
/*.custom-select__button img,
.custom-select__list img {
  width: 20px;
  height: 15px;
  object-fit: cover;
  display: inline-block;
  vertical-align: middle;
}

.custom-select__list button img {
  margin-right: 8px;
}*/
/*# sourceMappingURL=main.css.map */
