header {
  /*width:100%;*/
  padding: 20px 6%;
  background: #faf7f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e0d6;
}
.logo {
  font-weight: 700;
  font-size: 1.4rem;
  color: #163a2f;
  text-decoration: none;
}

.logo img {
  height: 50px;
  width: auto;
}

@media (min-width: 993px) {
  .logo img {
    height: 38px;
  }
}
@media (min-width: 993px) {
  .logo img {
    height: 38px;
  }
}

nav {
  display: flex;
  gap: 32px;
}
nav a {
  text-decoration: none;
  color: #163a2f;
  font-weight: 500;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.burger div {
  width: 24px;
  height: 3px;
  background: #163a2f;
  border-radius: 2px;
}

@media (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #faf7f0;
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid #e5e0d6;
  }
  nav.open {
    display: flex;
  }
  .burger {
    display: flex;
  }
}
