body.open-menu {
  overflow: hidden;
}
body.open-menu:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  background-color: rgba(255, 255, 255, 0.5);
}

header {
  position: sticky;
  top: 0;
  z-index: 9999;
}
header .header-logo {
  margin-inline-end: auto;
}
header .header-logo img {
  width: 20rem;
  height: auto;
}

.header-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 1023px) {
  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #000;
    z-index: 10;
    display: none;
    overflow: scroll;
  }
}
.header-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-nav ul.menu {
  display: flex;
  gap: 3rem;
}
@media (max-width: 1023px) {
  .header-nav ul.menu {
    flex-direction: column;
    gap: 0;
  }
}
.header-nav ul.menu > li {
  padding: 2.5rem 0;
}
@media (max-width: 1023px) {
  .header-nav ul.menu > li {
    padding: 0;
    background-color: #000;
    border-bottom: 1px solid #555;
  }
}
.header-nav ul.menu > li > a {
  font-weight: 500;
  font-size: 1.5rem;
  display: flex;
  gap: 1rem;
}
@media (max-width: 1023px) {
  .header-nav ul.menu > li > a {
    padding: 2rem 3rem;
    color: #fff;
  }
}
.header-nav ul.menu > li > a:after {
  transition: transform 0.2s linear;
}
@media (max-width: 1023px) {
  .header-nav ul.menu > li > a.menu-image-title-after {
    display: none;
  }
}
.header-nav ul.menu > li > a.menu-image-title-after span {
  display: none;
}
@media (max-width: 1023px) {
  .header-nav ul.menu > li > a.open-sub-menu:after {
    transform: rotate(180deg);
  }
}
.header-nav ul.sub-menu {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 6.8rem;
  left: -2rem;
  background-color: #ffffff;
  z-index: 10;
}
@media (max-width: 1023px) {
  .header-nav ul.sub-menu {
    opacity: 1;
    position: static;
    display: none;
  }
}
.header-nav ul.sub-menu a {
  display: flex;
  white-space: nowrap;
  padding: calc(1rem + 1px) 4rem 1rem 2rem;
  border-left: 4px solid var(--color, #fff);
  position: relative;
  transition: background-color 0.2s linear;
}
@media (max-width: 1023px) {
  .header-nav ul.sub-menu a {
    flex-direction: column-reverse;
    gap: 8px;
    border-left: 0;
    padding: calc(1.5rem + 1px) 2rem 1.5rem 3rem;
  }
  .header-nav ul.sub-menu a:after {
    content: "";
    width: 5rem;
    border-top: 5px solid var(--color, #fff);
  }
}
.header-nav ul.sub-menu a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid #f3f3f3;
}
.header-nav ul.sub-menu a:hover, .header-nav ul.sub-menu a:focus {
  background-color: #f3f3f3;
}
.header-nav li.menu-item-has-children {
  position: relative;
}
.header-nav li.menu-item-has-children:focus-within ul.sub-menu, .header-nav li.menu-item-has-children:hover ul.sub-menu {
  opacity: 1;
  pointer-events: all;
}
.header-nav li.menu-item-has-children > a:after {
  content: "";
  background-image: url(../icons/arrow-down.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  display: block;
  width: 1.2rem;
  height: 1.2rem;
}
@media (max-width: 1023px) {
  .header-nav li.menu-item-has-children > a:after {
    filter: invert(1);
  }
}

.site-header {
  background-color: #fff;
}
@media (max-width: 1023px) {
  .site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
  }
}
.site-header .hamburger svg path {
  transition: stroke-dashoffset 0.2s linear, transform 0.2s ease-in-out;
}
.site-header .hamburger svg path:first-child, .site-header .hamburger svg path:nth-child(2) {
  transform: unset;
}
.site-header .hamburger svg path:last-child {
  stroke-dashoffset: 0;
  stroke-dasharray: 26px;
}
.site-header .hamburger.open svg path:first-child {
  transform: rotate(45deg) translate(10%, 0) scaleX(0.7);
}
.site-header .hamburger.open svg path:nth-child(2) {
  transform: rotate(-45deg) translate(-50%, 25%);
}
.site-header .hamburger.open svg path:last-child {
  stroke-dashoffset: 26px;
}
.site-header .header-items {
  display: flex;
  justify-content: center;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
  align-items: center;
}
@media (max-width: 1023px) {
  .site-header .header-items {
    justify-content: center;
    padding: 1.5rem 2rem;
  }
}
.site-header .header-items a {
  text-decoration: none;
}
@media (max-width: 1023px) {
  .site-header .header-items > .button-wrapper {
    display: none;
  }
}
.site-header .header-items > .button-wrapper a.about-btn {
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 1023px) {
  .site-header .header-logo img {
    width: 18rem;
  }
}

.header-search {
  position: relative;
  margin-inline-start: auto;
}
.header-search--form {
  display: none;
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translate(-50%, 15%);
}

.form-wrapper .search-form form {
  width: 30rem;
  position: relative;
  overflow: hidden;
  box-shadow: -1px 1px 21px 4px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
.form-wrapper .search-form form input[type=text] {
  border-radius: 10px;
  height: 4.5rem;
  border: 0;
  width: 100%;
  font-family: inherit;
  padding: 0 9rem 0 2rem;
  font-size: 1.6rem;
}
.form-wrapper .search-form form input[type=submit] {
  position: absolute;
  right: 0;
  top: 0;
  height: 4.5rem;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1.6rem;
  background-color: #000;
  color: #fff;
  padding: 0 1.5rem;
  cursor: pointer;
}
.header-nav .form-wrapper {
  width: 100%;
}
.header-nav .form-wrapper form {
  width: 100%;
  box-shadow: unset;
  border-radius: unset;
}
.header-nav .form-wrapper form input[type=text] {
  background-color: #000;
  color: #fff;
}/*# sourceMappingURL=header.css.map */