.mega-nav {
  --nav-height: 4.5em;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.mega-nav__bar {
  z-index: 3;
  background-color: rgba(26, 47, 62, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  position: relative;
}

.mega-nav__container {
  height: var(--nav-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: calc(1800px + 10%);
  padding: 0 5%;
  margin: 0 auto;
}

.mega-nav__bar-start {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  position: relative;
}

.mega-nav__bar-logo {
  flex: none;
  margin-right: 3em;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.mega-nav__bar-logo img {
  height: 3.25em;
  width: auto;
  display: block;
}

.mega-nav__bar-inner {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0.75em;
}

.mega-nav__bar-list {
  display: flex;
  align-items: center;
  gap: 0.25em;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mega-nav__bar-list.is--actions {
  margin-left: auto;
  gap: 0.5em;
}

.mega-nav__bar-item.button .mega-nav__bar-link .mega-nav__bar-link-label {
  background: #A3D4F2;
  color: #1F3642;
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 0.875em;
  font-weight: 700;
  padding: 5px 15px;
  border-radius: 2px;
}
.mega-nav__bar-item.button .mega-nav__bar-link .mega-nav__bar-link-label:hover {
  opacity: 0.85;
}

.mega-nav__bar-link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.25em;
  padding: 0.375em 0.625em;
  color: #F6F3F0;
  background: transparent;
  border: none;
  border-radius: 0.25em;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}
.mega-nav__bar-link:hover, .mega-nav__bar-link[aria-expanded=true] {
  background: rgba(255, 255, 255, 0.07);
}
.mega-nav__bar-link.is--current {
  color: #A3D4F2;
}

.mega-nav__bar-link-label {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 0.9375em;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.mega-nav__bar-link-icon {
  width: 1.25em;
  flex-shrink: 0;
  transition: transform 200ms ease;
}
[aria-expanded=true] .mega-nav__bar-link-icon.is--dropdown {
  transform: rotate(180deg);
}

.mega-nav__bar-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25em;
  padding: 0.4em 0.875em;
  background: #A3D4F2;
  color: #1F3642;
  border-radius: 0.25em;
  text-decoration: none;
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 0.875em;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity 180ms ease;
}
.mega-nav__bar-cta:hover {
  opacity: 0.85;
}
.mega-nav__bar-cta.is--secondary {
  background: transparent;
  color: #A3D4F2;
  border: 1px solid #A3D4F2;
}
.mega-nav__bar-cta.is--secondary:hover {
  background: rgba(163, 212, 242, 0.08);
  opacity: 1;
}
.mega-nav__bar-cta .mega-nav__bar-link-icon {
  width: 1.125em;
}

.mega-nav__bar-end {
  display: none;
  align-items: center;
  gap: 0.75em;
}

.mega-nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.2em;
  width: 2.5em;
  height: 2.5em;
  padding: 0;
  background: rgba(163, 212, 242, 0.12);
  border: none;
  border-radius: 0.25em;
  cursor: pointer;
}

.mega-nav__burger-line {
  display: block;
  width: 1.25em;
  height: 0.125em;
  background: #A3D4F2;
  border-radius: 0.125em;
  position: relative;
  z-index: 1;
}

.mega-nav__back {
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: -0.625em;
}

.mega-nav__backdrop {
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  inset: 0;
}

.mega-nav__dropdown-wrapper {
  z-index: 2;
  pointer-events: none;
  width: 100%;
  max-width: 90em;
  margin: 0 auto;
  position: absolute;
  top: calc(100% - 0.25em);
  left: 0;
  right: 0;
}

.mega-nav__dropdown-container {
  position: relative;
  overflow: hidden;
}

.mega-nav__dropdown-bg {
  will-change: transform;
  background-color: #1a2f3e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: none;
  border-bottom-right-radius: 0.375em;
  border-bottom-left-radius: 0.375em;
  position: absolute;
  inset: 0;
}

.mega-nav__dropdown-panel {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  position: absolute;
  inset: 0 0 auto;
  overflow: hidden;
}

.mega-nav__dropdown-inner {
  display: flex;
}

.mega-nav__panel-col {
  display: flex;
  flex-direction: column;
  gap: 1.25em;
  flex: 1;
  padding: 2.5em 1.5em;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.mega-nav__panel-col:last-of-type {
  border: none;
}
.mega-nav__panel-col.is--colored {
  background-color: #162835;
}

.mega-nav__panel-label {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 0.75em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #A3D4F2;
  padding-left: 1em;
}

.mega-nav__panel-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-nav__panel-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.625em 0.75em;
  color: #F6F3F0;
  text-decoration: none;
  border-radius: 0.25em;
  transition: background 180ms ease;
}
.mega-nav__panel-link:hover {
  background: rgba(255, 255, 255, 0.06);
}

.mega-nav__panel-link-text {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 0.9375em;
  font-weight: 500;
  color: #F6F3F0;
}

.mega-nav__panel-link-desc {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 0.875em;
  font-weight: 400;
  color: rgba(246, 243, 240, 0.6);
  margin-top: 0.125em;
}

@media screen and (max-width: 991px) {
  .mega-nav__bar {
    border-top: none;
  }
  .mega-nav__bar-start {
    justify-content: space-between;
  }
  .mega-nav__bar-list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
  }
  .mega-nav__bar-list.is--actions {
    flex-direction: row;
    justify-content: space-between;
    gap: 1em;
  }
  .mega-nav__bar-link {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    width: 100%;
    padding: 0.75em 0;
    font-size: 1.25em;
  }
  .mega-nav__bar-link.is--dropdown {
    justify-content: space-between;
    align-items: center;
  }
  .mega-nav__bar-link.is--back {
    border-bottom: none;
    font-size: 1em;
  }
  .mega-nav__bar-link-label {
    font-size: 1.25em;
  }
  .mega-nav__bar-link-icon {
    width: 1.5em;
  }
  .mega-nav__bar-link-icon.is--dropdown {
    transform: rotate(-90deg);
  }
  .mega-nav__bar-end {
    display: flex;
  }
  .mega-nav__bar-cta {
    padding: 1em 0.75em;
    flex: 1;
    justify-content: center;
  }
  .mega-nav__bar-inner {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1F3642;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2em 1.5em;
    overflow: auto;
    min-height: 100vh;
  }
  .mega-nav__backdrop {
    display: none;
  }
  .mega-nav__dropdown-wrapper {
    z-index: 4;
    position: fixed;
    top: var(--nav-height);
    bottom: 0;
  }
  .mega-nav__dropdown-container {
    height: 100%;
    overflow: auto;
  }
  .mega-nav__dropdown-bg {
    display: none;
  }
  .mega-nav__dropdown-panel {
    background-color: #1F3642;
    bottom: 0;
    overflow: auto;
  }
  .mega-nav__dropdown-inner {
    flex-direction: column;
  }
  .mega-nav__panel-col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-right: none;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
  }
  .mega-nav__panel-label {
    width: 100%;
  }
  .mega-nav__bar-action {
    flex: 1;
  }
}
@media screen and (max-width: 479px) {
  .mega-nav__bar-link-label {
    font-size: 1em;
  }
  .mega-nav__bar-link-icon {
    width: 1.375em;
  }
}/*# sourceMappingURL=navbar.css.map */