@font-face {
  font-family: Pixeloid Sans;
  src: url(../fonts/PixeloidSans.ttf) format('truetype');
}

@font-face {
  font-family: Pixeloid Sans;
  src: url(../fonts/PixeloidSans-Bold.ttf) format('truetype');
  font-weight: 700;
}

@font-face {
  font-family: EditUndoBRK;
  src: url(../fonts/editundo.ttf) format('truetype');
}

.modal_popup {
  font-family: 'Pixeloid Sans', Arial;
  color: #000;
  width: 300px;
  background-color: silver;
  border: 2px solid #fefcfc;
  border-bottom-color: #221414;
  border-right-color: #221414;
  padding: 3px;
}

.app_card_toolbar {
  font-size: 12px;
  font-weight: 700;
  height: 24px;
  line-height: 24px;
  background-color: navy;
  color: #fff;
  letter-spacing: 0.1em;
  padding-left: 8px;
  padding-right: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-card-menu {
  padding-left: 8px;
  gap: 20px;
  height: 22px;
  display: flex;
  padding-top: 4px;
}

.app-card-menu__item {
  position: relative;
  font-size: 14px;
}

.app-card-menu__item::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 1px;
  left: 0;
  bottom: -1px;
  background-color: currentColor;
}

.card-btn {
  cursor: pointer;
}

.wallet_container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wallet_list {
  border: 2px solid #959595;
  border-bottom-color: #fefcfc;
  border-right-color: #fefcfc;
  padding: 8px 8px 4px;
  background-color: white;
}

.wallet {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0px 4px;
  cursor: pointer;
}

.wallet:hover {
  background-color: rgb(223, 223, 223);
}

.wallet_name {
  font-size: 20px;
  font-weight: 500;
}

.app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  padding-top: 3px;
  width: 189px;
  height: 62px;
  position: relative;
  z-index: 1;
  transition: color 0.15s ease-out;
}

.app-btn__img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: opacity 0.15s ease-out;
}

.app-btn__img_hover,
.app-btn__img_active {
  opacity: 0;
}

.app-btn:hover {
  text-decoration: none;
}

.app-btn:hover .app-btn__img_hover,
.app-btn:active .app-btn__img_active {
  opacity: 1;
}

.app-btn.is-disabled {
  pointer-events: none;
  filter: grayscale(1);
}

@media (max-width: 1379.9px) {
  .app-btn {
    width: 196px;
    height: 54px;
    font-size: 16px;
  }
}

@media (max-width: 767.9px) {
  .app-btn {
    padding-top: 0;
    font-size: 16px;
    width: 196px;
    height: 50px;
  }
}

@media (max-width: 424.9px) {
  .app-btn {
    font-size: 14px;
    width: 160px;
    height: 36px;
  }
}

.app-btn {
  color: var(--color);
}

.app-btn:focus-visible {
  color: var(--color-active);
}

.app-btn:hover {
  color: var(--color-hover);
}

.app-btn.active,
.app-btn:active {
  color: var(--color-active);
}

.app-btn.is-disabled {
  opacity: 0.5;
  color: var(--color-disabled);
}

.app-btn_theme_blue,
.app-btn_theme_pink {
  --color: #000;
  --color-hover: #000;
  --color-active: #fff;
  --color-disabled: #fff;
}

.social-btn[data-v-b63d1cab] {
  display: inline-flex;
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.social-btn__img[data-v-b63d1cab] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: opacity 0.15s ease-out;
}

.social-btn__img_hover[data-v-b63d1cab],
.social-btn__img_active[data-v-b63d1cab] {
  opacity: 0;
}

.social-btn[data-v-b63d1cab]:hover {
  text-decoration: none;
}

.social-btn:hover .social-btn__img_hover[data-v-b63d1cab],
.social-btn:active .social-btn__img_active[data-v-b63d1cab] {
  opacity: 1;
}

@media (max-width: 424.9px) {
  .social-btn[data-v-b63d1cab] {
    width: 36px;
    height: 36px;
  }
}

.footer {
  height: 170px;
  padding: 50px 100px;
}

.footer__rights {
  margin-left: 80px;
}

@media (max-width: 1749.9px) {
  .footer {
    padding: 30px 80px;
  }

  .footer__rights {
    margin-left: 40px;
  }
}

@media (max-width: 1379.9px) {
  .footer {
    padding: 30px 40px;
  }

  .footer__left {
    flex-direction: column;
  }

  .footer__rights {
    margin-left: 0;
    margin-top: 10px;
  }
}

@media (max-width: 767.9px) {
  .footer {
    height: auto;
  }

  .footer__rights {
    margin-top: 30px;
  }
}

.app-card {
  background-color: silver;
  border: 2px solid #fefcfc;
  border-bottom-color: #221414;
  border-right-color: #221414;
  padding: 3px;
}

.app-card-inner[data-v-ec73c598] {
  border: 2px solid #959595;
  border-bottom-color: #fefcfc;
  border-right-color: #fefcfc;
}

.app-card-hr[data-v-8178aa40] {
  border-top: 2px solid #959595;
  border-bottom: 1px solid #fff;
}

.app-card-menu[data-v-fca89e94] {
  height: 22px;
}

.app-card-menu__item[data-v-fca89e94] {
  position: relative;
  font-size: 14px;
}

.app-card-menu__item[data-v-fca89e94]:after {
  content: '';
  position: absolute;
  width: 10px;
  height: 1px;
  left: 0;
  bottom: 2px;
  background-color: currentColor;
}

@media (max-width: 1199.9px) {
  .app-card-menu__item[data-v-fca89e94] {
    font-size: 13px;
  }
}

@media (max-width: 767.9px) {
  .app-card-menu__item[data-v-fca89e94] {
    font-size: 12px;
  }
}

.app-card-toolbar {
  font-size: 12px;
  font-weight: 700;
  height: 24px;
  line-height: 24px;
  background-color: navy;
  color: #fff;
  letter-spacing: 0.1em;
  padding-left: 8px;
  padding-right: 70px;
}

.app-card-toolbar.inactive {
  background-color: gray;
}

