/* PC */
@media (min-width: 992px) {
  .mobile-header {
    display: none;
  }
}

/* tablet and mobile */
@media (max-width: 991.98px) {
  .nav,
  .btn-signup {
    display: none;
  }
  .body {
    position: relative;
  }

  /* relocation menu icon */
  .menu-header__icon {
    width: 24px;
    color: #fff;
    position: absolute;
    top: 18px;
    right: 16px;
  }

  /* overlay */
  .menu-overlay {
    position: fixed;
    background: hsl(0, 0%, 100%, 0.1);
    backdrop-filter: blur(1rem);
    inset: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }
  .menu-checkbox:checked ~ .menu-overlay {
    opacity: 1;
    visibility: visible;
  }

  .menu-drawer {
    position: fixed;
    background: hsl(0, 0%, 100%, 0.1);
    backdrop-filter: blur(1rem);
    inset: 0 0 0 10%;
    z-index: 2;
    transform: translateX(100%);
    transition: 0.5s;
    padding: 18px;
  }

  .menu-checkbox:checked ~ .menu-drawer {
    transform: translateX(0);
  }
  .logo__mobile {
    font-family: "Press Start 2P", system-ui;
    color: #030615;
    font-size: 2rem;
    cursor: default;
  }

  .close__menu {
    width: 24px;
    color: #fff;
  }

  #navbar__list--mobile {
    margin-top: 25px;
  }

  #navbar__list--mobile li {
    list-style-type: none;
    font-family: "Press Start 2P", system-ui;
    margin: 10px;
    padding: 30px;
  }
}
/* table */
@media (min-width: 768px) and (max-width: 991.98) {
}
/* mobile */
@media (max-width: 767.98px) {
}
