* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --main-offset: 100px;
  --section-offset: 120px;
  --header-height: 80px;
}

body {
  font-family: "Gotham Pro", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #0D0D11;
}

main {
  display: grid;
  flex-direction: column;
  color: #ffffff;
  position: relative;
  z-index: 5;
}
main section:not(:first-of-type) {
  margin-top: var(--section-offset);
}
@media (max-width: 1000px) {
  main {
    --main-offset: 96px;
    --section-offset: 96px;
  }
}
@media (max-width: 768px) {
  main {
    --main-offset: 152px;
    --section-offset: 72px;
    padding-top: var(--header-height);
  }
}
@media (max-width: 480px) {
  main {
    --main-offset: 144px;
    --section-offset: 64px;
  }
}
@media (max-width: 360px) {
  main {
    --main-offset: 112px;
    --section-offset: 56px;
  }
}

a {
  text-decoration: none;
}

@font-face {
  font-family: "Gotham Pro";
  src: url(/assets/fonts/GothamPro.ttf);
  font-weight: normal;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/assets/fonts/GothamPro-Bold.ttf);
  font-weight: bold;
}
@font-face {
  font-family: "Gotham Pro";
  src: url(/assets/fonts/GothamPro-Black.ttf);
  font-weight: 900;
}
@font-face {
  font-family: "RF Dewi Expanded";
  src: url(/assets/fonts/RF-Dewi-Expanded-Black.eot);
  src: local("RF Dewi Expanded Black"), local("RF-Dewi-Expanded-Black"), url(/assets/fonts/RF-Dewi-Expanded-Black.woff) format("woff"), url(/assets/fonts/RF-Dewi-Expanded-Black.woff2) format("woff2");
  font-weight: 900;
}
.content-wrapper {
  position: relative;
  margin-inline: auto;
  max-width: 1200px;
  padding-inline: 20px;
  z-index: 5;
  box-sizing: content-box;
}
@media (max-width: 480px) {
  .content-wrapper {
    padding-inline: 16px;
    overflow-x: hidden;
  }
}

