nav {
  width: max-content;
  font-weight: 400;
  font-size: 1.5rem;
}

nav .menu-container {
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  margin: 0 4rem 0 0;
}

nav ul li {
  margin-bottom: 2rem;
}



.current-menu-item {
  border-bottom: 1px solid var(--font);
}

/* Footer */
.footer-nav ul {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  padding: 0;
}

.footer-nav ul li:first-child {
  margin-right: 3rem;
}

/* Width in PX > 768px */
/* ==== = MEDIUM = ==== */
@media only screen and (min-width: 48em) {
  .footer-nav ul {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    padding: 0;
  }
}

/* Width in PX > 920px */
/* ==== = BIG = ==== */
@media only screen and (min-width: 62em) {
  nav ul li {
    margin-left: 2rem;
    margin-bottom: 0;
  }

  nav ul li a:hover {
    color: #58748e;
  }
}