#header-menu-desktop {
  display: none;
  flex: 1;
  justify-content: flex-start;
  @media (min-width: 901px) and (pointer: fine) {
    display: flex;
  }
  > a {
    cursor: pointer;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 38px;
    padding: 29px 10px 8px 10px;
    text-decoration: none;
    @media (pointer: fine) {
      &:hover {
        color: white;
      }
    }
    &.active {
      color: white;
    }
  }
  #services-button.listening {
    &:hover {
      ~ #services-menu {
        transition-delay: 0s;
        visibility: visible;
      }
    }
  }
  #services-menu {
    background-color: white;
    border-bottom: 4px solid var(--colorBlue);
    border-top: 4px solid var(--colorBlue);
    display: flex;
    left: 0px;
    position: fixed;
    top: 75px;
    transition-delay: 0.2s;
    visibility: hidden;
    width: 100vw;
    z-index: 3;
    &:hover {
      visibility: visible;
    }
    > div {
      background-color: var(--colorGreenTranslucent);
      display: flex;
      height: 100%;
      justify-content: center;
      width: 100%;
      > div {
        display: flex;
        flex-basis: 225px;
        flex-direction: column;
        margin: 40px 20px 40px 20px;
        > a {
          cursor: pointer;
          font-weight: bold;
          padding: 4px 2px 4px 2px;
          text-decoration: none;
          width: 100%;
          &:hover {
            color: white;
          }
          &.first {
            font-size: 2rem;
          }
          &.second {
            font-size: 1.4rem;
            margin: 0px 0px 0px 10px;
          }
        }
      }
    }
  }
}
