:root {
  --top-nav-height: 80px;
  --top-nav-height-mobile: 70px;
  --top-nav-background: var(--brand-primary);
  --top-nav-link-color: var(--white);
  --top-nav-link-background: var(--top-nav-background);
  --top-nav-link-color-active: var(--white);
  --top-nav-link-background-active: var(--brand-secondary);
}

.cope-core-navigation {
  margin-bottom: var(--top-nav-height-mobile);
}
@media screen and (min-width: 768px) {
  .cope-core-navigation {
    margin-bottom: var(--top-nav-height);
  }
}

.cope-core-navigation-top {
  background: var(--top-nav-background);
  color: white;
  font-family: var(--frutiger);
  font-size: 16px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .cope-core-navigation-top {
    top: var(--globalnavigation-height);
  }
}
.cope-core-navigation-top .cope-core-navigation-top-container {
  display: flex;
  height: var(--top-nav-height-mobile);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  justify-content: space-between;
  align-items: center;
  transition: height 0.25s ease;
}
@media screen and (min-width: 768px) {
  .cope-core-navigation-top .cope-core-navigation-top-container {
    height: var(--top-nav-height);
    align-items: stretch;
    max-width: var(--tablet-width);
    padding: 0 var(--container-padding-tablet);
  }
}
@media screen and (min-width: 1024px) {
  .cope-core-navigation-top .cope-core-navigation-top-container {
    max-width: var(--desktop-width);
    padding: 0 var(--container-padding-desktop);
  }
}
@media screen and (min-width: 1440px) {
  .cope-core-navigation-top .cope-core-navigation-top-container {
    max-width: var(--desktop-xl-width);
    padding: 0 var(--container-padding-desktop-xl);
  }
}
.cope-core-navigation-top .cope-core-navigation-top-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.cope-core-navigation-top .cope-core-navigation-top-logo-container a {
  text-decoration: none;
  display: block;
  height: 100%;
  transition: height 0.25s ease;
}
.cope-core-navigation-top .cope-core-navigation-top-logo-container img {
  height: 100%;
  display: block;
}
.cope-core-navigation-top .cope-core-navigation-top-links-container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: calc(100vh - var(--top-nav-height-mobile));
  background: var(--top-nav-background);
  display: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 768px) {
  .cope-core-navigation-top .cope-core-navigation-top-links-container {
    overflow: visible;
    padding: 0;
    position: static;
    background: none;
    height: auto;
    display: block;
  }
  .cope-core-navigation-top .cope-core-navigation-top-links-container.cope-core-navigation-top-links-right .cope-core-navigation-top-sections {
    justify-content: flex-end;
  }
  .cope-core-navigation-top .cope-core-navigation-top-links-container.cope-core-navigation-top-links-center .cope-core-navigation-top-sections {
    justify-content: center;
  }
}
.cope-core-navigation-top .cope-core-navigation-top-items {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .cope-core-navigation-top .cope-core-navigation-top-items {
    flex-direction: row;
    height: 100%;
  }
}
.cope-core-navigation-top .cope-core-navigation-global-mobile {
  position: relative;
}
.cope-core-navigation-top .cope-core-navigation-global-mobile:before {
  position: absolute;
  width: calc(100% - 20px - 20px);
  height: 1px;
  display: block;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--top-nav-link-color);
}
.cope-core-navigation-top .cope-core-navigation-global-mobile a {
  color: var(--top-nav-link-color);
  background-color: var(--top-nav-link-background);
  font-family: inherit;
  text-decoration: none;
  font-size: 12px;
  display: block;
  padding: 20px;
}
.cope-core-navigation-top .cope-core-navigation-global-mobile a:hover, .cope-core-navigation-top .cope-core-navigation-global-mobile a:active {
  color: var(--top-nav-link-color-active);
  background: var(--top-nav-link-background-active);
}
.cope-core-navigation-top .cope-core-navigation-top-additional-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: relative;
}
.cope-core-navigation-top .cope-core-navigation-top-additional-content > div:before {
  position: absolute;
  width: calc(100% - 20px - 20px);
  height: 1px;
  display: block;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--top-nav-link-color);
}
.cope-core-navigation-top .cope-core-navigation-top-mobile-toggle {
  -webkit-appearance: none;
  border: none;
  position: relative;
  width: 30px;
  height: 26px;
  background: transparent;
  border-top: 4px solid;
  border-bottom: 4px solid;
  color: var(--top-nav-link-color);
  font-size: 0;
  transition: all 0.25s ease;
}
.cope-core-navigation-top .cope-core-navigation-top-mobile-toggle:before, .cope-core-navigation-top .cope-core-navigation-top-mobile-toggle:after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--top-nav-link-color);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}
.cope-core-navigation-top.cope-core-navigation-top-open .cope-core-navigation-top-mobile-toggle {
  border-color: transparent;
}
.cope-core-navigation-top.cope-core-navigation-top-open .cope-core-navigation-top-mobile-toggle:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.cope-core-navigation-top.cope-core-navigation-top-open .cope-core-navigation-top-mobile-toggle:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.cope-core-navigation-top.cope-core-navigation-top-open .cope-core-navigation-top-links-container {
  display: block;
}
.cope-core-navigation-top .cope-core-navigation-top-mobile-only {
  display: block !important;
}
.cope-core-navigation-top .cope-core-navigation-top-desktop-only {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .cope-core-navigation-top .cope-core-navigation-top-mobile-only {
    display: none !important;
  }
  .cope-core-navigation-top .cope-core-navigation-top-desktop-only {
    display: block !important;
  }
}