.app-card-toolbar.gradient {
  background-image: linear-gradient(to right, #000, #00007f);
}

@media (max-width: 767.9px) {
  .app-card-toolbar {
    height: 22px;
    font-size: 11px;
    padding-left: 6px;
  }
}

@media (max-width: 767.9px) {
  .app-card-toolbar {
    font-size: 10px;
  }
}

.roadmap-phase {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.roadmap-phase__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.roadmap-phase__list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 10px 6px 25px 10px;
  gap: 6px 4px;
  font-size: 14px;
  line-height: 1.35;
  margin-bottom: auto;
}

.roadmap-phase__list li {
  flex-basis: calc(50% - 2px);
  position: relative;
  padding-left: 12px;
  max-height: 35.2px;
}

.roadmap-phase__list li:before {
  content: '-';
  position: absolute;
  top: 0;
  left: 0;
  color: #ff4fdc;
}

.roadmap-phase__main {
  height: 381px;
  display: flex;
}

.roadmap-phase__img-container {
  width: 267px;
  height: 100%;
  margin-left: auto;
  border: 2px solid #221414;
  border-bottom-color: #fefcfc;
  border-right-color: #fefcfc;
  padding-right: 10px;
  padding-bottom: 20px;
  background: url(../images/phase-scroll.png) bottom right no-repeat, #fff;
  background-size: 100% 100%;
}

.roadmap-phase__img-wrapper {
  height: 100%;
}

.roadmap-phase__ornaments {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 60px;
}

.roadmap-phase__phase-img {
  position: absolute;
  width: auto;
  top: 23px;
  left: 50%;
  transform: translate(-50%);
}

.roadmap-phase__img {
  position: absolute;
  width: auto;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}

.roadmap-phase__ornaments {
  width: 62px;
  padding: 3px 6px 0;
}

.roadmap-phase__footer {
  padding: 6px 8px;
  font-size: 14px;
  line-height: 14px;
  width: 240px;
}

@media (max-width: 1379.9px) {
  .roadmap-phase__ornaments {
    width: 50px;
    padding: 3px 4px 0;
  }

  .roadmap-phase__img-container {
    width: 250px;
  }

  .roadmap-phase__list {
    padding: 10px 6px 20px 10px;
  }
}

@media (max-width: 1199.9px) {
  .roadmap-phase__img-container {
    width: 240px;
  }
}

@media (max-width: 767.9px) {
  .roadmap-phase__list li {
    font-size: 14px;
  }
}

@media (max-width: 575.9px) {
  .roadmap-phase__ornaments {
    width: 46px;
  }

  .roadmap-phase__main {
    height: 330px;
  }

  .roadmap-phase__img-container {
    width: 220px;
  }

  .roadmap-phase__footer {
    padding: 4px 6px;
    font-size: 13px;
    line-height: 13px;
    width: 220px;
  }

  .roadmap-phase__img {
    transform: translate(-50%) translateY(2px) scale(0.82);
    transform-origin: center bottom;
  }

  .roadmap-phase__list li {
    font-size: 13px;
  }
}

@media (max-width: 424.9px) {
  .roadmap-phase__ornaments {
    width: 42px;
  }

  .roadmap-phase__main {
    height: 300px;
  }

  .roadmap-phase__img-container {
    width: 210px;
  }

  .roadmap-phase__footer {
    width: 200px;
  }

  .roadmap-phase__img {
    transform: translate(-50%) translateY(3px) scale(0.78);
  }

  .roadmap-phase__phase-img {
    top: 20px;
  }
}

.roadmap-description[data-v-8e6b9413] {
  margin: 40px auto 55px;
  max-width: 1030px;
  width: 100%;
}

.roadmap-description .app-card[data-v-8e6b9413] {
  width: 100%;
}

.roadmap-description__body[data-v-8e6b9413] {
  padding: 14px 40px;
  font-size: 24px;
}

@media (max-width: 1379.9px) {
  .roadmap-description[data-v-8e6b9413] {
    max-width: 930px;
  }

  .roadmap-description__body[data-v-8e6b9413] {
    padding: 10px 40px;
    font-size: 20px;
  }
}

@media (max-width: 1199.9px) {
  .roadmap-description__body[data-v-8e6b9413] {
    font-size: 16px;
    padding: 15px 40px;
  }
}

@media (max-width: 575.9px) {
  .roadmap-description[data-v-8e6b9413] {
    margin: 25px auto 45px;
  }

  .roadmap-description__body[data-v-8e6b9413] {
    padding: 6px 10px;
    font-size: 14px;
    height: auto;
  }
}

.section-title[data-v-91a250ff] {
  font-family: EditUndoBRK;
  font-size: 118px;
  color: #fff;
  line-height: 0.8;
  text-align: center;
  will-change: opacity;
  position: relative;
  z-index: 1;
  text-shadow: -3px -3px 0 #000, 3px -3px 0 #000, -3px 10px 0 #000,
    3px 10px 0 #000;
}

@media (max-width: 1749.9px) {
  .section-title[data-v-91a250ff] {
    font-size: 94px;
  }
}

@media (max-width: 1379.9px) {
  .section-title[data-v-91a250ff] {
    font-size: 74px;
  }
}

@media (max-width: 1199.9px) {
  .section-title[data-v-91a250ff] {
    font-size: 68px;
  }
}

@media (max-width: 767.9px) {
  .section-title[data-v-91a250ff] {
    font-size: 54px;
    text-shadow: -2px -2px 0 #000, 3px -2px 0 #000, -2px 6px 0 #000,
      3px 6px 0 #000;
  }
}

@media (max-width: 424px) {
  .section-title[data-v-91a250ff] {
    font-size: 40px;
  }
}

.roadmap {
  background: url(../images/1.webp) center no-repeat;
  background-size: cover;
  --divider-width: 36px;
  --list-item-size: 340px;
  --list-full-gap: 160px;
  --list-gap: calc(var(--list-full-gap) - var(--divider-width));
}

.roadmap .swiper {
  overflow: visible;
}

.roadmap__phases {
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
}

.roadmap__divider {
  width: var(--divider-width);
  height: auto;
  margin: 0 calc(var(--list-gap) / 2);
  align-self: center;
}

.roadmap .swiper-slide {
  width: var(--list-item-size);
  height: auto;
  display: flex;
}

.roadmap .swiper-slide:nth-child(1),
.roadmap .swiper-slide:nth-child(2) {
  width: calc(var(--list-item-size) + var(--divider-width) + var(--list-gap));
}

@media (max-width: 1749.9px) {
  .roadmap {
    --list-full-gap: 120px;
  }
}

@media (max-width: 1379.9px) {
  .roadmap {
    --list-item-size: 313px;
    --list-full-gap: 80px;
    --divider-width: 33px;
  }
}

@media (max-width: 1199.9px) {
  .roadmap {
    --list-item-size: 300px;
    --list-full-gap: 76px;
    --divider-width: 33px;
  }
}

@media (max-width: 575.9px) {
  .roadmap {
    --list-item-size: 276px;
    --list-full-gap: 60px;
    --divider-width: 28px;
  }
}

@media (max-width: 575.9px) {
  .roadmap {
    --list-item-size: 262px;
    --list-full-gap: 56px;
    --divider-width: 28px;
  }
}

.about-info {
  max-width: 806px;
  margin-left: auto;
}

.about-info__text {
  margin-top: 3px;
  padding: 20px;
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
  background-color: #fff;
}

.about-info__tool-line {
  position: relative;
}

.about-info__tool-line:after {
  content: '';
  position: absolute;
  border-left: 2px solid #959595;
  border-right: 1px solid #fff;
  top: -2px;
  bottom: -2px;
  right: 200px;
}

.about-info__footer {
  display: flex;
  gap: 7px;
}

.about-info__footer .app-card-inner {
  font-size: 14px;
  width: 225px;
  padding: 5px;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1749.9px) {
  .about-info__text {
    font-size: 16px;
  }

  .about-info__tool-line:after {
    display: none;
  }
}

@media (max-width: 1379.9px) {
  .about-info__text {
    padding: 20px;
  }

  .about-info__footer .app-card-inner {
    width: 220px;
    padding: 4px;
  }
}

@media (max-width: 767.9px) {
  .about-info__text {
    font-size: 15px;
  }

  .about-info__footer .app-card-inner {
    width: 200px;
    font-size: 12px;
    padding: 3px 4px;
  }
}

@media (max-width: 575.9px) {
  .about-info__text {
    padding: 18px;
    font-size: 12px;
  }

  .about-info__footer .app-card-inner {
    width: 160px;
  }
}

@media (max-width: 424.9px) {
  .about-info__text {
    padding: 16px;
  }

  .about-info .app-card-toolbar {
    padding-right: 10px;
  }

  .about-info .app-card-toolbar-btns {
    display: none;
  }
}

.about {
  background: url(../images/2.webp) center no-repeat;
  background-size: cover;
  padding: 50px 0 0;
}

.about__content {
  max-width: 1640px;
  display: flex;
  align-items: center;
}

.about__col {
  flex: 1 0 50%;
}

.about__col_1 {
  margin-bottom: 10px;
}

.about__col_2 {
  align-self: flex-end;
}

.about__img {
  width: 560px;
  height: 877px;
}

.about__spark-1 {
  right: 50%;
  top: 195px;
  width: 57px;
}

.about__t-1 {
  bottom: 60px;
  left: calc(50% - 20px);
  z-index: 1;
  width: auto;
}

.about__t-2 {
  bottom: 340px;
  right: calc(50% + 835px);
  width: 45px;
}

@media (max-width: 1749.9px) {
  .about__img {
    width: 460px;
    height: 720px;
  }

  .about__col_1 {
    flex-basis: 53%;
    margin-bottom: 45px;
    padding-left: 20px;
  }

  .about__col_2 {
    flex-basis: 47%;
  }

  .about__spark-1 {
    left: calc(50% + 50px);
    top: 80px;
    width: 57px;
  }

  .about__t-1 {
    left: calc(50% + 5px);
    width: 70px;
  }

  .about__t-2 {
    right: calc(50% + 635px);
  }
}

@media (max-width: 1379.9px) {
  .about__img {
    width: 380px;
    height: 595px;
  }

  .about__col_1 {
    flex-basis: 58%;
    margin-bottom: 40px;
    padding-left: 10px;
  }

  .about__col_2 {
    flex-basis: 42%;
  }

  .about__spark-1 {
    left: calc(50% + 50px);
    top: 80px;
  }

  .about__t-1 {
    left: calc(50% + 55px);
  }

  .about__t-2 {
    right: calc(50% + 565px);
  }
}

@media (max-width: 1199.9px) {
  .about {
    padding: 50px 0 0;
  }

  .about__content {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .about__img {
    width: 240px;
    height: 375px;
  }

  .about__col {
    flex-basis: auto;
  }

  .about__col_1 {
    margin-bottom: -35px;
    padding-left: 0;
  }

  .about__col_2 {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-self: center;
  }

  .about__spark-1 {
    left: calc(50% + 150px);
    top: 50px;
  }

  .about__t-1 {
    bottom: 300px;
    left: calc(50% + 195px);
    width: 60px;
  }

  .about__t-2 {
    bottom: 200px;
    right: calc(50% + 265px);
  }
}

@media (max-width: 767.9px) {
  .about__img {
    width: 220px;
    height: 344px;
  }

  .about__spark-1 {
    left: calc(50% + 150px);
    top: 50px;
  }

  .about__t-1 {
    bottom: 280px;
    left: calc(50% + 185px);
    width: 60px;
  }

  .about__t-2 {
    right: calc(50% + 145px);
  }
}

@media (max-width: 575.9px) {
  .about__img {
    width: 196px;
    height: 307px;
  }

  .about__spark-1 {
    left: calc(50% + 100px);
    top: 50px;
    width: 40px;
  }

  .about__t-1 {
    bottom: 180px;
    left: calc(50% + 140px);
    width: 55px;
  }

  .about__t-2 {
    bottom: 80px;
    right: calc(50% + 145px);
  }
}

@media (max-width: 424.9px) {
  .about__t-1,
  .about__t-2 {
    display: none;
  }
}

.lang-select[data-v-f1eda0a4] {
  position: relative;
  width: 118px;
  height: 38px;
  padding-left: 6px;
  color: #000;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.lang-select__selected[data-v-f1eda0a4] {
  position: relative;
  z-index: 1;
}

.lang-select__flag[data-v-f1eda0a4] {
  width: 38px;
  height: 24px;
  margin-right: 5px;
}

.lang-select__lang[data-v-f1eda0a4] {
  background-color: transparent;
  width: 107px;
  height: 38px;
  padding: 8px 3px;
  text-transform: uppercase;
  display: flex;
}

.lang-select__list[data-v-f1eda0a4] {
  width: 100%;
  height: 86px;
  background-color: navy;
  padding-top: 40px;
  position: absolute;
  top: 0;
  left: 0;
  padding-left: 6px;
}

.lang-select__list .lang-select__lang[data-v-f1eda0a4]:hover {
  background-color: #fff;
  color: #000;
}

.lang-select__icon[data-v-f1eda0a4] {
  position: absolute;
  right: 11px;
  top: 8px;
  background-color: silver;
  border: 2px solid #fefcfc;
  border-bottom-color: #000;
  border-right-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
}

.lang-select__icon[data-v-f1eda0a4]:after {
  content: '';
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: #000 transparent transparent transparent;
}

.lang-select.is-opened[data-v-f1eda0a4] {
  color: #fff;
}

.header {
  padding: 30px 100px;
}

@media (max-width: 1749.9px) {
  .header {
    padding: 30px 80px;
  }
}

@media (max-width: 1379.9px) {
  .header {
    padding: 30px 40px;
  }
}

@media (max-width: 1199.9px) {
  .header {
    padding: 25px 40px;
  }
}

@media (max-width: 575.9px) {
  .header {
    padding: 25px 16px;
  }
}

.nav-btn {
  text-decoration: none;
  color: #000;
  background-color: transparent;
  text-transform: uppercase;
  padding: 3px 9px;
}

.nav-btn:hover {
  color: #ff27b0;
}

.mobile-menu {
  width: 300px;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  padding-bottom: 25px;
  transition-property: color, background-color, border-color, outline-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.2s;
  transform: translate(-100%);
}

.mobile-menu.is-opened {
  transform: translate(0);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  padding: 0.75rem;
  text-transform: uppercase;
  font-size: 18px;
  flex-grow: 1;
}

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

.mobile-menu__nav a:before {
  content: '-';
  margin-right: 5px;
}

@media (max-width: 424.9px) {
  .mobile-menu .app-btn {
    font-size: 15px;
    width: 140px;
    height: 46px;
  }
}

.step[data-v-82ea3e8b] {
  display: flex;
  flex-direction: column;
}

.step__body[data-v-82ea3e8b] {
  padding: 3px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.step__title[data-v-82ea3e8b] {
  font-size: 30px;
  line-height: 1.2;
  padding: 5px 40px 5px 8px;
  height: 82px;
}

.step__description[data-v-82ea3e8b] {
  font-size: 18px;
  line-height: 1.55;
  flex-grow: 1;
  padding: 8px 8px 4px;
  min-height: 290px;
}

@media (max-width: 1749.9px) {
  .step__title[data-v-82ea3e8b] {
    font-size: 24px;
    padding: 5px 20px 5px 8px;
    height: 67.6px;
  }

  .step__description[data-v-82ea3e8b] {
    font-size: 16px;
  }
}

@media (max-width: 1199.9px) {
  .step__title[data-v-82ea3e8b] {
    font-size: 22px;
    padding: 5px 16px 5px 8px;
    height: 62.8px;
  }

  .step__description[data-v-82ea3e8b] {
    font-size: 15px;
    min-height: 270px;
  }
}

@media (max-width: 575.9px) {
  .step__title[data-v-82ea3e8b] {
    font-size: 18px;
    height: 53.2px;
  }

  .step__description[data-v-82ea3e8b] {
    font-size: 13px;
    min-height: 230px;
  }
}

.how-to-buy-hey[data-v-f08dc710] {
  margin: 55px auto 85px;
  width: 290px;
}

.how-to-buy-hey .app-card[data-v-f08dc710] {
  width: 100%;
}

.how-to-buy-hey__body[data-v-f08dc710] {
  font-size: 24px;
  padding: 5px 15px;
  min-height: 60px;
}

@media (max-width: 1199.9px) {
  .how-to-buy-hey[data-v-f08dc710] {
    margin: 40px auto 55px;
  }

  .how-to-buy-hey__body[data-v-f08dc710] {
    font-size: 22px;
    min-height: 50px;
  }
}

@media (max-width: 767.9px) {
  .how-to-buy-hey__body[data-v-f08dc710] {
    font-size: 20px;
    min-height: 46px;
  }
}

@media (max-width: 575.9px) {
  .how-to-buy-hey[data-v-f08dc710] {
    margin: 25px auto 50px;
    width: 210px;
  }

  .how-to-buy-hey__body[data-v-f08dc710] {
    font-size: 16px;
  }
}

.how-to-buy {
  background: url(../images/3.webp) center no-repeat;
  background-size: cover;
}

.how-to-buy .swiper {
  overflow: visible;
}

.how-to-buy .swiper-slide {
  flex-basis: 0;
  flex-grow: 1;
  height: auto;
  padding: 0 20px;
}

.how-to-buy .swiper-slide:first-child {
  padding-left: 0;
}

.how-to-buy .swiper-slide:last-child {
  padding-right: 0;
}

.how-to-buy .step {
  width: 100%;
  height: 100%;
}

.how-to-buy .swiper-scrollbar {
  margin-top: 22px;
  background-color: #dfdfdf;
  height: 8px;
  -ms-touch-action: none;
}

.how-to-buy .swiper-scrollbar-drag {
  background-color: silver;
  border: 2px solid #fefcfc;
  border-right-color: #000;
  border-bottom-color: #000;
  height: 100%;
}

.how-to-buy__square-1 {
  right: calc(50% + 644px);
  top: 350px;
  z-index: -1;
  width: auto;
}

.how-to-buy__square-2 {
  bottom: 72px;
  left: calc(50% + 702px);
  z-index: -1;
  width: auto;
}

@media (max-width: 1749.9px) {
  .how-to-buy .swiper-slide {
    padding: 0 12px;
  }
}

@media (max-width: 1379.9px) {
  .how-to-buy .swiper-slide {
    flex-basis: 33.3333%;
  }

  .how-to-buy__square-1 {
    right: calc(50% + 444px);
  }

  .how-to-buy__square-2 {
    bottom: 110px;
    left: calc(50% + 442px);
  }
}

@media (max-width: 1199.9px) {
  .how-to-buy .swiper-slide {
    flex-basis: 42%;
    padding: 0 8px;
  }

  .how-to-buy__square-1 {
    right: calc(50% + 245px);
    top: 265px;
    width: 130px;
  }

  .how-to-buy__square-2 {
    bottom: 83px;
    left: calc(50% + 300px);
  }
}

@media (max-width: 767.9px) {
  .how-to-buy .swiper-slide {
    flex-basis: 55%;
  }

  .how-to-buy__square-1 {
    right: calc(50% + 145px);
    top: 235px;
    width: 120px;
  }

  .how-to-buy__square-2 {
    bottom: 83px;
    left: calc(50% + 100px);
  }
}

@media (max-width: 575.9px) {
  .how-to-buy .swiper-slide {
    flex-basis: 270px;
  }
}

@media (max-width: 424.9px) {
  .how-to-buy .swiper-slide {
    flex-basis: 260px;
  }

  .how-to-buy__square-1 {
    right: calc(50% + 105px);
    top: 215px;
    width: 100px;
  }

  .how-to-buy__square-2 {
    bottom: 83px;
    left: calc(50% + 100px);
  }
}

.main-screen-greetings[data-v-961c2d46] {
  margin: 0 auto 140px;
  width: 500px;
}

.main-screen-greetings .app-card[data-v-961c2d46] {
  width: 100%;
}

.main-screen-greetings__title[data-v-961c2d46] {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 2.25rem;
  line-height: 2.5rem;
  --un-text-opacity: 1;
  color: rgb(255 79 220 / var(--un-text-opacity));
}

.main-screen-greetings__text[data-v-961c2d46] {
  max-width: 400px;
  text-align: center;
  text-wrap: balance;
  font-size: 24px;
  --un-text-opacity: 1;
  color: rgb(0 0 0 / var(--un-text-opacity));
}

.main-screen-greetings__footer[data-v-961c2d46] {
  margin-top: 2px;
  width: 100%;
  padding: 6px 8px;
  font-size: 14px;
  line-height: 1;
}

.main-screen-greetings__body[data-v-961c2d46] {
  height: 245px;
}

@media (max-width: 1379.9px) {
  .main-screen-greetings[data-v-961c2d46] {
    margin-bottom: 100px;
  }
}

@media (max-width: 1199.9px) {
  .main-screen-greetings[data-v-961c2d46] {
    margin-bottom: 0;
  }

  .main-screen-greetings__text[data-v-961c2d46] {
    font-size: 20px;
  }

  .main-screen-greetings__body[data-v-961c2d46] {
    height: 220px;
  }

  .main-screen-greetings__footer[data-v-961c2d46] {
    padding: 5px 7px;
    font-size: 13px;
  }
}

@media (max-width: 767.9px) {
  .main-screen-greetings[data-v-961c2d46] {
    width: 100%;
  }

  .main-screen-greetings__title[data-v-961c2d46] {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .main-screen-greetings__text[data-v-961c2d46] {
    font-size: 18px;
  }

  .main-screen-greetings__body[data-v-961c2d46] {
    height: 200px;
  }
}

@media (max-width: 575.9px) {
  .main-screen-greetings[data-v-961c2d46] {
    width: 100%;
  }
}

@media (max-width: 424.9px) {
  .main-screen-greetings__body[data-v-961c2d46] {
    height: 180px;
    padding: 0 5%;
  }

  .main-screen-greetings__title[data-v-961c2d46] {
    margin-bottom: 1rem;
    font-size: 24px;
  }

  .main-screen-greetings__text[data-v-961c2d46] {
    font-size: 16px;
  }
}

.main-screen {
  background: url(../images/1.webp) center no-repeat;
  background-size: cover;
  padding: 135px 40px 0;
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
}

.main-screen__img {
  width: 503px;
  height: 832px;
}

.main-screen__content {
  max-width: 1640px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.main-screen__col {
  flex: 1 0 50%;
}

.main-screen__ornament_moon {
  right: calc(50% + 672px);
  top: 430px;
  z-index: -1;
  width: 144px;
}

.main-screen__ornament_spark-1 {
  left: calc(50% + 133px);
  top: 140px;
  width: 87px;
}

.main-screen__ornament_spark-2 {
  bottom: 30px;
  left: calc(50% + 120px);
  width: 27px;
}

@media (max-width: 1749.9px) {
  .main-screen__img {
    width: 440px;
    height: 728px;
  }

  .main-screen__col_1 {
    flex-basis: 45%;
  }

  .main-screen__col_2 {
    flex-basis: 55%;
  }

  .main-screen__ornament_moon {
    right: calc(50% + 570px);
  }

  .main-screen__ornament_spark-1 {
    top: 100px;
    width: 57px;
  }
}

@media (max-width: 1379.9px) {
  .main-screen__img {
    width: 360px;
    height: 595px;
  }

  .main-screen__col_1 {
    flex-basis: 40%;
  }

  .main-screen__col_2 {
    margin-top: 20px;
    flex-basis: 60%;
  }

  .main-screen__ornament_moon {
    top: 400px;
    right: calc(50% + 530px);
    width: 90px;
  }

  .main-screen__ornament_spark-1 {
    top: 100px;
    width: 40px;
  }

  .main-screen__ornament_spark-2 {
    bottom: 25px;
  }
}

@media (max-width: 1199.9px) {
  .main-screen {
    padding: 95px 20px 0;
  }

  .main-screen__content {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .main-screen__img {
    width: 220px;
    height: 364px;
  }

  .main-screen__col {
    flex-basis: auto;
  }

  .main-screen__col_1 {
    position: relative;
    z-index: 1;
    order: 2;
    display: flex;
    justify-content: center;
  }

  .main-screen__ornament_moon {
    top: auto;
    bottom: 40px;
    right: calc(50% + 200px);
    width: 90px;
  }

  .main-screen__ornament_spark-1 {
    top: 75px;
    width: 40px;
  }

  .main-screen__ornament_spark-2 {
    bottom: 205px;
    left: calc(50% + 220px);
    width: 57px;
  }
}

@media (max-width: 767.9px) {
  .main-screen__img {
    width: 200px;
    height: 330px;
  }

  .main-screen__ornament_moon {
    right: calc(50% + 150px);
  }

  .main-screen__ornament_spark-2 {
    left: calc(50% + 180px);
  }
}

@media (max-width: 575.9px) {
  .main-screen__img {
    width: 176px;
    height: 291px;
  }

  .main-screen__ornament_moon {
    right: calc(50% + 120px);
    width: 58px;
  }

  .main-screen__ornament_spark-1 {
    left: calc(50% + 50px);
  }

  .main-screen__ornament_spark-2 {
    left: calc(50% + 100px);
  }
}

@media (max-width: 424.9px) {
  .main-screen__ornament_moon {
    right: calc(50% + 90px);
  }

  .main-screen__ornament_spark-2 {
    width: 42px;
  }
}

.page {
  overflow: hidden;
}

img {
  object-fit: cover;
  object-position: center;
}

.container {
  padding-left: 60px;
  padding-right: 60px;
}

@media (max-width: 1379.9px) {
  .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 1199.9px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 767.9px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 575.9px) {
  .container {
    max-width: 100% !important;
    padding-left: 16px;
    padding-right: 16px;
  }
}

*,
:before,
:after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: var(--un-default-border-color, #e5e7eb);
}

:before,
:after {
  --un-content: '';
}

html,
:host {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family: ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji',
    'Segoe UI Emoji', Segoe UI Symbol, 'Noto Color Emoji';
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  line-height: inherit;
}

hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}

abbr:where([title]) {
  text-decoration: underline dotted;
}

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

a {
  color: inherit;
  text-decoration: inherit;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    Liberation Mono, Courier New, monospace;
  font-feature-settings: normal;
  font-variation-settings: normal;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

button,
select {
  text-transform: none;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}

:-moz-focusring {
  outline: auto;
}

:-moz-ui-invalid {
  box-shadow: none;
}

progress {
  vertical-align: baseline;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

dialog {
  padding: 0;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}

button,
[role='button'] {
  cursor: pointer;
}

:disabled {
  cursor: default;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}

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

[hidden] {
  display: none;
}

html,
body,
#app {
  height: 100%;
  margin: 0;
  padding: 0;
}

html.dark {
  background: #121212;
}

a {
  color: navy;
  text-decoration: underline;
}

a:hover {
  color: #000050;
}

.c-pinky2 {
  --un-text-opacity: 1;
  color: rgb(205 56 150 / var(--un-text-opacity));
}

*,
:before,
:after {
  --un-rotate: 0;
  --un-rotate-x: 0;
  --un-rotate-y: 0;
  --un-rotate-z: 0;
  --un-scale-x: 1;
  --un-scale-y: 1;
  --un-scale-z: 1;
  --un-skew-x: 0;
  --un-skew-y: 0;
  --un-translate-x: 0;
  --un-translate-y: 0;
  --un-translate-z: 0;
  --un-pan-x: ;
  --un-pan-y: ;
  --un-pinch-zoom: ;
  --un-scroll-snap-strictness: proximity;
  --un-ordinal: ;
  --un-slashed-zero: ;
  --un-numeric-figure: ;
  --un-numeric-spacing: ;
  --un-numeric-fraction: ;
  --un-border-spacing-x: 0;
  --un-border-spacing-y: 0;
  --un-ring-offset-shadow: 0 0 rgb(0 0 0 / 0);
  --un-ring-shadow: 0 0 rgb(0 0 0 / 0);
  --un-shadow-inset: ;
  --un-shadow: 0 0 rgb(0 0 0 / 0);
  --un-ring-inset: ;
  --un-ring-offset-width: 0px;
  --un-ring-offset-color: #fff;
  --un-ring-width: 0px;
  --un-ring-color: rgb(147 197 253 / 0.5);
  --un-blur: ;
  --un-brightness: ;
  --un-contrast: ;
  --un-drop-shadow: ;
  --un-grayscale: ;
  --un-hue-rotate: ;
  --un-invert: ;
  --un-saturate: ;
  --un-sepia: ;
  --un-backdrop-blur: ;
  --un-backdrop-brightness: ;
  --un-backdrop-contrast: ;
  --un-backdrop-grayscale: ;
  --un-backdrop-hue-rotate: ;
  --un-backdrop-invert: ;
  --un-backdrop-opacity: ;
  --un-backdrop-saturate: ;
  --un-backdrop-sepia: ;
}

::backdrop {
  --un-rotate: 0;
  --un-rotate-x: 0;
  --un-rotate-y: 0;
  --un-rotate-z: 0;
  --un-scale-x: 1;
  --un-scale-y: 1;
  --un-scale-z: 1;
  --un-skew-x: 0;
  --un-skew-y: 0;
  --un-translate-x: 0;
  --un-translate-y: 0;
  --un-translate-z: 0;
  --un-pan-x: ;
  --un-pan-y: ;
  --un-pinch-zoom: ;
  --un-scroll-snap-strictness: proximity;
  --un-ordinal: ;
  --un-slashed-zero: ;
  --un-numeric-figure: ;
  --un-numeric-spacing: ;
  --un-numeric-fraction: ;
  --un-border-spacing-x: 0;
  --un-border-spacing-y: 0;
  --un-ring-offset-shadow: 0 0 rgb(0 0 0 / 0);
  --un-ring-shadow: 0 0 rgb(0 0 0 / 0);
  --un-shadow-inset: ;
  --un-shadow: 0 0 rgb(0 0 0 / 0);
  --un-ring-inset: ;
  --un-ring-offset-width: 0px;
  --un-ring-offset-color: #fff;
  --un-ring-width: 0px;
  --un-ring-color: rgb(147 197 253 / 0.5);
  --un-blur: ;
  --un-brightness: ;
  --un-contrast: ;
  --un-drop-shadow: ;
  --un-grayscale: ;
  --un-hue-rotate: ;
  --un-invert: ;
  --un-saturate: ;
  --un-sepia: ;
  --un-backdrop-blur: ;
  --un-backdrop-brightness: ;
  --un-backdrop-contrast: ;
  --un-backdrop-grayscale: ;
  --un-backdrop-hue-rotate: ;
  --un-backdrop-invert: ;
  --un-backdrop-opacity: ;
  --un-backdrop-saturate: ;
  --un-backdrop-sepia: ;
}

.container {
  width: 100%;
}

.ic {
  align-items: center;
}

.jc {
  justify-content: center;
}

@media (min-width: 425px) {
  .container {
    max-width: 425px;
  }
}

@media (min-width: 576px) {
  .container {
    max-width: 576px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

@media (min-width: 1380px) {
  .container {
    max-width: 1380px;
  }
}

@media (min-width: 1750px) {
  .container {
    max-width: 1750px;
  }
}

.visible {
  visibility: visible;
}

.absolute,
[absolute=''] {
  position: absolute;
}

.fixed {
  position: fixed;
}

.relative {
  position: relative;
}

.bottom--20px {
  bottom: -20px;
}

.bottom--40px {
  bottom: -40px;
}

.bottom-0 {
  bottom: 0;
}

.bottom-100px,
[bottom-100px=''] {
  bottom: 100px;
}

.bottom-110px {
  bottom: 110px;
}

.bottom-118px {
  bottom: 118px;
}

.bottom-180px {
  bottom: 180px;
}

.bottom-185px {
  bottom: 185px;
}

.bottom-200px {
  bottom: 200px;
}

.bottom-205px {
  bottom: 205px;
}

.bottom-20px {
  bottom: 20px;
}

.bottom-220px {
  bottom: 220px;
}

.bottom-25px {
  bottom: 25px;
}

.bottom-270px {
  bottom: 270px;
}

.bottom-280px {
  bottom: 280px;
}

.bottom-300px {
  bottom: 300px;
}

.bottom-30px,
[bottom-30px=''] {
  bottom: 30px;
}

.bottom-340px,
[bottom-340px=''] {
  bottom: 340px;
}

.bottom-35px,
[bottom-35px=''] {
  bottom: 35px;
}

.bottom-3px {
  bottom: 3px;
}

.bottom-40px {
  bottom: 40px;
}

.bottom-45px,
[bottom-45px=''] {
  bottom: 45px;
}

.bottom-465px,
[bottom-465px=''] {
  bottom: 465px;
}

.bottom-60px {
  bottom: 60px;
}

.bottom-72px {
  bottom: 72px;
}

.bottom-80px {
  bottom: 80px;
}

.bottom-83px {
  bottom: 83px;
}

.bottom-90px,
[bottom-90px=''] {
  bottom: 90px;
}

.left-\[calc\(50\%-20px\)\] {
  left: calc(50% - 20px);
}

.left-\[calc\(50\%\+100px\)\] {
  left: calc(50% + 100px);
}

.left-\[calc\(50\%\+120px\)\] {
  left: calc(50% + 120px);
}

.left-\[calc\(50\%\+133px\)\] {
  left: calc(50% + 133px);
}

.left-\[calc\(50\%\+140px\)\] {
  left: calc(50% + 140px);
}

.left-\[calc\(50\%\+150px\)\] {
  left: calc(50% + 150px);
}

.left-\[calc\(50\%\+180px\)\] {
  left: calc(50% + 180px);
}

.left-\[calc\(50\%\+185px\)\] {
  left: calc(50% + 185px);
}

.left-\[calc\(50\%\+190px\)\] {
  left: calc(50% + 190px);
}

.left-\[calc\(50\%\+195px\)\] {
  left: calc(50% + 195px);
}

.left-\[calc\(50\%\+220px\)\] {
  left: calc(50% + 220px);
}

.left-\[calc\(50\%\+300px\)\] {
  left: calc(50% + 300px);
}

.left-\[calc\(50\%\+370px\)\] {
  left: calc(50% + 370px);
}

.left-\[calc\(50\%\+40px\)\] {
  left: calc(50% + 40px);
}

.left-\[calc\(50\%\+442px\)\] {
  left: calc(50% + 442px);
}

.left-\[calc\(50\%\+470px\)\] {
  left: calc(50% + 470px);
}

.left-\[calc\(50\%\+50px\)\] {
  left: calc(50% + 50px);
}

.left-\[calc\(50\%\+55px\)\] {
  left: calc(50% + 55px);
}

.left-\[calc\(50\%\+5px\)\] {
  left: calc(50% + 5px);
}

.left-\[calc\(50\%\+642px\)\] {
  left: calc(50% + 642px);
}

.left-\[calc\(50\%\+680px\)\] {
  left: calc(50% + 680px);
}

.left-\[calc\(50\%\+702px\)\] {
  left: calc(50% + 702px);
}

.left-\[calc\(50\%\+720px\)\] {
  left: calc(50% + 720px);
}

.left-\[calc\(50\%\+736px\)\] {
  left: calc(50% + 736px);
}

.left-\[calc\(50\%\+782px\)\] {
  left: calc(50% + 782px);
}

.left-\[calc\(50\%\+790px\)\] {
  left: calc(50% + 790px);
}

.left-\[calc\(50\%\+80px\)\] {
  left: calc(50% + 80px);
}

.left-0 {
  left: 0;
}

.left-20px {
  left: 20px;
}

.left-40px {
  left: 40px;
}

.right-\[calc\(50\%\+105px\)\] {
  right: calc(50% + 105px);
}

.right-\[calc\(50\%\+120px\)\] {
  right: calc(50% + 120px);
}

.right-\[calc\(50\%\+145px\)\] {
  right: calc(50% + 145px);
}

.right-\[calc\(50\%\+150px\)\] {
  right: calc(50% + 150px);
}

.right-\[calc\(50\%\+154px\)\] {
  right: calc(50% + 154px);
}

.right-\[calc\(50\%\+200px\)\] {
  right: calc(50% + 200px);
}

.right-\[calc\(50\%\+244px\)\] {
  right: calc(50% + 244px);
}

.right-\[calc\(50\%\+245px\)\] {
  right: calc(50% + 245px);
}

.right-\[calc\(50\%\+259px\)\] {
  right: calc(50% + 259px);
}

.right-\[calc\(50\%\+265px\)\] {
  right: calc(50% + 265px);
}

.right-\[calc\(50\%\+272px\)\] {
  right: calc(50% + 272px);
}

.right-\[calc\(50\%\+415px\)\] {
  right: calc(50% + 415px);
}

.right-\[calc\(50\%\+444px\)\] {
  right: calc(50% + 444px);
}

.right-\[calc\(50\%\+476px\)\] {
  right: calc(50% + 476px);
}

.right-\[calc\(50\%\+530px\)\] {
  right: calc(50% + 530px);
}

.right-\[calc\(50\%\+538px\)\] {
  right: calc(50% + 538px);
}

.right-\[calc\(50\%\+565px\)\] {
  right: calc(50% + 565px);
}

.right-\[calc\(50\%\+570px\)\] {
  right: calc(50% + 570px);
}

.right-\[calc\(50\%\+635px\)\] {
  right: calc(50% + 635px);
}

.right-\[calc\(50\%\+644px\)\] {
  right: calc(50% + 644px);
}

.right-\[calc\(50\%\+672px\)\] {
  right: calc(50% + 672px);
}

.right-\[calc\(50\%\+695px\)\] {
  right: calc(50% + 695px);
}

.right-\[calc\(50\%\+698px\)\] {
  right: calc(50% + 698px);
}

.right-\[calc\(50\%\+770px\)\] {
  right: calc(50% + 770px);
}

.right-\[calc\(50\%\+826px\)\] {
  right: calc(50% + 826px);
}

.right-\[calc\(50\%\+835px\)\] {
  right: calc(50% + 835px);
}

.right-\[calc\(50\%\+90px\)\] {
  right: calc(50% + 90px);
}

.right-0 {
  right: 0;
}

.right-3px {
  right: 3px;
}

.right-40px {
  right: 40px;
}

.right-50\% {
  right: 50%;
}

.top-0 {
  top: 0;
}

.top-100px {
  top: 100px;
}

.top-132px,
[top-132px=''] {
  top: 132px;
}

.top-140px {
  top: 140px;
}

.top-195px {
  top: 195px;
}

.top-214px,
[top-214px=''] {
  top: 214px;
}

.top-215px {
  top: 215px;
}

.top-235px {
  top: 235px;
}

.top-244px,
[top-244px=''] {
  top: 244px;
}

.top-265px {
  top: 265px;
}

.top-317px,
[top-317px=''] {
  top: 317px;
}

.top-340px,
[top-340px=''] {
  top: 340px;
}

.top-350px {
  top: 350px;
}

.top-400px {
  top: 400px;
}

.top-430px {
  top: 430px;
}

.top-459px,
[top-459px=''] {
  top: 459px;
}

.top-470px,
[top-470px=''] {
  top: 470px;
}

.top-50\% {
  top: 50%;
}

.top-50px {
  top: 50px;
}

.top-530px {
  top: 530px;
}

.top-582px,
[top-582px=''] {
  top: 582px;
}

.top-590px,
[top-590px=''] {
  top: 590px;
}

.top-67px,
[top-67px=''] {
  top: 67px;
}

.top-75px {
  top: 75px;
}

.top-80px {
  top: 80px;
}

.top-auto {
  top: auto;
}

.z--1,
[z--1=''] {
  z-index: -1;
}

.z--2 {
  z-index: -2;
}

.z-1 {
  z-index: 1;
}

.z-10 {
  z-index: 10;
}

.z-2 {
  z-index: 2;
}

.z-20 {
  z-index: 20;
}

.order-2 {
  order: 2;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-2px {
  margin-top: 2px;
  margin-bottom: 2px;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-10px {
  margin-bottom: 10px;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-40px {
  margin-bottom: 40px;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mr--10px {
  margin-right: -10px;
}

.mr-auto {
  margin-right: auto;
}

.mt-22px {
  margin-top: 22px;
}

.mt-2px {
  margin-top: 2px;
}

.mt-auto {
  margin-top: auto;
}

.hidden {
  display: none;
}

.h-100\%,
.h-full {
  height: 100%;
}

.h-100px {
  height: 100px;
}

.h-11px {
  height: 11px;
}

.h-26px {
  height: 26px;
}

.h-48px {
  height: 48px;
}

.h-80px {
  height: 80px;
}

.h1 {
  height: 0.25rem;
}

.h2 {
  height: 0.5rem;
}

.h3 {
  height: 0.75rem;
}

.max-w-400px {
  max-width: 400px;
}

.w-100\%,
.w-full {
  width: 100%;
}

.w-100px {
  width: 100px;
}

.w-120px {
  width: 120px;
}

.w-130px {
  width: 130px;
}

.w-13px {
  width: 13px;
}

.w-141px,
[w-141px=''] {
  width: 141px;
}

.w-144px {
  width: 144px;
}

.w-265px {
  width: 265px;
}

.w-27px {
  width: 27px;
}

.w-29px,
[w-29px=''] {
  width: 29px;
}

.w-40px {
  width: 40px;
}

.w-42px {
  width: 42px;
}

.w-45px {
  width: 45px;
}

.w-48px {
  width: 48px;
}

.w-55px {
  width: 55px;
}

.w-57px,
[w-57px=''] {
  width: 57px;
}

.w-58px {
  width: 58px;
}

.w-591px {
  width: 591px;
}

.w-60px {
  width: 60px;
}

.w-70px {
  width: 70px;
}

.w-78px {
  width: 78px;
}

.w-87px,
[w-87px=''] {
  width: 87px;
}

.w-90px {
  width: 90px;
}

.w-96px,
[w-96px=''] {
  width: 96px;
}

.w-97px,
[w-97px=''] {
  width: 97px;
}

.w-auto,
[w-auto=''] {
  width: auto;
}

.flex {
  display: flex;
}

.flex-inline,
.inline-flex {
  display: inline-flex;
}

.flex-grow {
  flex-grow: 1;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.translate-y--50\% {
  --un-translate-y: -50%;
  transform: translate(var(--un-translate-x)) translateY(var(--un-translate-y))
    translateZ(var(--un-translate-z)) rotate(var(--un-rotate))
    rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y))
    rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y))
    scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y))
    scaleZ(var(--un-scale-z));
}

.transform {
  transform: translate(var(--un-translate-x)) translateY(var(--un-translate-y))
    translateZ(var(--un-translate-z)) rotate(var(--un-rotate))
    rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y))
    rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y))
    scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y))
    scaleZ(var(--un-scale-z));
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-20px {
  gap: 20px;
}

.gap-x-10 {
  column-gap: 2.5rem;
}

.gap-x-4 {
  column-gap: 1rem;
}

.gap-y-15px {
  row-gap: 15px;
}

.flex-items-end {
  align-items: flex-end;
}

.flex-items-center {
  align-items: center;
}

.border {
  border-width: 1px;
}

.bg-\#fff,
.bg-white {
  --un-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--un-bg-opacity));
}

