#header {
  height: 80px;
  display: flex;
  justify-content: space-between;
  /* position: sticky;
  top: 0;
  width: 100%; */
}

.nav-container {
  width: 100%;
  padding: 0px 20px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

.nav-container ul {
  width: -webkit-fill-available;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  gap: 3%;
  align-items: center;
}

.nav-container li {
  list-style-type: none;
}

.nav-container a {
  text-decoration: none;
  font-family: sans-serif;
  font-weight: 550;
  color: #1e315f;
}

.toggle-btn {
  display: none;
  border: none;
  background-color: transparent;
  font-size: larger;
  color: #1e315f
}

.sign-up-btn {
  width: 142px;
  height: 40px;
  border: 2px solid #1e315f;
  background: #1e315f;
  color: #fdfdfd;
  letter-spacing: 0.1em;
  font-family: sans-serif;
  font-size: 15px;
  font-weight: normal;
  cursor: pointer;
}

.img-wrapper {
  width: 80px;
}

.img-wrapper img {
  width: 80px;
  height: 100%;
  object-fit: contain;
}

@media print, screen and (max-width: 420px) {
  #header {
    height: auto;
  }

  .img-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
  }

  .nav-container {
    flex-direction: column;
  }

  .nav-container ul {
    display: block;
  }
  .nav-container li {
    padding: 10px 0;
    display: none;
  }
  .toggle-btn {
    display: block;
  }
}
