@charset "UTF-8";
/*---------------------------------
-----  dimension variables --------
----------------------------------*/
/*------  standard elements padding & margin  -------*/
/**
* mobile first breakpoints based on design specification 
* designs are delivered in 3 sizes mobile(375px -> default), tablet(768px -> tablet), desktop(1440px -> desktop-l)
*/
/**
**  Official Font sizes
------------------------------- */
/**
* mobile first breakpoints based on design specification 
* designs are delivered in 3 sizes mobile(375px -> default), tablet(768px -> tablet), desktop(1440px -> desktop-l)
*/
.ux-iws-nav {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  position: relative;
  border-bottom: 1px solid #cdcdcd;
}
@media only screen and (min-width: 1280px) {
  .ux-iws-nav {
    align-items: flex-end;
  }
}

.ux-iws-nav__lvl1 {
  width: 100%;
  left: 0;
  top: -9999vh;
  margin: 0;
  padding: 15px 30px;
  background: #fff;
  position: fixed;
}
@media only screen and (min-width: 1280px) {
  .ux-iws-nav__lvl1 {
    margin-bottom: 16px;
    padding: 0;
    left: auto;
    top: auto;
    width: auto;
    display: flex;
    position: relative;
  }
}
.ux-iws-nav__lvl1 .ux-iws-nav__lvl1-item {
  padding: 12px 0;
  list-style: none;
  cursor: pointer;
  position: relative;
}
.ux-iws-nav__lvl1 .ux-iws-nav__lvl1-item:last-of-type {
  margin-bottom: 0;
}
.ux-iws-nav__lvl1 .ux-iws-nav__lvl1-item > a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  color: #131313;
  text-decoration: none;
  position: relative;
}
@media only screen and (min-width: 1280px) {
  .ux-iws-nav__lvl1 .ux-iws-nav__lvl1-item > a {
    font-size: 20px;
  }
}
.ux-iws-nav__lvl1 .ux-iws-nav--not-active {
  display: none;
}
@media only screen and (min-width: 1280px) {
  .ux-iws-nav__lvl1 .ux-iws-nav__lvl1-item {
    margin: 0 30px;
    padding: 0;
  }
  .ux-iws-nav__lvl1 .ux-iws-nav__lvl1-item:first-of-type {
    margin-left: 0;
  }
  .ux-iws-nav__lvl1 .ux-iws-nav__lvl1-item:last-of-type {
    margin-right: 0;
  }
  .ux-iws-nav__lvl1 .ux-icon[name=arrow-right] {
    display: none;
  }
  .ux-iws-nav__lvl1 .ux-iws-nav--not-active {
    display: block;
  }
}
.ux-iws-nav__lvl1 .ux-iws-nav__lvl1-item--has-children > a {
  pointer-events: none;
}
.ux-iws-nav__lvl1 .ux-iws-nav--active .ux-iws-nav__lvl2 {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.ux-iws-nav__lvl1 .ux-iws-nav--active .ux-iws-nav__lvl2-item {
  opacity: 1;
}
.ux-iws-nav__lvl1 .ux-iws-nav__lvl1-item::after {
  content: "";
  left: 0;
  height: 0;
  width: 100%;
  bottom: -16px;
  transition: height 0.25s ease-in-out;
  position: absolute;
}
.ux-iws-header--trumpf .ux-iws-nav__lvl1 .ux-iws-nav__lvl1-item::after {
  background-color: #005074;
}
.ux-iws-header--mytrumpf .ux-iws-nav__lvl1 .ux-iws-nav__lvl1-item::after {
  background-color: #bbd03a;
}
@media only screen and (min-width: 1280px) {
  .ux-iws-nav__lvl1 .ux-iws-nav--active::after,
.ux-iws-nav__lvl1 .ux-iws-nav__lvl1-item:hover::after {
    height: 4px;
  }
}
.ux-iws-nav__lvl1--mobile-active {
  top: 100px;
}
.ux-iws-nav__lvl1--mobile-active .ux-iws-nav__lvl2 {
  top: 100px;
}
.ux-iws-nav__lvl1--mobile-active .ux-iws-nav__lvl3-wrapper {
  top: 100px;
  /* stylelint-disable max-nesting-depth, selector-max-compound-selectors */
  /* stylelint-enable max-nesting-depth, selector-max-compound-selectors */
}
@media only screen and (min-width: 1280px) {
  .ux-iws-nav__lvl1--mobile-active .ux-iws-nav__lvl3-wrapper {
    top: 0;
  }
}
@media only screen and (min-width: 1280px) and (-ms-high-contrast: none) {
  .ux-iws-nav__lvl1--mobile-active .ux-iws-nav__lvl3-wrapper {
    top: 100px;
  }
}
@media only screen and (min-width: 1280px) {
  .ux-iws-nav__lvl1--mobile-active {
    top: auto;
  }
}

.ux-iws-nav__lvl2 {
  left: 0;
  top: -9999vh;
  width: 100%;
  max-width: 1920px;
  background: #fff;
  padding: 60px 30px 30px;
  position: fixed;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
@media only screen and (min-width: 1280px) {
  .ux-iws-nav__lvl2 {
    left: 50%;
    transform: translateX(-50%);
    padding: 30px 0;
    top: 100px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  }
}
.ux-iws-nav__lvl2::before, .ux-iws-nav__lvl2::after {
  content: "";
  top: -100px;
  width: 12px;
  height: calc(100% + 100px);
  background: #fff;
  position: absolute;
}
.ux-iws-nav__lvl2::before {
  left: -11px;
}
.ux-iws-nav__lvl2::after {
  right: -11px;
}
.ux-iws-nav__lvl2 .ux-iws-nav__lvl2-back {
  font-family: "Frutiger-Bold", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  left: 30px;
  top: 30px;
  font-size: 13px;
  display: block;
  margin: 0 0 20px;
  text-transform: uppercase;
  position: absolute;
  transition: color 0.2s ease-in-out;
}
.ux-iws-nav__lvl2 .ux-iws-nav__lvl2-back::before {
  content: "← ";
}
@media only screen and (min-width: 1280px) {
  .ux-iws-nav__lvl2 .ux-iws-nav__lvl2-back {
    display: none;
  }
}
.ux-iws-nav__lvl2 .ux-iws-nav__lvl2-back:hover {
  color: #bbd03a;
}
.ux-iws-nav__lvl2 .ux-iws-nav__lvl2-item {
  width: 100%;
  padding: 12px 0;
  list-style: none;
  position: relative;
}
@media only screen and (min-width: 1280px) {
  .ux-iws-nav__lvl2 .ux-iws-nav__lvl2-item {
    width: 34%;
    padding-left: 30px;
  }
}
@media only screen and (min-width: 1620px) {
  .ux-iws-nav__lvl2 .ux-iws-nav__lvl2-item {
    width: 28%;
  }
}
.ux-iws-nav__lvl2 .ux-iws-nav__lvl2-item > a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  color: #131313;
  text-decoration: none;
  position: relative;
}
@media only screen and (min-width: 1280px) {
  .ux-iws-nav__lvl2 .ux-iws-nav__lvl2-item > a {
    font-size: 20px;
  }
}
.ux-iws-nav__lvl2 .ux-iws-nav__lvl2-item .ux-icon[name=arrow-right] {
  font-size: 15px;
  margin-right: 20px;
}
.ux-iws-nav__lvl2 .ux-iws-nav__lvl2-item::before {
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #f0f0f0 0%, #f0f0f0 25%, #f0f0f0 75%, #fff 100%);
  position: absolute;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.ux-iws-nav__lvl2 .ux-iws-nav__lvl2-item--overview > a {
  font-family: "Frutiger-Bold", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  font-size: 16px;
}
@media only screen and (min-width: 1280px) {
  .ux-iws-nav__lvl2 .ux-iws-nav__lvl2-item--overview > a {
    font-size: 18px;
  }
}
.ux-iws-nav__lvl2 .ux-iws-nav__lvl2-item--has-children > a {
  pointer-events: none;
}
.ux-iws-nav__lvl2 .ux-iws-nav__lvl2-item:last-of-type {
  margin-bottom: 0;
}
.ux-iws-nav__lvl2 .ux-iws-nav--not-active {
  display: none;
}
@media only screen and (min-width: 1280px) {
  .ux-iws-nav__lvl2 .ux-iws-nav--not-active {
    display: block;
  }
}
.ux-iws-nav__lvl2 .ux-iws-nav--active .ux-iws-nav__lvl3-wrapper {
  opacity: 1;
  pointer-events: auto;
  z-index: 11;
}
.ux-iws-nav__lvl2 .ux-iws-nav__lvl2-item-toolbox {
  margin-top: 30px;
  width: calc(100% + 60px);
  transform: translate(-30px, 0);
  overflow: hidden;
  display: none;
}
@media only screen and (min-width: 1280px) {
  .ux-iws-nav__lvl2 .ux-iws-nav__lvl2-item-toolbox {
    right: 0;
    top: 0;
    margin-top: 0;
    width: 22%;
    height: 100%;
    transform: translate(0, 0);
    display: block;
    position: absolute;
    z-index: 10;
  }
}
@media only screen and (min-width: 1620px) {
  .ux-iws-nav__lvl2 .ux-iws-nav__lvl2-item-toolbox {
    width: 24%;
  }
}
.ux-iws-nav__lvl2 .ux-iws-nav__lvl2-item-toolbox--show {
  display: block;
}
@media only screen and (min-width: 1280px) {
  .ux-iws-nav__lvl2 .ux-iws-nav__lvl2-item:hover > a {
    font-family: "Frutiger-Bold", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-weight: 400;
  }
  .ux-iws-nav__lvl2 .ux-iws-nav__lvl2-item:hover::before {
    opacity: 1;
  }
}
.ux-iws-nav__lvl2 .ux-icon[name=arrow-right] {
  display: block;
}

@media only screen and (min-width: 1280px) {
  .ux-iws-header .ux-iws-nav__lvl2-item {
    padding-left: 170px;
  }
}

.ux-iws-nav__lvl3-wrapper {
  left: 0;
  width: 100%;
  top: -9999vh;
  background: #fff;
  position: fixed;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  padding: 60px 30px 30px;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .ux-iws-nav__lvl3-wrapper {
    flex-flow: row wrap;
  }
}
@media only screen and (min-width: 1280px) {
  .ux-iws-nav__lvl3-wrapper {
    top: 100px;
    left: 34%;
    width: 20%;
    padding: 0;
  }
}
@media only screen and (min-width: 1620px) {
  .ux-iws-nav__lvl3-wrapper {
    left: 28%;
  }
}
.ux-iws-nav__lvl3-wrapper .ux-iws-nav__lvl3-back {
  font-family: "Frutiger-Bold", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  left: 30px;
  top: 30px;
  font-size: 13px;
  display: block;
  margin: 0 0 20px;
  text-transform: uppercase;
  position: absolute;
  transition: color 0.2s ease-in-out;
}
.ux-iws-nav__lvl3-wrapper .ux-iws-nav__lvl3-back::before {
  content: "← ";
}
@media only screen and (min-width: 1280px) {
  .ux-iws-nav__lvl3-wrapper .ux-iws-nav__lvl3-back {
    display: none;
  }
}
.ux-iws-nav__lvl3-wrapper .ux-iws-nav__lvl3-back:hover {
  color: #bbd03a;
}

@media only screen and (min-width: 768px) {
  .ux-iws-nav__lvl3-wrapper--has-overview-links .ux-iws-nav__lvl3 {
    padding-top: 52px;
    /* stylelint-disable max-nesting-depth, selector-max-compound-selectors */
    /* stylelint-enable max-nesting-depth, selector-max-compound-selectors */
  }
  .ux-iws-nav__lvl3-wrapper--has-overview-links .ux-iws-nav__lvl3:nth-of-type(3) {
    padding-top: 0;
  }
}
@media only screen and (min-width: 1280px) {
  .ux-iws-nav__lvl3-wrapper--has-overview-links .ux-iws-nav__lvl3 {
    padding-top: 85px;
    /* stylelint-disable max-nesting-depth, selector-max-compound-selectors */
    /* stylelint-enable max-nesting-depth, selector-max-compound-selectors */
  }
  .ux-iws-nav__lvl3-wrapper--has-overview-links .ux-iws-nav__lvl3:nth-of-type(3) {
    padding-top: 85px;
  }
}

.ux-iws-nav__lvl3 {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
  position: relative;
}
.ux-iws-nav__lvl3 .ux-iws-nav__lvl3-item:last-of-type {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .ux-iws-nav__lvl3 {
    width: 50%;
  }
}
@media only screen and (min-width: 1280px) {
  .ux-iws-nav__lvl3 {
    position: fixed;
    padding: 30px 0;
  }
  .ux-iws-nav__lvl3:nth-of-type(1) {
    left: 34%;
    width: 22%;
  }
  .ux-iws-nav__lvl3:nth-of-type(1)::before {
    content: "";
    width: 1px;
    height: 100%;
    left: 0;
    top: 0;
    border-right: 1px solid #cdcdcd;
    position: absolute;
    z-index: 1;
  }
  .ux-iws-nav__lvl3:nth-of-type(2) {
    left: 56%;
    width: 22%;
  }
  .ux-iws-nav__lvl3:nth-of-type(3) {
    left: 78%;
    width: 22%;
  }
}
@media only screen and (min-width: 1620px) {
  .ux-iws-nav__lvl3:nth-of-type(1) {
    left: 28%;
    width: 24%;
  }
  .ux-iws-nav__lvl3:nth-of-type(2) {
    left: 52%;
    width: 24%;
  }
  .ux-iws-nav__lvl3:nth-of-type(3) {
    left: 76%;
    width: 24%;
  }
}
.ux-iws-nav__lvl3 .ux-iws-nav__lvl3-item {
  list-style: none;
  padding: 12px 20px 12px 0;
  position: relative;
}
.ux-iws-nav__lvl3 .ux-iws-nav__lvl3-item > a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  color: #131313;
  text-decoration: none;
  position: relative;
}
.ux-iws-nav__lvl3 .ux-iws-nav__lvl3-item::before {
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #f0f0f0 0%, #f0f0f0 25%, #f0f0f0 75%, #fff 100%);
  position: absolute;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
@media only screen and (min-width: 768px) {
  .ux-iws-nav__lvl3 .ux-iws-nav__lvl3-item--overview {
    top: 0;
    position: absolute;
  }
}
@media only screen and (min-width: 1280px) {
  .ux-iws-nav__lvl3 .ux-iws-nav__lvl3-item--overview {
    top: 31px;
  }
}
.ux-iws-nav__lvl3 .ux-iws-nav__lvl3-item--overview > a {
  font-family: "Frutiger-Bold", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  font-size: 16px;
  white-space: nowrap;
}
@media only screen and (min-width: 1280px) {
  .ux-iws-nav__lvl3 .ux-iws-nav__lvl3-item--overview > a {
    font-size: 18px;
  }
}
.ux-iws-nav__lvl3 .ux-iws-nav__lvl3-item--subheadline {
  font-family: "Frutiger-Bold", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: default;
  margin-bottom: -10px;
}
@media only screen and (min-width: 1280px) {
  .ux-iws-nav__lvl3 .ux-iws-nav__lvl3-item {
    padding: 12px 30px 12px 50px;
  }
  .ux-iws-nav__lvl3 .ux-iws-nav__lvl3-item:hover > a {
    font-family: "Frutiger-Bold", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-weight: 400;
  }
  .ux-iws-nav__lvl3 .ux-iws-nav__lvl3-item:hover::before {
    opacity: 1;
  }
  .ux-iws-nav__lvl3 .ux-iws-nav__lvl3-item--subheadline:hover::before {
    opacity: 0;
  }
}
.ux-iws-nav__lvl3 .ux-iws-nav__lvl3-item:last-of-type {
  margin-bottom: 0;
}

.ux-iws-nav__meta {
  display: flex;
  align-items: center;
}
.ux-iws-nav__meta .ux-iws-nav__meta-container-header {
  margin-right: 30px;
}
@media only screen and (min-width: 1280px) {
  .ux-iws-nav__meta .ux-iws-nav__meta-container-header {
    right: 0;
    top: 0;
    margin: 0;
    position: absolute;
  }
}