body {
  background: #0c0f19;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-style: normal;
  overflow-x: hidden;
  position: relative;
}

.body .background {
  -ms-transform: translate(-50%, 0);
  -o-object-fit: cover;
  -webkit-transform: translate(-50%, 0);
  left: 50%;
  object-fit: cover;
  position: absolute;
  top: 0;
  transform: translate(-50%, 0);
  width: auto;
  z-index: -4;
}

ul li {
  list-style: none;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
  overflow-x: hidden;
  padding: 26px 60px;
}

.rotate-180 {
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.header {
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.header .header__nav {
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1px;
  line-height: 24px;
}

.header .header__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header .header__logo a img {
  height: 42px;
}

.header .header__nav .menu {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .header__nav .menu > .menu__item > a {
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.header .header__nav .menu .menu__item {
  margin-right: 30px;
  position: relative;
}

.header .header__nav .menu .menu__item a {
  color: #fff;
  padding: 9px 19px;
  text-decoration: none;
  transition: all 100ms ease-in-out;
}

.header .header__nav .menu .menu__item .submenu {
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  background: -o-linear-gradient(bottom, #222739, #222739);
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#222739),
    to(#222739)
  );
  background: linear-gradient(0deg, #222739, #222739);
  border-radius: 12px;
  left: 50%;
  min-width: 116px;
  position: absolute;
  top: 100%;
  transform: translate(-50%, 0);
  overflow: hidden;
}

.header .header__nav .menu .menu__item .submenu .submenu__item a:hover {
  background: #1b1f2d;
}
.header .header__nav .menu .menu__item .submenu .submenu__item img {
  margin-right: 6px;
}

.header .header__nav .menu .menu__item:last-child {
  margin-right: 0;
}

.header .header__nav .menu .menu__item .menu__item--parent {
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.header .header__nav .menu .menu__item.menu__item--parent a {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.header .header__nav .menu .menu__item--parent a .arrow {
  -o-transition: 0.4s transform ease 0ms;
  -webkit-transition: 0.4s -webkit-transform ease 0ms;
  margin-left: 8px;
  transition: 0.4s -webkit-transform ease 0ms;
  transition: 0.4s transform ease 0ms;
  transition: 0.4s transform ease 0ms, 0.4s -webkit-transform ease 0ms;
}

.header .header__nav .menu .menu__item--parent .submenu {
  -ms-transform: translate(-50%, -25%);
  -o-transition: 0.4s ease;
  -webkit-transform: translate(-50%, -25%);
  -webkit-transition: 0.4s ease;
  opacity: 0;
  transform: translate(-50%, -25%);
  transition: 0.4s ease;
}

.header .header__nav .menu .menu__item--parent:hover .submenu {
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  opacity: 1;
  transform: translate(-50%, 0);
}

.hero {
  overflow: hidden;
  position: relative;
}

.hero .hero__content {
  max-width: 607px;
  padding: 60px 0 200px;
}

.hero .hero__content .inline-btn {
  margin-top: 41px;
}

.hero .hero__subtitle {
  color: #a0c1fb;
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  margin-bottom: 15px;
}

.hero .hero__title {
  font-size: 65px;
  font-weight: bold;
  letter-spacing: -2px;
  line-height: 80px;
}

.hero .hero__descrpt {
  margin-top: 30px;
}

.hero .hero__descpt p {
  font-size: 16px;
  letter-spacing: -0.2px;
  line-height: 24px;
}

.hero .hero__graph {
  margin: 50px auto;
  max-width: 1024px;
  padding: 18px;
}

.hero .hero__graph img {
  margin: auto;
  border-radius: 12px;
  box-shadow: 0 0 0 16px #2b2f3c;
}

.inline-btn .btn--bg {
  margin-right: 29px;
}

.btn {
  border-radius: 15px;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.1px;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
  transition: all 100ms ease-in-out;
}

.btn:hover {
  filter: drop-shadow(0px 0px 4px #394260);
}

.btn:active {
  background: #342bcf;
  filter: none;
}

.btn--cta {
  background: #342bcf;
}

.btn--bg {
  padding: 16px 52px;
}

.btn--bg:active {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    #342bcf;
}

.btn--border {
  border: 2px solid #23395e;
  padding: 14px 47.5px;
}

.btn--border-fade {
  padding: 14px 47.5px;
  border-radius: 15px;
}

.btn--border-fade:active {
  filter: none;
}
.btn--border-fade:hover {
  filter: none;
}

.btn--border-fade > * {
  position: relative;
  z-index: 40;
  background: none;
}

.btn--border-fade-container {
  position: relative;
  transition: all 100ms ease-in-out;
  margin-right: auto;
}

.btn--border-fade-container:hover {
  filter: drop-shadow(0px 0px 4px #394260);
  cursor: pointer;
}

.btn--border-fade-container:before {
  background: #0c0f19;
  border-radius: 15px;
  content: "";
  height: calc(100% - 4px);
  left: 2px;
  position: absolute;
  top: 2px;
  width: calc(100% - 4px);
  z-index: 35;
}

.btn--border-fade-container:after {
  background: -o-radial-gradient(
    50.16% 0%,
    110.87% 100%,
    #394260 0%,
    #151a28 100%
  );
  background: radial-gradient(
    110.87% 100% at 50.16% 0%,
    #394260 0%,
    #151a28 100%
  );
  border-radius: 15px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 30;
}

.about {
  margin: 0 auto;
  max-width: 1033px;
  width: 100%;
}

.about .info {
  margin: 160px 0;
}

.about .info .heading {
  margin-bottom: 30px;
}

.about .info > .descrpt {
  margin-bottom: 30px;
}

.about .works {
  margin: 160px 0;
}

.about .works .card .item .subtitle {
  margin-bottom: 32px;
}

.about .works .card .item:after {
  background: -o-radial-gradient(
    50.16% 0%,
    60% 100%,
    #394260 0%,
    rgba(57, 66, 96, 0) 100%
  );
  background: radial-gradient(
    60% 100% at 50.16% 0%,
    #394260 0%,
    rgba(57, 66, 96, 0) 100%
  );
}

.about .works .card .item .bg {
  background: -o-radial-gradient(
      50% 50%,
      55% 100%,
      rgba(0 0 0 / 0%) 0%,
      #0c0f19 100%
    ),
    url(/assets/icons/plus.svg) no-repeat center;
  background: radial-gradient(
      55% 100% at 50% 50%,
      rgba(0 0 0 / 0%) 0%,
      #0c0f19 100%
    ),
    url(/assets/icons/plus.svg) no-repeat center;
  background-position: center;
  background-size: 90%;
}

.about .use-cases {
  margin: 160px 0;
  margin-top: -80px;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.about .use-cases .card .item .bg {
  background: radial-gradient(
      50% 120% at 50% 50%,
      rgb(0 0 0 / 0%) 0%,
      #0c0f19 100%
    ),
    url(/assets/icons/plus.svg) no-repeat center;
  background-position: center;
  background-size: 90%;
}

.about .use-cases .inline-block {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.about .use-cases:after {
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  background: url(/assets/img/abstract-card.png) no-repeat center;
  background-size: auto;
  bottom: 28px;
  content: "";
  height: 108px;
  left: 50%;
  max-width: 740px;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
  z-index: -1;
}

.about .faq {
  margin: 160px 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 676px;
}

.about .faq .feedback {
  border-color: #394260;
  margin-top: 60px;
}

.about .participate {
  margin: 160px 0;
}

.about .heading {
  font-size: 52px;
  font-weight: bold;
  letter-spacing: -1.5px;
  line-height: 60px;
  margin-bottom: 60px;
}

.about .descrpt {
  color: #858dad;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1px;
  line-height: 20px;
}

.about .card {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.about .card .item {
  border-radius: 22px;
  max-width: 29.913%;
  padding: 2px;
  position: relative;
  width: 100%;
  z-index: 50;
}

.about .card .item:before {
  background: #0c0f19;
  border-radius: 22px;
  content: "";
  height: calc(100% - 4px);
  left: 2px;
  position: absolute;
  top: 2px;
  width: calc(100% - 4px);
  z-index: 35;
}

.about .card .item:after {
  background: -o-radial-gradient(
    50.16% 0%,
    110.87% 100%,
    #394260 0%,
    #151a28 100%
  );
  background: radial-gradient(
    110.87% 100% at 50.16% 0%,
    #394260 0%,
    #151a28 100%
  );
  border-radius: 22px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 30;
}

.about .card .item .bg {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgb(0 0 0 / 0%) 0%,
      #0c0f19 100%
    ),
    url(/assets/icons/plus.svg) no-repeat center;
  background-position: center;
  background-size: 90%;
  border-radius: 22px;
  height: 100%;
  overflow: hidden;
  padding: 43px 36px;
  position: relative;
  width: 100%;
  z-index: 40;
}

.about .card .item .image {
  margin-bottom: 33px;
}

.about .card .item .subtitle {
  text-align: left;
  font-size: 21px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 27px;
}

.about .card .item .title {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 24px;
}

.about .card .item .list {
  margin: 38px 0 0;
  padding-left: 20px;
  text-align: left;
}

.about .card .item .list .list__item {
  color: #858dad;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1px;
  line-height: 20px;
  list-style: disc;
  margin-bottom: 20px;
}

.about .card .mode-center {
  -ms-flex-align: center;
  -ms-flex-flow: column;
  -webkit-box-align: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  flex-flow: column;
  flex-flow: column;
  text-align: center;
  text-align: center;
}

.about .card.even {
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
}

.about .card.even .item {
  margin-right: 53px;
}

.about .card.even .item:last-child {
  margin-right: 0;
}

.tab .tab__heading {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  margin-bottom: 30px;
  padding: 0;
}

.tab .tab__heading .tab__item {
  margin-right: 30px;
  position: relative;
}

.tab .tab__heading .tab__item:last-child {
  margin-right: 0;
}

.tab .tab__heading .tab__item a {
  -o-transition: 0.8s color ease 0ms;
  -webkit-transition: 0.8s color ease 0ms;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  padding-bottom: 8px;
  text-decoration: none;
  transition: 0.8s color ease 0ms;
}

.tab .tab__heading .tab__item a:after,
.tab .tab__heading .tab__item a.inactive:hover:after {
  -ms-transform: translateY(0);
  -o-transition: 0.8s all ease 0ms;
  -webkit-transform: translateY(0);
  -webkit-transition: 0.8s all ease 0ms;
  background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(#394260),
      to(#394260)
    ),
    -webkit-gradient(linear, left top, right top, from(#475add), to(#a86be1));
  background: -o-linear-gradient(bottom, #394260, #394260),
    -o-linear-gradient(left, #475add 0%, #a86be1 100%);
  background: linear-gradient(0deg, #394260, #394260),
    linear-gradient(90deg, #475add 0%, #a86be1 100%);
  border-radius: 1px;
  bottom: -8px;
  content: "";
  height: 3px;
  left: 0;
  opacity: 1;
  position: absolute;
  transform: translateY(0);
  transition: 0.8s all ease 0ms;
  width: 100%;
}

.tab .tab__heading .tab__item a.inactive {
  color: #5c6175;
}

.tab .tab__heading .tab__item a.inactive:after {
  -ms-transform: translateY(100%);
  -webkit-transform: translateY(100%);
  opacity: 0;
  transform: translateY(100%);
}

.tab .tab__content {
  margin-top: 60px;
}

.tab .tab__content .card .item .number {
  left: 27px;
  position: absolute;
  top: -20px;
  z-index: 50;
}

.accordion-list {
  margin: 0;
  padding: 0;
}

.accordion-list .item {
  margin-bottom: 45px;
}

.accordion-list .item .title {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 21px;
  font-weight: 600;
  line-height: 24px;
}

.accordion-list .item .content {
  color: #a3aac2;
  font-size: 14px;
  letter-spacing: 0.1px;
  line-height: 20px;
  margin-left: 36px;
  margin-top: 18px;
}

.accordion-list .item:last-child {
  margin-bottom: 0;
}

.accordion-list .item .icon {
  -webkit-box-shadow: inset 0 0 0 2px #858dad;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px #858dad;
  height: 21px;
  margin-right: 15px;
  min-height: 21px;
  min-width: 21px;
  position: relative;
  width: 21px;
}

.accordion-list .item .icon span {
  -ms-transform: translate(-50%, -50%);
  -o-transition: 0.4s transform ease 0ms;
  -webkit-transform: translate(-50%, -50%);
  -webkit-transition: 0.4s -webkit-transform ease 0ms;
  background: #fff;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s -webkit-transform ease 0ms;
  transition: 0.4s transform ease 0ms;
  transition: 0.4s transform ease 0ms, 0.4s -webkit-transform ease 0ms;
  width: 8px;
}

.accordion-list .item .icon.plus span {
  background: #6a61ff;
}
.accordion-list .item .icon.plus span:last-child {
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-list .item .icon.minus span:last-child {
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.participate .card .item {
  max-width: 44%;
  min-height: 376px;
}

.participate .card .item .bg {
  -ms-flex-flow: column nowrap;
  -ms-flex-pack: justify;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: justify;
  background: radial-gradient(50% 200% at 50% 40%, #0000 0%, #0c0f19 100%),
    url(/assets/icons/plus.svg) no-repeat center;
  background-size: 90%;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
}

.participate .card .item .bg .title {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 40px;
}

.participate .card .item .btn {
  -ms-flex-align: end;
  -webkit-box-align: end;
  align-items: flex-end;
  background: #0c0f19;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 14px 30px;
  align-items: center;
}

.participate .card .item .btn img {
  margin-right: 10px;
}

.participate .card .list {
  -ms-flex-flow: column nowrap;
  -ms-flex-pack: justify;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  max-width: 50%;
  width: 100%;
}

.participate .card .list .item {
  -ms-flex-direction: row;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  margin-bottom: 15px;
  max-width: 100%;
  min-height: auto;
  padding: 25px 28px 25px 34px;
  text-decoration: none;
}

.participate .card .list .item .title {
  color: #fff;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 38px;
  z-index: 100;
  margin-bottom: 6px;
}

.participate .card .list .item .text {
  color: #858dad;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1px;
  line-height: 20px;
}

.participate .card .list .item:after {
  background: -o-radial-gradient(
    50.16% 0%,
    110.87% 100%,
    #394260 0%,
    #394260 33 100%
  );
  background: radial-gradient(
    110.87% 100% at 50.16% 0%,
    #394260 0%,
    #394260 33 100%
  );
}

.participate .card .list .item:last-child {
  margin-bottom: 0;
}

.participate .card .list .item .inline-block {
  position: relative;
  z-index: 50;
}

.participate .card .list .item {
  transition: all 100ms ease-in-out;
}
.participate .card .list .item:hover {
  filter: drop-shadow(0px 0px 4px #394260);
}

.participate .card .list .item img {
  margin-right: 25px;
  z-index: 50;
}

.footer {
  padding-top: 22px;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer::before {
  background: -o-radial-gradient(
    50.16% 0.01%,
    49.84% 96277959.5199999958%,
    #394260 0%,
    rgba(57, 66, 96, 0.2) 100%
  );
  background: radial-gradient(
    49.84% 96277959.5199999958% at 50.16% 0.01%,
    #394260 0%,
    rgba(57, 66, 96, 0.2) 100%
  );
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.footer .links-container {
  display: flex;
  flex-direction: row;
  margin-bottom: 16px;
}

.footer a {
  color: #5c6175;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1px;
  line-height: 20px;
  margin: 0 5px;
  margin-top: 12px;
  text-decoration: none;
}

.footer .copyright {
  color: #5c6175;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1px;
  line-height: 20px;
}

.header .header__nav .icon-menu {
  display: none;
}

.header .header__nav .menu .submenu .submenu__item a {
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  width: 100%;
}

.investors {
  display: flex;
  flex-direction: column;
}

.investors-grid {
  display: flex;
  flex-direction: row;
  align-content: space-between;
  justify-content: space-between;
  grid-gap: 42px;
  flex-wrap: wrap;
}

.investors-grid .grid-panel {
  display: flex;
  position: relative;
  width: 300px;
  height: 100px;
  align-items: center;
  justify-content: center;
  padding: 50px;
  z-index: 50;
}

.investors-grid .grid-panel img {
  z-index: 50;
}

.investors-grid .grid-panel:before {
  background: #0c0f19;
  border-radius: 15px;
  content: "";
  height: calc(100% - 4px);
  left: 2px;
  position: absolute;
  top: 2px;
  width: calc(100% - 4px);
  z-index: 35;
}

.investors-grid .grid-panel:after {
  background: -o-radial-gradient(
    50.16% 0%,
    110.87% 100%,
    #394260 0%,
    #151a28 100%
  );
  background: radial-gradient(
    110.87% 100% at 50.16% 0%,
    #394260 0%,
    #151a28 100%
  );
  border-radius: 15px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 30;
}