.title {
  font-weight: 900;
  font-family: "RF Dewi Expanded", "Roboto", serif;
  line-height: 1.16;
}
.title--main {
  font-size: 64px;
}
@media (max-width: 1000px) {
  .title--main {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .title--main {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .title--main {
    font-size: 28px;
  }
}
@media (max-width: 360px) {
  .title--main {
    font-size: 26px;
  }
}
.title--secondary {
  font-size: 52px;
}
@media (max-width: 1000px) {
  .title--secondary {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .title--secondary {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .title--secondary {
    font-size: 24px;
  }
}
@media (max-width: 360px) {
  .title--secondary {
    font-size: 22px;
  }
}
.title--subtitle {
  font-size: 20px;
}
@media (max-width: 1000px) {
  .title--subtitle {
    font-size: 18px;
  }
}
@media (max-width: 360px) {
  .title--subtitle {
    font-size: 16px;
  }
}

.text {
  color: #a6a6a6;
  font-weight: 400;
}
.text--red {
  color: #ee2737;
}
.text--white {
  color: #ffffff;
}
.text--primary {
  font-size: 24px;
  line-height: 1.28;
}
@media (max-width: 1000px) {
  .text--primary {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .text--primary {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .text--primary {
    font-size: 16px;
  }
}
.text--secondary {
  font-size: 18px;
  line-height: 1.28;
}
@media (max-width: 1000px) {
  .text--secondary {
    font-size: 16px;
  }
}

.app-link {
  cursor: pointer;
  transition: color, background-color 0.3s ease;
  padding: 1px;
}
.app-link--secondary {
  color: #ffffff;
}
.app-link--secondary:hover {
  -webkit-text-fill-color: #ee2737;
  color: #ee2737;
}
.app-link--primary {
  color: #ffffff;
  background-color: #ee2737;
  border-radius: 16px;
  padding: 28px 32px 24px;
}
.app-link--primary:hover {
  background-color: #BF1F2C;
}

@media (max-width: 768px) {
  body:has(.header__nav-checkbox:checked) {
    overflow-y: hidden;
  }
  body:has(.header__nav-checkbox:checked) header:before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(6px);
  }
}

header {
  position: relative;
  z-index: 99;
}
header.en .header__container .header__nav-content {
  display: none;
}
header .header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
  z-index: 3;
}
@media (max-width: 768px) {
  header .header__container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding-inline: inherit;
    background-color: #0D0D11;
  }
}
@media (max-width: 360px) {
  header .header__container {
    height: 64px;
  }
}
header .header__container .header__logo {
  z-index: 2;
}
@media (max-width: 360px) {
  header .header__container .header__logo svg {
    width: 150px;
  }
}
header .header__container .header__nav-checkbox {
  display: none;
}
header .header__container .header__nav-checkbox:checked + .header__nav-controls + .header__nav-content {
  transform: translateY(0);
}
header .header__container .header__nav-checkbox:checked + .header__nav-controls + .header__nav-content .app-link {
  opacity: 1;
  transition: opacity 0.3s ease-out;
}
header .header__container .header__nav-checkbox:checked + .header__nav-controls .header__nav-icon-person {
  display: none;
}
header .header__container .header__nav-checkbox:checked + .header__nav-controls .header__nav-icon-line {
  display: block;
}
header .header__container .header__nav-checkbox:checked + .header__nav-controls .header__nav-icon-line:nth-of-type(1) {
  transform: translateY(4px) rotate(45deg);
  margin: 0;
}
header .header__container .header__nav-checkbox:checked + .header__nav-controls .header__nav-icon-line:nth-of-type(2) {
  visibility: hidden;
  transition: none;
}
header .header__container .header__nav-checkbox:checked + .header__nav-controls .header__nav-icon-line:nth-of-type(3) {
  transform: translateY(-4px) rotate(-45deg);
  margin: 0;
}
header .header__container .header__nav-controls {
  display: none;
  align-items: center;
  gap: 40px;
  z-index: 2;
}
@media (max-width: 768px) {
  header .header__container .header__nav-controls {
    display: flex;
  }
}
header .header__container .header__nav-controls .header__nav-label.button {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
}
header .header__container .header__nav-controls .header__nav-label .header__nav-icon-line {
  width: 18px;
  height: 2px;
  background-color: #f2f2f2;
  border-radius: 1px;
  transition: transform 0.5s ease, visibility 0.1s ease 0.3s;
  transform-origin: center center;
}
header .header__container .header__nav-controls .header__nav-label .header__nav-icon-line:not(:first-of-type) {
  margin-top: 4px;
}
header .header__container .header__nav-content {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 40px;
  position: relative;
  z-index: 3;
}
@media (max-width: 768px) {
  header .header__container .header__nav-content {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    position: fixed;
    gap: 20px;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    transition: transform 0.3s ease;
    transform: translateY(-100%);
    padding-top: 96px;
    padding-inline: 20px;
    padding-bottom: 30px;
    background: black;
    border: 1px solid red;
    border-radius: 0 0 20px 20px;
  }
  header .header__container .header__nav-content .app-link {
    opacity: 0;
    transition: unset;
  }
}
header .header__container .header__nav-content .header__nav-link {
  width: 100%;
}
header .header__container .header__nav-content .header__nav-link:has(+ .button) {
  position: relative;
}
@media (max-width: 768px) {
  header .header__container .header__nav-content .header__nav-link:has(+ .button)::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    bottom: -20px;
    background-color: #232328;
  }
}
@media (max-width: 768px) {
  header .header__container .header__nav-content .header__nav-link.user {
    position: relative;
    margin-bottom: 20px;
  }
  header .header__container .header__nav-content .header__nav-link.user::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    bottom: -20px;
    background-color: #232328;
  }
}
header .header__container .header__nav-content .button,
header .header__container .header__nav-content .user {
  display: none;
}
@media (max-width: 768px) {
  header .header__container .header__nav-content .button,
  header .header__container .header__nav-content .user {
    display: block;
  }
}
header .header__container .header__nav-content .button--login, header .header__container .header__nav-content .button--logout,
header .header__container .header__nav-content .user--login,
header .header__container .header__nav-content .user--logout {
  margin-top: 20px;
}
header .header__container .header__app-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  header .header__container .header__app-links {
    display: none;
  }
}
header .header__container[data-authorized="0"] .user, header .header__container[data-authorized="0"] .button--logout {
  display: none;
}
header .header__container[data-authorized="0"] .header__nav-icon-person {
  display: none;
}
header .header__container[data-authorized="1"] .button--login {
  display: none;
}
header .header__container[data-authorized="1"] .header__nav-icon-line {
  display: none;
}
header .button {
  border: 1px solid red;
  border-radius: 8px;
  padding: 10px;
}
header .button--logout {
  padding: 4px 8px;
  border-color: #232328;
}
header .button--logout:hover {
  transition: border-color 0.2s ease-in;
  border-color: #ee2737;
}
header .locale {
  position: relative;
}
@media (min-width: 768px) {
  header .locale {
    margin-right: 20px;
  }
}
header .locale::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #232328;
  right: -20px;
  top: 0;
}

