/* ---- header element ---- */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5;
  background: rgb(233,240,212);
  background: -moz-linear-gradient(90deg, rgba(233,240,212,1) 0%, rgba(242,244,233,1) 52%, rgba(233,240,212,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(233,240,212,1) 0%, rgba(242,244,233,1) 52%, rgba(233,240,212,1) 100%);
  background: linear-gradient(90deg, rgba(233,240,212,1) 0%, rgba(242,244,233,1) 52%, rgba(233,240,212,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e9f0d4",endColorstr="#e9f0d4",GradientType=1);
}
header .logo {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
header .logo img {
  display: block;
  width: auto;
  max-height: 60px;
}
header .header-wrapper-desktop {

}
header .header-wrapper-mobile {
  display: none;
}
header .nav-trigger {
  cursor: pointer;
}
header nav.mobile {
  display: block;
}
header nav.mobile ul {
  display: block;
  text-align: center;
}
header nav.mobile ul li {
  display: block;
  margin: 0;
}
header nav.mobile ul li a {
  font-size: 18px;
}

header nav {
  display: flex;
  align-items: center;
  height: 100%;
}
header nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header nav ul li {
  position: relative;
  display: inline-block;
  color: #F2F4EA;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  margin: 0 40px 0 0;
}
header nav ul li:last-of-type {
  margin: 0;
}
header nav ul li a {
  display: block;
  color: #614B1F;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 30px 0;
  transition: 0.2s linear all;
}
header nav ul li a:hover {
  color: #FF9451;
}
header nav ul li.active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

header .header-right {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}
header #contact-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #DD6727;
  font-size: 15px;
  font-weight: 500;
  line-height: 16px;
  color: #F3F5EB;
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid #DD6727;
  margin: 0 30px 0 0;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.2s linear all;
}
header #contact-trigger:hover {
  background-color: transparent;
  color: #DD6727;
}
header .cart {
  position: relative;
  display: block;
  text-decoration: none;
  margin: 0 0 0 40px;
}
header .cart-count {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #DD6727;
  color: white;
  font-size: 10px;
  font-weight: bold;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  right: -10px;
  width: 18px;
  height: 18px;
}

@media only screen and (max-width: 1280px) {
  header .logo img {
    max-width: 180px;
  }
  header nav ul li {
    margin: 0 25px 0 0;
  }
  header nav ul li a {
    font-size: 14px;
  }
  header #contact-trigger {
    font-size: 14px;
  }
}
@media only screen and (max-width: 992px) {
  header .header-wrapper-desktop {
    display: none;
  }
  header .header-wrapper-mobile {
    display: block;
  }
  header .mob-nav-holder {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media only screen and (max-width: 768px) {
  header nav ul {
    justify-content: right;
  }
  header nav ul li:last-of-type a {
    display: block;
  }
  header nav ul li {
    margin: 0 20px 0 0;
  }
  header .header-right .request #contact-trigger {
    padding: 0 10px;
  }
}

@media only screen and (max-width: 440px) {

}
