.hero-card {
  margin: 0 auto;
}

.cards {
  display: flex !important;
  flex-direction: column;
}

.logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
}

.hero-stats {
  flex-wrap: nowrap;
  /* display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px; */

  .stat {
    width: 100%;
  }
}

.reveal_bg {
  position: absolute;
  top: 3px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -10;
}

#how {
  position: relative;
  min-height: 30lvh;
  z-index: 10;

  .container.grid-2 {
    position: relative;
    z-index: 20;
  }
}

.hero {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

#mobileMenu {
  background-color: var(--bg) !important;
}

.rect-1,
.rect-2,
.rect-3 {
  transition: all 0.3s ease;
}

.burger[aria-expanded="true"] {
  .rect-2 {
    opacity: 0;
  }

  .rect-1 {
    transform: translateY(-1px) translateX(5px) rotate(45deg);
  }

  .rect-3 {
    transform: translateY(6px) translateX(-9px) rotate(-45deg);
  }
}

.btn-start-trading.hero-cta {
  width: 100%;
  justify-content: center;
}

.buttons .button-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

@media screen and (min-width: 980px) {
  .container.inner {
    display: flex !important;
    justify-content: space-between;

    .left_container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      width: 55%;
    }
  }

  .cards {
    display: flex;
    flex-direction: row;
  }

  .hero {
    height: 100svh;
  }

  #mobileMenu {
    background-color: transparent !important;
  }
}
