header {
  height: 100px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
}
.header.scrolled {
  background-color: #fffdfa;
  transition: 0.5s ease-in-out;
  box-shadow: 0 0 8px #0000002e;
}
.header-set {
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: center;
}

.header-set .logo {
  width: 30%;
}
.header-set .logo img {
}
.header-set .menu {
  width: 70%;
  display: flex;
  justify-content: flex-end;
  gap: 7%;
}
.header-set .menu a {
  color: #462d0c;
  font-weight: 400;
}
@media (max-width: 991px) {
  header {
    height: 60px;
    position: sticky;
    background-color: #f4f1eb;
    font-size: 20px;
  }
  .logo img {
    height: 40px;
  }
  .header-set .menu a {
    display: flex;
    align-items: center;
  }
  #offcanvasMenu ul {
    margin: 0;
    padding: 0;
  }
  #offcanvasMenu li {
    list-style-type: none;
    border-bottom: 1px #efefef solid;
  }
  #offcanvasMenu li a {
    padding: 1rem 0;
    color: #462d0c;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    display: block;
  }
  .offcanvas-header {
    box-shadow: 0 0 6px #0000002e;
  }
}
@media (min-width: 1180px) and (max-width: 1440px) {
  header {
    height: 80px;
  }
  .header-set .logo img {
    height: 60px;
  }
}
