:root {
  --title-font: "Sofia Sans";
  --text-font: "Mulish";
  --subtext-font: "Inter";
  --color-white: #e1ebfb;
  --color-blue: #a5c3ff;
  --container-width: 1310px;
}

@font-face {
  font-family: "Mulish";
  src: url("/fonts/Mulish-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Regular-400.woff2") format("woff2");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "Sofia Sans";
  src: url("/fonts/SofiaSans-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: normal;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--text-font);
  color: var(--color-white);
}

.accent {
  color: var(--color-blue);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
}

body {
  background-color: #02030c;
  z-index: 1;
}

.header {
  position: relative;
  z-index: 3;
  padding-block: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-list {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;

  li a {
    text-decoration: none;
    padding: 16px 18px;
    border-radius: 30px;
    border: 0.5px solid var(--color-blue);
    color: var(--color-blue);
    background-color: #a5c3ff1a;
    font-size: 16px;
    text-transform: uppercase;
  }
}
.nav-list a:hover {
  background-color: transparent;
}

.header a {
  transition: background-color 0.3s ease;
}

.sign-up-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--color-blue);
  font-size: 16px;
  padding: 2px 2px 2px 16px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid var(--color-blue);
  transition: background-color 0.4s ease, color 0.4s ease;
  background-color: #03050d;
}

.sign-up-btn svg rect {
  transition: fill 0.3s ease;
}

.sign-up-btn svg line {
  transition: stroke 0.3s ease;
}

.sign-up-btn:hover svg rect {
  fill: #03050d;
}

.sign-up-btn:hover svg line {
  stroke: var(--color-blue);
}

.sign-up-btn:hover {
  background-color: var(--color-blue);
  color: #000;
}

.burger-btn {
  display: none;
}

.desktop-only {
  display: flex;
}

.nav-list-mobile {
  display: none;
}

.hero .animation {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 100px;
  padding-bottom: 150px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.hero .animation::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  background-size: contain;
  background-image: url("/img/hero-bg.png");
  background-repeat: no-repeat;
  width: 100%;
  max-width: 50%;
  height: 100%;
  z-index: -1;
  transition: bottom 0.4s ease;
  animation: slide-and-grow 3s ease-out forwards, levitate 5s linear infinite 3s;
}

.hero {
  min-height: 530px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 650px;
  margin-bottom: 160px;
}

.hero-form {
  max-width: 500px;
  width: 100%;
}

.hero-title {
  color: var(--color-white);
  font-family: var(--title-font);
  font-size: 90px;
  line-height: 110%;
  letter-spacing: -0.9px;
  text-transform: uppercase;
}

.hero-subtitle {
  color: var(--color-blue);
  font-family: var(--text-font);
  font-size: 18px;
  line-height: 160%;
  font-weight: 400;
}

.common-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 2px 2px 2px 16px;
  max-width: 210px;
  width: 100%;
  background-color: var(--color-blue);
  border-radius: 100px;
  border: 1px solid var(--color-blue);
  color: #03050d;
  font-family: var(--title-font);
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.common-btn:hover {
  background-color: transparent;
  color: var(--color-blue);
}

.common-btn svg rect,
.common-btn svg .line {
  transition: fill 0.4s ease, stroke 0.4s ease;
}

.common-btn svg rect,
.common-btn svg .line {
  transition: fill 0.4s ease, stroke 0.4s ease;
}

.common-btn:hover svg rect {
  fill: #a5c3ff;
  stroke: #a5c3ff;
}

.common-btn:hover svg line {
  stroke: #03050d;
}

#features {
  position: relative;
  width: 100%;
}

.features-top {
  border-radius: 40px;
  position: relative;
  background: #0a131b;
  padding: 80px 90px 700px 90px;
  max-width: 650px;
  margin-bottom: 150px;
}

.features-top::after {
  content: "WORLDLEADER";
  color: var(--color-white);
  font-family: var(--title-font);
  display: block;
  padding: 12px 30px;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  position: absolute;
  top: 140px;
  right: -120px;
  transform: rotate(90deg);
  border-radius: 15px 15px 0 0;
  background: #1747a4;
}

