/* ------- primary header ---------- */

.hide {
    display: none;
  }
  .flex {
    display: flex;
    gap: 1rem;
  }
  
.sr-only {
    display: none;
  }
  nav {
    color: rgb(88, 11, 11);
  }
  .primary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    z-index: 100;
  }
  .mobile-nav-toggle {
    display: none; /* No Menu icon displays on large screens */
  }
  .primary-navigation {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .primary-navigation a {
    text-decoration: none;
    color: white;
    display: block;
    padding: 10px;
    margin: 0;
    text-align: center;
    margin-right: 2rem;
  }
  .primary-navigation a:hover {
    background-color: grey;
    border-radius: 5%;
  }
  .primary-navigation a.active {
    color: yellow;
  }
  
  .primary-navigation a > [aria-hidden="true"] {
    font-weight: 700;
    margin-inline-end: 0.75em;
  }
  @media (max-width: 20em) {
    .primary-navigation {
      height: 60vh;
      width: 100vw;
      z-index: 1000;
      position: fixed;
      inset: 0 0 0 65%; /* margin top, right, bottom, left */
      flex-direction: column;
      padding: min(40vh, 4rem) 1rem;
      transform: translateX(100%);
      transition: transform 350ms ease-out;
    }
    .primary-navigation[data-visible="true"] {
      transform: translateX(0%);
    }
    .primary-navigation a {
      margin-right: 15rem;
    }
    .mobile-nav-toggle {
      display: block;
      position: absolute;
      z-index: 9999;
      background-image: url(../images/menu-white.png);
      background-repeat: no-repeat;
      background-color: transparent;
      border: none;
      width: 2rem;
      height: 4rem;
      top: 2rem;
      right: 2rem;
    }
    .mobile-nav-toggle[aria-expanded="true"] {
      background-image: url(../images/close_white.png);
    }
  }
  