.sw19b-secondary-navigation {
  width: 100%;
  color: rgb(17, 17, 17);
  font-size: 16px;
  z-index: 1000;
  position: relative;
  color: var(--text-color);
  background-color: var(--background);
  --text-color: #111111;
  --background: #fff;

  &.nav-scrolled {
    --text-color: #fff;
    --background: #111111;
    position: sticky;
    top: 0;
  }

  .box-shadow {
    box-shadow: 0 0 10px 0 #111111;
  }

  .navigation {
    display: flex;
    align-items: center;
    min-height: 60px;
    position: initial;
  }

  .navigation .logo {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
    color: var(--text-color);

    div:first-child {
      padding-right: 10px;
      width: 28px;
      fill: #FF6200;
    }
  }

  .navigation-item {
    padding: 0 10px 0 18px;
    font-size: 14px;
    font-weight: 700;
  }
  .navigation-item:first-child {
    padding-left: 0;
    padding-top: 5px;
  }

  .navigation-item.active > .link + .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: -1;
  }

  .dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    background-color: white;
    color: #111111;
    border-radius: 0.25rem;
    box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
    opacity: 0;
    transition: all 150ms ease-in-out;
    pointer-events: none;
    z-index: -1;
    width: 100%;
    padding: 20px 0;
  }

  .dropdown-menu-all-pages {
    color: #FF6200;
    margin-top: 20px;

    a {
      color: inherit;
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
    }
  }

  .dropdown-menu-grid {
    display: flex;
    width: 100%;
  }

  .dropdown-menu-grid--item {
    width: 25%;

    .grid-item-heading {
      min-height: 33px;
    }

    .grid-item-links {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;

      a {
        margin: 0 0 10px 0;
        text-decoration: none;
        color: #111111;
        font-weight: 400;
      }
      a:hover {
        text-decoration: underline;
      }
    }
  }

  .link {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    height: 60px;
    padding: 10px 15px 0 0;
    border-bottom: 5px solid transparent;
    position: relative;
    color: var(--text-color);
    text-decoration: none;

    &::after {
      width: 7px;
      height: 7px;
      content: "";
      border-top: 2px solid var(--text-color);
      border-right: 2px solid var(--text-color);
      position: absolute;
      right: 0;
      transform: rotate(45deg);
      transition: all 150ms ease-in-out;
    }

    &:hover {
      /* border-bottom: 5px solid #ccc; */
      border-bottom: 5px solid #00C8DC;
    }
    &:hover::after {
      transform: rotate(135deg);
    }
  }

  .link.current-microsite {
    border-bottom: 5px solid #00C8DC;
  }

  /* MOBILE RESOLUTION */
  .navigation-mobile {
    display: none;
    transition: all 400ms;
    font-size: 14px;
    position: static;
  }

  .navigation-mobile-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    font-weight: 700;
    height: 50px;

    a {
      color: var(--text-color);
      text-decoration: none;
    }
  }

  .navigation-mobile-button {
    border: none;
    background-color: transparent;
    color: inherit;
    font-weight: inherit;
    position: relative;
    padding-right: 15px;

    .icon {
      width: 7px;
      height: 7px;
      border-top: 2px solid var(--text-color);
      border-right: 2px solid var(--text-color);
      position: absolute;
      right: 0;
      top: 50%;
      transform: rotate(45deg) translateY(-50%);
      transition: all 150ms ease-in-out;
    }

    &.selected .icon {
      transform: rotate(135deg) translateX(-50%);
    }
  }

  .navigation-mobile-menu {
    border-bottom: 5px solid #00C8DC;
    box-shadow: 0px 5px 10px -5px #111111;
    left: -30px;
    background-color: #fff;
    margin: 0;
    width: 100vw;
    list-style: none;
    position: relative;
    display: none;
    padding: 0 30px;

    &.active {
      display: block;
    }

    @media (max-width: 768px) {
      padding: 0 15px;
      left: -15px;
    }
  }

  .sublink {
    border-top: 2px dotted #ccc;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 15px 5px 12px 0;
    color: #a1a1a1;

    &:last-child {
      color: #FF6200;
    }

    > a {
      text-transform: uppercase;
      color: inherit;
      font-weight: 700;
      text-decoration: none;
      text-decoration-line: none;
      width: 80%;
    }
  }

  .sublink-btn {
    max-width: 20%;
    background-color: transparent;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;

    svg {
      width: 20px;
      height: 20px;
      fill: #a1a1a1;
    }
  }

  .sublinks {
    display: none;
    padding: 5px 0 0;
    list-style: none;
    color: #111111;
    width: 100%;

    li {
      padding-top: 15px;
      font-weight: 700;

      &:last-child {
        color: #FF6200;
      }

      a {
        text-decoration: none;
        color: inherit;
      }
    }

    &.active {
      display: block;
    }
  }

  @media (max-width: 1200px) {
    .navigation {
      display: none;
    }

    .navigation-mobile {
      display: block;
    }
  }
}
