#nav-bg {
  width: 100vw;
  height: 72px;
  background-color: white;
}

#nav-container {
  display: flex;
  width: 100%;
  height: 72px;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 100px;
  object-fit: cover;
  margin-top: 5px;
}

.nav-links ul {
  display: flex;
  height: 100%;
  justify-content: space-between;
  align-items: center;
}

.nav-links ul li {
  list-style: none;
  margin-right: 1.875rem;
}

.nav-links ul li:last-child {
  margin-right: 0;
}

.nav-links ul li a {
  text-decoration: none;
  color: black;
  font-size: 1.25rem;
  font-weight: 500;
}

.btn-alt {
  padding: 0.5rem 1.25rem;
}

#mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background-color: white;
  padding: 2rem 0;
}

#mobile-nav ul {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  height: 100%;
}

#mobile-nav ul li {
  margin: 0;
  padding: 1rem 5rem;
}

#mobile-nav ul img {
  width: 250px;
}

#hamburger {
  display: none;
}

#close {
  display: none;
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
}

@media (max-width: 1120px) {
  #hamburger {
    display: block;
    cursor: pointer;
  }

  #close {
    display: block;
    cursor: pointer;
  }

  #desktop-nav {
    display: none;
  }
}