.az-site .az-header {
  position: relative;
  z-index: 120;
  --az-header-bg: var(--az-surface-2);
  --az-header-fg: var(--az-text);
  --az-header-hover: var(--az-primary);
  --az-header-hover-bg: rgba(22,163,74,.1);
  background: transparent;
  color: var(--az-header-fg);
  border-bottom: 1px solid transparent;
  box-shadow: none;
}

.az-site .az-header::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-start: 0;
  block-size: 3px;
  background: linear-gradient(90deg, var(--az-primary), var(--az-primary-hover), var(--az-primary));
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.az-site .az-header--sticky {
  position: relative;
  top: auto;
  z-index: 120;
}

.az-site .az-header__top {
  border-bottom: 1px solid color-mix(in srgb, var(--az-border) 75%, transparent);
  background: transparent;
}

.az-site .az-header__container {
  width: min(100% - (var(--az-space-4) * 2), var(--az-container-max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  min-height: 68px;
  gap: var(--az-space-4);
  padding-block: 0;
}

body:not(.az-header--stuck) .az-site .az-header {
  background: transparent;
  border-bottom-color: transparent;
}

body:not(.az-header--stuck) .az-site .az-header::before {
  opacity: 0;
}

.az-site .az-header__shell {
  width: 100%;
  max-width: var(--az-container-max);
  margin-inline: auto;
  padding-inline: 16px;
  padding-block: 11px;
  box-sizing: border-box;
  transition:
    margin 240ms cubic-bezier(.4,0,.2,1),
    border-radius 240ms cubic-bezier(.4,0,.2,1),
    box-shadow 240ms cubic-bezier(.4,0,.2,1),
    background 240ms cubic-bezier(.4,0,.2,1);
  will-change: margin, border-radius, box-shadow;
}

body:not(.az-header--stuck) .az-site .az-header__shell {
  margin-top: 12px;
  border-radius: var(--az-radius-module);
  box-shadow: var(--az-shadow-sm);
  background: linear-gradient(180deg, var(--az-surface) 0%, var(--az-surface-2) 100%);
}

body.az-header--stuck .az-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
}

body.az-header--stuck .az-site .az-header {
  background: var(--az-surface);
  border-bottom: 1px solid color-mix(in srgb, var(--az-border) 85%, transparent);
}

body.az-header--stuck .az-site .az-header::before {
  opacity: 1;
}

body.az-header--stuck .az-site .az-header__shell {
  margin-top: 0;
  border-radius: 0;
  box-shadow: var(--az-shadow-sm);
  background: var(--az-surface);
}

.az-site .az-header__container--boxed {
  width: auto;
}

.az-site .az-header__brand {
  flex: 0 0 auto;
}

.az-site .az-header .az-header__brand,
.az-site .az-header .az-header__logo {
  max-width: none !important;
}

.az-site .az-header__brand .custom-logo-link,
.az-site .az-header__logo-link {
  display: inline-flex;
  align-items: center;
  color: var(--az-header-fg);
  font-size: var(--az-font-size-lg);
  font-weight: 700;
  text-decoration: none;
}

.az-site a.custom-logo-link {
  display: inline-flex;
  align-items: center;
  max-width: none !important;
}

.az-site .az-header__brand .custom-logo-link:hover,
.az-site .az-header__logo-link:hover {
  color: var(--az-header-hover);
}

.az-site .az-header__brand .custom-logo,
.az-site .az-header__brand img {
  width: auto;
  height: auto;
  max-height: 44px;
}

.az-site .az-header .az-header__brand img,
.az-site .az-header .az-header__logo img,
.az-site .az-header a[class*="brand"] img,
.az-site .az-header a[class*="logo"] img {
  max-height: 150px !important;
  width: auto !important;
  height: auto !important;
  display: block;
  margin-top: -30px;
  margin-bottom: -40px;
}

.az-site a.custom-logo-link img.custom-logo {
  height: 48px !important;
  width: auto !important;
  max-width: none !important;
  max-height: none !important;
  display: block;
}

.az-site .az-header .az-brand__img {
  height: 48px;
  width: auto;
  display: block;
}

.az-site .az-header__nav {
  display: none;
  flex: 1 1 auto;
  margin-inline-start: 0;
  margin-inline-end: auto;
  text-align: right;
  color: var(--az-header-fg);
}

.az-site .az-header__cta {
  display: none;
}

.az-site .az-header__toggle {
  margin-inline-start: auto;
}

.az-site .az-header .az-header__menu,
.az-site .az-header .az-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.az-site .az-header .az-nav-item {
  position: relative;
  margin: 0;
}

.az-site .az-header .az-nav-item > a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.45rem 0.7rem;
  border-radius: var(--az-radius-card);
  color: var(--az-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease;
}

.az-site .az-header .az-nav-item > a:hover {
  color: var(--az-primary);
  background: var(--az-header-hover-bg);
}

.az-site .az-header__menu--secondary {
  display: flex;
  flex-wrap: wrap;
  gap: var(--az-space-1);
}

.az-site .az-header__menu--secondary .az-nav-item > a {
  min-height: 2rem;
  color: var(--az-muted);
  font-size: var(--az-font-size-sm);
}

.az-site .az-header__menu--desktop {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--az-space-1);
  text-align: right;
  direction: rtl;
  flex-direction: row;
  color: var(--az-header-fg);
}

