@charset "UTF-8";
@keyframes fade-in {
  to {
    opacity: 1
  }
}
@keyframes centered-rotation {
  0% {
    transform: translate(-50%, -50%) rotate(0deg)
  }
  to {
    transform: translate(-50%, -50%) rotate(-360deg)
  }
}
@keyframes progress {
  to {
    transform: translateX(0)
  }
}
@keyframes highlight-item {
  0%, to {
    opacity: 1;
    transform: scale(1)
  }
  50% {
    opacity: var(--highlight-item-opacity, 0.25);
    transform: scale(var(--highlight-item-scale, 0.9))
  }
}
* {
  margin: 0;
  padding: 0;
  outline: 0
}
*, ::after, ::before {
  box-sizing: inherit
}
html {
  font-size: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth
}
html::after {
  display: none;
  content: "small:0em,medium:43.75em,large:64em,xlarge:80em,xxlarge:90em,mm:0em,onetrust-banner-small:26.5625em,ml:30em,mw:35.5em,onetrust-banner-medium:40em,tp:48em,hp:60em,tl:63.75em,tw:78.75em,navigation:80em,dl:88.75em,dw:102.75em,hd:118.75em,ultrawide:120.0625em,xw:158.75em"
}
.button, img {
  display: inline-block
}
img {
  max-width: 100%
}
iframe {
  display: block;
  border: 0
}
ul {
  list-style-type: none
}
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border-radius: unset;
  cursor: pointer
}
.button {
  font-family: "purista-web", Arial, Tahoma, sans-serif;
  font-weight: 700;
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .025em;
  vertical-align: middle;
  padding: .9375em 1em;
  line-height: 1.2;
  background-color: var(--button-background-color, #f8ae1a);
  color: var(--button-color, #ffffff);
  cursor: pointer;
  text-align: center;
  border: 1px solid var(--button-border-color, #f8ae1a);
  position: relative;
  overflow: hidden;
  transition: color .25s ease-in-out, border-color .25s ease-in-out, opacity .25s ease-in-out
}
.button::after {
  content: "";
  transform: translate3d(-101%, 0, 0);
  transition: transform .25s ease-in-out, background-color .25s ease-in-out;
  background-color: var(--button-hover-background-color, #ffffff);
  position: absolute;
  top: -3px;
  right: -3px;
  bottom: -3px;
  left: -3px
}
.button:focus-visible, .button:hover {
  --button-color: #f8ae1a;
  outline: 0;
  text-decoration: none
}
.button:focus-visible::after, .button:hover::after {
  transform: translate3d(0, 0, 0)
}
.button[disabled] {
  --button-color: rgba(255, 255, 255, 0.33);
  cursor: not-allowed;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none
}
.button[disabled]:focus-visible, .button[disabled]:hover {
  --button-color: rgba(255, 255, 255, 0.33)
}
.button[disabled]:focus-visible::after, .button[disabled]:hover::after {
  content: none
}
.button.colored {
  --button-border-color: var(--dark-color);
  --button-background-color: var(--dark-color)
}
.button.colored:focus-visible, .button.colored:hover {
  --button-color: var(--dark-color)
}
.button.colored.variant {
  --button-border-color: #ffffff
}
.button.colored.light {
  --button-border-color: var(--bright-color);
  --button-background-color: var(--bright-color)
}
.button.colored.fill {
  --button-background-color: var(--dark-color)
}
.button.colored.fill:hover {
  --button-color: var(--dark-color)
}
.button.colored.ghost {
  --button-color: var(--bright-color);
  --button-background-color: #ffffff;
  --button-border-color: var(--button-background-color)
}
.button.colored.ghost::after {
  background-color: var(--button-color)
}
.button.colored.ghost:focus-visible, .button.colored.ghost:hover {
  --button-color: #ffffff;
  --button-border-color: var(--dark-color)
}
.button.colored.ghost:focus-visible::after, .button.colored.ghost:hover::after {
  background-color: var(--button-border-color)
}
.button.colored.ghost.secondary {
  --button-color: var(--dark-color);
  --button-background-color: rgba(255, 255, 255, 0);
  --button-border-color: var(--dark-color)
}
.button.colored.ghost.secondary:focus-visible, .button.colored.ghost.secondary:hover {
  --button-color: #ffffff
}
.button.light {
  --button-background-color: rgba(255, 255, 255, 0);
  --button-border-color: #f8ae1a
}
.button.light:focus-visible, .button.light:hover {
  --button-border-color: #ffffff
}
.button.fill {
  --button-background-color: #f8ae1a;
  border-width: 0
}
.button.fill:hover, .button.ghost {
  --button-color: #f8ae1a
}
.button.ghost {
  --button-background-color: #ffffff;
  --button-border-color: #ffffff;
  --button-hover-background-color: #f8ae1a
}
.button.ghost:focus-visible, .button.ghost:hover {
  --button-color: #ffffff;
  --button-border-color: #f8ae1a
}
.button.ghost.secondary {
  --button-background-color: rgba(255, 255, 255, 0);
  --button-border-color: #f8ae1a
}
.button > * {
  position: relative;
  z-index: 1
}
.button.has-icon {
  padding-left: 2.75em
}
.button.has-icon .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1em
}
.button .icon svg {
  height: 1.5em;
  width: 1.5em;
  fill: currentColor
}
.button .icon > :nth-child(2), .button .text > :nth-child(2), .button.is-active .icon > :nth-child(1), .button.is-active .text > :nth-child(1) {
  display: none
}
.button .text > * {
  position: relative;
  z-index: 1
}
.button.is-active .icon > :nth-child(2), .button.is-active .text > :nth-child(2) {
  display: block
}
.button.is-loading::before, .button[class*=icon-]::before {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1
}
.button.is-loading::before {
  content: "";
  display: inline-block;
  font-size: 1.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #0a0a0a;
  animation: centered-rotation 1s infinite linear
}
.button.is-loading > *, .ct-chart-donut.is-active .ct-series path, .ct-legend.is-active > li {
  opacity: .25
}
.button.is-disabled {
  opacity: .25;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none
}
@media print {
  .button {
    display: none
  }
}
.button[class*=icon-] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1em
}
.button[class*=icon-]::before {
  font-size: 1.25em;
  position: relative;
  z-index: 1
}
.button.icon-search::before {
  content: ""
}
.button.icon-contact::before {
  content: ""
}
.button.icon-cookie::before {
  content: "";
  font-size: 1.75em
}
.scroll-top {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 2.8125rem;
  height: 2.8125rem;
  cursor: pointer;
  padding: .5rem;
  transition: opacity .25s ease-in-out, visibility .25s ease-in-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none
}
@media print {
  .scroll-top {
    display: none
  }
}
.scroll-top.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto
}
.scroll-top.is-active .icon > :nth-child(1) {
  display: inline
}
.scroll-top .icon {
  position: relative;
  top: auto;
  transform: none;
  font-size: clamp(.875rem, 2vw, 1.125rem);
  left: auto
}
.scroll-top .icon > * {
  width: auto;
  height: auto
}
.toggle-password .icon-password {
  opacity: .5
}
.toggle-password .icon-password::before {
  content: "";
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  line-height: 1;
  font-size: 1.5rem
}
.ct-legend.is-active > li.is-active, .toggle-password.is-active .icon-password {
  opacity: 1
}
.buttons {
  margin-bottom: unset;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap
}
.buttons:not(:last-child), .division-slider ul:not(:last-child) {
  margin-bottom: 2rem
}
.buttons > * {
  padding-left: 0
}
.buttons > ::after, .buttons > ::before, .ct-legend > ::after, .ct-legend > ::before {
  content: none;
  position: static;
  color: inherit;
  top: auto
}
.buttons > * ol, .buttons > * ul, .ct-legend > * ol, .ct-legend > * ul {
  margin-top: 0
}
.buttons .button {
  margin-right: .375rem;
  margin-bottom: .375rem
}
.button-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .5rem;
  margin-top: 1.5rem
}
.ct-label {
  fill: #646e78;
  color: #646e78;
  font-size: .75rem;
  line-height: 1
}
.ct-chart-bar .ct-label, .ct-chart-line .ct-label {
  display: block;
  display: flex
}
.ct-chart-donut .ct-label, .ct-chart-pie .ct-label {
  dominant-baseline: central
}
.ct-label.ct-horizontal.ct-end, .ct-label.ct-horizontal.ct-start {
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start
}
.ct-label.ct-horizontal.ct-end {
  align-items: flex-start
}
.ct-label.ct-vertical.ct-start {
  align-items: flex-end;
  justify-content: flex-end;
  text-align: right;
  text-anchor: end
}
.ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-start, .ct-label.ct-vertical.ct-end {
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start
}
.ct-chart-bar .ct-label.ct-horizontal.ct-end, .ct-chart-bar .ct-label.ct-horizontal.ct-start {
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  text-anchor: start
}
.ct-chart-bar .ct-label.ct-horizontal.ct-end {
  align-items: flex-start
}
.ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-end {
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start
}
.ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-start {
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  text-anchor: end
}
.ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-end {
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  text-anchor: end
}
.ct-grid {
  stroke: #d2d2d2;
  stroke-width: 1px;
  stroke-dasharray: 0
}
.ct-grid-background {
  fill: none
}
.ct-point {
  stroke-width: 10px;
  stroke-linecap: round
}
.ct-line {
  fill: none;
  stroke-width: 4px
}
.ct-area {
  stroke: none;
  fill-opacity: .1
}
.ct-bar {
  fill: none;
  stroke-width: 12%
}
.ct-slice-donut {
  fill: none;
  stroke-width: 60px
}
.ct-series-1 .ct-bar, .ct-series-1 .ct-line, .ct-series-1 .ct-point, .ct-series-1 .ct-slice-donut {
  stroke: #646e78
}
.ct-chart-bar .ct-series-1 .ct-label, .ct-series-1 .ct-area, .ct-series-1 .ct-slice-donut-solid, .ct-series-1 .ct-slice-pie {
  fill: #646e78
}
.ct-series-2 .ct-bar, .ct-series-2 .ct-line, .ct-series-2 .ct-point, .ct-series-2 .ct-slice-donut {
  stroke: #747d86
}
.ct-series-2 .ct-area, .ct-series-2 .ct-slice-donut-solid, .ct-series-2 .ct-slice-pie {
  fill: #747d86
}
.ct-series-3 .ct-bar, .ct-series-3 .ct-line, .ct-series-3 .ct-point, .ct-series-3 .ct-slice-donut {
  stroke: #838b93
}
.ct-series-3 .ct-area, .ct-series-3 .ct-slice-donut-solid, .ct-series-3 .ct-slice-pie {
  fill: #838b93
}
.ct-series-4 .ct-bar, .ct-series-4 .ct-line, .ct-series-4 .ct-point, .ct-series-4 .ct-slice-donut {
  stroke: #939aa1
}
.ct-series-4 .ct-area, .ct-series-4 .ct-slice-donut-solid, .ct-series-4 .ct-slice-pie {
  fill: #939aa1
}
.ct-series-5 .ct-bar, .ct-series-5 .ct-line, .ct-series-5 .ct-point, .ct-series-5 .ct-slice-donut {
  stroke: #a2a8ae
}
.ct-series-5 .ct-area, .ct-series-5 .ct-slice-donut-solid, .ct-series-5 .ct-slice-pie {
  fill: #a2a8ae
}
.ct-series-6 .ct-bar, .ct-series-6 .ct-line, .ct-series-6 .ct-point, .ct-series-6 .ct-slice-donut {
  stroke: #b2b7bc
}
.ct-series-6 .ct-area, .ct-series-6 .ct-slice-donut-solid, .ct-series-6 .ct-slice-pie {
  fill: #b2b7bc
}
.ct-series-7 .ct-bar, .ct-series-7 .ct-line, .ct-series-7 .ct-point, .ct-series-7 .ct-slice-donut {
  stroke: #c1c5c9
}
.ct-series-7 .ct-area, .ct-series-7 .ct-slice-donut-solid, .ct-series-7 .ct-slice-pie {
  fill: #c1c5c9
}
.ct-series-8 .ct-bar, .ct-series-8 .ct-line, .ct-series-8 .ct-point, .ct-series-8 .ct-slice-donut {
  stroke: #d1d4d7
}
.ct-series-8 .ct-area, .ct-series-8 .ct-slice-donut-solid, .ct-series-8 .ct-slice-pie {
  fill: #d1d4d7
}
.ct-series-9 .ct-bar, .ct-series-9 .ct-line, .ct-series-9 .ct-point, .ct-series-9 .ct-slice-donut {
  stroke: #e0e2e4
}
.ct-series-9 .ct-area, .ct-series-9 .ct-slice-donut-solid, .ct-series-9 .ct-slice-pie {
  fill: #e0e2e4
}
.ct-series-10 .ct-bar, .ct-series-10 .ct-line, .ct-series-10 .ct-point, .ct-series-10 .ct-slice-donut {
  stroke: #f0f1f2
}
.ct-series-10 .ct-area, .ct-series-10 .ct-slice-donut-solid, .ct-series-10 .ct-slice-pie {
  fill: #f0f1f2
}
.ct-legend .ct-series-1 .text {
  color: #646e78
}
.ct-legend .ct-series-1 .icon {
  background-color: #646e78
}
.ct-info-layer .ct-series-1 .ct-amount, .ct-info-layer .ct-series-1 .ct-text, .ct-info-layer .ct-series-1 .ct-unit {
  fill: #646e78
}
.ct-chart-bar .ct-series-2 .ct-label {
  fill: #747d86
}
.ct-legend .ct-series-2 .text {
  color: #747d86
}
.ct-legend .ct-series-2 .icon {
  background-color: #747d86
}
.ct-info-layer .ct-series-2 .ct-amount, .ct-info-layer .ct-series-2 .ct-text, .ct-info-layer .ct-series-2 .ct-unit {
  fill: #747d86
}
.ct-chart-bar .ct-series-3 .ct-label {
  fill: #838b93
}
.ct-legend .ct-series-3 .text {
  color: #838b93
}
.ct-legend .ct-series-3 .icon {
  background-color: #838b93
}
.ct-info-layer .ct-series-3 .ct-amount, .ct-info-layer .ct-series-3 .ct-text, .ct-info-layer .ct-series-3 .ct-unit {
  fill: #838b93
}
.ct-chart-bar .ct-series-4 .ct-label {
  fill: #939aa1
}
.ct-legend .ct-series-4 .text {
  color: #939aa1
}
.ct-legend .ct-series-4 .icon {
  background-color: #939aa1
}
.ct-info-layer .ct-series-4 .ct-amount, .ct-info-layer .ct-series-4 .ct-text, .ct-info-layer .ct-series-4 .ct-unit {
  fill: #939aa1
}
.ct-chart-bar .ct-series-5 .ct-label {
  fill: #a2a8ae
}
.ct-legend .ct-series-5 .text {
  color: #a2a8ae
}
.ct-legend .ct-series-5 .icon {
  background-color: #a2a8ae
}
.ct-info-layer .ct-series-5 .ct-amount, .ct-info-layer .ct-series-5 .ct-text, .ct-info-layer .ct-series-5 .ct-unit {
  fill: #a2a8ae
}
.ct-chart-bar .ct-series-6 .ct-label {
  fill: #b2b7bc
}
.ct-legend .ct-series-6 .text {
  color: #b2b7bc
}
.ct-legend .ct-series-6 .icon {
  background-color: #b2b7bc
}
.ct-info-layer .ct-series-6 .ct-amount, .ct-info-layer .ct-series-6 .ct-text, .ct-info-layer .ct-series-6 .ct-unit {
  fill: #b2b7bc
}
.ct-chart-bar .ct-series-7 .ct-label {
  fill: #c1c5c9
}
.ct-legend .ct-series-7 .text {
  color: #c1c5c9
}
.ct-legend .ct-series-7 .icon {
  background-color: #c1c5c9
}
.ct-info-layer .ct-series-7 .ct-amount, .ct-info-layer .ct-series-7 .ct-text, .ct-info-layer .ct-series-7 .ct-unit {
  fill: #c1c5c9
}
.ct-chart-bar .ct-series-8 .ct-label {
  fill: #d1d4d7
}
.ct-legend .ct-series-8 .text {
  color: #d1d4d7
}
.ct-legend .ct-series-8 .icon {
  background-color: #d1d4d7
}
.ct-info-layer .ct-series-8 .ct-amount, .ct-info-layer .ct-series-8 .ct-text, .ct-info-layer .ct-series-8 .ct-unit {
  fill: #d1d4d7
}
.ct-chart-bar .ct-series-9 .ct-label {
  fill: #e0e2e4
}
.ct-legend .ct-series-9 .text {
  color: #e0e2e4
}
.ct-legend .ct-series-9 .icon {
  background-color: #e0e2e4
}
.ct-info-layer .ct-series-9 .ct-amount, .ct-info-layer .ct-series-9 .ct-text, .ct-info-layer .ct-series-9 .ct-unit {
  fill: #e0e2e4
}
.ct-chart-bar .ct-series-10 .ct-label {
  fill: #f0f1f2
}
.ct-legend .ct-series-10 .text {
  color: #f0f1f2
}
.ct-legend .ct-series-10 .icon {
  background-color: #f0f1f2
}
.ct-info-layer .ct-series-10 .ct-amount, .ct-info-layer .ct-series-10 .ct-text, .ct-info-layer .ct-series-10 .ct-unit {
  fill: #f0f1f2
}
.ct-chart-wrapper {
  border-top: 2px solid #edf2f7;
  padding-top: .75rem;
  margin-bottom: 4rem
}
@media print {
  .ct-chart-wrapper {
    page-break-inside: avoid
  }
}
.ct-chart-holder {
  padding-top: 1rem;
  padding-bottom: 2rem
}
.ct-label.ct-horizontal {
  font-weight: 700
}
.ct-label.ct-vertical {
  margin-top: .5em
}
.ct-chart-bar .ct-series .ct-label {
  font-size: .75em;
  font-weight: 600
}
@media screen and (min-width:60em) {
  .ct-chart-bar .ct-series .ct-label {
    font-size: .875em
  }
}
.ct-grid.ct-vertical:first-child {
  stroke: #b2b2b2;
  stroke-width: 2px
}
.ct-slice-donut-solid {
  stroke: #fff;
  stroke-width: 2px
}
.ct-legend {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
  margin-right: -.5rem;
  margin-bottom: 0;
  margin-left: -.5rem
}
.ct-legend > * {
  padding-left: 0
}
.ct-legend.is-interactive:hover > li {
  opacity: .5
}
.ct-legend.is-interactive > li {
  cursor: pointer
}
.ct-legend.is-interactive > li:hover {
  opacity: 1
}
.ct-legend > li {
  position: relative;
  font-size: .875rem;
  font-weight: 600;
  padding: .5rem;
  transition: opacity .3s
}
.ct-legend .icon, .ct-legend .text {
  display: block
}
.ct-legend .icon {
  position: absolute;
  width: 1em;
  height: 1em
}
.ct-legend .text {
  padding-left: 1.5em;
  line-height: 1.2
}
.ct-chart-bar {
  display: block;
  position: relative;
  width: 100%
}
.ct-chart-bar:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 56.25%
}
.ct-chart-bar:after {
  content: "";
  display: table;
  clear: both
}
.ct-chart-bar > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0
}
@media screen and (min-width:60em) {
  .ct-chart-bar {
    display: block;
    position: relative;
    width: 100%
  }
  .ct-chart-bar:before {
    display: block;
    float: left;
    content: "";
    width: 0;
    height: 0;
    padding-bottom: 50%
  }
  .ct-chart-bar:after {
    content: "";
    display: table;
    clear: both
  }
  .ct-chart-bar > svg {
    display: block;
    position: absolute;
    top: 0;
    left: 0
  }
}
.ct-chart-donut, .ct-chart-pie {
  display: block;
  position: relative;
  width: 100%;
  max-width: 15em;
  margin-right: auto;
  margin-left: auto
}
.ct-chart-donut:before, .ct-chart-pie:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 100%
}
.ct-chart-donut:after, .ct-chart-pie:after {
  content: "";
  display: table;
  clear: both
}
.ct-chart-donut > svg, .ct-chart-pie > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0
}
.ct-info-layer-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s
}
.ct-info-layer-item.is-visible {
  opacity: 1;
  visibility: visible
}
.ct-info-layer-item .ct-amount, .ct-info-layer-item .ct-text, .ct-info-layer-item .ct-unit {
  fill: #5f646e
}
.ct-info-layer-item .ct-amount {
  font-family: "purista-web", Arial, Tahoma, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .025em;
  line-height: 1.16666;
  font-size: 2.75em
}
.ct-info-layer-item .ct-unit {
  font-size: 1.3125em
}
.ct-figure {
  margin-top: 0;
  margin-bottom: 0
}
.ct-figure-amount, .ct-figure-unit {
  color: #5f646e;
  display: block;
  text-align: center
}
.ct-figure-amount {
  font-family: "purista-web", Arial, Tahoma, sans-serif;
  font-weight: 700;
  font-size: 3.5em;
  text-transform: uppercase;
  letter-spacing: .025em;
  line-height: 1.16666;
  color: var(--dark-color)
}
.ct-figure-unit {
  font-size: 1.3125em
}
.ct-chart-donut .ct-series path {
  transition: stroke-width .3s, opacity .3s
}
.ct-chart-donut.is-active .ct-series path.is-active {
  stroke-width: 0;
  opacity: 1
}
.ct-chart-title {
  font-family: "purista-web", Arial, Tahoma, sans-serif;
  font-weight: 700;
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .025em;
  line-height: 1.16666
}
.trend-chart > canvas {
  margin-bottom: 2rem
}
@font-face {
  font-family: "purista-web";
  font-style: normal;
  font-weight: 400;
  src: url(purista-medium.68d46b7dd4e83a8f.woff2)format("woff2"), url(purista-medium.d95882a34ea2b61a.woff)format("woff")
}
@font-face {
  font-family: "purista-web";
  font-style: italic;
  font-weight: 400;
  src: url(purista-medium-italic.ccc057bfd13b3189.woff2)format("woff2"), url(purista-medium-italic.32077c4e77a360a0.woff)format("woff")
}
@font-face {
  font-family: "purista-web";
  font-style: normal;
  font-weight: 700;
  src: url(purista-bold.e114e2489da62f48.woff2)format("woff2"), url(purista-bold.0d190aea3acad52d.woff)format("woff")
}
@font-face {
  font-family: "purista-web";
  font-style: italic;
  font-weight: 700;
  src: url(purista-bold-italic.819c9b7a7b68c936.woff2)format("woff2"), url(purista-bold-italic.09e3e23187c5a2e9.woff)format("woff")
}
@font-face {
  font-family: "proxima-nova";
  font-style: normal;
  font-weight: 400;
  src: url(proxima-nova-regular.356a3fc686da8d31.woff2)format("woff2"), url(proxima-nova-regular.61c3e68d06ffff07.woff)format("woff")
}
@font-face {
  font-family: "proxima-nova";
  font-style: italic;
  font-weight: 400;
  src: url(proxima-nova-regular-italic.4826e1eb995082f7.woff2)format("woff2"), url(proxima-nova-regular-italic.241536d3e57abd62.woff)format("woff")
}
@font-face {
  font-family: "proxima-nova";
  font-style: normal;
  font-weight: 600;
  src: url(proxima-nova-semibold.5ca6c31b2aa1f215.woff2)format("woff2"), url(proxima-nova-semibold.ba3756184a14e1a9.woff)format("woff")
}
@font-face {
  font-family: "proxima-nova";
  font-style: italic;
  font-weight: 600;
  src: url(proxima-nova-semibold-italic.ed21fa43a1fab874.woff2)format("woff2"), url(proxima-nova-semibold-italic.9ba71f49a68d4c0a.woff)format("woff")
}
@font-face {
  font-family: "proxima-nova";
  font-style: normal;
  font-weight: 700;
  src: url(proxima-nova-bold.0869bd3069d836db.woff2)format("woff2"), url(proxima-nova-bold.9f281ddfe9bf6620.woff)format("woff")
}
@font-face {
  font-family: "proxima-nova";
  font-style: italic;
  font-weight: 700;
  src: url(proxima-nova-bold-italic.5efc330cfcb3f08c.woff2)format("woff2"), url(proxima-nova-bold-italic.cd84c9feec761c52.woff)format("woff")
}
/*.link, a {
  font-weight: 600;
  line-height: inherit;
  text-decoration: none;
  color: var(--anchor-color, #f8ae1a);
  cursor: pointer;
  outline: 0;
  display: inline-block;
  transition: color .15s ease-in-out
}
.link:focus-visible, .link:hover, a:focus-visible, a:hover {
  color: var(--anchor-color, var(--button-color, inherit));
  text-decoration: underline
}
.link[href^="tel:"], a[href^="tel:"] {
  color: inherit;
  cursor: text;
  text-decoration: none;
  font-weight: 400
}
.link.download::before, .link.external::before, .link.internal::before, .link.mailto::before, .link.read-more::before, a.download::before, a.external::before, a.internal::before, a.mailto::before, a.read-more::before {
  content: "";
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  line-height: 1;
  font-size: 1.125em
}*/
.link.download::before, .link.external::before, .link.mailto::before, .link.read-more::before, a.download::before, a.external::before, a.mailto::before, a.read-more::before {
  content: ""
}
.link.download::before, .link.mailto::before, .link.read-more::before, a.download::before, a.mailto::before, a.read-more::before {
  content: ""
}
.link.download::before, .link.read-more::before, a.download::before, a.read-more::before {
  content: ""
}
.link.read-more, a.read-more {
  font-family: "purista-web", Arial, Tahoma, sans-serif;
  font-weight: 700;
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .025em;
  line-height: 1.16666
}
.link.read-more::before, a.read-more::before {
  content: ""
}
.link.read-more:not([href]), a.read-more:not([href]) {
  text-decoration: none
}
.link.download:focus-visible::before, .link.download:hover::before, .link.external:focus-visible::before, .link.external:hover::before, .link.internal:focus-visible::before, .link.internal:hover::before, .link.mailto:focus-visible::before, .link.mailto:hover::before, .link.read-more:focus-visible::before, .link.read-more:hover::before, a.download:focus-visible::before, a.download:hover::before, a.external:focus-visible::before, a.external:hover::before, a.internal:focus-visible::before, a.internal:hover::before, a.mailto:focus-visible::before, a.mailto:hover::before, a.read-more:focus-visible::before, a.read-more:hover::before {
  text-decoration: none
}
@media print {
  .link.download::after, .link.external::after, .link.internal::after, .link.mailto::after, .link.read-more::after, a.download::after, a.external::after, a.internal::after, a.mailto::after, a.read-more::after {
    content: " ("attr(href)") " !important;
    position: static !important;
    display: block !important;
    font-size: 10px !important;
    transform: none !important;
    background-color: transparent !important;
    height: auto !important;
    margin: 0 !important
  }
}
.link.download::before, .link.external::before, .link.internal::before, .link.mailto::before, .link.read-more::before, a.download::before, a.external::before, a.internal::before, a.mailto::before, a.read-more::before {
  position: relative;
  top: .1875em;
  margin-right: .25em;
  text-decoration: none
}
.link img, a img {
  border: 0
}
.link-item {
 position: relative;
  display: block;
  
  padding: .625em .5em .625em 2em;
  margin-bottom: .375rem;
  overflow-x: hidden;
  color: #000;
  font-weight: 400;
}
.link-item:focus-visible::after, .link-item:hover::after {
  transform: translateX(0)
}
.link-item::after, .link-item::before {
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  margin-right: 0
}
.link-item::before {
  background-color: #e6ecf2
}
.link-item::after {
  transform: translateX(-101%);
  transition: transform .25s ease-in-out;
  background-color: #f8ae1a
}
.link-item:focus-visible, .link-item:hover, .active .link-item {
  color: #f8ae1a;
  text-decoration: none
}
@media print {
  .link-item::after {
    content: " ("attr(href)") " !important;
    position: static !important;
    display: block !important;
    font-size: 10px !important;
    transform: none !important;
    background-color: transparent !important;
    height: auto !important;
    margin: 0 !important
  }
}
.link-item .icon {
  display: block;
  position: absolute;
  top: 13px;
  left: 0;
  width: 23px;
  height: 23px;
  overflow: hidden
}
.link-item .icon > * {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: transform .25s ease-in-out
}
.link-item .icon > :nth-child(1) {
  transform: translateY(0)
}
.link-item .icon > :nth-child(2) {
  transform: translateY(-100%)
}
.link-item .text {
  word-break: break-word
}
.link-item .file-type {
  text-transform: uppercase
}
.link-item svg {
  width: 100%;
  height: 100%;
  fill: currentColor
}
.link-item.primary {
  color: #87919b
}
.link-item.primary::after {
  background-color: #87919b
}
.link-item.secondary {
  color: #0a0a0a
}
.link-item.secondary::after {
  background-color: #f00000
}
.link-item.secondary:focus-visible .icon > :nth-child(1), .link-item.secondary:hover .icon > :nth-child(1) {
  transform: translateY(100%)
}
.link-item.secondary:focus-visible .icon > :nth-child(2), .link-item.secondary:hover .icon > :nth-child(2) {
  transform: translateY(0)
}
.link-item.secondary svg {
  fill: #f00000
}
.link-item.tertiary::after {
  background-color: var(--dark-color)
}
.links {
  border-top: 2px solid #edf2f7;
  padding-top: .75rem;
  margin-bottom: 3rem
}
.division-slider ul > * ol, .division-slider ul > * ul, .link-list > * ol, .link-list > * ul, .links .title + .image {
  margin-top: 0
}
.links .image {
  margin-top: 2rem
}
.links .image .figure {
  height: auto;
  padding-bottom: 0;
  margin-bottom: 1rem
}
@supports (--a:0) {
  .links .image .figure {
    height: 0;
    padding-bottom: calc(100%/(var(--aspect-ratio)))
  }
}
.links .image .figure .figure-wrapper {
  position: static;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto
}
.links .image .figure .images > * {
  position: static;
  transform: none
}
.links .image .figure .images > :nth-child(2) {
  position: absolute;
  top: 0;
  left: 0
}
.link-list {
  margin-bottom: unset;
  border-top: 2px solid #edf2f7
}
.link-list:not(:last-child) {
  margin-bottom: 3rem
}
.link-list > * {
  padding-left: 0
}
.division-slider ul > ::after, .division-slider ul > ::before, .link-list > ::after, .link-list > ::before {
  content: none;
  position: static;
  color: inherit;
  top: auto
}
.link-list a {
  display: block;
  padding: .75rem 1rem;
  color: #0a0a0a;
  border-bottom: 2px solid #e6ecf2
}
.link-list a:focus-visible, .link-list a:hover {
  text-decoration: none;
  color: var(--dark-color)
}
.link-list a.is-active {
  text-decoration: none;
  color: var(--dark-color)
}
@font-face {
  font-family: "icomoon";
  font-display: block;
  font-style: normal;
  font-weight: 400;
  src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBk0AAAC8AAAAYGNtYXAXVtK1AAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5ZrDxFhkAAAF4AAAXuGhlYWQlc0t/AAAZMAAAADZoaGVhB8ID9AAAGWgAAAAkaG10eMH/GKMAABmMAAAAzGxvY2FhIGeMAAAaWAAAAGhtYXhwAD4A2AAAGsAAAAAgbmFtZZlKCfsAABrgAAABhnBvc3QAAwAAAAAcaAAAACAAAwP1AZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpLgPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6S7//f//AAAAAAAg6QD//f//AAH/4xcEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAADAFYAVQOqAwEAAgAHABsAAAElIQERBSURATIXFhURFAcGIyEiJyY1ETQ3NjMCAAFW/VQCrP6q/qoCrCIZGRkZIv1UIhkZGRkiAdXW/gABqtTU/lYCVhoaIv4AIhoaGhoiAgAiGhoAAAEA1gCBAyoC1QALAAABBxcHJwcnNyc3FzcDKu7uPO7uPO7uPO7uApnu7jzu7jzu7jzu7gABAQABAQMAAj0ABQAAARc3FwkBATzExDz/AP8AAj3ExDz/AAEAAAAAAQFWAKsCkgKrAAUAACUHCQEXBwKSPP8AAQA8xOc8AQABADzEAAAAAAEBbgCrAqoCqwAFAAAlNyc3CQEBbsTEPAEA/wDnxMQ8/wD/AAAAAAABAQABGQMAAlUABQAAAScJAQcnATw8AQABADzEARk8AQD/ADzEAAAAAgAqAFUD1gMBABAAIQAAATMHJzM0NzYzMhcHJiMiBwYlFyMUBwYjIic3FjMyNzY1IwEAgKqsgGVljGRSPjZCaktLAiqsgGVljGRSPjhAaktLgAGrqqqMZWU2Ph5LS0CqjGVlNj4eS0tqAAAAAwBWAAEDqgNVAAMABwAXAAABNSMVExEjERMyFxYVFAcGIyInJjU0NzYCKlRUVCqwfX19fbCwfX19fQIrVlb+qgEA/wACgH19sLB9fX19sLB9fQAAAQCqAFUDVgMBAAgAAAkCJzchNSEnAgABVv6qPO79+AII7gMB/qr+qjzwVPAAAAAAAgDWAFUDKgMrAAMACgAANyEVIQkCMxEhEdYCVP2sAlT+1v7WqgEAq1YB1v7WASoBAP8AAAIAgAArA4ADKwAIAB4AAAEhESM1AScBIxMRMxEUBwYjISInJjURNDc2MyEVIRECVgEqVv5ePAGimNRWGhoi/awkGRkZGSQBKv7WAyv+1pj+XjwBov2sASr+1iIaGhkZJAJUJBkZVv2sAAAAAAEAVgCrA6oCqwAKAAAlNycHATcBNwE3EQKqYtCq/sQ8AQCqAQxiq2LQqgE8PP8Aqv70Yv8AAAAAAQCAAQEDqgJVAAYAAAEHNSE1ITUDqqr9gAKAAauqgFSAAAAAAQBWAKsDqgKrAAoAAAEhEScBJwEnARc3AqoBAGL+9Kr/ADwBPKrQAqv/AGL+9Kr/ADwBPKrQAAABAVYAgQMqAtUAAgAACQIBVgHU/iwC1f7W/tYAAgDWAAEDKgNVAA8AKgAAATI3NjU0JyYjIgcGFRQXFhMyFxYVFAcGBwYHBg8BJicmJyYnJicmNTQ3NgIALB8fHx8sLB8fHx8sfFdXHx8sLCsrHiAMFBQ0NCcnICBXVwHBHx8sLB8fHx8sLB8fAZRXV3w+UFBGRj09JCIOFxdFRUFBUlI+fFdXAAEBbgCrAqoCqwAFAAAJAic3JwGqAQD/ADzExAKr/wD/ADzExAAAAAABAJIAgQOAAr0ABQAAJQEXASc3AYABxDz+AO48+QHEPP4A7jwAAAAAAgBkAAEDnANVAA8ASQAAATI3NjU0JyYjIgcGFRQXFiUXFg8BBi8BBg8BBisBIi8BJicHBi8BJj8BJjU0NycmPwE2HwE2PwE2OwEyHwEWFzc2HwEWDwEWFRQCAD4sLCwsPj4sLCwsAXxaDgpWCBJqKh4QBBCsEAQQJiJqEghWCg5aAgJaDgpWCBJqKh4QBBCsEAQQJiJqEghWCg5aAgEVLCw+PiwsLCw+PiwsbEYKEpQOBioeDHASEnAQGioGDpQSCkYOHBwORgoSlA4GKh4McBIScBAaKgYOlBIKRg4cHAACAFYAAQOqA1UACwAbAAABJzcnBycHFwcXNxcDMhcWFRQHBiMiJyY1NDc2AtaamjyamjyamjyampqwfX19fbCwfX19fQERmpo8mpo8mpo8mpoCgH19sLB9fX19sLB9fQADAFYAAQOqA1UAAwAHABcAAAERIxEXNSMVEzIXFhUUBwYjIicmNTQ3NgIqVFRUKrB9fX19sLB9fX19AYEBAP8ArFZWAoB9fbCwfX19fbCwfX0AAAACAFYAAQOqA1UABQAVAAAlAScBJwcBMhcWFRQHBiMiJyY1NDc2AaoBgDz+vJg8ASqwfX19fbCwfX19fdUBgD7+vJg8Aap9fbCwfX19fbCwfX0AAAABAVYAqwKSAqsABQAAAQcXBwkBApLExDz/AAEAAm/ExDwBAAEAAAAAAwCAAKsDgAKrAAMABwALAAATIRUhFTUhFQU1IRWAAwD9AAMA/QADAAKrVtRUVNZWVgAAAAMAVgArA6oDKwADACEAMQAAATUjFSEyFxYdARQHBiMhNSMVISInJj0BNDc2OwE1NzMXFQEzNSEVFAcGIyEiJyY9ASECVqwBrCIZGRkZIv8ArP8AJBgYGRkiqlaqVv8ArAEqGRkk/awkGRkBKgKBVFQaGiKAIhoaVlYZGSSAIhoaVFZWVP6AKqokGRkZGSSqAAkAqgBVA1YDAQADAAcACwAPABMAFwAbAB8AIwAAJTUzFQM1MxUBNTMVNzMVIwE1MxUhNTMVAzUzFTM1MxUBNTMVAqqsrKz+VKxUrKz/AKz+VKysrFSs/lSsVaysAQCsrAEArKysrP8ArKysrP8ArKysrAIArKwAAAEAqgBVA1YDAQAIAAATCQEHJxEjEQeqAVYBVj7uVPABqwFW/qo87v34AgjuAAAAAAEAqgBVA1YDAQAIAAAJAjcXETMRNwNW/qr+qj7uVPABq/6qAVY87gII/fjuAAAAAAYAgADVA4ACgQADAAcACwAPABMAFwAAASEVIRE1IRUlNSEVJTUzFQM1MxUnNTMVASoCVv2qAlb9qgJW/QBWVlZWVgKBVv6qVlasVFSqVlb+qlZWrFRUAAABANYAgQMqAtUACwAAASERIxEhNSERMxEhAyr/AFT/AAEAVAEAAYH/AAEAVAEA/wAAAAAAAQDWAYEDKgHVAAMAAAEhNSEDKv2sAlQBgVQAAAMAKgBrA9YC6wAPAB8ALwAAATIXFhUUBwYjIicmNTQ3NhMyNzY1NCcmIyIHBhUUFxYTMhcWFwYHBiMiJyYnNjc2AgA0JiYmJjQ0JiYmJjRYPz8/P1hYPz8/P1iegIA4OICAnp6AgDg4gIACKyYmNDQmJiYmNDQmJv6qPz9YWD8/Pz9YWD8/AhZYWJCQWFhYWJCQWFgAAAAABAAqAAED1AMrAAYAGAAtAD8AAAEzMhcWHQElBhUUFxYzMjcnBiMiJyY1NDcBNwEHJicmJwYjIicmJzY3NjcmJyYFIgcnNjMyFxYXBgcnNjU0JyYB+gY0Jib+whg/P1guMEIQDDQmJgT+0jYC9DYKNTUcVmSegIA4Fi8vLBgrKwGkKCZcTlyef384MGJ8ED8/AismJjQIZjAuWD8/GEIEJiY0DBABLjb9DDYKNDQcJFhYkDQ/PyIYLCxuEFweWFiQdlR8JihYPz8AAAAAAQAA/7EEAAOrADEAAAE0Jy4BJyYjIgcOAQcGFRQXHgEXFhcRIzUzNTQ2MzIWMRUjIgYdATMHIxE2Nz4BNzY1BAAoKYtdXWpqXV6LKCghIXRPT1yCgmpXKklBLySOF3dcT090ISEBq2pdXYsoKSkoi11damBWVYctLQ4BZpRwYWcKfjIeYJT+mg4tLYdVVmAABQAA/6sEAAOrAEgAkQCtALkAxgAAASIGBw4BBw4BBw4BBw4BBw4BFRQWFx4BFx4BFx4BFx4BFx4BMzI2Nz4BNz4BNz4BNz4BNz4BNTQmJy4BJy4BJy4BJy4BJy4BIxUyFhceARceARceARceARceARUUBgcOAQcOAQcOAQcOAQcOASMiJicuAScuAScuAScuAScuATU0Njc+ATc+ATc+ATc+ATc+ATMXIgcOAQcGFRQXHgEXFjMyNz4BNzY1NCcuAScmAyImNTQ2MzIWFRQGARQGIyImNTQ2MzIWFQIAaEIpKTsYGiwVFRwKCgwCAgEBAgIMCgocFRUsGhg7KSlCaGhCKSk7GBosFRUcCgoMAgIBAQICDAoKHBUVLBoYOykpQmhmQCklLA4SGw4NEgcFCwICAQIBAgsFCBEODRwSDS0lKUBmZ0ApJS0NEhsODRMGBgoCAgEBAgIKBgYTDQ4bEg0sJik/ZwI2MDBIFBUVFEgwMDY2MDBIFBUVFEgwMDZHZGRHR2RkAQgkGhkkJBkaJAOrAgECDQkKHBUWLBkYOykpQmhpQSkpOxkZLBUWHAkKDAICAQECAgwKCRwWFSwZGTspKUFpaEIpKTsYGSwWFRwKCQ0CAgFcAgIBCwUHEg0OGxIOLCUpQGZnQCgmLA0SHA0OEgYGCgICAQECAgsFBxINDhsSDiwmKEBmZ0ApJS0NEhsODRMGBgoCAgGeFRVHMDA2NzAwRxUUFBVHMDA3NjAwRxUV/k5kR0ZkZEZHZAG8GSQkGRkkJBkAAAAABAAA/6sEAAOrABQAIQAlADYAACUjNTQmIyIGHQEjETMVMz4BMzIWFQEiJjU0NjMyFhUUBiMTIxEzASEiBhURFBYzITI2NRE0JiMDaJcVOjwfmJICD0k3dEL9fCUzMyUkNDQkTJiYAoT8mCAsLCADaB8tLR9C7ipXTTDyAelDHTKGYwEgMyUkNDQkJTP91AHpAYAsHvyTHisrHgNtHiwAAAEAAAALBAADSwBNAAABDgEHPgE3DgEHLgEjIgcOAQcGFRQWFyYnLgEnJicOARUUFhcuAScVFBYXDgEjIiYnHgEXDgEjIiYnFhceARcWMzI3PgE3NjU8ASc+ATcD/hw9HyAwDB9DJBxPLisnJjkQEQMDQj09bjAwJw4OMyoaMBVgSA0cDgoUCRRrRTWGSQ0YDSMmJlErKyyRcG+YJycBHzUVAugNEAQTPCUSGQgfJBEQOSYnKwwYDAMRETgnJzAXNh03Wx0BDgwDTHMPAwQCAj9SASowAQIXERIYBgY2NqxqamgHDQcWNyAAAAAAAgBP/6sDsQOrACYAQgAAASIGBzAHDgEHBgcUFx4BFxYxHgE7ATI2NzY0JwMmMDMBNjQnLgEjBSIGBwYUHwEUMDEDBhQXHgE7ATI2NxMnLgErAQMIEREGMTJ6MzQEISFOISEFExGTBwoDAwPQAQEBRwMDAwoH/P8HCwMCA2SdAwMDCgeTERIGn2YFExGTA6sSCllY11xcBwE8PJA8PAoSBQQFDAYBfAECQgcMBAUFywQFBQsGrQH+6wYMBQQGEwoBGrEKEgAAAAACAAAARQQAAxAASABLAAABLgEnIyYnLgEjIjEwIyIGBwYHDgEPAQ4BFRwBFTEcARUUFhcnHgEfARYXHgEXMjEwMz4BNzY3PgE3MT4BNTwBNRU8ATU0JicXAREFA+oJLyABHkJCiDM0MzOHQ0IeIS8JAQoMDAwCCi8gAR1DQogzMzQzh0NCHiEvCQsLDAsB/bABCwKiIDAJCAQFBAQEBQgJLyABN3tBAQMBAQIBQH49CCAvCQEIBAQEAQEEBAQICi8gNnk/AwQDAQIGAj97PAj+bwEzmgAAAAACAD4AAwOoA20ADwApAAABMjc2NTQnJiMiBwYVFBcWIRcHJzUnBiMiJyY1NDc2MzIXFhUUBwYHFzMBhF5BQkJBXl5CQUFCAYr4S/gOWXqIX19fX4iIXV4XGB4OKAFGQkFeXkFCQkFeXkFC+Ev4KA5OXl6IiF9fX1+IMT4/JQ4AAAIAVgBVA6oDAQAFABkAAAE1BSUVBQEyFxYVERQHBiMhIicmNRE0NzYzA1b+qv6qAVYBViIZGRkZIv1UIhkZGRkiAlVW1tZW1AGAGhoi/gAiGhoaGiICACIaGgAAAgAA/6sD/wOrAAwAEgAACQEjCQEhCQEzCQEhAQcBMwEjAQJhAX1a/rX++P7PAY/+cVoBXQEXATH+Ynz+looCf4v+7AH5AbL+hwF5/cb+OgGN/nMCTo0B/PyCAYIAAAAAAgCAACsDgAMrABsAJAAAATIXFhURFAcGIyEiJyY9ATMVIREhFSM1NDc2MxM3ITUhJzcXBwMqIhoaGhoi/awkGRlWAlT9rFYZGSTYbv5kAZxuPNbWAysaGiL9rCIaGhkZJKqqAlSqqiQZGf3mcFRwPNbWAAAGAAD/qwQAA6sADwBNAG8AkQCzANUAAAEhIgYVERQWMyEyNjURNCYBBxQGKwEiJj0BMTU0JisBIgYVIxUUBisBIiY1ETQ2OwEyFhURPgE7ATEyNjU3PgE7ATIWFzMVFAYHHgEdARMHBiIvASY0PwI2Mh8BFhQPAQYUHwEeAT8BNjIfARYUBzUHBiIvASYiDwEGFB8BFhQPAQYiLwEmND8BNjIfAhYUBxcHBiIvAiY0PwE+AR8BFjI/ATY0LwEmND8BNjIfARYUBzUPAQYiLwEmND8BNjQvASYiDwEGIi8BJjQ/ATYyHwEWFAcDsPygIS8vIQNgIS8v/rkCDAh7CA0wISwhMAEMCHsIDAwIewkLFCkVKiEwAgEMB3sICwEBIR0eIo0eDCELBQsLHAIDCQMEAwMeBAQFBAsDHgQIAwQDAwQDCQMeAwsEBQQEHgMDBAMIAx8LCwUMIQscAgMDawUMIAwcAgMDBAMJAx4ECgQFBAQeAwMEAwgEHgsLHAIDCQMEAwMeBAQEBAsEHgMJAwQDAx4MIQsFDAwDqy8h/KAhLy8hA2AhL/0FfQgMCwl9KCEuLiGlCAwLCQLoCAwLCf6hBggvICkHCgoHKS1SICBTLikB1x0MDAULIAscAgMDBAMJAx0ECgQFAwEEHgMDBAMIA3cDAwMdBAQFAwsEHQMJAwQDAx4LIAwEDAwbAgMIBJAFDAwbAgMIBAMDAQQdBAQFBAoEHQMJAwQDAx4LIAuAGwIDAwQDCAMeAwsEBAQEHQMDBAMIAx0MDAQMIAsAAAAAAgCS/6sDbgOrABAAIgAAJSEUFjMhMjY1ETQmKwEiBhURMhYVIREUBisBIiY1ETQ2MyEC2/23Vj0Btj1WAwOHAgQ9Vv23BAKHAwNWPQG2PT1VVT0CWQIDAwIBFVY9/agDAwMDAlg9VgAKAFYAAQOqA1UACQAQABoAHwAmAC0ANwA8AEMAUwAAATM2NTQnIxYVFAM2NzY3IwYnNjU0JyMGFRQXFzY3IxYDNjcGBwYHERYXFhcmJyczJjU0NyMGFRQBBgczJhcmJyYnFhcDMhcWFRQHBiMiJyY1NDc2ArqQDAyQBlIyNjYcfhQyBgbIBgZkOBqkGnIYJDI3NxoaNzcyKBSgkAYGkAwBVjgapBrwHDY2MiQYqrB9fX19sLB9fX19AVU4Hh44Kiws/uoQLS0uUKQqLCwqKiwsKv5SWFgBrFZCEC0tLv6sLi0tEEhQVCosLCo4Hh4BclJYWFguLS0QQlYBAH19sLB9fX19sLB9fQAKAIAAKwOAAysAMgA+AGMAbwB7AIcAkwCfAKsAtwAAASIHDgEHBhUUFx4BFxYzMjc+ATc2NTQmJw4BIyImJw4BIyImNTQ2NyoBMSImNTQ2NyImMyIGFRQWMzI2NTQmBR4BFw4BFRQWMzI2Nx4BFwYHDgEHBiMiJy4BJyY1NDc+ATc2NxciBhUUFjMyNjU0JgUiBhUUFjMyNjU0JiEiBhUUFjMyNjU0JgUiBhUUFjMyNjU0JhciBhUUFjMyNjU0JgciBhUUFjMyNjU0JhciBhUUFjMyNjU0JgIAUEVGaR4eHh5pRkVQUEVGaR4eAgEKFg0aKAkPIxM1SwoIAQEhLwgIBAjsFBwcFBQcHP6+BCIaAQFxTwwYCxApFgUcG1U3OD5COjtXGRkUE0UwLzf+DRMTDQ0TE/7zDRMTDQ0TEwGTDRMTDQ0TE/3zGyUlGxslJYUNExMNDRMTfRQcHBQUHBzMFBwcFBQcHAMrHx5oRkZPUEZGaB4eHh5oRkZQCxcMBwcdFwkLSzURIQ4uIg0YCgEcFBQcHBQUHEYfNBAGDAVQcAMDDxQCPTU1ThYWGRlXOjpDOjQ0VBwdC1oTDQ4SEg4NEyATDQ4SEg4NExMNDhISDg0TYCYaGyUlGxomQBMNDhISDg0TgBwUFBwcFBQcIBwUFBwcFBQcAAABAAAAAQAAu8HNX18PPPUACwQAAAAAAOEqA5YAAAAA4SoDlgAA/6sEAAOrAAAACAACAAAAAAAAAAEAAAPA/8AAAAQAAAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAzBAAAAAAAAAAAAAAAAgAAAAQAAFYEAADWBAABAAQAAVYEAAFuBAABAAQAACoEAABWBAAAqgQAANYEAACABAAAVgQAAIAEAABWBAABVgQAANYEAAFuBAAAkgQAAGQEAABWBAAAVgQAAFYEAAFWBAAAgAQAAFYEAACqBAAAqgQAAKoEAACABAAA1gQAANYEAAAqBAAAKgQAAAAEAAAABAAAAAQAAAAEAABPBAAAAAQAAD4EAABWA/8AAAQAAIAEAAAABAAAkgQAAFYEAACAAAAAAAAKABQAHgBSAGwAgACUAKgAvADyARwBNAFOAYQBoAGyAc4B3AIgAjQCSAK4AugDEgM8A1ADagOyA+4EBgQeBEoEZARyBL4FJAVsBpIG4gdYB7wIKAhoCJYIxgkACigKXArgC9wAAQAAADMA1gAKAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAAcAAAABAAAAAAACAAcAYAABAAAAAAADAAcANgABAAAAAAAEAAcAdQABAAAAAAAFAAsAFQABAAAAAAAGAAcASwABAAAAAAAKABoAigADAAEECQABAA4ABwADAAEECQACAA4AZwADAAEECQADAA4APQADAAEECQAEAA4AfAADAAEECQAFABYAIAADAAEECQAGAA4AUgADAAEECQAKADQApGljb21vb24AaQBjAG8AbQBvAG8AblZlcnNpb24gMS4wAFYAZQByAHMAaQBvAG4AIAAxAC4AMGljb21vb24AaQBjAG8AbQBvAG8Abmljb21vb24AaQBjAG8AbQBvAG8AblJlZ3VsYXIAUgBlAGcAdQBsAGEAcmljb21vb24AaQBjAG8AbQBvAG8AbkZvbnQgZ2VuZXJhdGVkIGJ5IEljb01vb24uAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=)format("truetype")
}
.division-slider ul {
  margin-bottom: unset
}
.division-slider ul > * {
  padding-left: 0
}
.division-slider-navigation, .division-slider-navigation a {
  transition-timing-function: ease-out;
  transition-duration: .3s
}
.division-slider-navigation {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
  gap: 2px;
  transition-property: border-bottom-color
}
@media screen and (min-width:80em) {
  .division-slider-navigation {
    display: flex;
    border-bottom-width: 10px;
    border-bottom-style: solid;
    border-bottom-color: var(--dark-color)
  }
}
.division-slider-navigation li {
  flex-grow: 1
}
.division-slider-navigation a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6.25em;
  background-color: #0a0a0a;
  transition-property: background-color
}
.division-slider-navigation a.is-active, .division-slider-navigation a:focus, .division-slider-navigation a:hover {
  background-color: var(--dark-color)
}
.division-slider-navigation a.is-active .svg-inner-claim, .division-slider-navigation a:focus .svg-inner-claim, .division-slider-navigation a:hover .svg-inner-claim {
  fill: #fff
}
.division-slider-navigation svg {
  width: auto;
  height: 3.125rem
}
.division-slider-navigation .svg-inner-claim {
  transition-property: fill;
  transition-timing-function: ease-out;
  transition-duration: .3s
}
.division-content {
  font-size: 1.125rem
}
.page-container, .wrapper {
  margin-right: auto;
  margin-left: auto
}
.page-container {
  overflow: clip;
  display: flex;
  flex-direction: column;
  max-width: 137.5rem;
  min-height: 100vh
}

