header {
  width: 100%;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  padding: 22px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9991;
  transition: all .3s;
  background: #fff;
}
.headerWrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.logo {
  width: 10%;
}
.logo img {
  width: 113px;
}
.navbar {
  width: 86%;
  text-align: right;
}
nav ul li {
  font-size: 1rem;
  display: inline-block;
  padding: 12px 16px;
  position: relative;
}
nav ul li.havechild::after {
  content: "";
  background: url(../images/menu-down.svg) no-repeat center center;
  width: 15px;
  height: 14px;
  position: absolute;
  display: inline-block;
  right: -4px;
  top: 11px;
}
nav ul li ul.sub-menu {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  top: 35px;
  background: #fff;
  text-align: left;
  box-shadow: 0px 3px 6px #00000029;
  display: none;
  transition: .3s ease-in-out;
}
nav ul li ul.sub-menu li {
  display: block;
  padding: 12px 16px;
  text-align: center;
}
nav ul li a {
  color: #000;
  transition: .3s ease-in-out;
}
nav ul li a.active, nav ul li a:hover {
  color: #C38C27;
}
.search-icon {
  width: 4%;
  display: none;
  text-align: right;
}
#nav-icon3 {
  display: none;
}
@media only screen and (max-width: 1700px) {
  nav ul li {
    padding: 12px 10px;
  }
  .logo {
    width: 10%;
  }
}
@media only screen and (max-width: 1440px) {
  nav ul li {
    padding: 12px 7px;
  }
}
@media only screen and (max-width: 1280px) {
  nav ul li {
    font-size: 0.8rem;
    display: inline-block;
    padding: 12px 6px;
  }
  .navbar {
    padding-left: 37px;
    width: 88%;
  }
  .logo {
    width: 7%;
  }
}
@media only screen and (max-width: 1024px) {
  nav ul li {
    font-size: 0.76rem;
    display: inline-block;
    padding: 12px 5px;
  }
  .navbar {
    padding-left: 17px;
  }
  .logo {
    width: 7%;
  }
}
@media only screen and (min-width: 992px) {
  nav ul li ul.sub-menu li a:hover {
    display: block;
    text-decoration: none;
    color: #C38C27;
  }
  nav ul li:hover .sub-menu {
    display: block;
  }
}
@media only screen and (max-width: 991px) {
  header {
    padding: 10px 0;
  }
  .logo {
    width: 50%;
  }
  .logo img {
    width: 73px;
  }
  .search-icon {
    position: absolute;
    top: 15px;
    right: 80px;
    width: auto;
  }
  header .headerWrapper #nav-icon3 {
    width: 40px;
    height: 28px;
    display: block;
    position: absolute;
    margin: 0 auto;
    transform: rotate(0);
    transition: .5s ease-in-out;
    cursor: pointer;
    right: 10px;
    top: 15px;
    z-index: 101;
  }
  header .headerWrapper #nav-icon3 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 80%;
    margin: 0 10%;
    background: #C69947;
    border-radius: 25px;
    opacity: 1;
    left: 0;
    transform: rotate(0);
    transition: .25s ease-in-out;
  }
  header .headerWrapper #nav-icon3 span:nth-child(2), header .headerWrapper #nav-icon3 span:nth-child(3) {
    top: 11px;
  }
  header .headerWrapper #nav-icon3 span:nth-child(4) {
    top: 21px;
  }
  header .headerWrapper #nav-icon3.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
  header .headerWrapper #nav-icon3.open span:nth-child(2) {
    transform: rotate(45deg);
  }
  header .headerWrapper #nav-icon3.open span:nth-child(3) {
    transform: rotate(-45deg);
  }
  header .headerWrapper #nav-icon3.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
  .navbar {
    position: absolute;
    right: -100%;
    top: 100%;
    height: calc(100vh - 50px);
    overflow-y: scroll;
    background: #C69947;
    width: 100%;
    transition: all .4s ease-in-out;
    display: block;
  }
  .navbar.open {
    right: 0;
    text-align: left;
    padding: 0;
  }
  nav ul {
    padding: 20px;
  }
  nav ul li {
    font-size: 1.1rem;
    display: block;
    padding: 12px 14px;
  }
  nav ul li a:hover {
    color: #000;
  }
  nav ul li a.active {
    color: #fff;
  }
  nav ul li.havechild::after {
    right: 0;
    top: 13px;
  }
  nav ul li ul.sub-menu {
    position: static;
    background: #c69947;
    box-shadow: none;
    display: none;
    padding: 0 20px;
    transition: none;
  }
  nav ul li ul.sub-menu li {
    display: block;
    padding: 12px 14px 5px;
    text-align: left;
  }
}