.mobile-menu {
  padding-top: 4rem;
  padding-bottom: 6rem;
  box-sizing: border-box;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(8, 13, 30, .95);
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
  z-index: 2;

  @include screen(md, min) {
    display: none;
  }

  &.active {
    opacity: 1;
    pointer-events: all;
  }

  &__app {
    width: 36rem;
    height: 10.5rem;
  }

  &__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }

  &__close {
    cursor: pointer;
    background-color: transparent;
    padding: 0;
    border: none;

    img {
      width: 4.3rem;
      height: 4.3rem;
    }
  }

  &__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: auto;
    margin-bottom: auto;

    a {
      color: #fff;
      font-size: 5.5rem;
      text-decoration: none;
      font-weight: 700;
      letter-spacing: -.06em;

      + a {
        margin-top: 6rem;
      }
    }
  }

  .container {
    padding-right: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 70rem;
  }
}
