.sw26-header {
  display: flex;
  flex-direction: column;
  background: #0b1120;
  border-bottom: 1px solid #334155;
  padding: 16px 0;
  top: 0;
  position: sticky;
  height: 65px;
  width: 100%;
  z-index: 502;
  font-size: 15px;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;

  .nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 100%;
  }

  .nav-item a:hover,
  .nav-item button:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: #ff6200;
  }

  .nav-item a:active,
  .nav-item button:active {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: #ff6200;
    color: #ff6200;
    font-weight: 400;
  }

  .nav-parent {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 8px 14px;
    transition: color 0.2s;
  }

  .nav-parent svg {
    width: 10px;
    height: 10px;
    fill: currentColor;
    transition: transform 0.2s;
  }

  .nav-parent svg path {
    fill: currentColor;
  }

  .nav-parent:hover {
    color: #e2e8f0;
    text-decoration: none;
  }

  .nav-item.active .nav-parent {
    color: #fff;
  }

  .nav-item.active .nav-parent svg {
    transform: rotate(180deg);
  }

  .sw26-header-navbar.has-active-item .nav-parent {
    color: #666;
  }

  .sw26-header-navbar.has-active-item .nav-item.active .nav-parent {
    color: #fff;
  }

  .nav-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 240px;
    background: #0b1120;
    border: 1px solid #334155;
    z-index: 100;
  }

  .nav-item.active .nav-dropdown {
    display: block;
  }

  .nav-dropdown a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    text-underline-offset: 4px;
    padding: 16px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 24px;
    letter-spacing: -0.15px;
    gap: 4px;
    transition:
      color 0.15s,
      background-color 0.15s;
  }

  .nav-dropdown a:hover {
    color: #e2e8f0;
    background: #1e293b;
    text-decoration-color: #ff6200;
    text-underline-offset: 4px;
  }

  .nav-dropdown a:active {
    color: #ff6200;
  }

  @media screen and (max-width: 1024px) {
    .hide-medium {
      display: none !important;
    }
  }

  img {
    width: 195px;
    height: 47px;
  }

  .sw26-std-wrap {
    max-width: 1232px;
  }

  .sw26-header-navbar {
    height: 100%;
    width: 100%;
    max-width: 1232px;
  }

  .sw26-header-navbar nav {
    height: 100%;
  }

  .nav-content {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: space-between;
  }

  .nav-logo a {
    display: flex;
    align-items: center;
    width: 240px;
  }

  .nav-logo img {
    width: 195px;
    height: 47px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 24px;
    justify-content: space-between;
  }

  .nav-links .links {
    height: 100%;
  }

  .extra {
    justify-items: flex-end;
  }

  .extra-links {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .sw-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.5px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
  }

  .sw-nav-link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
    color: #e2e8f0;
    text-decoration-color: #ff6200;
    text-underline-offset: 4px;
  }

  .sw-nav-link:active {
    color: #ff6200;
  }

  .sw-nav-button-black {
    display: inline-flex;
    align-items: center;
    height: 36px;
    gap: 2px;
    padding: 8px 16px;
    background: #111;
    border: 2px solid #ff6200;
    border-radius: 100px;
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-decoration: none;
    transition: all 0.1s ease-in-out;
  }

  .sw-nav-button-black:hover {
    box-shadow: 0 10px 20px 0 #ff620066;
  }

  .sw-nav-button-black:active {
    background: #ff6200;
    color: #111;
  }

  .sw26-header-top-mobile {
    display: none;
  }

  .sw26-header-mobile {
    display: none;
  }

  .swhamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
  }

  .swhamburger svg {
    width: 24px;
    height: 24px;
  }

  .swhamburger svg path,
  .swhamburger svg line,
  .swhamburger svg rect {
    stroke: #fff;
    fill: #fff;
  }

  .swhamburger .close-icon {
    display: none;
  }

  .swhamburger.active .hamburger-icon {
    display: none;
  }

  .swhamburger.active .close-icon {
    display: block;
  }

  .sw26-header-mobile .sw26-std-wrap {
    padding: 24px 20px;
  }

  .mobile-main-panel {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .mobile-sub-panel {
    display: none;
  }

  .sw26-header-mobile.show-sub .mobile-main-panel {
    display: none;
  }

  .sw26-header-mobile.show-sub .mobile-sub-panel.active {
    display: block;
  }

  .mobile-nav-item {
    border-bottom: 1px solid #ffffff1a;
  }

  .mobile-nav-item:hover {
    background: #1e293b;
  }

  .mobile-nav-items .mobile-nav-item:last-child {
    border-bottom: none;
  }

  .mobile-nav-parent,
  .mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    text-decoration: none;
    padding: 14px 16px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: color 0.15s;
  }

  .mobile-nav-parent svg,
  .mobile-nav-link svg {
    padding: 7.2px 3.6px;
    width: 24px;
    height: 24px;
    color: #fff;
    flex-shrink: 0;
  }

  .mobile-nav-parent svg:hover,
  .mobile-nav-link svg:hover {
    color: #ff6200;
  }

  .mobile-nav-parent svg:active,
  .mobile-nav-link svg:active {
    color: #ff6200;
  }

  .mobile-nav-parent:hover,
  .mobile-nav-link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 400;
    color: #e2e8f0;
    text-decoration-color: #ff6200;
    text-underline-offset: 4px;
  }

  .mobile-nav-parent:active,
  .mobile-nav-link:active {
    color: #ff6200;
  }

  .mobile-nav-parent:active svg,
  .mobile-nav-link:active svg {
    color: #ff6200;
  }

  .mobile-back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 0;
    cursor: pointer;
    border-bottom: 1px solid #ffffff1a;
    width: 100%;
  }

  .mobile-back-btn svg {
    width: 16px;
    height: 16px;
    color: #fff;
  }

  .mobile-sub-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ffffff1a;
    padding: 14px 16px;
  }

  .mobile-sub-item:hover {
    background: #1e293b;
  }

  .mobile-sub-item a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    flex: 1;
  }

  .mobile-sub-item a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
    color: #e2e8f0;
    text-decoration-color: #ff6200;
    text-underline-offset: 4px;
  }

  .mobile-sub-item a:active {
    text-decoration: underline;
    text-underline-offset: 4px;
    color: #ff6200;
    text-decoration-color: #ff6200;
    text-underline-offset: 4px;
  }

  .mobile-sub-item:has(a:active) svg {
    color: #ff6200;
  }

  .mobile-sub-item svg {
    width: 16px;
    height: 16px;
    color: #fff;
    flex-shrink: 0;
  }

  .mobile-nav-cta {
    padding: 0px 16px;
  }

  .mobile-nav-cta .sw-nav-button-black {
    display: inline-flex;
  }

  .mobile-nav-cta .sw-nav-button-black svg {
    padding: 7.2px 3.6px;
    width: 24px;
    height: 24px;
  }

  .mobile-extra {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .mobile-logo img {
    width: 140px;
  }

  &-spacer {
    height: 65px;
  }

  body:has(&).sw26-mobile-nav-open {
    overflow: hidden;
  }

  @media all and (max-width: 1024px) {
    position: sticky;
    top: 0;
    height: auto;
    padding: 16px 24px;

    &-spacer {
      height: 0px;
    }

    .sw26-header-navbar {
      display: none;
    }

    .sw26-header-top-mobile {
      display: block;
      width: 100%;
      position: relative;
      z-index: 502;
    }

    .mobile-extra {
      display: none;
    }

    .sw26-header-top-mobile .sw26-std-wrap {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .sw26-header-top-mobile.selected {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      padding: 16px 24px;
      background: #030213;
      z-index: 503;
      border-bottom: 1px solid #ffffff4d;
    }

    .sw26-header-mobile.selected {
      display: block;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: #030213;
      overflow-y: auto;
      z-index: 501;
    }
  }

  @media all and (max-width: 767px) {
    .mobile-nav-cta .sw-nav-button-black {
      display: flex;
      width: 100%;
      justify-content: center;
    }
  }
}
