@font-face {
  font-display: swap;
  font-family: "Inter";
  src: url(../fonts/Inter-VariableFont.ttf) format("truetype");
  font-weight: 100 900;
  font-style: normal;
}
:root {
  font-size: 10px;
}
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-size: 1.6rem;
  background: #000;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #fff;
}
.scroll {
  overflow: hidden;
}
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
a,
button,
input,
textarea,
select {
  -webkit-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
  font-size: 1.6rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}
a {
  text-decoration: none;
  color: #fff;
  cursor: default;
}
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style-type: none;
}
h1,
h2,
h3,
h4,
h5,
h5,
p {
  margin: 0;
  font-weight: 400;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
}
.button,
.input {
  border: none;
  background: none;
  outline: none;
}
.input {
  cursor: text;
}
.input:focus::-webkit-input-placeholder {
  opacity: 0;
}
.input:focus::-moz-placeholder {
  opacity: 0;
}
.input:focus:-ms-input-placeholder {
  opacity: 0;
}
.input:focus::-ms-input-placeholder {
  opacity: 0;
}
.input:focus::placeholder {
  opacity: 0;
}
.container,
.container2,
.container3 {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}
.container2 {
  max-width: 1400px;
}
.container3 {
  max-width: 1274px;
}
.animated__link {
  background: rgba(196, 220, 255, 0.15);
  padding: 2.35rem 2rem;
  border-radius: 14px;
  position: relative;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
  transition: background 0.5s linear;
}
.animated__wrap {
  border-radius: 10px;
  -webkit-mask: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0, #fff)
      )
      content-box,
    -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff))
      content-box,
    -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  position: absolute;
  display: inline-block;
  inset: 0 0 0 0;
  padding: 1px;
  overflow: hidden;
}
.animated__elem {
  background: conic-gradient(
    from 290deg at 50%,
    transparent 0%,
    #fff 20%,
    transparent 25%
  );
  -webkit-animation: anim 5s linear infinite;
  animation: anim 5s linear infinite;
  min-width: 100%;
  min-height: 100%;
  display: inline-block;
  aspect-ratio: 1 / 1;
  inset-inline-start: 50%;
  top: 50%;
  position: absolute;
  pointer-events: none;
}
@-webkit-keyframes anim {
  0% {
    -webkit-transform: translate(-88%, -50%) rotate(0deg);
    transform: translate(-88%, -50%) rotate(0deg);
  }
  33% {
    -webkit-transform: translate(-12%, -50%) rotate(0deg);
    transform: translate(-12%, -50%) rotate(0deg);
  }
  50% {
    -webkit-transform: translate(-12%, -50%) rotate(180deg);
    transform: translate(-12%, -50%) rotate(180deg);
  }
  83% {
    -webkit-transform: translate(-88%, -50%) rotate(180deg);
    transform: translate(-88%, -50%) rotate(180deg);
  }
  100% {
    -webkit-transform: translate(-88%, -50%) rotate(360deg);
    transform: translate(-88%, -50%) rotate(360deg);
  }
}
@keyframes anim {
  0% {
    -webkit-transform: translate(-88%, -50%) rotate(0deg);
    transform: translate(-88%, -50%) rotate(0deg);
  }
  33% {
    -webkit-transform: translate(-12%, -50%) rotate(0deg);
    transform: translate(-12%, -50%) rotate(0deg);
  }
  50% {
    -webkit-transform: translate(-12%, -50%) rotate(180deg);
    transform: translate(-12%, -50%) rotate(180deg);
  }
  83% {
    -webkit-transform: translate(-88%, -50%) rotate(180deg);
    transform: translate(-88%, -50%) rotate(180deg);
  }
  100% {
    -webkit-transform: translate(-88%, -50%) rotate(360deg);
    transform: translate(-88%, -50%) rotate(360deg);
  }
}
.title {
  font-weight: 700;
  color: #f5f5f5;
  font-size: 8rem;
}
.title2 {
  color: #f5f5f5;
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 1;
}
.bgblur {
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
.borderblock {
  -webkit-box-shadow: inset 0 2px 8px 0 rgba(196, 220, 255, 0.23);
  box-shadow: inset 0 2px 8px 0 rgba(196, 220, 255, 0.23);
}
.vilvet {
  color: #9782ef;
}
.header {
  width: 100%;
  padding: 1.9rem 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
}
.header__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 32px;
}
.header__logo {
  width: 100%;
  max-width: 56px;
}
.header__logo .mobile__on {
  display: none;
}
.header__logo img {
  width: 100%;
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
  border-radius: 16px;
  padding: 0.6rem;
  background: rgba(196, 220, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
.header__nav--link {
  padding: 1.3rem 3.9rem;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 1px;
  border-radius: 10px;
  text-transform: uppercase;
}
.header__nav--link.active {
  background: rgba(196, 220, 255, 0.15);
  font-weight: 600;
}
.header__logo--wrapper {
  min-width: 172px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__link {
  padding: 1.2rem 3.4rem;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
.menu__button {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 0;
  border-radius: 16px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgba(137, 143, 155, 0.15);
}
.menu__button svg {
  width: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.mobile__menu {
  width: 100%;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgb(137, 143, 155, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 99;
  padding: 3rem 0 4rem 0;
  overflow-y: auto;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translateX(-110%);
  -ms-transform: translateX(-110%);
  transform: translateX(-110%);
}
.mobile__menu--wrp {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.mobile__menu--content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
}
.mobile__menu--top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.mobile__menu--cross {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  background: rgba(196, 220, 255, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  color: #fff;
}
.mobile__menu--cross svg {
  width: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.mobile__menu--link {
  width: 100%;
  padding: 0.9rem 1.6rem;
  text-transform: uppercase;
  color: #fff;
  border-radius: 20px;
  background: rgba(137, 143, 155, 0.15);
}
.main {
  padding: 13.9rem 0rem 4.3rem 0;
  position: relative;
  overflow: hidden;
}
.main__video--bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0.5;
}
.main:before {
  content: "";
  display: block;
  width: 100%;
  height: 200px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0)),
    color-stop(80%, #000)
  );
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000 80%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 80%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
.main__bg {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.main__bg1 {
  top: 0;
  left: 0;
}
.main__bg1 img {
  position: relative;
  top: -90px;
}
.main__bg2 {
  bottom: 0;
  left: 0;
}
.main__bg2 img {
  position: relative;
  bottom: -90px;
}
.main__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.main__wrp {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.1s linear, opacity 0.1s linear;
  will-change: transform, opacity;
  transform-origin: center center;
}
.main__content {
  width: 100%;
  max-width: 766px;
  perspective: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.main__suptitle {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 500;
  color: #9ba3ae;
  line-height: 1.4;
}
.main__title {
  margin-top: 2.4rem;
  padding-bottom: 5px;
  font-size: 8rem;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  letter-spacing: -2px;
  max-width: 700px;
  color: #fff;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0.25)),
    color-stop(25%, #f5f5f5),
    color-stop(50%, #f5f5f5),
    color-stop(75%, #f5f5f5),
    to(rgba(255, 255, 255, 0.25))
  );
  background: -o-linear-gradient(
    top,
    rgba(255, 255, 255, 0.25) 0%,
    #f5f5f5 25%,
    #f5f5f5 50%,
    #f5f5f5 75%,
    rgba(255, 255, 255, 0.25) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.25) 0%,
    #f5f5f5 25%,
    #f5f5f5 50%,
    #f5f5f5 75%,
    rgba(255, 255, 255, 0.25) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.main__text {
  width: 100%;
  max-width: 600px;
  margin-top: 2.4rem;
  font-size: 2.6rem;
  color: #9ba3ae;
  font-weight: 600;
  letter-spacing: -0.3px;
  text-align: center;
}
.main__link {
  margin-top: 3rem;
  padding: 1.2rem 3.2rem;
}
.main__subtext {
  text-align: center;
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.3px;
  margin-top: 1.2rem;
}
.main__stats {
  width: 100%;
  max-width: 580px;
  padding: 2rem 7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 60px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgba(137, 143, 155, 0.07);
  margin-top: 6.9rem;
}
.main__stat {
  min-width: 205px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2px;
  padding: 0 7.5rem 0 0;
  border-right: 2px solid rgba(196, 220, 255, 0.4);
}
.main__stat:last-child {
  padding: 0 0 0 7.5rem;
  border-right: none;
}
.main__stat--title {
  font-size: 1.3rem;
  color: #f5f5f5;
  font-weight: 600;
  letter-spacing: 0.94px;
  text-transform: uppercase;
}
.main__stat--value {
  font-size: 4.8rem;
  font-weight: 800;
  letter-spacing: -1.8px;
  color: #f5f5f5;
}
.partners {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  overflow: hidden;
  padding: 4.8rem 0;
  background: #000;
}
.partners__wrapper {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 100px;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  -webkit-animation: scroll 60s linear infinite;
  animation: scroll 60s linear infinite;
}
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.partners__img--inner {
  height: 150px;
  width: 200px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.partners__img {
  max-width: 100%;
  flex-shrink: 0;
}
.complaint {
  width: 100%;
  padding: 10rem 0;
  position: relative;
}
.complaint__bg,
.complaint__bg2 {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.complaint__bg {
  top: -50%;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.complaint__bg2 {
  top: 27%;
  left: auto;
  right: 0;
}
.complaint__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
}
.complaint__text--inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 650px;
}
.complaint__title {
  width: 100%;
  max-width: 560px;
  text-align: center;
  line-height: 1.1;
}
.complaint__text--text {
  margin-top: 2.4rem;
  width: 100%;
  max-width: 520px;
  font-size: 2.4rem;
  font-weight: 600;
  color: #9ba3ae;
  line-height: 1.2;
  text-align: center;
}
.complaint__text--link {
  margin-top: 4.8rem;
  text-transform: uppercase;
  color: #fff;
  font-size: 1.4rem;
  padding: 1.2rem 3.2rem;
  background: rgba(196, 220, 255, 0.15);
  border-radius: 10px;
  letter-spacing: 1px;
}
.complaint__balance {
  width: 100%;
  padding: 4rem;
  border-radius: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
  background: rgba(159, 179, 207, 0.07);
}
.complaint__balance--text--block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.6rem;
}
.complaint__balance--inner {
  width: 100%;
  max-width: 533px;
  border-radius: 30px;
  padding: 1.9rem;
  background: rgba(159, 179, 207, 0.1);
  border: 1px solid rgba(164, 175, 212, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 19px;
}
.complaint__balance--top {
  width: 100%;
  padding: 1.9rem;
  min-height: 120px;
  border: 1px solid rgba(159, 179, 207, 0.2);
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.2rem;
}
.complaint__balance--top--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 6px;
}
.complaint__balance--top--values {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 3px;
}
.complaint__balance--top--text {
  color: rgba(255, 255, 255, 0.6);
}
.complaint__balance--top--value {
  font-size: 3.2rem;
  color: rgba(255, 255, 255, 0.6);
}
.complaint__balance--top--profit {
  font-size: 2.4rem;
  font-weight: 600;
  color: #8cff97;
  text-align: right;
}
.complaint__balance--top--profit--text {
  text-align: right;
  font-size: 1.4rem;
  font-weight: 500;
  color: #f5f5f5;
}
.complaint__balance--top--value span {
  font-weight: 600;
  color: #fff;
}
.complaint__balance--items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 19px;
}
.complaint__balance--item {
  width: calc(100% / 4 - 57px / 4);
  padding: 1.5rem 1.5rem 1.1rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 9px;
  border-radius: 12px;
  background: rgba(159, 179, 207, 0.15);
}
.complaint__balance--item--icon {
  width: 22px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.complaint__balance--item--text {
  text-align: center;
  font-size: 1.3rem;
  color: #fff;
}
.complaint__balance--text--title {
  width: 100%;
  max-width: 400px;
}
.complaint__balance--text--text {
  font-size: 1.8rem;
  line-height: 1.25;
  font-weight: 600;
  color: #9ba3ae;
  max-width: 450px;
  margin-top: 0.8rem;
}
.complaint__balance--text--text span {
  color: #fff;
}
.complaint__balance--bottom {
  width: 100%;
  border-radius: 13px;
  background: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 19px;
  padding: 2rem;
}
.complaint__balance--bottom--text {
  text-align: center;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 500;
}
.complaint__balance--bottom--subtext {
  padding: 1.1rem;
  border-radius: 10px;
  border: 1px solid rgba(137, 143, 155, 0.22);
  font-size: 1.2rem;
  color: #898f9b;
  text-align: center;
}
.complaint__balance--bottom--subtext a {
  text-decoration: underline;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.complaint__generate {
  width: 100%;
  border-radius: 60px;
  padding: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 60px;
  background: rgba(159, 179, 207, 0.07);
}
.complaint__generate--text--block {
  width: 100%;
  max-width: 430px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.complaint__generate--charts {
  width: 100%;
  max-width: 524px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 19px;
}
.complaint__generate--chart {
  width: 100%;
  max-width: 190px;
  padding: 1.8rem;
  border-radius: 22px;
  background: rgba(159, 179, 207, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.complaint__generate--chart.big {
  width: 100%;
  max-width: calc(100% - 190px - 19px);
}
.complaint__generate--text--title {
  margin-top: 2rem;
}
.complaint__generate--text--text {
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.25;
  color: #9ba3ae;
  margin-top: 2.5rem;
}
.complaint__generate--text--text span {
  color: #fff;
}
.complaint__generate--points {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
  margin-top: 2.4rem;
}
.complaint__generate--point {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #f5f5f5;
  line-height: 1.8;
}
.complaint__generate--point svg {
  width: 15px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.cmp__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 8px;
}
.cmp__logo {
  width: 100%;
  max-width: 54px;
}
.cmp__period {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}
.cmp__chart--line {
  width: 100%;
  aspect-ratio: 3.6 / 1;
  margin-top: 1.6rem;
}
.cmp__values {
  margin-top: 1.3rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.cmp__values--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 8px;
}
.cmp__values--value {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.95px;
  color: #fff;
  line-height: 1;
}
.cmp__values--currency {
  font-size: 1.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}
.cmp__values--profit {
  color: #8cff97;
  font-size: 1.3rem;
  font-weight: 600;
  padding-bottom: 0.2rem;
}
.cmb__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.cmb__item--title {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}
.cmb__item--value {
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}
.cmb__item--value span {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.cmb__item--line {
  width: 100%;
  height: 7px;
  border-radius: 50px;
  background: rgba(159, 179, 207, 0.15);
  position: relative;
  margin-top: 1.3rem;
}
.cmb__item--progress {
  position: absolute;
  height: 100%;
  width: 45%;
  -webkit-transition: width 0.2s linear;
  -o-transition: width 0.2s linear;
  transition: width 0.2s linear;
  background: #8cff97;
  top: 0;
  left: 0;
  border-radius: 50px;
}
.cmb__chart {
  gap: 1.2rem;
}
.cmb__percent {
  width: 100%;
  padding: 0.4rem 0.4rem 0.8rem 0.4rem;
  background: rgba(159, 179, 207, 0.15);
  border-radius: 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}
.cmb__percent--title {
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
}
.cmb__percent--value {
  font-size: 3.4rem;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: #fff;
  text-align: center;
}
.cmd__chart {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 4px;
  margin-top: 1.6rem;
}
.cmd__chart--item {
  width: calc(100% / 7 - 24px / 7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}
.cmd__chart--item--line {
  width: 3px;
  height: 39px;
  border-radius: 50px;
  background: rgba(137, 143, 155, 0.25);
  -webkit-transition: background 0.2s linear;
  -o-transition: background 0.2s linear;
  transition: background 0.2s linear;
}
.cmd__chart--item:nth-child(2) .cmd__chart--item--line {
  height: 50px;
}
.cmd__chart--item:nth-child(3) .cmd__chart--item--line {
  height: 33px;
}
.cmd__chart--item:nth-child(4) .cmd__chart--item--line {
  height: 21px;
}
.cmd__chart--item:nth-child(5) .cmd__chart--item--line {
  height: 37px;
}
.cmd__chart--item:nth-child(6) .cmd__chart--item--line {
  height: 8px;
}
.cmd__chart--item:last-child .cmd__chart--item--line {
  height: 20px;
}
.cmd__chart--item.active .cmd__chart--item--line {
  background: #8cff97;
}
.cmd__chart--item--name {
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  border-radius: 2px;
  width: 15px;
  height: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.cmd__chart--item.active .cmd__chart--item--name {
  color: #000;
  background: #8cff97;
}
.cmc__titles {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.2rem;
}
.cmc__title--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 4px;
}
.cmc__title--round {
  width: 4px;
  height: 10px;
  border-radius: 50px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  background: rgba(137, 143, 155, 0.25);
}
.cmc__title--round.vilvet {
  background: #7d63eb;
}
.cmc__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  line-height: 1.1;
  gap: 6px;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  padding-left: 1rem;
  position: relative;
}
.cmc__title span {
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.cmc__chart {
  width: 100%;
  margin-top: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 10px;
}
.cmc__chart--item {
  width: calc(100% / 7 - 60px / 7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.cmc__chart--item--squares {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 3px;
}
.cmc__chart--item--square {
  border-radius: 2px;
  width: 11px;
  height: 40px;
  background: rgba(137, 143, 155, 0.17);
  height: 41px;
}
.cmc__chart--item--square:first-child {
  background: #7d63eb;
  height: 66px;
}
.cmc__chart--item:nth-child(2) .cmc__chart--item--square {
  height: 35px;
}
.cmc__chart--item:nth-child(2) .cmc__chart--item--square:first-child {
  height: 48px;
}
.cmc__chart--item:nth-child(3) .cmc__chart--item--square {
  height: 58px;
}
.cmc__chart--item:nth-child(3) .cmc__chart--item--square:first-child {
  height: 72px;
}
.cmc__chart--item:nth-child(4) .cmc__chart--item--square {
  height: 64px;
}
.cmc__chart--item:nth-child(4) .cmc__chart--item--square:first-child {
  height: 78px;
}
.cmc__chart--item:nth-child(5) .cmc__chart--item--square {
  height: 54px;
}
.cmc__chart--item:nth-child(5) .cmc__chart--item--square:first-child {
  height: 27px;
}
.cmc__chart--item:nth-child(6) .cmc__chart--item--square {
  height: 30px;
}
.cmc__chart--item:nth-child(6) .cmc__chart--item--square:first-child {
  height: 58px;
}
.cmc__chart--item:last-child .cmc__chart--item--square {
  height: 35px;
}
.cmc__chart--item:last-child .cmc__chart--item--square:first-child {
  height: 17px;
}
.cmc__chart--item--title {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.95px;
}
.complaint__gates {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 80px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.complaint__gate {
  width: calc(100% / 2 - 80px / 2);
  padding: 4rem 4rem 5.2rem 4rem;
  border-radius: 60px;
  background: rgba(159, 179, 207, 0.07);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.complaint__gate--title {
  font-size: 3.6rem;
  color: #f5f5f5;
  font-weight: 600;
  margin-top: 1.6rem;
}
.complaint__gate--text {
  margin-top: 2.4rem;
  font-size: 1.8rem;
  color: #9ba3ae;
  width: 100%;
  max-width: 400px;
  font-weight: 600;
}
.complaint__links {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 38px;
  margin-top: 4.1rem;
}
.complaint__link {
  width: 100%;
  padding: 1.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(196, 220, 255, 0)),
    to(rgba(196, 220, 255, 0.15))
  );
  background: -o-linear-gradient(
    left,
    rgba(196, 220, 255, 0),
    rgba(196, 220, 255, 0.15)
  );
  background: linear-gradient(
    to right,
    rgba(196, 220, 255, 0),
    rgba(196, 220, 255, 0.15)
  );
}
.complaint__link--icon {
  max-width: 140px;
  max-height: 29px;
}
.yusd {
  width: 100%;
  padding: 10rem 0;
  position: relative;
  z-index: 2;
}
.yusd__bg,
.yusd__bg2 {
  width: 100%;
  position: absolute;
  bottom: 1000px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.yusd__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 80px;
}
.yusd__title {
  width: 100%;
  max-width: 570px;
  text-align: center;
}
.yusd__steps {
  width: 100%;
  border-radius: 60px;
  padding: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 64px;
  background: rgba(159, 179, 207, 0.07);
}
.yusd__steps--items {
  width: 100%;
  max-width: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 60px;
  padding-right: 2rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.yusd__steps--item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 30px;
  position: relative;
}
.yusd__steps--item:before {
  content: "";
  display: block;
  width: 2px;
  height: calc(100% + 18px);
  background: rgba(196, 220, 255, 0.15);
  position: absolute;
  left: 21px;
  top: 42px;
}
.yusd__steps--item:last-child:before {
  display: none;
}
.yusd__steps--item--number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(196, 220, 255, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: #f5f5f5;
  font-size: 1.7rem;
  line-height: 1.4;
  font-weight: 600;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.yusd__steps--item--text--inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.2rem;
}
.yusd__steps--item--text--title {
  color: #f5f5f5;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.375;
}
.yusd__steps--item--text--text {
  font-size: 1.8rem;
  color: #9ba3ae;
  font-weight: 600;
  line-height: 1.22;
}
.yusd__steps--form {
  width: 100%;
  padding: 1.4rem;
  border-radius: 34px;
  background: rgba(196, 220, 255, 0.1);
  border: 1px solid rgba(159, 179, 207, 0.15);
}
.yusd__steps--form--pay {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 5px;
  position: relative;
}
.yusd__steps--form--pay--arrow {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  border: 1px solid #758396;
  background: #515b69;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.yusd__steps--form--pay--arrow svg {
  width: 10px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.yusd__steps--form--pay--item {
  width: 100%;
  padding: 2rem;
  border-radius: 23px;
  background: rgba(196, 220, 255, 0.15);
  min-height: 136px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}
.yusd__steps--form--pay--wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 18px;
}
.yusd__steps--form--pay--wrp:last-child {
  margin-top: auto;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.yusd__steps--form--pay--subtext,
.yusd__steps--form--pay--balance {
  color: rgba(245, 245, 245, 0.8);
  font-size: 1.5rem;
}
.yusd__steps--form--pay--balance {
  text-decoration: underline;
}
.yusd__steps--form--pay--value {
  font-size: 2.3rem;
  font-weight: 600;
  color: #ebeced;
}
.yusd__steps--form--pay--currency {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
  text-transform: uppercase;
  color: #ebeced;
  font-size: 1.8rem;
  font-weight: 500;
}
.yusd__steps--form--pay--currency--img {
  width: 27px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.yusd__steps--form--total {
  width: 100%;
  padding: 2rem;
  border-radius: 23px;
  background: rgba(4, 8, 13, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 18px;
  margin-top: 0.9rem;
}
.yusd__steps--form--total--title {
  font-size: 1.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}
.yusd__steps--form--total--title span {
  color: #fff;
}
.yusd__steps--form--total--items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 9px;
}
.yusd__steps--form--total--item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.2rem;
  border-bottom: 1px solid rgba(245, 245, 245, 0.2);
  padding-bottom: 0.9rem;
}
.yusd__steps--form--total--item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.yusd__steps--form--total--item--title,
.yusd__steps--form--total--item--text {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}
.yusd__steps--form--total--item--text {
  color: #fff;
}
.yusd__steps--form--button {
  width: 100%;
  margin-top: 1.3rem;
  text-transform: uppercase;
  background: #f5f5f5;
  color: #04071b;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.8rem;
  border-radius: 23px;
  text-align: center;
  letter-spacing: 1px;
}
.howit__content {
  width: 100%;
  padding: 4.8rem 12rem 5rem 12rem;
  border-radius: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(159, 179, 207, 0.07);
}
.chip {
  font-size: 1.2rem;
  line-height: 1;
  color: #f5f5f5;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.9rem 2.3rem;
  border-radius: 30px;
  background: rgba(196, 220, 255, 0.15);
  display: inline;
  letter-spacing: 1px;
}
.howit__title {
  text-align: center;
  margin-top: 2.3rem;
}
.howit__contact {
  padding: 1rem 1.8rem;
  margin-top: 5rem;
  border-radius: 9px;
  border: 1px solid #32353a;
  color: rgba(155, 163, 174, 0.8);
  font-size: 1.4rem;
  line-height: 1.45;
}
.howit__items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 5rem;
  gap: 25px;
}
.howit__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.howit__item--title--inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.2rem 0;
}
.howit__item--title--inner:not(.active) .minus,
.howit__item--title--inner.active .plus {
  display: none;
}
.howit__item--title--inner.active .minus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.howit__item--title {
  font-size: 2rem;
  font-weight: 600;
  color: #9ba3ae;
  line-height: 1.9;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
}
.howit__item--icon {
  width: 17px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #9ba3ae;
}
.howit__item--icon svg {
  width: 100%;
  height: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}
.howit__item--title--inner.active .howit__item--title,
.howit__item--title--inner.active .howit__item--icon {
  color: #fff;
}
.howit__item--content {
  width: 100%;
  padding: 1.2rem 0rem 0rem 0;
  max-width: 730px;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
}
.howit__item--content p,
.howit__item--content ul li {
  color: #9ba3ae;
}
.howit__item--content p strong {
  color: #f5f5f5;
}
.howit__item--content ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
  padding-left: 1.6rem;
}
.howit__item--content ul li {
  list-style-type: disc;
}
.change {
  padding: 10rem 0;
}
.change__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 56px;
}
.change__title {
  text-align: center;
  width: 100%;
  max-width: 800px;
}
.about {
  width: 100%;
  padding: 17.4rem 0rem 20rem 0;
}
.about__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 64px;
}
.about__block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 24px;
}
.about__block--title {
  font-size: 4.8rem;
  color: #f5f5f5;
  font-weight: 600;
}
.about__block--text {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: 768px;
}
.about__block--text p {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.25;
  color: #9ba3ae;
}
.about__contact {
  padding: 0.7rem 1.7rem;
  background: rgba(137, 143, 155, 0.1);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  border-radius: 11px;
  text-align: center;
}
.about__contact a {
  color: inherit;
  font-size: inherit;
  text-decoration: underline;
}
.about__img {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}
.about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.features {
  width: 100%;
  padding: 13rem 0rem 17rem 0;
}
.features__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 58px;
}
.features__text {
  width: 100%;
  padding: 0rem 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
}
.features__text p {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.35;
  color: #9ba3ae;
}
.features__table--inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 38px;
}
.features__table--title {
  width: 100%;
  text-align: center;
}
.features__table--scroll {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.features__table {
  min-width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 30px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border: 1px solid rgba(196, 220, 255, 0.15);
}
.features__table--head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.4rem 1.5rem;
  border-bottom: 1px solid rgba(196, 220, 255, 0.15);
}
.features__table--item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-bottom: 1px solid rgba(196, 220, 255, 0.15);
}
.features__table--item:last-child {
  border-bottom: none;
}
.features__table--item--info,
.features__table--item--content {
  width: 100%;
  padding: 1.7rem 1.5rem;
}
.features__table--item:last-child .features__table--item--info {
  padding-bottom: 3.8rem;
}
.features__table--item--info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.features__table--item--info:not(.active) .minus,
.features__table--item--info.active .plus {
  display: none;
}
.features__table--item--info.active .minus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.features__table--item:nth-child(2n) .features__table--item--info {
  background: rgba(137, 143, 155, 0.06);
}
.features__table--item--content {
  width: 100%;
  max-width: 900px;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
  padding: 1rem 1.5rem 2.8rem 2.5rem;
}
.features__table--item--content p {
  color: #fff;
}
.features__table--head--title {
  width: 100%;
  max-width: 320px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 3.2rem;
  font-weight: 700;
  color: #f5f5f5;
  text-align: left;
  padding-left: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.features__table--item--title {
  width: 100%;
  max-width: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 11px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #f5f5f5;
  line-height: 1.4;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.features__table--item--title svg {
  width: 14px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.features__table--icon {
  width: calc((100% - 320px) / 5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.features__table--head--block {
  width: calc((100% - 320px) / 5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
}
.features__table--head--block--title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  color: #f5f5f5;
}
.features__table--head--block--text {
  font-size: 1.4rem;
  font-weight: 600;
  color: #9ba3ae;
  line-height: 1.6;
  text-align: center;
  max-width: 95px;
}
.features__table--icon--img {
  width: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.footer {
  width: 100%;
  padding: 3rem 0 5.6rem 0;
  position: relative;
}
.footer__bg {
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  bottom: 1550px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  z-index: -1;
}
.footer__bg img {
  position: relative;
  top: 0;
  right: 0;
}
.footer__inner {
  width: 100%;
  padding: 4rem 10rem 10rem 10rem;
  background: #15171a;
  border-radius: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 150px;
}
.footer__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
}
.footer__logo {
  width: 100%;
  max-width: 96px;
}
.footer__title {
  text-align: center;
  font-size: 9.6rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  width: 100%;
  max-width: 680px;
}
.footer__text {
  width: 100%;
  max-width: 590px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  color: #9ba3ae;
  line-height: 1.27;
}
.footer__social {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 32px;
}
.footer__social--link {
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__social--icon {
  width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.footer__content {
  width: 100%;
  padding: 4rem;
  border-radius: 28px;
  background: rgba(196, 220, 255, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 40px;
}
.footer__content--top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 42px;
}
.footer__content--join {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.footer__content--title {
  font-size: 2.4rem;
  color: #fff;
  line-height: 1.5;
  font-weight: 600;
}
.footer__content--text {
  color: #9ba3ae;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.71;
}
.footer__content--button {
  font-size: 1.2rem;
  text-transform: uppercase;
  line-height: 1;
  font-weight: 600;
  color: #000;
  background: #fff;
  padding: 2.4rem 3.4rem;
  border-radius: 14px;
  margin-top: 3.4rem;
  letter-spacing: 1px;
}
.footer__content--navs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
}
.footer__content--nav {
  width: 195px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 25px;
}
.footer__content--nav--title {
  color: #fff;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1px;
}
.footer__content--nav--links {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 17px;
}
.footer__content--nav--link {
  font-size: 1.7rem;
  color: #9ba3ae;
  font-weight: 500;
  line-height: 1.5;
}
.footer__content--bottom {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
}
.footer__subtext {
  width: 100%;
  max-width: 460px;
  font-size: 1.4rem;
  color: #9ba3ae;
  line-height: 1.71;
  font-weight: 500;
}
.footer__subtext a {
  color: inherit;
  font-size: inherit;
}
.footer__copy {
  font-size: 1.7rem;
  font-weight: 500;
  color: #9ba3ae;
  line-height: 1.5;
  padding-right: 5.4rem;
}
@media (any-hover: hover) {
  a,
  button,
  .howit__item--title--inner,
  .features__table--item--info {
    cursor: pointer;
  }
  a.footer__content--nav--link:hover,
  .footer__subtext a:hover {
    color: #fff;
  }
  .animated__link:hover,
  .complaint__text--link:hover {
    background: #7d63eb;
  }
  .howit__contact:hover,
  .howit__item--title--inner:hover .howit__item--title,
  .howit__item--title--inner:hover .howit__item--icon,
  .complaint__balance--bottom--subtext a:hover {
    color: #fff;
  }
  .complaint__link:hover {
    opacity: 0.6;
  }
  .header__nav--link:hover {
    background: rgba(196, 220, 255, 0.15);
  }
}
@media (max-width: 1420px) {
  .container2,
  .container3 {
    max-width: 1180px;
  }
  .footer__inner {
    padding: 4rem;
  }
  .footer__title {
    font-size: 7.6rem;
    max-width: 540px;
  }
  .header__logo--wrapper {
    min-width: unset;
  }
  .header__nav {
    gap: 1.6rem;
  }
  .main__title {
    font-size: 7.2rem;
    max-width: 650px;
  }
}
@media (max-width: 1200px) {
  .container,
  .container2,
  .container3 {
    max-width: 978px;
  }
  .howit__content {
    padding: 4.8rem 8rem 5rem 8rem;
  }
  .complaint__generate--charts {
    max-width: 460px;
  }
  .cmb__percent--value {
    font-size: 2.6rem;
  }
  .complaint__generate--chart {
    padding: 1.3rem;
    border-radius: 14px;
  }
  .cmp__values--value {
    font-size: 2.4rem;
  }
  .footer__copy {
    padding-right: 5.4rem;
  }
}
@media (max-width: 998px) {
  .container,
  .container2,
  .container3 {
    max-width: 748px;
  }
  .footer__inner {
    border-radius: 35px;
    padding: 2.4rem;
    gap: 100px;
  }
  .footer__content {
    padding: 4rem 2.4rem;
  }
  .footer__logo {
    max-width: 75px;
  }
  .footer__wrapper {
    gap: 35px;
  }
  .footer__content--nav {
    width: 160px;
  }
  .footer__content--nav--link {
    font-size: 1.6rem;
  }
  .footer__content--bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .footer__subtext {
    max-width: 100%;
  }
  .title {
    font-size: 6.5rem;
  }
  .howit__content {
    padding: 4.8rem;
  }
  .yusd__steps {
    padding: 4rem 2rem;
    gap: 32px;
  }
  .yusd__steps--item {
    gap: 15px;
  }
  .yusd__steps--item--text--title {
    font-size: 2.4rem;
  }
  .yusd__steps--item--text--text {
    font-size: 1.6rem;
  }
  .yusd__steps--items {
    padding-right: 0;
    max-width: 300px;
  }
  .change,
  .yusd,
  .complaint {
    padding: 6.5rem 0;
  }
  .complaint__generate {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .complaint__balance {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .complaint__generate--charts,
  .complaint__generate--text--block,
  .complaint__balance--inner,
  .complaint__balance--text--title,
  .complaint__balance--text--text {
    max-width: 100%;
  }
  .complaint__generate,
  .complaint__balance {
    border-radius: 30px;
  }
  .complaint__text--text {
    font-size: 2rem;
  }
  .complaint__gate {
    width: 100%;
    border-radius: 30px;
  }
  .footer__bg {
    bottom: 400px;
  }
  .header__nav,
  .header__link .mobile__off {
    display: none;
  }
  .menu__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .main__suptitle {
    font-size: 2rem;
  }
  .main__title {
    font-size: 6.4rem;
    max-width: 600px;
  }
  .main__text {
    max-width: 400px;
    font-size: 2.2rem;
  }
  .partners,
  .partners__wrapper {
    gap: 50px;
  }
  .mobile__menu.active {
    opacity: 1;
    pointer-events: all;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .header__logo .mobile__off {
    display: none;
  }
  .header__logo .mobile__on {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__logo {
    max-width: 112px;
  }
  .about__block {
    gap: 1.6rem;
  }
  .about__inner {
    gap: 32px;
  }
  .about__block--title {
    font-size: 3.2rem;
  }
  .features__table--item--content {
    max-width: 700px;
  }
  .features__text {
    padding: 0;
  }
  .features__table--head--title {
    max-width: 240px;
    font-size: 2.4rem;
  }
  .features__table--item--title {
    max-width: 240px;
    font-size: 1.4rem;
  }
  .features__table--head--block,
  .features__table--icon {
    width: calc((100% - 240px) / 5);
  }
  .features__table--head--block--title,
  .features__table--item--content p {
    font-size: 1.4rem;
  }
  .features__table--head--block--text {
    font-size: 1.2rem;
  }
  .footer__copy {
    padding-right: 1.4rem;
  }
}
@media (max-width: 768px) {
  .container,
  .container2,
  .container3 {
    max-width: 460px;
  }
  .footer__title {
    font-size: 4rem;
    max-width: 285px;
    margin-top: 1rem;
  }
  .footer__text {
    font-size: 1.4rem;
  }
  .footer__logo {
    max-width: 45px;
  }
  .footer__wrapper {
    gap: 1.2rem;
  }
  .footer__social {
    margin-top: 2rem;
    gap: 29px;
  }
  .footer__social--link {
    width: 36px;
  }
  .footer {
    padding: 2rem 0;
  }
  .footer__inner {
    padding: 1.2rem 0.9rem;
    border-radius: 15px;
  }
  .footer__content {
    padding: 2.4rem 1.2rem;
    border-radius: 7px;
  }
  .footer__content--top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer__content--navs {
    width: 100%;
    justify-content: space-between;
  }
  .footer__content--nav {
    width: auto;
  }
  .footer__content--join {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.6rem;
  }
  .footer__content--button {
    margin-top: 0;
  }
  .footer__inner {
    gap: 60px;
  }
  .title {
    font-size: 4.8rem;
  }
  .yusd__steps {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .yusd__steps,
  .howit__content {
    border-radius: 30px;
  }
  .howit__title {
    font-size: 2.8rem;
  }
  .howit__content {
    padding: 2rem 2rem 3.2rem 2rem;
  }
  .howit__item--title {
    font-size: 1.6rem;
  }
  .howit__item--content p,
  .howit__item--content ul li {
    font-size: 1.4rem;
  }
  .howit__items {
    gap: 1.6rem;
  }
  .change__inner {
    gap: 30px;
  }
  .yusd__inner {
    gap: 54px;
  }
  .complaint__generate,
  .complaint__balance {
    padding: 2rem 2rem 3.2rem 2rem;
  }
  .complaint__balance--inner {
    padding: 1.1rem;
    border-radius: 18px;
    gap: 11px;
  }
  .complaint__balance--top {
    padding: 1.1rem;
    min-height: 75px;
  }
  .complaint__balance--top--value {
    font-size: 1.8rem;
  }
  .complaint__balance--top--profit {
    font-size: 1.4rem;
  }
  .complaint__balance--top--profit--text,
  .complaint__balance--top--text {
    font-size: 1rem;
  }
  .complaint__balance--items {
    gap: 11px;
  }
  .complaint__balance--item {
    width: calc(100% / 4 - 33px / 4);
    padding: 0.8rem 0.4rem 1rem 0.4rem;
  }
  .complaint__balance--item--icon {
    width: 18px;
  }
  .complaint__balance--item--text,
  .complaint__balance--bottom--subtext {
    font-size: 1.1rem;
  }
  .complaint__balance--bottom {
    padding: 1.2rem;
  }
  .complaint__inner {
    gap: 60px;
  }
  .title2 {
    font-size: 2.8rem;
  }
  .complaint__balance--text--text,
  .complaint__generate--text--text {
    font-size: 1.6rem;
  }
  .complaint__generate--points {
    gap: 4px;
  }
  .complaint__text--text {
    font-size: 1.8rem;
  }
  .complaint__gates {
    gap: 64px;
  }
  .complaint__gate {
    padding: 2.6rem 2rem;
  }
  .complaint__gate--title {
    font-size: 3rem;
  }
  .complaint__links {
    gap: 2.4rem;
  }
  .complaint__link {
    padding: 0.8rem;
  }
  .complaint__link--icon {
    max-width: 120px;
    max-height: 23px;
  }
  .footer__bg {
    bottom: 300px;
  }
  .main__title {
    font-size: 4rem;
    max-width: 300px;
    margin-top: 1.6rem;
  }
  .main__suptitle {
    font-size: 1.8rem;
  }
  .main {
    padding: 11.2rem 0rem 3rem 0;
  }
  .header {
    padding: 1.6rem 0;
  }
  .main__stats {
    border-radius: 18px;
    padding: 1.2rem;
    margin-top: 4.8rem;
  }
  .main__stat--title {
    font-size: 1.2rem;
  }
  .main__stat--value {
    font-size: 3.2rem;
  }
  .animated__link {
    font-size: 1.4rem;
  }
  .main__stat {
    padding: 0 4rem 0 0;
  }
  .main__stat:last-child {
    padding: 0 0 0 4rem;
  }
  .about {
    padding: 13rem 0rem 19rem 0;
  }
  .features__table--head--title {
    font-size: 2.7rem;
    max-width: 230px;
  }
  .features__table--item--title {
    font-size: 1.5rem;
    max-width: 230px;
  }
  .features__table--head--block--title {
    font-size: 1.5rem;
  }
  .features__table--head--block--text {
    font-size: 1.2rem;
  }
  .features {
    padding: 10rem 0rem 18rem 0;
  }
  .main__stat {
    min-width: 165px;
  }
  .cmp__values--value {
    font-size: 1.8rem;
  }
  .cmp__values--currency {
    font-size: 1.1rem;
  }
  .cmp__values--profit {
    font-size: 0.9rem;
  }
  .complaint__generate--chart {
    max-width: 113px;
  }
  .complaint__generate--chart.big {
    max-width: calc(100% - 113px - 11px);
  }
  .complaint__generate--charts {
    gap: 11px;
  }
  .cmp__period {
    font-size: 0.8rem;
  }
  .cmp__logo {
    max-width: 32px;
  }
  .cmb__percent--title,
  .cmb__item--title,
  .cmd__chart--item--name,
  .cmc__chart--item--title {
    font-size: 0.7rem;
  }
  .cmb__percent--value {
    font-size: 2rem;
  }
  .cmb__item--value {
    font-size: 1.2rem;
  }
  .cmb__item--line {
    margin-top: 0.8rem;
  }
  .cmb__item--line {
    height: 5px;
  }
  .cmd__chart--item--name {
    width: 10px;
    height: 10px;
  }
  .cmd__chart--item--line {
    width: 2px;
  }
  .cmc__title span {
    font-size: 1.4rem;
  }
  .cmc__title {
    font-size: 1.3rem;
  }
  .cmc__title--round {
    width: 2px;
    height: 5px;
  }
  .cmc__title {
    padding-left: 0.5rem;
  }
  .cmc__chart--item {
    gap: 6px;
  }
  .cmc__chart--item--square {
    width: 6px;
  }
  .cmc__chart--item--squares {
    gap: 1px;
  }
  .cmc__chart--item--square {
    height: 25px;
  }
  .cmc__chart--item--square:first-child {
    height: 39px;
  }
  .cmc__chart--item:nth-child(2) .cmc__chart--item--square {
    height: 21px;
  }
  .cmc__chart--item:nth-child(2) .cmc__chart--item--square:first-child {
    height: 29px;
  }
  .cmc__chart--item:nth-child(3) .cmc__chart--item--square {
    height: 35px;
  }
  .cmc__chart--item:nth-child(3) .cmc__chart--item--square:first-child {
    height: 43px;
  }
  .cmc__chart--item:nth-child(4) .cmc__chart--item--square {
    height: 38px;
  }
  .cmc__chart--item:nth-child(4) .cmc__chart--item--square:first-child {
    height: 47px;
  }
  .cmc__chart--item:nth-child(5) .cmc__chart--item--square {
    height: 32px;
  }
  .cmc__chart--item:nth-child(5) .cmc__chart--item--square:first-child {
    height: 18px;
  }
  .cmc__chart--item:nth-child(6) .cmc__chart--item--square {
    height: 18px;
  }
  .cmc__chart--item:nth-child(6) .cmc__chart--item--square:first-child {
    height: 35px;
  }
  .cmc__chart--item:last-child .cmc__chart--item--square {
    height: 21px;
  }
  .cmc__chart--item:last-child .cmc__chart--item--square:first-child {
    height: 10px;
  }
  .cmd__chart--item--line {
    height: 23px;
  }
  .cmd__chart--item:nth-child(2) .cmd__chart--item--line {
    height: 30px;
  }
  .cmd__chart--item:nth-child(3) .cmd__chart--item--line {
    height: 20px;
  }
  .cmd__chart--item:nth-child(4) .cmd__chart--item--line {
    height: 13px;
  }
  .cmd__chart--item:nth-child(5) .cmd__chart--item--line {
    height: 22px;
  }
  .cmd__chart--item:nth-child(6) .cmd__chart--item--line {
    height: 5px;
  }
  .cmd__chart--item:last-child .cmd__chart--item--line {
    height: 12px;
  }
  .complaint__generate--chart {
    padding: 1rem;
  }
  .features__table--head--title {
    padding-left: 0;
    font-size: 1.6rem;
    max-width: 130px;
  }
  .features__table--item--title {
    font-size: 1.2rem;
    gap: 4px;
    max-width: 130px;
  }
  .features__table--item--title svg {
    width: 8px;
    height: 8px;
  }
  .features__table--icon--img {
    width: 12px;
    height: 12px;
  }
  .features__table--head--block--title {
    font-size: 1.1rem;
  }
  .features__table--head--block--text {
    font-size: 0.8rem;
  }
  .features__table--head--block,
  .features__table--icon {
    width: calc((100% - 130px) / 5);
  }
  .features__table--item--content {
    max-width: 400px;
  }
  .features__table--item--content p {
    font-size: 1.1rem;
  }
  .features__table--item:last-child .features__table--item--info {
    padding-bottom: 2.8rem;
  }
  .footer__copy {
    padding-right: 0.2rem;
  }
}
@media (max-width: 480px) {
  .container,
  .container2,
  .container3 {
    max-width: 100%;
    padding: 0rem 1.2rem;
  }
  .footer__content--nav--title,
  .footer__content--nav--link,
  .footer__subtext,
  .footer__copy {
    font-size: 1.2rem;
  }
  .footer__content--nav--links {
    gap: 1.2rem;
  }
  .footer__inner {
    gap: 32px;
  }
  .footer__text {
    max-width: 274px;
  }
  .footer__content--button {
    padding: 1.3rem 3.2rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    line-height: auto;
    background: rgba(196, 220, 255, 0.15);
  }
  .yusd {
    padding: 4.5rem 0 17rem 0;
  }
  .yusd__steps {
    padding: 2rem 2rem 3.2rem 2rem;
  }
  .yusd__steps--form {
    border-radius: 19px;
    padding: 0.8rem;
  }
  .yusd__steps--form--pay--item {
    padding: 1.1rem;
    border-radius: 13px;
    min-height: 78px;
  }
  .yusd__steps--form--pay--value {
    font-size: 1.3rem;
  }
  .yusd__steps--form--pay--subtext,
  .yusd__steps--form--pay--balance {
    font-size: 0.8rem;
  }
  .yusd__steps--form--pay--currency {
    font-size: 1rem;
  }
  .yusd__steps--form--pay--currency--img {
    width: 15px;
  }
  .yusd__steps--form--pay--currency svg {
    width: 7px;
  }
  .yusd__steps--form--pay--currency {
    gap: 3px;
  }
  .yusd__steps--form--pay--wrp {
    gap: 11px;
  }
  .yusd__steps--form--total {
    border-radius: 13px;
    padding: 1.1rem;
  }
  .yusd__steps--form--button {
    border-radius: 13px;
    font-size: 1.2rem;
  }
  .howit__contact {
    display: none;
  }
  .chip {
    min-width: 120px;
    text-align: center;
  }
  .howit__items {
    margin-top: 2.5rem;
  }
  .howit__item--title--inner {
    padding: 0.6rem 0;
  }
  .change {
    display: none;
  }
  .complaint__generate--chart,
  .complaint__generate--chart.big {
    -ms-grid-column-span: 3;
    grid-column: span 3;
  }
  .complaint__generate {
    gap: 32px;
  }
  .complaint__balance {
    gap: 22px;
  }
  .complaint__balance--text--block,
  .complaint__generate--text--block {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .complaint__balance--text--title,
  .complaint__balance--text--text,
  .complaint__generate--text--title,
  .complaint__generate--text--text {
    text-align: center;
  }
  .complaint__balance--text--title {
    max-width: 275px;
  }
  .complaint__generate--points {
    display: none;
  }
  .complaint__text--text {
    margin-top: 1.6rem;
  }
  .complaint__text--link {
    margin-top: 3.6rem;
  }
  .complaint__gate--text {
    font-size: 1.4rem;
  }
  .complaint__gate--title {
    font-size: 2.8rem;
  }
  .header__link {
    padding: 0.8rem 1.2rem;
    text-transform: capitalize;
  }
  .partners {
    padding: 3.2rem 0;
  }
  .partners,
  .partners__wrapper {
    gap: 40px;
  }
  .about {
    padding: 10rem 0rem 16rem 0;
  }
  .yusd__steps--form--total--title {
    font-size: 1.1rem;
  }
  .yusd__steps--form--total {
    gap: 10px;
  }
  .yusd__steps--form--total--item {
    padding-bottom: 0.5rem;
  }
  .yusd__steps--form--total--items {
    gap: 5px;
  }
  .yusd__steps--form--total--item--title,
  .yusd__steps--form--total--item--text {
    font-size: 0.9rem;
  }
  .yusd__steps--form--button {
    padding: 1rem;
  }
  .cmp__values {
    margin-top: 0.4rem;
  }
  .cmp__chart--line {
    margin-top: 1rem;
  }
  .cmb__item--value span {
    font-size: 1.2rem;
  }
  .features__table--item--content {
    max-width: 300px;
  }
  .footer__copy {
    padding-right: 1rem;
  }
}
@media (max-width: 390px) {
  .cmp__values--currency,
  .complaint__balance--text--text,
  .complaint__generate--text--text,
  .complaint__text--text {
    font-size: 1.4rem;
  }
  .title {
    font-size: 3.2rem;
  }
  .title2 {
    font-size: 2.1rem;
  }
  .main__title {
    font-size: 3.2rem;
  }
  .about__block--text p {
    font-size: 1.6rem;
  }
  .main__stat {
    padding: 0 0rem 0 0;
  }
  .main__stat:last-child {
    padding: 0 0 0 0rem;
  }
}
@media (max-width: 370px) {
  .complaint__generate--chart,
  .complaint__generate--chart.big {
    max-width: 100%;
  }
}
.whyyusd {
  width: 100%;
  padding: 10rem 0;
  position: relative;
}
.whyyusd:before {
  content: "";
  width: 100%;
  height: 400px;
  display: block;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#000),
    to(rgba(0, 0, 0, 0))
  );
  background: -o-linear-gradient(top, #000, rgba(0, 0, 0, 0));
  background: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0));
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
.whyyusd__bg,
.whyyusd__bg2 {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.whyyusd__bg {
  top: 0%;
}
.whyyusd__bg2 {
  top: 10%;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.whyyusd__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
}
.whyyusd__text--inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 650px;
}
.whyyusd__title {
  width: 100%;
  max-width: 560px;
  text-align: center;
  line-height: 1.1;
}
.whyyusd__info {
  width: 100%;
  padding: 4rem;
  border-radius: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
  background: rgba(159, 179, 207, 0.07);
}
.whyyusd__info--inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.whyyusd__info--block {
  width: calc((100% - 48px) / 3);
  border-radius: 30px;
  padding: 1.9rem;
  background: rgba(159, 179, 207, 0.1);
  border: 1px solid rgba(164, 175, 212, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 24px;
}
.whyyusd__info--block--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
.whyyusd__info--block--content--img {
  width: 62px;
  height: 62px;
}
.whyyusd__info--block--content--title {
  width: calc(100% - 62px - 24px);
  color: #f5f5f5;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.1;
}
.whyyusd__info--block--content--text {
  color: #9ba3ae;
  font-size: 1.4rem;
}
@media (max-width: 998px) {
  .whyyusd__info--block {
    width: calc((100% - 24px) / 2);
  }
}
@media (max-width: 768px) {
  .whyyusd__info--block {
    width: 100%;
    gap: 1.6rem;
  }
  .whyyusd__info--block--content--title {
    font-size: 2.8rem;
  }
}
@media (max-width: 390px) {
  .whyyusd__info {
    padding: 0;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: rgba(159, 179, 207, 0);
  }
  .whyyusd__info--block {
    background: rgba(159, 179, 207, 0.07);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    -webkit-box-shadow: inset 0 2px 8px 0 rgba(196, 220, 255, 0.23);
    box-shadow: inset 0 2px 8px 0 rgba(196, 220, 255, 0.23);
  }
  .whyyusd__info--block--content--title {
    font-size: 2.1rem;
  }
}
.whyyusd2 {
  width: 100%;
  padding: 10rem 0;
  position: relative;
}
.whyyusd2:before {
  content: "";
  width: 100%;
  height: 400px;
  display: block;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#000),
    to(rgba(0, 0, 0, 0))
  );
  background: -o-linear-gradient(top, #000, rgba(0, 0, 0, 0));
  background: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0));
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
.whyyusd2__bg,
.whyyusd2__bg2 {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.whyyusd2__bg {
  top: 10%;
}
.whyyusd2__bg2 {
  top: 10%;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.whyyusd2__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
}
.whyyusd2__text--inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 650px;
}
.whyyusd2__title {
  width: 100%;
  max-width: 560px;
  text-align: center;
  line-height: 1.1;
}
.whyyusd2__info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
}
.whyyusd2__info--inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.whyyusd2__info--block {
  width: calc((100% - 48px) / 3);
  border-radius: 60px;
  padding: 1.9rem;
  background: rgba(159, 179, 207, 0.1);
  border: 1px solid rgba(164, 175, 212, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 24px;
}
.whyyusd2__info--block:hover .whyyusd2__info--block--content--img img {
  display: none;
}
.whyyusd2__info--block:hover
  .whyyusd2__info--block--content--img
  .whyyusd2__info--block--content--img--lottie-animation {
  display: block;
}
.whyyusd2__info--block--content--img--lottie-animation {
  display: none;
}
.whyyusd2__info--block--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
.whyyusd2__info--block--content--img {
  width: 100%;
}
.whyyusd2__info--block--content--img img {
  width: 100%;
}
.whyyusd2__info--block--content--title {
  width: 100%;
  color: #f5f5f5;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
}
.whyyusd2__info--block--content--text {
  color: #9ba3ae;
  font-size: 1.4rem;
  text-align: center;
  padding: 0 3rem;
}
@media (max-width: 998px) {
  .whyyusd2__info--block {
    width: 100%;
  }
  .whyyusd2__info--block--content--img img {
    display: none;
  }
  .whyyusd2__info--block--content--img
    .whyyusd2__info--block--content--img--lottie-animation {
    display: block;
  }
}
@media (max-width: 768px) {
  .whyyusd2__info--block {
    width: 100%;
    gap: 1.6rem;
  }
  .whyyusd2__info--block--content--title {
    font-size: 2.8rem;
  }
  .whyyusd2__info--block--content--text {
    padding: 0;
  }
}
@media (max-width: 390px) {
  .whyyusd2__info--block--content--title {
    font-size: 2.1rem;
  }
}
.tooltip {
  display: inline-block;
  position: relative;
  cursor: default;
  &:hover {
    .tooltip__content {
      visibility: visible;
      opacity: 1;
    }
  }
}
.tooltip__content {
  position: absolute;
  width: 300px;
  bottom: 20px;
  left: 20px;
  padding: 20px;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  border-radius: 30px;
  background: #15171a;
  border: 1px solid rgba(164, 175, 212, 0.3);
  text-transform: none;
}
@media (max-width: 700px) {
  .tooltip__content {
    left: 0;
    width: 180px;
  }
}
.benefits {
  width: 100%;
  padding: 10rem 0;
  position: relative;
}
.benefits__bg,
.benefits__bg2 {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.benefits__bg {
  top: 10%;
}
.benefits__bg2 {
  top: 10%;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.benefits__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
}
.benefits__text--inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 650px;
}
.benefits__title {
  width: 100%;
  max-width: 560px;
  text-align: center;
  line-height: 1.1;
}
.benefits__info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
}
.benefits__info--inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.benefits__info--block {
  width: calc((100% - 48px) / 3);
  border-radius: 60px;
  padding: 1.9rem;
  background: rgba(159, 179, 207, 0.1);
  border: 1px solid rgba(164, 175, 212, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 24px;
}
.benefits__info--block:hover .benefits__info--block--content--img img {
  display: none;
}
.benefits__info--block:hover
  .benefits__info--block--content--img
  .benefits__info--block--content--img--lottie-animation {
  display: block;
}
.benefits__info--block--content--img--lottie-animation {
  display: none;
}
.benefits__info--block--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
.benefits__info--block--content--img {
  width: 100%;
}
.benefits__info--block--content--img img {
  width: 100%;
}
.benefits__info--block--content--title {
  width: 100%;
  color: #f5f5f5;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
}
.benefits__info--block--content--text {
  color: #9ba3ae;
  font-size: 1.4rem;
  text-align: center;
  padding: 0 3rem;
}
@media (max-width: 998px) {
  .benefits__info--block {
    width: 100%;
  }
  .benefits__info--block--content--img img {
    display: none;
  }
  .benefits__info--block--content--img
    .benefits__info--block--content--img--lottie-animation {
    display: block;
  }
}
@media (max-width: 768px) {
  .benefits__info--block {
    width: 100%;
    gap: 1.6rem;
  }
  .benefits__info--block--content--title {
    font-size: 2.8rem;
  }
  .benefits__info--block--content--text {
    padding: 0;
  }
}
@media (max-width: 390px) {
  .benefits__info--block--content--title {
    font-size: 2.1rem;
  }
}

.updates {
  padding: 0 0 10rem;
}

.updates__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7.8rem;
}

.updates__title {
  text-align: center;
}

.updates__cards {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.4rem;
  width: 100%;
  max-width: 112.4rem;
}

.updates__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.6rem 1.6rem 2.4rem;
  gap: 1.6rem;
  width: 100%;
  max-width: 35.8rem;
  background: rgba(196, 220, 255, 0.07);
  box-shadow: inset 0px 0.2rem 0.8rem rgba(196, 220, 255, 0.23);
  backdrop-filter: blur(2.5rem);
  border-radius: 6rem;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.updates__card:hover {
  transform: translateY(-0.4rem);
}

.updates__card--image {
  width: 100%;
  height: 18.4rem;
  border-radius: 4.4rem;
  overflow: hidden;
  position: relative;
}

.updates__card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.updates__card--image--special {
  background: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.updates__card--logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.2rem;
  height: 1.6rem;
}

.updates__card--logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.updates__card--brand--title {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 2.8rem;
  text-align: center;
  letter-spacing: -0.026rem;
  color: #F5F5F5;
  margin: 0;
}

.updates__card--content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  width: 100%;
}

.updates__card--title {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 2rem;
  line-height: 2.5rem;
  text-align: center;
  letter-spacing: 0.004rem;
  color: #F5F5F5;
  margin: 0;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.updates__card--subtitle {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8rem;
  text-align: center;
  color: rgba(245, 245, 245, 0.7);
  margin: 0;
}

.updates__card--button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 3.2rem;
  gap: 0.8rem;
  width: 100%;
  background: rgba(196, 220, 255, 0.15);
  border-radius: 3.2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.updates__card--button:hover {
  background: rgba(196, 220, 255, 0.25);
}

.updates__card--button span {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.1rem;
  letter-spacing: -0.01rem;
  color: #FFFFFF;
}

@media (max-width: 1200px) {
  .updates__cards {
    gap: 1.6rem;
  }
  
  .updates__card--image {
    height: 14rem;
  }
}

@media (max-width: 1000px) {
  .updates__card--image {
    height: 16rem;
  }
}

@media (max-width: 998px) {
  .updates {
    padding: 8rem 0;
  }
  
  .updates__inner {
    gap: 4.8rem;
  }
  
  .updates__cards {
    flex-direction: column;
    gap: 2.4rem;
  }
  
  .updates__card {
    max-width: 100%;
  }
  
  .updates__card--image {
    height: 40rem;
  }
}

@media (max-width: 768px) {
  .updates {
    padding: 6rem 0;
  }
  
  .updates__inner {
    gap: 3.2rem;
  }
  
  .updates__card {
    padding: 1.2rem 1.2rem 2rem;
    border-radius: 4rem;
  }
  
  .updates__card--image {
    height: 24rem;
    border-radius: 2.8rem;
  }
  
  .updates__card--title {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
}

@media (max-width: 480px) {
  .updates {
    padding: 4rem 0;
  }
  
  .updates__card--title {
    font-size: 1.6rem;
    line-height: 2rem;
    height: auto;
  }
  
  .updates__card--button {
    padding: 1rem 2.4rem;
  }
  
  .updates__card--button span {
    font-size: 1.4rem;
  }
}