.az-site .az-header__menu--desktop > ul > li > a,
.az-site .az-header__menu--desktop > li > a {
  padding-inline: 16px;
  line-height: 1.4;
  transition: color 160ms ease;
}

.az-site .az-header__menu--desktop .az-nav-item.az-has-children::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-start: 100%;
  block-size: 10px;
}

.az-site .az-header__menu--desktop .az-nav-item.az-has-children > a::after {
  content: "";
  inline-size: 0.45rem;
  block-size: 0.45rem;
  border-inline-end: 1.5px solid currentColor;
  border-block-end: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-inline-start: 0.45rem;
}

.az-site .az-header__menu--desktop .az-subtoggle {
  display: inline-flex;
}

.az-site .az-header__menu--desktop .az-submenu {
  position: absolute;
  right: 0;
  left: auto;
  top: calc(100% - 2px);
  min-inline-size: 13rem;
  border: 1px solid var(--az-border);
  border-radius: var(--az-radius-module);
  background: var(--az-surface);
  color: var(--az-text);
  box-shadow: var(--az-shadow-sm);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 90;
}

.az-site .az-header__menu--desktop .az-submenu {
  overflow: visible;
}

.az-site .az-header__menu--desktop .az-submenu.az-level-2 {
  border-radius: var(--az-radius-card);
  padding: 5px 0;
  overflow: visible;
}

.az-site .az-header__menu--desktop .az-submenu.az-level-3 {
  border-radius: var(--az-radius-card);
  overflow: visible;
}

.az-site .az-header__menu--desktop .az-submenu .az-nav-item > a {
  display: flex;
  width: 100%;
  justify-content: space-between;
  position: relative;
  padding: 10px 14px;
  line-height: 1.5;
  color: var(--az-text);
  border-radius: var(--az-radius-card);
}

.az-site .az-header__menu--desktop .az-submenu .az-nav-item > a::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block: 7px;
  inline-size: 2px;
  border-radius: 999px;
  background: var(--az-primary);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.az-site .az-header__menu--desktop .az-submenu .az-nav-item > a:hover,
.az-site .az-header__menu--desktop .az-submenu .az-nav-item > a:focus-visible {
  color: var(--az-text);
  background: color-mix(in srgb, var(--az-brand-blue) 7%, var(--az-surface));
}

.az-site .az-header__menu--desktop .az-submenu li:first-child a {
  margin-top: 4px;
}

.az-site .az-header__menu--desktop .az-submenu li:last-child a {
  margin-bottom: 4px;
}

.az-site .az-header__menu--desktop .az-submenu .az-nav-item > a:hover::before,
.az-site .az-header__menu--desktop .az-submenu .az-nav-item > a:focus-visible::before {
  opacity: 1;
}

.az-site .az-header__menu--desktop .az-submenu.az-level-3 {
  right: 100%;
  left: auto;
  top: 0;
  transform: none;
}

.az-site .az-header__menu--desktop .az-nav-item.az-has-children.is-open > .az-submenu,
.az-site .az-header__menu--desktop .az-nav-item.az-has-children:focus-within > .az-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.az-site .az-header__menu--desktop .az-nav-item.az-has-children.is-open > .az-submenu.az-level-3,
.az-site .az-header__menu--desktop .az-nav-item.az-has-children:focus-within > .az-submenu.az-level-3 {
  transform: none;
}

.az-site .az-header__panel {
  position: fixed;
  inset: 0;
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.az-site .az-header.is-panel-open .az-header__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.az-site .az-header__panel-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 6, 23, 0.4);
  cursor: pointer;
}

