.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  background-color: var(--background-primary);
  z-index: 1000;
}

.header-with-admin-bar {
  top: 32px;
}

.header-content-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  width: 100%;
  padding: 0px 20px;
  border-bottom: 1px solid var(--foreground-primary);
  background-color: var(--background-primary);
}

.header-content {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  height: 100%;
}

.header-logo-container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: max-content;
  padding: 15px 0;
}
.header-logo-container a {
  display: block;
  height: 100%;
  width: max-content;
}
.header-logo-container img {
  height: 100%;
  display: block;
  width: max-content;
}

.header-nav {
  position: relative;
  height: 100%;
  display: block;
}

.header-nav-container {
  height: 100%;
  position: relative;
  display: block;
}

.header-nav-list {
  display: flex;
  flex-direction: row;
  gap: 30px;
  list-style: none;
  height: 100%;
}
.header-nav-list .menu-item {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: max-content;
  position: relative;
}
.header-nav-list .menu-item a {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground-primary);
  text-decoration: none;
}
.header-nav-list .menu-item:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--accent-orange-primary);
  opacity: 0;
  transition: 0.2s ease;
}
.header-nav-list .menu-item:hover:after {
  opacity: 1;
}

.header-mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: calc(100dvh - 70px);
  background: var(--background-primary);
  z-index: -1;
  transform: translateY(-100%);
  transition: 0.3s ease;
}

.header-mobile-menu-button-container {
  display: none;
  width: max-content;
  height: max-content;
}

.mobile-menu-button-bars {
  position: relative;
  display: block;
  width: 30px;
  height: 23px;
}

.mobile-menu-button-bar {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 1.5px;
  background: var(--foreground-primary);
  color: inherit;
  opacity: 1;
  transition: none 0.35s cubic-bezier(0.5, -0.35, 0.35, 1.5);
}

.mobile-menu-button-bar--top {
  bottom: calc(50% + 7px + 1.5px);
  transition-property: bottom, transform;
}

.mobile-menu-button-bar--middle {
  top: calc(50% - 1.5px);
  transition-property: opacity;
}

.mobile-menu-button-bar--bottom {
  top: calc(50% + 7px + 1.5px);
  transition-property: top, transform;
}

.mobile-menu-button-bar--top {
  transition-delay: 0.35s, 0s;
}

.mobile-menu-button-bar--middle {
  transition-delay: 0.35s;
}

.mobile-menu-button-bar--bottom {
  transition-delay: 0.35s, 0s;
}

.is-opened .mobile-menu-button-bar--top {
  bottom: calc(50% - 1.5px);
  transform: rotate(45deg);
}
.is-opened .mobile-menu-button-bar--middle {
  opacity: 0;
}
.is-opened .mobile-menu-button-bar--bottom {
  top: calc(50% - 1.5px);
  transform: rotate(-45deg);
}
.is-opened .mobile-menu-button-bar--top {
  transform: rotate(135deg);
  transition-delay: 0s, 0.35s;
}
.is-opened .mobile-menu-button-bar--middle {
  transition-duration: 0s;
  transition-delay: 0.35s;
}
.is-opened .mobile-menu-button-bar--bottom {
  transform: rotate(225deg);
  transition-delay: 0s, 0.35s;
}

.header-mobile-menu-button {
  background: none;
  width: max-content;
  height: max-content;
  border: none;
  outline: none;
  cursor: pointer;
}
.header-mobile-menu-button:hover .mobile-menu-button-bar {
  background: var(--accent-orange-primary);
}

.is-opened.header-mobile-menu {
  transform: translateY(0);
}

.header-mobile-nav {
  height: 100%;
  padding: 20px 30px;
}

.header-mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style: none;
  height: 100%;
  align-items: flex-end;
}
.header-mobile-nav-list .menu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: max-content;
  position: relative;
}
.header-mobile-nav-list .menu-item a {
  text-transform: uppercase;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--foreground-primary);
  text-decoration: none;
}
.header-mobile-nav-list .menu-item:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--accent-orange-primary);
  opacity: 0;
  transition: 0.2s ease;
}
.header-mobile-nav-list .menu-item:hover:after {
  opacity: 1;
}/*# sourceMappingURL=header.css.map */