header #logo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;

  @media (min-width: 960px) {
    margin-left: 5px;
  }
}

#nav-mobile {
  display: none;
  position: relative;
  margin-right: 40px;

  & summary {
    font-size: 24px;
    color: #005585;
    cursor: pointer;
    list-style: none;
    user-select: none;

    &::marker {
      display: none;
    }

    &::-webkit-details-marker {
      display: none;
    }
  }

  & ul {
    position: absolute;
    right: 0;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    background: white;
    border: 1px solid #006cab;
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.3);
    z-index: 200;
  }

  & li a {
    display: block;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #005585;
    text-decoration: none;
    white-space: nowrap;

    &:hover {
      color: #a3c5d9;
    }
  }

  @media (max-width: 959px) {
    display: block;
  }
}

#nav-desktop {
  @media (max-width: 959px) {
    display: none;
  }
}
