.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: 8.5rem;
}
@media screen and (max-width: 767px) {
  .header_logo {
    width: 6.7rem;
  }
}
.header_logo a {
  display: inline-block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header_nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    padding: 15rem 0 3rem;
    overflow: auto;
    background-color: rgba(36, 36, 36, 0.8);
    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 {
  display: flex;
  align-items: center;
  position: relative;
  padding: 3.5rem 0;
  transition: 0.3s ease;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .header_nav ul li {
    display: block;
    padding: 0;
  }
}
.header_nav ul li:last-of-type a {
  border-right: 0;
}
@media screen and (min-width: 768px) {
  .header_nav ul li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease-in-out;
  }
}
.header_nav ul li.active-menu a {
  color: #EBA05C;
}
@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: 1.4rem;
    right: 0;
    z-index: -1;
    color: #ffffff;
    width: 4rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header_nav ul li.menu-item-has-children.active::after {
    transform: rotate(90deg);
  }
}
.header_nav ul li a {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  line-height: 1.2;
  padding: 0 4rem;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .header_nav ul li a {
    text-align: right;
    width: 100%;
    padding: 2rem 4rem;
    text-transform: uppercase;
    transition: 0.5s ease-in-out;
    border-bottom: 1px solid rgba(217, 217, 217, 0.3);
  }
}
.header_nav ul li a:hover {
  opacity: 0.85;
  color: #EBA05C;
}
@media screen and (max-width: 767px) {
  .header_nav ul li a img {
    width: 50%;
  }
}
.header_nav .sub-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 0.5rem 2.5rem 1rem;
  background-color: #454444;
  box-shadow: 0 0.2rem 1rem #454444;
}
@media screen and (max-width: 767px) {
  .header_nav .sub-menu {
    display: none;
    width: 100%;
    opacity: 1;
    visibility: visible;
    position: initial;
    padding-left: 1.5rem;
  }
}
.header_nav .sub-menu li {
  padding: 0;
}
.header_nav .sub-menu li:last-of-type a {
  border-bottom: none;
}
.header_nav .sub-menu li a {
  display: inline-block;
  width: 100%;
  font-size: 1.2rem;
  padding: 1.6rem 2rem;
  border-bottom: 1px solid #565656;
  border-right: 0;
}
@media screen and (max-width: 767px) {
  .header_nav .sub-menu li a img {
    width: 50%;
    height: 1.8rem;
  }
}
.header_toggle-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: fixed;
  top: 2.2rem;
  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: transparent;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header_scroll .menu ul li a {
  color: #fff;
}
.header_scroll .menu ul li a:hover {
  opacity: 0.85;
  color: #EBA05C;
}
.header_scroll .sub-menu li {
  box-shadow: none;
  border: none !important;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .header_scroll .sub-menu li {
    background-color: transparent;
  }
}
.header.on-nav .header_nav {
  transform: translateX(0);
  width: 85%;
}
.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 */