.az-site .az-header__panel-inner {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  inline-size: min(88vw, 23rem);
  background: var(--az-brand-blue-dark);
  color: color-mix(in srgb, var(--az-surface) 96%, transparent);
  box-shadow: var(--az-shadow-md);
  transform: translateX(105%);
  transition: transform 0.22s ease;
  padding: var(--az-space-5);
  overflow: auto;
}

.az-site .az-header.is-panel-open .az-header__panel-inner {
  transform: translateX(0);
}

.az-site .az-header__panel-close {
  margin-block-end: var(--az-space-4);
  color: color-mix(in srgb, var(--az-surface) 96%, transparent);
  border: 1px solid color-mix(in srgb, var(--az-surface) 8%, transparent);
  background: transparent;
  border-radius: var(--az-radius-card);
}

.az-site .az-header__toggle,
.az-site .az-header__panel-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.az-site .az-header__menu--mobile .az-nav-item > a {
  display: flex;
  width: 100%;
  min-height: 2.65rem;
  align-items: center;
  justify-content: space-between;
  text-align: right;
  padding-inline-end: 2.6rem;
  color: color-mix(in srgb, var(--az-surface) 92%, transparent);
}

.az-site .az-header__menu--mobile > .az-nav-item + .az-nav-item {
  border-block-start: 1px solid color-mix(in srgb, var(--az-surface) 8%, transparent);
}

.az-site .az-header__menu--mobile .az-submenu {
  position: static;
  inset: auto;
  min-inline-size: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  padding-inline-start: var(--az-space-4);
  margin-block-start: var(--az-space-1);
  display: none;
}

.az-site .az-header__menu--mobile .az-nav-item.is-open > .az-submenu,
.az-site .az-header__menu--mobile .az-nav-item.is-expanded > .az-submenu {
  display: block;
}

.az-site .az-header .az-subtoggle {
  position: absolute;
  inset-inline-end: 0.35rem;
  inset-block-start: 0.35rem;
  inline-size: 32px;
  block-size: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid color-mix(in srgb, currentColor 28%, transparent);
  border-radius: var(--az-radius-card);
  background: color-mix(in srgb, currentColor 10%, transparent);
  color: inherit;
  cursor: pointer;
}

.az-site .az-header__menu--mobile .az-subtoggle {
  border: 1px solid transparent;
  border-radius: var(--az-radius-card);
  background: transparent;
  color: color-mix(in srgb, var(--az-surface) 92%, transparent);
}

.az-site .az-header__menu--mobile .az-subtoggle:focus-visible {
  outline: none;
  border-color: color-mix(in srgb, var(--az-primary) 55%, transparent);
}

.az-site .az-header .az-subtoggle::before {
  content: "+";
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.az-site .az-header .az-nav-item.is-expanded > .az-subtoggle::before {
  content: "-";
}

.az-site .az-header a:focus-visible,
.az-site .az-header button:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--az-primary) 55%, transparent);
  outline-offset: 2px;
}

.az-site .az-header__menu--desktop > .az-nav-item.current-menu-item > a,
.az-site .az-header__menu--desktop > .az-nav-item.current-menu-parent > a,
.az-site .az-header__menu--desktop > .az-nav-item.current-menu-ancestor > a,
.az-site .az-header__menu--desktop > .az-nav-item.current_page_item > a,
.az-site .az-header__menu--desktop > .az-nav-item.current_page_parent > a,
.az-site .az-header__menu--desktop > .az-nav-item.current_page_ancestor > a,
.az-site .az-header__menu--desktop > .az-nav-item > a[aria-current="page"] {
  color: var(--az-primary);
  font-weight: 600;
  position: relative;
}

.az-site .az-header__menu--desktop > .az-nav-item.current-menu-item > a::after,
.az-site .az-header__menu--desktop > .az-nav-item.current-menu-parent > a::after,
.az-site .az-header__menu--desktop > .az-nav-item.current-menu-ancestor > a::after,
.az-site .az-header__menu--desktop > .az-nav-item.current_page_item > a::after,
.az-site .az-header__menu--desktop > .az-nav-item.current_page_parent > a::after,
.az-site .az-header__menu--desktop > .az-nav-item.current_page_ancestor > a::after,
.az-site .az-header__menu--desktop > .az-nav-item > a[aria-current="page"]::after {
  content: "";
  position: absolute;
  inline-size: 6px;
  block-size: 6px;
  border-radius: 999px;
  background: var(--az-primary);
  inset-inline-start: 50%;
  inset-block-end: 0.2rem;
  transform: translateX(-50%);
  pointer-events: none;
}