.not-scrollable body::before {
  opacity: 1;
  pointer-events: all
}
@media screen and (min-width:80em) {
  body:has(header.is-current)::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 5;
    background-color: rgba(0, 0, 0, .9);
    pointer-events: none;
    opacity: 0;
    transition: opacity .33s ease-in-out
  }
}
/*.wrapper {
  max-width: 1336px;
  padding-right: 2vw;
  padding-left: 2vw
}*/
@media screen and (min-width:80em) {
 /* .wrapper {
    padding-right: calc(2vw + 3.5rem)
  }*/
}
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem
}
.grid:not(:last-child) {
  margin-bottom: 3rem
}
.grid .one-quarter, .grid .wide {
  grid-column: span 12
}
@media screen and (min-width:35.5em) {
  .grid .one-quarter {
    grid-column: span 6
  }
}
@media screen and (min-width:78.75em) {
  .grid .one-quarter {
    grid-column: span 3
  }
}
.grid .one-third {
  grid-column: span 12
}
@media screen and (min-width:35.5em) {
  .grid .one-third {
    grid-column: span 6
  }
}
@media screen and (min-width:78.75em) {
  .grid .one-third {
    grid-column: span 4
  }
}
.grid .one-half {
  grid-column: span 12
}
@media screen and (min-width:48em) {
  .grid .one-half {
    grid-column: span 6
  }
  .grid .one-half.align-right {
    grid-column: span 6/13
  }
}
.grid .two-third {
  grid-column: span 12
}
@media screen and (min-width:48em) {
  .grid .two-third {
    grid-column: span 8
  }
}
.ecoma-grid {
  display: grid
}
.ecoma-grid.has-aside {
  grid-template-columns: 1fr
}
@media screen and (min-width:48em) {
  .ecoma-grid.has-aside {
    gap: 3rem 0;
    grid-template-columns: 3fr 2fr
  }
}
.ecoma-grid.two-half {
  grid-template-columns: 1fr
}
@media screen and (min-width:48em) {
  .ecoma-grid.two-half {
    gap: 3rem 0;
    grid-template-columns: 1fr 1fr
  }
}
.ecoma-grid.two-third {
  grid-template-columns: 1fr
}
@media screen and (min-width:48em) {
  .ecoma-grid.two-third {
    gap: 6.25rem;
    grid-template-columns: 1fr 2fr
  }
}
.ecoma-grid > * {
  min-width: 0
}
@media screen and (min-width:48em) {
  .ecoma-grid > :first-child:not(:last-child) .wrapper {
    padding-right: 1.75rem
  }
}
@media screen and (min-width:83.5em) {
  .ecoma-grid > :first-child:not(:last-child) .wrapper {
    margin-right: unset;
    margin-left: calc((min(100vw, 137.5rem) - 83.5rem - 17px)/2)
  }
}
@media screen and (min-width:48em) {
  .ecoma-grid > :last-child:not(:first-child) .wrapper {
    padding-left: 1.75rem
  }
}
@media screen and (min-width:83.5em) {
  .ecoma-grid > :last-child:not(:first-child) .wrapper {
    margin-right: calc((min(100vw, 137.5rem) - 83.5rem - 17px)/2);
    margin-left: unset
  }
}
.ecoma-grid .aside {
  padding-top: 2rem;
  padding-bottom: 2rem
}
@media screen and (max-width:47.9875em) {
  .ecoma-grid .aside .wrapper {
    max-width: 25rem;
    margin-left: unset
  }
}
.key-figures .container {
  display: grid;
  gap: 3rem 6rem
}
.key-figures .container:not(.full-width) {
  grid-template-columns: repeat(auto-fit, minmax(min(22.5rem, 100%), 1fr))
}
@media screen and (min-width:64em) {
  .key-figures .container.full-width .key-figures-list {
    grid-template-columns: repeat(4, 1fr);
    order: 1
  }
}
.key-figures-list {
  margin-bottom: unset;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-self: flex-start;
  gap: 3rem;
  order: 1
}
.key-figures-list:not(:last-child) {
  margin-bottom: 0
}
.key-figures-list > * {
  padding-left: 0
}
.incentives-list > ::after, .incentives-list > ::before, .key-figures-list > ::after, .key-figures-list > ::before, .media ul > ::after, .media ul > ::before, .nav-meta > ::after, .nav-meta > ::before, .quick-entries ul > ::after, .quick-entries ul > ::before {
  content: none;
  position: static;
  color: inherit;
  top: auto
}
.incentives-list > * ol, .incentives-list > * ul, .key-figures-list > * ol, .key-figures-list > * ul, .media ul > * ol, .media ul > * ul, .nav-meta > * ol, .nav-meta > * ul, .quick-entries ul > * ol, .quick-entries ul > * ul {
  margin-top: 0
}
@media screen and (min-width:64em) {
  .key-figures-list {
    order: unset
  }
}
.incentives-list li, .key-figures-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center
}
.key-figures-list .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6.875rem;
  width: 6.875rem;
  margin-bottom: .5rem
}
.key-figures-list .icon img {
  width: clamp(5rem, 12vw, 6.875rem);
  height: auto;
  max-height: 6.25rem
}
.key-figures-list .value {
  font-family: "purista-web", Arial, Tahoma, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .025em;
  line-height: 1.16666;
  font-size: 2.25rem
}
.key-figures-list .description {
  word-break: break-word
}
.incentives-list {
  margin-bottom: unset;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem
}
.incentives-list:not(:last-child) {
  margin-bottom: 0
}
.incentives-list > * {
  padding-left: 0
}
@media screen and (min-width:43.75em) {
  .incentives-list {
    margin-right: -5vw;
    margin-left: -5vw;
    grid-template-columns: repeat(auto-fill, minmax(13.75rem, 1fr))
  }
}
.incentives-list:not(:first-child) {
  margin-top: 4rem
}
.incentives-list:not(:last-child) {
  margin-bottom: 4rem
}
.incentives-list .icon {
  height: 6.875rem;
  width: 6.875rem;
  margin-bottom: .5rem
}
.incentives-list .description {
  word-break: break-word
}
@media screen and (min-width:43.75em) {
  .content-wrapper {
    padding-right: 5vw;
    padding-left: 5vw
  }
}
.nav-meta {
  margin-bottom: unset;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 2rem;
  justify-content: center
}
.media ul:not(:last-child), .nav-meta:not(:last-child) {
  margin-bottom: 0
}
.nav-meta > * {
  padding-left: 0
}
@media screen and (min-width:35.5em) {
  .nav-meta {
    justify-content: unset
  }
}
.language-switch {
  position: relative;
  display: inline-flex
}
.language-switch .flyout {
  display: none;
  position: absolute;
  bottom: 100%;
  margin-bottom: .5rem;
  background-color: #2d323c;
  padding: .5rem 2.25rem
}
:focus-within.language-switch .flyout {
  display: block
}
.language-switch li:not(:last-child) {
  margin-bottom: .25rem
}
.language-switch button {
  display: flex;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
  color: currentColor
}
.language-switch button::after, .language-switch button::before {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}
.language-switch button::before {
  content: "";
  margin-right: .75rem
}
.language-switch button::after {
  content: "";
  margin-left: .75rem
}
:focus-within.language-switch button::after {
  content: ""
}
.language-switch button::before {
  font-size: 1.5rem
}
.language-switch button:focus > span, .language-switch button:hover > span {
  text-decoration: underline
}
.cta-teaser {
  position: relative;
  color: #fff
}
.cta-teaser .container::after, .cta-teaser::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%
}
.cta-teaser::after {
  background-image: linear-gradient(to right, #0a0a0a 50%, transparent 50%)
}
.cta-teaser .container::after {
  background-color: #0a0a0a
}
.cta-teaser .container {
  position: relative;
  margin-right: 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 2rem;
  padding-right: 5vw;
  padding-bottom: 2rem;
  gap: 1.25rem
}
.cta-teaser .container .title {
  margin-top: 0;
  margin-bottom: 0
}
:is(h1, h2, h3, h4, h5, h6) {
  font-size: unset;
  font-weight: unset
}
:is(.h1, .h2, .h3, .h4, .h5, .h6), :is(h1, h2, h3, h4, h5, h6).title {
  /*font-family: "purista-web", Arial, Tahoma, sans-serif;
  font-weight: 700;*/
  /*text-transform: uppercase*/
}
:is(h1, h2, h3, h4, h5, h6).title {
  letter-spacing: .025em;
  line-height: 1.16666;font-size: 22px !important;
}
:is(.h1, .h2, .h3, .h4, .h5, .h6) {
  word-break: break-word
}
:is(.h1, .h2, .h3, .h4, .h5, .h6):not(:first-child) {
  margin-top: 0;
  font-size: 18px;
  line-height: 22px;
  text-transform: unset;
}
:is(.h1, .h2, .h3, .h4, .h5, .h6):not(:last-child) {
margin-bottom: .5em;
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;color: #f8ae1a;font-family: 'Roboto', sans-serif;
}
.h1 {
  line-height: 1.125
}
.h2 {
  line-height: 1.1;
  letter-spacing: 1.1px
}
.h3 {
  line-height: 1.17;
  letter-spacing: .9px
}
.h4, .h5 {
  line-height: 1.2;
  letter-spacing: .7px
}
.h5 {
  line-height: 1.29
}
.h6 {
  line-height: 1.33
}
.discreet {
  font-family: "proxima-nova", Arial, Tahoma, sans-serif;
  font-weight: 600;
  text-transform: unset;
  letter-spacing: unset
}
.h1, h1.title:not([class*=h]) {
  font-size: clamp(2rem, 4vw, 2.625rem)
}
.h2, h2.title:not([class*=h]) {
  font-size: clamp(1.75rem, 4vw, 2rem)
}
.h3, h3.title:not([class*=h]) {
  font-size: clamp(1.5rem, 4vw, 1.75rem)
}
.h4, h4.title:not([class*=h]) {
  font-size: clamp(1.25rem, 4vw, 1.5rem)
}
.h5, h5.title:not([class*=h]) {
  font-size: clamp(1.125rem, 4vw, 1.25rem)
}
.h6, h6.title:not([class*=h]) {
  font-size: clamp(.875rem, 4vw, 1rem)
}
.upper-line {
  font-family: "purista-web", Arial, Tahoma, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .025em;
  line-height: 1.16666;
  font-size: clamp(.875rem, 3vw, 1rem);
  color: var(--upper-line-color, #646e78);
  margin-top: unset;
  margin-bottom: .625em
}
.upper-line + :is(.h1, .h2, .h3, .h4, .h5, .h6) {
  margin-top: unset
}
.sub-headline {
  font-size: clamp(1.125rem, 4vw, 1.375rem);
  font-weight: 600;
  line-height: 1.16
}
.sub-headline:not(:first-child) {
  margin-top: unset
}
.sub-headline:not(:last-child) {
  margin-bottom: .75em
}
.sub-headline.primary {
  font-size: clamp(1.625rem, 4vw, 1.875rem);
  line-height: 1.2
}
.sub-headline.secondary {
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  line-height: 1.25
}
.media ul, .quick-entries ul {
  margin-bottom: unset
}
.media ul > *, .quick-entries ul > * {
  padding-left: 0
}
.quick-entries {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  padding-top: .75rem;
  padding-bottom: .75rem;
  align-self: center;
  z-index: 4
}
@media screen and (min-width:80em) {
  .quick-entries {
    position: fixed
  }
  .nav-main .quick-entries {
    display: none
  }
}
.quick-entries .wrapper {
  padding-right: 0
}
.quick-entries ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: .3125rem
}
.quick-entries ul:not(:last-child) {
  margin-bottom: unset
}
@media screen and (min-width:80em) {
  .quick-entries ul {
    gap: 2px
  }
}
.quick-entries li {
  display: flex
}
.quick-entries .button {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  gap: .5em;
  padding-right: 1em;
  padding-left: 1em;
  font-size: .75rem
}
.is-group .quick-entries .button {
  background-color: #0c3c64
}
.is-group .quick-entries .button:focus-visible, .is-group .quick-entries .button:hover {
  color: #0c3c64
}
@media screen and (min-width:80em) {
  .is-group .quick-entries .button {
    background-color: #0a0a0a
  }
  .is-group .quick-entries .button:focus-visible, .is-group .quick-entries .button:hover {
    color: #0a0a0a
  }
}
.quick-entries .button:focus-visible, .quick-entries .button:hover {
  color: var(--dark-color)
}
.quick-entries .button:focus-visible *, .quick-entries .button:hover * {
  fill: currentColor !important
}
@media screen and (min-width:80em) {
  .quick-entries .button {
    justify-content: unset;
    flex-grow: 1;
    flex-direction: row;
    background-color: #0a0a0a;
    font-size: unset
  }
  .quick-entries .button:focus-visible, .quick-entries .button:hover {
    color: #0a0a0a
  }
  .quick-entries .button:has(.counter) {
    padding-bottom: 2.5em
  }
}
.quick-entries svg {
  height: 1.25em;
  width: auto;
  max-width: 1.25em
}
@media screen and (min-width:80em) {
  .quick-entries svg {
    rotate: 90deg
  }
}
.quick-entries svg, .quick-entries svg .cls-1 {
  fill: currentColor
}
.quick-entries svg * {
  fill: #fff !important
}
.quick-entries .counter {
  position: absolute;
  top: 0;
  right: 0;
  padding: .25em .5em;
  background-color: var(--bright-color);
  color: #fff
}
@media screen and (min-width:80em) {
  .quick-entries .counter {
    top: unset;
    bottom: 0;
    writing-mode: initial
  }
}
.page-container > .quick-entries {
  display: none
}
@media screen and (min-width:80em) {
  .page-container > .quick-entries {
    pointer-events: none;
    padding-top: 0;
    padding-bottom: 0;
    display: block;
    width: auto;
    top: 129px;
    right: unset;
    bottom: unset;
    background-color: unset;
    writing-mode: tb
  }
  .page-container > .quick-entries .wrapper {
    width: calc(100vw - 17px);
    position: relative;
    padding-left: unset
  }
  .page-container > .quick-entries ul {
    pointer-events: all
  }
}
.video-stage {
  position: relative
}
.video-stage .container::after, .video-stage::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%
}
.video-stage::after {
  background-image: linear-gradient(to right, #0a0a0a 50%, transparent 50%)
}
.video-stage .container::after {
  background-color: #0a0a0a
}
.video-stage .container {
  position: relative;
  margin-right: 5vw
}
.video-stage .wrapper {
  padding-left: unset
}
@media screen and (max-width:63.9875em) {
  .video-stage .wrapper {
    padding-right: unset
  }
}
.video-stage .container {
  padding-bottom: 2.25rem
}
.video-stage .media-container {
  --video-format: 2.3333333333;
  pointer-events: none;
  position: relative;
  overflow: hidden;
  aspect-ratio: var(--video-format, 2.3333333333);
  margin-right: -5vw
}
.video-stage .media-container.other-format {
  --video-format: 16 / 9
}
.video-stage .iframely-embed {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%)
}
.video-stage iframe, .video-stage video {
  width: 100%;
  object-fit: cover;
  border: 0;
  aspect-ratio: var(--video-format, 2.3333333333)
}
.breadcrumb:not(:last-child) {
  margin-bottom: 1.5rem
}
@media print {
  .breadcrumb {
    display: none
  }
}
.breadcrumb li, .breadcrumb ol {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: .375em
}
.breadcrumb ol {
  list-style-type: none;
  padding-left: unset
}
.breadcrumb li {
  font-size: .8125rem;
  color: #646e78
}
.breadcrumb li:not(:first-child)::before {
  content: "/"
}
.breadcrumb a {
  text-decoration: initial;
  color: inherit
}
:is(.image-block, .content-media-block) .figure {
  margin-bottom: unset
}
.image-block.component {
  --section-padding: 3rem
}
.image-block .image-container {
  aspect-ratio: var(--aspect-ratio, 3/1);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed
}
@supports (-webkit-touch-callout:none) {
  .image-block .image-container {
    background-attachment: unset
  }
}
.image-block .caption {
  padding-top: 1rem;
  color: #626262
}
.content-media-block .component {
  --section-padding: 3rem
}
.content-media-block .component:not(.image) {
  display: flex;
  flex-direction: column;
  justify-content: center
}
.content-media-block.reverse .figure {
  margin-right: clamp(4rem, 4vw, 12.5rem);
  margin-left: unset
}
@media screen and (max-width:47.9875em) {
  .content-media-block .image {
    --section-padding: 0
  }
}
.content-media-block .figure {
  margin-left: clamp(4rem, 4vw, 12.5rem)
}
.media-banner {
  --section-padding-top: 0
}
.media-banner .container {
  margin-right: -2vw;
  margin-left: -2vw
}
@media screen and (min-width:64em) {
  .media-banner .container {
    margin-left: clamp(-4vw, -4vw, -2rem);
    margin-right: 0
  }
}
.media-banner .figure {
  margin-bottom: 0
}
.media-banner :is(img, video) {
  max-width: 100%;
  aspect-ratio: 2.3333333333
}
.swiper {
  --swiper-theme-color: #f8ae1a
}
.swiper .slider-controls .swiper-pagination {
  --swiper-pagination-progressbar-bg-color: #e6e6e8;
  min-height: unset;
  opacity: 1
}
.swiper .slider-controls .navigation-container {
  margin-block-start: 1.25rem;
  margin-inline-start: auto;
  height: 1.875rem;
  width: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center
}
.swiper .slider-controls .navigation-container .swiper-button-next, .swiper .slider-controls .navigation-container .swiper-button-prev {
  position: relative;
  max-height: 100%
}
.swiper .slider-controls .navigation-container .swiper-button-next::after, .swiper .slider-controls .navigation-container .swiper-button-prev::after {
  content: "";
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-height: 100%;
  display: flex;
  align-items: center;
  font-size: 2.5rem
}
.swiper .slider-controls .navigation-container .swiper-button-next::after {
  content: ""
}
.division-label {
  writing-mode: tb;
  position: absolute;
  top: 0;
  right: 0;
  font-size: clamp(.875rem, 2vw, 1rem);
  color: #fff;
  background-color: var(--dark-color);
  padding: .75em .5em
}
@media only screen and (max-width:425px) {
  #onetrust-banner-sdk #onetrust-button-group-parent #onetrust-button-group button {
    margin-right: unset
  }
}
#onetrust-banner-sdk #onetrust-button-group-parent #onetrust-button-group .onetrust-banner-options {
  max-width: unset
}
@media only screen and (max-width:640px) {
  #onetrust-banner-sdk #onetrust-button-group-parent #onetrust-button-group .onetrust-banner-options {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap-reverse;
    justify-content: center;
    gap: 0 .75rem
  }
}
.cookie-container .wrapper {
  width: calc(100vw - 17px);
  position: relative
}
.cookie-container button {
  position: absolute;
  bottom: 0;
  right: 3.3125rem;
  width: 2.8125rem;
  height: 2.8125rem
}
.is-group {
  --dark-color: #f8ae1a;
  --dark-color-rgb: 80, 125, 180;
  --bright-color: #6eabf6;
  --bright-color-rgb: 110, 171, 246
}
.is-metall {
  --dark-color: #eb8723;
  --dark-color-rgb: 235, 135, 35;
  --bright-color: #ff8c1e;
  --bright-color-rgb: 255, 140, 30
}
.is-controls {
  --dark-color: #00aeef;
  --dark-color-rgb: 0, 174, 239;
  --bright-color: #00e1ff;
  --bright-color-rgb: 0, 225, 255
}
.is-aviation, .is-defence {
  --dark-color: #5b91cc;
  --dark-color-rgb: 91, 145, 204
}
.is-defence {
  --bright-color: #64afff;
  --bright-color-rgb: 100, 175, 255
}
.is-aviation {
  --bright-color: #5ca3df;
  --bright-color-rgb: 92, 163, 223
}
.is-metering {
  --dark-color: #00b5ad;
  --dark-color-rgb: 0, 181, 173;
  --bright-color: #00ebdc;
  --bright-color-rgb: 0, 235, 220
}
.is-affiliated {
  --dark-color: #5f646e;
  --dark-color-rgb: 95, 100, 110;
  --bright-color: #8c919b;
  --bright-color-rgb: 140, 145, 155
}
.is-career {
  --dark-color: #f8ae1a;
  --dark-color-rgb: 80, 125, 180;
  --bright-color: #6eabf6;
  --bright-color-rgb: 110, 171, 246
}
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(360deg)
  }
}
@keyframes lg-right-end {
  0%, to {
    left: 0
  }
  50% {
    left: -30px
  }
}
@keyframes lg-left-end {
  0%, to {
    left: 0
  }
  50% {
    left: 30px
  }
}
@keyframes lg-play-stroke {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px
  }
  to {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px
  }
}
@keyframes lg-play-rotate {
  to {
    transform: rotate(360deg)
  }
}
html, sub, sup {
  position: relative
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  font-size: 100%
}
body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: "proxima-nova", Arial, Tahoma, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #0a0a0a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-y: scroll
}
h1 {
  font-size: unset;
  margin: unset
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible
}
code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em
}
.key-value tbody, .key-value tfoot, a {
  background-color: transparent
}
abbr[title] {
  border-bottom: 0;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted
}
b, strong {
  font-weight: 700;
  line-height: inherit
}
small {
  font-size: 80%
}
sub, sup {
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline
}
sub {
  bottom: -.25em
}
sup {
  top: -.5em
}
img {
  border-style: none;
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic
}
button, input, optgroup, select, textarea {
  font-size: 100%;
  margin: 0
}
input, optgroup, select {
  line-height: 1.15
}
button, input {
  overflow: visible
}
button, select {
  text-transform: none
}
[type=button], [type=reset], [type=submit] {
  -webkit-appearance: button
}
[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0
}
[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText
}
fieldset {
  min-width: 0;
  border: 0;
  margin: 0;
  padding: 0
}
legend {
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal
}
progress {
  vertical-align: baseline
}
textarea {
  overflow: auto;
  height: auto;
  min-height: 50px
}
[type=checkbox], [type=radio], legend {
  box-sizing: border-box;
  padding: 0
}
[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto
}
[type=search] {
  outline-offset: -2px
}
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit
}
details {
  display: block
}
summary {
  display: list-item
}
[hidden], template {
  display: none
}
[data-whatinput=mouse] *, [data-whatinput=mouse] :focus, [data-whatinput=touch] *, [data-whatinput=touch] :focus, [data-whatintent=mouse] *, [data-whatintent=mouse] :focus, [data-whatintent=touch] *, [data-whatintent=touch] :focus {
  outline: 0
}
[draggable=false] {
  -webkit-touch-callout: none;
  -webkit-user-select: none
}
.foundation-mq {
  font-family: "small=0em&medium=43.75em&large=64em&xlarge=80em&xxlarge=90em&mm=0em&onetrust-banner-small=26.5625em&ml=30em&mw=35.5em&onetrust-banner-medium=40em&tp=48em&hp=60em&tl=63.75em&tw=78.75em&navigation=80em&dl=88.75em&dw=102.75em&hd=118.75em&ultrawide=120.0625em&xw=158.75em"
}
*, ::after, ::before {
  box-sizing: inherit
}
select {
  box-sizing: border-box
}
.map_canvas embed, .map_canvas img, .map_canvas object, .mqa-display embed, .mqa-display img, .mqa-display object {
  max-width: none !important
}
button {
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: 0 0;
  line-height: 1;
  cursor: auto
}
[data-whatinput=mouse] button {
  outline: 0
}
pre {
  overflow: auto;
  -webkit-overflow-scrolling: touch
}
button, input, optgroup {
  font-family: inherit
}
.is-visible {
  display: block !important
}
.is-hidden {
  display: none !important
}
.core-colors {
  font-family: "is-group=#f8ae1a&is-metall=#eb8723&is-controls=#00aeef&is-defence=#5b91cc&is-aviation=#5b91cc&is-metering=#00b5ad&is-affiliated=#5f646e&is-career=#f8ae1a"
}
@media print {
  body {
    background-color: #fff
  }
}
em, i {
  font-style: italic;
  line-height: inherit
}
figure {
  margin: 0
}
.iframe {
  width: 100%;
  height: 85vh
}
@media print {
  .iframe {
    display: none
  }
}
.division, th {
  font-weight: 700
}
.division > *, dl dt {
  color: var(--dark-color)
}
.dateline {
  font-weight: 600;
  display: inline-block;
  margin-top: .5rem;
  margin-bottom: .5rem
}
.dateline:first-child {
  margin-top: 0
}
.no-transitions * {
  transition: none !important
}
.decoration > * {
  display: inline-block;
  font-size: .625rem;
  font-weight: 600;
  line-height: 1;
  vertical-align: text-bottom;
  text-transform: uppercase;
  color: #626262;
  padding: .25rem .375rem;
  background-color: #e6e6e8
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important
}
.fake-input, [type=color], [type=date], [type=datetime-local], [type=datetime], [type=email], [type=month], [type=number], [type=password], [type=search], [type=tel], [type=text], [type=time], [type=url], [type=week], textarea {
  width: 100%
}
.fake-input, [type=color], [type=date], [type=datetime-local], [type=datetime], [type=email], [type=month], [type=number], [type=password], [type=search], [type=tel], [type=text], [type=time], [type=url], [type=week], select, textarea {
  height: 50px;
  color: #404040;
  background-color: #fff;
  border-width: 0px;
  border-style: solid;
  border-color: #e6ecf2;
  border-radius: 0;
  padding-right: .875rem;
  padding-left: .875rem;
  font-family: inherit;
  font-weight: 500;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .25s ease
}
.fake-input:focus-visible, [type=color]:focus-visible, [type=date]:focus-visible, [type=datetime-local]:focus-visible, [type=datetime]:focus-visible, [type=email]:focus-visible, [type=month]:focus-visible, [type=number]:focus-visible, [type=password]:focus-visible, [type=search]:focus-visible, [type=tel]:focus-visible, [type=text]:focus-visible, [type=time]:focus-visible, [type=url]:focus-visible, [type=week]:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 0;
  background-color: #fff;
  color: #404040;
  border-bottom-color: #a3b9cf
}
.fake-input::-webkit-input-placeholder, .fake-input::placeholder, .fake-input:focus::-webkit-input-placeholder, [type=color]::-webkit-input-placeholder, [type=color]::placeholder, [type=color]:focus::-webkit-input-placeholder, [type=date]::-webkit-input-placeholder, [type=date]::placeholder, [type=date]:focus::-webkit-input-placeholder, [type=datetime-local]::-webkit-input-placeholder, [type=datetime-local]::placeholder, [type=datetime-local]:focus::-webkit-input-placeholder, [type=datetime]::-webkit-input-placeholder, [type=datetime]::placeholder, [type=datetime]:focus::-webkit-input-placeholder, [type=email]::-webkit-input-placeholder, [type=email]::placeholder, [type=email]:focus::-webkit-input-placeholder, [type=month]::-webkit-input-placeholder, [type=month]::placeholder, [type=month]:focus::-webkit-input-placeholder, [type=number]::-webkit-input-placeholder, [type=number]::placeholder, [type=number]:focus::-webkit-input-placeholder, [type=password]::-webkit-input-placeholder, [type=password]::placeholder, [type=password]:focus::-webkit-input-placeholder, [type=search]::-webkit-input-placeholder, [type=search]::placeholder, [type=search]:focus::-webkit-input-placeholder, [type=tel]::-webkit-input-placeholder, [type=tel]::placeholder, [type=tel]:focus::-webkit-input-placeholder, [type=text]::-webkit-input-placeholder, [type=text]::placeholder, [type=text]:focus::-webkit-input-placeholder, [type=time]::-webkit-input-placeholder, [type=time]::placeholder, [type=time]:focus::-webkit-input-placeholder, [type=url]::-webkit-input-placeholder, [type=url]::placeholder, [type=url]:focus::-webkit-input-placeholder, [type=week]::-webkit-input-placeholder, [type=week]::placeholder, [type=week]:focus::-webkit-input-placeholder, select::-webkit-input-placeholder, select::placeholder, select:focus::-webkit-input-placeholder, textarea::-webkit-input-placeholder, textarea::placeholder, textarea:focus::-webkit-input-placeholder {
  color: #8c919b
}
.fake-input::-ms-clear, .fake-input::-ms-reveal, [type=color]::-ms-clear, [type=color]::-ms-reveal, [type=date]::-ms-clear, [type=date]::-ms-reveal, [type=datetime-local]::-ms-clear, [type=datetime-local]::-ms-reveal, [type=datetime]::-ms-clear, [type=datetime]::-ms-reveal, [type=email]::-ms-clear, [type=email]::-ms-reveal, [type=month]::-ms-clear, [type=month]::-ms-reveal, [type=number]::-ms-clear, [type=number]::-ms-reveal, [type=password]::-ms-clear, [type=password]::-ms-reveal, [type=search]::-ms-clear, [type=search]::-ms-reveal, [type=tel]::-ms-clear, [type=tel]::-ms-reveal, [type=text]::-ms-clear, [type=text]::-ms-reveal, [type=time]::-ms-clear, [type=time]::-ms-reveal, [type=url]::-ms-clear, [type=url]::-ms-reveal, [type=week]::-ms-clear, [type=week]::-ms-reveal, select::-ms-clear, select::-ms-reveal, textarea::-ms-clear, textarea::-ms-reveal {
  display: none;
  width: 0;
  height: 0
}
.fake-input::-webkit-search-cancel-button, .fake-input::-webkit-search-decoration, .fake-input::-webkit-search-results-button, .fake-input::-webkit-search-results-decoration, [type=color]::-webkit-search-cancel-button, [type=color]::-webkit-search-decoration, [type=color]::-webkit-search-results-button, [type=color]::-webkit-search-results-decoration, [type=date]::-webkit-search-cancel-button, [type=date]::-webkit-search-decoration, [type=date]::-webkit-search-results-button, [type=date]::-webkit-search-results-decoration, [type=datetime-local]::-webkit-search-cancel-button, [type=datetime-local]::-webkit-search-decoration, [type=datetime-local]::-webkit-search-results-button, [type=datetime-local]::-webkit-search-results-decoration, [type=datetime]::-webkit-search-cancel-button, [type=datetime]::-webkit-search-decoration, [type=datetime]::-webkit-search-results-button, [type=datetime]::-webkit-search-results-decoration, [type=email]::-webkit-search-cancel-button, [type=email]::-webkit-search-decoration, [type=email]::-webkit-search-results-button, [type=email]::-webkit-search-results-decoration, [type=month]::-webkit-search-cancel-button, [type=month]::-webkit-search-decoration, [type=month]::-webkit-search-results-button, [type=month]::-webkit-search-results-decoration, [type=number]::-webkit-search-cancel-button, [type=number]::-webkit-search-decoration, [type=number]::-webkit-search-results-button, [type=number]::-webkit-search-results-decoration, [type=password]::-webkit-search-cancel-button, [type=password]::-webkit-search-decoration, [type=password]::-webkit-search-results-button, [type=password]::-webkit-search-results-decoration, [type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration, [type=search]::-webkit-search-results-button, [type=search]::-webkit-search-results-decoration, [type=tel]::-webkit-search-cancel-button, [type=tel]::-webkit-search-decoration, [type=tel]::-webkit-search-results-button, [type=tel]::-webkit-search-results-decoration, [type=text]::-webkit-search-cancel-button, [type=text]::-webkit-search-decoration, [type=text]::-webkit-search-results-button, [type=text]::-webkit-search-results-decoration, [type=time]::-webkit-search-cancel-button, [type=time]::-webkit-search-decoration, [type=time]::-webkit-search-results-button, [type=time]::-webkit-search-results-decoration, [type=url]::-webkit-search-cancel-button, [type=url]::-webkit-search-decoration, [type=url]::-webkit-search-results-button, [type=url]::-webkit-search-results-decoration, [type=week]::-webkit-search-cancel-button, [type=week]::-webkit-search-decoration, [type=week]::-webkit-search-results-button, [type=week]::-webkit-search-results-decoration, select::-webkit-search-cancel-button, select::-webkit-search-decoration, select::-webkit-search-results-button, select::-webkit-search-results-decoration, textarea::-webkit-search-cancel-button, textarea::-webkit-search-decoration, textarea::-webkit-search-results-button, textarea::-webkit-search-results-decoration {
  display: none
}
.fake-input:disabled, .fake-input[readonly]:not([data-date]), [type=color]:disabled, [type=color][readonly]:not([data-date]), [type=date]:disabled, [type=date][readonly]:not([data-date]), [type=datetime-local]:disabled, [type=datetime-local][readonly]:not([data-date]), [type=datetime]:disabled, [type=datetime][readonly]:not([data-date]), [type=email]:disabled, [type=email][readonly]:not([data-date]), [type=month]:disabled, [type=month][readonly]:not([data-date]), [type=number]:disabled, [type=number][readonly]:not([data-date]), [type=password]:disabled, [type=password][readonly]:not([data-date]), [type=search]:disabled, [type=search][readonly]:not([data-date]), [type=tel]:disabled, [type=tel][readonly]:not([data-date]), [type=text]:disabled, [type=text][readonly]:not([data-date]), [type=time]:disabled, [type=time][readonly]:not([data-date]), [type=url]:disabled, [type=url][readonly]:not([data-date]), [type=week]:disabled, [type=week][readonly]:not([data-date]), select:disabled, select[readonly]:not([data-date]), textarea:disabled, textarea[readonly]:not([data-date]) {
  color: #8c919b;
  background-color: #fff;
  border-color: #e6ecf2;
  cursor: not-allowed;
  pointer-events: none
}
.fake-input:-webkit-autofill, [type=color]:-webkit-autofill, [type=date]:-webkit-autofill, [type=datetime-local]:-webkit-autofill, [type=datetime]:-webkit-autofill, [type=email]:-webkit-autofill, [type=month]:-webkit-autofill, [type=number]:-webkit-autofill, [type=password]:-webkit-autofill, [type=search]:-webkit-autofill, [type=tel]:-webkit-autofill, [type=text]:-webkit-autofill, [type=time]:-webkit-autofill, [type=url]:-webkit-autofill, [type=week]:-webkit-autofill, select:-webkit-autofill, textarea:-webkit-autofill {
  -webkit-transition: background-color 50000s ease-in-out 0s, color 50000s ease-in-out 0s;
  transition: background-color 50000s ease-in-out 0s, color 50000s ease-in-out 0s
}
[data-whatintent=touch] .fake-input:focus-visible, [data-whatintent=touch] [type=color]:focus-visible, [data-whatintent=touch] [type=date]:focus-visible, [data-whatintent=touch] [type=datetime-local]:focus-visible, [data-whatintent=touch] [type=datetime]:focus-visible, [data-whatintent=touch] [type=email]:focus-visible, [data-whatintent=touch] [type=month]:focus-visible, [data-whatintent=touch] [type=number]:focus-visible, [data-whatintent=touch] [type=password]:focus-visible, [data-whatintent=touch] [type=search]:focus-visible, [data-whatintent=touch] [type=tel]:focus-visible, [data-whatintent=touch] [type=text]:focus-visible, [data-whatintent=touch] [type=time]:focus-visible, [data-whatintent=touch] [type=url]:focus-visible, [data-whatintent=touch] [type=week]:focus-visible, [data-whatintent=touch] select:focus-visible, [data-whatintent=touch] textarea:focus-visible {
  font-size: 16px
}
@media print {
  .fake-input, [type=color], [type=date], [type=datetime-local], [type=datetime], [type=email], [type=month], [type=number], [type=password], [type=search], [type=tel], [type=text], [type=time], [type=url], [type=week], select, textarea {
    display: none
  }
}
label .tooltip {
  position: static
}
.submit-input {
  display: flex;
  gap: .5rem
}
.submit-input > * {
  width: 100%
}
.submit-input .button {
  width: auto
}
.submit-input .button .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}
.icon-input, form {
  position: relative
}
.icon-input > :first-child {
  padding-right: 3rem
}
.icon-input .icon {
  position: absolute;
  top: 17px;
  right: 0;
  display: flex;
  align-items: center;
  padding-right: .875rem;
  padding-left: .875rem
}
.icon-input .icon svg {
  height: 1.5rem;
  width: 1.5rem;
  fill: #87919b
}
textarea {
  max-width: 100%;
  min-height: 10rem;
  line-height: 1.5;
  padding-top: .75rem
}
select {
  background-origin: content-box;
  background-position: right 0 center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZlcnNpb249JzEuMScgd2lkdGg9JzMyJyBoZWlnaHQ9JzI0JyB2aWV3Qm94PScwIDAgMzIgMjQnPjxwb2x5Z29uIHBvaW50cz0nMCwwIDMyLDAgMTYsMjQnIHN0eWxlPSdmaWxsOiAjMDAwMDAwJz48L3BvbHlnb24+PC9zdmc+);
  width: 100%;
  min-width: 7.8125rem
}
select::-ms-expand {
  display: none
}
select:focus {
  outline: 0
}
@media print {
  select.select2 {
    display: none
  }
}
[type=date]::-webkit-calendar-picker-indicator {
  margin-left: .5rem
}
[type=date]::-webkit-clear-button, [type=date]::-webkit-inner-spin-button {
  display: none
}
[type=number] {
  -moz-appearance: textfield
}
[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0
}
[type=file] {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0
}
.accordion-table td :first-child, fieldset > :first-child {
  margin-top: 0
}
fieldset + fieldset {
  margin-top: 2rem
}
fieldset.highlight {
  padding: 1.5rem;
  border: 2px solid #e6ecf2;
  margin-bottom: 2rem
}
.stift-wrapper {
  height: 0;
  width: 0;
  overflow: hidden
}
.fake-input {
  display: flex;
  position: relative
}
.fake-input.file-input {
  padding-right: 4rem
}
.fake-input.file-input svg {
  pointer-events: none;
  right: .875rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 1.75rem;
  width: 1.75rem
}
.fake-input > span {
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  white-space: nowrap;
  align-self: center;
  flex-grow: 1;
  flex-shrink: 0
}
.checkradio-wrapper {
  position: relative;
  padding-left: 2rem
}
.checkradio-wrapper [type=checkbox], .checkradio-wrapper [type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0
}
.checkradio-wrapper [type=checkbox] + label::before, .checkradio-wrapper [type=radio] + label::before {
  content: "";
  position: absolute;
  top: .125rem;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #fff;
  border-width: 1px;
  border-style: solid;
  border-color: #f0f0f0
}
.checkradio-wrapper.is-small [type=radio] + label::before {
  width: 1rem;
  height: 1rem
}
.checkradio-wrapper.is-small [type=radio]:checked + label::after {
  top: 8px;
  left: 6px;
  width: 6px;
  height: 6px
}
.checkradio-wrapper [type=radio]:checked + label::after {
  content: "";
  position: absolute;
  top: .5rem;
  left: .375rem;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--dark-color)
}
.checkradio-wrapper [type=radio] + label::before {
  border-radius: 100%
}
.checkradio-wrapper [type=checkbox]:checked + label::after {
  content: "";
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  line-height: 1;
  font-size: inherit;
  position: absolute;
  top: .25rem;
  left: .1875rem;
  color: var(--dark-color)
}
.checkradio-wrapper [type=checkbox] + label::before {
  border-radius: 0
}
.checkradio-wrapper:not(.label) .label-text {
  font-weight: 400;
  color: #404040
}
.input-group {
  margin-bottom: 1rem
}
.input-group:not(:has(input[type=checkbox]))::after {
  content: "*";
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  color: #ea1a4b
}
.input-group.horizontal {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap
}
.input-group .label-wrapper {
  margin-right: 1.25rem;
  margin-bottom: .5rem
}
.input-group + label {
  margin-bottom: 1.5rem
}
form:not(:last-child) {
  margin-bottom: 2rem
}
form::after {
  content: "";
  background-color: rgba(255, 255, 255, .8);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease-in-out
}
form.is-loading::before {
  content: "";
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  line-height: 1;
  font-size: 5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #0a0a0a;
  animation: centered-rotation 1s infinite linear
}
form.is-loading::after {
  opacity: 1;
  pointer-events: none
}
form .grid {
  gap: 0 1.5rem
}
label {
  display: inline-block
}
input:not([type=radio]) + label::after, label:has(+:is(input, select):required)::after {
  content: "*";
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  color: #ea1a4b
}
label.error {
  align-self: start;
  background-color: #ea1a4b;
  color: #fff;

  padding: .25rem .875rem;
  margin-top: 1px;
  order: 1
}
.label-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem
}
.label-text, .label-text + * {
  display: inline-block;
  
  font-weight: 400;
  margin-bottom: .5rem
}
.label-text + * {
  font-weight: 400;
  margin-left: 2px
}
dl dd, ul {
  margin-left: 0
}
ul {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 1.5rem;
  padding: 0
}
.list-item, ul > * {
  position: relative;
  display: block
}
/*.list-item::before, ul > ::before {
  content: "";
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  line-height: 1;
  font-size: inherit;
  position: absolute;
  top: .125em;
  left: 0;
  color: var(--dark-color)
}*/
/*ul > * > ol, ul > * > ul {
  margin-top: 1.5rem
}*/
/*.list-item, ol, ul > * {
  padding-left: 1.5rem
}*/
/*dl dd {
  margin-bottom: .5rem;
  padding-bottom: .5rem;
  border-bottom: 3px solid rgba(237, 242, 247, .5)
}
dl dd:last-child {
  border-bottom: none
}*/
.dl-table {
  display: flow-root
}
@supports not (display:flow-root) {
  .dl-table {
    display: block
  }
  .dl-table::after {
    content: "";
    display: table;
    clear: both
  }
}
.dl-table dt {
  padding-right: 1rem;
  float: left;
  width: 25%;
  min-width: 7.5rem
}
.dl-table dd {
  font-size: inherit;
  float: left;
  width: 75%
}
.dl-table dd + dt {
  clear: both
}
p:not(:first-child) {
  margin-top: 1em
}
p:not(:last-child) {
  margin-bottom: 1em
}
p.primary {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.4;
  margin-top: unset
}
p.whispered {
  font-size: .875rem
}
table {
  display: block;
  overflow-x: auto;
  border-collapse: collapse;
  width: 100%;
  border-radius: 0;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 2rem
}
tbody {
  background-color: #fefefe
}
tfoot, thead {
  color: #0a0a0a
}
tfoot {
  border: 1px solid #f1f1f1;
  background-color: #fefefe;
  background: #f1f1f1
}
caption {
  font-weight: 700
}
thead {
  background: #f8f8f8;
  border: 0;
  background-color: transparent
}
tfoot tr, thead tr {
  background: 0 0
}
tfoot td, tfoot th, thead td, thead th {
  padding: .5rem .625rem .625rem;
  font-weight: 700;
  text-align: left
}
caption, tbody th {
  padding: .5rem .625rem .625rem
}
tbody tr:nth-child(odd) {
  background-color: #edf2f7
}
table.unstriped tbody {
  background-color: #fefefe
}
table.unstriped tbody tr {
  border-bottom: 1px solid #f1f1f1;
  background-color: #fefefe
}
thead th {
  border-bottom: 2px solid #edf2f7
}
tbody {
  border: 0
}
tbody td {
  padding: 1rem .625rem
}
tbody th {
  padding-top: 1rem;
  padding-bottom: 1rem
}
tbody td:first-child, tbody th:first-child, th:first-child {
  padding-left: 1rem
}
tbody td:last-child, tbody th:last-child, th:last-child {
  padding-right: 1rem
}
tbody tr {
  background-color: #fff;
  border-bottom-color: #edf2f7;
  border-bottom-style: solid;
  border-bottom-width: 1px
}
tbody tr:focus-visible, tbody tr:hover {
  border-bottom-color: #87919b
}
td, th {
  text-align: left;
  vertical-align: top
}
td {
  min-width: 10rem
}
.schluesselKriterium {
  font-weight: 700;
  color: var(--dark-color)
}
.table-scroll {
  display: block;
  width: 100%;
  overflow-x: auto;
  margin-bottom: 2rem
}
.table-scroll > table {
  display: table;
  margin-bottom: 0
}
.table-image {
  height: 5rem
}
.accordion-table .gallery-item {
  display: block
}
.accordion-table .figure {
  padding-bottom: 66.6666666667%;
  max-width: 10rem
}
@supports (--a:0) {
  .accordion-table .figure {
    height: unset;
    padding-bottom: unset;
    aspect-ratio: var(--aspect-ratio, 1.5)
  }
}
.accordion-table td:first-child {
  min-width: 8.5rem
}
.key-value {
  display: table;
  font-size: .875rem;
  margin-bottom: 1rem
}
.key-value thead th {
  font-weight: 600
}
.key-value tbody tr {
  background-color: transparent;
  border-bottom-style: dotted
}
.key-value tbody tr:focus-visible, .key-value tbody tr:hover {
  border-bottom-style: solid
}
.key-value tbody tr:nth-child(odd) {
  background-color: #f6f9fb
}
.key-value tfoot td {
  font-weight: 400;
  padding-top: .5rem
}
.key-value td, .key-value th {
  width: 50%;
  padding: .25rem .5rem
}
.key-value td {
  border-width: 1px;
  border-style: dotted;
  border-color: #c3ccd2;
  border-bottom: none;
  border-left: none;
  vertical-align: middle;
  min-width: 1px
}
.key-value td:first-child {
  padding-left: .5rem
}
.key-value td:last-child {
  border-right: none
}
.component {
  background-color: var(--section-background-color);
  padding-top: var(--section-padding-top, var(--section-padding, 2rem));
  padding-bottom: var(--section-padding-bottom, var(--section-padding, 2rem));
  margin-top: unset;
  margin-bottom: unset
}
.component.primary {
  --section-background-color: #fff
}
@media screen and (min-width:43.75em) {
  .component.primary {
    --section-padding: 4rem
  }
}
.component.small {
  --section-padding: 2rem
}
.figure {
  overflow: hidden;
  height: 0;
  position: relative;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 2rem;
  margin-left: 0;
  padding-bottom: 33.3333333333%
}
@supports (--a:0) {
  .figure {
    height: unset;
    padding-bottom: unset;
    aspect-ratio: var(--aspect-ratio, 3)
  }
}
.figure.has-shadow::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: #f8ae1a;
  opacity: .1;
  transition: opacity .3s ease-in-out
}
.figure.has-svg img {
  height: 90%
}
.figure.caption-below .caption {
  font-weight: 400;
  padding: 0;
  color: inherit;
  background-image: none;
  margin-top: .5rem;
  position: static;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto
}
.figure .figure-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: 50%;
  display: flex;
  justify-content: center;
  align-items: center
}
.figure .images {
  width: 100%;
  height: 100%
}
.figure .images > * {
  display: block;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity .5s ease-in-out
}
.figure .images > :first-child {
  opacity: 0
}
@media print {
  .figure .images > :first-child {
    opacity: 1;
    z-index: 1
  }
  .figure .images > :nth-child(2) {
    display: none
  }
}
.figure .images .is-visible {
  opacity: 1;
  z-index: 1
}
.figure .images .is-visible + * {
  opacity: 0
}
.figure .caption {
  font-size: .75rem;
  font-weight: 600;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  top: auto;
  padding: 2rem 1rem 1rem;
  color: #fff;
  background-image: linear-gradient(0deg, rgba(0, 40, 80, .75), rgba(0, 40, 80, 0));
  transform: translateZ(0)
}
@media screen and (min-width:35.5em) {
  .figure .caption {
    font-size: .875rem
  }
}
.date, .modified-date, time {
  font-weight: 600;
  color: #646e78
}
.modified-date {
  font-size: .875em
}
.ckeditor {
  padding: 1rem
}
.cke_panel_container body, .cke_panel_frame body, .ckeditor {
  background-color: #fff
}
.cke_panel_list {
  margin-bottom: unset
}
.cke_panel_list > * {
  padding-left: 0
}
.cke_panel_list > ::after, .cke_panel_list > ::before, .page-footer ul > ::after, .page-footer ul > ::before {
  content: none;
  position: static;
  color: inherit;
  top: auto
}
.cke_panel_list > * ol, .cke_panel_list > * ul, .page-footer ul > * ol, .page-footer ul > * ul {
  margin-top: 0
}
.cke_panel_list a {
  text-decoration: none
}
.jumpmark {
  display: block;
  visibility: hidden
}
.trend {
  font-size: 1.5rem;
  font-weight: 600;
  color: #646e78
}
.trend.negative .trend-wrapper {
  color: #ea1a4b
}
.trend.negative .trend-wrapper::after {
  content: "";
  display: inline-block;
  line-height: 1
}
.trend.positive .trend-wrapper {
  color: #23ca75
}
.trend .trend-wrapper::after, .trend.positive .trend-wrapper::after {
  content: "";
  display: inline-block;
  line-height: 1
}
.trend .trend-wrapper {
  position: relative;
  display: inline-block;
  padding-right: 1.5em
}
.trend .trend-wrapper::after {
  content: "";
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: inherit;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0
}
.trend .trend-wrapper .absolute {
  margin-right: .25rem
}
.trend .trend-wrapper + .absolute {
  display: block;
  font-size: 1rem
}
@page {
  size: A4;
  margin-top: 2cm;
  margin-right: 3cm;
  margin-bottom: 1.3cm;
  margin-left: 2.5cm
}
.overlay-helper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  background-color: rgba(10, 10, 10, .5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease 0s
}
@media screen and (min-width:0em) {
  .overlay-helper {
    z-index: 20
  }
}
@media screen and (min-width:63.75em) {
  .overlay-helper {
    z-index: 50
  }
}
.is-overlay-active .overlay-helper {
  opacity: 1;
  visibility: visible;
  pointer-events: all
}
.page-header {
  z-index: 6;
  /*position: relative;
  height: 4rem;
  position: sticky;
  top: 0;
  transition: transform .6s ease-in*/
}
.page-header .container::after, .page-header::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%
}
/*.page-header::after {
  background-image: linear-gradient(to right, #0a0a0a 50%, transparent 50%);
  transition: background-color 1s ease-out
}*/
.page-header .container::after {
  background-color: #0a0a0a
}
.page-header .container {
  position: relative;
}
@media screen and (min-width:80em) {
  .page-header {
    height: auto;
	  background-color: rgba(0, 0, 0, 0);
  box-shadow: none;
  background-image: linear-gradient( to bottom, rgb(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100% );
  }
}
.page-header:not(.is-nav-open).is-offscreen {
  transform: translateY(-4rem)
}
@media screen and (min-width:80em) {
  .page-header:not(.is-nav-open).is-offscreen {
    transform: translateY(-8.0625rem)
  }
}
.page-header:not(.is-nav-open).is-instant {
  transition: transform 0s ease-in
}
@media screen and (min-width:80em) {
  .page-header.header-full-width:not(.page-header.is-nav-open.is-current, .page-header.header-full-width.is-current)::after, .page-header.is-nav-open:not(.page-header.is-nav-open.is-current, .page-header.header-full-width.is-current)::after {
    background-color: #0a0a0a
  }
}
@media screen and (max-width:79.9875em) {
  .page-header .wrapper {
    padding-right: unset
  }
}
.page-header .wrapper > .container {
  height: 4rem
}
@media screen and (min-width:80em) {
  .page-header .wrapper > .container {
    height: 5.0625rem;
    padding-bottom: .625rem
  }
}
.page-header .container {
  padding-top: 60px;
  padding-right: 0;
  padding-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between
}
@media screen and (max-width:79.9875em) {
  .page-header .container {
    margin-right: unset
  }
}
@media screen and (min-width:80em) {
  .page-header .container {
  }
}
.page-header .container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #0a0a0a;
  z-index: -1
}
@media screen and (min-width:80em) {
  .page-header .container::before {
    bottom: -3rem
  }
}
.page-header .container.empty-navigation::before {
  content: none
}
.page-header .logo {
  --anchor-color: #ffffff;
  display: inline-flex;
  flex-direction: column;
  align-self: center;
  text-decoration: none
}
.page-header .logo span {
  font-size: .75rem;
  font-weight: 500
}
.page-header .logo svg {
  max-width: 5.5rem;
  height: auto
}
@media screen and (min-width:80em) {
  [data-presence-group-id="9"] .page-header .logo svg {
    height: 4.5rem
  }
}
@media print {
  .page-header .logo svg path:not(.svg-inner-claim), .page-header .logo svg polygon:not(.svg-inner-claim), .page-header .logo svg rect:not(.svg-inner-claim) {
    fill: #505a64
  }
}
.page-header .inner-container {
  display: flex;
  align-items: center
}
.page-header .controls-container {
  display: flex;
  gap: 1.5rem;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center
}
.page-header .search-box.is-open .inner-wrapper {
  background-color: unset
}
@media screen and (min-width:80em) {
  .page-header .search-box.is-open .inner-wrapper {
    background-color: #fff
  }
}
.header-full-width:not(.page-header.is-current) .search-box, .is-nav-open:not(.page-header.is-current) .search-box {
  color: #fff
}
.header-full-width:not(.page-header.is-current) .search-box .inner-wrapper, .header-full-width:not(.page-header.is-current) .search-box.is-open .inner-wrapper, .is-nav-open:not(.page-header.is-current) .search-box .inner-wrapper, .is-nav-open:not(.page-header.is-current) .search-box.is-open .inner-wrapper {
  background-color: unset
}
@media screen and (min-width:80em) {
  .header-full-width:not(.page-header.is-current) .search-box .inner-wrapper, .is-nav-open:not(.page-header.is-current) .search-box .inner-wrapper {
    background-color: unset
  }
}
@media screen and (min-width:80em) {
  .header-full-width:not(.page-header.is-current) .search-box.is-open, .is-nav-open:not(.page-header.is-current) .search-box.is-open {
    color: #fff
  }
}
.header-full-width:not(.page-header.is-current) .search-box input, .is-nav-open:not(.page-header.is-current) .search-box input {
  border-bottom: 1px solid currentColor;
  background-color: inherit
}
.page-footer {
  --anchor-color: #ffffff;
  background-color: #0a0a0a;
  color: #fff;
  padding-top: 2rem;
  padding-bottom: 4rem;
  margin-top: auto
}
@media screen and (min-width:64em) {
  .page-footer {
    padding-top: 4rem
  }
}
@media print {
  .page-footer {
    display: none
  }
}
.page-footer ul {
  margin-bottom: unset
}
.page-footer ul:not(:last-child) {
  margin-bottom: 0
}
.page-footer ul > * {
  padding-left: 0
}
.page-footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 4rem
}
@media screen and (max-width:35.4875em) {
  .page-footer .container {
    justify-content: center
  }
}
.page-footer .container + .container {
  align-items: flex-start;
  margin-top: 1.5rem
}
.page-footer .group-link {
  display: flex;
  align-items: center;
  gap: .3125em
}
@media screen and (min-width:35.5em) {
  .page-footer .group-link {
    margin-left: auto
  }
}
.page-footer .group-link a {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 1.75em
}
.page-footer .group-link a::after {
  content: "";
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 0;
  transform: translateX(100%);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  padding-left: .25em
}
.page-footer .nav-meta, .page-footer .social-media-list {
  flex-grow: 1
}
.page-footer .social-media-list a:focus-visible, .page-footer .social-media-list a:hover {
  --anchor-color: #f8ae1a
}
.main > .aside {
  position: relative;
  margin-top: 100vh;
  padding-top: 3rem;
  padding-bottom: 3rem
}
.is-group .main > .aside {
  background-color: rgba(170, 180, 190, .8)
}
.is-career .main > .aside, .main > .aside {
  background-color: rgba(125, 145, 165, .85)
}
@media screen and (min-width:48em) {
  .main > .aside {
    width: 29%
  }
}
@media screen and (min-width:88.75em) {
  .main > .aside {
    width: 29%
  }
}
@media screen and (min-width:102.75em) {
  .main > .aside {
    width: 27%
  }
}
@media screen and (min-width:0em) {
  .main > .aside {
    z-index: 10
  }
}
@media screen and (min-width:78.75em) {
  .main > .aside {
    z-index: 20
  }
}
@media screen and (min-width:48em) {
  .main > .aside {
    margin-top: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden
  }
}
.content-header {
  padding-top: 3rem;
  padding-bottom: 3rem
}
.content-header .title {
  margin-bottom: .5rem
}
.content-header-image .figure {
  margin-bottom: unset
}
.content-header-image + .tabs-container {
  margin-top: 3rem
}
.content-header-image + .content-header-sub-headline {
  padding-top: 1.5rem
}
.header-bar {
  display: flex;
  transition: margin-right .25s ease-in-out;
  margin-left: auto;
  overflow-x: hidden
}
@media print {
  .header-bar {
    display: none
  }
}
.header-bar .list {
  margin-bottom: unset;
  display: flex;
  align-items: center;
  margin-left: .75rem
}
.header-bar .list:not(:last-child) {
  margin-bottom: 0
}
.header-bar .list > * {
  padding-left: 0;
  display: flex;
  height: 100%
}
.header-bar .list > ::after, .header-bar .list > ::before, .tabs > ::after, .tabs > ::before {
  content: none;
  position: static;
  color: inherit;
  top: auto
}
.accordion > * ol, .accordion > * ul, .contacts-overview > * ol, .contacts-overview > * ul, .header-bar .list > * ol, .header-bar .list > * ul, .pagination .list > * ol, .pagination .list > * ul, .select2-container--em .select2-dropdown .select2-results__options > * ol, .select2-container--em .select2-dropdown .select2-results__options > * ul, .select2-container--em .select2-selection.select2-selection--multiple .select2-selection__rendered > * ol, .select2-container--em .select2-selection.select2-selection--multiple .select2-selection__rendered > * ul, .tabs > * ol, .tabs > * ul {
  margin-top: 0
}
.header-bar .list .is-career {
  display: none
}
@media screen and (min-width:63.75em) {
  .header-bar .list .is-career {
    display: flex
  }
}
.header-bar .list .is-career .button {
  color: #fff
}
.header-bar .list .is-career .button:focus-visible, .header-bar .list .is-career .button:hover {
  color: #e6ecf2
}
.header-bar .list .is-career .button .is-active {
  color: #e6ecf2
}
.header-bar .button {
  display: flex;
  align-items: center;
  color: #aaaab4;
  background-color: transparent;
  border: 0
}
.header-bar .button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  top: auto;
  right: auto;
  height: 4px;
  width: 0;
  transition: width .25s ease-in-out;
  transform: none;
  background-color: var(--dark-color)
}
.header-bar .button:focus-visible, .header-bar .button:hover, .tabs-highlight .tabs-title a.is-active:focus-visible, .tabs-highlight .tabs-title a.is-active:hover, .tabs-highlight .tabs-title.is-active a:focus-visible, .tabs-highlight .tabs-title.is-active a:hover {
  color: #fff
}
.header-bar .button .is-active, .header-bar .button.is-active {
  color: #fff
}
@media screen and (max-width:63.7375em) {
  .header-bar .button.is-active::after {
    width: 100%
  }
}
.header-bar .menu-trigger .button::before {
  content: "";
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  line-height: 1;
  font-size: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}
