nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1.5rem 0;
  margin-bottom: 1.25rem;
}
nav ul {
  display: flex;
  list-style: none;
  /* margin-left: 1rem; */
}
nav ul li {
  margin-right: 2rem;
}
nav ul li a {
  display: inline-block;
  height: fit-content;
  color: white;
  text-decoration: none;
  font-family: "Apple Garamond", Arial;
  font-size: 1.35rem;
}
nav ul li a img {
  width: 100%;
  max-width: 48px;
  height: 100%;
  object-fit: contain;
  color: black;
}
nav .icon {
  width: 32px;
  height: 32px;
  margin-right: 1rem;
}
nav .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  color: black;
  transform: scale(1.85);
}
nav .mobile-page-title {
  display: none;
}
nav .mobile-burger-menu {
  display: none;
}
#mobile-navigation-menu {
  display: none;
}
@media screen and (max-width: 768px) {
  nav {
    width: auto;
    margin: 0;
    margin: 1rem;
  }
  nav ul {
    display: none;
  }
  nav ul li a {
    font-size: 1rem;
  }
  nav .icon {
    margin-right: 0;
  }
  nav .mobile-page-title {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  nav .mobile-page-title h1 {
    font-family: "Apple Garamond", Arial;
    font-size: 1.25rem;
  }

  nav .mobile-burger-menu {
    display: flex;
  }
  nav .mobile-burger-menu button {
    width: 32px;
    height: 32px;
    background-color: transparent;
    border: none;
    cursor: pointer;
  }
  nav .mobile-burger-menu button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    color: black;
    filter: invert(1);
  }

  #mobile-navigation-menu {
    opacity: 0;
    pointer-events: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: black;
    color: white;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    transition: opacity 0.25s;
    overflow-y: hidden;
  }
  #mobile-navigation-menu.active {
    opacity: 1;
    pointer-events: all;
    transition: opacity 0.25s;
  }
  #mobile-navigation-menu .exit {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  #mobile-navigation-menu .exit button {
    width: 32px;
    height: 32px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin-right: calc(1rem + 4px);
    margin-top: calc(1rem + 4px);
  }
  #mobile-navigation-menu .exit button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    color: black;
    filter: invert(1);
  }
  #mobile-navigation-menu ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    max-height: calc(100% - 75px);
    list-style: none;
  }
  #mobile-navigation-menu ul li {
    margin: 1rem 0;
  }
  #mobile-navigation-menu ul li a {
    display: inline-block;
    height: fit-content;
    font-family: "Apple Garamond", Arial;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
  }
  #mobile-navigation-menu ul li a img {
    width: 100%;
    max-width: 48px;
    height: 100%;
    object-fit: contain;
    color: black;
  }
}