@media (min-width: 1025px) {
  .az-site .az-header__container {
    padding-block: 0;
  }

  .az-site .az-header__menu--desktop .az-nav-item.az-has-children {
    display: flex;
    align-items: center;
  }

  .az-site .az-header__menu--desktop .az-nav-item.az-has-children > a::after {
    content: none;
  }

  .az-site .az-header__menu--desktop .az-submenu .az-nav-item.az-has-children > a {
    width: auto;
    flex: 1 1 auto;
    justify-content: flex-start;
  }

  .az-site .az-header__menu--desktop .az-subtoggle {
    position: static;
    inset: auto;
    inline-size: auto;
    block-size: auto;
    min-inline-size: 1rem;
    padding: 4px;
    margin-inline-start: 0.2rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    align-self: center;
  }

  .az-site .az-header__menu--desktop .az-subtoggle::before {
    content: "▾";
    display: inline-block;
    line-height: 1;
    font-size: 0.95rem;
    transform: rotate(0deg);
    transform-origin: center;
    transition: transform 0.15s ease;
  }

  .az-site .az-header__menu--desktop li.is-open > .az-subtoggle::before,
  .az-site .az-header__menu--desktop li:focus-within > .az-subtoggle::before,
  .az-site .az-header__menu--desktop .az-nav-item.is-expanded > .az-subtoggle::before {
    content: "▾";
    transform: rotate(90deg);
  }

  .az-site .az-header__menu--desktop .az-subtoggle:focus-visible {
    outline: 2px solid color-mix(in srgb, var(--az-primary) 55%, transparent);
    outline-offset: 2px;
    border-radius: var(--az-radius-card);
  }
}

.az-site .az-header__mobile-secondary {
  margin-block-start: var(--az-space-4);
  border-block-start: 1px solid color-mix(in srgb, var(--az-surface) 8%, transparent);
  padding-block-start: var(--az-space-3);
}

.az-site .az-header__cta a,
.az-site .az-header__cta .button,
.az-site .az-header__cta .wp-element-button,
.az-site .az-header__cta button {
  background: var(--az-secondary);
  color: color-mix(in srgb, var(--az-surface) 96%, transparent);
  border: 1px solid transparent;
}

.az-site .az-header__cta a:hover,
.az-site .az-header__cta .button:hover,
.az-site .az-header__cta .wp-element-button:hover,
.az-site .az-header__cta button:hover,
.az-site .az-header__cta a:focus-visible,
.az-site .az-header__cta .button:focus-visible,
.az-site .az-header__cta .wp-element-button:focus-visible,
.az-site .az-header__cta button:focus-visible {
  background: var(--az-secondary-hover);
  color: color-mix(in srgb, var(--az-surface) 96%, transparent);
}

.az-header__placeholder {
  display: block;
  width: 100%;
  height: var(--az-header-h, 0px);
  padding: 0;
}

.az-site .az-header__placeholder .az-card {
  margin: 0;
  text-align: center;
}

@media (max-width: 1024px) {
  .az-site .az-header__brand .custom-logo,
  .az-site .az-header__brand img {
    max-height: 36px;
  }

  .az-site .az-header .az-header__brand img,
  .az-site .az-header .az-header__logo img,
  .az-site .az-header a[class*="brand"] img,
  .az-site .az-header a[class*="logo"] img {
    max-height: 120px !important;
  }

  .az-site a.custom-logo-link img.custom-logo {
    height: 38px !important;
  }

  .az-site .az-header .az-brand__img {
    height: 38px;
  }
}

@media (min-width: 992px) {

  .az-site .az-header__nav {
    display: block;
  }

  .az-site .az-header__cta {
    display: inline-flex;
  }

  .az-site .az-header__toggle {
    display: none;
  }

  .az-site .az-header__panel {
    display: none;
  }
}

:root {
  --az-logo-h: 56px;
  --az-logo-h-m: 42px;
}

.az-site .az-header .az-header__brand {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
}

.az-site .az-header .az-brand__img {
  height: var(--az-logo-h);
  width: auto;
  display: block;
  transform: translateY(2px);
}

@media (max-width: 1024px) {
  .az-site .az-header .az-brand__img {
    height: var(--az-logo-h-m);
  }
}