.dark .dark\:bg-hex-121212 {
  --un-bg-opacity: 1;
  background-color: rgb(18 18 18 / var(--un-bg-opacity));
}

.pa-3 {
  padding: 0.75rem;
}

.pa-4 {
  padding: 1rem;
}

.pb-11 {
  padding-bottom: 2.75rem;
}

.pb-25px {
  padding-bottom: 25px;
}

.pb-90px {
  padding-bottom: 90px;
}

.pl-8px {
  padding-left: 8px;
}

.pt-50px {
  padding-top: 50px;
}

.pt-70px {
  padding-top: 70px;
}

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

.text-balance {
  text-wrap: balance;
}

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

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

.text-20px {
  font-size: 20px;
}

.text-24px {
  font-size: 24px;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

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

.dark .dark\:text-white {
  --un-text-opacity: 1;
  color: rgb(255 255 255 / var(--un-text-opacity));
}

.text-black {
  --un-text-opacity: 1;
  color: rgb(0 0 0 / var(--un-text-opacity));
}

.text-pinky {
  --un-text-opacity: 1;
  color: rgb(255 79 220 / var(--un-text-opacity));
}

.fw-400 {
  font-weight: 400;
}

.fw-700 {
  font-weight: 700;
}

.line-height-1\.8em {
  line-height: 1.8em;
}

.font-pixel {
  font-family: Pixeloid Sans;
}

.font-sans {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
    'Apple Color Emoji', 'Segoe UI Emoji', Segoe UI Symbol, 'Noto Color Emoji';
}

.uppercase {
  text-transform: uppercase;
}

.text-shadow {
  --un-text-shadow: 0 0 1px var(--un-text-shadow-color, rgb(0 0 0 / 0.2)),
    0 0 1px var(--un-text-shadow-color, rgb(1 0 5 / 0.1));
  text-shadow: var(--un-text-shadow);
}

.filter {
  filter: var(--un-blur) var(--un-brightness) var(--un-contrast)
    var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate)
    var(--un-invert) var(--un-saturate) var(--un-sepia);
}