.description {
  min-height: calc(100dvh - 80px);
}
.description .content-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
.description__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
}
.description__pros-list {
  max-width: 645px;
  list-style: none;
  padding-left: 0;
  padding-top: 40px;
}
.description__pros-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  line-height: 26px;
}
@media (max-width: 1000px) {
  .description__pros-list li {
    font-size: 18px;
    line-height: 23px;
  }
}
@media (max-width: 480px) {
  .description__pros-list li {
    gap: 4px;
    font-size: 16px;
    line-height: 20px;
  }
}
.description__pros-list li span {
  color: #a6a6a6;
}
.description__pros-list li span.icon {
  align-self: baseline;
}
.description__pros-list li span.label {
  align-self: flex-start;
}
.description__pros-list li + li {
  margin-top: 16px;
}
.description__sign-up-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding-inline: 32px;
  border-radius: 16px;
  margin-top: 64px;
  height: 64px;
  font-size: 18px;
}
@media (max-width: 1000px) {
  .description__sign-up-link {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .description__sign-up-link {
    border-radius: 12px;
    margin-top: 52px;
    height: 52px;
  }
}
@media (max-width: 480px) {
  .description__sign-up-link {
    margin-top: 40px;
    height: 40px;
  }
}
@media (max-width: 360px) {
  .description__sign-up-link {
    width: unset;
  }
}

.monetization .title--secondary {
  padding-bottom: 80px;
}
.monetization-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.monetization-steps .steps-card[data-index="1"] {
  padding-top: 0px;
}
.monetization-steps .steps-card[data-index="2"] {
  padding-top: 101px;
}
.monetization-steps .steps-card[data-index="3"] {
  padding-top: 202px;
}
.monetization-steps .steps-card[data-index="0"] .path-wrapper {
  display: none;
}
@media (max-width: 1000px) {
  .monetization .title--secondary {
    padding-bottom: 64px;
  }
}
@media (max-width: 768px) {
  .monetization .title--secondary {
    padding-bottom: 56px;
  }
  .monetization-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .monetization-steps .steps-card[data-index] {
    padding-top: unset;
  }
}
@media (max-width: 480px) {
  .monetization .title--secondary {
    padding-bottom: 40px;
  }
  .monetization-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 360px) {
  .monetization .title--secondary {
    padding-bottom: 32px;
  }
  .monetization-steps {
    gap: 32px;
  }
}

.locale {
  position: relative;
  z-index: 3;
}
.locale-current {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.locale img {
  width: 24px;
  height: 18px;
}
.locale span {
  line-height: 100%;
  text-transform: uppercase;
}
.locale-langs {
  border: 1px solid #ee2737;
  border-radius: 0.5rem;
  box-sizing: border-box;
  font-size: 1rem;
  font-weight: 400;
  left: 50%;
  line-height: 20px;
  padding: 0.625rem 1rem;
  position: absolute;
  top: calc(100% + 12px);
  transform: translateX(-50%);
  animation: 0.5s ease-out 0s 1 slideInFromTop forwards;
}
.locale svg {
  border-radius: 4px;
}

@keyframes slideInFromTop {
  0% {
    transform: translate(-50%, -100%);
    opacity: 0;
  }
  100% {
    transform: translateX(-50%);
    opacity: 1;
  }
}
.hidden {
  display: none;
}

@keyframes draw-line {
  0% {
    clip-path: inset(0 99% 45% 0);
  }
  50% {
    clip-path: inset(0 45% 45% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes rotate-arrow {
  0% {
    left: 10px;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
  }
  48% {
    left: 51%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
  }
  60% {
    left: 50%;
    transform: translate(-50%, 50%) rotate(0deg);
  }
  100% {
    left: 50%;
    top: calc(100% - 10px);
    transform: translate(-50%, 50%) rotate(0deg);
  }
}
@keyframes fade {
  0% {
    opacity: 0;
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    transform: unset;
  }
}
.steps-card {
  --animation-time: 1s;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.steps-card__main-section {
  display: inherit;
  flex-direction: inherit;
  gap: 32px;
}
.steps-card__main-section .steps-card__image,
.steps-card__main-section .steps-card__title,
.steps-card__main-section .steps-card__content {
  opacity: 0;
  transform: translateY(20%);
}
@media (max-width: 1000px) {
  .steps-card__main-section {
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .steps-card__main-section {
    gap: 20px;
  }
}
.steps-card img {
  width: 100%;
}
.steps-card .path-wrapper {
  width: 100%;
  height: 80px;
  position: relative;
  margin-bottom: 10px;
  display: none;
}
.steps-card .path-wrapper .path-arrow {
  position: absolute;
  z-index: 2;
  width: 12px;
  aspect-ratio: 1;
  left: 10px;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
}
.steps-card .path-wrapper .path-arrow svg {
  width: 100%;
  height: 100%;
}
.steps-card .path-wrapper .path-clipper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: inset(0 99% 45% 0);
}
.steps-card .path-wrapper .path-clipper:before {
  content: "";
  position: absolute;
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: 2;
  background-color: #ee2737;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.steps-card .path-wrapper .path-line {
  border-radius: 8px;
  position: relative;
  left: -50%;
  top: 50%;
  width: 100%;
  height: 100%;
  outline: 2px dashed #232328;
  outline-offset: -1px;
}
@media (min-width: 768px) {
  .steps-card--animated .path-wrapper {
    display: block;
  }
}
.steps-card--animated .path-arrow {
  animation: rotate-arrow var(--animation-time) ease-in forwards;
}
.steps-card--animated .path-clipper {
  animation: draw-line var(--animation-time) ease-in forwards;
}
.steps-card--animated .steps-card__main-section .steps-card__image {
  animation: fade calc(var(--animation-time) / 3) ease-in forwards;
}
.steps-card--animated .steps-card__main-section .steps-card__title {
  animation: fade calc(var(--animation-time) / 3) ease-in forwards;
  animation-delay: calc(var(--animation-time) / 3);
}
.steps-card--animated .steps-card__main-section .steps-card__content {
  animation: fade calc(var(--animation-time) / 3) ease-in forwards;
  animation-delay: calc(var(--animation-time) / 3 * 2);
}

.reasons {
  --scroll-progress-bar-height: 0;
  background: url(/assets/img/bg.d764cc4a.webp) no-repeat center center;
  background-size: cover;
  border-radius: 40px;
  padding-block: var(--section-offset);
}
@media (max-width: 1000px) {
  .reasons {
    border-radius: 32px;
  }
}
@media (min-width: 1920px) {
  .reasons {
    margin-inline: 20px;
  }
}
.reasons__description {
  padding-block: 40px 80px;
}
@media (max-width: 1000px) {
  .reasons__description {
    padding-block: 32px 64px;
  }
}
@media (max-width: 768px) {
  .reasons__description {
    padding-block: 24px 56px;
  }
}
@media (max-width: 480px) {
  .reasons__description {
    padding-block: 24px 40px;
  }
}
@media (max-width: 360px) {
  .reasons__description {
    padding-block: 20px 32px;
  }
}
.reasons__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
}
.reasons__cards:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  outline: 1px dashed #232328;
  outline-offset: -1px;
}
.reasons__cards:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: var(--scroll-progress-bar-height);
  background-color: #ee2737;
  transition: height 0.1s linear;
}
.reasons__cards .reason-card {
  z-index: 1;
}
@media (min-width: 1000px) {
  .reasons__cards .reason-card {
    width: 100%;
  }
  .reasons__cards .reason-card:not(:first-of-type) {
    margin-top: unset;
  }
}
@media (min-width: 768px) {
  .reasons__cards .reason-card {
    width: 49.1%;
  }
  .reasons__cards .reason-card:not(:first-of-type) {
    margin-top: -100px;
  }
  .reasons__cards .reason-card:nth-of-type(2n) {
    margin-left: auto;
  }
}
.reasons__cards .app-link {
  width: 100%;
  padding: 32px 24px;
  margin-top: 60px;
  font-size: 24px;
  line-height: 1.28;
  z-index: 1;
  text-align: center;
}
@media (max-width: 1000px) {
  .reasons__cards .app-link {
    padding: 24px;
    font-size: 20px;
  }
}
.reasons__summary {
  pointer-events: none;
}
.reasons__decorate-dot {
  position: absolute;
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #ee2737;
  transform: translate(-3.5px, 50%);
  transition: top 0.1s linear;
  left: 50%;
  top: min(var(--scroll-progress-bar-height), 95%);
}

.reason-card {
  display: grid;
  grid-template-columns: 80px auto;
  align-items: center;
  gap: 20px;
  padding: 32px;
  background: #232328;
  border-radius: 24px;
  opacity: 0;
  transform: translateY(-15%);
  transition-property: transform, opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease-in;
}
.reason-card[data-shown="1"] {
  opacity: 1;
  transform: unset;
}
.reason-card__content {
  grid-column: 1/3;
}
.reason-card__icon {
  aspect-ratio: 1;
  max-width: 80px;
}

.other-pros .pros-cards {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) {
  .other-pros .pros-cards {
    margin-top: 64px;
  }
}
@media (max-width: 768px) {
  .other-pros .pros-cards {
    margin-top: 56px;
  }
}
@media (max-width: 480px) {
  .other-pros .pros-cards {
    margin-top: 40px;
  }
}
@media (max-width: 360px) {
  .other-pros .pros-cards {
    margin-top: 32px;
  }
}
.other-pros .pros-cards .pros-card:nth-of-type(3) {
  grid-column: 1/3;
}
.other-pros .pros-cards .pros-card:nth-of-type(4) {
  grid-column: 3/4;
  grid-row: 1/3;
}
.en .other-pros .pros-cards {
  grid-template-columns: repeat(2, 1fr);
}
.en .other-pros .pros-cards .pros-card:nth-of-type(3) {
  grid-column: 1/3;
}
.en .other-pros .pros-cards .pros-card:nth-of-type(4) {
  display: none;
}
@media (max-width: 768px) {
  .other-pros .pros-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .other-pros .pros-cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .other-pros .pros-cards {
    gap: 20px;
  }
  .other-pros .pros-cards .pros-card:nth-of-type(3) {
    grid-column: auto;
  }
  .other-pros .pros-cards .pros-card:nth-of-type(4) {
    grid-column: auto;
    grid-row: auto;
  }
}

.pros-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  border-radius: 24px;
  background-color: #19191D;
  border: 1px solid #232328;
}
@media (max-width: 1000px) {
  .pros-card {
    padding: 24px;
    border-radius: 20px;
  }
}

.lp-card {
  background: url(/assets/img/bg-pattern.a4e3a7c8.png);
  border: 2px solid #6a35ff;
  overflow: hidden;
}
@media (min-width: 1000px) {
  .lp-card__title {
    font-size: 24px;
  }
}
.lp-card .text--lp {
  color: #6a35ff;
}
.lp-card .text {
  color: #ffffff;
}
.lp-card__gifts {
  margin-block: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 400px;
  align-self: center;
}
.lp-card__gifts .lp-card__gift:nth-of-type(1) {
  opacity: 0.24;
  scale: 0.7;
  transform: rotate(-20deg);
}
.lp-card__gifts .lp-card__gift:nth-of-type(2) {
  opacity: 0.32;
  scale: 0.9;
  transform: rotate(20deg);
}
.lp-card__gifts .lp-card__gift:nth-of-type(3) {
  opacity: 0.48;
  scale: 1.2;
  transform: rotate(-20deg);
}
.lp-card .app-link {
  margin-top: auto;
  text-align: center;
  background-color: #6a35ff;
}
.lp-card .app-link:hover {
  background-color: #5028BF;
}

.partners {
  position: relative;
}
.partners .content-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 20px;
}
.partners__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  grid-column: 1/3;
  padding-right: 126px;
}
@media (max-width: 1000px) {
  .partners__content {
    padding-right: 100px;
  }
}
@media (max-width: 768px) {
  .partners__content {
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .partners .content-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .partners__content {
    grid-column: auto;
  }
}
@media (max-width: 480px) {
  .partners .content-wrapper {
    display: flex;
    flex-direction: column;
  }
}
.partners__invite-card {
  padding: 6px 6px 30px;
  border: 2px solid #ee2737;
  border-radius: 24px;
}
.partners__invite-card .invite-card {
  background-color: #0D0D11;
}
.partners__invite-card .invite-card__image {
  width: 100%;
}
.partners__invite-card .invite-card__content {
  padding-inline: 30px;
}
.partners__invite-card .invite-card__content .text {
  padding-block: 24px 32px;
  text-align: center;
}
@media (max-width: 1000px) {
  .partners__invite-card .invite-card__content .text {
    padding-block: 20px 24px;
  }
}
.partners__invite-card .invite-card__link {
  width: 100%;
  display: inline-block;
  text-align: center;
}

.footer {
  position: relative;
  z-index: 90;
  margin-top: var(--main-offset);
  padding-block: 48px 24px;
  border-radius: 32px;
  background-color: #19191D;
  border: 1px solid #232328;
}
@media (min-width: 1920px) {
  .footer {
    margin-inline: 20px;
    margin-bottom: 20px;
    border-radius: 40px;
  }
}
.footer__content {
  display: flex;
  gap: 70px;
  padding-bottom: 48px;
}
.en .footer__content {
  padding-bottom: 16px;
}
.footer__logo {
  flex: 1 1 auto;
}
.footer__nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 16px;
  justify-content: space-between;
}
@media (max-width: 1000px) {
  .footer__nav {
    justify-content: flex-start;
  }
}
.footer__nav label[for=support] {
  color: #a6a6a6;
}
.footer__nav-link {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.footer__nav .support {
  color: #ee2737;
}
.footer__nav .support:hover {
  color: #BF1F2C;
  -webkit-text-fill-color: #BF1F2C;
}
.footer__nav .app-link--secondary {
  color: #a6a6a6;
}
.footer__nav .app-link--secondary:hover {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}
.footer__links {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  position: relative;
}
.en .footer__links {
  display: none;
}
.footer__links:before {
  content: "";
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #232328;
}
.footer__links .socials {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  align-self: flex-start;
}
.footer__links .lucky-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  flex: 1 1 auto;
  gap: 24px;
}
@media (max-width: 768px) {
  .footer__links .lucky-group {
    justify-content: unset;
  }
}
.footer__links .lucky-group .app-link {
  transition: opacity 0.3s ease-in;
}
.footer__links .lucky-group .app-link:not(.footer__links .lucky-group .app-link:hover) {
  opacity: 0.24;
}
@media (max-width: 480px) {
  .footer .footer__content, .footer .footer__links {
    flex-direction: column;
    gap: 20px;
  }
}

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 91;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 40px;
  opacity: 1;
  transition: opacity 0.4s ease-in;
}
.back-to-top.hide {
  opacity: 0;
  pointer-events: none;
}
.back-to-top.en {
  width: 48px;
}
.back-to-top button {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  outline: unset;
  border: unset;
  cursor: pointer;
  padding: unset;
}
.back-to-top__label {
  color: #8A8A8A;
  text-align: center;
  font-size: 12px;
  line-height: 15.38px;
  text-transform: uppercase;
}