.features-top-title {
  max-width: 480px;
  color: var(--color-white);
  font-family: var(--title-font);
  font-size: 54px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.54px;
  text-transform: uppercase;
}

.features-title {
  max-width: 480px;
  color: var(--color-blue);
  font-family: var(--title-font);
  font-size: 54px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.54px;
  text-transform: uppercase;
}

.features-title:last-of-type {
  display: flex;
  align-items: center;
  gap: 30px;
}

.features-element {
  background-color: #03050d;
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding: 0 0 0 54px;
  border: 1px solid var(--color-blue);
  transition: background-color 2s ease, border-color 2s ease;
  animation: bg-change 6s ease-in-out infinite;

  svg {
    transform: rotate(90deg);
  }
}

.features-element svg {
  transform: rotate(90deg);
  transition: fill 2s ease;
}

.features-element svg rect {
  animation: svg-fill-change-2 6s ease-in-out infinite;
}

.features-element svg line {
  animation: svg-fill-change-2 6s ease-in-out infinite;
}

@keyframes bg-change {
  0% {
    background-color: #03050d;
  }
  50% {
    background-color: var(--color-blue);
  }
  100% {
    background-color: #03050d;
  }
}

@keyframes svg-fill-change {
  0% {
    background-color: var(--color-blue);
  }
  50% {
    fill: #03050d;
  }
  100% {
    background-color: var(--color-blue);
  }
}

@keyframes svg-fill-change-2 {
  0% {
    fill: #03050d;
  }
  50% {
    fill: #03050d;
  }
  100% {
    fill: #03050d;
  }
}

#features .container {
  position: relative;
}

.features-cards {
  max-width: var(--container-width);
  display: flex;
  width: 100%;
  position: absolute;
  justify-content: center;
  z-index: 2;
  width: 100%;
  left: 0;
  right: 0;
  top: 300px;
  padding: 44px 90px 140px 90px;
  border-radius: 40px;
  background: #0a131b;
}

.features-cards::before {
  content: "";
  position: absolute;
  top: -200px;
  right: 0;
  background: url("/img/feat-bg.webp") no-repeat center / cover;
  max-width: 500px;
  width: 100%;
  max-height: 130px;
  height: 100%;
}

.features-btn {
  position: absolute;
  bottom: 44px;
}

.features-card {
  padding: 40px 52px;
  border-radius: 40px 40px 40px 0;
  border: 1px solid #232743;
  max-width: 380px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;

  img {
    max-width: 160px;
  }
}

.features-card {
  border-top-left-radius: 24px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.features-card:nth-of-type(2) {
  border-radius: 0;
  border-bottom-left-radius: 24px;
  border-top-right-radius: 24px;
}

.features-card:nth-of-type(3) {
  border-radius: 0;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
}

.features-card-title {
  color: #e1ebfb;
  font-family: "Sofia Sans";
  font-size: 24px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.25px;
}

.features-card-text {
  color: #a5c3ff;
  font-family: var(--text-font);
  font-size: 18px;
  line-height: 160%;
}

.invest-title {
  color: #e1ebfb;
  text-align: center;
  font-family: var(--title-font);
  font-size: 54px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.54px;
  text-transform: uppercase;
}

.invest-subtitle {
  color: #a5c3ff;
  font-family: var(--title-font);
  font-size: 70px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.7px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 60px;
}

.invest-card-left {
  border-radius: 40px;
  border: 1px solid #a5c3ff;
  background: #0a131b;
  padding: 30px 50px;
  max-width: 580px;
}

.invest-card {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
}

.invest-card:nth-of-type(2) {
  justify-self: flex-end;
}

.invest-card:last-of-type {
  margin-bottom: 150px;
}

.invest-card-right {
  max-width: 480px;
}

.invest-card-right h3 {
  color: #a5c3ff;
  font-family: var(--title-font);
  font-size: 24px;
  line-height: 160%;
  margin-bottom: 16px;
}

.invest-card-right h4 {
  color: #fff;
  font-family: var(--title-font);
  font-size: 20px;
  line-height: 160%;
  font-weight: 400;
  margin-bottom: 40px;
}

.invest-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}

