@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  outline: none;
  padding: 0;
  margin: 0;
}

*::before,
*::after {
  pointer-events: none;
}

ul[class],
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  min-width: 375px;
  scroll-behavior: smooth;
  overscroll-behavior: none;
  font-family: "Manrope", sans-serif;
  /* text-rendering: optimizeSpeed; */
  font-variant-numeric: lining-nums tabular-nums;
  background: #060509;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}
img::-moz-selection {
  background: none;
}
img::selection {
  background: none;
}

input {
  border-radius: 0;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  background: none;
  border: none;
  border-radius: 0;
  color: inherit;
  cursor: pointer;
}

video {
  pointer-events: none;
}

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

.container {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1300px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 700px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.main {
  width: 100%;
  overflow: hidden;
  flex: 1;
}

.blur-label {
  padding: 6px 12px;
  color: var(--Secondary-Light, #E6E6E6);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1.52%, rgba(255, 255, 255, 0.13) 99.71%);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.blur-label::before {
  content: "";
  width: 6px;
  min-width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3BEC4F;
  box-shadow: 0px 0px 10.8px #3BEC4F;
}
.blur-label::after {
  content: "";
  position: absolute;
  inset: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1.52%, rgba(255, 255, 255, 0) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.grad-text {
  background: linear-gradient(90deg, #FFF 60.94%, #948A98 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.grad-text.pink {
  background: linear-gradient(90deg, #FFF 52.27%, #EAC9E4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.grad-text.blue {
  background: linear-gradient(91deg, #FFF 52.96%, #5A4BFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  white-space: nowrap;
  position: relative;
  border-radius: 38px;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 20px; /* 125% */
  letter-spacing: 0.32px;
  text-transform: uppercase;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.gradient-button::after {
  content: "";
  position: absolute;
  inset: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1.52%, rgba(255, 255, 255, 0.13) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.gradient-button__wrap {
  position: relative;
  padding: 24px 36px;
  border-radius: 40px;
  background: radial-gradient(134.63% 144.12% at 50% 100%, #E83BFF 0%, #369CFF 100%);
  overflow: hidden;
}
.gradient-button__wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1.52%, rgba(255, 255, 255, 0.13) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.gradient-button__wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: radial-gradient(134.63% 144.12% at 50% 100%, #C710DF 0%, #1E90FF 100%);
  z-index: 2;
  opacity: 0;
  transition: 0.3s;
}
.gradient-button__wrap span {
  position: relative;
  z-index: 3;
}
.gradient-button:hover .gradient-button__wrap::before {
  opacity: 1;
}
.gradient-button.gradient-button_second {
  font-size: 14px;
  line-height: 20px;
}
.gradient-button.gradient-button_second .gradient-button__wrap {
  background: radial-gradient(134.63% 144.12% at 50% 100%, #635A75 0%, #7A7096 100%);
  padding: 18px 24px;
}
.gradient-button.gradient-button_second .gradient-button__wrap::before {
  background: radial-gradient(134.63% 144.12% at 50% 100%, #695A85 0%, #493F69 100%);
}

h2 {
  text-align: center;
  font-size: 56px;
  font-weight: 600;
  line-height: 110%; /* 61.6px */
  letter-spacing: -2.24px;
}
@media (max-width: 1300px) {
  h2 {
    font-size: 48px;
    letter-spacing: -1.92px;
  }
}
@media (max-width: 700px) {
  h2 {
    font-size: 40px;
    letter-spacing: -1.6px;
  }
}

/* Stretching corners effect - карточка деформируется к курсору */
.stretch-card {
  position: relative;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
  overflow: hidden;
}

/* Деформация карточки через transform */
.stretch-card {
  transform: perspective(1000px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg)) translateZ(var(--translate-z, 0px));
}

/* Эффект свечения при наведении */
.stretch-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.stretch-card:hover::before {
  opacity: 1;
}

/* Содержимое карточки поверх эффекта */
.stretch-card > * {
  position: relative;
  z-index: 2;
}

.grad-label {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 125% */
  letter-spacing: -0.32px;
  text-transform: uppercase;
  background: radial-gradient(134.63% 144.12% at 50% 100%, #E83BFF 0%, #369CFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}
@media (max-width: 1000px) {
  .header {
    position: fixed;
    width: calc(100% - 20px);
    left: 10px;
    top: 10px;
    border-radius: 100px;
  }
  .header.scroll {
    background: rgba(15, 15, 15, 0.5);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    transition: 0.3s !important;
  }
}
@media (max-width: 1640px) {
  .header .container {
    max-width: 1616px;
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media (max-width: 1300px) {
  .header .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 700px) {
  .header .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 600px) {
  .header .container {
    padding-left: 16px;
    padding-right: 10px;
  }
}
.header__wrap {
  width: 100%;
  padding: 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 1200px) {
  .header__wrap {
    padding: 24px 0;
  }
}
@media (max-width: 1000px) {
  .header__wrap {
    padding: 10px 0;
  }
}
.header__logo {
  display: block;
  width: 148px;
}
@media (max-width: 1000px) {
  .header__logo {
    overflow: hidden;
    display: flex;
    width: 30px;
  }
}
@media (max-width: 1000px) {
  .header__logo img {
    width: 148px;
    max-width: 148px;
    min-width: 148px;
  }
}
.header__list {
  display: flex;
  align-items: center;
  gap: 48px;
  color: var(--Medium-Gray, #8A8F98);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 142.857% */
  text-transform: uppercase;
}
@media (max-width: 1000px) {
  .header__list {
    display: none;
  }
}
.header__list-item {
  position: relative;
}
.header__list-item.sub:hover {
  color: #fff;
}
.header__list-item.sub:hover .header__list-link .icon {
  transform: rotateX(180deg);
}
.header__list-item.sub:hover .sublist {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.header__list-item .sublist {
  position: absolute;
  left: 0;
  top: calc(100% + 12px);
  white-space: nowrap;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1.52%, rgba(255, 255, 255, 0.13) 99.71%);
  box-shadow: 0px 12px 64px 0px rgba(0, 0, 0, 0.77);
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #E6E6E6;
  padding: 4px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.3s;
}
.header__list-item .sublist::before {
  content: "";
  position: absolute;
  bottom: 100%;
  height: 12px;
  width: 100%;
  pointer-events: all;
}
.header__list-item .sublist a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 16px;
  gap: 10px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 142.857% */
  text-transform: uppercase;
  border-radius: 12px;
  transition: 0.3s;
}
.header__list-item .sublist a:hover {
  color: #fff;
}
.header__list-item .sublist a .icon {
  width: 24px;
  height: 24px;
}
.header__list-item .sublist a.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.header__list-link {
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header__list-link .icon {
  width: 16px;
  height: 16px;
  transition: 0.3s;
}
.header__list-link:hover {
  color: #fff;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 700px) {
  .header__nav {
    gap: 16px;
  }
}
.header__login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 24px;
  border: 1px solid #FFF;
  background: rgba(138, 143, 152, 0.18);
  padding: 13px 14px;
  color: var(--Secondary-Light, #E6E6E6);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 142.857% */
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
.header__login .icon {
  width: 16px;
  height: 16px;
}
@media (max-width: 700px) {
  .header .header__login {
    display: none;
  }
}
.header__lang {
  position: relative;
}
.header__lang .lang-list {
  position: absolute;
  top: calc(100% + 12px);
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1.52%, rgba(255, 255, 255, 0.13) 99.71%);
  box-shadow: 0px 12px 64px 0px rgba(0, 0, 0, 0.77);
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.3s;
}
.header__lang.open .lang-list {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.header__lang.open .header__lang-current .icon {
  transform: rotateX(180deg);
}
.header__lang .header__lang-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 16px;
  width: 100%;
  border-radius: 12px;
  transition: 0.3s;
  color: var(--Secondary-Light, #E6E6E6);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 142.857% */
  text-transform: uppercase;
}
.header__lang .header__lang-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.header__lang .header__lang-item .icon {
  width: 24px;
  height: 24px;
}
@media (max-width: 1000px) {
  .header__lang .header__lang-item .flag {
    display: none;
  }
}
.header__lang .header__lang-item.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.header__lang-current {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #F6F6F6;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 142.857% */
  letter-spacing: -0.28px;
  cursor: pointer;
  border-radius: 24px;
  background: rgba(138, 143, 152, 0.18);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  position: relative;
}
.header__lang-current::after {
  content: "";
  position: absolute;
  inset: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1.52%, rgba(255, 255, 255, 0) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.header__lang-current .icon {
  width: 16px;
  height: 16px;
  transition: 0.3s;
}
@media (max-width: 1000px) {
  .header__lang-current .flag {
    display: none;
  }
}
@media (max-width: 1000px) {
  .header .header__lang {
    display: none;
  }
}
.header .burger {
  display: none;
}
@media (max-width: 1000px) {
  .header .burger {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    width: 48px;
    height: 48px;
  }
}
.header .burger::after, .header .burger::before {
  content: "";
  display: block;
  position: absolute;
  width: 32px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}
@media (max-width: 600px) {
  .header .burger::after, .header .burger::before {
    width: 28px;
  }
}
.header .burger:after {
  transform: translateY(-4px);
}
.header .burger:before {
  transform: translateY(4px);
}

.mobile-menu {
  display: none;
  background: rgba(15, 15, 15, 0.5);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media (max-width: 1000px) {
  .mobile-menu {
    display: block;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
  }
}
.mobile-menu__wrap {
  width: 100%;
  padding: 160px 32px 40px;
  height: 100dvh;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  max-height: 100dvh;
  overflow: auto;
  gap: 16px;
}
@media (max-width: 700px) {
  .mobile-menu__wrap {
    padding: 130px 20px 40px;
  }
}
.mobile-menu .mob-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}
.mobile-menu .mob-nav a {
  flex-grow: 1;
}
.mobile-menu .lang-list {
  flex-direction: row;
  width: auto;
  z-index: 10;
}
.mobile-menu__list {
  color: var(--Medium-Gray, #8A8F98);
  font-family: Manrope;
  font-size: 27px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 74.074% */
  text-transform: uppercase;
  width: 100%;
}
.mobile-menu__list li {
  margin-bottom: 78px;
}
@media (max-width: 600px) {
  .mobile-menu__list li {
    margin-bottom: 42px;
  }
}
.mobile-menu__list li a {
  display: flex;
  align-items: center;
  max-width: -moz-fit-content;
  max-width: fit-content;
  gap: 6px;
}
.mobile-menu__list li .icon {
  width: 32px;
  height: 32px;
}
.mobile-menu__list .sublist {
  padding-top: 32px;
  display: none;
  font-size: 18px;
}
.mobile-menu__list .sublist li {
  margin-bottom: 24px;
}
.mobile-menu__list .sublist li:last-child {
  margin-bottom: 0;
}
.mobile-menu__list .sublink .icon {
  transition: 0.3s;
}
.mobile-menu__list .open > a > .icon {
  transform: rotateX(180deg);
}
.mobile-menu__list .open .sublist {
  display: block;
}
.mobile-menu__list .open .sublist a {
  width: 100%;
  max-width: 100% !important;
  color: var(--Secondary-Light, #E6E6E6);
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 125% */
  text-transform: uppercase;
  padding: 16px;
  border-radius: 12px;
}
.mobile-menu__list .open .sublist a .icon {
  width: 24px;
  height: 24px;
}
.mobile-menu__list .open .sublist a.active {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1000px) {
  .mobile-menu-open {
    overflow: hidden;
  }
  .mobile-menu-open .header {
    background: none !important;
    -webkit-backdrop-filter: blur(0);
            backdrop-filter: blur(0);
  }
  .mobile-menu-open .mobile-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}
.mobile-menu-open .burger::before {
  transform: rotate(45deg);
}
.mobile-menu-open .burger span {
  opacity: 0;
}
.mobile-menu-open .burger::after {
  transform: rotate(-45deg);
}

.hero {
  --headerHeight: 112px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .hero {
    --headerHeight: 96px;
  }
}
.hero::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -300px;
  left: 0;
  width: 100%;
  height: 514px;
  background: linear-gradient(180deg, rgba(6, 5, 9, 0) 0%, rgba(6, 5, 9, 0.97) 42.41%, #060509 100%);
  z-index: 3;
}
@media (max-width: 1300px) {
  .hero::before {
    bottom: -200px;
  }
}
@media (max-width: 930px) {
  .hero::before {
    bottom: -100px;
  }
}
.hero__vector {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2500px;
  max-width: 2500px;
  left: -40%;
  pointer-events: none;
}
@media (max-width: 930px) {
  .hero__vector {
    top: 20%;
  }
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.04;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  pointer-events: none;
}
@media (max-width: 600px) {
  .hero__bg {
    height: 80%;
    -o-object-position: top right;
       object-position: top right;
    opacity: 0.06;
  }
}
.hero__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 3;
  padding: calc(128px + var(--headerHeight)) 0 318px;
}
@media (max-width: 1700px) {
  .hero__wrap {
    padding: calc(72px + var(--headerHeight)) 0 260px;
  }
}
@media (max-width: 930px) {
  .hero__wrap {
    flex-direction: column;
    padding: calc(40px + var(--headerHeight)) 0 100px;
  }
}
@media (max-width: 500px) {
  .hero__wrap {
    padding: calc(0px + var(--headerHeight)) 0 100px;
  }
}
.hero__text {
  max-width: 600px;
  width: 100%;
}
@media (max-width: 1150px) {
  .hero__text {
    max-width: 480px;
  }
}
@media (max-width: 930px) {
  .hero__text {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
  }
}
@media (max-width: 500px) {
  .hero__text {
    margin-bottom: 24px;
  }
}
.hero__text .blur-label {
  margin-bottom: 24px;
}
@media (max-width: 600px) {
  .hero__text .blur-label {
    display: none;
  }
}
.hero__text h1 {
  font-size: 85px;
  font-style: normal;
  font-weight: 600;
  line-height: 94px; /* 110.588% */
  letter-spacing: -3.4px;
  margin-bottom: 40px;
}
@media (max-width: 1150px) {
  .hero__text h1 {
    font-size: 64px;
    line-height: 72px; /* 112.5% */
    letter-spacing: -2.56px;
  }
}
@media (max-width: 930px) {
  .hero__text h1 {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .hero__text h1 {
    font-size: 50px;
    line-height: 60px; /* 120% */
    letter-spacing: -2px;
  }
}
@media (max-width: 500px) {
  .hero__text h1 {
    margin-bottom: 24px;
  }
}
.hero__text p {
  color: var(--White, #FFF);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px; /* 144.444% */
  max-width: 550px;
  margin-bottom: 48px;
}
@media (max-width: 930px) {
  .hero__text p {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .hero__text p {
    font-size: 16px;
    line-height: 26px; /* 162.5% */
    margin-bottom: 40px;
  }
}
@media (max-width: 500px) {
  .hero__text p {
    margin-bottom: 24px;
  }
}
@media (max-width: 600px) {
  .hero__text a {
    width: 100%;
    max-width: 100%;
  }
  .hero__text a .gradient-button__wrap {
    width: 100%;
    text-align: center;
  }
}
.hero__images {
  position: absolute;
  bottom: -60px;
  right: -100px;
  width: 28em;
  height: 100%;
  font-size: 20px;
  pointer-events: none;
}
@media (max-width: 1700px) {
  .hero__images {
    bottom: -100px;
    right: -120px;
  }
}
@media (max-width: 1400px) {
  .hero__images {
    right: auto;
    left: 70%;
  }
}
@media (max-width: 1300px) {
  .hero__images {
    font-size: 16px;
    bottom: 20px;
    left: calc(100% - 18em);
  }
}
@media (max-width: 1150px) {
  .hero__images {
    bottom: 20px;
    font-size: 15px;
  }
}
@media (max-width: 930px) {
  .hero__images {
    position: relative;
    left: 0;
    bottom: 0;
    right: 0;
    height: 30em;
  }
}
@media (max-width: 600px) {
  .hero__images {
    font-size: 14px;
    left: 30px;
  }
}
.hero__images .card {
  display: flex;
  align-items: flex-start;
  padding: 0.4em 0.6em;
  border-radius: 0.6em;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1.52%, rgba(255, 255, 255, 0.03) 99.71%);
  -webkit-backdrop-filter: blur(19px);
          backdrop-filter: blur(19px);
  position: relative;
  max-width: -moz-fit-content;
  max-width: fit-content;
  transition: 0.6s;
  scale: 0;
}
.hero__images .card::after {
  content: "";
  position: absolute;
  inset: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1.52%, rgba(255, 255, 255, 0) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero__images .card .info {
  display: flex;
  align-items: flex-start;
  width: 5em;
}
.hero__images .card .info img {
  width: 0.8em;
  max-width: 0.8em;
  margin-top: 0.1em;
  margin-right: 0.2em;
}
.hero__images .card .info .text {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}
.hero__images .card .info .name {
  color: #FFF;
  font-size: 0.7em;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 142.857% */
}
.hero__images .card .info span {
  color: #FFF;
  font-size: 0.5em;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 120% */
  opacity: 0.64;
}
.hero__images .card .dots {
  align-self: center;
}
.hero__images .card .cost {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  width: 5em;
}
.hero__images .card .cost .num {
  color: #FFF;
  font-size: 0.7em;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 142.857% */
}
.hero__images .card .cost .percent {
  padding: 0.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.5em;
  background: rgba(13, 168, 87, 0.08);
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.hero__images .card .cost .percent span {
  color: #0DA857;
  font-size: 0.5em;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 120% */
  opacity: 0.64;
}
.hero__images .card .summ {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  width: 4.5em;
}
.hero__images .card .summ .num {
  color: #FFF;
  font-size: 0.7em;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 142.857% */
}
.hero__images .card .summ span {
  color: #FFF;
  font-size: 0.5em;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 120% */
  opacity: 0.64;
}
.hero__images .card2 {
  position: absolute;
  rotate: -5deg;
  left: -7em;
  bottom: 35em;
  scale: 0;
}
@media (max-width: 930px) {
  .hero__images .card2 {
    left: 2em;
    bottom: 20em;
    scale: 0;
  }
}
.hero__images .card2.aos-animate, .hero__images .card2.active {
  rotate: -10deg;
  left: -10em;
  bottom: 39em;
  scale: 1;
}
@media (max-width: 930px) {
  .hero__images .card2.aos-animate, .hero__images .card2.active {
    left: -2em;
    bottom: 24em;
    scale: 1;
  }
}
.hero__images .card2.card-hidden {
  rotate: -5deg;
  left: -7em;
  bottom: 35em;
  scale: 0;
}
@media (max-width: 930px) {
  .hero__images .card2.card-hidden {
    left: 2em;
    bottom: 20em;
    scale: 0;
  }
}
.hero__images .card1 {
  position: absolute;
  left: -5em;
  bottom: 19.5em;
  rotate: -10deg;
  scale: 0;
}
@media (max-width: 930px) {
  .hero__images .card1 {
    left: 3em;
    bottom: 3.5em;
    scale: 0;
  }
}
.hero__images .card1.aos-animate, .hero__images .card1.active {
  left: -8em;
  bottom: 19.5em;
  rotate: 0deg;
  scale: 1;
}
@media (max-width: 930px) {
  .hero__images .card1.aos-animate, .hero__images .card1.active {
    left: -1em;
    bottom: 5.5em;
    rotate: 0deg;
    scale: 1;
  }
}
.hero__images .card1.card-hidden {
  left: -5em;
  bottom: 19.5em;
  rotate: -10deg;
  scale: 0;
}
@media (max-width: 930px) {
  .hero__images .card1.card-hidden {
    left: 3em;
    bottom: 3.5em;
    scale: 0;
  }
}
.hero__images .card3 {
  position: absolute;
  left: -1.5em;
  bottom: 12.7em;
  rotate: -3deg;
  scale: 0;
}
@media (max-width: 930px) {
  .hero__images .card3 {
    left: 3.5em;
    bottom: 0.7em;
    scale: 0;
  }
}
.hero__images .card3.aos-animate, .hero__images .card3.active {
  left: -4.5em;
  bottom: 15.7em;
  rotate: 0deg;
  scale: 1;
}
@media (max-width: 930px) {
  .hero__images .card3.aos-animate, .hero__images .card3.active {
    left: 1.5em;
    bottom: 1.7em;
    rotate: 0deg;
    scale: 1;
  }
}
.hero__images .card3.card-hidden {
  left: 2.5em;
  bottom: 12.7em;
  rotate: -3deg;
  scale: 0;
}
@media (max-width: 930px) {
  .hero__images .card3.card-hidden {
    left: 3.5em;
    bottom: 0.7em;
    scale: 0;
  }
}
.hero__images .card4 {
  position: absolute;
  rotate: 9deg;
  right: 10em;
  bottom: 30.5em;
  scale: 0;
}
@media (max-width: 930px) {
  .hero__images .card4 {
    right: 3em;
    bottom: 17em;
    scale: 0;
  }
}
.hero__images .card4.aos-animate, .hero__images .card4.active {
  rotate: 9deg;
  right: 7em;
  bottom: 33.5em;
  scale: 1;
}
@media (max-width: 930px) {
  .hero__images .card4.aos-animate, .hero__images .card4.active {
    right: 1em;
    bottom: 20em;
    scale: 1;
  }
}
.hero__images .card4.card-hidden {
  rotate: 9deg;
  right: 10em;
  bottom: 30.5em;
  scale: 0;
}
@media (max-width: 930px) {
  .hero__images .card4.card-hidden {
    right: 3em;
    bottom: 17em;
    scale: 0;
  }
}
.hero__phone {
  width: 40.45em;
  max-width: 40.45em;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
}
@media (max-width: 930px) {
  .hero__phone {
    top: -5em;
    bottom: auto;
    left: -6em;
  }
}

.logos-sroller {
  width: 100%;
  margin-top: -120px;
  z-index: 3;
  position: relative;
}
@media (max-width: 930px) {
  .logos-sroller {
    margin-top: 0;
  }
}
.logos-sroller__wrap {
  width: 100%;
}
.logos-sroller .scroller__inner {
  gap: 120px;
  align-items: center;
  justify-content: center;
}
.logos-sroller .scroller {
  max-width: 100%;
  -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
  mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
  overflow: hidden;
}

.scroller__inner {
  padding-block: 1rem;
  display: flex;
  gap: 1rem;
}

.scroller[data-animated=true] {
  overflow: visible;
}

.scroller[data-animated=true] .scroller__inner {
  width: -moz-max-content;
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction=right] {
  --_animation-direction: reverse;
}

.scroller[data-direction=left] {
  --_animation-direction: forwards;
}

.scroller[data-speed=fast] {
  --_animation-duration: 20s;
}

.scroller[data-speed=slow] {
  --_animation-duration: 40s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}
.crypto-wallet {
  width: 100%;
  position: relative;
  z-index: 3;
  padding-top: 200px;
}
@media (max-width: 1600px) {
  .crypto-wallet {
    padding-top: 180px;
  }
}
@media (max-width: 1300px) {
  .crypto-wallet {
    padding-top: 160px;
  }
}
@media (max-width: 700px) {
  .crypto-wallet {
    padding-top: 128px;
  }
}
.crypto-wallet__wrap {
  width: 100%;
}
.crypto-wallet__wrap > .gradient-button {
  display: none;
}
@media (max-width: 900px) {
  .crypto-wallet__wrap > .gradient-button {
    display: flex;
    margin: 60px auto 0;
  }
}
@media (max-width: 600px) {
  .crypto-wallet__wrap > .gradient-button {
    text-align: center;
    max-width: 100%;
  }
  .crypto-wallet__wrap > .gradient-button .gradient-button__wrap {
    width: 100%;
  }
}
.crypto-wallet__top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 32px;
}
@media (max-width: 1600px) {
  .crypto-wallet__top {
    margin-bottom: 32px;
  }
}
.crypto-wallet__top .titles {
  text-align: left;
  max-width: 660px;
}
.crypto-wallet__top .grad-label {
  margin-bottom: 16px;
}
.crypto-wallet__top p {
  color: var(--Secondary-Light, #E6E6E6);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 144.444% */
  letter-spacing: -0.18px;
}
.crypto-wallet__top h2 {
  text-align: left;
  margin-bottom: 16px;
}
@media (max-width: 900px) {
  .crypto-wallet__top a {
    display: none;
  }
}
.crypto-wallet__nav {
  width: 100%;
  display: flex;
  border-radius: 24px;
  background: #0E0C15;
  padding: 4px;
  margin-bottom: 42px;
  gap: 8px;
  position: relative;
  z-index: 4;
}
@media (max-width: 1600px) {
  .crypto-wallet__nav {
    margin-bottom: 32px;
  }
}
@media (max-width: 1100px) {
  .crypto-wallet__nav {
    margin-bottom: 24px;
  }
}
@media (max-width: 700px) {
  .crypto-wallet__nav {
    display: flex;
    left: -20px;
    width: calc(100% + 40px);
    overflow: hidden;
    border-radius: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1000px) {
  .crypto-wallet__nav .swiper-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}
@media (max-width: 700px) {
  .crypto-wallet__nav .swiper-wrapper {
    display: flex;
    gap: 0;
  }
}
.crypto-wallet__nav-item {
  flex: 1;
  padding: 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 96px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1300px) {
  .crypto-wallet__nav-item {
    padding: 8px 12px;
    min-height: 80px;
  }
}
@media (max-width: 1000px) and (min-width: 701px) {
  .crypto-wallet__nav-item {
    margin: 0 !important;
    width: 100% !important;
  }
}
@media (max-width: 700px) {
  .crypto-wallet__nav-item {
    flex: none;
    min-width: 290px;
    width: 290px;
  }
}
.crypto-wallet__nav-item:last-child {
  margin-right: 0 !important;
}
.crypto-wallet__nav-item .text::before {
  content: "";
  width: 357px;
  height: 230px;
  transform: rotate(-45deg);
  position: absolute;
  left: -201px;
  top: -215px;
  border-radius: 357px;
  background: linear-gradient(88deg, rgba(255, 59, 231, 0.29) 2.78%, rgba(54, 156, 255, 0.29) 122.3%);
  filter: blur(60px);
  opacity: 0;
  transition: 0.3s;
}
.crypto-wallet__nav-item .text:after {
  content: "";
  width: 527px;
  height: 341px;
  transform: rotate(-41deg);
  position: absolute;
  right: -130px;
  bottom: -327px;
  border-radius: 527px;
  background: linear-gradient(88deg, rgba(255, 59, 231, 0.29) 2.78%, rgba(54, 156, 255, 0.29) 122.3%);
  filter: blur(60px);
  opacity: 0;
  transition: 0.3s;
}
.crypto-wallet__nav-item::after {
  content: "";
  position: absolute;
  inset: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(230deg, #DE36FF 1.52%, #7F74FF 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: 0.3s;
  opacity: 0;
}
.crypto-wallet__nav-item img {
  height: 40px;
}
.crypto-wallet__nav-item .name {
  color: var(--White, #FFF);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 120% */
  margin-bottom: 8px;
  text-align: left;
}
@media (max-width: 1300px) {
  .crypto-wallet__nav-item .name {
    font-size: 18px;
    line-height: 20px; /* 111.111% */
    margin-bottom: 4px;
  }
}
@media (max-width: 700px) {
  .crypto-wallet__nav-item .name {
    font-size: 16px;
    line-height: 18px; /* 111.111% */
  }
}
.crypto-wallet__nav-item p {
  color: #80788F;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  transition: 0.3s;
  text-align: left;
}
@media (max-width: 1300px) {
  .crypto-wallet__nav-item p {
    font-size: 12px;
    line-height: 16px; /* 133.333% */
  }
}
.crypto-wallet__nav-item.swiper-slide-thumb-active::after {
  opacity: 1;
}
.crypto-wallet__nav-item.swiper-slide-thumb-active p {
  color: #fff;
}
.crypto-wallet__nav-item.swiper-slide-thumb-active .text::before {
  opacity: 1;
}
.crypto-wallet__nav-item.swiper-slide-thumb-active .text::after {
  opacity: 1;
}
.crypto-wallet__nav-item:hover .text::before {
  opacity: 1;
}
.crypto-wallet__nav-item:hover .text::after {
  opacity: 1;
}
.crypto-wallet__swiper {
  width: 100%;
  overflow: visible;
}
.crypto-wallet__swiper .swiper-wrapper {
  align-items: center;
}
.crypto-wallet__item {
  width: auto;
  position: relative;
}
.crypto-wallet__item img {
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .crypto-wallet__item img {
    width: auto !important;
    height: 50vw;
  }
}
@media (max-width: 900px) {
  .crypto-wallet__item.crypto-wallet__item1 {
    max-width: 100%;
  }
}
.crypto-wallet__item.crypto-wallet__item1::before {
  content: "";
  width: 631px;
  height: 36px;
  border-radius: 631px;
  background: linear-gradient(270deg, #060509 -3.02%, #9D79FF 47.63%, #060509 104.1%);
  filter: blur(24px);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 100%);
  transition: 1s;
  z-index: -1;
  will-change: filter, transform;
}
@media (max-width: 900px) {
  .crypto-wallet__item.crypto-wallet__item1::before {
    height: 3%;
    width: 80%;
  }
}
.crypto-wallet__item.crypto-wallet__item1 img {
  width: 827px;
  transition: 1s;
}
.crypto-wallet__item.crypto-wallet__item1:hover::before {
  left: 60%;
}
.crypto-wallet__item.crypto-wallet__item1:hover img {
  transform: scale(1.03);
}
@media (max-width: 900px) {
  .crypto-wallet__item.crypto-wallet__item2 {
    max-width: 100%;
  }
}
.crypto-wallet__item.crypto-wallet__item2::before {
  content: "";
  display: block;
  height: 470px;
  width: 70px;
  top: 50%;
  left: 0;
  transform: translate(15%, -50%);
  border-radius: 200%;
  background: linear-gradient(270deg, #060509 -3.02%, #9D79FF 47.63%, #060509 104.1%);
  filter: blur(24px);
  position: absolute;
  transition: 1s;
  z-index: -1;
  will-change: filter, transform;
}
@media (max-width: 900px) {
  .crypto-wallet__item.crypto-wallet__item2::before {
    height: 70%;
    width: 6%;
    left: 10%;
  }
}
.crypto-wallet__item.crypto-wallet__item2::after {
  content: "";
  display: block;
  width: 377px;
  height: 26px;
  flex-shrink: 0;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 290%);
  border-radius: 200%;
  background: linear-gradient(270deg, #060509 -3.02%, #9D79FF 47.63%, #060509 104.1%);
  filter: blur(24px);
  position: absolute;
  transition: 1s;
  z-index: -1;
  will-change: filter, transform;
}
@media (max-width: 900px) {
  .crypto-wallet__item.crypto-wallet__item2::after {
    height: 3%;
    width: 100%;
    left: 50%;
  }
}
.crypto-wallet__item.crypto-wallet__item2 img {
  width: 412px;
  transition: 1s;
  min-height: 300px;
}
.crypto-wallet__item.crypto-wallet__item2:hover::before {
  transform: translate(30%, -50%);
}
.crypto-wallet__item.crypto-wallet__item2:hover::after {
  transform: translate(-50%, 350%);
}
.crypto-wallet__item.crypto-wallet__item2:hover img {
  transform: scale(1.03);
}
@media (max-width: 900px) {
  .crypto-wallet__item.crypto-wallet__item3 {
    max-width: 100%;
  }
}
.crypto-wallet__item.crypto-wallet__item3::before {
  content: "";
  width: 631px;
  height: 36px;
  border-radius: 631px;
  background: linear-gradient(270deg, #060509 -3.02%, #9D79FF 47.63%, #060509 104.1%);
  filter: blur(24px);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 100%);
  transition: 1s;
  z-index: -1;
  will-change: filter, transform;
}
@media (max-width: 900px) {
  .crypto-wallet__item.crypto-wallet__item3::before {
    height: 3%;
    width: 80%;
  }
}
.crypto-wallet__item.crypto-wallet__item3 img {
  width: 827px;
  transition: 1s;
}
.crypto-wallet__item.crypto-wallet__item3:hover::before {
  left: 40%;
}
.crypto-wallet__item.crypto-wallet__item3:hover img {
  transform: scale(1.03);
}
.crypto-wallet__item.crypto-wallet__item4 {
  width: 73%;
}
@media (max-width: 900px) {
  .crypto-wallet__item.crypto-wallet__item4 {
    max-width: 100%;
    width: auto;
  }
}
.crypto-wallet__item.crypto-wallet__item4::before {
  content: "";
  display: block;
  height: 470px;
  width: 70px;
  top: 50%;
  left: 330px;
  transform: translate(0%, -50%);
  border-radius: 200%;
  background: linear-gradient(270deg, #060509 -3.02%, #9D79FF 47.63%, #060509 104.1%);
  filter: blur(24px);
  position: absolute;
  transition: 1s;
  z-index: -1;
  will-change: filter, transform;
}
@media (max-width: 900px) {
  .crypto-wallet__item.crypto-wallet__item4::before {
    height: 70%;
    width: 6%;
    left: 90%;
  }
}
.crypto-wallet__item.crypto-wallet__item4::after {
  content: "";
  display: block;
  width: 377px;
  height: 26px;
  flex-shrink: 0;
  bottom: 100%;
  left: 200px;
  transform: translate(-50%, 290%);
  border-radius: 200%;
  background: linear-gradient(270deg, #060509 -3.02%, #9D79FF 47.63%, #060509 104.1%);
  filter: blur(24px);
  position: absolute;
  transition: 1s;
  z-index: -1;
  will-change: filter, transform;
}
@media (max-width: 900px) {
  .crypto-wallet__item.crypto-wallet__item4::after {
    height: 3%;
    width: 100%;
    left: 50%;
  }
}
.crypto-wallet__item.crypto-wallet__item4:hover::before {
  transform: translate(-20%, -50%);
}
.crypto-wallet__item.crypto-wallet__item4:hover::after {
  transform: translate(-50%, 350%);
}
.crypto-wallet__item.crypto-wallet__item4:hover img {
  transform: scale(1.03);
}
.crypto-wallet__item.crypto-wallet__item4 img {
  width: 412px;
  transition: 1s;
  position: relative;
  z-index: 5;
  min-height: 300px;
}

.assets {
  width: 100%;
}
.assets > .gradient-button {
  display: none;
}
@media (max-width: 900px) {
  .assets > .gradient-button {
    display: flex;
    margin: 0 auto 0;
  }
}
@media (max-width: 600px) {
  .assets > .gradient-button {
    text-align: center;
    max-width: calc(100% - 40px);
    margin-top: 32px;
  }
  .assets > .gradient-button .gradient-button__wrap {
    width: 100%;
  }
}
.assets__wrap {
  width: 100%;
  padding-top: 180px;
}
@media (max-width: 1100px) {
  .assets__wrap {
    padding-top: 160px;
  }
}
@media (max-width: 900px) {
  .assets__wrap {
    padding-top: 144px;
  }
}
@media (max-width: 600px) {
  .assets__wrap {
    padding-top: 128px;
  }
}
.assets__top {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 80px;
  gap: 32px;
}
@media (max-width: 1600px) {
  .assets__top {
    margin-bottom: 74px;
  }
}
@media (max-width: 1300px) {
  .assets__top {
    margin-bottom: 56px;
  }
}
.assets__top .grad-label {
  margin-bottom: 16px;
}
.assets__top h2 {
  text-align: left;
}
@media (max-width: 900px) {
  .assets__top a {
    display: none;
  }
}
.assets .scroller__inner {
  align-items: center;
  justify-content: center;
  gap: 64px;
}
.assets .scroller__inner:nth-child(1) {
  margin-bottom: 44px;
}
@media (max-width: 600px) {
  .assets .scroller__inner:nth-child(1) {
    margin-bottom: 14px;
  }
}
.assets .scroller {
  max-width: 100%;
  -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  overflow: hidden;
}

.ability {
  width: 100%;
  position: relative;
}
.ability .ability__vector {
  position: absolute;
  width: 2500px;
  max-width: 2500px;
  transform: scaleY(-1);
  left: 10%;
  opacity: 0.6;
  pointer-events: none;
}
@media (max-width: 1600px) {
  .ability .container {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media (max-width: 1300px) {
  .ability .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 700px) {
  .ability .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.ability__wrap {
  width: 100%;
  padding-top: 260px;
  display: flex;
  align-items: center;
  gap: 104px;
  position: relative;
  z-index: 3;
}
@media (max-width: 1600px) {
  .ability__wrap {
    gap: 68px;
    padding-top: 130px;
  }
}
@media (max-width: 1300px) {
  .ability__wrap {
    gap: 48px;
  }
}
@media (max-width: 1100px) {
  .ability__wrap {
    flex-direction: column;
    padding-top: 160px;
  }
}
@media (max-width: 900px) {
  .ability__wrap {
    padding-top: 144px;
  }
}
@media (max-width: 600px) {
  .ability__wrap {
    padding-top: 128px;
  }
}
.ability__images {
  display: contents;
}
@media (max-width: 1100px) {
  .ability__images {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    order: 2;
    width: 100%;
  }
}
.ability__phone {
  position: relative;
}
.ability__phone::before {
  content: "";
  display: block;
  height: 470px;
  width: 70px;
  top: 50%;
  left: 0;
  transform: translate(15%, -50%);
  border-radius: 300%;
  background: linear-gradient(270deg, #060509 -3.02%, #9D79FF 47.63%, #060509 104.1%);
  filter: blur(24px);
  position: absolute;
  transition: 1s;
  z-index: -1;
  will-change: filter, transform;
}
@media (max-width: 1300px) {
  .ability__phone::before {
    height: 70%;
    width: 10%;
  }
}
@media (max-width: 1100px) {
  .ability__phone::before {
    left: 10%;
  }
}
.ability__phone::after {
  content: "";
  display: block;
  height: 470px;
  width: 70px;
  top: 50%;
  right: 0;
  transform: translate(-35%, -50%);
  border-radius: 300%;
  background: linear-gradient(270deg, #060509 -3.02%, #9D79FF 47.63%, #060509 104.1%);
  filter: blur(24px);
  position: absolute;
  transition: 1s;
  z-index: -1;
  will-change: filter, transform;
}
@media (max-width: 1300px) {
  .ability__phone::after {
    height: 70%;
    width: 10%;
  }
}
@media (max-width: 1100px) {
  .ability__phone::after {
    right: 10%;
  }
}
.ability__phone img {
  position: relative;
  z-index: 2;
  width: 264px;
  min-width: 264px;
  transition: 1s;
}
@media (max-width: 1300px) {
  .ability__phone img {
    width: 217px;
    min-width: 217px;
  }
}
@media (max-width: 1100px) {
  .ability__phone img {
    width: 230px;
    min-width: 230px;
  }
}
@media (max-width: 600px) {
  .ability__phone img {
    width: 181px;
    min-width: 181px;
  }
}
.ability__phone:hover::before {
  transform: translate(35%, -50%);
}
.ability__phone:hover::after {
  transform: translate(-55%, -50%);
}
.ability__phone:hover img {
  transform: scale(1.03);
}
.ability__desk {
  order: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
@media (max-width: 1600px) {
  .ability__desk {
    margin-left: 20px;
  }
}
@media (max-width: 1300px) {
  .ability__desk {
    margin-left: -10px;
  }
}
.ability__desk::before {
  content: "";
  display: block;
  height: 320px;
  width: 44px;
  bottom: 0px;
  left: 0;
  border-radius: 300%;
  background: linear-gradient(270deg, #060509 -3.02%, #9D79FF 47.63%, #060509 104.1%);
  filter: blur(24px);
  position: absolute;
  transition: 1s;
  z-index: -1;
  will-change: filter, transform;
}
@media (max-width: 1300px) {
  .ability__desk::before {
    height: 60%;
    width: 3%;
  }
}
.ability__desk::after {
  content: "";
  display: block;
  height: 320px;
  width: 44px;
  transform-origin: left bottom;
  bottom: 50px;
  left: 0;
  rotate: 90deg;
  border-radius: 300%;
  background: linear-gradient(270deg, #060509 -3.02%, #9D79FF 47.63%, #060509 104.1%);
  filter: blur(24px);
  position: absolute;
  transition: 1s;
  z-index: -1;
  will-change: filter, transform;
}
@media (max-width: 1300px) {
  .ability__desk::after {
    height: 60%;
    width: 3%;
    bottom: 5%;
  }
}
@media (max-width: 1100px) {
  .ability__desk::after {
    bottom: 7%;
  }
}
.ability__desk img {
  width: 786px;
  min-width: 786px;
  transition: 1s;
  position: relative;
  z-index: 3;
}
@media (max-width: 1300px) {
  .ability__desk img {
    width: 696px;
    min-width: 696px;
  }
}
@media (max-width: 1100px) {
  .ability__desk img {
    width: 700px;
    min-width: 700px;
  }
}
@media (max-width: 600px) {
  .ability__desk img {
    width: 551px;
    min-width: 551px;
  }
}
.ability__desk:hover::before {
  translate: 0 -30%;
}
.ability__desk:hover::after {
  translate: 200px 0;
}
.ability__desk:hover img {
  transform: scale(1.03);
}
.ability__text {
  width: 470px;
  min-width: 470px;
}
@media (max-width: 1100px) {
  .ability__text {
    width: 100%;
    max-width: 736px;
    min-width: 0;
    text-align: center;
  }
}
.ability__text h2 {
  text-align: left;
  margin-bottom: 40px;
}
@media (max-width: 1100px) {
  .ability__text h2 {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .ability__text h2 {
    margin-bottom: 32px;
  }
}
.ability__text p {
  color: var(--Secondary-Light, #E6E6E6);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.18px;
  margin-bottom: 40px;
}
@media (max-width: 600px) {
  .ability__text p {
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 24px;
  }
}
.ability__text .actions {
  display: flex;
  align-items: center;
  gap: 64px;
}
@media (max-width: 1100px) {
  .ability__text .actions {
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .ability__text .actions {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .ability__text .actions .gradient-button {
    max-width: 100%;
    width: 100%;
    display: none;
  }
  .ability__text .actions .gradient-button .gradient-button__wrap {
    width: 100%;
    text-align: center;
  }
}
.ability__text .actions .text {
  display: flex;
  align-self: stretch;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .ability__text .actions .text {
    order: -1;
    margin: 0 auto;
    align-items: center;
  }
}
.ability__text .actions .cards {
  display: flex;
  align-items: center;
  gap: 32px;
}
.ability__text .actions .grad-label {
  margin-bottom: 24px;
}
@media (max-width: 600px) {
  .ability__text .actions .grad-label {
    text-align: center;
  }
}

.benefits {
  width: 100%;
}
.benefits__wrap {
  width: 100%;
  padding-top: 80px;
}
@media (max-width: 700px) {
  .benefits__wrap {
    padding-top: 60px;
  }
}
.benefits__list {
  width: 100%;
  overflow: visible;
}
.benefits__list .swiper-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 12px;
}
@media (max-width: 1100px) {
  .benefits__list .swiper-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .benefits__list .swiper-wrapper {
    display: flex;
    gap: 0;
  }
}
.benefits__item {
  border-radius: 24px;
  border: 1px solid #201B2D;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 52px 32px 32px;
  overflow: hidden;
}
@media (max-width: 1100px) {
  .benefits__item {
    padding: 32px;
    min-height: 180px;
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
}
@media (max-width: 950px) {
  .benefits__item {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 12px;
  }
}
@media (max-width: 700px) {
  .benefits__item {
    min-width: 320px;
    max-width: 320px;
    gap: 20px;
  }
}
.benefits__item:nth-child(4) .benefits__icon img {
  height: 95px;
}
.benefits__item:hover .benefits__icon img {
  transform: rotateY(360deg);
}
.benefits__icon {
  width: 112px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin: 20px 0 40px;
}
@media (max-width: 1100px) {
  .benefits__icon {
    margin: 0;
  }
}
@media (max-width: 950px) {
  .benefits__icon {
    align-self: flex-start;
  }
}
@media (max-width: 600px) {
  .benefits__icon {
    width: 90px;
    height: 90px;
  }
}
.benefits__icon::before {
  content: "";
  width: 112px;
  height: 112px;
  position: absolute;
  display: block;
  border-radius: 50%;
  background: #F6F6F6;
  opacity: 0.16;
  filter: blur(64px);
}
.benefits__icon img {
  height: 86px;
  transition: 1s;
}
@media (max-width: 600px) {
  .benefits__icon img {
    height: 70px;
  }
}
.benefits__num {
  position: absolute;
  top: 32px;
  left: 32px;
  color: #80788F;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 125% */
  letter-spacing: -0.32px;
  text-transform: uppercase;
}
@media (max-width: 1100px) {
  .benefits__num {
    position: static;
    margin-bottom: 12px;
  }
}
@media (max-width: 600px) {
  .benefits__num {
    margin-bottom: 8px;
  }
}
.benefits__title {
  width: 100%;
  text-align: left;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 133.333% */
  letter-spacing: -0.96px;
  margin-bottom: 12px;
  margin-top: auto;
}
@media (max-width: 600px) {
  .benefits__title {
    font-size: 20px;
    line-height: 24px; /* 120% */
    letter-spacing: -0.8px;
    margin-bottom: 8px;
  }
}
.benefits__text {
  color: #80788F;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  letter-spacing: -0.14px;
}
.benefits .text {
  margin-top: auto;
}
@media (max-width: 1100px) {
  .benefits .text {
    margin-top: 0;
  }
}
@media (max-width: 700px) {
  .benefits .text {
    margin-top: auto;
  }
}

.one-more {
  width: 100%;
}
.one-more__wrap {
  width: 100%;
  padding: 180px 0 0;
  display: grid;
  grid-template-columns: 2fr 1.4fr;
  gap: 14px;
}
@media (max-width: 1100px) {
  .one-more__wrap {
    gap: 8px;
    padding-top: 160px;
  }
}
@media (max-width: 1020px) {
  .one-more__wrap {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .one-more__wrap {
    padding-top: 144px;
  }
}
@media (max-width: 600px) {
  .one-more__wrap {
    padding-top: 128px;
  }
}
.one-more__left {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(160deg, rgba(252, 195, 255, 0.06) 28.04%, rgba(255, 255, 255, 0.01) 83.08%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 700px) {
  .one-more__left {
    padding: 32px 20px;
    align-items: center;
  }
}
.one-more__left::before {
  content: "";
  display: block;
  position: absolute;
  width: 545px;
  height: 359px;
  transform: rotate(66deg);
  border-radius: 545px;
  background: linear-gradient(88deg, rgba(255, 59, 231, 0.2) 2.78%, rgba(54, 156, 255, 0.2) 122.3%);
  filter: blur(64px);
  top: -400px;
  left: -100px;
}
.one-more__left::after {
  content: "";
  display: block;
  position: absolute;
  width: 778px;
  height: 359px;
  transform: rotate(-14deg);
  border-radius: 778px;
  background: linear-gradient(88deg, rgba(255, 59, 231, 0.2) 2.78%, rgba(54, 156, 255, 0.2) 122.3%);
  filter: blur(64px);
  bottom: -300px;
  right: -140px;
}
.one-more__left > * {
  position: relative;
  z-index: 5;
}
.one-more__left .labels {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}
.one-more__left .telegram-bot {
  color: var(--White, #FFF);
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 200% */
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 18px;
  background: linear-gradient(93deg, #3FD3FF -19.38%, #068ED4 97.62%);
}
@media (max-width: 600px) {
  .one-more__left .gradient-button {
    max-width: 100%;
    width: 100%;
  }
  .one-more__left .gradient-button .gradient-button__wrap {
    width: 100%;
    text-align: center;
  }
}
.one-more__left h2 {
  text-align: left;
  padding-bottom: 10px;
  margin-bottom: 14px;
}
@media (max-width: 700px) {
  .one-more__left h2 {
    text-align: center;
  }
}
.one-more__left h2 span {
  background: none;
  -webkit-text-fill-color: #1AABF4;
}
.one-more__left p {
  color: var(--Secondary-Light, #E6E6E6);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.18px;
  margin-bottom: 32px;
}
@media (max-width: 700px) {
  .one-more__left p {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.16px;
  }
}
.one-more__left p span {
  color: #80788F;
  display: block;
}
@media (max-width: 700px) {
  .one-more__left p span {
    display: inline;
  }
}
.one-more__right {
  border-radius: 24px;
  background: linear-gradient(205deg, #3FD3FF 2.55%, #068ED4 101.58%);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1100px) {
  .one-more__right {
    padding: 24px;
  }
}
@media (max-width: 700px) {
  .one-more__right {
    padding: 20px;
  }
}
.one-more__right .photos {
  display: flex;
  flex-direction: row-reverse;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-bottom: 44px;
  padding-left: 16px;
}
@media (max-width: 650px) {
  .one-more__right .photos {
    margin-bottom: 24px;
  }
}
.one-more__right .photos img {
  width: 62px;
  min-width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 3px solid #30C1F4;
  margin-left: -16px;
}
.one-more__right .left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  position: relative;
}
@media (max-width: 1020px) {
  .one-more__right .left {
    width: 300px;
  }
}
@media (max-width: 650px) {
  .one-more__right .left {
    width: auto;
  }
}
.one-more__right .messages {
  margin-bottom: 24px;
}
@media (max-width: 1100px) {
  .one-more__right .messages {
    width: 200px;
  }
}
@media (max-width: 1020px) {
  .one-more__right .messages {
    width: 100%;
    margin-bottom: 0;
  }
}
@media (max-width: 650px) {
  .one-more__right .messages {
    margin-bottom: 24px;
    width: auto;
  }
}
@media (max-width: 430px) {
  .one-more__right .messages {
    width: 190px;
  }
}
.one-more__right .telegram {
  width: 62px;
  margin-top: auto;
}
@media (max-width: 1020px) {
  .one-more__right .telegram {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 0;
  }
}
@media (max-width: 650px) {
  .one-more__right .telegram {
    position: static;
    margin-top: auto;
  }
}
.one-more__right .image {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1400px) {
  .one-more__right .image {
    right: auto;
    left: 220px;
  }
}
@media (max-width: 1100px) {
  .one-more__right .image {
    left: 180px;
  }
}
@media (max-width: 1020px) {
  .one-more__right .image {
    bottom: auto;
    top: 0;
    left: auto;
    right: 0;
  }
}
@media (max-width: 540px) {
  .one-more__right .image {
    right: auto;
    left: 200px;
  }
}
@media (max-width: 430px) {
  .one-more__right .image {
    right: auto;
    left: 170px;
  }
}
.one-more__right .image img {
  width: 304px;
  min-width: 304px;
  vertical-align: bottom;
}
@media (max-width: 430px) {
  .one-more__right .image img {
    width: 260px;
    min-width: 260px;
  }
}

.holdings {
  width: 100%;
}
.holdings__wrap {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 648px;
  gap: 102px;
  padding-top: 180px;
  align-items: center;
}
@media (max-width: 1300px) {
  .holdings__wrap {
    grid-template-columns: 1fr 574px;
    gap: 24px;
  }
}
@media (max-width: 1190px) {
  .holdings__wrap {
    grid-template-columns: 1fr 1.1fr;
  }
}
@media (max-width: 1100px) {
  .holdings__wrap {
    gap: 52px;
  }
}
@media (max-width: 1000px) {
  .holdings__wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 1000px) {
  .holdings__text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.holdings__text h2 {
  text-align: left;
  margin-bottom: 48px;
}
@media (max-width: 1000px) {
  .holdings__text h2 {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 10px;
  }
}
.holdings__text p {
  color: var(--Secondary-Light, #e6e6e6);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 144.444% */
  letter-spacing: -0.18px;
  max-width: 470px;
}
@media (max-width: 1000px) {
  .holdings__text p {
    text-align: center;
  }
}
.holdings__slider {
  max-height: 440px;
  height: 440px;
  overflow: hidden;
  position: relative;
  -webkit-mask: linear-gradient(180deg, transparent, white 10%, white 90%, transparent);
  mask: linear-gradient(180deg, transparent, white 10%, white 90%, transparent);
}
@media (max-width: 600px) {
  .holdings__slider {
    max-height: 300px;
    height: 300px;
  }
}
.holdings__slider .holdings__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: slideUp 20s linear infinite;
  transform: translateY(0);
}
.holdings__item {
  width: 100%;
  border-radius: 24px;
  border: 1px solid #201b2d;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  transform: scale(0.8);
  opacity: 0.6;
}
@media (max-width: 600px) {
  .holdings__item {
    margin-bottom: 16px;
  }
}
.holdings__item .icon {
  width: 243px;
  min-width: 243px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 136px;
  border-right: 1px solid #201b2d;
}
@media (max-width: 1100px) {
  .holdings__item .icon {
    width: 200px;
    min-width: 200px;
  }
}
@media (max-width: 700px) {
  .holdings__item .icon {
    width: 147px;
    min-width: 147px;
  }
  .holdings__item .icon img {
    max-width: 70%;
    max-height: 50%;
  }
}
@media (max-width: 600px) {
  .holdings__item .icon {
    height: 100px;
    width: 120px;
    min-width: 120px;
  }
}
@media (max-width: 600px) {
  .holdings__item {
    height: 100px;
  }
}
.holdings__item .text {
  padding: 12px 12px 12px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 1100px) {
  .holdings__item .text {
    padding-left: 38px;
  }
}
@media (max-width: 1000px) {
  .holdings__item .text {
    padding-left: 80px;
  }
}
@media (max-width: 730px) {
  .holdings__item .text {
    padding-left: 24px;
  }
}
.holdings__item .text .name {
  color: #f6f6f6;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px; /* 125% */
  letter-spacing: -0.64px;
  margin-bottom: 4px;
}
@media (max-width: 700px) {
  .holdings__item .text .name {
    font-size: 24px;
    line-height: 24px; /* 100% */
    letter-spacing: -0.48px;
  }
}
.holdings__item .text p {
  color: #80788f;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

@keyframes slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
.create {
  width: 100%;
}
.create__wrap {
  width: 100%;
  padding-top: 180px;
}
@media (max-width: 1100px) {
  .create__wrap {
    padding-top: 160px;
  }
}
@media (max-width: 900px) {
  .create__wrap {
    padding-top: 144px;
  }
}
@media (max-width: 600px) {
  .create__wrap {
    padding-top: 128px;
  }
}
@media (max-width: 900px) {
  .create__wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.create__top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 32px;
}
@media (max-width: 900px) {
  .create__top {
    display: contents;
  }
}
.create__top h2 {
  text-align: left;
}
@media (max-width: 900px) {
  .create__top h2 {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 56px;
  }
}
@media (max-width: 600px) {
  .create__top h2 {
    margin-bottom: 40px;
  }
}
@media (max-width: 900px) {
  .create__top a {
    order: 2;
    margin-top: 56px;
  }
}
@media (max-width: 600px) {
  .create__top a {
    margin-top: 32px;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .create__top a .gradient-button__wrap {
    width: 100%;
  }
}
.create__list {
  width: 100%;
  width: 100%;
  overflow: visible;
}
.create__list .swiper-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}
@media (max-width: 1300px) {
  .create__list .swiper-wrapper {
    gap: 20px;
  }
}
@media (max-width: 1100px) {
  .create__list .swiper-wrapper {
    gap: 12px;
  }
}
@media (max-width: 950px) {
  .create__list .swiper-wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .create__list .swiper-wrapper {
    display: flex;
    gap: 0;
  }
}
.create__list .benefits__item {
  min-height: 372px;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 52px;
}
@media (max-width: 1100px) {
  .create__list .benefits__item {
    min-height: 356px;
  }
}
@media (max-width: 950px) {
  .create__list .benefits__item {
    flex-direction: row;
    justify-content: space-between;
    padding-right: 44px;
    min-height: 200px;
    align-items: center;
    padding-top: 32px;
  }
}
@media (max-width: 700px) {
  .create__list .benefits__item {
    padding: 32px 24px;
    min-height: 186px;
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}
.create__list .benefits__item:hover .benefits__icon img {
  transform: rotateY(360deg);
}
.create__list .benefits__item .benefits__icon {
  margin-top: 32px;
  margin-bottom: 64px;
}
@media (max-width: 1100px) {
  .create__list .benefits__item .benefits__icon {
    margin-bottom: 32px;
  }
}
@media (max-width: 950px) {
  .create__list .benefits__item .benefits__icon {
    margin: 0 !important;
  }
}
@media (max-width: 700px) {
  .create__list .benefits__item .benefits__icon {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 80px;
    height: 80px;
  }
}
.create__list .benefits__item .benefits__icon img {
  transition: 1s;
}
@media (max-width: 700px) {
  .create__list .benefits__item .benefits__icon img {
    height: 60px;
  }
}
.create__list .benefits__item .text {
  margin-top: auto;
}
@media (max-width: 950px) {
  .create__list .benefits__item .text {
    order: -1;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
  }
}
@media (max-width: 700px) {
  .create__list .benefits__item .text {
    flex: 1;
  }
}
.create__list .benefits__item .text .benefits__num {
  position: absolute;
}
@media (max-width: 950px) {
  .create__list .benefits__item .text .benefits__num {
    position: static;
    margin-bottom: auto;
  }
}
.create__list .benefits__item .text .benefits__title {
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px; /* 125% */
  letter-spacing: -1.28px;
  margin-bottom: 8px;
}
@media (max-width: 1100px) {
  .create__list .benefits__item .text .benefits__title {
    font-size: 24px;
    line-height: 24px;
    padding-bottom: 14px;
    letter-spacing: -0.96px;
    margin-bottom: 0;
  }
}
.create__list .benefits__item .text:nth-child(1) .benefits__icon img {
  height: 86px;
}
@media (max-width: 700px) {
  .create__list .benefits__item .text:nth-child(1) .benefits__icon img {
    height: 44px;
  }
}
.create__list .benefits__item .text:nth-child(2) .benefits__icon img {
  height: 112px;
}
@media (max-width: 700px) {
  .create__list .benefits__item .text:nth-child(2) .benefits__icon img {
    height: 60px;
  }
}
.create__list .benefits__item .text:nth-child(3) .benefits__icon img {
  height: 98px;
}
@media (max-width: 700px) {
  .create__list .benefits__item .text:nth-child(3) .benefits__icon img {
    height: 55px;
  }
}

.faq {
  width: 100%;
  position: relative;
  z-index: 2;
  margin-bottom: 200px;
}
.faq .hero__vector {
  opacity: 0.6;
  rotate: -4deg;
  top: auto;
  top: 300px;
  pointer-events: none;
}
@media (max-width: 1600px) {
  .faq {
    margin-bottom: 160px;
  }
}
.faq__wrap {
  width: 100%;
  padding-top: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1100px) {
  .faq__wrap {
    padding-top: 180px;
  }
}
@media (max-width: 700px) {
  .faq__wrap {
    padding-top: 128px;
  }
}
.faq h2 {
  margin-bottom: 48px;
}
.faq__list {
  width: 100%;
  max-width: 920px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  width: 100%;
  position: relative;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1.52%, rgba(255, 255, 255, 0.03) 99.71%);
  box-shadow: 3.8px 16.15px 33.25px 0px rgba(0, 0, 0, 0.24);
  -webkit-backdrop-filter: blur(19px);
          backdrop-filter: blur(19px);
  overflow: hidden;
}
.faq__item::before {
  content: "";
  position: absolute;
  width: 919px;
  height: 136px;
  position: absolute;
  right: 0.06px;
  bottom: -302px;
  border-radius: 100%;
  background: linear-gradient(88deg, rgba(255, 59, 231, 0.3) 2.78%, rgba(54, 156, 255, 0.3) 122.3%);
  filter: blur(100px);
  transition: 0.3s;
  opacity: 0;
}
.faq__item::after {
  content: "";
  position: absolute;
  inset: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(137deg, rgba(255, 255, 255, 0.16) 1.52%, rgba(255, 255, 255, 0.01) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.faq__item.open .faq__item-content {
  grid-template-rows: 1fr;
}
.faq__item.open::before {
  opacity: 1;
  bottom: -102px;
}
.faq__item.open .faq__item-top button .minus {
  opacity: 1;
}
.faq__item.open .faq__item-top button .plus {
  opacity: 0;
}
.faq__item-top {
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 21px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 23.1px */
  letter-spacing: -0.84px;
  transition: 0.3s;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
@media (max-width: 700px) {
  .faq__item-top {
    padding: 16px;
    font-size: 16px;
    letter-spacing: -0.64px;
  }
}
.faq__item-top button {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq__item-top button .icon {
  width: 32px;
  height: 32px;
  position: absolute;
  transition: 0.3s;
}
.faq__item-top button .minus {
  opacity: 0;
}
.faq__item-top button .plus {
  opacity: 1;
}
.faq__item-content {
  color: var(--Secondary-Light, #E6E6E6);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s;
  position: relative;
  z-index: 2;
}
@media (max-width: 700px) {
  .faq__item-content {
    font-size: 12px;
    line-height: 20px;
  }
}
.faq__item-content div {
  max-height: 100%;
  overflow: hidden;
}
.faq__item-content p {
  padding: 0 24px 20px;
}
@media (max-width: 700px) {
  .faq__item-content p {
    padding: 0 16px 16px;
  }
}

.contact-form {
  width: 100%;
  position: relative;
}
.contact-form .cta__vector {
  max-width: 1920px;
  left: 17%;
  z-index: 2;
}
@media (max-width: 1300px) {
  .contact-form .cta__vector {
    left: 0;
    top: -400px;
  }
}
@media (max-width: 900px) {
  .contact-form .cta__vector {
    display: none;
  }
}
.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(176% 120.1% at 50% 100%, #E83BFF 0%, #369CFF 100%);
  z-index: 4;
  pointer-events: none;
}
@media (max-width: 950px) {
  .contact-form::before {
    display: none;
  }
}
.contact-form::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1.52%, rgba(255, 255, 255, 0.03) 99.71%);
  background: #0e0d10;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 950px) {
  .contact-form::after {
    display: none;
  }
}
.contact-form .container {
  max-width: 1808px;
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 1300px) {
  .contact-form .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 700px) {
  .contact-form .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.contact-form__wrap {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 5;
}
@media (max-width: 950px) {
  .contact-form__wrap {
    grid-template-columns: 1fr;
  }
}
.contact-form__left {
  padding: 120px 80px 120px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1800px) {
  .contact-form__left {
    padding-right: 64px;
  }
}
@media (max-width: 1600px) {
  .contact-form__left {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}
@media (max-width: 1300px) {
  .contact-form__left {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: 32px;
  }
}
@media (max-width: 950px) {
  .contact-form__left {
    position: relative;
    padding-right: 0;
  }
  .contact-form__left::before {
    content: "";
    position: absolute;
    top: 0;
    left: -32px;
    width: calc(100% + 64px);
    height: 100%;
    background: radial-gradient(176% 120.1% at 50% 100%, #E83BFF 0%, #369CFF 100%);
    z-index: 0;
    pointer-events: none;
  }
  .contact-form__left > * {
    position: relative;
  }
}
@media (max-width: 700px) {
  .contact-form__left {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .contact-form__left::before {
    width: calc(100% + 40px);
    left: -20px;
  }
}
.contact-form__left .title {
  font-size: 156px;
  font-style: normal;
  font-weight: 600;
  line-height: 134px; /* 85.897% */
  letter-spacing: -9.36px;
  margin-bottom: 20px;
}
@media (max-width: 1190px) {
  .contact-form__left .title {
    font-size: 120px;
    line-height: 102px; /* 85% */
    letter-spacing: -7.2px;
  }
}
@media (max-width: 950px) {
  .contact-form__left .title {
    margin-bottom: 48px;
  }
  .contact-form__left .title br {
    display: none;
  }
}
@media (max-width: 800px) {
  .contact-form__left .title {
    font-size: 100px;
    line-height: 90px; /* 90% */
    letter-spacing: -6px;
  }
}
.contact-form__left .title svg {
  margin-left: 8px;
  margin-right: -3px;
}
@media (max-width: 1190px) {
  .contact-form__left .title svg {
    height: 65px;
    width: 127px;
  }
}
@media (max-width: 800px) {
  .contact-form__left .title svg {
    height: 54px;
    width: 105px;
  }
}
.contact-form__left .title .grad-text {
  padding-right: 10px;
}
@media (max-width: 950px) {
  .contact-form__left .title .grad-text {
    display: inline-block;
  }
}
.contact-form__left p {
  max-width: 556px;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}
@media (max-width: 800px) {
  .contact-form__left p {
    font-size: 16px;
  }
}
.contact-form__right {
  padding: 120px 0 120px 120px;
}
@media (max-width: 1800px) {
  .contact-form__right {
    padding-left: 64px;
  }
}
@media (max-width: 1600px) {
  .contact-form__right {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}
@media (max-width: 1300px) {
  .contact-form__right {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 32px;
  }
}
@media (max-width: 950px) {
  .contact-form__right {
    position: relative;
    padding-left: 0;
  }
  .contact-form__right::before {
    content: "";
    position: absolute;
    top: 0;
    left: -32px;
    width: calc(100% + 64px);
    height: 100%;
    background: #0e0d10;
    z-index: 0;
    pointer-events: none;
  }
  .contact-form__right > * {
    position: relative;
  }
}
@media (max-width: 700px) {
  .contact-form__right::before {
    width: calc(100% + 40px);
    left: -20px;
  }
}
.contact-form__right .form {
  width: 100%;
}
.contact-form__right .form__field {
  width: 100%;
  margin-bottom: 24px;
}
.contact-form__right .form__field label {
  color: var(--Secondary-Light, #E6E6E6);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  display: block;
  margin-bottom: 12px;
}
.contact-form__right .form__field input {
  width: 100%;
  height: 56px;
  border-radius: 12px;
  background: #1E1B21;
  padding: 6px 24px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  color: #fff;
  border: none;
  box-shadow: none;
  outline: none;
}
.contact-form__right .form__field input::-moz-placeholder {
  color: #474251;
}
.contact-form__right .form__field input::placeholder {
  color: #474251;
}
.contact-form__right .form__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 1100px) {
  .contact-form__right .form__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 1100px) {
  .contact-form__right .form__actions button {
    width: 100%;
    max-width: 100%;
  }
  .contact-form__right .form__actions button .gradient-button__wrap {
    width: 100%;
  }
}
.contact-form__right .form__actions p {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--Secondary-Light, #E6E6E6);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 133.333% */
  text-transform: uppercase;
}
.contact-form__right .form__actions p .icon {
  width: 32px;
  height: 32px;
}

.footer {
  width: 100%;
  background: #060509;
}
.footer__wrap {
  width: 100%;
  padding: 72px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 48px;
}
@media (max-width: 1300px) {
  .footer__wrap {
    padding: 52px 0;
  }
}
@media (max-width: 950px) {
  .footer__wrap {
    row-gap: 40px;
  }
}
@media (max-width: 600px) {
  .footer__wrap {
    gap: 32px;
    padding: 23px 0;
  }
}
@media (max-width: 950px) {
  .footer__left {
    grid-column: span 2;
  }
}
.footer__left p {
  color: var(--Medium-Gray, #8A8F98);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  max-width: 410px;
}
@media (max-width: 950px) {
  .footer__left p {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .footer__left p {
    font-size: 11px;
    line-height: 16px;
  }
}
.footer__logo {
  display: block;
  margin-bottom: 32px;
}
@media (max-width: 600px) {
  .footer__logo {
    width: 120px;
    margin-bottom: 24px;
  }
}
.footer__nav {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 950px) {
  .footer__nav {
    grid-column: span 2;
  }
}
@media (max-width: 600px) {
  .footer__nav {
    grid-template-columns: 1fr 1fr;
  }
}
.footer__list {
  color: var(--Medium-Gray, #8A8F98);
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 164.706% */
  letter-spacing: -0.34px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__list a {
  color: var(--Secondary-Light, #E6E6E6);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 160% */
  letter-spacing: -0.3px;
  text-transform: none;
}
@media (max-width: 760px) {
  .footer__logos {
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 16px;
  }
}
.footer__logos .label {
  color: var(--Medium-Gray, #8A8F98);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 16px;
}
@media (max-width: 760px) {
  .footer__logos .label {
    margin-bottom: 0;
  }
}
.footer__logos .icon {
  height: auto;
  max-height: 32px;
}
.footer__logos .items {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer__info {
  display: flex;
  align-items: flex-end;
  color: var(--Medium-Gray, #8A8F98);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  letter-spacing: -0.28px;
}
@media (max-width: 950px) {
  .footer__info {
    gap: 16px;
  }
}
@media (max-width: 760px) {
  .footer__info {
    grid-column: span 2;
  }
}
.footer__info p {
  min-width: 320px;
}
@media (max-width: 950px) {
  .footer__info p {
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
}/*# sourceMappingURL=style.css.map */