.transition {
  transition-property: color, background-color, border-color, outline-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}

.transition-200 {
  transition-property: color, background-color, border-color, outline-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.2s;
}

.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

@media (max-width: 1749.9px) {
  .lt-xxl\:bottom-20px,
  [lt-xxl\:bottom-20px=''] {
    bottom: 20px;
  }

  .lt-xxl\:top-220px,
  [lt-xxl\:top-220px=''] {
    top: 220px;
  }

  .lt-xxl\:hidden,
  [lt-xxl\:hidden=''] {
    display: none;
  }

  .lt-xxl\:w-140px,
  [lt-xxl\:w-140px=''] {
    width: 140px;
  }

  .lt-xxl\:w-42px,
  [lt-xxl\:w-42px=''] {
    width: 42px;
  }
}

@media (max-width: 1379.9px) {
  .lt-xl\:hidden,
  [lt-xl\:hidden=''] {
    display: none;
  }
}

@media (max-width: 1199.9px) {
  .lt-lg\:visible,
  [lt-lg\:visible=''] {
    visibility: visible;
  }

  .lt-lg\:bottom--15px {
    bottom: -15px;
  }

  .lt-lg\:bottom--30px {
    bottom: -30px;
  }

  .lt-lg\:left-15px {
    left: 15px;
  }

  .lt-lg\:left-30px {
    left: 30px;
  }

  .lt-lg\:mb-30px {
    margin-bottom: 30px;
  }

  .lt-lg\:hidden,
  [lt-lg\:hidden=''] {
    display: none;
  }

  .lt-lg\:h-72px {
    height: 72px;
  }

  .lt-lg\:w-240px {
    width: 240px;
  }

  .lt-lg\:pb-65px {
    padding-bottom: 65px;
  }

  .lt-lg\:pt-50px {
    padding-top: 50px;
  }
}