.invest-card-img {
  margin-bottom: 24px;
  width: 100%;
}

.invest-card-sub {
  color: #a5c3ff;
  font-family: var(--subtext-font);
  text-align: center;
  font-size: 12px;
}

.succeed-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

.succeed-card {
  border-radius: 40px;
  padding: 40px;
  border: 1px solid #a5c3ff;
  background: #0a131b;
}

.succeed-card-title {
  display: flex;
  align-items: center;
  gap: 40px;
  color: #fff;
  font-size: 50px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 34px;

  img {
    max-width: 54px;
    width: 100%;
    border-radius: 12px;
    padding: 12px;
    border: 0.5px solid #a5c3ff;
    background: rgba(165, 195, 255, 0.1);
  }
}

.succeed-card-text {
  color: #a5c3ff;
  font-family: var(--text-font);
  font-size: 24px;
  line-height: 160%;
}

.succeed-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  .invest-title {
    margin-bottom: 10px;
    text-align: left;
  }
}

.succeed-left img {
  margin-bottom: 60px;
}

.succeed-left .sign-up-btn {
  margin: 0 auto;
}

.succeed-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mob-only {
  display: none;
}

.succeed {
  padding-bottom: 150px;
}

.trade-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 250px;
}

.trade-title .invest-title {
  font-size: 32px;
  margin-bottom: 0;
  text-align: left;
}

.trade-title .invest-subtitle {
  font-size: 40px;
  margin-bottom: 0;
  text-align: left;
}

.trade .sign-up-btn {
  max-width: 200px;
  margin: 0 auto;
  width: 100%;
}

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

.trade-wrapper {
  overflow: hidden;
  border-radius: 40px;
  border: 1px solid #a5c3ff;
  background: #0a131b;
  padding: 60px;
}

.running-line {
  top: 200px;
  left: -20px;
  position: absolute;
  overflow: hidden;
  padding: 20px 0;
  border: 0.5px solid #a5c3ff;
  background: #0a131b;
  transform: rotate(356deg);
  width: 110%;
  box-sizing: border-box;
}

.running-line-inner {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: line-scroll 40s linear infinite;
}

.running-line-content {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-shrink: 0;
  margin-right: 60px;
}

.r-line-el {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #a5c3ff;
  font-family: "Source Sans Pro";
  font-size: 40px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.4px;
}

.trade {
  margin-bottom: 150px;
}

.swiper-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.why-card {
  border-radius: 40px 0 40px 40px;
  border: 1px solid #232743;
  padding: 40px 50px;
  max-width: 370px;
}

.swiper-slide {
  display: flex !important;
  flex-direction: column !important;
  height: auto !important;
}

.why-card:first-of-type {
  border-radius: 40px 0 40px 40px;
}

.why-card:nth-of-type(2) {
  border-radius: 0 40px 0 40px;
}

.why-card:nth-of-type(3) {
  border-radius: 40px 40px 40px 0;
}