.cope-core-navigation-top-additional-content-mobile {
  display: none;
}

.cope-core-navigation-top.cope-core-navigation-top-fixed {
  position: fixed;
  top: 0;
}
.cope-core-navigation-top.cope-core-navigation-top-stickyscroll.cope-core-navigation-top-nav-up {
  will-change: transform;
  transition: all 0.5s cubic-bezier(0.694, 0.048, 0.335, 1);
  transform: translateY(0);
  position: fixed;
  top: -100%;
  left: 0;
  right: 0;
}
.cope-core-navigation-top.cope-core-navigation-top-stickyscroll.cope-core-navigation-top-nav-down {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.cope-core-navigation-top.cope-core-navigation-top-stickyscroll.cope-core-navigation-top-animate {
  will-change: transform;
  transition: all 0.5s cubic-bezier(0.694, 0.048, 0.335, 1);
  transform: translateY(0);
}

.cope-core-navigation-top-sections {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .cope-core-navigation-top-sections {
    flex-direction: row;
    height: 100%;
  }
}

.cope-core-navigation-top-section {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: var(--top-nav-link-background);
  color: var(--top-nav-link-color);
  height: 100%;
}
.cope-core-navigation-top-section a {
  color: inherit;
  font-family: inherit;
  text-decoration: none;
  font-size: inherit;
  display: block;
}
@media screen and (min-width: 768px) {
  .cope-core-navigation-top-section a {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .cope-core-navigation-top-section {
    flex: 0 1 150px;
    cursor: pointer;
    align-items: center;
    flex-direction: row;
  }
  .cope-core-navigation-top-section:hover, .cope-core-navigation-top-section:active {
    color: var(--top-nav-link-color-active);
    background: var(--top-nav-link-background-active);
  }
}
.cope-core-navigation-top-section:hover ul, .cope-core-navigation-top-section:active ul {
  display: block;
}

.cope-core-navigation-top-section-title .cope-core-navigation-top-section-title-wrapper {
  padding: 20px;
}
.cope-core-navigation-top-section-title a:hover,
.cope-core-navigation-top-section-title a:active {
  color: var(--top-nav-link-color-active);
  background: var(--top-nav-link-background-active);
}
@media screen and (min-width: 768px) {
  .cope-core-navigation-top-section-title {
    padding: 0;
  }
}

.cope-core-navigation-top-section-icon {
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin-right: 10px;
}

.cope-core-navigation-top-section-icon-container {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .cope-core-navigation-top-section-icon-container {
    justify-content: center;
  }
  .cope-core-navigation-top-section-icon-container.cope-core-navigation-top-icon-top {
    flex-direction: column;
  }
  .cope-core-navigation-top-section-icon-container.cope-core-navigation-top-icon-top .cope-core-navigation-top-section-icon {
    margin-bottom: 5px;
    margin-right: 0;
  }
}

.cope-core-navigation-top-section-text {
  margin-top: 5px;
}

.cope-core-navigation-top-section-links {
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
  color: var(--top-nav-link-color);
  background-color: var(--top-nav-link-background);
}
@media screen and (min-width: 768px) {
  .cope-core-navigation-top-section-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
  }
}
.cope-core-navigation-top-section-links a {
  color: inherit;
  font-family: inherit;
  text-decoration: none;
  font-size: inherit;
  display: block;
  padding: 20px 60px;
}
@media screen and (min-width: 768px) {
  .cope-core-navigation-top-section-links a {
    padding: 15px;
  }
}
.cope-core-navigation-top-section-links a:hover, .cope-core-navigation-top-section-links a:active {
  color: var(--top-nav-link-color-active);
  background: var(--top-nav-link-background-active);
}