/* ===== MENU MOBILE ===== */

.mobile-menu{
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;

  background: #0f0f0f;

  display: flex;
  flex-direction: column;

  padding: 20px;
  gap: 15px;

  transform: translateY(-120%);
  opacity: 0;

  transition: 0.3s ease;

  z-index: 999;
}

.mobile-menu a{
  color: white;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #222;
}

.mobile-menu.active{
  transform: translateY(0);
  opacity: 1;
}

.menu-btn{
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}