/* Jump Navigation */
:root {
  --background-nav: #dad5cd;
}

.jump-nav {
  justify-content: center;
  align-items: start;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
  align-self: stretch;
  z-index: 10;
  display: flex;
  margin-top: -5px;
  width: 100%;
  padding: 24px 10px;
  gap: 10px;
  font-size: 16px;
  color: var(--text-black);
  letter-spacing: -0.24px;
  background-color: var(--background-nav);
  position: sticky;
  top: 0;
}

@media (max-width: 991px) {
  .jump-nav {
    justify-content: flex-start;
    max-width: 100%;
  }
}

.jump-nav-container {
  display: flex;
  width: 100%;
  align-items: center;
  column-gap: 72px;
  justify-content: start;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .jump-nav-container {
    max-width: 100%;
    column-gap: 20px;
    row-gap: 10px;
  }
}

.jump-nav-label {
  font-weight: 700;
  text-align: right;
  align-self: stretch;
  margin: auto 0;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .jump-nav-label {
    margin: 0;
    white-space: nowrap;
  }
}

.jump-links {
  align-self: stretch;
  display: flex;
  margin: auto 0;
  align-items: center;
  column-gap: 48px;
  font-weight: 400;
  justify-content: start;
  flex-wrap: wrap;
  flex: 1;
}

@media (max-width: 640px) {
  .jump-links {
    flex-direction: column;
  }
}

@media (max-width: 991px) {
  .jump-links {
    row-gap: 10px;
    max-width: 100%;
  }
}

.jump-link {
  align-self: stretch;
  display: flex;
  margin: auto 0;
  align-items: center;
  gap: 12px;
  justify-content: start;
  text-decoration: none;
  color: inherit;
  line-height: 1.2;
}

.jump-link.active,
.jump-link:active {
  font-weight: 700;
}

.jump-link:hover,
.jump-link:focus {
  color: var(--text-black);
  text-decoration: underline;
}

.jump-link:focus {
  outline-color: var(--text-black);
}

.jump-link.hidden {
  display: none;
}

.jump-arrow {
  aspect-ratio: 0.64;
  object-fit: contain;
  object-position: center;
  width: 7px;
  stroke-width: 1.5px;
  stroke: var(--primary-red);
  align-self: stretch;
  margin: auto 0;
  flex-shrink: 0;
}

.jump-nav-toggle {
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: none;
  align-items: center;
  align-self: flex-start;
}

.jump-nav-toggle[aria-expanded="true"] .jump-nav-toggle-icon-plus {
  display: none;
}

.jump-nav-toggle[aria-expanded="false"] .jump-nav-toggle-icon-minus {
  display: none;
}

@media (max-width: 991px) {
  .jump-nav-toggle {
    display: flex;
  }
}