.why-card-title {
  color: #e1ebfb;
  font-family: serif;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.why-wrapper {
  border-radius: 40px;
  position: relative;
  border: 1px solid #a5c3ff;
  background: #0a131b;
  padding: 40px 40px 80px 40px;
}

.why-title {
  color: #fff;
  text-align: center;
  font-family: var(--title-font);
  font-size: 70px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.7px;
  text-transform: uppercase;
  margin-bottom: 60px;
}

.swiper-pagination-bullet {
  border-radius: 100px !important;
  background: #232743 !important;
  width: 8px !important;
  height: 4px !important;
}

.swiper-pagination-bullet-active {
  width: 40px !important;
  height: 4px !important;
  border-radius: 100px !important;
  background: #a5c3ff !important;
}

.why-wrapper {
  margin-bottom: 150px;
}

.more-item {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
}

.more-item-title {
  color: #fff;
  text-align: right;
  font-size: 40px;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.more-item-text {
  color: #a5c3ff;
  text-align: right;
  font-family: var(--text-font);
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.more-item-text:first-of-type {
  margin-bottom: 32px;
}

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

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

.faq .common-btn {
  margin: 0 auto 114px auto;
}

.footer-inner {
  position: relative;
  border-radius: 40px;
  background: #101224;
  padding: 32px 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 30px;

  a {
    color: #a5c3ff;
    font-family: "Mulish";
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
  }
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 20px;

  a {
    padding: 18px;
    border-radius: 12px;
    border: 0.5px solid #a5c3ff;
    background-color: rgba(165, 195, 255, 0.1);
    transition: background-color 0.4s ease;

    &:hover {
      background-color: rgba(165, 195, 255, 0.3);
    }
  }
}

.footer-disc {
  border-radius: 20px;
  border: 1px solid #a5c3ff;
  padding: 26px;

  p {
    color: #64769d;
    font-family: "Mulish";
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
  }
}

.footer-logo {
  background: #101224;
  position: absolute;
  top: -80px;
  left: 0;
  padding: 22px 70px 40px 70px;
  border-top-right-radius: 40px;
  border-top-left-radius: 40px;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
  z-index: 2;
  padding: 10px;
  justify-content: center;
  align-items: center;
}

.modal-inner {
  max-width: 500px;
  z-index: 2;
  width: 100%;
}

@keyframes line-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes levitate {
  0% {
    transform: translate(-50%, 100%) scale(3);
  }
  50% {
    transform: translate(-50%, calc(100% - 10px)) scale(3);
  }
  100% {
    transform: translate(-50%, 100%) scale(3);
  }
}

@keyframes slide-and-grow {
  0% {
    opacity: 0;
    transform: translate(-50%, 50%) scale(0.1);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 100%) scale(3);
  }
}

@media (max-width: 1440px) {
  .container {
    padding-inline: 60px;
  }

  .features-cards {
    left: 60px;
    flex-direction: column;
    align-items: center;
    top: 250px;
    padding-top: 0;
  }

  .features-cards::before {
    display: none;
  }

  .features-cards.mob-only {
    position: relative;
    left: 0;
    top: 20px;
    padding: 0;
  }

  .features-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 10px;
  }

  .features-top::after {
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    transform: rotate(0deg);
    border-radius: 0 0 15px 15px;
    transform: translate(-50%, 0);
    max-width: 120px;
    width: 100%;
    text-align: center;
  }

  .features-top {
    max-width: 100%;
  }

  .hero .animation {
    padding-bottom: 0;
  }

  .features-top-title {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .mob-only {
    display: flex;
  }

  .dt-only {
    display: none !important;
  }

  .hero-text .common-btn {
    width: 100%;
    max-width: 100%;
  }

  .hero-title {
    font-size: 50px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero .animation {
    flex-direction: column;
    align-items: center;
  }

  .planet-mob {
    transition: bottom 0.4s ease;
    animation: slide-and-grow 3s ease-out forwards,
      levitate 5s linear infinite 3s;
    position: relative;
    left: 25%;
    width: 50%;
    top: -200px;
    z-index: -1;
  }

  .hero .animation::after {
    display: none;
  }

  .features-top-title {
    font-size: 32px;
  }

  .features-title.mob-only {
    font-size: 32px;
  }

  .features-top {
    padding: 16px 16px 84px 16px;
    border-radius: 16px;
    border: 1px solid var(--color-blue);
  }

  .features-card {
    border-radius: 0;
    text-align: center;
  }

  .features-card:first-of-type {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
  }

  .features-card:nth-of-type(2) {
    border-radius: 0;
    border-bottom-left-radius: 16px;
  }

  .features-card:nth-of-type(3) {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    border-top-left-radius: 16px;
    border-top-right-radius: 0;
    margin-bottom: 20px;
  }

  .features-btn {
    position: relative;
    bottom: 0;
    margin: 20px auto 0 auto;
  }

  .invest-title {
    font-size: 24px;
  }

  .invest-subtitle {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .invest-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;

    .common-btn {
      max-width: 350px;
      margin: 0 auto;
    }
  }

  .invest-card:nth-of-type(2) {
    justify-self: center;
    flex-direction: column-reverse;
    border-radius: 0;
  }

  .invest-card-left {
    padding: 10px;
  }

  .invest-card-img img {
    width: 100%;
  }

  .invest-card-right h3 {
    font-size: 18px;
  }

  .invest-card-right h4 {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .succeed-wrapper.mob-only {
    flex-direction: column;
    align-items: center;
  }

  .succeed-left .invest-title,
  .succeed-left .invest-subtitle {
    text-align: center;
    margin: 0 auto;
  }

  .succeed-card-title {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #fff;
    text-align: center;
    font-family: var(--title-font);
    font-size: 22px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.22px;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .succeed-right {
    max-width: 800px;
  }

  .succeed-card-text {
    color: #a5c3ff;
    text-align: center;
    font-family: var(--text-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
  }

  .succeed-wrapper img {
    width: 100%;
  }

  .succeed-right .sign-up-btn {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }

  .succeed-left .invest-subtitle {
    margin-bottom: 32px;
  }

  .succeed-left img {
    margin-bottom: 32px;
  }

  .succeed {
    padding-bottom: 80px;
  }

  .more-item {
    flex-direction: column-reverse;
    align-items: center;
  }

  .more-item img {
    width: 100%;
  }

  .more-item:nth-of-type(2) {
    flex-direction: column;
  }

  .more-item-title {
    text-align: center;
    font-size: 22px;
  }

  .more-item-text {
    text-align: center;
    font-size: 16px;
  }

  footer.container {
    max-width: 100%;
    padding-inline: 0;
  }

  .footer-links {
    display: none;
  }

  .footer-socials {
    a {
      padding: 12px;
    }
  }

  .footer-inner {
    padding: 24px 50px;
  }

  .footer-logo {
    padding: 22px 40px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 1200px) {
  .container {
    padding-inline: 20px;
  }

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

@media (max-width: 900px) {
  .burger-btn {
    display: block;
    z-index: 2;
  }

  .desktop-only {
    display: none;
  }

  .nav-list-mobile {
    top: -200%;
    display: block;
    z-index: 2;
    left: 0;
    position: fixed;
    list-style: none;
    padding: 120px 64px 64px 64px;
    width: 100%;
    background-color: #0a131b;
    height: 100vh;
    transition: top 0.4s ease;

    li {
      width: 100%;
      text-align: center;
      margin-bottom: 32px;
    }

    li a {
      display: block;
      max-width: 230px;
      margin: 0 auto;
      width: 100%;
    }

    li:nth-of-type(4n) {
      margin-bottom: 120px;
    }

    li:last-of-type a {
      display: flex;
      padding: 2px 2px 2px 16px;
    }

    li:last-of-type a:hover svg rect {
      fill: #03050d;
    }

    li:last-of-type a:hover svg line {
      stroke: var(--color-blue);
    }

    li:last-of-type a:hover {
      background-color: var(--color-blue);
      color: #000;
    }
  }

  .features-card {
    padding: 16px;
  }

  .active {
    top: 0;
  }

  .trade {
    margin-bottom: 80px;
  }

  .trade-title {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .trade-title .invest-title {
    text-align: center;
    max-width: 300px;
    font-size: 22px;
  }

  .trade-title .invest-subtitle {
    text-align: center;
    max-width: 300px;
    font-size: 32px;
    margin-bottom: 12px;
  }

  .trade-title .features-element {
    max-width: 300px;
    width: 100%;
    justify-content: flex-end;
  }

  .trade-wrapper {
    padding: 20px;
  }

  .running-line {
    top: 50%;
  }

  .running-line-content {
    gap: 20px;
  }

  .r-line-el {
    font-size: 18px;
  }

  .why-wrapper {
    margin-bottom: 80px;
  }

  .why-card {
    text-align: center;
    max-width: 100% !important;
  }

  .why-title {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .why-card {
    padding: 16px;
  }

  .why-card-title {
    font-size: 18px;
  }

  .swiper-wrapper {
    justify-content: unset;
  }

  .accordion__item {
    padding: 20px 4px 20px 20px !important;
  }

  .faq .common-btn {
    margin: 0 auto 160px auto;
    max-width: 500px;
    width: 100%;
  }
}

@media (max-width: 500px) {
  .planet-mob {
    width: 100%;
    left: 50%;
  }
}
