header {
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 1px 6px 10px 0px rgba(0, 0, 0, 0.21);
  -webkit-box-shadow: 1px 6px 10px 0px rgba(0, 0, 0, 0.21);
  -moz-box-shadow: 1px 6px 10px 0px rgba(0,0,0,0.21);
  z-index: 9;
}
/* ----  ---- header top ---- ---- */
header .header-top {
  background-color: #462920;
  padding: 5px 0;
  border-bottom: 1px solid #462920;
}
header .header-top .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: end;
  height: 100%;
}
header .header-top p {
  text-align: center;
  font-size: 14px;
  color: #FAFAFA;
  margin: 0;
}
header .header-top a {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #FAFAFA;
  text-decoration: none;
  margin: 0 30px 0 0;
}
header .header-top a svg {
  display: inline-block;
  margin: 0 6px 0 0;
}
header .header-top .content-wrapper a:last-of-type {
  margin: 0;
}
/* ----  ---- header bottom ---- ---- */
header .header-bottom {
  background-color: #f4ECE2;
}
header .logo-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
header .logo-wrapper a {
  font-family: "Tinos", serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 100%;
  color: #462920;
  text-decoration: none;
  margin: 0;
}
header nav {
  width: 100%;
  height: 100%;
}
header ul {
  text-align: right;
  padding: 0;
  margin: 0;
}
header ul li {
  display: inline-block;
  list-style: none;
  margin: 0 20px 0 0;
}
header ul li:last-of-type {
  margin: 0;
}
header ul li a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  /* color: #F5B895; */
  /* color: #C56C4E; */
  color: #462920;
  padding: 25px 0;
  transition: 0.15s linear all;
  text-decoration: none;
}
header ul li a:hover {
  color: #C56C4E;
}
header ul li a.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background-color: #462920;
  font-size: 18px;
  font-weight: 500;
  font-family: "Tinos", serif;
  color: #FAFAFA;
  text-decoration: none;
  padding: 14px 28px;
  margin: 0;
  cursor: pointer;
  transition: 0.15s linear all;
}
header ul li a.cta:hover {
  background-color: #C56C4E;
}

@media only screen and (max-width: 1280px) {
  header .header-top .content-wrapper:last-of-type {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  header .logo-wrapper a {
    font-size: 48px;
    margin: 10px 0 0 0;
  }
  header ul li a {
    font-size: 15px;
  }
  header ul li a.cta {
    font-size: 15px;
    padding: 12px 18px;
    margin: 0;
  }
}

@media only screen and (max-width: 575px) {
  header .logo-wrapper {
    justify-content: center;
  }
  header ul {
    text-align: center;
  }
  header ul li {
    margin: 0 13px 0 0;
  }
  header ul li a {
    font-size: 13px;
    padding: 20px 0;
  }
}
