* {
/* FOOTER */
.footer {
  background: #0b0d11;
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media(max-width: 992px) {

  .about-grid,
  .aku-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 3rem;
  }
}

@media(max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    right: -100%;
    background: #11151b;
    flex-direction: column;
    width: 250px;
    padding: 30px;
    transition: 0.4s;
  }

  .nav-links.active {
    right: 20px;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .stats-grid {
    flex-direction: column;
  }
}