.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: auto;
  right: 0;
  z-index: 1000;
  background-color: transparent;
}

.header_logo {
  position: relative;
  z-index: 9999;
  display: flex;
  width: 20rem;
}

@media screen and (max-width: 767px) {
  .header_logo {
    width: 16rem;
  }
}

.header_logo a {
  display: inline-block;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .header_nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 15rem 0 3rem;
    overflow: auto;
    background: #B47320;
    background: linear-gradient(45deg, #B47320 0%, #ba8c72 100%);
    transform: translateX(-100%);
    transition: all ease-in-out 0.3s;
  }
}

.header_nav ul {
  display: flex;
  list-style: none;
}

@media screen and (max-width: 767px) {
  .header_nav ul {
    flex-direction: column;
  }
}

.header_nav ul li {
  position: relative;
}

.header_nav ul li:last-of-type a {
  border-right: 0;
}

.header_nav ul li:hover .sub-menu {
  display: block;
}

@media screen and (max-width: 767px) {
  .header_nav ul li.menu-item-has-children {
    position: relative;
  }
  .header_nav ul li.menu-item-has-children::after {
    content: "\f105";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-size: 1.6rem;
    position: absolute;
    top: 1rem;
    right: 2rem;
    z-index: 99;
    color: #ffffff;
  }
  .header_nav ul li.menu-item-has-children.active::after {
    transform: rotate(90deg);
  }
}

.header_nav ul li a {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.2;
  padding: 0 2rem;
  border-right: .2rem solid #fff;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .header_nav ul li a {
    width: 100%;
    font-size: 1.5rem;
    padding: 1rem 2rem;
    border-right: 0;
    color: #fff;
    text-transform: uppercase;
    transition: 0.5s ease-in-out;
    border-bottom: 1px solid #A77E5A;
  }
}

.header_nav ul li a:hover {
  opacity: .7;
}

.header_nav .sub-menu {
  display: none;
  width: max-content;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: transparent;
  border-radius: .5rem;
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 767px) {
  .header_nav .sub-menu {
    display: none;
    width: 100%;
    position: initial;
    padding-left: 1.5rem;
  }
}

.header_nav .sub-menu li a {
  display: inline-block;
  font-size: 1.4rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-right: 0;
}

.header_toggle-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: fixed;
  top: 1.8rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background-color: transparent;
  border: 0;
  transition: 0.3s ease-in-out;
  z-index: 9999;
}

.header_toggle-nav span {
  width: 2.2rem;
  height: 0.3rem;
  position: absolute;
  left: 0;
  background-color: #ffffff;
  border-radius: 0.3rem;
  transition: 0.3s ease-in-out;
}

.header_toggle-nav span:nth-child(1) {
  top: 0.5rem;
}

.header_toggle-nav span:nth-child(2) {
  top: 1.5rem;
}

.header_toggle-nav span:nth-child(3) {
  top: 2.5rem;
}

.header_scroll {
  background-color: rgba(130, 76, 52, 0.8);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header_scroll .menu ul li a {
  color: #fff;
}

.header_scroll .sub-menu li {
  box-shadow: none;
  border: none !important;
  background-color: rgba(130, 76, 52, 0.8);
}

@media screen and (max-width: 767px) {
  .header_scroll .sub-menu li {
    background-color: transparent;
  }
}

.header.on-nav .header_nav {
  transform: translateX(0);
}

.header.on-nav .header_toggle-nav span:nth-child(1) {
  top: 1rem;
  transform: rotate(45deg);
  background-color: #ffffff;
}

.header.on-nav .header_toggle-nav span:nth-child(2) {
  opacity: 0;
  transform: translateX(-200%);
}

.header.on-nav .header_toggle-nav span:nth-child(3) {
  top: 1rem;
  transform: rotate(-45deg);
  background-color: #ffffff;
}
/*# sourceMappingURL=header.css.map */