.topbar .nav {
  height: 100%;
}

.product-menu {
  position: static;
  display: flex;
  align-items: center;
  align-self: stretch;
  height: 100%;
}

.product-menu-trigger {
  display: flex;
  align-items: center;
  height: 100%;
  cursor: default;
}

.nav .product-menu-trigger.active::after,
.topbar.is-light .nav .product-menu-trigger.active::after {
  bottom: 0;
}

.topbar:not(.is-light) .nav .product-menu:hover > .product-menu-trigger,
.topbar:not(.is-light) .nav .product-menu:focus-within > .product-menu-trigger,
.topbar:not(.is-light) .nav .product-menu.is-open > .product-menu-trigger {
  color: #0477F1;
  transform: translateY(-1px);
}

.topbar.is-light .nav a:hover {
  color: #111;
}

.topbar.is-light .nav a.active:hover {
  color: #3C5CB3;
}

.product-menu-panel {
  position: fixed;
  top: var(--product-menu-top, 100px);
  left: 0;
  right: 0;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: #fff;
  border-top: 1px solid rgba(20, 42, 78, .08);
  border-bottom: 1px solid #e5e9f0;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.product-menu:hover .product-menu-panel,
.product-menu:focus-within .product-menu-panel,
.product-menu.is-open .product-menu-panel {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.topbar:not(.is-compact-nav) .product-menu.is-scroll-dismissed .product-menu-panel,
.topbar:not(.is-compact-nav) .product-menu.is-scroll-dismissed:hover .product-menu-panel,
.topbar:not(.is-compact-nav) .product-menu.is-scroll-dismissed:focus-within .product-menu-panel {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
}

.solution-menu {
  position: static;
  display: flex;
  align-items: center;
  align-self: stretch;
  height: 100%;
}

.solution-menu-trigger {
  display: flex;
  align-items: center;
  height: 100%;
  cursor: default;
}

.nav .solution-menu-trigger.active::after,
.topbar.is-light .nav .solution-menu-trigger.active::after {
  bottom: 0;
}

.topbar:not(.is-light) .nav .solution-menu:hover > .solution-menu-trigger,
.topbar:not(.is-light) .nav .solution-menu:focus-within > .solution-menu-trigger,
.topbar:not(.is-light) .nav .solution-menu.is-open > .solution-menu-trigger {
  color: #0477F1;
  transform: translateY(-1px);
}

.solution-menu-panel {
  position: fixed;
  top: var(--product-menu-top, 100px);
  left: 0;
  right: 0;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  overflow-x: hidden;
  background: #fff;
  border-top: 1px solid rgba(20, 42, 78, .08);
  border-bottom: 1px solid #e5e9f0;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.solution-menu:hover .solution-menu-panel,
.solution-menu:focus-within .solution-menu-panel,
.solution-menu.is-open .solution-menu-panel {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.topbar:not(.is-compact-nav) .solution-menu.is-scroll-dismissed .solution-menu-panel,
.topbar:not(.is-compact-nav) .solution-menu.is-scroll-dismissed:hover .solution-menu-panel,
.topbar:not(.is-compact-nav) .solution-menu.is-scroll-dismissed:focus-within .solution-menu-panel {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
}

.solution-menu-inner {
  width: min(1810px, calc(100vw - 120px));
  margin: 0 auto;
  padding: 30px 0 40px;
  display: grid;
  grid-template-columns: repeat(6, minmax(190px, 1fr));
  gap: 20px;
}

.topbar .nav .solution-menu-item,
.topbar.is-light .nav .solution-menu-item {
  min-height: 100px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f8fa;
  color: #111;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 400;
  white-space: nowrap;
  transition: color .18s ease;
}

.topbar .nav .solution-menu-item:hover,
.topbar .nav .solution-menu-item:focus-visible,
.topbar.is-light .nav .solution-menu-item:hover,
.topbar.is-light .nav .solution-menu-item:focus-visible {
  color: #3C5CB3;
  transform: none;
}

.product-menu-inner {
  width: min(1810px, calc(100vw - 120px));
  margin: 0 auto;
  padding: 44px 0 40px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-menu-column {
  min-height: 252px;
  padding: 0 50px;
  border-left: 1px solid #d9dee8;
}

.product-menu-column:first-child {
  border-left: 0;
  padding-left: 0;
}

.product-menu-column:last-child {
  padding-right: 0;
}

.product-menu-title {
  display: inline-block;
  margin: 0 0 30px;
  padding-bottom: 15px;
  color: rgb(60, 92, 179);
  border-bottom: 3px solid rgb(60, 92, 179);
  font-size: 26px;
  line-height: 1.25;
  font-weight: 700;
  white-space: nowrap;
}

.product-menu-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.topbar .nav .product-menu-panel a,
.topbar .nav .product-menu-panel span,
.topbar.is-light .nav .product-menu-panel a,
.topbar.is-light .nav .product-menu-panel span {
  display: block;
  color: #111;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 400;
  white-space: nowrap;
  transition: color .18s ease;
}

.topbar .nav .solution-menu-item.is-current,
.topbar.is-light .nav .solution-menu-item.is-current,
.topbar .nav .product-menu-panel a.is-current,
.topbar.is-light .nav .product-menu-panel a.is-current,
.topbar .nav .solution-menu-item.active,
.topbar.is-light .nav .solution-menu-item.active,
.topbar .nav .product-menu-panel a.active,
.topbar.is-light .nav .product-menu-panel a.active {
  color: #111;
}

.topbar .nav .product-menu-panel a.active::after,
.topbar .nav .product-menu-panel a.is-current::after,
.topbar .nav .solution-menu-panel a.active::after,
.topbar .nav .solution-menu-panel a.is-current::after,
.topbar.is-light .nav .product-menu-panel a.active::after,
.topbar.is-light .nav .product-menu-panel a.is-current::after,
.topbar.is-light .nav .solution-menu-panel a.active::after,
.topbar.is-light .nav .solution-menu-panel a.is-current::after {
  display: none !important;
}

.topbar .nav .product-menu-panel a:hover,
.topbar .nav .product-menu-panel a:focus-visible,
.topbar .nav .product-menu-panel span:hover,
.topbar .nav .solution-menu-item.is-current:hover,
.topbar .nav .solution-menu-item.is-current:focus-visible,
.topbar .nav .solution-menu-item.active:hover,
.topbar .nav .solution-menu-item.active:focus-visible,
.topbar.is-light .nav .product-menu-panel a:hover,
.topbar.is-light .nav .product-menu-panel a:focus-visible,
.topbar.is-light .nav .product-menu-panel span:hover,
.topbar.is-light .nav .solution-menu-item.is-current:hover,
.topbar.is-light .nav .solution-menu-item.is-current:focus-visible,
.topbar.is-light .nav .solution-menu-item.active:hover,
.topbar.is-light .nav .solution-menu-item.active:focus-visible {
  color: #3C5CB3;
  transform: none;
}

@media (max-width: 1840px) {
  .product-menu-inner {
    width: calc(100vw - 96px);
  }

  .solution-menu-inner {
    width: calc(100vw - 96px);
  }

  .product-menu-column {
    padding: 0 42px;
  }
}

@media (max-width: 1500px) {
  .product-menu-inner {
    width: calc(100vw - 64px);
    padding: 36px 0 34px;
  }

  .solution-menu-inner {
    width: calc(100vw - 64px);
    padding: 24px 0 32px;
  }

  .topbar .nav .solution-menu-item,
  .topbar.is-light .nav .solution-menu-item {
    min-height: 86px;
    font-size: 19px;
  }

  .product-menu-column {
    min-height: 226px;
    padding: 0 32px;
  }

  .product-menu-title {
    margin-bottom: 24px;
    font-size: 23px;
  }

  .topbar .nav .product-menu-panel a,
  .topbar .nav .product-menu-panel span,
  .topbar.is-light .nav .product-menu-panel a,
  .topbar.is-light .nav .product-menu-panel span {
    font-size: 19px;
  }

  .product-menu-items {
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .product-menu-panel {
    overflow-x: auto;
  }

  .solution-menu-panel {
    overflow-x: auto;
  }

  .product-menu-inner {
    width: max(840px, calc(100vw - 32px));
    padding: 28px 0 30px;
  }

  .solution-menu-inner {
    width: max(1320px, calc(100vw - 32px));
    padding: 24px 0 30px;
  }

  .product-menu-column {
    min-height: 210px;
    padding: 0 26px;
  }

  .product-menu-title {
    font-size: 20px;
  }

  .topbar .nav .product-menu-panel a,
  .topbar .nav .product-menu-panel span,
  .topbar.is-light .nav .product-menu-panel a,
  .topbar.is-light .nav .product-menu-panel span {
    font-size: 17px;
  }
}

html[data-locale="en"] .product-menu-column {
  min-width: 0;
  padding: 0 28px;
}

html[data-locale="en"] .product-menu-title {
  max-width: 100%;
  margin-bottom: 22px;
  font-size: 22px;
  line-height: 1.3;
  white-space: normal;
}

html[data-locale="en"] .product-menu-items {
  gap: 16px;
}

html[data-locale="en"] .topbar .nav .solution-menu-item,
html[data-locale="en"] .topbar.is-light .nav .solution-menu-item {
  max-width: 100%;
  min-width: 0;
  font-size: 17px;
  line-height: 1.4;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

html[data-locale="en"] .topbar .nav .product-menu-panel a,
html[data-locale="en"] .topbar .nav .product-menu-panel span,
html[data-locale="en"] .topbar.is-light .nav .product-menu-panel a,
html[data-locale="en"] .topbar.is-light .nav .product-menu-panel span {
  max-width: 100%;
  font-size: 17px;
  line-height: 1.4;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}
/* responsive-navigation:start */
.site-mobile-nav {
  display: contents;
}

.mobile-nav-toggle {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #333;
  appearance: none;
  cursor: pointer;
}

.mobile-nav-toggle-icon {
  position: relative;
  width: 20px;
  height: 20px;
  display: block;
}

.mobile-nav-toggle-icon::before,
.mobile-nav-toggle-icon::after,
.mobile-nav-toggle-icon {
  background-repeat: no-repeat;
}

.mobile-nav-toggle-icon::before,
.mobile-nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .2s ease, top .2s ease;
}

.mobile-nav-toggle-icon::before {
  top: 5px;
  box-shadow: 0 4px 0 currentColor;
}

.mobile-nav-toggle-icon::after {
  top: 13px;
}

.topbar.is-mobile-nav-open .mobile-nav-toggle-icon::before {
  top: 9px;
  box-shadow: none;
  transform: rotate(45deg);
}

.topbar.is-mobile-nav-open .mobile-nav-toggle-icon::after {
  top: 9px;
  transform: rotate(-45deg);
}

.mobile-nav-toggle:focus-visible {
  outline: 2px solid #3c5cb3;
  outline-offset: 2px;
}

.topbar .header-links {
  display: flex !important;
  flex: 0 0 auto;
}

.topbar.is-nav-measuring,
.topbar.is-nav-measuring * {
  transition: none !important;
}

html.is-mobile-nav-locked {
  overflow: hidden;
}

.topbar.is-compact-nav {
  height: 80px !important;
  overflow: visible;
}

.topbar.is-compact-nav .topbar-inner {
  width: 100%;
  max-width: 1920px;
  height: 80px;
  margin: 0 auto;
  padding: 0 20px !important;
  gap: 0 !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar.is-compact-nav .logo-wrap,
.topbar.is-compact-nav .logo {
  width: 200px !important;
  height: 20px !important;
  flex: 0 0 200px;
}

.topbar.is-compact-nav:not(.is-light) .logo-white {
  opacity: 1 !important;
}

.topbar.is-compact-nav:not(.is-light) .logo-blue {
  opacity: 0 !important;
}

.topbar.is-compact-nav.is-light .logo-white {
  opacity: 0 !important;
}

.topbar.is-compact-nav.is-light .logo-blue {
  opacity: 1 !important;
}

.topbar.is-compact-nav .mobile-nav-toggle {
  display: inline-flex;
}

.topbar.is-compact-nav:not(.is-light) .mobile-nav-toggle {
  color: #fff;
}

.topbar.is-compact-nav.is-light .mobile-nav-toggle {
  color: #333;
}

.topbar.is-compact-nav .site-mobile-nav {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 1001;
  width: 100%;
  max-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #fff;
  box-shadow: 0 10px 15px rgba(0, 0, 0, .15);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.topbar.is-compact-nav.is-mobile-nav-open .site-mobile-nav {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.topbar.is-compact-nav .nav {
  order: 1;
  width: 100%;
  height: auto;
  min-height: 0;
  flex: 0 0 auto;
  display: flex !important;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0 !important;
  margin: 0 !important;
  overflow: visible;
  font-size: 18px;
}

.topbar.is-compact-nav .nav > a,
.topbar.is-compact-nav .product-menu-trigger,
.topbar.is-compact-nav .solution-menu-trigger {
  position: relative;
  width: 100%;
  min-height: 69px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 24px !important;
  border-bottom: 1px solid #f5f5f5;
  background: #fff;
  color: #333 !important;
  font-size: 18px !important;
  line-height: 28.8px !important;
  font-weight: 400;
  white-space: normal;
  transform: none !important;
}

.topbar.is-compact-nav .product-menu-trigger,
.topbar.is-compact-nav .solution-menu-trigger {
  cursor: pointer;
}

.topbar.is-compact-nav .nav > a.active,
.topbar.is-compact-nav .product-menu-trigger.active,
.topbar.is-compact-nav .solution-menu-trigger.active {
  background: #3c5cb3;
  color: #fff !important;
  font-weight: 500;
}

.topbar.is-compact-nav .nav a.active::after,
.topbar.is-compact-nav .topbar.is-light .nav a.active::after {
  display: none !important;
}

.topbar.is-compact-nav .product-menu,
.topbar.is-compact-nav .solution-menu {
  width: 100%;
  height: auto;
  min-height: 0;
  display: block;
}

.topbar.is-compact-nav .product-menu-trigger::before,
.topbar.is-compact-nav .solution-menu-trigger::before {
  content: "";
  position: absolute;
  top: 28px;
  right: 28px;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.topbar.is-compact-nav .product-menu.is-mobile-accordion-open > .product-menu-trigger::before,
.topbar.is-compact-nav .solution-menu.is-mobile-accordion-open > .solution-menu-trigger::before {
  transform: translateY(5px) rotate(225deg);
}

.topbar.is-compact-nav .product-menu-panel,
.topbar.is-compact-nav .solution-menu-panel,
.topbar.is-compact-nav .product-menu:hover .product-menu-panel,
.topbar.is-compact-nav .product-menu:focus-within .product-menu-panel,
.topbar.is-compact-nav .product-menu.is-open .product-menu-panel,
.topbar.is-compact-nav .solution-menu:hover .solution-menu-panel,
.topbar.is-compact-nav .solution-menu:focus-within .solution-menu-panel,
.topbar.is-compact-nav .solution-menu.is-open .solution-menu-panel {
  position: static;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  border: 0;
  background: #fafafa;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: none;
  transition: max-height .3s ease, opacity .2s ease, visibility .2s ease;
}

.topbar.is-compact-nav .product-menu.is-mobile-accordion-open > .product-menu-panel,
.topbar.is-compact-nav .solution-menu.is-mobile-accordion-open > .solution-menu-panel {
  max-height: 2400px;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.topbar.is-compact-nav .product-menu-inner,
.topbar.is-compact-nav .solution-menu-inner {
  width: 100%;
  margin: 0;
  padding: 0 0 1px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.topbar.is-compact-nav .product-menu-column {
  width: 100%;
  min-height: 0;
  padding: 0 !important;
  border: 0;
}

.topbar.is-compact-nav .product-menu-title {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 12px 24px 6px 42px;
  box-sizing: border-box;
  border: 0;
  color: #999;
  font-size: 14px;
  line-height: 22.4px;
  font-weight: 700;
  white-space: normal;
}

.topbar.is-compact-nav .product-menu-items {
  gap: 0;
}

.topbar.is-compact-nav .nav .product-menu-panel a,
.topbar.is-compact-nav .nav .product-menu-panel span,
.topbar.is-compact-nav .nav .solution-menu-item,
.topbar.is-compact-nav.is-light .nav .product-menu-panel a,
.topbar.is-compact-nav.is-light .nav .product-menu-panel span,
.topbar.is-compact-nav.is-light .nav .solution-menu-item {
  width: 100%;
  min-height: 54px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 14px 24px 14px 42px;
  background: transparent;
  color: #555;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
  text-align: left;
  white-space: normal;
  overflow-wrap: anywhere;
  transform: none;
}

.topbar.is-compact-nav .nav .product-menu-panel a.is-current,
.topbar.is-compact-nav .nav .solution-menu-item.is-current {
  color: #3c5cb3;
}

.topbar.is-compact-nav .header-links {
  order: 2;
  width: 100%;
  min-height: 66px;
  flex: 0 0 66px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border-top: 1px solid #eee;
  background: #f9f9fa;
}

@media (max-width: 520px) {
  .topbar.is-compact-nav .topbar-inner {
    padding: 0 16px !important;
  }

  .topbar.is-compact-nav .logo-wrap,
  .topbar.is-compact-nav .logo {
    width: min(200px, calc(100vw - 92px)) !important;
    height: auto !important;
    flex-basis: min(200px, calc(100vw - 92px));
  }
}
/* responsive-navigation:end */
