.menu-panel {
  display: flex;
  position: fixed;
  top: 0;
  left: 110%;
  width: 100vw;
  height: 100vh;
  padding-top: 10rem;
  z-index: 2;
  background-color: var(--obsidian);
  transition: left 0.25s ease-out;

  &.active {
    left: 0;
  }
  &.inactive {
    left: 110%;
  }

  & nav {
    margin: auto;
  }

  & .menu {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;

    & li {
      position: relative;
      display: flex;
      justify-content: center;
      height: 2.5rem;
      font-size: 2rem;

      &::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 1px;
        border-radius: 1rem;
        background-color: var(--color3);
        transform: scaleX(0);
        transition: transform 0.25s ease-out;
      }

      &.active {
        color: var(--color3);
        /* font-weight: 600; */
        transform: scale(1.05);

        &::after {
          transform: scaleX(1);
        }
      }
    }
  }
}

@media (min-width: 1200px) {
  .menu-panel {
    left: 110% !important;
  }
}
