.header {
  position: fixed;
  z-index: 99;
  left: 0;
  display: block;
  top: 0;
  right: 0;
  box-sizing: border-box;
}
.header__wrap {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
}
@media (max-width: 990px) {
  .header__wrap {
    grid-template-columns: 140px 1fr;
    grid-template-rows: 44px 1fr;
  }
}
.header__logo {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 4px;
  max-width: 120px;
}
@media (max-width: 990px) {
  .header__logo {
    padding: 12px 10px;
  }
}
.header__logo img {
  max-width: 120px;
  max-height: 20px;
  height: 100%;
  width: 100%;
  object-fit: contain;
  box-sizing: border-box;
  display: block;
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  z-index: 5;
}
@media (max-width: 990px) {
  .header__nav {
    display: none;
    position: static;
    gap: 0;
    grid-column: 1/3;
    margin-top: 60px;
  }
}
.header__nav > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
@media (max-width: 990px) {
  .header__nav > ul {
    margin: 0 0 40px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
    align-items: start;
    justify-content: start;
    padding-left: 10px;
  }
}
.header__nav > ul > li {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 991px) {
  .header__nav > ul > li.menu-item-has-children {
    position: static;
  }
  .header__nav > ul > li.menu-item-has-children:hover > a, .header__nav > ul > li.menu-item-has-children.focus > a, .header__nav > ul > li.menu-item-has-children:focus-within > a {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 4px 4px 0 0;
    color: #0a0a0a;
  }
  .header__nav > ul > li.menu-item-has-children:hover > a::before, .header__nav > ul > li.menu-item-has-children.focus > a::before, .header__nav > ul > li.menu-item-has-children:focus-within > a::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 8px;
    z-index: 49;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .header__nav > ul > li.menu-item-has-children:hover > .sub-menu, .header__nav > ul > li.menu-item-has-children.focus > .sub-menu, .header__nav > ul > li.menu-item-has-children:focus-within > .sub-menu {
    display: grid;
    z-index: 50;
  }
}
.header__nav > ul > li > a {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #0a0a0a;
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, border-radius 0.2s;
}
@media (min-width: 991px) {
  .header__nav > ul > li > a {
    min-height: 44px;
  }
  .header__nav > ul > li > a:hover {
    color: #ed3026;
  }
}
@media (max-width: 1440px) {
  .header__nav > ul > li > a {
    font-size: 16px;
    min-height: 44px;
    padding: 0 12px;
  }
}
@media (max-width: 990px) {
  .header__nav > ul > li > a {
    height: auto;
    min-height: 0;
    justify-content: flex-start;
    padding: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    font-size: 24px;
    line-height: 120%;
  }
}
.header__nav .menu-item-has-children > a {
  position: relative;
  padding-right: 34px;
}
.header__nav .menu-item-has-children > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.75;
  transform: translateY(calc(-50% + 1px)) rotate(45deg);
  transform-origin: center;
  transition: transform 0.25s ease;
}
@media (min-width: 991px) {
  .header__nav > ul > li.menu-item-has-children > a::after {
    z-index: 52;
  }
}
@media (max-width: 990px) {
  .header__nav .menu-item-has-children > a::after {
    right: 18px;
    transition: none;
  }
}
@media (min-width: 991px) {
  .header__nav > ul > li > .sub-menu > .menu-item-has-children > a {
    padding-right: 0;
  }
  .header__nav > ul > li > .sub-menu > .menu-item-has-children > a::after {
    display: none;
  }
  .header__nav > ul > li.menu-item-has-children:hover > a::after, .header__nav > ul > li.menu-item-has-children.focus > a::after, .header__nav > ul > li.menu-item-has-children:focus-within > a::after {
    transform: translateY(calc(-50% + 1px)) rotate(-135deg);
  }
}
@media (max-width: 990px) {
  .header__nav .menu-item-has-children.is-open > a::after {
    transform: translateY(calc(-50% + 1px)) rotate(-135deg);
  }
}
.header__nav .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
}
@media (max-width: 990px) {
  .header__nav .sub-menu {
    display: none;
    margin: 0;
    padding: 0 0 0 10px;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .header__nav .menu-item-has-children.is-open > .sub-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 15px;
  }
  .header__nav .sub-menu .menu-item-has-children > .sub-menu {
    display: none;
  }
  .header__nav .sub-menu .menu-item-has-children.is-open > .sub-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .header__nav .sub-menu a {
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    color: #0a0a0a;
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    text-decoration: none;
    transition: color 0.2s;
  }
  .header__nav .sub-menu a:hover, .header__nav .sub-menu a:focus-visible {
    color: #ed3026;
  }
  .header__nav .sub-menu .sub-menu a {
    padding: 0;
    color: #0a0a0a;
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
  }
  .header__nav .menu-item-category-label > .header__submenu-label {
    margin: 0;
    padding: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4);
  }
  .header__nav .menu-item-category-label > .sub-menu {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    padding-top: 10px;
  }
}
@media (min-width: 991px) {
  .header__nav > ul > li > .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: 100%;
    min-width: 0;
    max-width: none;
    box-sizing: border-box;
    padding: 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    gap: 10px 20px;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    align-content: start;
  }
  .header__nav > ul > li:first-child > .sub-menu {
    border-top-left-radius: 0;
  }
  .header__nav > ul > li.menu-item-controllers > .sub-menu {
    grid-template-columns: minmax(160px, max-content);
    justify-content: start;
  }
  .header__nav > ul > li > .sub-menu .menu-item {
    margin: 0;
    padding: 0;
  }
  .header__nav > ul > li > .sub-menu a {
    display: block;
    padding: 6px 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    color: #0a0a0a;
    font-size: 17px;
    font-weight: 400;
    line-height: 130%;
    text-decoration: none;
    overflow-wrap: break-word;
    transition: color 0.2s;
  }
  .header__nav > ul > li > .sub-menu a:hover {
    color: #ed3026;
  }
  .header__nav > ul > li > .sub-menu > .menu-item-has-children {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .header__nav > ul > li > .sub-menu > .menu-item-has-children > a {
    padding: 0 0 4px;
    color: #6b6b6b;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    pointer-events: none;
  }
  .header__nav > ul > li.menu-item-controllers > .sub-menu > .menu-item-category-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .header__nav > ul > li.menu-item-controllers > .sub-menu > .menu-item-category-label > .header__submenu-label {
    margin: 0;
    padding: 0 0 4px;
    font-size: 12px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4);
  }
  .header__nav > ul > li > .sub-menu > .menu-item-has-children > .sub-menu {
    position: static;
    display: flex !important;
    flex-direction: column;
    gap: 0;
    width: auto;
    min-width: 0;
    max-width: none;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .header__nav > ul > li > .sub-menu > .menu-item-has-children > .sub-menu a {
    padding: 5px 0;
    color: #0a0a0a;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    text-transform: none;
    pointer-events: auto;
  }
  .header__nav > ul > li > .sub-menu > .menu-item-has-children > .sub-menu a:hover {
    color: #ed3026;
  }
}
.header__btn {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 990px) {
  .header__btn {
    gap: 3px;
    padding: 0 10px;
    z-index: 2;
    position: absolute;
    bottom: 40px;
    width: 100%;
    box-sizing: border-box;
    left: 0;
  }
}
.header__btn-text {
  position: relative;
  color: #0a0a0a;
  font-size: 20px;
  line-height: 130%;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 9px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
@media (max-width: 1440px) {
  .header__btn-text {
    font-size: 16px;
    height: 44px;
    padding: 0 10px;
  }
}
@media (max-width: 990px) {
  .header__btn-text {
    background: #1E1E1E;
    color: #fff;
    width: 100%;
    box-sizing: border-box;
  }
}
.header__btn-icon {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
@media (max-width: 990px) {
  .header__btn-icon {
    background: #1E1E1E;
  }
}
@media (max-width: 990px) {
  .header__btn-icon svg path {
    fill: #fff;
  }
}
.header__btn-arrow {
  color: #000;
}
@media (max-width: 990px) {
  .header__btn-arrow {
    color: #fff;
  }
}
.header__btn-menu {
  display: none;
}
@media (max-width: 990px) {
  .header__btn-menu {
    overflow: hidden;
    height: 44px;
    width: 48px;
    background: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    margin-left: auto;
  }
}
.header__btn-open {
  transition: 0.3s;
  position: absolute;
}
.header__btn-close {
  transition: 0.3s;
  display: block;
  position: absolute;
  transform: translateX(40px);
}
.header__btn-menu-active .header__btn-open {
  transform: translateX(-40px);
}
.header__btn-menu-active .header__btn-close {
  transform: translateX(0);
  display: block;
}

.header-active {
  background: #fff;
  height: 100vh;
  width: 100vw;
  padding-bottom: 60px;
}
.header-active .header__nav {
  display: block;
}
.header-active .container {
  height: 100%;
  box-sizing: border-box;
}

/*# sourceMappingURL=header.css.map */