@keyframes wave {
  0% {
    transform: translateY(-52%);
  }
  100% {
    transform: translateY(-48%);
  }
}
.logo-decoration {
  position: absolute;
  width: 100%;
  height: calc(100dvh - var(--main-offset));
  z-index: 1;
  overflow-x: hidden;
}
@supports (overflow-x: clip) {
  .logo-decoration {
    overflow-x: clip;
  }
}
.logo-decoration .logo {
  position: relative;
  left: 50%;
  top: 50%;
  width: fit-content;
  transform: translateY(-52%);
  animation: wave 4s alternate infinite ease-in;
}
.logo-decoration .logo:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(90deg, #0D0D11 0%, rgba(255, 255, 255, 0) 100%);
}

@keyframes float-light-1 {
  0%, 5% {
    top: 0;
    left: 0;
  }
  30%, 35% {
    top: 30%;
    left: 90%;
  }
  64%, 69% {
    top: 100%;
    left: 67%;
  }
  95%, 100% {
    top: 0;
    left: 0;
  }
}
@keyframes float-light-2 {
  0%, 4% {
    top: 80%;
    left: 80%;
  }
  23%, 27% {
    top: 15%;
    left: 67%;
  }
  48%, 52% {
    top: 39%;
    left: 4%;
  }
  73%, 77% {
    top: 110%;
    left: 23%;
  }
  96%, 100% {
    top: 80%;
    left: 80%;
  }
}
.lights-decoration {
  position: absolute;
  width: 100%;
  height: calc(100dvh - var(--main-offset));
  overflow-x: hidden;
  z-index: 1;
}
@supports (overflow-x: clip) {
  .lights-decoration {
    overflow-x: clip;
  }
}
.lights-decoration img {
  width: 50%;
  aspect-ratio: 1;
  position: absolute;
  transform: translate(-50%, -50%);
  opacity: 0.4;
}
.lights-decoration img:nth-of-type(1) {
  top: 0;
  left: 0;
  animation: float-light-1 12s infinite ease-in-out;
}
.lights-decoration img:nth-of-type(2) {
  top: 80%;
  left: 80%;
  animation: float-light-2 12s infinite ease-in-out;
}
.lights-decoration--tail {
  transform: scaleX(-1);
  height: calc(100% + var(--main-offset));
}
.lights-decoration--tail img {
  transform: translateY(-80%);
}
/*# sourceMappingURL=app.625cd133.css.map */