@media (max-width: 767.9px) {
  .lt-md\:bottom--12px {
    bottom: -12px;
  }

  .lt-md\:bottom--24px {
    bottom: -24px;
  }

  .lt-md\:left-12px {
    left: 12px;
  }

  .lt-md\:left-24px {
    left: 24px;
  }

  .lt-md\:right-2px {
    right: 2px;
  }

  .lt-md\:mb-30px {
    margin-bottom: 30px;
  }

  .lt-md\:ml-auto {
    margin-left: auto;
  }

  .lt-md\:mt-1px {
    margin-top: 1px;
  }

  .lt-md-hidden {
    display: none;
  }

  .lt-md\:hidden\! {
    display: none !important;
  }

  .lt-md\:h-22px {
    height: 22px;
  }

  .lt-md\:h-40px {
    height: 40px;
  }

  .lt-md\:h-60px {
    height: 60px;
  }

  .lt-md\:w-200px {
    width: 200px;
  }

  .lt-md\:w-40px {
    width: 40px;
  }

  .lt-md\:w-501px {
    width: 501px;
  }

  .lt-md\:w-66px {
    width: 66px;
  }

  .lt-md\:flex-col {
    flex-direction: column;
  }

  .lt-md\:gap-16px {
    gap: 16px;
  }

  .lt-md\:pl-6px {
    padding-left: 6px;
  }
}

@media (max-width: 575.9px) {
  .lt-sm\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .lt-sm\:hidden,
  [lt-sm\:hidden=''] {
    display: none;
  }

  .lt-sm\:h-80px {
    height: 80px;
  }
}

@media (max-width: 424.9px) {
  .lt-xs\:mb-20px {
    margin-bottom: 20px;
  }

  .lt-xs\:hidden\! {
    display: none !important;
  }

  .lt-xs\:h-54px {
    height: 54px;
  }

  .lt-xs\:w-180px {
    width: 180px;
  }
}

@media (min-width: 768px) {
  .md\:hidden {
    display: none;
  }
}

@media (min-width: 1200px) {
  .lg-hidden,
  .lg\:hidden,
  [lg-hidden=''] {
    display: none;
  }
}

@media (min-width: 1380px) {
  .xl\:hidden {
    display: none;
  }
}

@font-face {
  font-family: swiper-icons;
  src: url(data:application/font-woff;charset=utf-8;base64,\ d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA);
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(
    --swiper-wrapper-transition-timing-function,
    initial
  );
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translateZ(0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper:before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper:before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: #00000026;
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, #00000080, #0000);
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, #00000080, #0000);
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, #00000080, #0000);
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, #00000080, #0000);
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}