.header-bar .menu-trigger .button.is-active::before {
  content: "";
  display: inline-block;
  line-height: 1
}
.header-bar .menu-trigger .button > * {
  display: none
}
@media screen and (min-width:63.75em) {
  .header-bar .menu-trigger {
    display: none
  }
}
/*.search {
  display: flex;
  overflow: hidden;
  height: 100%;
  transition: height .3s ease-in-out, margin-right .3s ease-in-out
}
@media screen and (max-width:63.7375em) {
  .search {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    top: 3rem;
    bottom: auto;
    height: 0
  }
}
@media screen and (min-width:63.75em) {
  .search {
    width: 12.5rem;
    margin-right: -12.5rem
  }
}
.search.is-active {
  margin-right: 0
}
@media screen and (max-width:63.7375em) {
  .search.is-active {
    height: 3rem
  }
}*/
.search .search-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  transition: transform .3s ease-in-out;
  margin-bottom: 0
}
.search .figure-wrapper .images{
  height: auto;
}
.search .figure-wrapper .images img{
  max-width: 100%;
}
.search .button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  padding-right: 1.5em;
  padding-left: 1.5em
}
.search .button.is-active {
  color: #aaaab4
}
.search .button:focus-visible, .search .button:hover {
  color: #0a0a0a
}
.search input {
  height: 100%;
  border: 0;
  background-color: #fff
}
@media screen and (min-width:63.75em) {
  .search input {
    border-right: 1px solid rgba(10, 10, 10, .5);
    border-bottom: 1px solid rgba(10, 10, 10, .5)
  }
}
.search input:focus-visible, .search input:hover {
  
}
.search-item strong {
  font-weight: 400;
  color: #fff;
  padding-right: 2px;
  padding-left: 2px;
  background-color: var(--dark-color)
}
.search-item .content {
  display: flex
}
.search-item .headline {
  margin-top: .25rem
}
.search-item svg {
  width: 3rem;
  height: 3rem;
  margin-right: .5rem;
  margin-left: -.5rem
}
.tabs-container {
  margin-bottom: 3rem
}
@media print {
  .tabs-container {
    display: none
  }
}
.tabs-container .inner-wrapper {
  position: relative;
  margin-right: -.5rem;
  margin-left: -.5rem
}
@media screen and (min-width:35.5em) {
  .tabs-container .inner-wrapper {
    margin-right: -1rem;
    margin-left: -1rem
  }
}
.tabs-container .inner-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 1rem
}
.tabs-container .inner-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 1rem
}
.tabs-container .inner-wrapper::before {
  right: auto;
  background-image: linear-gradient(270deg, rgba(255, 255, 255, 0), var(--section-background-color, #ffffff))
}
.tabs-container .inner-wrapper::after {
  left: auto;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), var(--section-background-color, #ffffff))
}
.tabs-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overflow-y: hidden;
  width: 100%
}
.tabs {
  margin-bottom: unset;
  display: inline-flex;
  padding-right: .5rem;
  padding-left: .5rem;
  min-width: 100%
}
.tabs:not(:last-child) {
  margin-bottom: 0
}
.tabs > * {
  padding-left: 0
}
@media screen and (min-width:35.5em) {
  .tabs {
    padding-right: 1rem;
    padding-left: 1rem
  }
}
.tabs-title {
  display: flex;
  flex-grow: 1;
  flex-shrink: 0;
  justify-content: center;
  overflow-x: hidden
}
.tabs-title:not(:last-child) {
  margin-right: .625rem
}
.tabs-title.is-active a {
  color: var(--dark-color)
}
.js .tabs-title a.is-active, .js .tabs-title.is-active a {
  cursor: default;
  pointer-events: none
}
.tabs-title.is-active a::after {
  transform: translateX(0)
}
.tabs-title a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: .875rem;
  font-weight: 600;
  color: #0a0a0a;
  text-decoration: none;
  padding: .75em 1em;
  overflow-x: hidden;
  overflow-y: hidden
}
.tabs-title a:focus-visible::after, .tabs-title a:hover::after {
  transform: translateX(0)
}
.tabs-title a::after, .tabs-title a::before {
  content: "";
  height: 3px;
  width: 100%;
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  margin-right: 0
}
.tabs-title a::before {
  background-color: #000
}
.tabs-title a::after {
  transform: translateX(-101%);
  transition: transform .25s ease-in-out;
  background-color: #f8ae1a;
  background-color: var(--dark-color)
}
.tabs-title a:focus-visible, .tabs-title a:hover {
  color: var(--dark-color)
}
.tabs-title a.is-active {
  color: var(--dark-color)
}
.tabs-title a.is-active::after {
  transform: translateX(0)
}
.tabs-content:not(:last-child) {
  margin-bottom: 3rem
}
.tabs-panel {
  display: none
}
.tabs-panel.is-active {
  display: block
}
.tabs-variant .tabs-title {
  margin-right: 0
}
.tabs-icons a, .tabs-variant .tabs-title a {
  font-family: "purista-web", Arial, Tahoma, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .025em;
  line-height: 1.16666
}
.tabs-variant .tabs-title a {
  font-size: .9375rem;
  background-color: #f6f8fb
}
.tabs-icons a {
  color: #87919b
}
.tabs-icons .icon {
  display: flex
}
@media screen and (min-width:35.5em) {
  .tabs-icons .icon {
    display: none
  }
}
@media screen and (min-width:63.75em) {
  .tabs-icons .icon {
    display: block
  }
}
@media screen and (min-width:102.75em) {
  .tabs-icons .icon {
    display: none
  }
}
.tabs-icons .icon > * {
  fill: currentColor;
  height: 1.75rem;
  width: 1.75rem
}
.tabs-icons .icon > * > path {
  color: currentColor
}
.tabs-icons .icon + * {
  display: none
}
@media screen and (min-width:35.5em) {
  .tabs-icons .icon + * {
    display: block
  }
}
@media screen and (min-width:63.75em) {
  .tabs-icons .icon + * {
    display: none
  }
}
@media screen and (min-width:102.75em) {
  .tabs-icons .icon + * {
    display: block
  }
}
@media screen and (min-width:48em) {
  .tabs-highlight.tabs {
    justify-content: center
  }
}
.tabs-highlight.tabs > * {
  flex-grow: 0
}
.tabs-highlight .tabs-title {
  overflow: visible
}
.tabs-highlight .tabs-title.is-active a {
  color: #fff;
  background-color: #f8ae1a
}
.tabs-highlight .tabs-title a {
  font-size: 1rem;
  border-radius: 3px
}
.tabs-highlight .tabs-title a::after, .tabs-highlight .tabs-title a::before {
  content: none
}
.tabs-highlight .tabs-title a:focus-visible, .tabs-highlight .tabs-title a:hover {
  color: #f8ae1a
}
.tabs-highlight .tabs-title a.is-active {
  color: #fff;
  background-color: #f8ae1a
}
.tabs-highlight .is-group a:focus-visible, .tabs-highlight .is-group a:hover {
  color: #f8ae1a
}
.tabs-highlight .is-group a.is-active, .tabs-highlight .is-group.is-active a {
  background-color: #f8ae1a
}
.tabs-highlight .is-group a.is-active::after, .tabs-highlight .is-group.is-active a::after {
  border-top-color: #f8ae1a
}
.tabs-highlight .is-metall a:focus-visible, .tabs-highlight .is-metall a:hover {
  color: #eb8723
}
.tabs-highlight .is-metall a.is-active, .tabs-highlight .is-metall.is-active a {
  background-color: #eb8723
}
.tabs-highlight .is-metall a.is-active::after, .tabs-highlight .is-metall.is-active a::after {
  border-top-color: #eb8723
}
.tabs-highlight .is-controls a:focus-visible, .tabs-highlight .is-controls a:hover {
  color: #00aeef
}
.tabs-highlight .is-controls a.is-active, .tabs-highlight .is-controls.is-active a {
  background-color: #00aeef
}
.tabs-highlight .is-controls a.is-active::after, .tabs-highlight .is-controls.is-active a::after {
  border-top-color: #00aeef
}
.tabs-highlight .is-defence a:focus-visible, .tabs-highlight .is-defence a:hover {
  color: #5b91cc
}
.tabs-highlight .is-defence a.is-active, .tabs-highlight .is-defence.is-active a {
  background-color: #5b91cc
}
.tabs-highlight .is-aviation a.is-active::after, .tabs-highlight .is-aviation.is-active a::after, .tabs-highlight .is-defence a.is-active::after, .tabs-highlight .is-defence.is-active a::after {
  border-top-color: #5b91cc
}
.tabs-highlight .is-aviation a:focus-visible, .tabs-highlight .is-aviation a:hover {
  color: #5b91cc
}
.tabs-highlight .is-aviation a.is-active, .tabs-highlight .is-aviation.is-active a {
  background-color: #5b91cc
}
.tabs-highlight .is-metering a:focus-visible, .tabs-highlight .is-metering a:hover {
  color: #00b5ad
}
.tabs-highlight .is-metering a.is-active, .tabs-highlight .is-metering.is-active a {
  background-color: #00b5ad
}
.tabs-highlight .is-metering a.is-active::after, .tabs-highlight .is-metering.is-active a::after {
  border-top-color: #00b5ad
}
.pagination {
  display: flex;
  justify-content: center
}
.pagination:not(:first-child) {
  margin-top: 3rem
}
@media print {
  .pagination {
    display: none
  }
}
.pagination .list {
  margin-bottom: unset;
  display: flex;
  flex-wrap: wrap
}
.pagination .list > * {
  padding-left: 0
}
.pagination .list > ::after, .pagination .list > ::before {
  content: none;
  position: static;
  color: inherit;
  top: auto
}
.pagination li > * {
  display: block;
  padding: 1rem .75rem;
  color: #646e78
}
.pagination a {
  text-decoration: none;
  border-bottom: 3px solid transparent
}
.pagination a:focus-visible, .pagination a:hover {
  color: var(--dark-color)
}
.pagination a.is-active {
  color: var(--dark-color);
  border-color: var(--dark-color)
}
.pagination .next > *, .pagination .prev > * {
  fill: currentColor;
  height: .875rem;
  width: .875rem
}
.pagination .prev {
  transform: rotate(90deg)
}
.pagination .next {
  transform: rotate(-90deg)
}
.dataTables_paginate {
  justify-content: center
}
@media print {
  .dataTables_paginate {
    display: none
  }
}
.dataTables_paginate, .dataTables_paginate span {
  display: flex;
  flex-wrap: wrap
}
.dataTables_paginate .paginate_button, .dataTables_paginate span .paginate_button {
  display: block;
  padding: 1rem .75rem;
  color: #646e78;
  text-decoration: none;
  border-bottom: 3px solid transparent
}
.dataTables_paginate .paginate_button.next, .dataTables_paginate .paginate_button.previous, .dataTables_paginate span .paginate_button.next, .dataTables_paginate span .paginate_button.previous {
  transform: none;
  padding-top: 1.5625rem;
  padding-bottom: 0
}
.dataTables_paginate .paginate_button:focus-visible, .dataTables_paginate .paginate_button:hover, .dataTables_paginate span .paginate_button:focus-visible, .dataTables_paginate span .paginate_button:hover {
  color: var(--dark-color)
}
.dataTables_paginate .paginate_button.current, .dataTables_paginate span .paginate_button.current {
  color: var(--dark-color);
  border-color: var(--dark-color)
}
@font-face {
  font-family: "swiper-icons";
  src: url(data:application/font-woff;charset=utf-8;base64,\ d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA)format("woff");
  font-weight: 400;
  font-style: normal
}
:root {
  --swiper-theme-color: #007aff
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1
}
.swiper, .swiper-wrapper {
  position: relative;
  z-index: 1
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  list-style: none;
  padding: 0;
  display: block
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column
}
.swiper-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box
}
.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  transform: translate3d(0, 0, 0)
}
.swiper-horizontal {
  touch-action: pan-y
}
.swiper-vertical {
  touch-action: pan-x
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block
}
.swiper-slide-invisible-blank {
  visibility: hidden
}
.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden
}
.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px
}
.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-wrapper {
  transform-style: preserve-3d
}
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before)
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after)
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before)
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after)
}
.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, .15)
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, .5), transparent)
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, .5), transparent)
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, .5), transparent)
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), transparent)
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent
}
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000
}
.swiper-pagination {
  text-align: center;
  transform: translate3d(0, 0, 0);
  z-index: 10
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0
}
.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important
}
.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%
}
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(.33);
  position: relative
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active, .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(.66)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(.33)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(.66)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(.33)
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2)
}
button.swiper-pagination-bullet {
  border: 0;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer
}
.swiper-pagination-bullet:only-child {
  display: none !important
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color))
}
.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0, -50%, 0)
}
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px)0;
  display: block
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px)
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right
}
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit)
}
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top
}
.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0
}
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0
}
.swiper-pagination-lock {
  display: none
}
:root {
  --swiper-navigation-size: 44px
}
.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size)/44*27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size)/2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color))
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none
}
.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none
}
.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important
}
.swiper-button-next svg, .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center
}
.swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg)
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto
}
.content-slider .slider-images .swiper-pagination, .swiper-button-lock {
  display: none
}
.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev"
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next"
}
.slider:not(:last-child) {
  margin-bottom: 2rem
}
@media print {
  .slider {
    page-break-inside: avoid
  }
}
.slider-images .swiper-slide > * {
  margin-bottom: 0
}
.content-slider .slider-content .swiper-slide {
  padding-bottom: 1.25rem
}
.content-slider .swiper-pagination {
  border-top: 2px solid #edf2f7
}
.swiper-pagination {
  position: static;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity .15s ease-in-out;
  min-height: 2.625rem
}
.swiper-pagination.swiper-pagination-clickable {
  opacity: 1
}
.swiper-pagination.swiper-pagination-lock {
  display: none
}
.swiper-next, .swiper-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer
}
@media print {
  .swiper-next, .swiper-prev {
    display: none
  }
}
.swiper-next > *, .swiper-prev > * {
  fill: #3e5366;
  width: 2.5rem;
  height: 2.5rem;
  transition: fill .15s ease-in-out
}
.swiper-next.is-disabled, .swiper-prev.is-disabled {
  cursor: default;
  pointer-events: none
}
.swiper-next.is-disabled > *, .swiper-prev.is-disabled > * {
  fill: rgba(62, 83, 102, .3)
}
.swiper-prev {
  left: .25rem;
  transform: translateY(-50%) rotate(90deg)
}
.swiper-next {
  right: .25rem;
  transform: translateY(-50%) rotate(-90deg)
}
.swiper-pagination-bullet {
  --swiper-pagination-bullet-horizontal-gap: 0;
  height: auto;
  width: auto;
  padding: 1rem .25rem;
  background-color: transparent
}
.swiper-pagination-bullet::before {
  content: "";
  display: block;
  width: .625rem;
  height: .625rem;
  background-color: #0a0a0a;
  border-radius: .625rem
}
.swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background-color: #3e5366
}
.swiper-pagination-bullet:focus-visible:not(.swiper-pagination-bullet-active), .swiper-pagination-bullet:hover:not(.swiper-pagination-bullet-active) {
  opacity: .5
}
.swiper-thumbs .swiper-slide {
  opacity: .5
}
.swiper-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  overflow: hidden
}
.swiper-thumbs .swiper-slide-thumb-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  top: auto;
  z-index: 2;
  display: block;
  width: 100%;
  height: 3px;
  transform: translateX(-100%);
  animation: progress 9s linear forwards;
  background-color: var(--dark-color)
}
.is-story-active .swiper-thumbs .swiper-slide-thumb-active::after {
  transform: translateX(0)
}
@media print {
  .swiper-slide {
    width: 100% !important
  }
}
.swiper-slide.is-loading::before {
  content: "";
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  line-height: 1;
  font-size: 1.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #0a0a0a;
  animation: centered-rotation 1s infinite linear
}
.swiper-slide.is-loading > * {
  opacity: .25
}
.accordion {
  margin-bottom: unset
}
.accordion:not(:last-child) {
  margin-bottom: 3rem
}
.accordion > * {
  padding-left: 0
}
.accordion > ::after, .accordion > ::before {
  content: none;
  position: static;
  color: inherit;
  top: auto
}
.accordion[disabled] {
  opacity: .5;
  cursor: not-allowed;
  pointer-events: none
}
.accordion .accordion-item {
  border-bottom: 1px solid #fafafa
}
.primary.accordion .accordion-item {
  border-style: solid;
  border-color: #fafafa;
  border-width: 4px 2px
}
@media print {
  .accordion .accordion-item {
    page-break-inside: avoid
  }
}
.primary.accordion .accordion-item:not(:first-child) {
  margin-top: .5rem
}
.accordion .accordion-item.is-active .accordion-title {
  font-weight: 600;
  background-color: #fafafa
}
.primary.accordion .accordion-item.is-active .accordion-title {
  background-color: transparent
}
.accordion .accordion-item.is-active .accordion-title::after {
  transform: translateY(-100%)
}
.accordion .accordion-item.is-active .accordion-title .icon :nth-child(2) {
  height: 2px;
  opacity: 0
}
.accordion .accordion-title {
  font-size: 1rem;
  font-weight: 400;
  position: relative;
  overflow: hidden;
  display: block;
  padding: 1rem 1rem 1rem 2.5rem;
  color: inherit
}
.primary.accordion .accordion-title {
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .025em;
  line-height: 22px;
  color: #000;
}
.accordion .accordion-title:hover {
  text-decoration: none;
  color: inherit;
  background-color: #edf2f7
}
.primary.accordion .accordion-title:hover {
  color: #646e78;
  background-color: inherit
}
.accordion .accordion-title:focus-visible {
  text-decoration: none
}
.accordion .accordion-title::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateY(0);
  transition: transform .2s ease-in-out
}
.primary.accordion .accordion-title::after {
  background-color: #fafafa
}
.accordion .accordion-title > * {
  position: relative;
  z-index: 1
}
.accordion .accordion-title .description {
  font-family: "proxima-nova", Arial, Tahoma, sans-serif;
  font-weight: 400;
  text-transform: none;
  display: block;
  margin-top: .25rem
}
.accordion .accordion-title .icon {
  position: absolute;
  top: 47%;
  left: 1.25rem;
  display: flex
}
.accordion .accordion-title .icon > * {
  display: flex;
  position: absolute;
  background-color: #646e78
}
.accordion .accordion-title .icon :nth-child(1) {
  width: 10px;
  height: 2px
}
.accordion .accordion-title .icon :nth-child(2) {
  top: -4px;
  left: 4px;
  width: 2px;
  height: 10px;
  transition: height .2s ease-in-out, opacity .2s ease-in-out
}
.accordion .accordion-content {
  display: none;
  padding: 1.5rem 1rem;
  background-color: #edf2f7
}
.primary.accordion .accordion-content {
  background-color: transparent
}
@media print {
  .accordion .accordion-content {
    display: block
  }
}
.accordion .accordion-content .inner-wrapper {
  display: flex;
  flex-flow: row wrap;
  margin-right: -1rem;
  margin-left: -1rem
}
.accordion .accordion-content .image {
  flex: 0 0 auto;
  width: calc(100% - 2rem);
  margin-left: 1rem;
  margin-right: 1rem
}
@media screen and (min-width:30em) {
  .accordion .accordion-content .image {
    flex: 0 0 auto;
    width: calc(50% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem
  }
}
@media screen and (min-width:48em) {
  .accordion .accordion-content .image {
    flex: 0 0 auto;
    width: calc(33.3333333333% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem
  }
}
.accordion .accordion-content .image .figure {
  height: auto;
  padding-bottom: 0
}
@supports (--a:0) {
  .accordion .accordion-content .image .figure {
    height: 0;
    padding-bottom: calc(100%/(var(--aspect-ratio)))
  }
}
.accordion .accordion-content .image .figure .figure-wrapper {
  position: static;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto
}
.accordion .accordion-content .image .figure .images > * {
  position: static;
  transform: none
}
.accordion .accordion-content .image .figure .images > :nth-child(2) {
  position: absolute;
  top: 0;
  left: 0
}
.accordion .accordion-content .content {
  flex: 0 0 auto;
  width: calc(100% - 2rem);
  margin-left: 1rem;
  margin-right: 1rem
}
@media screen and (min-width:30em) {
  .accordion .accordion-content .content {
    flex: 0 0 auto;
    width: calc(50% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem;
    flex-grow: 1
  }
}
@media screen and (min-width:48em) {
  .accordion .accordion-content .content {
    flex: 0 0 auto;
    width: calc(66.6666666667% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem;
    flex-grow: 1
  }
}
.accordion .accordion-content .content > :first-child {
  margin-top: 0
}
.accordion-expander {
  margin-bottom: 1rem;
  padding-left: 3em
}
.accordion-expander span::before, .accordion-expander.is-expanded span::before {
  content: "";
  display: inline-block;
  line-height: 1
}
.accordion-expander span::before {
  content: "";
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.125rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -1.5em
}
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle
}
.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  user-select: none;
  -webkit-user-select: none
}
.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}
.select2-container .select2-selection--single .select2-selection__clear {
  position: relative
}
.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px
}
.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap
}
.select2-container .select2-search--inline, .select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left
}
.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: 0;
  font-size: 100%;
  margin-top: 5px;
  padding: 0
}
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button, .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none
}
.select2-dropdown {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051
}
.select2-results {
  display: block
}
.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0
}
.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none
}
.select2-results__option[aria-selected] {
  cursor: pointer
}
.select2-container--open .select2-dropdown {
  left: 0
}
.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0
}
.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0
}
.select2-search--dropdown {
  display: block;
  padding: 4px
}
.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box
}
.select2-search--dropdown.select2-search--hide {
  display: none
}
.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0)
}
.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important
}
.select2-container--default .select2-selection--multiple, .select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px
}
.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: 700
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px
}
.select2-container--classic .select2-selection--single .select2-selection__arrow b, .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0
}
.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto
}
.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default
}
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b, .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888;
  border-width: 0 4px 5px
}
.select2-container--default .select2-selection--multiple {
  cursor: text
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none
}
.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: 700;
  margin-top: 5px;
  margin-right: 10px;
  padding: 1px
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  margin-right: 2px
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333
}
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline, .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  float: right
}
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto
}
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid #000 1px;
  outline: 0
}
.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default
}
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none
}
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple, .select2-container--default.select2-container--open.select2-container--above .select2-selection--single {
  border-top-left-radius: 0;
  border-top-right-radius: 0
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple, .select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa
}
.select2-container--default .select2-search--inline .select2-search__field {
  background: 0 0;
  border: 0;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield
}
.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto
}
.select2-container--default .select2-results__option[role=group] {
  padding: 0
}
.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999
}
.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd
}
.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: #fff
}
.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px
}
.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0)
}
.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb
}
.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px
}
.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: 700;
  margin-right: 10px
}
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999
}
.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: 0;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0)
}
.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left
}
.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: 0;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto
}
.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: 0 0;
  border: 0
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: linear-gradient(to bottom, #fff 0, #eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0)
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0)
}
.select2-container--classic .select2-selection--multiple {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0
}
.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb
}
.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px
}
.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  margin-right: 2px
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555
}
.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto
}
.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto
}
.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0
}
.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0
}
.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none
}
.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent
}
.select2-container--classic .select2-dropdown--above {
  border-bottom: none
}
.select2-container--classic .select2-dropdown--below {
  border-top: none
}
.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto
}
.select2-container--classic .select2-results__option[role=group] {
  padding: 0
}
.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: gray
}
.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: #fff
}
.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px
}
.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb
}
.select2-container--em.select2 {
  width: 100% !important
}
.select2-container--em .select2-selection {
  height: 2.625rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #404040;
  background-color: #fff;
  border-width: 1px;
  border-style: solid;
  border-color: #e6ecf2;
  border-radius: 0;
  padding-right: .875rem;
  padding-left: .875rem;
  outline: 0
}
.select2-container--em .select2-selection:focus-visible {
  outline: 0;
  background-color: #fff;
  color: #404040;
  border-bottom-color: #a3b9cf
}
.select2-container--em .select2-selection.select2-selection--multiple {
  height: auto;
  min-height: 2.625rem
}
.select2-container--em .select2-selection.select2-selection--multiple::after {
  content: "";
  min-height: inherit
}
.select2-container--em .select2-selection.select2-selection--multiple .select2-selection__rendered {
  margin-bottom: unset;
  overflow: visible;
  white-space: normal
}
.select2-container--em .select2-selection.select2-selection--multiple .select2-selection__rendered:not(:last-child) {
  margin-bottom: 0
}
.select2-container--em .select2-selection.select2-selection--multiple .select2-selection__rendered > * {
  padding-left: 0;
  display: inline-block
}
.select2-container--em .select2-selection.select2-selection--multiple .select2-selection__rendered > ::after, .select2-container--em .select2-selection.select2-selection--multiple .select2-selection__rendered > ::before {
  content: none;
  position: static;
  color: inherit;
  top: auto
}
.select2-container--em .select2-selection.select2-selection--multiple .select2-selection__rendered > :first-child .select2-search--inline, .select2-container--em .select2-selection.select2-selection--multiple .select2-selection__rendered > :first-child .select2-search__field {
  width: 100% !important
}
.select2-container--em .select2-selection.select2-selection--multiple .select2-selection__choice {
  padding: .25rem .75rem .25rem .5rem;
  margin-top: .375rem;
  margin-right: .75rem;
  margin-bottom: .375rem;
  font-size: .875rem;
  color: #fff;
  background-color: var(--dark-color)
}
.is-loading.select2-container--em .select2-selection.select2-selection--multiple .select2-selection__choice, .select2-container--disabled.select2-container--em .select2-selection.select2-selection--multiple .select2-selection__choice, select[readonly] + .select2-container--em .select2-selection.select2-selection--multiple .select2-selection__choice {
  opacity: .5;
  cursor: not-allowed;
  pointer-events: none
}
.select2-container--em .select2-selection.select2-selection--multiple .select2-search--inline {
  float: none
}
.select2-container--em .select2-selection.select2-selection--multiple .select2-search--inline input {
  height: auto;
  margin-top: 0;
  background-color: transparent
}
.select2-container--em .select2-selection.select2-selection--multiple .select2-selection__choice__remove {
  font-size: 0
}
.select2-container--em .select2-selection.select2-selection--multiple .select2-selection__choice__remove::after {
  content: "";
  font-size: .625rem;
  position: absolute;
  top: 0;
  right: -2px;
  padding: 1px;
  transform: translate(25%, -25%);
  background-color: #fff;
  border-color: currentColor;
  border-width: 2px;
  border-style: solid;
  border-radius: 100%;
  color: var(--dark-color)
}
.is-loading.select2-container--em .select2-selection, .select2-container--disabled.select2-container--em .select2-selection, select[readonly] + .select2-container--em .select2-selection {
  color: #8c919b;
  background-color: #fff;
  border-color: #e6ecf2;
  cursor: not-allowed;
  pointer-events: none
}
.is-loading.select2-container--em .select2-selection::before, .select2-container--em .select2-selection .select2-selection__arrow::before, .select2-container--em .select2-selection.select2-selection--multiple .select2-selection__choice__remove::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  line-height: 1
}
.is-loading.select2-container--em .select2-selection::before {
  content: "";
  font-size: 1.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #0a0a0a;
  animation: centered-rotation 1s infinite linear
}
.select2-container--em .select2-selection .select2-selection__rendered {
  padding-left: 0
}
.select2-container--em .select2-selection .select2-selection__arrow {
  display: flex
}
.select2-container--em .select2-selection .select2-selection__arrow::before {
  content: "";
  font-size: 1.75rem;
  color: var(--dark-color)
}
.select2-container--disabled.select2-container--em .select2-selection .select2-selection__arrow, [readonly] + .select2-container--em .select2-selection .select2-selection__arrow {
  opacity: .4
}
.select2-container--em .select2-dropdown {
  border-radius: 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
  z-index: 55;
  border-color: var(--dark-color)
}
.select2-container--em .select2-dropdown.select2-dropdown--below {
  top: -1px
}
.select2-container--em .select2-dropdown.select2-dropdown--above {
  top: calc(100% + 1px)
}
.select2-container--em .select2-dropdown .select2-results__options > li, .select2-container--em .select2-dropdown .select2-search--dropdown {
  padding: .625rem
}
.select2-container--em .select2-dropdown .select2-search__field {
  padding: inherit
}
.select2-container--em .select2-dropdown .select2-results {
  max-height: 15rem;
  overflow: auto;
  -webkit-overflow-scrolling: touch
}
.contacts-overview, .select2-container--em .select2-dropdown .select2-results__options {
  margin-bottom: unset
}
.select2-container--em .select2-dropdown .select2-results__options > * {
  padding-left: 0
}
.contact .numbers > ::after, .contact .numbers > ::before, .contacts-overview > ::after, .contacts-overview > ::before, .distributor-list > ::after, .distributor-list > ::before, .distributor > ::after, .distributor > ::before, .select2-container--em .select2-dropdown .select2-results__options > ::after, .select2-container--em .select2-dropdown .select2-results__options > ::before {
  content: none;
  position: static;
  color: inherit;
  top: auto
}
.select2-container--em .select2-dropdown .select2-results__options--nested {
  margin: -.625rem
}
.select2-container--em .select2-dropdown .select2-results__options--nested > li {
  padding-left: 1.5625rem
}
.select2-container--em .select2-dropdown .select2-results__options .select2-results__group {
  font-weight: 600;
  display: block;
  color: #c5c5c5;
  padding-top: .625rem;
  padding-bottom: .625rem
}
.select2-container--em .select2-dropdown .select2-results__option {
  font-weight: 600
}
.select2-container--em .select2-dropdown .select2-results__option[aria-selected=true] {
  color: var(--dark-color)
}
.select2-container--em .select2-dropdown .select2-results__option[role=group] {
  padding-top: 0
}
.select2-container--em .select2-dropdown .select2-results__option--highlighted {
  background-color: rgba(240, 240, 240, .5)
}
.contacts-overview {
  display: flex;
  flex-flow: row wrap;
  margin-right: -1rem;
  margin-left: -1rem
}
.contacts-overview > * {
  padding-left: 0;
  flex: 0 0 auto;
  width: calc(100% - 2rem);
  margin-left: 1rem;
  margin-right: 1rem
}
@media screen and (min-width:35.5em) {
  .contacts-overview > * {
    width: calc(50% - 2rem)
  }
}
@media screen and (min-width:48em) {
  .contacts-overview > * {
    width: calc(33.3333333333% - 2rem)
  }
}
@media screen and (min-width:63.75em) {
  .contacts-overview > * {
    width: calc(50% - 2rem)
  }
}
@media screen and (min-width:78.75em) {
  .contacts-overview > * {
    width: calc(33.3333333333% - 2rem)
  }
}
.contact {
  margin-bottom: 3rem;
  border-top: 2px solid #edf2f7;
  padding-top: .75rem
}
.contact.has-tooltip .details, .contact.has-tooltip .division {
  padding-right: 2rem
}
.contact .figure {
  padding-bottom: 50%;
  margin-bottom: 1rem
}
@supports (--a:0) {
  .contact .figure {
    height: unset;
    padding-bottom: unset;
    aspect-ratio: var(--aspect-ratio, 2)
  }
}
@media print {
  .contact .figure {
    display: none
  }
}
.contact .details {
  margin-top: 1rem;
  margin-bottom: 1rem
}
.contact .division + .details, .contact .numbers > * ol, .contact .numbers > * ul {
  margin-top: 0
}
.contact .name {
  font-weight: 600
}
.contact .numbers {
  margin-bottom: unset
}
.contact .numbers:not(:last-child) {
  margin-bottom: 1rem
}
.contact .numbers > * {
  padding-left: 0
}
.contact .address span:not(:first-child), .contact .numbers > * :not(:first-child) {
  margin-left: .25rem
}
.contact .numbers .description {
  font-size: .875rem
}
.contact .address {
  margin-bottom: 1rem
}
.contact .links {
  border-top: 0;
  margin-bottom: 0
}
.press-contacts, .sharing {
  border-top: 2px solid #edf2f7;
  padding-top: .75rem
}
.sharing {
  margin-bottom: 3rem
}
@media print {
  .sharing {
    display: none
  }
}
.downloads {
  border-top: 2px solid #edf2f7;
  padding-top: .75rem
}
.downloads:not(:last-child) {
  margin-bottom: 3rem
}
@media print {
  .downloads {
    page-break-inside: avoid
  }
}
.distributor-list > * ol, .distributor-list > * ul, .distributor > * ol, .distributor > * ul, .downloads .title + .image {
  margin-top: 0
}
.downloads .image {
  margin-top: 2rem
}
.downloads .image .figure {
  padding-bottom: 100%;
  margin-bottom: 1rem
}
@supports (--a:0) {
  .downloads .image .figure {
    height: unset;
    padding-bottom: unset;
    aspect-ratio: var(--aspect-ratio, 1)
  }
}
.distributor {
  margin-bottom: unset
}
.distributor:not(:last-child) {
  margin-bottom: 3rem
}
.distributor > * {
  padding-left: 0;
  margin-bottom: 2rem
}
.distributor .link {
  display: block;
  color: currentColor
}
.distributor .link:focus-visible, .distributor .link:hover {
  text-decoration: none
}
.distributor .link:focus-visible .figure::before, .distributor .link:hover .figure::before {
  opacity: 0
}
.distributor .link:focus-visible .figure img, .distributor .link:hover .figure img {
  transform: translate3d(-50%, -50%, 0) scale(.9)
}
.distributor .figure {
  padding-bottom: 50%
}
@supports (--a:0) {
  .distributor .figure {
    height: unset;
    padding-bottom: unset;
    aspect-ratio: var(--aspect-ratio, 2)
  }
}
.distributor .figure img {
  width: 120%;
  max-width: none;
  transition: transform .3s ease-in-out, opacity .5s ease-in-out
}
.distributor .swiper-pagination {
  position: absolute;
  top: 100%;
  right: 0;
  padding-right: 1rem;
  padding-left: 1rem
}
.distributor .links {
  border-top: none
}
.distributor .links .link-item .text::before {
  content: "";
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  line-height: 1;
  font-size: 1.125em;
  position: absolute;
  top: 13px;
  left: 0
}
.distributor-default {
  display: flex;
  flex-flow: row wrap;
  margin-right: -1rem;
  margin-left: -1rem
}
.distributor-default > * {
  flex: 0 0 auto;
  width: calc(100% - 2rem);
  margin-left: 1rem;
  margin-right: 1rem
}
@media screen and (min-width:35.5em) {
  .distributor-default > * {
    width: calc(50% - 2rem)
  }
}
@media screen and (min-width:48em) {
  .distributor-default > * {
    width: calc(33.3333333333% - 2rem)
  }
}
@media screen and (min-width:63.75em) {
  .distributor-default > * {
    width: calc(50% - 2rem)
  }
}
@media screen and (min-width:78.75em) {
  .distributor-default > * {
    width: calc(33.3333333333% - 2rem)
  }
}
.distributor-default .item {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1rem
}
.distributor-default .item > :first-child {
  flex-grow: 1
}
.distributor-default .slider-images {
  position: relative;
  margin-bottom: 3rem
}
.distributor-fill {
  display: flex;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem
}
.distributor-fill > * {
  display: flex;
  flex-grow: 1;
  padding-right: 1rem;
  padding-left: 1rem
}
@media screen and (min-width:0em) {
  .distributor-fill > * {
    width: 100%
  }
}
@media screen and (min-width:35.5em) {
  .distributor-fill > * {
    width: 50%
  }
}
@media screen and (min-width:48em) {
  .distributor-fill > * {
    width: 33.3333%
  }
}
@media screen and (min-width:63.75em) {
  .distributor-fill > * {
    width: 50%
  }
}
@media screen and (min-width:78.75em) {
  .distributor-fill > * {
    width: 33.3333%
  }
}
@media screen and (min-width:35.5em) {
  .distributor-fill > * {
    max-width: 50%
  }
  .distributor-fill > :nth-child(n+4) {
    max-width: 50%
  }
}
@media screen and (min-width:48em) {
  .distributor-fill > :nth-child(n+4) {
    max-width: 33.3333%
  }
}
@media screen and (min-width:63.75em) {
  .distributor-fill > :nth-child(n+4) {
    max-width: 50%
  }
}
@media screen and (min-width:78.75em) {
  .distributor-fill > :nth-child(n+4) {
    max-width: 33.3333%
  }
}
.distributor-fill .item {
  flex-grow: 1;
  background-color: #f6f7f8;
  padding: 1.5rem;
  max-width: 100%;
  transition: background-color .3s ease-in-out
}
.distributor-fill .item[href]:focus-visible, .distributor-fill .item[href]:hover {
  text-decoration: none;
  background-color: #e6ecf2
}
.distributor-fill .item .intro {
  font-weight: 400;
  color: #2d323c
}
.distributor-fill .item :first-child {
  margin-top: 0
}
.distributor-fill .item :last-child {
  margin-bottom: 0
}
.distributor-list {
  margin-bottom: unset;
  border-top: 2px solid #edf2f7
}
.distributor-list:not(:last-child) {
  margin-bottom: 3rem
}
.distributor-list > * {
  padding-left: 0
}
.distributor-list .item {
  display: flex;
  flex-flow: row wrap;
  margin-right: -1rem;
  margin-left: -1rem
}
.distributor-list .item .image {
  flex: 0 0 auto;
  width: calc(100% - 2rem);
  margin-left: 1rem;
  margin-right: 1rem
}
@media screen and (min-width:35.5em) {
  .distributor-list .item .image {
    flex: 0 0 auto;
    width: calc(33.3333333333% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem
  }
}
@media screen and (min-width:60em) {
  .distributor-list .item .image {
    flex: 0 0 auto;
    width: calc(25% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem
  }
}
.distributor-list .item .content {
  width: calc(100% - 2rem);
  margin-left: 1rem;
  margin-right: 1rem;
  flex: 1 1 0
}
@media screen and (min-width:35.5em) {
  .distributor-list .item .content {
    flex: 0 0 auto;
    width: calc(66.6666666667% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem
  }
}
@media screen and (min-width:60em) {
  .distributor-list .item .content {
    flex: 0 0 auto;
    width: calc(75% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem
  }
}
.distributor-default .division, .distributor-list .division {
  margin-bottom: .5rem
}
.distributor-link-item {
  display: block;
  position: relative;
  text-decoration: none;
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow-x: hidden
}
.distributor-link-item:focus-visible::after, .distributor-link-item:hover::after {
  transform: translateX(0)
}
.distributor-link-item::after, .distributor-link-item::before {
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  margin-right: 0
}
.distributor-link-item::before {
  background-color: #e6ecf2
}
.distributor-link-item::after {
  transform: translateX(-101%);
  transition: transform .25s ease-in-out
}
.distributor-link-item[href]:focus-visible, .distributor-link-item[href]:hover {
  text-decoration: none
}
.distributor-link-item[href]::after {
  background-color: var(--dark-color)
}
@media print {
  .distributor-link-item[href]::after {
    content: " ("attr(href)") " !important;
    position: static !important;
    display: block !important;
    font-size: 10px !important;
    transform: none !important;
    background-color: transparent !important;
    height: auto !important;
    margin: 1rem 0 0 !important
  }
}
.distributor-link-item .headline, .distributor-link-item .item-footer, .distributor-link-item .item-header, .distributor-link-item .read-more, .distributor-link-item .summary {
  color: #2d323c
}
.distributor-link-item .headline {
  margin-bottom: .5rem
}
.distributor-link-item .summary {
  font-weight: 400;
  margin-top: 0
}
.distributor-link-item .summary:last-child {
  margin-bottom: 0
}
.distributor-image .figure {
  height: auto;
  padding-bottom: 0
}
@supports (--a:0) {
  .distributor-image .figure {
    height: 0;
    padding-bottom: calc(100%/(var(--aspect-ratio)))
  }
}
.distributor-image .figure .figure-wrapper {
  position: static;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto
}
.distributor-image .figure .images > * {
  position: static;
  transform: none
}
.distributor-image .figure .images > :nth-child(2) {
  position: absolute;
  top: 0;
  left: 0
}
.filter {
  margin-bottom: unset
}
@media print {
  .filter {
    display: none
  }
}
.filter .reset-link {
  text-align: right;
  margin-top: .25em;
  margin-bottom: .25em
}
.filter .reset-link > * {
  font-size: .875rem;
  font-weight: 400
}
.filter .reset {
  font-weight: 600;
  line-height: 1.1;
  padding: .625em 1em;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  color: var(--dark-color);
  transition: opacity .25s ease-in-out, visibility .25s ease-in-out
}
.filter .reset[disabled] {
  opacity: .5;
  cursor: not-allowed;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none
}
.filter .tabs-container {
  margin-bottom: 1rem
}
.filter .grid {
  max-width: 50rem
}
.filter-results {
  transition: opacity .25s ease-in-out;
  scroll-margin-top: 4rem
}
@media screen and (min-width:80em) {
  .filter-results {
    scroll-margin-top: 8.0625rem
  }
}
.filter-results.is-loading {
  opacity: .4;
  transition: none;
  cursor: none;
  pointer-events: none
}
.filter-sorting {
  display: flex;
  justify-content: space-between;
  align-content: center;
  margin-bottom: 3rem
}
@media screen and (min-width:0em) {
  .filter-sorting {
    flex-direction: column
  }
}
@media screen and (min-width:48em) {
  .filter-sorting {
    flex-direction: row
  }
}
@media screen and (min-width:63.75em) {
  .filter-sorting {
    flex-direction: column
  }
}
@media screen and (min-width:78.75em) {
  .filter-sorting {
    flex-direction: row
  }
}
@media screen and (min-width:48em) {
  .filter-sorting > * {
    padding-left: 1rem
  }
}
@media screen and (min-width:63.75em) {
  .filter-sorting > * {
    padding-left: 0
  }
}
@media screen and (min-width:78.75em) {
  .filter-sorting > * {
    padding-left: 1rem
  }
}
@media screen and (min-width:48em) {
  .filter-sorting > * {
    padding-right: 1rem
  }
}
@media screen and (min-width:63.75em) {
  .filter-sorting > * {
    padding-right: 0
  }
}
@media screen and (min-width:78.75em) {
  .filter-sorting > * {
    padding-right: 1rem
  }
}
.filter-sorting > :first-child {
  padding-left: 0
}
.filter-sorting > :last-child {
  padding-right: 0
}
.filter-sorting .result {
  font-weight: 700
}
@media screen and (min-width:0em) {
  .filter-sorting .result {
    padding-right: .5rem
  }
}
@media screen and (min-width:48em) {
  .filter-sorting .result {
    padding-right: 0
  }
}
@media screen and (min-width:63.75em) {
  .filter-sorting .result {
    padding-right: .5rem
  }
}
@media screen and (min-width:78.75em) {
  .filter-sorting .result {
    padding-right: 0
  }
}
@media screen and (min-width:0em) {
  .filter-sorting .result {
    margin-bottom: .5rem
  }
}
@media screen and (min-width:48em) {
  .filter-sorting .result {
    margin-bottom: 0
  }
}
@media screen and (min-width:63.75em) {
  .filter-sorting .result {
    margin-bottom: .5rem
  }
}
@media screen and (min-width:78.75em) {
  .filter-sorting .result {
    margin-bottom: 0
  }
}
.filter-sorting .sorting {
  display: flex;
  flex-direction: column
}
@media screen and (min-width:48em) {
  .filter-sorting .sorting {
    flex-direction: row;
    align-items: center
  }
}
.filter-sorting .sorting > * {
  position: relative;
  padding-left: 1.5rem;
  white-space: nowrap;
  transition: opacity .15s ease-in-out;
  color: var(--dark-color)
}
.filter-sorting .sorting > ::before {
  content: "";
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  line-height: 1;
  font-size: 1.125rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0
}
.filter-sorting .sorting > :focus-visible, .filter-sorting .sorting > :hover {
  text-decoration: none
}
.filter-sorting .sorting > :not(:first-child) {
  margin-top: .5rem
}
@media screen and (min-width:48em) {
  .filter-sorting .sorting > :not(:first-child) {
    margin-top: 0;
    margin-left: 1rem
  }
}
.filter-sorting .sorting > .is-desc::before {
  content: "";
  display: inline-block;
  line-height: 1
}
.filter-sorting .sorting > .is-inactive {
  opacity: .4
}
.filter-sorting .sorting > .is-inactive:focus-visible, .filter-sorting .sorting > .is-inactive:hover {
  opacity: 1
}
.filter-sorting .view::before, .is-tile .filter-sorting .view::before {
  content: "";
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  line-height: 1;
  font-size: 1.375rem
}
.is-tile .filter-sorting .view::before {
  content: ""
}
.news-header {
  padding-bottom: 2rem
}
.news-header + .rte-content {
  padding-top: unset
}
.news-overview .news-header {
  padding: unset
}
.events-overview > :target {
  animation: highlight-item 1.25s ease-in-out
}
.events-overview .figure {
  height: auto;
  padding-bottom: 0;
  max-width: 300px
}
@supports (--a:0) {
  .events-overview .figure {
    height: 0;
    padding-bottom: calc(100%/(var(--aspect-ratio)))
  }
}
.events-overview .figure .figure-wrapper {
  position: static;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto
}
.events-overview .figure .images > * {
  position: static;
  transform: none
}
.event-details .figure .images > :nth-child(2), .events-overview .figure .images > :nth-child(2), .history-entry .figure .images > :nth-child(2), .teasers .figure .images > :nth-child(2) {
  position: absolute;
  top: 0;
  left: 0
}
.events-overview .decoration {
  display: inline-block;
  margin-bottom: 1rem
}
.events-overview .headline {
  margin-top: 1em
}
.event-header .event-date {
  margin-bottom: 0
}
.event-date {
  color: var(--dark-color);
  margin-bottom: 1rem
}
.event-details {
  margin-bottom: 3rem;
  border-top: 2px solid #edf2f7;
  padding-top: .75rem
}
.event-details .figure {
  height: auto;
  padding-bottom: 0;
  max-width: 300px;
  margin-bottom: 1rem
}
.event-details .figure .figure-wrapper {
  position: static;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto
}
.event-details .figure .images > * {
  position: static;
  transform: none
}
.event-details .address {
  margin-bottom: 1rem
}
.event-details .links {
  border-top: 0
}
.status-label {
  display: inline-block;
  margin-top: 1.5rem;
  margin-bottom: .75rem;
  font-size: .75rem;
  font-weight: 700;
  background-color: #d60000;
  padding: .25rem .25rem .125rem;
  color: #fff;
  text-transform: uppercase
}
.exhibitors-list > * ol, .exhibitors-list > * ul, .logo-list > * ol, .logo-list > * ul, .management > * ol, .management > * ul, .publications > * ol, .publications > * ul, .services-list > * ol, .services-list > * ul, .status-label + .headline, .teasers > * ol, .teasers > * ul {
  margin-top: 0
}
.exhibitors-list {
  margin-bottom: unset
}
.exhibitors-list > * {
  padding-left: 0;
  padding-top: .5em;
  padding-bottom: .5em;
  overflow-x: hidden
}
.exhibitors-list > ::after, .exhibitors-list > ::before {
  color: inherit;
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  margin-right: 0
}
.downloads-overview .download-item:focus-visible::after, .downloads-overview .download-item:hover::after, .exhibitors-list > :focus-visible::after, .exhibitors-list > :hover::after {
  transform: translateX(0)
}
.exhibitors-list > ::before {
  background-color: #e6ecf2
}
.exhibitors-list > ::after {
  transform: translateX(-101%);
  transition: transform .25s ease-in-out
}
.publications {
  margin-bottom: unset
}
.publications:not(:last-child) {
  margin-bottom: 3rem
}
.publications > * {
  padding-left: 0;
  border-top: 2px solid #edf2f7;
  padding-top: .75rem;
  margin-bottom: 4rem
}
.downloads-overview > ::after, .downloads-overview > ::before, .logo-list > ::after, .logo-list > ::before, .management > ::after, .management > ::before, .publications > ::after, .publications > ::before, .services-list > ::after, .services-list > ::before, .teasers > ::after, .teasers > ::before {
  content: none;
  position: static;
  color: inherit;
  top: auto
}
.publications .inner-wrapper {
  display: flex;
  flex-flow: row wrap;
  margin-right: -1rem;
  margin-left: -1rem
}
.publications .image {
  flex: 0 0 auto;
  width: calc(100% - 2rem);
  margin-left: 1rem;
  margin-right: 1rem
}
@media screen and (min-width:30em) {
  .publications .image {
    flex: 0 0 auto;
    width: calc(50% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem
  }
}
@media screen and (min-width:48em) {
  .publications .image {
    flex: 0 0 auto;
    width: calc(33.3333333333% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem
  }
}
.publications .content {
  flex: 0 0 auto;
  width: calc(100% - 2rem);
  margin-left: 1rem;
  margin-right: 1rem
}
@media screen and (min-width:30em) {
  .publications .content {
    flex: 0 0 auto;
    width: calc(50% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem
  }
}
@media screen and (min-width:48em) {
  .publications .content {
    flex: 0 0 auto;
    width: calc(66.6666666667% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem
  }
}
.publications .content > :first-child, .teasers .content > :first-child {
  margin-top: 0
}
.publications .figure {
  padding-bottom: 100%
}
@supports (--a:0) {
  .publications .figure {
    height: unset;
    padding-bottom: unset;
    aspect-ratio: var(--aspect-ratio, 1)
  }
}
@media screen and (min-width:48em) {
  .teaser-featured-application .warning {
    display: none
  }
}
.teaser-featured-application .figure {
  padding-bottom: 56.25%
}
@supports (--a:0) {
  .teaser-featured-application .figure {
    height: unset;
    padding-bottom: unset;
    aspect-ratio: var(--aspect-ratio, 1.7777777778)
  }
}
.teaser-featured-application .image {
  position: relative
}
.teaser-featured-application .img-opener {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
  z-index: 1
}
.teasers {
  margin-bottom: unset
}
.teasers:not(:last-child) {
  margin-bottom: 3rem
}
.teasers > * {
  padding-left: 0;
  border-top: 2px solid #edf2f7;
  padding-top: 2rem;
  padding-bottom: 2rem
}
@media print {
  .teasers > * {
    page-break-inside: avoid
  }
}
.teasers .inner-wrapper {
  display: flex;
  flex-flow: row wrap;
  margin-right: -1rem;
  margin-left: -1rem
}
.teasers .image {
  flex: 0 0 auto;
  width: calc(100% - 2rem);
  margin-left: 1rem;
  margin-right: 1rem
}
@media screen and (min-width:30em) {
  .teasers .image {
    flex: 0 0 auto;
    width: calc(50% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem
  }
}
@media screen and (min-width:48em) {
  .teasers .image {
    flex: 0 0 auto;
    width: calc(33.3333333333% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem
  }
}
.teasers .content {
  flex: 0 0 auto;
  width: calc(100% - 2rem);
  margin-left: 1rem;
  margin-right: 1rem
}
@media screen and (min-width:30em) {
  .teasers .content {
    flex: 0 0 auto;
    width: calc(50% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem
  }
}
@media screen and (min-width:48em) {
  .teasers .content {
    flex: 0 0 auto;
    width: calc(66.6666666667% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem
  }
}
.teasers .figure {
  height: auto;
  padding-bottom: 0
}
@supports (--a:0) {
  .teasers .figure {
    height: 0;
    padding-bottom: calc(100%/(var(--aspect-ratio)))
  }
}
.teasers .figure .figure-wrapper {
  position: static;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto
}
.teasers .figure .images > * {
  position: static;
  transform: none
}
.management {
  margin-bottom: unset
}
.management:not(:last-child) {
  margin-bottom: 3rem
}
.management > * {
  padding-left: 0;
  margin-bottom: 2rem
}
.management .inner-wrapper {
  display: flex;
  flex-flow: row wrap;
  margin-right: -1rem;
  margin-left: -1rem
}
.management .image {
  flex: 0 0 auto;
  width: calc(100% - 2rem);
  margin-left: 1rem;
  margin-right: 1rem
}
@media screen and (min-width:30em) {
  .management .image {
    flex: 0 0 auto;
    width: calc(41.6666666667% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem
  }
}
@media screen and (min-width:48em) {
  .management .image {
    flex: 0 0 auto;
    width: calc(33.3333333333% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem
  }
}
.management .content {
  flex: 0 0 auto;
  width: calc(100% - 2rem);
  margin-left: 1rem;
  margin-right: 1rem
}
@media screen and (min-width:30em) {
  .management .content {
    flex: 0 0 auto;
    width: calc(58.3333333333% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem
  }
}
@media screen and (min-width:48em) {
  .management .content {
    flex: 0 0 auto;
    width: calc(66.6666666667% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem
  }
}
.management .content > :first-child {
  margin-top: 0
}
.logo-list {
  margin-bottom: unset;
  border-top: 1px solid rgba(100, 165, 230, .4)
}
.logo-list > * {
  padding-left: 0
}
@media screen and (min-width:63.75em) {
  .logo-list {
    display: flex
  }
  .logo-list > :not(:first-child) {
    margin-left: 2.5rem
  }
}
.logo-list > * > * {
  display: flex;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(100, 165, 230, .1)
}
@media screen and (min-width:63.75em) {
  .logo-list > * > * {
    border-bottom: none
  }
}
.logo-list svg {
  width: 7.5rem;
  height: 100%;
  max-width: 100%
}
.logo-list svg.logo-connectivity-solutions {
  width: 10rem
}
@media screen and (min-width:63.75em) {
  .logo-list svg {
    height: auto
  }
}
.services {
  background-color: #023c64;
  color: #fff;
  padding-top: 2rem;
  padding-right: 2rem;
  padding-left: 2rem
}
.services-list {
  margin-bottom: unset;
  display: flex;
  flex-flow: row wrap;
  margin-right: -1rem;
  margin-left: -1rem
}
.services-list:not(:last-child) {
  margin-bottom: 3rem
}
.services-list > * {
  padding-left: 0;
  flex: 0 0 auto;
  width: calc(100% - 2rem);
  margin-left: 1rem;
  margin-right: 1rem
}
@media screen and (min-width:30em) {
  .services-list > * {
    width: calc(50% - 2rem)
  }
}
@media screen and (min-width:35.5em) {
  .services-list > * {
    width: calc(33.3333333333% - 2rem)
  }
}
@media screen and (min-width:78.75em) {
  .services-list > * {
    width: calc(25% - 2rem)
  }
}
.service {
  display: flex;
  align-items: center;
  margin-bottom: 2rem
}
@media screen and (min-width:30em) {
  .service {
    flex-direction: column
  }
}
.service .content {
  margin-left: 1rem
}
@media screen and (min-width:30em) {
  .service .content {
    margin-left: 0;
    text-align: center
  }
}
.service svg {
  height: 3.5rem;
  width: 3.5rem
}
.history-item:first-child .jumpmark {
  margin-top: -7rem
}
.downloads-overview > * ol, .downloads-overview > * ul, .history-item .title {
  margin-top: 0
}
.history-item .jumpmark {
  height: 7rem;
  margin-top: -5rem
}
.history-entry {
  display: flex;
  flex-flow: row wrap;
  margin-right: -1rem;
  margin-left: -1rem
}
.history-entry:not(:first-child) {
  margin-top: 2rem
}
.history-entry .image {
  flex: 0 0 auto;
  width: calc(100% - 2rem);
  margin-left: 1rem;
  margin-right: 1rem
}
@media screen and (min-width:35.5em) {
  .history-entry .image {
    width: calc(50% - 2rem)
  }
}
@media screen and (min-width:48em) {
  .history-entry .image {
    width: calc(33.3333333333% - 2rem)
  }
}
@media screen and (min-width:63.75em) {
  .history-entry .image {
    width: calc(50% - 2rem)
  }
}
@media screen and (min-width:78.75em) {
  .history-entry .image {
    width: calc(33.3333333333% - 2rem)
  }
}
.history-entry .content {
  flex: 0 0 auto;
  width: calc(100% - 2rem);
  margin-left: 1rem;
  margin-right: 1rem
}
@media screen and (min-width:48em) {
  .history-entry .content {
    width: calc(66.6666666667% - 2rem)
  }
}
@media screen and (min-width:63.75em) {
  .history-entry .content {
    width: calc(100% - 2rem)
  }
}
@media screen and (min-width:78.75em) {
  .history-entry .content {
    width: calc(66.6666666667% - 2rem)
  }
}
.history-entry .content :first-child {
  margin-top: 0
}
.history-entry .figure {
  height: auto;
  padding-bottom: 0
}
.history-entry .figure .figure-wrapper {
  position: static;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto
}
.history-entry .figure .images > * {
  position: static;
  transform: none
}
.history-timeline {
  z-index: 2
}
.history-navigation {
  display: none
}
@media screen and (min-width:48em) {
  .history-navigation {
    display: block
  }
}
@media screen and (min-width:63.75em) {
  .history-navigation {
    display: none
  }
}
@media screen and (min-width:78.75em) {
  .history-navigation {
    display: block
  }
}
.sticky-helper {
  display: none
}
.downloads-overview {
  margin-bottom: unset
}
.downloads-overview > * {
  padding-left: 0
}
.downloads-overview .download-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  overflow-x: hidden
}
.downloads-overview .download-item::after, .downloads-overview .download-item::before {
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  margin-right: 0
}
.downloads-overview .download-item::before {
  background-color: #e6ecf2
}
.downloads-overview .download-item::after {
  transform: translateX(-101%);
  transition: transform .25s ease-in-out;
  background-color: var(--dark-color)
}
.downloads-overview .download-icon {
  width: 3rem
}
.downloads-overview .download-icon .icon {
  display: block;
  position: relative;
  left: -.5rem;
  width: 3rem;
  height: 3rem
}
.downloads-overview .download-icon .icon svg {
  width: 100%;
  height: auto
}
.downloads-overview .download-content {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%
}
.downloads-overview .download-content .inner-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%
}
@media screen and (min-width:0em) {
  .downloads-overview .download-content .inner-wrapper {
    flex-direction: column
  }
}
@media screen and (min-width:48em) {
  .downloads-overview .download-content .inner-wrapper {
    flex-direction: row
  }
}
@media screen and (min-width:63.75em) {
  .downloads-overview .download-content .inner-wrapper {
    flex-direction: column
  }
}
@media screen and (min-width:78.75em) {
  .downloads-overview .download-content .inner-wrapper {
    flex-direction: row
  }
}
.downloads-overview .file-data {
  width: 100%
}
@media screen and (min-width:30em) {
  .downloads-overview .file-data {
    width: auto;
    display: flex;
    flex-direction: column;
    margin-right: 1.5rem
  }
}
.downloads-overview .file-data > * {
  margin-top: .125rem;
  margin-bottom: .125rem
}
@media screen and (min-width:0em) {
  .downloads-overview .meta {
    margin-bottom: 1.5rem
  }
}
@media screen and (min-width:48em) {
  .downloads-overview .meta {
    margin-bottom: 0
  }
}
@media screen and (min-width:63.75em) {
  .downloads-overview .meta {
    margin-bottom: 1.5rem
  }
}
@media screen and (min-width:78.75em) {
  .downloads-overview .meta {
    margin-bottom: 0
  }
}
.downloads-overview .meta > * {
  display: inline-block
}
.downloads-overview .meta > :not(:last-child)::after {
  content: "|";
  margin-right: .375em;
  margin-left: .375em
}
.downloads-overview .meta .file-type {
  text-transform: uppercase
}
.downloads-overview .actions {
  width: 100%
}
@media screen and (min-width:30em) {
  .downloads-overview .actions {
    width: auto;
    display: flex;
    align-items: center
  }
}
.downloads-overview .actions .label-wrapper {
  margin-bottom: 0
}
.downloads-overview .actions .button {
  height: 2.625rem;
  margin-top: .5rem
}
@media screen and (min-width:30em) {
  .downloads-overview .actions .button {
    margin-top: 0
  }
  .downloads-overview .actions .button:not(:first-child) {
    margin-left: .5rem
  }
}
.downloads-overview .description {
  margin-top: 1.5rem
}
.downloads-overview .description > * {
  margin-top: 0;
  margin-bottom: 0
}
.downloads-overview.is-tile {
  display: flex;
  flex-flow: row wrap;
  margin-right: -.375rem;
  margin-left: -.375rem
}
.downloads-overview.is-tile .download-item {
  display: flex;
  margin-bottom: .75rem;
  color: #fff;
  padding: 2rem 1.5rem 1.5rem;
  background-color: var(--dark-color);
  flex: 0 0 auto;
  width: calc(100% - .75rem);
  margin-left: .375rem;
  margin-right: .375rem
}
@media screen and (min-width:35.5em) {
  .downloads-overview.is-tile .download-item {
    flex: 0 0 auto;
    width: calc(50% - .75rem);
    margin-left: .375rem;
    margin-right: .375rem
  }
}
@media screen and (min-width:48em) {
  .downloads-overview.is-tile .download-item {
    flex: 0 0 auto;
    width: calc(100% - .75rem);
    margin-left: .375rem;
    margin-right: .375rem
  }
}
@media screen and (min-width:60em) {
  .downloads-overview.is-tile .download-item {
    flex: 0 0 auto;
    width: calc(50% - .75rem);
    margin-left: .375rem;
    margin-right: .375rem
  }
}
@media screen and (min-width:158.75em) {
  .downloads-overview.is-tile .download-item {
    flex: 0 0 auto;
    width: calc(33.3333333333% - .75rem);
    margin-left: .375rem;
    margin-right: .375rem
  }
}
.downloads-overview.is-tile .download-item::after, .downloads-overview.is-tile .download-item::before {
  content: none
}
.downloads-overview.is-tile .title {
  color: #fff
}
.downloads-overview.is-tile .inner-wrapper {
  flex-direction: column;
  width: 100%
}
.downloads-overview.is-tile .inner-wrapper .file-data {
  margin-right: 0;
  margin-bottom: 1rem
}
.downloads-overview.is-tile .inner-wrapper .actions {
  display: flex;
  border-top: 1px solid #edf2f7;
  padding-top: 1rem
}
.downloads-overview.is-tile .download-icon {
  position: absolute;
  width: 3.5rem;
  top: .5rem;
  right: .25rem
}
.downloads-overview.is-tile .download-icon .icon {
  left: auto;
  width: auto;
  height: auto
}
.downloads-overview.is-tile .download-icon svg {
  opacity: .25;
  fill: currentColor
}
.downloads-overview.is-tile .download-content {
  height: 100%
}
.downloads-overview.is-tile .meta {
  margin-bottom: 0
}
.downloads-overview.is-tile .button, .mosaics > * ol, .mosaics > * ul, .product-overview-list > * ol, .product-overview-list > * ul, .related-links-list > * ol, .related-links-list > * ul {
  margin-top: 0
}
.downloads-overview.is-tile .button:not(:first-child) {
  margin-left: .5rem
}
.downloads-overview.is-tile .select2-container--disabled .select2-selection {
  background-color: #fff
}
.downloads-overview.is-tile .select2-selection {
  background-color: #fff;
  border-color: #fff
}
.downloads-overview.is-tile .select2-selection:focus {
  background-color: #fff
}
.videos {
  background-color: transparent
}
.videos:not(:last-child) {
  margin-bottom: 3rem
}
@media print {
  .videos {
    display: none
  }
}
.video .figure, .videos .video {
  margin-bottom: 0
}
.video {
  margin-bottom: 2rem
}
.video .figure {
  padding-bottom: 56.25%
}
@supports (--a:0) {
  .video .figure {
    height: unset;
    padding-bottom: unset;
    aspect-ratio: var(--aspect-ratio, 1.7777777778)
  }
}
.video, .video-wrapper {
  position: relative
}
.video-wrapper::before {
  content: "";
  display: block;
  padding-bottom: 56.25%
}
@supports (--a:0) {
  .video-wrapper::before {
    height: unset;
    padding-bottom: unset;
    aspect-ratio: var(--aspect-ratio, 1.7777777778)
  }
}
.video-wrapper > * {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0
}
.video-player.is-playing {
  display: block
}
.video-player, .video-player.is-playing + * {
  display: none
}
.video-player > * {
  width: 100%;
  height: 100%
}
.video-trigger {
  color: #fff
}
.video-trigger::before {
  content: "";
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  line-height: 1;
  font-size: 4rem;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}
.video-trigger:focus-visible, .video-trigger:hover {
  color: #fff
}
.video-trigger:focus-visible::after, .video-trigger:hover::after {
  background-color: var(--bright-color)
}
.video-trigger::after {
  content: "";
  display: block;
  width: 5rem;
  height: 5rem;
  transition: background-color .25s ease-in-out;
  background-color: var(--dark-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1
}
.header-slider iframe, .is-current .video-trigger {
  pointer-events: none
}
.is-current .video-trigger::after, .is-current .video-trigger::before {
  content: none
}
.is-current .video-trigger .figure {
  opacity: 1
}
.video-title {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  z-index: 1;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: rgba(10, 10, 10, .6)
}
.video-playlist {
  display: flex;
  gap: .5rem;
  margin-top: .5rem;
  overflow: auto;
  -webkit-overflow-scrolling: touch
}
@media print {
  .video-playlist {
    display: none
  }
}
.video-playlist > * {
  width: 12.5rem;
  min-width: 12.5rem
}
.video-playlist > * .figure {
  opacity: .33;
  transition: opacity .33s ease-in-out
}
.video-playlist .video-trigger::before {
  font-size: 1.5rem
}
.video-playlist .video-trigger::after {
  width: 2rem;
  height: 2rem
}
.video-playlist .video-wrapper .video-title {
  opacity: 0;
  transition: opacity ease .5s
}
.video-playlist .video-wrapper:focus-visible .video-title, .video-playlist .video-wrapper:hover .video-title {
  opacity: 1
}
.sales-contacts {
  margin-bottom: 3rem
}
.sales-contacts .map {
  flex: 0 0 auto;
  width: calc(100% - 2rem);
  margin-left: 1rem;
  margin-right: 1rem
}
@media screen and (min-width:48em) {
  .sales-contacts .map {
    width: calc(50% - 2rem)
  }
}
@media screen and (min-width:63.75em) {
  .sales-contacts .map {
    width: calc(66.6666666667% - 2rem)
  }
}
.sales-contacts .map-dots > * {
  cursor: pointer
}
.sales-contacts-select {
  display: flex;
  flex-flow: row wrap;
  margin-right: -1rem;
  margin-left: -1rem
}
.sales-contacts-select svg {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 1rem
}
.country-select {
  flex: 0 0 auto;
  width: calc(100% - 2rem);
  margin-left: 1rem;
  margin-right: 1rem
}
@media screen and (min-width:48em) {
  .country-select {
    width: calc(50% - 2rem)
  }
}
@media screen and (min-width:63.75em) {
  .country-select {
    width: calc(33.3333333333% - 2rem)
  }
}
.sales-contacts-result {
  margin-top: 2rem
}
.sales-contacts-map-wrapper {
  position: relative;
  transition: opacity .25s ease-in-out
}
.sales-contacts-map-wrapper.is-loading {
  pointer-events: none;
  opacity: .5
}
.sales-contacts-map {
  margin-bottom: 2rem
}
.sales-contacts-map svg {
  width: 100%;
  height: initial;
  max-height: 100%
}
.sales-contacts-map .has-hover {
  cursor: pointer
}
@media screen and (min-width:48em) {
  .sales-contacts-map-results {
    position: absolute;
    pointer-events: none;
    transition: transform .3s ease-in-out, opacity .25s ease-in-out;
    width: 100%;
    max-width: 20rem;
    opacity: 0;
    transform: translate(-15%, 0)
  }
}
.sales-contacts-map-results.is-active {
  opacity: 1;
  transform: translate(0, 0);
  pointer-events: all
}
@media screen and (min-width:48em) {
  .sales-contacts-map-results .contacts-overview {
    margin-bottom: 0
  }
  .sales-contacts-map-results .contacts-overview > * {
    flex: 0 0 auto;
    width: calc(100% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem
  }
}
.sales-contacts-map-results .contact {
  background-color: rgba(255, 255, 255, .9)
}
@media screen and (min-width:48em) {
  .sales-contacts-map-results .contact {
    padding: 1rem;
    margin-bottom: 0
  }
  .sales-contacts-map-results .contact .title {
    margin-top: 0
  }
}
.sales-contacts-map-results .close-trigger {
  display: none;
  position: absolute;
  top: 4px;
  right: 0;
  border: 0;
  background-color: transparent
}
@media screen and (min-width:48em) {
  .sales-contacts-map-results .close-trigger {
    display: block
  }
}
@font-face {
  font-family: "lg";
  src: url(../fonts/lg.woff2?io9a6k)format("woff2"), url(../fonts/lg.ttf?io9a6k)format("truetype"), url(../fonts/lg.woff?io9a6k)format("woff"), url(../fonts/lg.svg?io9a6k#lg)format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: block
}
.lg-icon {
  font-family: "lg" !important;
  speak: never;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}
.lg-container {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"
}
.lg-next, .lg-prev {
  background-color: rgba(0, 0, 0, .45);
  border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: -10px;
  padding: 8px 10px 9px;
  position: absolute;
  top: 50%;
  z-index: 1084;
  outline: 0;
  border: 0
}
.lg-next.disabled, .lg-prev.disabled {
  opacity: 0 !important;
  cursor: default
}
.lg-next:hover:not(.disabled), .lg-prev:hover:not(.disabled) {
  color: #fff
}
.lg-single-item .lg-next, .lg-single-item .lg-prev {
  display: none
}
.lg-next {
  right: 20px
}
.lg-next:before {
  content: ""
}
.lg-prev {
  left: 20px
}
.lg-prev:after {
  content: ""
}
.lg-outer.lg-right-end .lg-object {
  animation: lg-right-end .3s;
  position: relative
}
.lg-outer.lg-left-end .lg-object {
  animation: lg-left-end .3s;
  position: relative
}
.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%
}
.lg-media-overlap .lg-toolbar {
  background-image: linear-gradient(0deg, transparent, rgba(0, 0, 0, .4))
}
.lg-toolbar .lg-icon {
  color: #999;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 47px;
  line-height: 27px;
  padding: 10px 0;
  text-align: center;
  width: 50px;
  text-decoration: none !important;
  outline: medium;
  will-change: color;
  transition: color .2s linear;
  background: 0 0;
  border: 0;
  box-shadow: none
}
.lg-toolbar .lg-icon.lg-icon-18 {
  font-size: 18px
}
.lg-toolbar .lg-icon:hover {
  color: #fff
}
.lg-toolbar .lg-close:after {
  content: ""
}
.lg-toolbar .lg-maximize {
  font-size: 22px
}
.lg-toolbar .lg-maximize:after {
  content: ""
}
.lg-toolbar .lg-download:after {
  content: ""
}
.lg-sub-html {
  color: #eee;
  font-size: 16px;
  padding: 10px 40px;
  text-align: center;
  z-index: 1080;
  opacity: 0;
  transition: opacity .2s ease-out 0s
}
.lg-sub-html h4 {
  margin: 0;
  font-size: 13px;
  font-weight: 700
}
.lg-sub-html p {
  font-size: 12px;
  margin: 5px 0 0
}
.lg-sub-html a {
  color: inherit
}
.lg-sub-html a:hover {
  text-decoration: underline
}
.lg-media-overlap .lg-sub-html {
  background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, .6))
}
.lg-item .lg-sub-html {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0
}
.lg-error-msg {
  font-size: 14px;
  color: #999
}
.lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  height: 47px;
  vertical-align: middle
}
.lg-closing .lg-next, .lg-closing .lg-prev, .lg-closing .lg-sub-html, .lg-closing .lg-toolbar {
  opacity: 0;
  transition: transform .08 cubic-bezier(0, 0, .25, 1) 0s, opacity .08 cubic-bezier(0, 0, .25, 1) 0s, color .08 linear
}
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-img-wrap, body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-video-cont {
  opacity: 0;
  transform: scale3d(.5, .5, .5);
  will-change: transform, opacity;
  transition: transform 250ms cubic-bezier(0, 0, .25, 1) 0s, opacity 250ms cubic-bezier(0, 0, .25, 1) !important
}
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-img-wrap, body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-video-cont {
  opacity: 1;
  transform: scale3d(1, 1, 1)
}
.lg-icon:focus-visible {
  color: #fff;
  border-radius: 3px;
  outline: 1px dashed rgba(255, 255, 255, .6)
}
.lg-toolbar .lg-icon:focus-visible {
  border-radius: 8px;
  outline-offset: -5px
}
.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image, .lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  transition-duration: 0ms !important
}
.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  will-change: transform;
  transition: transform .5s cubic-bezier(.12, .415, .01, 1.19) 0s
}
.lg-outer.lg-use-transition-for-zoom.lg-zoom-drag-transition .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  will-change: transform;
  transition: transform .8s cubic-bezier(0, 0, .25, 1) 0s
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img, .lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
  transform: scale3d(1, 1, 1);
  transition: transform .5s cubic-bezier(.12, .415, .01, 1.19) 0s, opacity .15s !important;
  backface-visibility: hidden
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.no-transition, .lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.no-transition {
  transition: none !important
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.reset-transition, .lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.reset-transition {
  transform: scale3d(1, 1, 1) translate3d(-50%, -50%, 0) !important;
  max-width: none !important;
  max-height: none !important;
  top: 50% !important;
  left: 50% !important
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.reset-transition-x, .lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.reset-transition-x {
  transform: scale3d(1, 1, 1) translate3d(-50%, 0, 0) !important;
  top: 0 !important;
  left: 50% !important;
  max-width: none !important;
  max-height: none !important
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.reset-transition-y, .lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.reset-transition-y {
  transform: scale3d(1, 1, 1) translate3d(0, -50%, 0) !important;
  top: 50% !important;
  left: 0 !important;
  max-width: none !important;
  max-height: none !important
}
.lg-icon.lg-zoom-in:after {
  content: ""
}
.lg-icon.lg-actual-size {
  font-size: 20px
}
.lg-icon.lg-actual-size:after {
  content: ""
}
.lg-actual-size .lg-icon.lg-zoom-in, .lg-icon.lg-zoom-out {
  opacity: .5;
  pointer-events: none
}
.lg-icon.lg-zoom-out:after {
  content: ""
}
.lg-zoomed .lg-icon.lg-zoom-out {
  opacity: 1;
  pointer-events: auto
}
.lg-outer.lg-first-slide-loading .lg-actual-size, .lg-outer.lg-first-slide-loading .lg-zoom-in, .lg-outer.lg-first-slide-loading .lg-zoom-out, .lg-outer[data-lg-slide-type=iframe] .lg-actual-size, .lg-outer[data-lg-slide-type=iframe] .lg-zoom-in, .lg-outer[data-lg-slide-type=iframe] .lg-zoom-out, .lg-outer[data-lg-slide-type=video] .lg-actual-size, .lg-outer[data-lg-slide-type=video] .lg-zoom-in, .lg-outer[data-lg-slide-type=video] .lg-zoom-out {
  opacity: .75;
  pointer-events: none
}
.lg-fullscreen:after {
  content: ""
}
.lg-fullscreen-on .lg-fullscreen:after {
  content: ""
}
.lg-outer .lg-video-cont {
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  position: relative
}
.lg-outer .lg-video-cont .lg-object {
  width: 100% !important;
  height: 100% !important
}
.lg-outer .lg-has-iframe .lg-video-cont {
  -webkit-overflow-scrolling: touch;
  overflow: auto
}
.lg-outer .lg-video-object {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  z-index: 3
}
.lg-outer .lg-video-poster {
  z-index: 1
}
.lg-outer .lg-has-video .lg-video-object {
  opacity: 0;
  will-change: opacity;
  transition: opacity .3s ease-in
}
.lg-outer .lg-has-video.lg-video-loaded .lg-video-play-button, .lg-outer .lg-has-video.lg-video-loaded .lg-video-poster {
  opacity: 0 !important
}
.lg-outer .lg-has-video.lg-video-loaded .lg-video-object, .lg-video-play-button:hover .lg-video-play-icon, .lg-video-play-button:hover .lg-video-play-icon-bg {
  opacity: 1
}
.lg-video-play-button {
  width: 18%;
  max-width: 140px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  cursor: pointer;
  transform: translate(-50%, -50%) scale(1);
  will-change: opacity, transform;
  transition: transform .25s cubic-bezier(.17, .88, .32, 1.28), opacity .1s
}
.lg-video-play-icon-bg {
  fill: none;
  stroke-width: 3%;
  stroke: #fcfcfc;
  opacity: .6;
  will-change: opacity;
  transition: opacity .12s ease-in
}
.lg-video-play-icon-circle {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  fill: none;
  stroke-width: 3%;
  stroke: rgba(30, 30, 30, .9);
  stroke-opacity: 1;
  stroke-linecap: round;
  stroke-dasharray: 200;
  stroke-dashoffset: 200
}
.lg-video-play-icon {
  position: absolute;
  width: 25%;
  max-width: 120px;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  opacity: .6;
  will-change: opacity;
  transition: opacity .12s ease-in
}
.lg-video-play-icon .lg-video-play-icon-inner {
  fill: #fcfcfc
}
.lg-video-loading .lg-video-play-icon-circle {
  animation: lg-play-rotate 2s linear .25s infinite, lg-play-stroke 1.5s ease-in-out .25s infinite
}
.lg-video-loaded .lg-video-play-button {
  opacity: 0;
  transform: translate(-50%, -50%) scale(.7)
}
.lg-group:after {
  content: "";
  display: table;
  clear: both
}
.lg-container {
  outline: 0
}
.lg-on {
  scroll-behavior: unset
}
.lg-overlay-open {
  overflow: hidden
}
.lg-hide-sub-html .lg-sub-html, .lg-next, .lg-pager-outer, .lg-prev, .lg-toolbar {
  opacity: 0;
  will-change: transform, opacity;
  transition: transform .25s cubic-bezier(0, 0, .25, 1) 0s, opacity .25s cubic-bezier(0, 0, .25, 1) 0s
}
.lg-outer.lg-visible, .lg-outer.lg-zoom-from-image, .lg-show-in .lg-next, .lg-show-in .lg-pager-outer, .lg-show-in .lg-prev, .lg-show-in .lg-toolbar, .lg-show-in.lg-hide-sub-html .lg-sub-html {
  opacity: 1
}
.lg-show-in .lg-hide-items .lg-prev {
  opacity: 0;
  transform: translate3d(-10px, 0, 0)
}
.lg-show-in .lg-hide-items .lg-next {
  opacity: 0;
  transform: translate3d(10px, 0, 0)
}
.lg-show-in .lg-hide-items .lg-toolbar {
  opacity: 0;
  transform: translate3d(0, -10px, 0)
}
.lg-show-in .lg-hide-items.lg-hide-sub-html .lg-sub-html {
  opacity: 0;
  transform: translate3d(0, 20px, 0)
}
.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  text-align: left;
  opacity: .001;
  outline: 0;
  will-change: auto;
  overflow: hidden;
  transition: opacity .15s ease 0s
}
.lg-outer * {
  box-sizing: border-box
}
.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-current, .lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-next-slide, .lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-prev-slide {
  transition-duration: inherit !important;
  transition-timing-function: inherit !important
}
.lg-outer.lg-css3.lg-dragging .lg-item.lg-current, .lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide {
  transition-duration: 0s !important;
  opacity: 1
}
.lg-outer.lg-grab img.lg-object {
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab
}
.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing
}
.lg-outer .lg-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0
}
.lg-outer .lg-inner {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  transition: opacity 0s;
  white-space: nowrap
}
.lg-outer .lg-item {
  display: none !important
}
.lg-outer .lg-item:not(.lg-start-end-progress) {
  background: url(../images/loading.gif)no-repeat center center
}
.lg-outer.lg-css .lg-current, .lg-outer.lg-css3 .lg-current, .lg-outer.lg-css3 .lg-next-slide, .lg-outer.lg-css3 .lg-prev-slide {
  display: inline-block !important
}
.lg-outer .lg-img-wrap, .lg-outer .lg-item {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%
}
.lg-outer .lg-img-wrap {
  display: inline-block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  white-space: nowrap;
  font-size: 0
}
.lg-outer .lg-img-wrap:before, .lg-outer .lg-item:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle
}
.lg-outer .lg-item.lg-complete {
  background-image: none
}
.lg-outer .lg-item.lg-current {
  z-index: 1060
}
.lg-outer .lg-object {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: relative
}
.lg-outer .lg-empty-html .lg-sub-html, .lg-outer .lg-empty-html.lg-sub-html {
  display: none
}
.lg-outer.lg-hide-download .lg-download {
  opacity: .75;
  pointer-events: none
}
.lg-outer .lg-first-slide .lg-dummy-img {
  position: absolute;
  top: 50%;
  left: 50%
}
.lg-outer.lg-components-open:not(.lg-zoomed) .lg-components {
  transform: translate3d(0, 0, 0);
  opacity: 1
}
.lg-outer.lg-components-open:not(.lg-zoomed) .lg-sub-html {
  opacity: 1;
  transition: opacity .2s ease-out .15s
}
.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: #000;
  opacity: 0;
  will-change: auto;
  transition: opacity 333ms ease-in 0s
}
.lg-backdrop.in, .lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1
}
.lg-css3.lg-no-trans .lg-current, .lg-css3.lg-no-trans .lg-next-slide, .lg-css3.lg-no-trans .lg-prev-slide {
  transition: none 0s ease 0s !important
}
.lg-css3.lg-use-css3 .lg-item {
  backface-visibility: hidden
}
.lg-css3.lg-fade .lg-item {
  opacity: 0
}
.lg-css3.lg-fade .lg-item.lg-current, .lg-css3.lg-fade .lg-item.lg-next-slide, .lg-css3.lg-fade .lg-item.lg-prev-slide {
  transition: opacity .1s ease 0s
}
.lg-css3.lg-use-css3 .lg-item.lg-start-progress {
  transition: transform 1s cubic-bezier(.175, .885, .32, 1.275) 0s
}
.lg-css3.lg-use-css3 .lg-item.lg-start-end-progress {
  transition: transform 1s cubic-bezier(0, 0, .25, 1) 0s
}
.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  transform: translate3d(-100%, 0, 0)
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  transform: translate3d(100%, 0, 0)
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  transform: translate3d(0, 0, 0);
  opacity: 1
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  transition: transform 1s cubic-bezier(0, 0, .25, 1) 0s, opacity .1s ease 0s
}
.lg-container {
  display: none
}
.lg-container.lg-show {
  display: block
}
.lg-container.lg-dragging-vertical .lg-backdrop {
  transition-duration: 0s !important
}
.lg-container.lg-dragging-vertical .lg-css3 .lg-item.lg-current {
  transition-duration: 0s !important;
  opacity: 1
}
.lg-components, .lg-inline .lg-backdrop, .lg-inline .lg-outer {
  position: absolute
}
.lg-inline .lg-backdrop {
  z-index: 1
}
.lg-inline .lg-outer {
  z-index: 2
}
.lg-inline .lg-maximize:after {
  content: ""
}
.lg-components {
  transform: translate3d(0, 100%, 0);
  will-change: transform;
  transition: transform .35s ease-out 0s;
  z-index: 1080;
  bottom: 0;
  right: 0;
  left: 0
}
@font-face {
  font-family: "lg";
  src: url(lg.ba38ec746a64d70d.woff)format("woff"), url(lg.13e892a28dda2567.ttf)format("truetype");
  font-weight: 400;
  font-style: normal
}
.lg-item {
  background-image: none !important
}
.lg-on {
  overflow-y: hidden
}
.animation-frame.lg-outer .lg-video {
  position: static
}
.animation-frame.lg-outer .lg-video iframe {
  padding-top: 3rem
}
.product-overview-filter {
  margin-bottom: 0
}
.product-overview-list {
  margin-bottom: unset
}
.product-overview-list > * {
  padding-left: 0;
  margin-bottom: 2rem
}
.mosaics > ::after, .mosaics > ::before, .product-overview-list > ::after, .product-overview-list > ::before, .related-links-list > ::after, .related-links-list > ::before {
  content: none;
  position: static;
  color: inherit;
  top: auto
}
.product {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(10, 10, 10, .09);
  padding: 1rem;
  color: #0a0a0a;
  height: 100%
}
.product:focus-visible, .product:hover {
  text-decoration: none
}
@media screen and (min-width:78.75em) {
  .product:focus-visible .attributes, .product:hover .attributes {
    opacity: 1;
    visibility: visible;
    pointer-events: all
  }
}
.product .category {
  min-height: 4rem
}
.product .figure {
  aspect-ratio: 1
}
.product .figure img {
  width: auto;
  max-height: 100%;
  margin: 0 auto
}
.product .title {
  margin-bottom: .5rem
}
.product .intro {
  margin-top: 0;
  font-weight: 400;
  color: #000;
  font-size: 15px;
  line-height: 20px;
  text-align: left;
}
.product .attributes {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background-color: #000;
  width: 100%;
  height: 100%;
  padding: 15px;
  transition: opacity .25s ease-in-out, visibility .25s ease-in-out;
  z-index: 2;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch
}
.product .attributes h3{
	color: #fff;
  margin: 0 0 50px 0;
  line-height: 1.5;
}
dl dd {
  margin-bottom: .5rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(237,242,247,.3);
	color: #fff;
}
.product-type {
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dark-color)
}
.mosaics {
  margin-bottom: unset
}
.mosaics:not(:last-child) {
  margin-bottom: 5rem
}
.mosaics > * {
  padding-left: 0
}
.mosaics > :not(:last-child) {
  margin-bottom: 3rem
}
.mosaics > :nth-child(even) .headline-header {
  margin-left: auto
}
@media screen and (min-width:48em) {
  .mosaics > :nth-child(even) .image {
    padding-right: 4rem;
    padding-left: 0
  }
}
.mosaics .headline-header {
  position: relative;
  padding: 2rem;
  z-index: 2;
  background-color: rgba(var(--dark-color-rgb), .9);
  color: #fff
}
.is-controls .mosaics .headline-header {
  background-color: rgba(255, 255, 255, .9);
  color: #626262;
  border: 2px solid #626262
}
.is-controls .mosaics .headline-header .button {
  background-color: #626262;
  border: 2px solid #626262;
  right: -2px;
  bottom: -2px
}
.is-controls .mosaics .headline-header .button:focus, .is-controls .mosaics .headline-header .button:hover {
  color: #626262
}
@media screen and (min-width:35.5em) {
  .mosaics .headline-header {
    max-width: 90%
  }
}
@media screen and (min-width:48em) {
  .mosaics .headline-header {
    max-width: 80%
  }
}
.mosaics .headline-header.has-button {
  padding-bottom: 3rem
}
.mosaics .headline-header .title {
  color: inherit;
  margin: 0
}
.mosaics .headline-header .button {
  position: absolute;
  right: 0;
  bottom: 0
}
.mosaics .image {
  margin-top: .125rem
}
@media screen and (min-width:35.5em) {
  .mosaics .image {
    margin-top: -2rem
  }
  .is-controls .mosaics .image {
    margin-top: -1.125rem
  }
}
@media screen and (min-width:48em) {
  .mosaics .image {
    margin-top: -4rem
  }
}
.mosaics .image .figure {
  margin-bottom: 0
}
@media screen and (max-width:35.4875em) {
  .mosaics .image .figure {
    padding-bottom: 50%
  }
  @supports (--a:0) {
    .mosaics .image .figure {
      height: unset;
      padding-bottom: unset;
      aspect-ratio: var(--aspect-ratio, 2)
    }
  }
  .mosaics .image .figure [src*="data:"] {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%
  }
}
@media print {
  .facts > * {
    page-break-inside: avoid
  }
}
.facts .icon {
  margin-bottom: 1rem
}
.facts .icon svg {
  width: 4rem;
  height: 4rem;
  fill: var(--dark-color)
}
.facts .icon svg line, .facts .icon svg polyline {
  stroke: var(--dark-color)
}
.facts .pair .key, .facts .pair .value {
  display: block;
  font-weight: 700
}
.facts .pair .value {
  font-size: 1.25rem
}
.related-links {
  padding-top: 2rem;
  color: #fff
}
.related-links > .title {
  margin-top: 0;
  padding-right: 2rem;
  padding-left: 2rem
}
.related-links-list {
  margin-bottom: unset
}
.related-links-list > * {
  padding-left: 0
}
.related-links-list > :first-child .item {
  border-top: 2px solid rgba(255, 255, 255, .25)
}
.related-links-list > * a {
  display: block;
  padding-right: 2rem;
  padding-left: 2rem;
  color: #fff;
  transition: none;
  margin-top: -2px
}
.related-links-list > * a:focus-visible, .related-links-list > * a:hover {
  text-decoration: none;
  background-color: #fff;
  color: #0a0a0a
}
.related-links-list > * a:focus-visible .item, .related-links-list > * a:hover .item {
  border-color: #fff
}
.related-links-list > * a:focus-visible svg, .related-links-list > * a:hover svg {
  fill: inherit
}
.related-links-list > * a:focus-visible svg path, .related-links-list > * a:focus-visible svg polygon, .related-links-list > * a:hover svg path, .related-links-list > * a:hover svg polygon {
  fill: auto
}
.related-links-list > * a:not(:hover) svg path, .related-links-list > * a:not(:hover) svg polygon {
  fill: currentColor
}
.related-links-list > * a[target=_blank] .text::after {
  content: "";
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  line-height: 1;
  font-size: 1em
}
.related-links-list .item {
  display: flex;
  align-items: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid rgba(255, 255, 255, .25)
}
.related-links-list .icon {
  display: flex
}
.related-links-list .icon svg {
  width: 2.75rem;
  height: 2.75rem;
  fill: #fff
}
.related-links-list .icon + .text {
  margin-left: .75rem
}
.media-background {
  height: 100%;
  width: 100%
}
.media-background .media, .media-background .media-figure {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0
}
.media-background .media-figure {
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left 0;
  background-color: #fff;
  overflow: hidden;
  opacity: 0;
  transition: opacity .5s ease-in-out
}
.media-background .media-figure:not([data-interchange]), .media-background .media-figure[id] {
  opacity: 1
}
.media-background .media-figure:empty + .media-blur {
  display: block
}
.media-background .media-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: scale(1.3)
}
@media (min-aspect-ratio:16/9) {
  .media-background .media-inner {
    height: 300%;
    top: -100%
  }
}
@media (max-aspect-ratio:16/9) {
  .media-background .media-inner {
    width: 300%;
    left: -100%
  }
}
.media-background .media-inner iframe {
  display: none
}
.media-background .media-inner iframe, .media-background .media-inner video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  pointer-events: none
}
@media screen and (min-width:78.75em) {
  .media-background .media-inner iframe, .media-background .media-inner video {
    display: block
  }
}
.media-background .media-inner video {
  display: block
}
.media-background .media-blur {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left 0
}
@media screen and (min-width:78.75em) {
  .media-background .media-blur {
    display: none
  }
}
.media-background .content {
  max-width: 22rem;
  margin-right: 5%
}
@media screen and (min-width:48em) {
  .case-studies-references .accordion .content, .case-studies-references .accordion .image {
    flex: 0 0 auto;
    width: calc(50% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem
  }
}
.tippy-box[data-animation=fade][data-state=hidden] {
  opacity: 0
}
[data-tippy-root] {
  max-width: calc(100vw - 10px)
}
.tippy-box {
  position: relative;
  background-color: #333;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  white-space: normal;
  outline: 0;
  transition-property: transform, visibility, opacity
}
.tippy-box[data-placement^=top] > .tippy-arrow {
  bottom: 0
}
.tippy-box[data-placement^=top] > .tippy-arrow:before {
  bottom: -7px;
  left: 0;
  border-width: 8px 8px 0;
  border-top-color: initial;
  transform-origin: center top
}
.tippy-box[data-placement^=bottom] > .tippy-arrow {
  top: 0
}
.tippy-box[data-placement^=bottom] > .tippy-arrow:before {
  top: -7px;
  left: 0;
  border-width: 0 8px 8px;
  border-bottom-color: initial;
  transform-origin: center bottom
}
.tippy-box[data-placement^=left] > .tippy-arrow {
  right: 0
}
.tippy-box[data-placement^=left] > .tippy-arrow:before {
  border-width: 8px 0 8px 8px;
  border-left-color: initial;
  right: -7px;
  transform-origin: center left
}
.tippy-box[data-placement^=right] > .tippy-arrow {
  left: 0
}
.tippy-box[data-placement^=right] > .tippy-arrow:before {
  left: -7px;
  border-width: 8px 8px 8px 0;
  border-right-color: initial;
  transform-origin: center right
}
.tippy-box[data-inertia][data-state=visible] {
  transition-timing-function: cubic-bezier(.54, 1.5, .38, 1.11)
}
.tippy-arrow {
  width: 16px;
  height: 16px;
  color: #333
}
.tippy-arrow:before {
  content: "";
  position: absolute;
  border-color: transparent;
  border-style: solid
}
.tippy-content {
  position: relative;
  padding: 5px 9px;
  z-index: 1
}
.tippy-box[data-theme ~ =light] {
  color: #26323d;
  box-shadow: 0 0 20px 4px rgba(154, 161, 177, .15), 0 4px 80px -8px rgba(36, 40, 47, .25), 0 4px 4px -2px rgba(91, 94, 105, .15);
  background-color: #fff
}
.tippy-box[data-theme ~ =light][data-placement^=top] > .tippy-arrow:before {
  border-top-color: #fff
}
.tippy-box[data-theme ~ =light][data-placement^=bottom] > .tippy-arrow:before {
  border-bottom-color: #fff
}
.tippy-box[data-theme ~ =light][data-placement^=left] > .tippy-arrow:before {
  border-left-color: #fff
}
.tippy-box[data-theme ~ =light][data-placement^=right] > .tippy-arrow:before {
  border-right-color: #fff
}
.tippy-box[data-theme ~ =light] > .tippy-backdrop {
  background-color: #fff
}
.tippy-box[data-theme ~ =light] > .tippy-svg-arrow {
  fill: #fff
}
.tooltip, .tooltip .icon::before {
  display: inline-block;
  line-height: 1
}
.tooltip {
  position: absolute;
  top: 1.75rem;
  right: 0
}
.tooltip .icon::before {
  content: "";
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.5rem;
  color: var(--dark-color)
}
.tooltip-content {
  display: none
}
.tippy-box {
  padding: 1rem;
  text-align: left
}
.tippy-content > :first-child {
  margin-top: 0
}
.tippy-content > :last-child {
  margin-bottom: 0
}
.tippy-content .image-thumbnail {
  cursor: zoom-in;
  max-width: 20rem
}
.tippy-content .image-thumbnail img {
  width: 100%
}
.notice-overlay {
  font-size: .75rem;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  top: auto;
  z-index: 999;
  background-color: rgba(255, 255, 255, .98);
  box-shadow: 0 20px 20px 10px #0a0a0a;
  padding: 1rem;
  opacity: 0;
  max-height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateY(100%);
  transition: transform .3s ease-in-out, opacity .3s ease-in-out
}
@media screen and (min-width:35.5em) {
  .notice-overlay {
    font-size: .875rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem
  }
}
.notice-overlay.is-active {
  opacity: 1;
  transform: translateY(0)
}
.notice-overlay .message {
  margin-bottom: 1rem
}
@media screen and (min-width:63.75em) {
  .notice-overlay .message {
    margin-bottom: 0
  }
}
.downloads-list > * ol, .downloads-list > * ul, .notice-overlay .message > *, .quicklinks-list > * ol, .quicklinks-list > * ul {
  margin-top: 0
}
.notice-overlay .message .title {
  margin-bottom: .5rem
}
.notice-overlay .description {
  display: none;
  font-size: .75rem
}
.notice-overlay .description.is-active {
  display: block
}
.notice-overlay .description > :first-child {
  margin-top: 0
}
@media screen and (min-width:30em) {
  .notice-overlay .compliance {
    display: flex;
    justify-content: space-between
  }
}
.notice-overlay .compliance .button {
  margin-bottom: .5rem
}
.notice-overlay .compliance .link {
  color: currentColor;
  font-size: .75rem;
  font-weight: 400
}
.notice-overlay .anchors {
  padding-right: 1rem;
  margin-bottom: 1rem
}
@media screen and (min-width:30em) {
  .notice-overlay .anchors {
    margin-bottom: 0
  }
}
.notice-overlay .anchors > * {
  color: currentColor;
  margin-bottom: .5rem
}
.notice-overlay .anchors > :not(:last-child) {
  margin-right: .5rem
}
.notice-overlay .actions {
  display: flex;
  flex-direction: column
}
@media screen and (min-width:30em) {
  .notice-overlay .actions {
    flex-direction: row;
    align-items: flex-end
  }
}
.notice-overlay .actions > * {
  margin-left: .5rem
}
.event-registration {
  border-top: 2px solid #edf2f7;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem
}
.event-registration .form-result :first-child {
  margin-top: 0
}
.ajax-response {
  display: none
}
.form-result .ajax-response {
  display: block
}
.graphic .figure, .graphic.is-reset .figure {
  height: auto;
  padding-bottom: 0
}
.graphic.is-reset .figure .images > * {
  width: auto
}
@supports (--a:0) {
  .graphic .figure {
    height: 0;
    padding-bottom: calc(100%/(var(--aspect-ratio)))
  }
}
.graphic .figure .figure-wrapper {
  position: static;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto
}
.graphic .figure .images > * {
  position: static;
  transform: none
}
.graphic .figure .images > :nth-child(2), .testimonial .person .figure .images > :nth-child(2) {
  position: absolute;
  top: 0;
  left: 0
}
.quicklinks-list:not(:last-child), .quicklinks:not(:last-child) {
  margin-bottom: 0
}
@media print {
  .quicklinks {
    display: none
  }
}
.quicklinks-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(360px, 100%), 1fr));
  gap: 1rem 2rem;
  margin-bottom: unset
}
.quicklinks-list > * {
  padding-left: 0
}
.quicklinks-list > ::after, .quicklinks-list > ::before {
  content: none;
  position: static;
  color: inherit;
  top: auto
}
.quicklink {
  min-height: 3.75rem;
  display: flex;
  height: 100%;
  padding: .75rem;
  align-items: center;
  background-color: #fff;
  color: #626262;
  border-color: #9a9a9a
}
.quicklink:focus-visible, .quicklink:hover {
  color: #626262;
  border-color: #9a9a9a
}
.quicklink:focus-visible::after, .quicklink:hover::after {
  background-color: rgba(10, 10, 10, .05)
}
.quicklink svg {
  height: 2.625rem;
  width: 2.625rem;
  min-width: 2.625rem
}
.quicklink svg, .quicklink svg > * {
  fill: currentColor
}
.quicklink svg + .label {
  display: block;
  margin-left: 1rem
}
.testimonials {
  margin-bottom: 3rem
}
.testimonial {
  position: relative;
  overflow: hidden;
  padding-bottom: 100%
}
@supports (--a:0) {
  .testimonial {
    height: unset;
    padding-bottom: unset;
    aspect-ratio: var(--aspect-ratio, 1)
  }
}
@media screen and (min-width:0em) {
  .testimonial {
    font-size: 70%
  }
}
@media screen and (min-width:35.5em) {
  .testimonial {
    font-size: 80%
  }
}
@media screen and (min-width:60em) {
  .testimonial {
    font-size: 90%
  }
}
@media screen and (min-width:63.75em) {
  .testimonial {
    font-size: 80%
  }
}
@media screen and (min-width:78.75em) {
  .testimonial {
    font-size: 100%
  }
}
@media screen and (min-width:30em) {
  .testimonial {
    padding-bottom: 50%
  }
  @supports (--a:0) {
    .testimonial {
      height: unset;
      padding-bottom: unset;
      aspect-ratio: var(--aspect-ratio, 2)
    }
  }
}
.testimonial .background, .testimonial .person {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0
}
.testimonial .background > .figure {
  padding-bottom: 100%
}
@supports (--a:0) {
  .testimonial .background > .figure {
    height: unset;
    padding-bottom: unset;
    aspect-ratio: var(--aspect-ratio, 1)
  }
}
@media screen and (min-width:30em) {
  .testimonial .background > .figure {
    padding-bottom: 50%
  }
  @supports (--a:0) {
    .testimonial .background > .figure {
      height: unset;
      padding-bottom: unset;
      aspect-ratio: var(--aspect-ratio, 2)
    }
  }
}
.testimonial .person {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 1
}
.testimonial .person.is-group .person-text, .testimonial .person:not([class*=is-]) .person-text {
  background-color: #5f646e
}
@media screen and (min-width:30em) {
  .testimonial .person.is-group .person-text, .testimonial .person:not([class*=is-]) .person-text {
    background-color: rgba(95, 100, 110, .8)
  }
}
.testimonial .person .figure {
  padding-bottom: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin-bottom: 0
}
.testimonial .person .figure .figure-wrapper {
  position: static;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto
}
.testimonial .person .figure .images > * {
  position: static;
  transform: none
}
.testimonial .person .figure .images > :nth-child(2) {
  right: 0
}
.testimonial .person .figure img {
  width: 100%;
  height: auto;
  max-height: 100%;
  margin-left: auto
}
@media screen and (min-width:30em) {
  .testimonial .person .figure img {
    width: auto;
    height: 100%;
    object-fit: cover
  }
}
.testimonial .person .figure-wrapper {
  height: 100%
}
.testimonial .person .person-text {
  padding: 1rem;
  color: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--dark-color, #5f646e)
}
@media screen and (min-width:48em) {
  .testimonial .person .person-text {
    max-width: 66.666667%
  }
}
@media screen and (min-width:63.75em) {
  .testimonial .person .person-text {
    max-width: 90%
  }
}
@media screen and (min-width:78.75em) {
  .testimonial .person .person-text {
    max-width: 66.666667%
  }
}
@media screen and (min-width:30em) {
  .testimonial .person .person-text {
    background-color: rgba(var(--dark-color-rgb, #5f646e), .8)
  }
}
@media screen and (min-width:48em) {
  .testimonial .person .person-text {
    bottom: 1rem
  }
}
.testimonial .person .person-text .title {
  font-size: 1em;
  color: inherit;
  margin-top: 0;
  margin-bottom: .5rem
}
.testimonial .person .person-text .quote {
  quotes: "“""”""‘""’"
}
[lang*=de] .testimonial .person .person-text .quote {
  quotes: "„""”""«""»"
}
[lang*=fr] .testimonial .person .person-text .quote {
  quotes: "«""»"
}
.testimonial .person .person-text .quote > :first-child::before {
  content: open-quote
}
.testimonial .person .person-text .quote > :first-child::after {
  content: close-quote
}
.testimonial .person .person-text .quote .title {
  font-size: 1.25em;
  margin-bottom: .5rem
}
.testimonial .person .person-text .quote > * {
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 0
}
.metal-prices .metal-group:not(:last-child) {
  margin-bottom: 3rem
}
.metal-prices .distributor-list {
  border-top: 0
}
.metal-prices .distributor-list > * {
  padding: 1rem;
  border-bottom: 1px solid #e6ecf2
}
.metal-prices .distributor-list > :nth-child(odd) {
  background-color: #f5f5f5
}
.metal-prices .distributor-list > :focus-visible, .metal-prices .distributor-list > :hover {
  border-color: #87919b
}
@media screen and (min-width:35.5em) {
  .metal-prices .item .content {
    flex-wrap: wrap
  }
}
@media screen and (min-width:48em) {
  .metal-prices .item .content {
    flex-wrap: nowrap
  }
}
@media screen and (min-width:63.75em) {
  .metal-prices .item .content {
    flex-wrap: wrap
  }
}
@media screen and (min-width:78.75em) {
  .metal-prices .item .content {
    flex-wrap: nowrap
  }
}
@media screen and (min-width:35.5em) {
  .metal-prices .item .content {
    display: flex
  }
  .metal-prices .item .content > * {
    width: 33.3333333333%
  }
  .metal-prices .item .content > :not(:first-child) {
    text-align: right
  }
}
@media screen and (min-width:0em) {
  .metal-prices .item .content > .has-button {
    margin-top: 1rem
  }
}
@media screen and (min-width:48em) {
  .metal-prices .item .content > .has-button {
    margin-top: 0
  }
}
@media screen and (min-width:63.75em) {
  .metal-prices .item .content > .has-button {
    margin-top: 1rem
  }
}
@media screen and (min-width:78.75em) {
  .metal-prices .item .content > .has-button {
    margin-top: 0
  }
}
@media screen and (min-width:35.5em) {
  .metal-prices .item .content > .has-button {
    text-align: left
  }
}
@media screen and (min-width:48em) {
  .metal-prices .item .content > .has-button {
    text-align: right
  }
}
@media screen and (min-width:63.75em) {
  .metal-prices .item .content > .has-button {
    text-align: left
  }
}
@media screen and (min-width:78.75em) {
  .metal-prices .item .content > .has-button {
    text-align: right
  }
}
.metal-prices .item .date {
  font-weight: 400
}
.metal-prices .item .prices {
  margin-bottom: .5rem
}
@media screen and (min-width:35.5em) {
  .metal-prices .item .prices {
    margin-bottom: 0
  }
  .metal-prices .item .metal-value {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    flex-wrap: wrap
  }
  .metal-prices .item .metal-value:not(:last-child) {
    margin-bottom: .5rem
  }
}
.metal-prices .item .value {
  margin-right: .5rem
}
.metal-prices .item .unit {
  font-size: .75rem;
  margin-right: .5rem
}
.metal-prices .item .trend {
  font-size: inherit;
  font-weight: 400
}
.metal-prices .item .button {
  font-size: .75rem
}
.metal-prices .source {
  display: block;
  font-size: .875rem;
  font-weight: 400;
  margin-top: .25rem
}
.metal-prices-filter.hide-dates .datepicker-wrapper {
  opacity: 0
}
.metal-prices-filter .datepicker-wrapper {
  opacity: 1;
  transition: opacity .3s ease-in-out
}
.stock-header {
  margin-bottom: 2rem
}
.stock-header .headline {
  margin-top: 0;
  margin-bottom: .25em
}
.stock-header .period {
  display: flex;
  margin-bottom: .5rem
}
.stock-header .period > * {
  margin-right: .25rem
}
.qs-datepicker-container {
  font-size: 1rem;
  position: absolute;
  display: flex;
  flex-direction: column;
  z-index: 9001;
  -webkit-user-select: none;
  user-select: none;
  border: 1px solid gray;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1.25em 1.25em -.9375em rgba(0, 0, 0, .3)
}
.qs-datepicker-container * {
  box-sizing: border-box
}
.qs-centered {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}
.qs-hidden {
  display: none
}
.qs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .75);
  color: #fff;
  width: 100%;
  height: 100%;
  padding: .5em;
  z-index: 1;
  opacity: 1;
  transition: opacity .3s;
  display: flex;
  flex-direction: column
}
.qs-overlay.qs-hidden {
  opacity: 0;
  z-index: -1
}
.qs-overlay .qs-overlay-year {
  border: 0;
  background: 0 0;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  color: #fff;
  font-size: .875em;
  padding: .25em 0;
  width: 80%;
  text-align: center;
  margin: 0 auto;
  display: block
}
.qs-overlay .qs-overlay-year::-webkit-inner-spin-button {
  -webkit-appearance: none
}
.qs-overlay .qs-close {
  padding: .5em;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0
}
.qs-overlay .qs-submit {
  border: 1px solid #fff;
  border-radius: .263921875em;
  padding: .5em;
  margin: 0 auto auto;
  cursor: pointer;
  background: rgba(128, 128, 128, .4)
}
.qs-overlay .qs-submit.qs-disabled {
  color: gray;
  border-color: gray;
  cursor: not-allowed
}
.qs-overlay .qs-overlay-month-container {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1
}
.qs-overlay .qs-overlay-month {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100%/3);
  cursor: pointer;
  opacity: .5;
  transition: opacity .15s
}
.qs-overlay .qs-overlay-month.active, .qs-overlay .qs-overlay-month:hover {
  opacity: 1
}
.qs-controls {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
  flex-shrink: 0;
  background: #d3d3d3;
  filter: blur(0);
  transition: filter .3s
}
.qs-controls.qs-blur {
  filter: blur(5px)
}
.qs-arrow {
  height: 1.5625em;
  width: 1.5625em;
  position: relative;
  cursor: pointer;
  border-radius: .263921875em;
  transition: background .15s
}
.qs-arrow:hover {
  background: rgba(0, 0, 0, .1)
}
.qs-arrow:hover.qs-left:after, .qs-datepicker .qs-arrow:hover.qs-left::after {
  border-right-color: #000
}
.qs-arrow:hover.qs-right:after, .qs-datepicker .qs-arrow:hover.qs-right::after {
  border-left-color: #000
}
.qs-arrow:after {
  content: "";
  border: .390625em solid transparent;
  position: absolute;
  top: 50%;
  transition: border .2s
}
.qs-arrow.qs-left:after {
  border-right-color: gray;
  right: 50%;
  transform: translate(25%, -50%)
}
.qs-arrow.qs-right:after {
  border-left-color: gray;
  left: 50%;
  transform: translate(-25%, -50%)
}
.qs-month-year {
  font-weight: 700;
  transition: border .2s;
  border-bottom: 1px solid transparent
}
.qs-month-year:not(.qs-disabled-year-overlay) {
  cursor: pointer
}
.qs-month-year:not(.qs-disabled-year-overlay):hover {
  border-bottom: 1px solid gray
}
.qs-month-year:active:focus, .qs-month-year:focus {
  outline: 0
}
.qs-month {
  padding-right: .5ex
}
.qs-year {
  padding-left: .5ex
}
.qs-squares {
  display: flex;
  flex-wrap: wrap;
  padding: .3125em;
  filter: blur(0);
  transition: filter .3s
}
.qs-squares.qs-blur {
  filter: blur(5px)
}
.qs-square {
  width: calc(100%/7);
  height: 1.5625em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .1s;
  border-radius: .263921875em
}
.qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):not(.qs-active):hover {
  background: orange
}
.qs-current {
  font-weight: 700;
  text-decoration: underline
}
.qs-active, .qs-range-end, .qs-range-start {
  background: #add8e6
}
.qs-range-start:not(.qs-range-6) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0
}
.qs-range-middle {
  background: #d4ebf2
}
.qs-range-middle:not(.qs-range-0):not(.qs-range-6) {
  border-radius: 0
}
.qs-range-middle.qs-range-0 {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0
}
.qs-range-middle.qs-range-6 {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0
}
.qs-range-end:not(.qs-range-0) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0
}
.qs-datepicker .qs-square.qs-disabled span, .qs-disabled, .qs-outside-current-month {
  opacity: .2
}
.qs-disabled {
  cursor: not-allowed
}
.qs-day, .qs-empty {
  cursor: default
}
.qs-day {
  font-weight: 700;
  color: gray
}
.qs-event {
  position: relative
}
.qs-event:after {
  content: "";
  position: absolute;
  width: .46875em;
  height: .46875em;
  border-radius: 50%;
  background: #07f;
  bottom: 0;
  right: 0
}
.qs-datepicker-container {
  font-family: inherit;
  font-size: 14px;
  width: 220px;
  box-shadow: none;
  border-radius: 0;
  border-color: #a3b9cf;
  color: #000;
  margin-top: -1px
}
.qs-datepicker .qs-controls {
  font-family: "purista-web", Arial, Tahoma, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .025em;
  line-height: 1.16666;
  padding: .5rem .25rem;
  background-color: #fff
}
.qs-datepicker .qs-arrow {
  border-radius: 0
}
.qs-datepicker .qs-arrow:hover {
  background-color: rgba(0, 0, 0, .1)
}
.qs-datepicker .qs-arrow.qs-left::after {
  border-right-color: #9a9a9a
}
.qs-datepicker .qs-arrow.qs-right::after {
  border-left-color: #9a9a9a
}
.qs-datepicker .qs-month-year {
  border-bottom: 1px solid transparent
}
.qs-datepicker .qs-month-year:hover {
  cursor: default;
  border-bottom: 1px solid transparent
}
.qs-datepicker .qs-square {
  height: 1.75em;
  border-radius: 0
}
.qs-datepicker .qs-square.qs-current {
  font-weight: 400;
  background-color: rgba(var(--bright-color-rgb), .25)
}
.qs-datepicker .qs-square.qs-active {
  background-color: var(--bright-color, #add8e6)
}
.qs-datepicker .qs-square.qs-range-date-middle {
  background-color: rgba(var(--bright-color-rgb), .25)
}
.qs-datepicker .qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):not(.qs-active):hover {
  background-color: rgba(var(--bright-color-rgb), .25)
}
.qs-datepicker .qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):not(.qs-active):not(.qs-current):hover {
  background-color: #e6e6e6 !important
}
.qs-datepicker .qs-square.qs-day {
  font-weight: 400;
  opacity: .5;
  color: gray
}
.downloads-list {
  margin-bottom: unset;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(15rem, 100%), 1fr));
  gap: 1rem 2rem
}
.downloads-list > * {
  padding-left: 0;
  display: flex
}
.benefits > ::after, .benefits > ::before, .categories > ::after, .categories > ::before, .downloads-list > ::after, .downloads-list > ::before, .events ul > ::after, .events ul > ::before, .generic-teaser-small ul > ::after, .generic-teaser-small ul > ::before, .header-slider ul > ::after, .header-slider ul > ::before, .nav-main ul > ::after, .nav-main ul > ::before, .news-slider ul > ::after, .news-slider ul > ::before, .panel-list > ::after, .panel-list > ::before, .search-container ul > ::after, .search-container ul > ::before, .social-media-list > ::after, .social-media-list > ::before, .tags > ::after, .tags > ::before, .validation-list > ::after, .validation-list > ::before {
  content: none;
  position: static;
  color: inherit;
  top: auto
}
.downloads-list .download {
  display: flex;
  flex-direction: column
}
.downloads-list .download .image, .panel-list > * ol, .panel-list > * ul, .tags > * ol, .tags > * ul {
  margin-top: 0
}
.downloads-list .download .figure {
  margin-bottom: 0
}
.downloads-list .download .link-item {
  margin-top: auto
}
.tags {
  margin-bottom: unset;
  display: flex;
  flex-wrap: wrap;
  align-items: center
}
.tags > * {
  padding-left: 0;
  margin-right: .5rem;
  margin-bottom: .5rem
}
.tag {
  display: block;
  padding: .5rem .75rem;
  color: #fff;
  background-color: var(--dark-color);
  font-family: "purista-web", Arial, Tahoma, sans-serif;
  font-weight: 700;
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .025em;
  line-height: 1.16666
}
.tag[href] {
  position: relative;
  color: #fff;
  text-decoration: none;
  overflow-x: hidden;
  overflow: hidden
}
.panel[href]:focus-visible::after, .panel[href]:hover::after, .tag[href]:focus-visible::after, .tag[href]:hover::after {
  transform: translateX(0)
}
.tag[href]::after, .tag[href]::before {
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  margin-right: 0
}
.tag[href]::before {
  background-color: #e6ecf2
}
.tag[href]::after {
  transform: translateX(-101%);
  transition: transform .25s ease-in-out;
  background-color: var(--bright-color)
}
.tag[href] > * {
  display: block;
  position: relative;
  padding-left: 1.25rem
}
.tag[href] > ::before {
  content: "";
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  line-height: 1;
  font-size: 1.25rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -4px
}
.panel {
  padding: 1.25rem;
  margin-bottom: 2rem;
  color: inherit
}
.panel > :first-child {
  margin-top: 0
}
.panel > :last-child {
  margin-bottom: 0
}
.aside .panel .title, .content .panel .title {
  color: currentColor
}
.panel[href] {
  position: relative;
  display: block;
  overflow-x: hidden
}
.panel[href]::after, .panel[href]::before {
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  margin-right: 0
}
.panel[href]::before {
  background-color: #e6ecf2
}
.panel[href]::after {
  transform: translateX(-101%);
  transition: transform .25s ease-in-out
}
.events ul a:focus-visible, .events ul a:hover, .generic-teaser-small a:focus-visible, .generic-teaser-small a:hover, .news-slider ul a:focus-visible, .news-slider ul a:hover, .panel[href]:focus-visible, .panel[href]:hover {
  text-decoration: none
}
.panel.notification {
  position: relative;
  overflow: hidden;
  padding-left: 4.5rem
}
.panel.notification::before {
  content: "";
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  line-height: 1;
  font-size: 3rem;
  position: absolute;
  top: .75rem;
  left: .75rem;
  opacity: .5
}
@media screen and (min-width:48em) {
  .panel.notification {
    padding: 2rem 2rem 2rem 7rem
  }
  .panel.notification::before {
    content: "";
    font-family: "icomoon" !important;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    speak: none;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    line-height: 1;
    font-size: 6rem;
    top: auto;
    left: .5rem;
    bottom: -1rem
  }
}
form .panel.notification {
  margin-bottom: 4rem
}
.panel.notification.success::before {
  content: "";
  display: inline-block;
  line-height: 1;
  color: #6de6a8;
  opacity: 1
}
.panel.notification.error::before, .panel.notification.warning::before {
  content: "";
  display: inline-block;
  line-height: 1;
  color: #ffc3aa;
  opacity: 1
}
.panel.notification.error::before {
  content: "";
  color: #f37794
}
.panel.success {
  color: #fff;
  background-color: #23ca75
}
.panel.warning {
  color: #fff;
  background-color: #ff7a44
}
.panel.error {
  color: #fff;
  background-color: #ea1a4b
}
.panel.primary {
  color: #fff;
  background-color: var(--dark-color)
}
.panel.primary textarea {
  border: 0;
  background-color: #fff
}
.panel.secondary {
  color: #fff
}
.panel.secondary[href]::after {
  background-color: #fff
}
.panel.secondary, .panel.secondary[href]::before {
  background-color: #505a64
}
.panel.light {
  color: #fff
}
.panel.light[href]::after {
  background-color: #fff
}
.panel.light, .panel.light[href]::before {
  background-color: #aab4be
}
.panel-list {
  margin-bottom: unset
}
.panel-list > * {
  padding-left: 0;
  margin-bottom: .5rem
}
.panel-list .panel {
  margin-bottom: 0
}
.consent-placeholder, .consent-wrapper {
  position: relative
}
.consent-placeholder.is-active .consent-overlay, .consent-wrapper.is-active .consent-overlay {
  display: flex;
  opacity: 1;
  z-index: 3
}
.consent-hint, .consent-overlay {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  background-color: #edf2f7;
  padding: 1rem
}
@media screen and (min-width:30em) {
  .consent-hint, .consent-overlay {
    padding: 2rem
  }
}
.consent-overlay {
  display: none;
  opacity: 0;
  transition: opacity .3s ease
}
.consent-hint {
  z-index: 3
}
.consent-message {
  max-width: 50rem
}
.consent-message > :not(.button) {
  margin-top: 1em;
  margin-bottom: 1em
}
.consent-message p {
  font-size: .875rem
}
.consent-message .title {
  display: flex;
  align-items: center;
  margin-top: 0;
  margin-bottom: .875rem
}
.consent-message .title .icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  flex-grow: 0
}
.consent-message .title .icon svg {
  fill: currentColor;
  width: 1.125em;
  height: 1.125em
}
.consent-message .title .icon + span {
  padding-left: .5em
}
.faq-introduction > :first-child {
  margin-top: 0
}
.faq-introduction + .button {
  margin-top: 1rem
}
.faq-question .title {
  margin-top: 0
}
.faq-question .is-hidden ~ .reset {
  display: inline-block
}
.faq-question .reset {
  display: none
}
.benefits > * ol, .benefits > * ul, .faq-question .error, .validation-list > * ol, .validation-list > * ul {
  margin-top: 0
}
.faq-overview-filter {
  margin-bottom: 0
}
.validation {
  margin-top: .5rem
}
.validation-list {
  margin-bottom: unset
}
.validation-list:not(:last-child) {
  margin-bottom: 0
}
.validation-list > * {
  padding-left: 0
}
.validation-list li {
  font-size: .875rem;
  padding: .5rem 1rem .5rem 2rem
}
.validation-list li::before {
  content: "";
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  line-height: 1;
  font-size: 1.5rem;
  position: absolute;
  top: .375rem;
  left: 0;
  color: #ea1a4b
}
.validation-list li:not(:last-child) {
  border-bottom: 1px solid #9a9a9a;
  border-color: rgba(230, 236, 242, .25)
}
.validation-list li.is-valid::before {
  content: "";
  display: inline-block;
  line-height: 1;
  color: #23ca75
}
.download-cart {
  padding: 1rem;
  border: 1px solid #e6ecf2;
  transition: opacity .25s ease-in-out
}
.download-cart.is-disabled .download-cart-summary {
  opacity: .4
}
.download-cart.is-pending {
  pointer-events: none;
  opacity: .5
}
.download-cart .downloads-overview {
  margin-bottom: 0;
  max-height: 20rem;
  overflow: auto;
  -webkit-overflow-scrolling: touch
}
.download-cart .downloads-overview .meta {
  margin-bottom: 0
}
.download-cart .downloads-overview .file-data {
  padding-right: 1.5rem
}
.download-cart .download-item {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 1.25rem
}
.download-cart .download-item::after, .download-cart .download-item::before {
  content: none
}
.download-cart .download-item.is-restricted {
  opacity: .4
}
.download-cart .download-icon {
  width: 2rem
}
.download-cart .download-icon .icon {
  height: 2rem;
  width: 2rem;
  left: -.375rem
}
.download-cart .download-content {
  font-size: .75rem
}
.download-cart .download-content .headline {
  font-size: 1rem;
  margin-top: 0
}
.download-cart .remove {
  position: absolute;
  top: 2px;
  right: 0
}
.download-cart .remove svg {
  width: 1rem;
  height: 1rem
}
.download-cart-summary {
  border-top: 4px solid #edf2f7;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-weight: 700;
  transition: opacity .25s ease-in-out
}
.download-cart-summary .value {
  display: block;
  font-size: 1.25rem
}
.download-cart-actions > * {
  margin-top: .25rem;
  margin-right: .25rem
}
.benefits {
  margin-bottom: unset;
  display: flex;
  flex-flow: row wrap;
  margin-right: -1rem;
  margin-left: -1rem
}
.benefits > * {
  padding-left: 0;
  flex: 0 0 auto;
  width: calc(100% - 2rem);
  margin-left: 1rem;
  margin-right: 1rem;
  margin-bottom: .5rem
}
@media screen and (min-width:48em) {
  .benefits > * {
    width: calc(50% - 2rem);
    margin-bottom: 1rem
  }
}
@media screen and (min-width:63.75em) {
  .benefits > * {
    width: calc(100% - 2rem);
    margin-bottom: .5rem
  }
}
@media screen and (min-width:78.75em) {
  .benefits > * {
    width: calc(50% - 2rem);
    margin-bottom: 1rem
  }
}
@media screen and (min-width:88.75em) {
  .benefits > * {
    width: calc(33.3333333333% - 2rem)
  }
}
.benefits .icon, .benefits .item {
  display: flex;
  align-items: center;
  height: 100%
}
.benefits .item {
  flex-direction: row;
  border: 1px solid #e6ecf2
}
.benefits .item .content .title {
  margin-top: 0;
  margin-bottom: 0;
  text-transform: none;
  color: inherit
}
.benefits .icon {
  background-color: #f6f7f8;
  padding: .125rem;
  width: 5rem
}
.benefits .icon svg {
  height: 4.5rem;
  width: 4.5rem
}
.benefits .icon svg > *, .vacancy-details .incentives-list svg {
  fill: var(--dark-color)
}
.benefits .content {
  width: 100%;
  padding: .75rem .5rem .75rem 1.5rem
}
.information-teaser {
  display: flex;
  flex-direction: column
}
@media screen and (min-width:60em) {
  .information-teaser {
    flex-direction: row
  }
}
.information-teaser div {
  flex-grow: 0;
  flex-shrink: 1
}
.information-teaser .content {
  padding: 1rem;
  flex-grow: 1;
  flex-shrink: 0
}
@media screen and (min-width:60em) {
  .information-teaser .content {
    width: 66%
  }
}
.information-teaser .content.green {
  background-color: #d8eeec
}
.information-teaser .content.gray {
  background-color: #ededed
}
.features {
  margin-bottom: 2rem;
  display: flex;
  flex-flow: row wrap;
  margin-right: -1rem;
  margin-left: -1rem
}
.features .feature {
  flex: 0 0 auto;
  width: calc(100% - 2rem);
  margin-left: 1rem;
  margin-right: 1rem;
  margin-top: 2.25rem
}
@media screen and (min-width:35.5em) {
  .features .feature {
    flex: 0 0 auto;
    width: calc(50% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem
  }
}
.features .feature .image-wrapper {
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative
}
@supports (--a:0) {
  .features .feature .image-wrapper {
    height: unset;
    padding-bottom: unset;
    aspect-ratio: var(--aspect-ratio, 1.7777777778)
  }
}
.features .feature img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%
}
@media screen and (min-width:78.75em) {
  .features .feature.one-third {
    flex: 0 0 auto;
    width: calc(33.3333333333% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem
  }
}
.features .feature.one-third .image-wrapper {
  padding-bottom: 50%
}
@supports (--a:0) {
  .features .feature.one-third .image-wrapper {
    height: unset;
    padding-bottom: unset;
    aspect-ratio: var(--aspect-ratio, 2)
  }
}
.success-story .customer-information .facts {
  padding: 1rem;
  background-color: #e6ecf2;
  float: left;
  width: 100%;
  margin-right: 1rem;
  margin-bottom: 2rem
}
@media screen and (min-width:30em) {
  .success-story .customer-information .facts {
    width: 50%;
    margin-bottom: .5rem;
    max-width: 18.75rem
  }
}
.success-story .customer-information .facts .figure {
  height: auto;
  padding-bottom: 0
}
@supports (--a:0) {
  .success-story .customer-information .facts .figure {
    height: 0;
    padding-bottom: calc(100%/(var(--aspect-ratio)))
  }
}
.success-story .customer-information .facts .figure .figure-wrapper {
  position: static;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto
}
.success-story .customer-information .facts .figure .images > * {
  position: static;
  transform: none
}
.success-story .customer-information .facts .figure .images > :nth-child(2) {
  position: absolute;
  top: 0;
  left: 0
}
.success-story .customer-information .facts img[src*=".svg"] {
  max-width: 4.75rem;
  margin-bottom: 1rem
}
.success-story .customer-information .facts .headline {
  margin-top: 0;
  margin-bottom: .25rem
}
.categories > * ol, .categories > * ul, .events ul > * ol, .events ul > * ul, .generic-teaser-small ul > * ol, .generic-teaser-small ul > * ul, .header-slider ul > * ol, .header-slider ul > * ul, .nav-main ul > * ol, .nav-main ul > * ul, .news-slider ul > * ol, .news-slider ul > * ul, .search-container ul > * ol, .search-container ul > * ul, .social-media-list > * ol, .social-media-list > * ul, .success-story .customer-information .facts .subheadline {
  margin-top: 0
}
.success-story .customer-information .facts > :last-child {
  margin-bottom: 0
}
.samples-order .filter-results {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #edf2f7
}
.samples-order .filter-sorting {
  padding-top: 0
}
.sample-table {
  position: relative;
  overflow: auto;
  font-size: .875rem
}
.sample-table * {
  outline: 0
}
.sample-table table {
  display: table;
  width: 100%;
  margin-bottom: 3rem
}
.sample-table tbody tr:nth-child(2n+1) {
  background-color: #fdfdfd
}
.sample-table td, .sample-table th {
  min-width: 0;
  white-space: nowrap;
  padding-top: .625rem;
  padding-bottom: .625rem
}
.sample-table td:first-child, .sample-table th:first-child {
  width: 2.5rem;
  padding-left: .5rem;
  padding-right: .5rem
}
.sample-table th {
  position: relative
}
.sample-table th.sorting::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 11px;
  left: 6px;
  background-image: url(sort_both.9a6486086d09bb38.png);
  background-repeat: no-repeat
}
.sample-table th.sorting.sorting_asc::before {
  content: "";
  background-image: url(sort_asc.9326ad44ae4bebde.png)
}
.sample-table th.sorting.sorting_desc::before {
  content: "";
  background-image: url(sort_desc.1fc418e33fd5a687.png)
}
.sample-table th span {
  display: inline-block;
  padding-left: 21px
}
.sample-table label.error {
  position: absolute;
  bottom: 0;
  left: 0
}
.quantity {
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
  background-color: #f6f7f8;
  min-height: 4.6875rem
}
.quantity p {
  margin-top: auto;
  margin-bottom: auto
}
.quantity .data, .quantity .placeholder {
  display: none
}
.quantity .is-visible {
  display: block
}
.categories {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem .5rem;
  margin-bottom: 0
}
.categories > * {
  padding-left: 0
}
.download-content .categories {
  margin-top: 1.5rem
}
.categories > li {
  font-size: .875rem;
  font-weight: 600;
  text-transform: uppercase
}
.categories > li:not(:last-child)::after {
  content: "|";
  color: #87919b;
  margin-left: .25rem
}
.social-media-list {
  margin-bottom: unset;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem clamp(1rem, 6vw, 3rem)
}
.social-media-list:not(:last-child) {
  margin-bottom: 0
}
.events ul > *, .generic-teaser-small ul > *, .news-slider ul > *, .search-container ul > *, .social-media-list > * {
  padding-left: 0
}
@media screen and (min-width:35.5em) {
  .social-media-list {
    justify-content: unset
  }
}
.social-media-list.extended-view {
  gap: clamp(1rem, 5vw, 2rem)
}
.social-media-list.extended-view a.button {
  --button-background-color: #f8ae1a;
  flex-direction: row-reverse;
  padding-top: .5rem;
  padding-bottom: .5rem
}
.social-media-list.extended-view a.button:focus-visible, .social-media-list.extended-view a.button:hover {
  --button-color: #f8ae1a
}
.social-media-list a::before, .social-media-list.extended-view a.button::before {
  font-size: clamp(1.5rem, 4vw, 2rem)
}
.social-media-list.extended-view a span {
  font-size: unset
}
.social-media-list a {
  text-decoration: none;
  transition-property: color;
  transition-duration: .3s;
  transition-timing-function: ease-in-out
}
.social-media-list a::before {
  content: "";
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}
.social-media-list a span {
  font-size: 0
}
.social-media-list .icon-instagram::before {
  content: ""
}
.social-media-list .icon-twitter::before {
  content: ""
}
.social-media-list .icon-youtube::before {
  content: ""
}
.social-media-list .icon-linkedin::before {
  content: ""
}
.social-media-list .icon-xing::before {
  content: ""
}
.social-media-list .icon-kununu::before {
  content: ""
}
.social-media-list .icon-glassdoor::before {
  content: ""
}
.social-media-list .icon-email::before {
  content: ""
}
.search-bar .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1.75em
}
@media screen and (min-width:48em) {
  .search-bar .container {
    flex-direction: row;
    flex-wrap: nowrap
  }
}
.search-bar form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: unset
}
.search-bar input {
  min-width: 13.125rem
}
.search-container {
  max-width: 28.125rem
}
.search-container ul {
  margin-bottom: unset;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem
}
.search-container ul:not(:last-child) {
  margin-bottom: unset
}
.search-container a {
  word-break: break-all;
  font-family: "proxima-nova", Arial, Tahoma, sans-serif;
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  line-height: 1
}
.contact-container {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  flex-direction: column;
  align-self: flex-start;
  gap: 1.75em
}
@media screen and (min-width:48em) {
  .contact-container {
    flex-direction: unset;
    align-items: center
  }
}
.contact-container > :first-child {
  display: block;
  font-family: "purista-web", Arial, Tahoma, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .025em;
  line-height: 1.16666
}
.search-box {
  overflow: hidden;
  margin-bottom: unset
}
@media screen and (max-width:79.9875em) {
  .search-box {
    color: #fff
  }
}
@media screen and (min-width:80em) {
  .search-box {
    box-shadow: 0 0 20px transparent;
    margin-right: -5vw;
    transition: box-shadow .5s ease-in-out
  }
  .search-box.is-open {
    box-shadow: 0 0 20px rgba(10, 10, 10, .2)
  }
}
.search-box.is-open .inner-wrapper {
  translate: 0 0;
  transition: translate .5s ease-in-out, background-color 0s ease-in 0s;
  background-color: #fff
}
.search-box .inner-wrapper {
  display: flex;
  gap: .5rem;
  padding: .5rem .625rem;
  translate: calc(100% - 2.625rem)0;
  transition: translate .5s ease-in-out
}
@media screen and (min-width:80em) {
  .search-box .inner-wrapper {
    transition: background-color 0s ease-out .5s, translate .5s ease-in-out;
    background-color: unset
  }
}
.search-box .icon-close, .search-box .icon-search {
  cursor: pointer;
  color: currentColor
}
.search-box .icon-close::before, .search-box .icon-search::before {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  display: inline-block;
  line-height: 1;
  font-size: 1.875rem
}
.search-box .icon-close::before {
  content: "";
  font-size: 1.5rem
}
.search-box input {
  height: 100%;
  border: 0;
  background-color: unset;
  padding: 0;
  max-width: 12.5rem;
  color: currentColor
}
@media screen and (max-width:79.9875em) {
  .search-box input {
    border-bottom: 1px solid currentColor
  }
}
@media screen and (min-width:80em) {
  .search-box input {
    background-color: #fff
  }
}
.search-box input:focus {
  background-color: inherit;
  color: inherit
}
.generic-teaser-small a {
  color: inherit;
  font-weight: inherit
}
.generic-teaser-small ul {
  margin-bottom: unset;
  margin-top: 3rem
}
.generic-teaser-small ul:not(:last-child), .news-slider ul:not(:last-child) {
  margin-bottom: 2rem
}
.generic-teaser-small img {
  aspect-ratio: 1.7777777778;
  margin-bottom: 1.5rem
}
.generic-teaser-small .introduction, .news-slider p {
  margin-top: unset
}
.generic-teaser-large {
  --upper-line-color: #ffffff;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding-top: unset;
  padding-bottom: unset
}
@supports (-webkit-touch-callout:none) {
  .generic-teaser-large {
    background-attachment: unset
  }
}
.generic-teaser-large .wrapper {
  padding-top: 2rem;
  padding-bottom: 2rem
}
@media screen and (max-width:43.7375em) {
  .generic-teaser-large .wrapper {
    padding-right: 0;
    padding-left: 0
  }
}
@media screen and (min-width:43.75em) {
  .generic-teaser-large .wrapper {
    padding-top: 0;
    padding-right: 2vw;
    padding-bottom: 0;
    padding-left: 2vw
  }
}
.generic-teaser-large .container {
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background-color: rgba(255, 255, 255, .3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.5rem, 8vw, 5rem) clamp(2vw, 8vw, 6.5625rem);
  max-width: 45rem
}
@media screen and (min-width:64em) {
  .generic-teaser-large .container {
    min-height: 40rem
  }
}
.generic-teaser-large .button {
  margin-top: 1.5rem
}
.locations-teaser {
  position: relative
}
@media screen and (min-width:64em) {
  .locations-teaser {
    min-height: 35.75rem
  }
  .locations-teaser .wrapper {
    position: relative
  }
}
.locations-teaser .button, .locations-teaser .sub-headline, .locations-teaser .title {
  position: relative;
  z-index: 1
}
.locations-teaser img {
  max-height: 27.5rem
}
@media screen and (min-width:64em) {
  .locations-teaser img {
    width: calc(100% - 20vw);
    position: absolute;
    top: 0;
    right: 0
  }
}
@media screen and (min-width:120.0625em) {
  .locations-teaser img {
    width: 54rem
  }
}
.locations-teaser .button {
  margin-top: 1.25rem
}
.news-slider .headline {
  margin-bottom: 1.75em
}
.news-slider p {
  font-weight: initial
}
.events ul, .news-slider ul {
  margin-bottom: unset
}
.events ul a, .news-slider ul a {
  color: inherit
}
.news-slider img {
  aspect-ratio: 1.7777777778;
  margin-bottom: 1.5rem
}
.news-slider .date {
  display: block
}
.events .headline {
  margin-bottom: 1.75em
}
.events ul {
  display: flex;
  flex-direction: column;
  gap: 1.25rem
}
.events ul:not(:last-child), .header-slider ul:not(:last-child), .nav-main ul:not(:last-child) {
  margin-bottom: 0
}
.events .event-date {
  margin-bottom: 0
}
.events .event-location {
  color: #646e78;
  font-weight: 400
}
.events .button {
  margin-top: 2.5rem
}
.header-slider {
  position: relative
}
.header-slider .container::after, .header-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%
}
.header-slider::after {
  background-image: linear-gradient(to right, #0a0a0a 50%, transparent 50%)
}
.header-slider .container::after {
  background-color: #0a0a0a
}
.header-slider .container {
  position: relative;
  margin-right: 5vw
}
@media screen and (max-width:63.9875em) {
  .header-slider .wrapper {
    padding-right: 0;
    padding-left: 0
  }
}
.header-slider .container {
  padding-bottom: 2.25rem
}
@media screen and (max-width:63.9875em) {
  .header-slider .container {
    margin-right: 0
  }
}
.header-slider .panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 2vw;
  margin-bottom: unset;
  margin-left: 2vw;
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(2vw, 4vw, 4rem);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background-color: rgba(255, 255, 255, .1);
  color: #fff
}
@media screen and (min-width:64em) {
  .header-slider .panel {
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0-50%;
    z-index: 1;
    max-width: 40%;
    margin-right: 0;
    margin-left: 0
  }
}
.header-slider .panel:focus-visible .button.ghost, .header-slider .panel:hover .button.ghost {
  --button-color: #ffffff;
  --button-border-color: #f8ae1a
}
.header-slider .panel:focus-visible .button.ghost::after, .header-slider .panel:hover .button.ghost::after {
  transform: translate3d(0, 0, 0)
}
.header-slider .iframely-embed, .header-slider img, .header-slider video {
  height: auto;
  width: 100%;
  margin-top: -1.5em
}
@media screen and (min-width:64em) {
  .header-slider .iframely-embed, .header-slider img, .header-slider video {
    display: block;
    max-width: 64rem;
    aspect-ratio: 1.7777777778;
    margin-right: 0;
    margin-left: auto
  }
}
@media screen and (min-width:64em) {
  .header-slider .swiper {
    margin-right: -5vw;
    margin-left: clamp(-4vw, -4vw, -2rem)
  }
}
.header-slider .swiper-slide > a, .nav-main a {
  text-decoration: none
}
.header-slider ul, .nav-main ul {
  margin-bottom: unset
}
.header-slider ul > *, .nav-main ul > * {
  padding-left: 0
}
.header-slider .header-slider-pagination {
  display: flex;
  justify-content: center;
  max-width: 64rem;
  margin-left: auto
}
.header-slider .swiper-pagination {
  display: flex;
  justify-content: center;
  min-height: 2.125rem;
  margin-top: .625rem
}
.header-slider .swiper-pagination .swiper-pagination-bullet {
  opacity: 1
}
.header-slider .swiper-pagination .swiper-pagination-bullet::before {
  height: 2px;
  width: clamp(1.75rem, 6vw, 3rem);
  background-color: #e6e6e8
}
.header-slider .swiper-pagination .swiper-pagination-bullet-active::before {
  background-color: #626262
}
.nav-main {
  position: absolute;
  z-index: 7;
  max-width: 22.5rem;
  width: 100%;
  height: 100vh;
  top: 4rem;
  right: 0;
  padding-right: 2vw;
  padding-bottom: 9.75rem;
  padding-left: 4vw;
  background-color: #0a0a0a;
  transform: translateX(110%);
  transition: transform .6s ease-out
}
@supports selector(:has(+ *)) {
  .nav-main, .nav-main .level {
    padding-bottom: 2rem
  }
  .nav-main:has(.quick-entries), .nav-main:has(.quick-entries) .level {
    padding-bottom: 9.75rem
  }
  @media screen and (min-width:80em) {
    .nav-main:has(.quick-entries) {
      padding-bottom: 1.125rem
    }
  }
  @media screen and (min-width:80em) {
    .nav-main:has(.quick-entries) .level {
      padding-bottom: 0
    }
  }
}
@supports (height:100dvh) {
  .nav-main {
    height: calc(100dvh - 4rem)
  }
}
@media screen and (min-width:80em) {
  .nav-main {
    position: static;
    max-width: unset;
    width: 100%;
    height: 3rem;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 1.125rem;
    padding-left: 0;
    background-color: unset;
    transform: unset
  }
}
.is-nav-open .nav-main, .nav-main a.is-open + .level {
  transform: translateX(0)
}
@media screen and (min-width:80em) {
  .is-nav-open .nav-main {
    transform: unset
  }
}
.is-current .nav-main .nav-inner-container > ul {
  overflow: auto
}
.nav-main ul {
  display: flex;
  flex-direction: column
}
@media screen and (min-width:80em) {
  .nav-main ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.75rem
  }
}
.nav-main ul li {
  position: unset
}
.nav-main a {
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}
@media screen and (min-width:80em) {
  .nav-main a {
    align-items: center;
    gap: .375rem
  }
}
@media screen and (min-width:80em) {
  .nav-main a.is-open + .level {
    pointer-events: all;
    opacity: 1
  }
}
.nav-main a.is-open + .level .level {
  pointer-events: all
}
.nav-main a.is-current + .level {
  overflow-x: hidden;
  overflow-y: auto
}
.nav-main .link-item {
  margin-bottom: 0;
  padding-top: .5rem;
  padding-right: 0;
  padding-bottom: .5rem;
  padding-left: 0
}
.nav-main .link-item:focus-visible, .nav-main .link-item:hover, .active .link-item {
  color: #f8ae1a;
}
@media screen and (min-width:80em) {
  .nav-main .link-item {
    padding-top: 0
  }
}
.nav-main .link-item::before {
  height: 1px;
  background-color: #fff
}
.nav-main .link-item::after {
  background-color: #f8ae1a
}
.nav-main .active, .nav-main .active + .level .title-anchor, .nav-main .link-item.is-open {
  color: #f8ae1a;
}
.nav-main .link-item.is-external > span {
  display: flex;
  align-items: center;
  gap: .25rem
}
.nav-main .link-item.is-external > span::after {
  content: "";
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}
.nav-main .title-anchor {
  justify-content: space-between;
  margin-top: .625rem;
  margin-bottom: .625rem;
  border-bottom: none;
  line-height: 1
}
.nav-main .title-anchor:focus-visible, .nav-main .title-anchor:hover, .nav-main .top-level-anchor.link-item:focus-visible, .nav-main .top-level-anchor.link-item:hover {
  color: #f8ae1a;
  transition: color .3s ease-in-out
}
@media screen and (min-width:80em) {
  .nav-main .title-anchor {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 0;
    margin-bottom: 2.25rem
  }
}
.nav-main .title-anchor::after {
  content: "";
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  align-items: center;
  font-size: 1.5rem
}
@media screen and (min-width:80em) {
  .nav-main .title-anchor::after {
    gap: 1rem
  }
}
.nav-main .title {
  font-weight: 700;
  font-size: 1.5rem
}
.nav-main .top-level-anchor {
  overflow: hidden;
  display: block
}
.nav-main .top-level-anchor.is-open span::after {
  transform: rotate(270deg)
}
@media screen and (min-width:80em) {
  .nav-main .top-level-anchor.link-item {
    padding-bottom: 0;
    margin-bottom: 0
  }
  .nav-main .top-level-anchor.link-item::after, .nav-main .top-level-anchor.link-item::before {
    content: none
  }
}
.nav-main .container {
  padding-right: 1rem;
  padding-left: 2rem
}
@media screen and (min-width:80em) {
  .nav-main .container {
    padding-right: 0;
    padding-left: 0
  }
}
.nav-main .close-level {
  display: flex;
  align-items: center;
  gap: .25rem;
  color: #fff;
  cursor: pointer
}
.nav-main .close-level::before {
  content: "";
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}
.nav-main .close-level:focus-visible, .nav-main .close-level:hover {
  color: var(--dark-color);
  transition: color .3s ease-in-out
}
@media screen and (min-width:80em) {
  .nav-main .close-level {
    display: none
  }
}
.nav-main .level, .nav-main .level::after {
  position: absolute;
  background-color: #0a0a0a
}
.nav-main .level {
  z-index: 8;
  top: 0;
  right: 0;
  height: 100vh;
  max-width: 22.5rem;
  width: 100%;
  padding-bottom: 9.75rem;
  transform: translateX(100%);
  transition: transform .6s ease-out
}
@supports (height:100dvh) {
  .nav-main .level {
    height: calc(100dvh - 4rem)
  }
}
@media screen and (min-width:80em) {
  .nav-main .level {
    max-width: unset;
    left: 0;
    top: 100%;
    width: auto;
    height: auto;
    padding-bottom: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1.75rem);
    transition: transform .5s ease-in-out, opacity .2s ease-in-out
  }
}
.nav-main .level::after {
  content: "";
  inset: 0;
  z-index: -1
}
.nav-main .level .wrapper {
  padding-left: 0
}
@media screen and (min-width:80em) {
  .nav-main .level .wrapper {
    padding-left: 2vw
  }
}
.nav-main .level .container {
  height: 100%;
  display: block;
  position: unset;
  margin-right: unset;
  padding-top: 1rem;
  padding-right: 2vw;
  padding-bottom: 0;
  padding-left: 4vw
}
@media screen and (min-width:80em) {
  .nav-main .level .container {
    display: grid;
    grid-template-columns: 5fr 1fr;
    align-items: flex-start;
    gap: 2rem;
    padding-right: 0;
    padding-bottom: 3.75rem;
    padding-left: 0
  }
}
.nav-main .level .container::before {
  content: none
}
.nav-main .level .container .inner-container {
  display: block
}
@media screen and (min-width:80em) {
  .nav-main .level .container .inner-container > ul {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem
  }
}
.nav-main .level .level {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 22.5rem;
  width: 100%;
  height: 100vh;
  flex-direction: column;
  gap: 1rem;
  opacity: 1;
  transform: translateX(100%)
}
@supports (height:100dvh) {
  .nav-main .level .level {
    height: calc(100dvh - 4rem)
  }
}
@media screen and (min-width:80em) {
  .nav-main .level .level {
    position: relative;
    display: flex;
    height: auto;
    max-width: unset;
    width: auto;
    pointer-events: none;
    transform: unset
  }
  .nav-main .level .level .container {
    height: auto;
    grid-template-columns: 1fr;
    padding: 0
  }
}
.nav-main .level .level .container ul {
  display: flex;
  flex-direction: column
}
@media screen and (min-width:80em) {
  .nav-main .level .level .container ul {
    gap: .375rem;
    margin-top: .625rem
  }
  .nav-main .level .level .container a {
    margin-bottom: 0;
    padding-bottom: 0;
    font-weight: 400;font-size: 14px;
  }
	 .nav-main .level .level .container a small{
    display: none;
  }
	 .nav-main .level .level .container a:hover small{
		 color: #ccc;
    display: inline-block;
  }
  .nav-main .level .level .container a::after, .nav-main .level .level .container a::before {
    content: none
  }
  .nav-main .level .level .container a:focus-visible, .nav-main .level .level .container a:hover {
    color: #f8ae1a;
    transition: color .3s ease-in-out
  }
  .nav-main .level .level .container .title, .nav-main .level .level .container .title-anchor {
    display: none
  }
}
.nav-main .level .level .wrapper {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0
}
@media screen and (min-width:80em) {
  .nav-main .level .level .featured-content {
    display: none
  }
}
@supports selector(:has(+ *)) {
  .nav-main .level {
    padding-bottom: 2rem
  }
  @media screen and (min-width:80em) {
    .nav-main .level {
      padding-bottom: 0
    }
  }
}
.nav-inner-container .wrapper > ul {
  flex-direction: row
}
.nav-inner-container > ul {
  width: 100%
}
.has-children > a span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-basis: 100%;
  gap: 8px
}
.has-children > a span::after {
  content: "";
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: transform .3s ease-in-out
}
@media screen and (min-width:80em) {
  .has-children > a span::after {
    transform: rotate(90deg)
  }
  .has-children > a:not(.top-level-anchor) span::after {
    content: none
  }
}
.nav-main-trigger {
  cursor: pointer
}
@media screen and (min-width:80em) {
  .nav-main-trigger {
    display: none
  }
}
.nav-main-trigger:focus-visible::after, .nav-main-trigger:hover::after {
  color: var(--dark-color)
}
.nav-main-trigger::after {
  content: "";
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
  font-size: 40px;
}
.is-nav-open .nav-main-trigger::after {
  content: ""
}
.nav-main-trigger .hidden {
  display: none
}
.featured-content a {
  display: block;
  margin-top: 2.25rem;
  color: #fff
}
@media screen and (min-width:80em) {
  .featured-content a {
    margin-top: 0;
    margin-bottom: 0
  }
}
.featured-content a img {
  aspect-ratio: 16/9;
  margin-bottom: .875rem
}
.featured-content a .title {
  display: block;
  word-break: break-all;
  font-family: "proxima-nova", Arial, Tahoma, sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #fff;
  text-transform: unset;
  letter-spacing: unset
}
.division-links {
  background-color: #0a0a0a;
  color: #fff;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-bottom-color: #fff
}
.division-links .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem
}
.division-links .title {
  margin-top: unset;
  margin-bottom: unset
}
.division-links .presences {
  margin-bottom: unset;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem
}
.division-links .presences:not(:last-child) {
  margin-bottom: 0
}
.division-links .presences > * {
  padding-left: 0
}
.division-links .presences > ::after, .division-links .presences > ::before, .featured-employees .swiper-wrapper > ::after, .featured-employees .swiper-wrapper > ::before, .vacancy-locations > ::after, .vacancy-locations > ::before {
  content: none;
  position: static;
  color: inherit;
  top: auto
}
.division-links .presences > * ol, .division-links .presences > * ul, .featured-employees .swiper-wrapper > * ol, .featured-employees .swiper-wrapper > * ul, .vacancy-details .details-container .info ul > * ol, .vacancy-details .details-container .info ul > * ul, .vacancy-details .details-container .info > * ol, .vacancy-details .details-container .info > * ul, .vacancy-functions > * ol, .vacancy-functions > * ul, .vacancy-locations > * ol, .vacancy-locations > * ul, .vacancy-outro ul > * ol, .vacancy-outro ul > * ul {
  margin-top: 0
}
.featured-employees {
  --blockquote-color: #ffffff
}
.featured-employees .swiper {
  min-height: 0;
  min-width: 0
}
.featured-employees .swiper-wrapper {
  margin-bottom: unset;
  margin-top: 1.5rem
}
.featured-employees .swiper-wrapper:not(:last-child) {
  margin-bottom: 2rem
}
.featured-employees .swiper-wrapper > * {
  padding-left: 0
}
.featured-employees .swiper-slide {
  aspect-ratio: 1.7777777778;
  display: flex;
  flex-direction: column;
  max-height: 100%
}
.featured-employees .panel {
  position: relative;
  color: #fff;
  background-color: #0a0a0a;
  margin-bottom: unset;
  padding-top: 1.5rem;
  padding-right: max(3rem, 8vw);
  padding-bottom: 3.625rem;
  padding-left: max(1.5rem, 8vw)
}
@media screen and (min-width:64em) {
  .featured-employees .panel {
    padding: 3rem 6.5rem;
    max-width: 31.25rem
  }
}
.featured-employees .quote {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem 2rem
}
.featured-employees blockquote {
  font-family: "purista-web", Arial, Tahoma, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .025em;
  line-height: 1.16666;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  max-width: unset;
  border: unset;
  padding-left: unset;
  margin-top: unset;
  margin-bottom: unset;
  margin-left: unset
}
.featured-employees blockquote > p::after, .featured-employees blockquote > p::before {
  position: unset;
  font-size: unset
}
.featured-employees blockquote > p:first-of-type::before, .vacancy-intro .quote-container blockquote > p:first-of-type::before {
  content: open-quote
}
.featured-employees blockquote > p:last-of-type::after, .vacancy-intro .quote-container blockquote > p:last-of-type::after {
  content: close-quote
}
.featured-employees cite {
  font-size: clamp(.875rem, 2vw, 1rem);
  color: currentColor;
  padding-left: unset;
  margin-bottom: 2rem
}
.featured-employees cite::before, .vacancy-details .details-container .info li::before {
  content: unset
}
.featured-employees .button {
  --button-color: #ffffff;
  --button-border-color: #ffffff;
  --button-background-color: #0a0a0a;
  --button-hover-background-color: #ffffff
}
.featured-employees .button:focus-visible, .featured-employees .button:hover {
  --button-color: #0a0a0a;
  --button-border-color: #ffffff
}
.featured-employees .iframely-embed, .featured-employees iframe, .featured-employees img {
  width: 100%;
  height: 100%;
  object-fit: cover
}
.featured-employees img {
  aspect-ratio: 16/9
}
@media screen and (min-width:64em) {
  .featured-employees img {
    position: absolute
  }
}
.featured-employees .is-video .panel {
  max-width: unset
}
@media screen and (min-width:64em) {
  .featured-employees .is-video .quote {
    grid-template-columns: 1.5fr 1fr
  }
}
.featured-employees video {
  background-color: #0a0a0a;
  aspect-ratio: 16/9;
  max-width: 100%
}
.vacancies-overview .distributor-list {
  border-top: none;
  display: flex;
  flex-flow: row wrap;
  margin-right: -1rem;
  margin-left: -1rem;
  gap: 2rem 0
}
.vacancies-overview .distributor-list > * {
  display: flex;
  flex: 0 0 auto;
  width: calc(100% - 2rem);
  margin-left: 1rem;
  margin-right: 1rem
}
@media screen and (min-width:35.5em) {
  .vacancies-overview .distributor-list > * {
    flex: 0 0 auto;
    width: calc(50% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem
  }
}
@media screen and (min-width:60em) {
  .vacancies-overview .distributor-list > * {
    flex: 0 0 auto;
    width: calc(33.3333333333% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem
  }
}
@media screen and (min-width:63.75em) {
  .vacancies-overview .distributor-list > * {
    flex: 0 0 auto;
    width: calc(50% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem
  }
}
@media screen and (min-width:78.75em) {
  .vacancies-overview .distributor-list > * {
    flex: 0 0 auto;
    width: calc(33.3333333333% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem
  }
}
.vacancies-overview .distributor-link-item {
  display: flex;
  flex-grow: 1
}
.vacancies-overview .distributor-link-item::after, .vacancies-overview .distributor-link-item::before {
  top: 0;
  bottom: unset
}
.vacancies-overview .distributor-link-item .item {
  flex-grow: 1
}
.vacancies-overview .distributor-link-item .content {
  display: flex;
  flex-direction: column;
  flex-grow: 1
}
.vacancies-overview .distributor-link-item .headline {
  margin-top: unset;
  margin-bottom: 1.5rem
}
.vacancies-overview .details {
  display: flex;
  flex-flow: row wrap;
  margin-right: -1rem;
  margin-left: -1rem;
  margin-top: auto
}
.vacancies-overview .details > * {
  flex: 0 0 auto;
  width: calc(100% - 2rem);
  margin-left: 1rem;
  margin-right: 1rem;
  margin-bottom: .25rem
}
.vacancies-overview .details > :last-child {
  margin-bottom: 0
}
@media screen and (max-width:35.4875em) {
  .vacancies-overview .view {
    display: none
  }
}
.vacancy-locations {
  color: #0a0a0a;
  font-weight: 400;
  margin-bottom: unset;
  position: relative;
  padding-left: 2rem
}
.vacancy-functions:not(:last-child), .vacancy-locations:not(:last-child) {
  margin-bottom: .25rem
}
.vacancy-locations > * {
  padding-left: 0
}
.vacancy-locations::before {
  content: "";
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  line-height: 1;
  font-size: 1.25rem;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--dark-color)
}
.vacancy-functions {
  color: #0a0a0a;
  font-weight: 400;
  margin-bottom: unset;
  position: relative;
  padding-left: 2rem
}
.vacancy-functions > * {
  padding-left: 0
}
.vacancy-functions > ::after, .vacancy-functions > ::before {
  content: none;
  position: static;
  color: inherit;
  top: auto
}
.vacancies-filter .accordion .accordion-title .icon::before, .vacancy-functions::before {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}
.vacancy-functions::before {
  content: "";
  display: inline-block;
  font-size: 1.25rem;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--dark-color)
}
.vacancies-filter .accordion {
  margin-top: unset;
  margin-bottom: unset
}
.vacancies-filter .accordion[disabled] {
  opacity: unset
}
.vacancies-filter .accordion .accordion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: unset;
  font-size: 1em;
  font-family: inherit;
  text-transform: unset;
  color: inherit
}
.vacancies-filter .accordion .accordion-title:hover, .vacancy-details .details-container li::before {
  color: unset
}
.vacancies-filter .accordion .accordion-title:hover .icon {
  color: #646e78
}
.vacancies-filter .accordion .accordion-title::after {
  background-color: unset
}
.vacancies-filter .accordion .accordion-title .description {
  margin-right: .25rem
}
.vacancies-filter .accordion .accordion-title .icon {
  position: unset;
  aspect-ratio: 1/1;
  border-width: 2px;
  border-style: solid;
  border-radius: 50%
}
.vacancies-filter .accordion .accordion-title .icon::before {
  content: "";
  transition: transform .3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem
}
.vacancies-filter .accordion .accordion-item {
  border: unset
}
.vacancies-filter .accordion .accordion-item.is-active .icon::before {
  transform: rotate(180deg)
}
.vacancies-filter .accordion .accordion-content {
  padding-top: .5rem;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0
}
.vacancies-filter .icon-input.is-invalid + .error {
  display: block
}
.vacancies-filter .icon-input + .error {
  display: none
}
.vacancies-filter .icon-input input {
  text-align: left
}
.vacancy-details .expire-date {
  display: block;
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content
}
.vacancy-details ul {
  display: flex;
  flex-direction: column;
  gap: 1rem
}
.vacancy-details > .wrapper > .title {
  margin-top: 2rem;
  margin-bottom: 0;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 2px solid var(--dark-color);
  border-bottom: 2px solid var(--dark-color)
}
@media screen and (min-width:60em) {
  .vacancy-details > .wrapper > .title {
    margin-top: 3rem
  }
}
.vacancy-details .details-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
  font-size: 1.25rem
}
@media screen and (min-width:60em) {
  .vacancy-details .details-container {
    margin-top: 3rem;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr)
  }
  .vacancy-details .details-container .profile-headline {
    grid-row: 1/2;
    grid-column: 2/3
  }
  .vacancy-details .details-container .profile {
    grid-row: 2/3;
    grid-column: 2/3
  }
  .vacancy-details .details-container .tasks-headline {
    grid-row: 1/2;
    grid-column: 1/2
  }
  .vacancy-details .details-container .tasks {
    grid-row: 2/3;
    grid-column: 1/2
  }
  .vacancy-details .details-container .info {
    grid-row: 2/3;
    grid-column: 3/4
  }
}
.vacancy-details .details-container > :nth-child(even) {
  margin-bottom: 1rem
}
@media screen and (min-width:60em) {
  .vacancy-details .details-container > :nth-child(even) {
    margin-bottom: unset
  }
}
.vacancy-details .details-container .profile > ul:only-child, .vacancy-details .details-container .tasks > ul:only-child {
  margin-bottom: 0
}
.application-3d ul ul, .vacancy-details .details-container .title, .vacancy-outro p {
  margin-top: 0;
  margin-bottom: 0
}
.vacancy-details .details-container .info {
  margin-bottom: unset;
  gap: 2rem
}
.vacancy-details .details-container .info:not(:last-child) {
  margin-bottom: 0
}
.vacancy-details .details-container .info ul > ::after, .vacancy-details .details-container .info ul > ::before, .vacancy-details .details-container .info > ::after, .vacancy-details .details-container .info > ::before, .vacancy-outro ul > ::after, .vacancy-outro ul > ::before {
  content: none;
  position: static;
  color: inherit;
  top: auto
}
.vacancy-details .details-container .info ul {
  margin-bottom: unset;
  margin-top: .75rem;
  margin-left: 1rem
}
.vacancy-details .details-container .info ul > *, .vacancy-details .details-container .info > *, .vacancy-outro ul > * {
  padding-left: 0
}
.vacancy-details .details-container .info > li > span:first-child {
  font-weight: 700
}
.vacancy-details .details-container .entry-levels ul:has(li:only-child) {
  display: inline;
  margin-left: 0
}
.vacancy-details .details-container .entry-levels ul:has(li:only-child) li {
  display: inline
}
.vacancy-details .details-container .entry-levels ul:has(li:only-child) li::before {
  content: ""
}
.vacancy-details .br-text, .vacancy-outro {
  font-size: 1.25rem
}
.vacancy-details + .incentives .title {
  font-size: clamp(1.5rem, 4vw, 1.75rem)
}
.vacancy-details .incentives-list {
  display: grid;
  margin-right: 1rem;
  margin-left: 1rem
}
@media screen and (min-width:60em) {
  .vacancy-details .incentives-list {
    margin-right: 0;
    margin-bottom: 2rem;
    margin-left: 0
  }
}
.vacancy-intro .container {
  margin-right: -2vw;
  margin-left: -2vw
}
@media screen and (min-width:80em) {
  .vacancy-intro .container {
    margin-left: clamp(-4vw, -4vw, -2rem);
    margin-right: 0
  }
}
.vacancy-intro .person, blockquote > p {
  position: relative
}
.vacancy-intro .person .figure {
  margin-bottom: 0;
  aspect-ratio: 2
}
.vacancy-intro .person img {
  max-height: 100%
}
.vacancy-intro .quote-container {
  width: 100%;
  padding-top: 1.75rem;
  padding-right: 2rem;
  padding-bottom: 3rem;
  padding-left: calc(4vw);
  background-color: #0a0a0a
}
@media screen and (min-width:80em) {
  .vacancy-intro .quote-container {
    position: absolute;
    top: 0;
    z-index: 1;
    background-color: unset
  }
}
.vacancy-intro .quote-container blockquote {
  margin-left: 0;
  padding-right: 1rem;
  color: #fff
}
@media screen and (min-width:80em) {
  .vacancy-intro .quote-container blockquote {
    color: unset
  }
}
.vacancy-intro .quote-container blockquote > p::after, .vacancy-intro .quote-container blockquote > p::before {
  position: unset;
  font-size: unset
}
@media screen and (min-width:80em) {
  .vacancy-intro .quote-container blockquote > p::after, .vacancy-intro .quote-container blockquote > p::before {
    color: unset
  }
}
@media screen and (min-width:80em) {
  .vacancy-intro .quote-container .title {
    max-width: 39%
  }
}
.vacancy-outro ul {
  margin-bottom: unset
}
.vacancy-outro .title {
  margin-bottom: 4rem
}
.vacancy-outro .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem
}
@media screen and (min-width:60em) {
  .vacancy-outro .container {
    grid-template-columns: repeat(3, 1fr)
  }
}
.vacancy-outro .vacancies-contact {
  display: flex;
  flex-direction: column;
  gap: 1.75rem
}
@media screen and (min-width:60em) {
  .vacancy-outro .vacancies-contact {
    grid-column: 1/3;
    flex-direction: row
  }
  .vacancy-outro .vacancies-contact .division {
    margin-left: auto
  }
}
.vacancy-outro .division svg {
  max-width: 100%;
  width: 13rem;
  height: auto
}
.vacancy-outro .division svg path:not(.svg-inner-claim), .vacancy-outro .division svg polygon:not(.svg-inner-claim), .vacancy-outro .division svg rect:not(.svg-inner-claim) {
  fill: #626262
}
.vacancy-outro .award {
  height: 12.5rem;
  max-width: 18.75rem
}
.vacancy-outro .award img {
  max-height: 100%;
  max-width: 100%
}
.locations .contact {
  border-color: var(--dark-color);
  padding-top: 1.5rem
}
.locations .name {
  font-weight: 600;
  margin-top: unset;
  margin-bottom: 1.5rem
}
.locations .numbers {
  margin-bottom: 0
}
.locations .title {
  margin-bottom: 2rem
}
.locations-overview-list {
  margin-bottom: unset;
  gap: 2rem 0
}
.locations-overview-list > * {
  padding-left: 0
}
.locations-overview-list > ::after, .locations-overview-list > ::before {
  content: none;
  position: static;
  color: inherit;
  top: auto
}
.is-styleguide .palette > * ol, .is-styleguide .palette > * ul, .locations-overview-list > * ol, .locations-overview-list > * ul, .vacancies-slider .swiper-wrapper > * ol, .vacancies-slider .swiper-wrapper > * ul {
  margin-top: 0
}
.locations-overview-list > :target {
  animation: highlight-item 1.25s ease-in-out .6s
}
blockquote {
  z-index: 2;
  max-width: min(100% - min(2rem, 4vw)*2, 50rem);
  margin-right: auto;
  margin-left: auto;
  font-family: "purista-web", Arial, Tahoma, sans-serif;
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase
}
@media print {
  blockquote {
    break-inside: avoid
  }
}
blockquote > p::after, blockquote > p::before {
  z-index: -1;
  position: absolute;
  font-family: "purista-web", Arial, Tahoma, sans-serif;
  font-size: 9rem;
  font-weight: 700;
  line-height: 0;
  color: #e6e6e8
}
blockquote > p:first-of-type::before {
  content: "„";
  left: calc(-1*min(2rem, 4vw))
}
blockquote > p:last-of-type:not(.edit-cite)::after {
  content: "“";
  bottom: 0;
  right: calc(-1*min(2rem, 4vw))
}
.edit-blockquote .edit-quote::after {
  content: close-quote;
  bottom: 0;
  right: calc(-1*min(2rem, 4vw))
}
.cite, .edit-cite, cite {
  display: block;
  line-height: 1.5;
  font-family: "proxima-nova", Arial, Tahoma, sans-serif;
  font-size: 1rem;
  font-style: unset;
  text-transform: none
}
.cite span:not(:last-child)::after, .edit-cite span:not(:last-child)::after, cite span:not(:last-child)::after {
  content: ","
}
.quote {
  z-index: 2
}
.quote .inner-container {
  display: flex;
  align-items: center;
  gap: 1.5rem
}
.quote .image {
  display: inline-block;
  border-width: 1px;
  border-color: #fff;
  border-style: solid;
  border-radius: 50%;
  background-color: #f0f0f0;
  align-self: center;
  aspect-ratio: 1/1
}
@media screen and (min-width:43.75em) {
  .quote .image {
    align-self: flex-start
  }
}
.quote .image img {
  border-radius: 50%
}
.google-map {
  height: 100vh;
  color: var(--dark-color)
}
@media screen and (min-width:48em) {
  .google-map {
    height: clamp(18.75rem, 60vh, 36.25rem)
  }
}
.google-map .gm-style .gm-style-iw-c {
  max-width: 18.75rem !important;
  max-height: 100vh;
  padding-top: 1.75rem !important;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 1.5rem !important;
  border-radius: 0;
  transform: translate(-50%, -100%)
}
@media screen and (min-width:48em) {
  .google-map .gm-style .gm-style-iw-c {
    max-width: 43.75rem !important;
    max-height: clamp(18.75rem, 60vh, 36.25rem);
    padding-left: 2.5rem !important
  }
}
.google-map .gm-style .gm-style-iw-d {
  height: 100%;
  padding-right: 1.5rem !important;
  padding-bottom: 1.75rem !important
}
@media screen and (min-width:48em) {
  .google-map .gm-style .gm-style-iw-d {
    padding-right: 2.5rem !important
  }
}
.google-map .gm-style button.gm-ui-hover-effect {
  top: .875rem !important;
  right: .875rem !important;
  height: 1.5rem !important;
  width: 1.5rem !important;
  border-width: 1px !important;
  border-color: #0a0a0a !important;
  border-style: solid !important;
  border-radius: 50%
}
.google-map .gm-style button.gm-ui-hover-effect span {
  height: 1.25rem !important;
  width: 1.25rem !important;
  margin: 0 auto !important
}
.google-map .infowindow {
  font-family: "proxima-nova", Arial, Tahoma, sans-serif;
  font-size: .875rem;
  font-weight: 600;
  text-align: left;
  color: #0a0a0a
}
.google-map .infowindow > .title {
  display: block;
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--dark-color)
}
.google-map .infowindow .container {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 2.25rem
}
@media screen and (min-width:48em) {
  .google-map .infowindow .container {
    flex-direction: row
  }
}
.google-map .infowindow .container img {
  display: none;
  width: 100%;
  aspect-ratio: 3/2
}
@media screen and (min-width:48em) {
  .google-map .infowindow .container img {
    display: block;
    width: auto
  }
}
.google-map .infowindow .contact {
  margin-bottom: 0;
  padding-top: 0;
  border: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25
}
.google-map .infowindow .contact .division {
  margin-bottom: .5rem
}
.vacancies-slider .title {
  margin-bottom: 3.625rem
}
.vacancies-slider .swiper-wrapper {
  margin-bottom: unset
}
.vacancies-slider .swiper-wrapper:not(:last-child) {
  margin-bottom: 2rem
}
.is-static-error-page li, .vacancies-slider .swiper-wrapper > * {
  padding-left: 0
}
.vacancies-slider .swiper-wrapper > ::after, .vacancies-slider .swiper-wrapper > ::before {
  content: none;
  position: static;
  color: inherit;
  top: auto
}
.vacancies-slider .swiper-slide {
  display: flex;
  border-top: 2px solid #edf2f7;
  height: unset
}
.vacancies-slider .distributor-link-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start
}
.vacancies-slider .distributor-link-item::after, .vacancies-slider .distributor-link-item::before {
  content: unset
}
.vacancies-slider .headline {
  margin-top: .75rem;
  margin-bottom: 1.25rem
}
.vacancies-slider .details {
  margin-top: auto
}
.vacancies-slider .details + .button {
  margin-top: 1.5rem
}
.vacancies-slider .button-bar {
  justify-content: center;
  margin-top: 3rem
}
.scroll-top-button {
  position: fixed;
  bottom: 0;
  align-self: center;
  z-index: 9;
  pointer-events: none
}
.scroll-top-button .wrapper {
  height: 100%;
  width: calc(100vw - 17px);
  position: relative
}
.iframely-embed iframe[src] {
  z-index: 4
}
.services-and-regions {
  --color: variables.$color;
  --filter-brightness: 1
}
.services-and-regions .container {
  display: flex;
  flex-direction: column;
  gap: 2rem 4rem
}
@media screen and (min-width:48em) {
  .services-and-regions .container {
    flex-direction: row
  }
}
.services-and-regions .map svg {
  width: 100%;
  height: auto
}
.services-and-regions .map g:not(#svg-pan-zoom-controls, .svg-pan-zoom_viewport) {
  cursor: pointer;
  filter: brightness(var(--filter-brightness));
  transition: filter .33s ease-in-out
}
.services-and-regions .map g:not(#svg-pan-zoom-controls, .svg-pan-zoom_viewport):focus-visible, .services-and-regions .map g:not(#svg-pan-zoom-controls, .svg-pan-zoom_viewport):hover {
  --filter-brightness: 0.8
}
.services-and-regions .map g:not(#svg-pan-zoom-controls, .svg-pan-zoom_viewport) path {
  fill: var(--color, #0a0a0a)
}
.services-and-regions .map g:not(#svg-pan-zoom-controls, .svg-pan-zoom_viewport).is-active {
  --highlight-item-scale: 1.008;
  --highlight-item-opacity: 0.8;
  --filter-brightness: 0.8;
  animation: highlight-item 1s ease-in-out
}
.services-and-regions .locations {
  --color: white
}
.services-and-regions .locations .st1 {
  fill: #f0503c
}
.call-to-action-button {
  --section-padding-top: unset
}
.call-to-action-button .container {
  display: flex;
  justify-content: center
}
.is-product .content-header-image .figure {
  margin-bottom: 2rem;
  aspect-ratio: unset
}
.is-product .content-header-image .figure-wrapper {
  display: table;
  margin: 0 auto;
  position: unset
}
.is-product .content-header-image .images {
  display: table-cell;
  vertical-align: middle;
  border: 1px solid rgba(0, 0, 0, .09);
  width: 368px;
  height: 320px
}
.is-product .content-header-image .images > img {
  margin: 0 auto;
  width: auto;
  max-width: 100%;
  max-height: 320px;
  padding: 2px
}
.is-error-page .content-header {
  text-align: center
}
.is-error-page .content-header .title {
  font-size: 3rem
}
.is-error-page .content {
  max-width: 22.5rem;
  text-align: center;
  margin: 0 auto
}
.is-error-page svg {
  fill: #505a64
}
@media print {
  .is-vacancy {
    font-size: 85%
  }
  .is-vacancy .h1 {
    font-size: 2em;
    margin-top: 1em
  }
}
.is-vacancy ul + .h3 {
  page-break-before: always
}
@media print {
  .is-vacancy .downloads {
    display: none
  }
}
@media screen and (min-width:78.75em) {
  .is-vacancy .grid-layout > .aside {
    width: calc(25% - 2rem)
  }
  .is-vacancy .grid-layout > .content {
    width: calc(75% - 2rem)
  }
}
.is-static-error-page {
  overflow: auto
}
.is-static-error-page .content-header {
  margin-top: 4rem
}
.is-static-error-page .title {
  margin-top: 2rem
}
.is-static-error-page .main, .is-static-error-page .page {
  margin-bottom: 0
}
.is-static-error-page .page::before, .is-static-error-page li::before {
  content: none
}
.is-static-error-page .main {
  z-index: 0;
  margin-left: 0
}
.is-static-error-page .cf-error-details h1 {
  font-size: clamp(2rem, 4vw, 2.625rem)
}
.is-dashboard .main[style] {
  background-color: transparent;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center
}
.is-dashboard .content > .panel {
  padding: 0;
  margin-bottom: 4rem
}
.is-dashboard .accordion-item {
  background-color: #fff
}
.is-dashboard .select2-dropdown {
  border-right-color: #fff !important;
  border-left-color: #fff !important
}
.is-dashboard .summary {
  font-size: .875rem;
  font-weight: 400
}
.is-dashboard .panel {
  padding: 1.5rem
}
.is-dashboard .news-overview .date {
  font-size: .875rem;
  color: currentColor;
  opacity: .6
}
.is-dashboard .news-overview .title {
  margin-top: .25rem;
  margin-bottom: .5rem
}
.is-dashboard .news-overview .read-more {
  color: inherit
}
.dashboard-downloads, .dashboard-faq, .dashboard-news, .dashboard-settings {
  margin-bottom: 4rem
}
.dashboard-downloads > :first-child, .dashboard-faq > :first-child, .dashboard-news > :first-child, .dashboard-settings > :first-child {
  margin-top: 0
}
.dashboard-downloads > .title, .dashboard-faq > .title, .dashboard-news > .title, .dashboard-settings > .title {
  color: #646e78
}
.is-drilldown {
  position: relative
}
.application-3d .menu-description .product-description-wrap.show, .is-drilldown li {
  display: block
}
.is-drilldown.animate-height {
  transition: height .5s
}
.drilldown a {
  background: #fefefe
}
.drilldown .is-drilldown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  width: 100%;
  background: #fefefe;
  transition: transform .15s linear
}
.drilldown .is-drilldown-submenu.is-active {
  z-index: 1;
  display: block;
  transform: translateX(-100%)
}
.drilldown .is-drilldown-submenu.is-closing {
  transform: translateX(100%)
}
.drilldown .is-drilldown-submenu a, .drilldown a {
  padding: .7rem 1rem
}
.drilldown .nested.is-drilldown-submenu {
  margin-right: 0;
  margin-left: 0
}
.drilldown .drilldown-submenu-cover-previous {
  min-height: 100%
}
.drilldown .is-drilldown-submenu-parent > a {
  position: relative
}
.drilldown .is-drilldown-submenu-parent > a::after, .drilldown.align-left .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  content: "";
  border-width: 6px 0 6px 6px;
  border-color: transparent transparent transparent #1779ba;
  right: 1rem
}
.drilldown .is-drilldown-submenu-parent > a::after {
  position: absolute;
  top: 50%;
  margin-top: -6px
}
.drilldown.align-left .is-drilldown-submenu-parent > a::after {
  left: auto
}
.drilldown .js-drilldown-back > a::before, .drilldown.align-right .is-drilldown-submenu-parent > a::after {
  width: 0;
  height: 0;
  border-style: solid;
  content: "";
  border-width: 6px 6px 6px 0;
  border-color: transparent #1779ba transparent transparent
}
.drilldown.align-right .is-drilldown-submenu-parent > a::after {
  display: block;
  right: auto;
  left: 1rem
}
.drilldown .js-drilldown-back > a::before {
  display: inline-block;
  vertical-align: middle;
  margin-right: .75rem
}
.animation-template, .is-drilldown {
  overflow: hidden
}
.application-3d {
  width: 100%;
  overflow: hidden;
  margin-bottom: 0;
  max-height: 100%
}
.application-3d ul {
  margin-top: 0;
  margin-bottom: 0;
  background-color: #003c64
}
.application-3d ul > * {
  position: static
}
.application-3d ul li {
  padding-left: 0;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(255, 255, 255, .3)
}
.application-3d ul li::before {
  content: ""
}
.application-3d ul li:last-child {
  border-bottom: transparent
}
.application-3d ul a {
  width: 100%;
  background-color: transparent;
  color: #fff
}
.application-3d ul a:focus-visible, .application-3d ul a:hover {
  color: #f8ae1a;
  text-decoration: none
}
.application-3d .drilldown-wrap {
  max-height: 100%;
  overflow-y: auto
}
.application-3d .drilldown .is-drilldown-submenu {
  background-color: #003c64
}
.application-3d .drilldown .is-drilldown-submenu-parent > a::after, .application-3d .drilldown .js-drilldown-back > a::before {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  line-height: 1;
  font-size: 1.25rem;
  border: 0
}
.application-3d .drilldown .is-drilldown-submenu-parent > a::after {
  content: "";
  right: 1.5625rem;
  margin-top: -.625rem
}
.application-3d .drilldown .js-drilldown-back > a {
  padding-left: 1.875rem
}
.application-3d .drilldown .js-drilldown-back > a::before {
  content: "";
  left: .3125rem;
  position: absolute;
  margin-top: 3px
}
.application-3d .logo {
  position: fixed;
  width: 5.5rem;
  height: 3.4375rem;
  top: .9375rem;
  left: .9375rem;
  z-index: 3
}
@media screen and (min-width:48em) {
  .application-3d .logo {
    width: 9.375rem;
    top: 1.6875rem
  }
}
.application-3d .logo svg {
  width: 100%;
  height: 100%
}
.application-3d .menu-description, .application-3d .menu-products {
  transition: transform .5s ease;
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  background-color: rgba(10, 10, 10, .6)
}
.application-3d .menu-description {
  max-height: 100%
}
.application-3d .menu-products {
  color: #fff
}
@media screen and (min-width:48em) {
  .application-3d .menu-description, .application-3d .menu-products {
    width: 25rem
  }
}
.application-3d .menu-description {
  transform: translateX(100%);
  right: 0;
  left: 0;
  color: #fff
}
@media screen and (min-width:48em) {
  .application-3d .menu-description {
    left: auto;
    overflow-x: visible
  }
}
.application-3d .menu-description .menu-description-inner {
  overflow: auto;
  max-height: 100%
}
@media screen and (min-width:48em) {
  .application-3d .menu-description .menu-description-inner {
    flex-direction: row;
    overflow: visible
  }
}
.application-3d .menu-description .product-description-wrap {
  display: none;
  position: relative;
  padding-top: 14.375rem
}
@media screen and (min-width:48em) {
  .application-3d .menu-description .product-description-wrap {
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
  }
}
.application-3d .menu-description .product-description {
  width: 100%;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem
}
@media screen and (min-width:48em) {
  .application-3d .menu-description .product-description {
    position: relative;
    padding-top: 0
  }
}
.application-3d .menu-description .product-description .close {
  display: none;
  top: .625rem;
  right: 1.5625rem
}
.application-3d .menu-description.show {
  transform: translateX(0)
}
.application-3d .menu-description.show .close {
  display: block
}
.application-3d .product-image {
  position: absolute;
  width: 100%;
  height: 9.375rem;
  top: 3.75rem;
  border-radius: 100%
}
@media screen and (min-width:48em) {
  .application-3d .product-image {
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    top: 50%;
    right: auto;
    transform: translate(-100%, -50%)
  }
}
@media screen and (min-width:78.75em) {
  .application-3d .product-image {
    height: 21.875rem
  }
}
@media screen and (min-width:102.75em) {
  .application-3d .product-image {
    height: 32.7777777778rem
  }
}
.application-3d .product-image svg {
  display: none;
  width: 2.5rem
}
@media screen and (min-width:48em) {
  .application-3d .product-image svg {
    display: block;
    width: 12.5rem
  }
}
@media screen and (min-width:78.75em) {
  .application-3d .product-image svg {
    display: block;
    width: 25rem
  }
}
@media screen and (min-width:102.75em) {
  .application-3d .product-image svg {
    display: block;
    width: 37.5rem
  }
}
.application-3d .product-image .transparent-circle {
  opacity: .6;
  fill: #fff
}
.application-3d .product-image .product-image-inner {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 10rem;
  height: 10rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat
}
@media screen and (min-width:48em) {
  .application-3d .product-image .product-image-inner {
    transform: translate(-50%, -50%);
    width: 7.5rem;
    height: 7.5rem;
    position: absolute;
    top: 50%;
    left: 43%
  }
}
@media screen and (min-width:78.75em) {
  .application-3d .product-image .product-image-inner {
    width: 12.5rem;
    height: 12.5rem
  }
}
@media screen and (min-width:102.75em) {
  .application-3d .product-image .product-image-inner {
    width: 21.875rem;
    height: 21.875rem;
    left: 45%
  }
}
.application-3d .menu-products {
  transform: translateX(-100%);
  left: 0;
  max-height: 100%;
  padding-top: 5rem;
  background-color: #003c64
}
@media screen and (min-width:48em) {
  .application-3d .menu-products {
    padding-top: 9.375rem
  }
}
.application-3d .menu-products.show {
  transform: translateX(0)
}
.application-3d .menu-products.show .opener {
  cursor: default;
  opacity: 0
}
.application-3d .menu-products .opener {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -3.125rem;
  width: 3.125rem;
  opacity: 1;
  cursor: pointer;
  transition: opacity .5s ease
}
.application-3d .arrows, .application-3d .info-icon, .application-3d canvas {
  filter: blur(0);
  transition-property: filter;
  transition-delay: 200ms;
  transition-duration: .5s;
  transition-timing-function: ease;
  display: block
}
.application-3d.blur canvas {
  filter: blur(.3125rem);
  pointer-events: none
}
.application-3d.blur .logo {
  display: none
}
@media screen and (min-width:48em) {
  .application-3d.blur .logo {
    display: block
  }
}
.application-3d.blur .arrows, .application-3d.blur .info-icon {
  filter: blur(.3125rem)
}
.application-3d .animation-wrapper {
  width: 100vw;
  height: 100vh;
  display: block
}
.application-3d .animation-overlay {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  color: #fff;
  z-index: 999;
  align-items: center;
  justify-content: center;
  background-color: rgba(10, 10, 10, .5)
}
@media (orientation:portrait) {
  .application-3d .animation-overlay.show {
    display: flex
  }
}
.application-3d .animation-overlay svg {
  width: 50%;
  fill: rgba(255, 255, 255, .8)
}
.application-3d .close {
  position: absolute;
  top: .3125rem;
  right: .3125rem;
  z-index: 5
}
.application-3d .close::before {
  content: "";
  font-size: 1.5rem
}
@media screen and (min-width:48em) {
  .application-3d .close {
    top: 4.375rem
  }
}
.application-3d .application-loader {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--dark-color)
}
.application-3d .application-loader::before, .application-3d .close::before, .application-3d .info .info-icon::before {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  line-height: 1;
  color: #fff
}
.application-3d .application-loader::before {
  content: "";
  font-size: 1.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: centered-rotation 1s infinite linear
}
.application-3d .arrows {
  left: 50%;
  transform: translateX(-50%) scaleY(.6);
  position: fixed;
  bottom: .625rem;
  width: 9.375rem;
  opacity: .5;
  pointer-events: none
}
@media screen and (min-height:40.625rem) {
  .application-3d .arrows {
    width: 16.25rem;
    bottom: 1.875rem
  }
}
.application-3d .info {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem
}
.application-3d .info .info-icon::before {
  content: "";
  font-size: 2.25rem
}
.application-3d .info .info-icon:focus-visible, .application-3d .info .info-icon:hover {
  cursor: pointer
}
.application-3d .info .info-icon:focus-visible::before, .application-3d .info .info-icon:hover::before {
  content: "";
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  line-height: 1;
  font-size: 2.25rem;
  color: #f8ae1a
}
.application-3d .info .info-text {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(10, 10, 10, .6);
  padding: 7.5rem 3.75rem 1.25rem;
  color: #fff
}
@media screen and (min-width:48em) {
  .application-3d .info .info-text {
    top: 3.75rem;
    right: 1.5625rem;
    bottom: auto;
    left: auto;
    max-width: 25rem;
    padding: 1rem 2.5rem 1rem 1rem
  }
}
.application-3d .info .info-text.show {
  display: block
}
.application-3d .info .info-text .close {
  cursor: pointer;
  position: absolute;
  top: .3125rem;
  right: .3125rem
}
.is-styleguide .color-group-bright, .is-styleguide .color-group-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8ae1a
}
.is-styleguide .color-group-bright {
  background-color: #6eabf6
}
.is-styleguide .color-metall-bright, .is-styleguide .color-metall-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eb8723
}
.is-styleguide .color-metall-bright {
  background-color: #ff8c1e
}
.is-styleguide .color-controls-bright, .is-styleguide .color-controls-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00aeef
}
.is-styleguide .color-controls-bright {
  background-color: #00e1ff
}
.is-styleguide .color-defence-bright, .is-styleguide .color-defence-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #5b91cc
}
.is-styleguide .color-defence-bright {
  background-color: #64afff
}
.is-styleguide .color-aviation-bright, .is-styleguide .color-aviation-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #5b91cc
}
.is-styleguide .color-aviation-bright {
  background-color: #5ca3df
}
.is-styleguide .color-metering-bright, .is-styleguide .color-metering-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00b5ad
}
.is-styleguide .color-metering-bright {
  background-color: #00ebdc
}
.is-styleguide .color-affiliated-bright, .is-styleguide .color-affiliated-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #5f646e
}
.is-styleguide .color-affiliated-bright {
  background-color: #8c919b
}
.is-styleguide .color-career-bright, .is-styleguide .color-career-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8ae1a
}
.is-styleguide .color-career-bright {
  background-color: #6eabf6
}
.is-styleguide .palette {
  display: flex;
  margin-bottom: unset;
  gap: 2rem
}
.is-styleguide .palette > * {
  padding-left: 0
}
.is-styleguide .palette > ::after, .is-styleguide .palette > ::before {
  content: none;
  position: static;
  color: inherit;
  top: auto
}
.is-styleguide .palette div {
  width: 100px;
  height: 100px;
  margin-bottom: .5rem
}
.is-styleguide .palette span, .is-styleguide .type {
  font-size: .75rem;
  padding: .5em .625em;
  color: #000;
  border-width: 1px;
  border-style: solid;
  border-color: #eee
}
.is-styleguide .palette span {
  background-color: rgba(250, 250, 250, .75);
  border-radius: .625em
}
.is-styleguide .palette .title {
  margin-bottom: .5rem
}
.is-styleguide .type {
  display: inline-block;
  font-family: monospace;
  font-weight: 400;
  text-transform: none;
  letter-spacing: unset;
  line-height: 1.5;
  margin-top: .5rem;
  background-color: #fafafa;
  border-radius: .25em;
  vertical-align: middle
}
.is-styleguide .type.inline {
  display: inline;
  margin-right: .25em;
  margin-left: .5em;
  padding: .125em .375em
}
.is-welcome .h1 {
  font-size: clamp(2.25rem, 4vw, 4rem)
}
.is-welcome .h2 {
  font-size: clamp(1.75rem, 4vw, 3rem)
}
.is-welcome .h3 {
  font-size: clamp(1.5rem, 4vw, 2.25rem)
}
.is-welcome .h4 {
  font-size: clamp(1.25rem, 4vw, 2rem)
}
.is-welcome .h5 {
  font-size: clamp(1.125rem, 4vw, 1.5rem)
}
.is-welcome .h6 {
  font-size: clamp(.875rem, 4vw, 1rem)
}
@media screen and (min-width:43.75em) {
  .is-welcome .component {
    --section-padding: 4rem
  }
}