@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  text-decoration: none;
  vertical-align: baseline;
}

html {
  line-height: 1;
  box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary,
img {
  display: block;
}

input,
textarea {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/*

Example:

  div {
   @include clear();
  }

Result:

  div:before,
  div:after {
   content: '';
   display: block;
   clear: both;
  }

*/
/*

  Example:

    div {
      background-attachment: fixed;

      @include browser('ie') {
        background-position: center;
        background-size: cover;
        background-attachment: scroll;
      }
    }

  Result:

    div {
      background-attachment: fixed;
    }

    @media screen and (min-width:0\0) {

      div {
        background-position: center;
        background-size: cover;
        background-attachment: scroll;
      }
    }

*/
/* Example of usage is at the bottom of file */
/*

  https://webagility.com/posts/the-ultimate-list-of-hacks-for-chromes-forced-yellow-background-on-autocompleted-inputs

  Example:

    input {
      @include autofill('#fff');
    }

  Result:

    input:-webkit-autofill {
      -webkit-box-shadow: 0 0 0 100px #fff inset;
    }

*/
/*
  Usage example

  .button {
    &__link {
      @include contrast {
        background-color: $c-wcga-black;
      }
    }
  }

  gives:

  body.contrast .button__link {
    background-color: #0b0c0c;
  }




  .topMenu {
    $p: &;

    &__link {
      &--hasChildren {
        &::after {
          @include contrast('body.contrast # {$p}__subMenu') {
            color: $c-wcga-yellow;
          }
        }
      }
    }
  }

  gives:

  body.contrast .topMenu__subMenu .topMenu__link--hasChildren::after {
    color: #ffbf47;
  }

*/
/*

  Example:

    input {
      color: $c-black;

      @include placeholder() {
        color: $c-black;
      }
    }

  Result:

    input {
      color: $c-black;
    }

    input::-webkit-input-placeholder {
      color: $c-black;
    }

    input::-moz-placeholder {
      color: $c-black;
    }

    input:-ms-input-placeholder {
      color: $c-black;
    }

    input:-moz-placeholder {
      color: $c-black;
    }

*/
/* Example of use is at the bottom of file */
/*

  Example:

    ul {

      li {

        span {
          color: green;

          @include parent('li', '.red') {
            color: red;
          }

          @include parent('ul', '.hide || .hidden') {
            display: none;
          }
        }
      }
    }

  Result:

    ul li span {
      color: green;
    }

    ul li.red span {
      color: red;
    }

    ul.hide li span {
      display: none;
    }

    ul.hidden li span {
      display: none;
    }

*/
/*

  Example:

    ul {
      margin-bottom: 15px;

      @include rwd(tablet, true) {
        margin-bottom: 30px;
      }

      li {
        margin-bottom: 20px;

        @include rwd(tablet) {
          margin-bottom: 10px;
        }
      }
    }

  Result:

    ul {
      margin-bottom: 15px;
    }

    ul li {
      margin-bottom: 20px;
    }

    @media (min-width: 769px) {
      ul {
        margin-bottom: 30px;
      }
    }

    @media (max-width: 768px) {
      ul li {
        margin-bottom: 10px;
      }
    }
*/
/* Example of use is at the bottom of file */
/*

  Example:

    div {
      float: left;

      @include rtl() {
        float: right;
      }
    }

  Result:

    div {
      float: left;
    }

    html[dir=rtl] div {
      float: right;
    }

*/
@keyframes upAndDown {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 6px);
  }
  75% {
    transform: translate(0, -6px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes fluctuate {
  0% {
    fill: #fff;
  }
  40% {
    fill: #fff;
  }
  50% {
    fill: rgba(255, 255, 255, 0.2);
  }
  60% {
    fill: #fff;
  }
  100% {
    fill: #fff;
  }
}
@keyframes maxToHide {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0.8;
  }
  60% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
  }
}
/*

  Sample file name:
    • OpenSans-Bold.ttf
    • [prefix][delimiter][font_weight].ttf

  Mixin args:
    • path
    • font family
    • fonts weights:
      • name (font_weight in file names)
      • weight
      • style

  Example:
    $Roboto : (
      (
        'name'   : 'Regular',
        'weight' : 400,
        'style'  : 'normal'
      ),
      (
        'name'   : 'Medium',
        'weight' : 500,
        'style'  : 'normal'
      ),
      (
        'name'   : 'Bold',
        'weight' : 700,
        'style'  : 'normal'
      )
    );

    @include fontFace('../sources/fonts/font/', 'Roboto', 'Roboto', $Roboto);

*/
@font-face {
  font-family: "DINProDRVp";
  font-style: normal;
  font-weight: 400;
  src: url("../assets/fonts/DINProDRVp/DINProDRVp-Regular.otf") format("opentype");
}
@font-face {
  font-family: "DINProDRVp";
  font-style: normal;
  font-weight: 500;
  src: url("../assets/fonts/DINProDRVp/DINProDRVp-Medium.otf") format("opentype");
}
@font-face {
  font-family: "DINProDRVp";
  font-style: normal;
  font-weight: 700;
  src: url("../assets/fonts/DINProDRVp/DINProDRVp-Bold.otf") format("opentype");
}
@font-face {
  font-family: "icomoon";
  src: url("../assets/fonts/icomoon/fonts/icomoon.woff2?gdx5k4") format("woff2"), url("../assets/fonts/icomoon/fonts/icomoon.ttf?gdx5k4") format("truetype"), url("../assets/fonts/icomoon/fonts/icomoon.woff?gdx5k4") format("woff"), url("../assets/fonts/icomoon/fonts/icomoon.svg?gdx5k4#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-play:before {
  content: "\E91B";
}

.icon-read-book:before {
  content: "\E919";
}

.icon-sign-lang:before {
  content: "\E91A";
}

.icon-rectangle:before {
  content: "\E903";
}

.icon-check:before {
  content: "\E917";
}

.icon-envelope:before {
  content: "\E911";
}

.icon-facebook:before {
  content: "\E913";
}

.icon-linkedin:before {
  content: "\E914";
}

.icon-twitter:before {
  content: "\E915";
}

.icon-xing:before {
  content: "\E916";
}

.icon-law:before {
  content: "\E912";
}

.icon-home:before {
  content: "\E910";
  color: #2e517b;
}

.icon-law-light:before {
  content: "\E90E";
}

.icon-share:before {
  content: "\E90F";
}

.icon-search:before {
  content: "\E918";
}

.icon-people:before {
  content: "\E901";
}

.icon-download:before {
  content: "\E90D";
}

.icon-downloads:before {
  content: "\E900";
}

.icon-triangle:before {
  content: "\E902";
}

.icon-info:before {
  content: "\E905";
}

.icon-link:before {
  content: "\E908";
}

.icon-plus:before {
  content: "\E904";
}

.icon-link-external:before {
  content: "\E906";
}

.icon-close:before {
  content: "\E907";
}

.icon-arrow-up:before {
  content: "\E909";
}

.icon-arrow-right:before {
  content: "\E90A";
}

.icon-arrow-left:before {
  content: "\E90B";
}

.icon-arrow-down:before {
  content: "\E90C";
}

.icons__reusable {
  display: flex;
  align-items: center;
  padding: 4px 0;
  font-family: courier;
  font-size: 1.6rem;
  font-weight: 600;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
.icons__reusable .icon {
  padding-right: 10px;
  font-size: 3.6rem;
  vertical-align: middle;
}
.icons__reusable span + span {
  cursor: pointer;
}
.icons__reusableWrap {
  -moz-column-count: 3;
       column-count: 3;
}

@media (min-width: 768px) {
  .showOnScroll {
    opacity: 0;
  }
  .showOnScroll--hidden {
    transform: translateY(100px);
  }
  .showOnScroll--hidden.showOnScroll--left {
    transform: translateX(-100px);
  }
  .showOnScroll--hidden.showOnScroll--right {
    transform: translateX(100px);
  }
  .showOnScroll--hidden.showOnScroll--circle {
    transform: scale(0);
  }
  .showOnScroll--active {
    transform: translateY(0);
    transition: transform 0.7s, opacity 1s;
    opacity: 1;
  }
  .showOnScroll--active.showOnScroll--left {
    transform: translateX(0);
  }
  .showOnScroll--active.showOnScroll--right {
    transform: translateX(0);
  }
  .showOnScroll--active.showOnScroll--circle {
    transform: scale(1);
  }
}

/**
 * Swiper 6.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 4, 2020
 */
@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;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * 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-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: 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-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.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%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}

@media (max-width: 599px) {
  #cc-window {
    right: 20px;
    bottom: 20px;
    left: 20px;
    width: calc(100vw - 40px);
    min-width: 0 !important;
    padding: 30px 25px !important;
  }
  #cc-window .cc-compliance {
    flex-direction: column;
    align-items: stretch;
  }
  #cc-window .cc-dismiss {
    margin-top: 10px;
    margin-left: 0;
  }
}

.button {
  display: inline-block;
  position: relative;
  padding: 0 40px;
  transition: color 0.3s, background-color 0.3s, opacity 0.3s;
  border-radius: 10px;
  background-color: #d3db2b;
  color: #083163;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.018rem;
  line-height: 50px !important;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
}
.button.active, .button:hover {
  background-color: #083163;
  color: #d3db2b;
}
.button:focus {
  outline: 3px solid #56f;
  outline-offset: 2px;
}
.button--secondary {
  background: #083163;
  color: #d3db2b;
}
.button--secondary:hover {
  background: #d3db2b;
  color: #083163;
}
.button--lightmode {
  background-color: #fff;
  color: #000;
}
.button--lightmode.active, .button--lightmode:hover {
  background-color: transparent;
  color: #fff;
}
.button--lightmode:focus {
  outline: 3px solid #ffbf47;
  outline-offset: 2px;
}
.button--white {
  background-color: #fff;
  color: #000;
}
.button--white.active, .button--white:hover {
  background-color: #083163;
  color: #fff;
}
.button--white.button--lightmode {
  background-color: transparent;
  color: #fff;
}
.button--white.button--lightmode.active, .button--white.button--lightmode:hover {
  background-color: #fff;
  color: #000;
}
.button--white.button--transparent {
  background-color: transparent;
}
.button--white.button--transparent.active, .button--white.button--transparent:hover {
  background-color: #000;
  color: #fff;
}
.button--thin {
  padding: 0 30px;
}
.button--circle {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  background-color: #d3db2b;
  color: #083163;
  font-size: 19px;
}
.button--circle:hover {
  background-color: #083163;
  color: #d3db2b;
}
.button--circle.disabled {
  background-color: rgba(0, 0, 0, 0.05);
  cursor: default;
}
.button--icon {
  width: 50px;
  height: 50px;
  padding: 0;
}
.button--icon-small {
  width: 25px;
  height: 25px;
}
.button--icon-extra-small {
  width: 23px;
  height: 23px;
}
.button.button--icon-copyright::after, .button.button--icon-search::after, .button.button--icon-share::after, .button.button--icon-plus::after, .button.button--icon-close::after, .button.button--icon-arrow-up::after, .button.button--icon-arrow-right::after, .button.button--icon-arrow-down::after, .button.button--icon-arrow-left::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 10px;
  line-height: 10px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  margin-left: -5px;
}
.button.button--icon-copyright.button--circle::after, .button.button--icon-search.button--circle::after, .button.button--icon-share.button--circle::after, .button.button--icon-plus.button--circle::after, .button.button--icon-close.button--circle::after, .button.button--icon-arrow-up.button--circle::after, .button.button--icon-arrow-right.button--circle::after, .button.button--icon-arrow-down.button--circle::after, .button.button--icon-arrow-left.button--circle::after {
  font-size: 19px;
  line-height: 19px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 19px;
  height: 19px;
  margin-top: -9.5px;
  margin-left: -9.5px;
}
.button.button--icon-copyright.button--icon::after, .button.button--icon-search.button--icon::after, .button.button--icon-share.button--icon::after, .button.button--icon-plus.button--icon::after, .button.button--icon-close.button--icon::after, .button.button--icon-arrow-up.button--icon::after, .button.button--icon-arrow-right.button--icon::after, .button.button--icon-arrow-down.button--icon::after, .button.button--icon-arrow-left.button--icon::after {
  font-size: 21px;
  line-height: 21px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 21px;
  height: 21px;
  margin-top: -10.5px;
  margin-left: -10.5px;
}
.button.button--icon-copyright.button--icon-small::after, .button.button--icon-search.button--icon-small::after, .button.button--icon-share.button--icon-small::after, .button.button--icon-plus.button--icon-small::after, .button.button--icon-close.button--icon-small::after, .button.button--icon-arrow-up.button--icon-small::after, .button.button--icon-arrow-right.button--icon-small::after, .button.button--icon-arrow-down.button--icon-small::after, .button.button--icon-arrow-left.button--icon-small::after {
  font-size: 15px;
  line-height: 15px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  margin-top: -7.5px;
  margin-left: -7.5px;
}
.button.button--icon-copyright.button--icon-extra-small::after, .button.button--icon-search.button--icon-extra-small::after, .button.button--icon-share.button--icon-extra-small::after, .button.button--icon-plus.button--icon-extra-small::after, .button.button--icon-close.button--icon-extra-small::after, .button.button--icon-arrow-up.button--icon-extra-small::after, .button.button--icon-arrow-right.button--icon-extra-small::after, .button.button--icon-arrow-down.button--icon-extra-small::after, .button.button--icon-arrow-left.button--icon-extra-small::after {
  font-size: 12px;
  line-height: 12px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  margin-left: -6px;
}
.button.button--icon-search::after {
  content: "\E918";
}
.button.button--icon-share::after {
  content: "\E90F";
}
.button.button--icon-plus::after {
  content: "\E904";
}
.button.button--icon-close::after {
  content: "\E907";
}
.button.button--icon-arrow-up::after {
  content: "\E909";
}
.button.button--icon-arrow-right::after {
  content: "\E90A";
}
.button.button--icon-arrow-down::after {
  content: "\E90C";
}
.button.button--icon-arrow-left::after {
  content: "\E90B";
}
.button--dotMini {
  position: relative;
  width: 18px;
  height: 18px;
  margin: 0 3px;
  padding: 0;
  background-color: transparent;
}
.button--dotMini::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s;
  border: 2px solid #083163;
  border-radius: 50%;
  background-color: transparent;
  content: "";
  box-sizing: border-box;
}
.button--dotMini.active, .button--dotMini:hover {
  background-color: #083163;
}
.button--dotMini.active::after, .button--dotMini:hover::after {
  background-color: #083163;
}
.button--dotMini.button--lightmode::after {
  background-color: #fff;
}
.button--dotMini.button--lightmode.active::after, .button--dotMini.button--lightmode:hover::after {
  background-color: transparent;
}
.button--close {
  background: transparent;
  color: #000;
}
.button.button--icon-close:after {
  font-size: 15px;
}
.button--yellow {
  background-color: #083163;
  color: #d3db2b;
}
.button--yellow.active, .button--yellow:hover {
  background-color: #d3db2b;
  color: #083163;
}

.buttonLink {
  display: inline-block;
  position: relative;
  height: 52px;
  padding: 0 40px 0 20px;
  transition: background-color 0.2s ease-in, color 0.2s ease-in;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 1.4px;
  line-height: 52px;
  text-transform: uppercase;
  white-space: nowrap;
}
.buttonLink:hover {
  color: #fff;
}
.buttonLink::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 12px;
  line-height: 12px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  margin-left: -6px;
  right: 20px;
  left: auto;
  margin-top: -7px;
  content: "-->>";
}
.body__background--blue .buttonLink--product {
  border: 1px solid #fff;
  color: #fff;
}
.body__background--blue .buttonLink--product:hover {
  background-color: #fff;
  color: #083163;
}

.body__background--blue .buttonLink--redInverted {
  border: 1px solid #083163;
  background-color: #083163;
  color: #fff;
}
.body__background--blue .buttonLink--redInverted:hover {
  background-color: #fff;
  color: #083163;
}

@media (max-width: 479px) {
  .buttonLink--redInverted {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 70vw;
    height: 52px;
    margin: 0 auto;
    line-height: initial;
    white-space: normal;
  }
}
@media (max-width: 359px) {
  .buttonLink--redInverted {
    height: 90px;
  }
}
.body__background--blue .buttonLink--gray {
  border: 1px solid #979797;
  color: #979797;
}
.body__background--blue .buttonLink--gray:hover {
  background-color: #979797;
  color: #fff;
}

.body__background--blue .buttonLink--white {
  border: 1px solid #fff;
  color: #fff;
}
.body__background--blue .buttonLink--white:hover {
  background-color: #fff;
  color: #083163;
}
.body__background--blue .buttonLink--whiteHover:hover {
  background-color: #fff;
  color: #083163;
}
.buttonLink--topMargin {
  margin-top: 60px;
}

.buttonScrollTop {
  position: fixed;
  bottom: 100px;
  left: 0;
  width: 100%;
  height: 1px;
  transition: opacity 0.3s, transform 0.3s;
  opacity: 0;
  z-index: 98;
  pointer-events: none;
}
.buttonScrollTop:focus, .buttonScrollTop--show {
  opacity: 1;
  pointer-events: all;
}
.buttonScrollTop--hidden {
  transform: translateY(100px);
}
@media (max-width: 767px) {
  .buttonScrollTop {
    bottom: 100px;
  }
}
.buttonScrollTop__wrapper {
  position: relative;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 30px;
}
.buttonScrollTop__link {
  display: inline-block;
  position: absolute;
  top: -20px;
  right: 20px;
  width: 41px;
  height: 41px;
  transition: background-color 0.2s ease-in, color 0.2s ease-in;
  border-radius: 50%;
  background-color: #083163;
  color: #fff;
}
.buttonScrollTop__link:focus {
  outline: 3px solid #ffbf47;
  outline-offset: 2px;
}
.buttonScrollTop__link::before {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 12px;
  line-height: 12px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  margin-left: -6px;
  content: "\E909";
}
.buttonScrollTop__link:hover {
  background-color: #d3db2b;
  color: #083163;
}
.buttonScrollTop__link:hover::before {
  animation: upAndDown 1s ease-in infinite;
}

.hamburger {
  display: flex;
  margin: 0;
  padding: 0;
  background: none;
}
.hamburger:focus {
  outline: 3px solid #56f;
  outline-offset: 2px;
}
.header--white .hamburger:focus {
  outline-color: #ffbf47;
}
.hamburger__inner {
  display: inline-block;
  position: relative;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
@media (max-width: 479px) {
  .hamburger__inner {
    width: 25px;
  }
}
.hamburger__lines {
  display: block;
  position: absolute;
  top: 50%;
  width: 18px;
  height: 2px;
  margin-top: -1px;
  transition: transform 0.3s ease;
  border-radius: 0;
}
.hamburger.active .hamburger__lines {
  transform: rotate(45deg);
  transition-delay: 0.1s;
}
.hamburger__lines::before, .hamburger__lines::after {
  display: block;
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 0;
  background-color: #000;
  content: "";
}
.hamburger__lines::before {
  top: -6px;
  transition: top 0.3s ease 0.1s, opacity 0.3s ease;
}
.hamburger.active .hamburger__lines::before {
  top: 0;
  transition: top 0.3s ease, opacity 0.3s ease 0.1s;
  opacity: 0;
}
.hamburger__lines::after {
  bottom: -6px;
  transition: bottom 0.3s ease 0.1s, transform 0.3s ease;
}
.hamburger.active .hamburger__lines::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.3s ease, transform 0.3s ease 0.1s;
}
@media (max-width: 479px) {
  .hamburger__lines {
    width: 25px;
  }
  .hamburger__lines::before, .hamburger__lines::after {
    width: 25px;
  }
  .hamburger__lines:before {
    top: -8px;
  }
  .hamburger__lines:after {
    bottom: -8px;
  }
}
.hamburger__lines--black {
  background-color: #000;
}
.hamburger__lines--black::before, .hamburger__lines--black::after {
  background-color: #000;
}
.hamburger__lines--primary {
  background-color: #083163;
}
.hamburger__lines--primary::before, .hamburger__lines--primary::after {
  background-color: #083163;
}
.hamburger__lines--white {
  background-color: #fff;
}
.hamburger__lines--white::before, .hamburger__lines--white::after {
  background-color: #fff;
}

.heading {
  color: #083163;
}
.heading__h1 {
  font-size: 4.6rem;
  font-weight: 400;
}
.heading__h2 {
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .heading__h2 {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
}
.heading__h3 {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.01rem;
  line-height: 1.5;
}
.heading__h4 {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.007rem;
  line-height: 1.44;
}
.heading--green {
  color: #083163;
}
.heading__reusable {
  margin: 40px 0 25px;
  padding-top: 20px;
  border-top: 1px solid #979797;
  font-family: courier;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
}

.link {
  display: inline-block;
  position: relative;
  padding-right: 18px;
  transition: color 0.3s;
  color: #083163;
  font-size: 1.6rem;
  font-weight: 500;
}
.link::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  font-size: 8px;
  line-height: 8px;
  text-align: right;
  transition: transform 0.3s;
  content: "\E90A";
}
.link:hover {
  color: rgba(8, 49, 99, 0.8);
}
.link:hover::after {
  transform: translateX(3px);
}
html[dir=rtl] .link {
  padding-right: 0;
  padding-left: 18px;
}
html[dir=rtl] .link::after {
  right: auto;
  left: 0;
  content: "\E90B";
}
html[dir=rtl] .link:hover::after {
  transform: translateX(-3px);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 100vh;
  z-index: 99;
}
.modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transition: opacity 0.3s ease 0.3s;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  z-index: 9;
  pointer-events: none;
}
.modal__backdrop.active {
  transition: opacity 0.3s ease 0s;
  opacity: 1;
  pointer-events: auto;
}
.modal__close {
  display: flex;
  position: absolute;
  top: 25px;
  right: 25px;
  align-items: center;
  height: 32px;
  z-index: 1;
}
.modal__close:focus {
  outline: 3px solid #ffbf47;
  outline-offset: 2px;
}
@media (max-width: 479px) {
  .modal__close {
    top: 20px;
    right: 20px;
  }
}
.modal__close--black {
  background-color: #000;
}
.modal__close--black::after {
  color: #fff;
}
.modal__close--black:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 50px;
  font-family: "DINProDRVp", Tahoma, Arial;
}
.pagination__paginationPages {
  display: flex;
  margin: 0 25px;
  padding: 0;
  list-style: none;
}
.pagination__paginationPage {
  display: flex;
  align-items: center;
}
.pagination__paginationPage:not(:last-child) {
  margin-right: 25px;
}
.pagination__paginationPage--active {
  color: #083163;
  font-size: 2.2rem;
  font-weight: 700;
  text-decoration: underline;
}
.pagination__paginationPage a {
  transition: color 0.3s;
  color: rgba(8, 49, 99, 0.6);
  font-size: 2.2rem;
  font-weight: 700;
}
.pagination__paginationPage a:hover {
  color: #083163;
}
.pagination__paginationPage a:focus {
  outline: 3px solid #56f;
  outline-offset: 2px;
}
.pagination__paginationButton {
  background: #083163;
  color: #d3db2b;
}
.pagination__paginationButton:hover {
  background: #d3db2b;
  color: #083163;
}
.pagination__paginationButton[tabindex="-1"] {
  color: #fff;
  opacity: 0.3;
  pointer-events: none;
}

.input__container {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 16px;
}
.input__container:last-child {
  margin-bottom: 0;
}
html[dir=rtl] .input__container {
  text-align: right;
}
.input__container--error {
  border: 1px solid #083163;
}
.input__container--mini {
  margin-bottom: 0;
}
.input__container--captcha {
  display: flex;
  align-items: center;
}
.input__container--iconRight {
  width: auto;
  margin-right: 78px;
}
.input__container--iconCalendar::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 45px;
  line-height: 45px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  margin-top: -22.5px;
  margin-left: -22.5px;
  right: -78px;
  left: auto;
  color: #083163;
  content: "calendar";
}
.input__container input {
  width: 100%;
  height: 58px;
  padding: 0 24px;
  transition: border-color 0.3s ease-in;
  border: 1px solid transparent;
  border-radius: 5px;
  color: #083163;
  font-size: 1.6rem;
  line-height: 58px;
}
.input__container:hover input {
  border: 1px solid rgba(8, 49, 99, 0.33);
}

.input__container:focus input {
  border: 1px solid rgba(8, 49, 99, 0.33);
}

.input__container input[type=file] {
  padding: 18px 24px;
  background-color: transparent;
  line-height: 26px;
}
@media (max-width: 479px) {
  .input__container input[type=file] {
    padding: 12px 24px;
  }
}
@media (max-width: 359px) {
  .input__container input[type=file] {
    padding: 9px 24px;
  }
}
.input__container input::-moz-placeholder {
  color: #979797;
}
.input__container input::placeholder {
  color: #979797;
}
.input__container input:-webkit-autofill {
  box-shadow: 0 0 0 60px #fff inset;
}
@media (max-width: 479px) {
  .input__container input {
    height: 50px;
    font-size: 1.6rem;
    line-height: 64px;
  }
}
@media (max-width: 359px) {
  .input__container input {
    height: 44px;
    padding: 0 25px;
    font-size: 1.4rem;
    line-height: 44px;
  }
}
.input__container input.input--mini {
  height: 28px;
  padding: 0 8px;
  border-radius: 3px;
  font-size: 1.5rem;
  line-height: 1.5rem;
}
.input__container input.input--noRightRadius {
  border-right-width: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input__container--withIcon {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.input__container--withIcon input {
  padding: 0 22px;
}
.input__container--slim {
  height: 76px;
  margin-bottom: 22px;
}
.input__container--slim input {
  height: 74px;
  font-size: 1.6rem;
  line-height: 74px;
}
@media (max-width: 1365px) {
  .input__container--slim {
    height: 46px;
  }
  .input__container--slim input {
    height: 44px;
    font-size: 1.6rem;
    line-height: 44px;
  }
}
@media (max-width: 359px) {
  .input__container--slim {
    height: 32px;
    margin-bottom: 5px;
  }
  .input__container--slim input {
    height: 30px;
    font-size: 1.4rem;
    line-height: 30px;
  }
}
.input__text {
  display: inline-block;
  padding-bottom: 10px;
  color: #083163;
  font-size: 1.4rem;
}
.input__error {
  display: inline-block;
  max-height: 20px;
  margin-top: 6px;
  transition: max-height 0.3s;
  color: #083163;
  font-size: 1.4rem;
  overflow: hidden;
}
.input__error--hidden {
  max-height: 0;
}
.input__error--center:not(.input__error--hidden) {
  width: 100%;
  max-height: initial;
  margin: 10px auto;
  text-align: center;
}
.input__icon {
  padding-left: 42px;
  color: #979797;
  font-size: 2rem;
}
@media (max-width: 359px) {
  .input__icon {
    padding-left: 16px;
  }
}

.checkbox {
  display: flex;
  position: relative;
  align-items: center;
  margin-bottom: 18px;
  font-size: 22px;
  cursor: pointer;
}
.checkbox:hover input ~ .checkbox__checkmark {
  border-color: transparent;
  background-color: rgba(255, 255, 255, 0.4);
}
.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  cursor: pointer;
  opacity: 0;
}
.checkbox__input:checked ~ .checkbox__checkmark {
  border-color: transparent;
  background-color: rgba(255, 255, 255, 0.4);
}
.checkbox__input:checked ~ .checkbox__checkmark:after {
  display: block;
}
.checkbox__checkmark {
  position: relative;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  transition: border-color 0.3s, background-color 0.3s;
  border: 2px solid #fff;
}
.checkbox__checkmark:after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 13px;
  line-height: 13px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 12px;
  margin-top: -6px;
  margin-left: -6.5px;
  display: none;
  color: #000;
  font-size: 1.1rem;
  content: "\E917";
}
.checkbox__label {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.429;
  cursor: pointer;
}

.radio__container {
  display: block;
  position: relative;
  font-size: 22px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.radio__container:hover input ~ .checkmark {
  background-color: #979797;
}
.radio__container input {
  position: absolute;
  cursor: pointer;
  opacity: 0;
}
.radio__container input:checked ~ .radio__checkmarkWrapper {
  border: 2px solid #083163;
}
.radio__container--standard {
  height: 26px;
  padding-right: 30px;
  padding-left: 36px;
}
.radio__radioGroupWrapper.radio__radioGroupWrapper--column .radio__container--standard {
  height: 40px;
}
html[dir=rtl] .radio__container--standard {
  padding-right: 36px;
  padding-left: 30px;
}
.radio__container--standard input:checked ~ .radio__checkmarkWrapper {
  border: 2px solid transparent;
  color: #083163;
}
.radio__container--standard input:checked ~ .radio__checkmarkWrapper .radio__button::after {
  opacity: 1;
}
.radio__container--compact {
  padding-right: 20px;
  padding-left: 30px;
}
.radio__container--icons {
  position: relative;
  height: 26px;
  padding-right: 20px;
  padding-left: 20px;
}
.radio__container--icons:first-child {
  padding-left: 0;
}
.radio__container--icons:last-child {
  padding-right: 0;
}
.radio__container--icons::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #979797;
  content: "";
}
@media (max-width: 359px) {
  .radio__container--icons {
    padding-right: 10px;
    padding-left: 10px;
  }
}
html[dir=rtl] .radio__container--icons:first-child {
  padding-right: 0;
  padding-left: 20px;
}
html[dir=rtl] .radio__container--icons:last-child {
  padding-right: 20px;
  padding-left: 0;
}
html[dir=rtl] .radio__container--icons::before {
  right: 0;
  left: auto;
}
.radio__container--icons input:checked ~ .radio__checkmarkWrapper {
  border: 2px solid transparent;
  color: #083163;
}
.radio__container--icons input:checked ~ .radio__checkmarkWrapper .radio__icon {
  transform: scale(1.3);
  background-color: #083163;
  color: #083163;
}
.radio__container--icons input:checked ~ .radio__checkmarkWrapper .radio__text {
  color: #083163;
}
.radio__checkmark {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.radio__checkmark::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 52px;
  line-height: 52px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  margin-top: -26px;
  margin-left: -26px;
  color: #083163;
  content: "";
}
@media (max-width: 1023px) {
  .radio__checkmark::after {
    font-size: 52px;
    line-height: 52px;
    text-align: center;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 52px;
    height: 52px;
    margin-top: -26px;
    margin-left: -26px;
    left: 76px;
  }
}
@media (max-width: 479px) {
  .radio__checkmark {
    padding-left: 110px;
  }
  .radio__checkmark::after {
    font-size: 70px;
    line-height: 70px;
    text-align: center;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    margin-top: -35px;
    margin-left: -35px;
    left: 50px;
  }
}
@media (max-width: 359px) {
  .radio__checkmark {
    padding-right: 10px;
    padding-left: 90px;
  }
  .radio__checkmark::after {
    font-size: 60px;
    line-height: 60px;
    text-align: center;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin-top: -30px;
    margin-left: -30px;
    left: 46px;
  }
}
.radio__checkmark--yes:after {
  content: "yes";
}
.radio__checkmark--no:after {
  content: "no";
}
.radio__radioGroupWrapper {
  display: flex;
  padding: 16px 0 0;
}
.radio__radioGroupWrapper--column {
  flex-direction: column;
}
.radio__container.radio__container--standard .radio__button::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 26px;
  height: 26px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #fff;
  content: "";
}
.radio__container.radio__container--standard .radio__button::after {
  position: absolute;
  top: 50%;
  left: 8px;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  transition: opacity 0.3s;
  border-radius: 50%;
  background: #083163;
  content: "";
  opacity: 0;
}
html[dir=rtl] .radio__container.radio__container--standard .radio__button::before {
  right: 0;
  left: auto;
}
html[dir=rtl] .radio__container.radio__container--standard .radio__button::after {
  right: 8px;
  left: auto;
}
.radio__container.radio__container--icons .radio__button::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 26px;
  height: 26px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #fff;
  content: "";
}
.radio__container.radio__container--icons .radio__button::after {
  position: absolute;
  top: 50%;
  left: 8px;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  transition: opacity 0.3s;
  border-radius: 50%;
  background: #083163;
  content: "";
  opacity: 0;
}
.radio__checkmarkWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: border-color 0.3s, color 0.3s;
  border: 2px solid #fff;
  border-radius: 5px;
  background-color: #fff;
  font-size: 2rem;
  font-weight: 600;
}
.radio__checkmarkWrapper:hover {
  border: 2px solid #083163;
}
.radio__radioGroupWrapper.radio__radioGroupWrapper--column .radio__checkmarkWrapper {
  align-items: flex-start;
}
.radio__container.radio__container--standard .radio__checkmarkWrapper {
  border: 2px solid transparent;
  background-color: transparent;
  font-size: 1.4rem;
}
.radio__container.radio__container--icons .radio__checkmarkWrapper {
  position: relative;
  width: 34px;
  border: 2px solid transparent;
  background-color: transparent;
  font-size: 1.4rem;
  z-index: 1;
}
@media (max-width: 1279px) {
  .radio__checkmarkWrapper {
    font-size: 1.8rem;
  }
}
@media (max-width: 1023px) {
  .radio__checkmarkWrapper {
    font-size: 1.6rem;
  }
}
@media (max-width: 359px) {
  .radio__checkmarkWrapper {
    font-size: 1.4rem;
  }
}
.radio__icon {
  transition: color 0.3s;
  color: #083163;
}
.radio__container:hover .radio__icon {
  color: #083163;
}
.radio__container.active .radio__icon {
  color: #083163;
}
input:checked + span .radio__icon {
  color: #083163;
}
.radio__container.radio__container--icons .radio__icon {
  transition: transform 0.3s, background-color 0.3s, color 0.3s;
  border-radius: 50%;
  background-color: #979797;
  font-size: 34px;
}
.radio__container.radio__container--icons .radio__icon:hover {
  transform: scale(1.3);
}
.radio__text {
  transition: color 0.3s;
  color: #083163;
  font-weight: 400;
}
.radio__container.radio__container--standard .radio__text:hover {
  color: #083163;
}
.radio__container.radio__container--icons .radio__text {
  position: absolute;
  top: 44px;
  transition: color 0.3s;
  color: transparent;
  white-space: nowrap;
}
.radio__container.radio__container--icons .radio__text:hover {
  color: #083163;
}
.radio__container:hover .radio__text {
  color: #083163;
}
.radio__container.active .radio__text {
  color: #083163;
}

.textarea__container {
  display: block;
  position: relative;
  margin-bottom: 32px;
  font-size: 22px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
html[dir=rtl] .textarea__container {
  text-align: right;
}
.textarea__container--nomargin {
  margin-bottom: 0;
}
.textarea__container textarea {
  width: 100%;
  min-height: 130px;
  padding: 12px 24px;
  transition: border-color 0.3s ease-in;
  border: 1px solid rgba(8, 49, 99, 0.12);
  border-radius: 5px;
  font-size: 1.8rem;
}
.textarea__container textarea::-moz-placeholder {
  color: #979797;
}
.textarea__container textarea::placeholder {
  color: #979797;
}
.textarea__container textarea:hover {
  border: 1px solid #083163;
}
@media (max-width: 1365px) {
  .textarea__container textarea {
    min-height: 114px;
    padding: 18px 45px;
  }
}
@media (max-width: 1023px) {
  .textarea__container textarea {
    font-size: 1.6rem;
    line-height: 1.8rem;
  }
}
@media (max-width: 479px) {
  .textarea__container textarea {
    min-height: 82px;
    padding: 16px 20px;
    font-size: 1.4rem;
    line-height: 1.6rem;
  }
}
@media (max-width: 359px) {
  .textarea__container textarea {
    min-height: 72px;
    padding: 12px 20px;
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
}
.textarea__subLabel {
  position: absolute;
  top: 136px;
  right: 0;
  left: 0;
  color: #979797;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.1rem;
  text-align: center;
}

html,
body {
  margin: 0;
  padding: 0;
  border: 0;
  background-color: #fff;
  color: #000;
  font-family: "DINProDRVp", Tahoma, Arial;
  font-size: 1.8rem;
  font-size-adjust: 100%;
  overflow-x: hidden;
}

html {
  font-size: 62.5%;
}

button,
select,
textarea,
input {
  font-family: "DINProDRVp", Tahoma, Arial;
}

*:focus {
  outline: none;
  box-shadow: none;
}

*::-moz-focus-inner {
  border: 0;
}

*::-moz-placeholder {
  opacity: 1;
}

*::placeholder {
  opacity: 1;
}

*::-moz-selection {
  background-color: #000;
  color: #fff;
}

*::selection {
  background-color: #000;
  color: #fff;
}

input,
textarea {
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=checkbox] {
  -webkit-appearance: checkbox;
     -moz-appearance: checkbox;
          appearance: checkbox;
}
input[type=radio] {
  -webkit-appearance: radio;
     -moz-appearance: radio;
          appearance: radio;
}
input[disabled=disabled], input[disabled], input:disabled {
  opacity: 1;
}

select {
  border-radius: 0;
  text-indent: 0.01px;
  text-overflow: "";
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
select::-ms-expand {
  display: none;
}

a {
  text-decoration: none;
}

button {
  border: 0;
}

.wrapper {
  position: relative;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 30px;
}
.wrapper--fill {
  height: 100%;
}
.wrapper--thin {
  max-width: 1380px;
}
.wrapper--full {
  max-width: 1380px;
  padding: 0;
}
@media (max-width: 767px) {
  .wrapper {
    padding: 0 15px;
  }
}

.container {
  width: 100%;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0;
  padding-left: 0;
}
.container--overflowHidden {
  overflow: hidden;
}
.container--wide {
  max-width: 1510px;
}
.container--medium {
  max-width: 1320px;
}
.container--medium-small {
  max-width: 930px;
}
.container--small {
  max-width: 880px;
}
.container--extrasmall {
  max-width: 765px;
}
.container__inner {
  position: relative;
  width: 100%;
  padding-right: 60px;
  padding-left: 60px;
}
@media (max-width: 1279px) {
  .container__inner {
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media (max-width: 1023px) {
  .container__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.container__inner--nopadding {
  padding: 0;
}

.padding-0 {
  padding: 0px;
}
.padding-0-l {
  padding-left: 0px;
}
.padding-0-r {
  padding-right: 0px;
}
.padding-0-t {
  padding-top: 0px;
}
.padding-0-b {
  padding-bottom: 0px;
}
.padding-1 {
  padding: 10px;
}
.padding-1-l {
  padding-left: 10px;
}
.padding-1-r {
  padding-right: 10px;
}
.padding-1-t {
  padding-top: 10px;
}
.padding-1-b {
  padding-bottom: 10px;
}
.padding-2 {
  padding: 20px;
}
.padding-2-l {
  padding-left: 20px;
}
.padding-2-r {
  padding-right: 20px;
}
.padding-2-t {
  padding-top: 20px;
}
.padding-2-b {
  padding-bottom: 20px;
}
.padding-3 {
  padding: 30px;
}
.padding-3-l {
  padding-left: 30px;
}
.padding-3-r {
  padding-right: 30px;
}
.padding-3-t {
  padding-top: 30px;
}
.padding-3-b {
  padding-bottom: 30px;
}
.padding-4 {
  padding: 40px;
}
.padding-4-l {
  padding-left: 40px;
}
.padding-4-r {
  padding-right: 40px;
}
.padding-4-t {
  padding-top: 40px;
}
.padding-4-b {
  padding-bottom: 40px;
}
.padding-5 {
  padding: 50px;
}
.padding-5-l {
  padding-left: 50px;
}
.padding-5-r {
  padding-right: 50px;
}
.padding-5-t {
  padding-top: 50px;
}
.padding-5-b {
  padding-bottom: 50px;
}

/*

Generates generic styles like:

padding-1 {
  padding: 10px;
}

.padding-1-l {
  padding-left: 10px;
}

.padding-1-r {
  padding-right: 10px;
}

.padding-1-t {
  padding-top: 10px;
}

.padding-1-t-neg {
  padding-top: -10px;
}

*/
.margin-0 {
  margin: 0px;
}
.margin-0-l {
  margin-left: 0px;
}
.margin-0-r {
  margin-right: 0px;
}
.margin-0-t {
  margin-top: 0px;
}
.margin-0-b {
  margin-bottom: 0px;
}
.margin-1 {
  margin: 10px;
}
.margin-1-l {
  margin-left: 10px;
}
.margin-1-r {
  margin-right: 10px;
}
.margin-1-t {
  margin-top: 10px;
}
.margin-1-t-neg {
  margin-top: -10px;
}
.margin-1-b {
  margin-bottom: 10px;
}
.margin-1-b-neg {
  margin-bottom: -10px;
}
.margin-2 {
  margin: 20px;
}
.margin-2-l {
  margin-left: 20px;
}
.margin-2-r {
  margin-right: 20px;
}
.margin-2-t {
  margin-top: 20px;
}
.margin-2-t-neg {
  margin-top: -20px;
}
.margin-2-b {
  margin-bottom: 20px;
}
.margin-2-b-neg {
  margin-bottom: -20px;
}
.margin-3 {
  margin: 30px;
}
.margin-3-l {
  margin-left: 30px;
}
.margin-3-r {
  margin-right: 30px;
}
.margin-3-t {
  margin-top: 30px;
}
.margin-3-t-neg {
  margin-top: -30px;
}
.margin-3-b {
  margin-bottom: 30px;
}
.margin-3-b-neg {
  margin-bottom: -30px;
}
.margin-4 {
  margin: 40px;
}
.margin-4-l {
  margin-left: 40px;
}
.margin-4-r {
  margin-right: 40px;
}
.margin-4-t {
  margin-top: 40px;
}
.margin-4-t-neg {
  margin-top: -40px;
}
.margin-4-b {
  margin-bottom: 40px;
}
.margin-4-b-neg {
  margin-bottom: -40px;
}
.margin-5 {
  margin: 50px;
}
.margin-5-l {
  margin-left: 50px;
}
.margin-5-r {
  margin-right: 50px;
}
.margin-5-t {
  margin-top: 50px;
}
.margin-5-t-neg {
  margin-top: -50px;
}
.margin-5-b {
  margin-bottom: 50px;
}
.margin-5-b-neg {
  margin-bottom: -50px;
}

/*

Generates generic styles like:

margin-1 {
  margin: 10px;
}

.margin-1-l {
  margin-left: 10px;
}

.margin-1-r {
  margin-right: 10px;
}

.margin-1-t {
  margin-top: 10px;
}

.margin-1-t-neg {
  margin-top: -10px;
}

*/
.sections {
  min-height: calc(100vh - 100px);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
  margin-top: 84px;
}
@media (max-width: 1023px) {
  .sections {
    min-height: calc(100vh - 77px - 100px);
    margin-top: 111px;
  }
}
@media (max-width: 767px) {
  .sections {
    min-height: calc(100vh - 77px - 100px);
  }
}
.sections--white {
  color: #fff;
}
.sections--black {
  color: #000;
}

.section--center {
  text-align: center;
}
.section--mt50 {
  margin-top: 50px;
}
.section--mt100 {
  margin-top: 100px;
}
.section--mb100 {
  margin-bottom: 100px;
}
.section--overflow {
  overflow-x: hidden;
}
@media (max-width: 479px) {
  .section--mt100 {
    margin-top: 60px;
  }
  .section--mb100 {
    margin-bottom: 60px;
  }
}
.section--lightGray {
  background-color: rgba(151, 151, 151, 0.05);
}

.textOutput h1,
.textOutput h2,
.textOutput h3,
.textOutput h4,
.textOutput h5,
.textOutput h6 {
  color: #083163;
  font-weight: 700;
}
.textOutput h1 {
  font-size: 3.4rem;
}
@media (max-width: 767px) {
  .textOutput h1 {
    font-size: 3rem;
  }
}
@media (max-width: 359px) {
  .textOutput h1 {
    font-size: 2.4rem;
  }
}
.textOutput h2 {
  font-size: 3.4rem;
}
@media (max-width: 767px) {
  .textOutput h2 {
    font-size: 3rem;
  }
}
@media (max-width: 359px) {
  .textOutput h2 {
    font-size: 2.4rem;
  }
}
.textOutput h3 {
  font-size: 3.4rem;
}
@media (max-width: 767px) {
  .textOutput h3 {
    font-size: 3rem;
  }
}
@media (max-width: 359px) {
  .textOutput h3 {
    font-size: 2.4rem;
  }
}
.textOutput h4 {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .textOutput h4 {
    font-size: 2.1rem;
  }
}
@media (max-width: 359px) {
  .textOutput h4 {
    font-size: 1.8rem;
  }
}
.textOutput h5 {
  font-size: 2.1rem;
}
@media (max-width: 767px) {
  .textOutput h5 {
    font-size: 1.8rem;
  }
}
@media (max-width: 359px) {
  .textOutput h5 {
    font-size: 1.8rem;
  }
}
.textOutput h2 {
  font-size: 2rem;
  line-height: 2.8rem;
}
@media (min-width: 768px) {
  .textOutput h2 {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
}
.textOutput a {
  color: #000;
  font-family: "DINProDRVp", Tahoma, Arial;
  text-decoration: underline;
}
.textOutput a:focus {
  outline: 3px solid #56f;
  outline-offset: 2px;
}
.sections--white .textOutput a:focus {
  outline-color: #ffbf47;
}
.textOutput p:first-child {
  margin-top: 0;
}
.textOutput strong {
  font-weight: 700;
}
.textOutput em {
  font-style: italic;
}
.textOutput ul {
  margin: 1em 0 0 10px;
  padding-left: 20px;
  list-style-type: disc;
}
.textOutput ul li {
  padding-left: 10px;
}
.textOutput ol {
  margin: 2.2em 0 2.2em 10px;
  counter-reset: ordered-list;
}
.textOutput ol li {
  position: relative;
  padding-left: 30px;
  counter-increment: ordered-list;
}
.textOutput ol li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #083163;
  font-weight: 400;
  content: counter(ordered-list) ".";
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  transition: margin-top 0.3s;
  background-color: #fff;
  z-index: 9;
}
.header--white {
  color: #fff;
}
.header--black {
  color: #000;
}
@media print {
  .header {
    position: absolute;
  }
}
.header--sticky.header--black .header__inner {
  background-color: #fff;
}
.header--sticky.header--white .header__inner {
  background-color: #000;
}
.header--sticky.header--primary .header__inner {
  background-color: #fff;
}
.header--sticky + .searchForm {
  position: fixed;
}
.header--stickyUp .header__inner {
  background-color: transparent;
}
.header--stickyUp.header--sticky.header--black .header__inner {
  background-color: #fff;
}
.header--stickyUp.header--sticky.header--white .header__inner {
  background-color: #000;
}
.header--hidden {
  margin-top: -84px;
}
.header__inner {
  position: relative;
  transition: background-color 0.3s;
  border-bottom: 2px solid rgba(8, 49, 99, 0.2);
  z-index: 6;
}
.header__head {
  display: block;
  border-bottom: 2px solid rgba(8, 49, 99, 0.2);
}
@media (min-width: 768px) {
  .header__head {
    display: none;
  }
}
.header__head .header__text {
  display: block;
  font-size: 1.2rem;
  line-height: 1.6rem;
  font-weight: 700;
}
.header__headInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.6rem;
}
.header__tools {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.header__sign::before, .header__read::before {
  color: #083163;
}
@media (hover: hover) {
  .header__sign:hover, .header__read:hover {
    cursor: pointer;
  }
}
.header__wrapper {
  display: flex;
  position: relative;
  align-items: flex-start;
  justify-content: space-between;
  height: 84px;
  max-height: 84px;
}
@media (max-width: 1023px) {
  .header__wrapper {
    height: 77px;
  }
}
.header--black .header__wrapper {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.header--white .header__wrapper {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.header__wrapperInner {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  transition: transform 0.3s;
  z-index: 1;
}
.header__text {
  display: none;
}
@media (min-width: 1024px) {
  .header__text {
    display: block;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.018rem;
  }
}

.header {
  /*   &__menu {
      margin-left: 70px;
      padding: 4px 0;
      float: left;

      @include rtl {
        margin-right: 70px;
        margin-left: 0;
        float: right;
      }

      @include rwd('laptop') {
        margin-left: 30px;
        padding: 8px 0 0;

        @include rtl {
          margin-right: 30px;
        }
      }

      @include rwd('phone') {
        margin-left: 20px;
      }
    }

    &__menuItems {
      @include clear;
      margin: 0 -20px;

      @include rwd('tablet') {
        pointer-events: none;
      }

      @include rwd('laptop') {
        display: block;
        position: absolute;
        width: 277px;
        margin-top: 36px;
        padding-top: 14px;
        padding-bottom: 10px;
        transform: translateY(50px);
        transition: transform $tr, opacity $tr, visibility $tr;
        border: 0;
        background-color: $c-white;
        opacity: 0;
        overflow: hidden;
        visibility: hidden;

        &.is-active {
          transform: translateY(0);
          border: 1px solid $c-gray;
          border-top: 1px solid transparent;
          opacity: 1;
          visibility: visible;
          pointer-events: initial;
        }

        @include parent('.header', '.header--sticky') {
          margin-top: 15px;

          @include rwd('large-phone') {
            max-height: calc(100vh - 60px);
            overflow-y: auto;
          }
        }
      }

      @include rwd('large-phone') {
        max-height: calc(100vh - 100px);
        overflow-y: auto;
      }

      @include rwd('phone') {
        left: 17px;
        width: calc(100vw - 34px);
        margin: 36px 0 0;
      }
    }

    &__menuItem {
      position: relative;
      float: left;
      font-size: 0;

      @include rtl {
        float: right;
      }

      @include rwd('laptop') {
        width: 100%;
      }

      &--hasSubmenu {
        &:after {
          // @include icomoon('arrow-small-down');
          display: block;
          position: absolute;
          top: calc(50% - 3px);
          right: 20px;
          transition: transform $tr;
          color: $c-cta;
          font-size: 6px;
          line-height: 1;

          @include rtl {
            top: 12px;
            right: initial;
            left: 20px;
          }
        }

        .is-active {
          &:after {
            transform: rotate(180deg);
          }
        }

        @include rwd('laptop') {
          &:after {
            top: 12px;
          }
        }
      }

      &--tabletAndDown {
        display: none;

        @include rwd('tablet') {
          display: block;
        }
      }
    }

    &__menuItemLink,
    &__menuSubmenuItemLink {
      display: inline-block;

      &:before,
      &:after {
        padding: 0 20px;
        color: $c-cta;
        font-size: 1.6rem;
        line-height: 2;

        @include parent('.header__menuItem', '.header__menuItem--hasSubmenu') {
          padding-right: 43px;

          @include rtl {
            padding-right: 20px;
            padding-left: 43px;
          }
        }
      }

      &:after {
        opacity: .5;
      }
    }

    &__menuItemLink {
      @include rwd('laptop') {
        width: 100%;
        z-index: 1;

        &:focus+.header__menuSubmenu {
          max-height: 500px;
          transform: translateY(0);
          opacity: 1;
          visibility: visible;
        }
      }
    }

    &__menuSubmenu {
      position: absolute;
      top: 100%;
      left: 20px;
      min-width: 160px;
      transform: translateY(50px);
      transition: opacity $tr, transform $tr, visibility $tr, border-top $tr;
      border-top: 34px solid transparent;
      opacity: 0;
      visibility: hidden;

      @include rtl {
        right: 20px;
        left: auto;
      }

      @include rwd('laptop') {
        transform: translateY(0);
        border-top: 1px solid transparent;
      }

      @include parent('.header', '.header--sticky') {
        border-top: 14px solid transparent;

        @include rwd('laptop') {
          border-top: 1px solid transparent;
        }
      }

      @include parent('.header__menuItem--hasSubmenu', '.is-active') {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;

        @include rwd('laptop') {
          opacity: 0;
        }
      }

      @include rwd('laptop') {
        position: relative;
        top: initial;
        left: initial;
        max-height: 0;
        transition: max-height $tr $tr, opacity $tr $tr;
        border-top: 0;
        overflow: hidden;
        visibility: visible;

        @include parent('.header__menuItem--hasSubmenu', '.is-active .header__menuItemLink:focus + ') {
          opacity: 1;
        }
      }
    }

    &__menuSubmenuItems {
      padding: 11px 15px;
      border-radius: 0 0 5px 5px;
      background-color: $c-white;
      box-shadow: 0 3px 6px rgba(0, 0, 0, .08);

      @include rwd('laptop') {
        padding-top: 0;
        padding-left: 30px;
        border-radius: 0;
        box-shadow: none;
      }
    }

    &__menuSubmenuItemLink {

      &:before,
      &:after {
        padding: 0 !important;
        font-size: 1.4rem;
        line-height: 2;
      }
    } */
}

main {
  transition: transform 0.5s;
  background-color: #fff;
}
main.hamburgerOn {
  transform: translateX(360px);
  transition: transform 0.5s;
}
html[dir=rtl] main.hamburgerOn {
  transform: translateX(-360px);
}

.footer {
  border-top: 2px solid #e1e6ec;
  background-color: #fff;
  position: relative;
  z-index: 3;
}
.footer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100px;
  padding: 31px 0;
}
@media (max-width: 767px) {
  .footer__container {
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
  }
}
.footer__textLine {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.667;
}
.footer__textLine strong {
  font-weight: 600;
}
@media (max-width: 767px) {
  .footer__textLine {
    text-align: center;
  }
}
.footer__links {
  display: flex;
}
@media (max-width: 767px) {
  .footer__links {
    margin-top: 24px;
  }
}
.footer__link {
  white-space: nowrap;
}
.footer__link:not(:first-child) {
  margin-left: 30px;
}
.footer__link a {
  color: #083163;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.018rem;
}
.footer__link a:focus {
  outline: 3px solid #56f;
  outline-offset: 2px;
}

.backToTop {
  position: fixed;
  right: clamp(12px, 3vw, 24px);
  bottom: clamp(12px, 3vw, 24px);
  z-index: 50;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  color: #ffffff;
  background-color: #2e517b;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease-out, transform 0.18s ease-out, box-shadow 0.18s ease-out, background-color 0.18s ease-out;
}
.backToTop:hover {
  background-color: #203855;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}
.backToTop__icon {
  display: block;
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
}

.backToTop--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 600px) {
  .backToTop {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}
.article {
  position: relative;
}
.article__container {
  max-width: 1200px;
}
.article__inner {
  display: flex;
}
.article__headers {
  display: none;
}
@media (min-width: 1024px) {
  .article__headers {
    display: block;
    width: 100%;
    max-width: 320px;
  }
}
.article__content {
  width: 100%;
}
.article__aside {
  float: right;
}
.article__headers {
  position: absolute;
  top: 0;
  left: 50%;
  max-width: 1320px;
  height: 0;
  transform: translateX(-50%);
  z-index: 1;
}
.article__headers.sticky {
  position: fixed;
}
.article__headers.sticky--absolute {
  position: fixed;
  top: unset;
  bottom: 240px;
}

.articleNext {
  padding: 63px 0 8px;
  background: rgba(211, 219, 43, 0.1);
}

.articleMenu {
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  flex-direction: column;
  width: 100%;
  max-width: 540px;
  padding: 50px 60px;
  transform: translateX(-540px);
  transition: transform 0.3s;
  background: #d3db2b;
  z-index: 9;
}
@media (max-width: 599px) {
  .articleMenu {
    padding: 27px 30px;
  }
}
.articleMenu.active {
  transform: translateX(0);
}
.articleMenu__main {
  height: 100%;
  overflow: hidden;
}
.articleMenu__wrapper {
  height: 100%;
  margin-right: -15px;
  padding: 0 20px;
  overflow-y: scroll;
}
.articleMenu__close {
  display: flex;
  align-items: center;
  align-self: flex-end;
  margin-bottom: 25px;
  font-size: 1.4rem;
  font-weight: 700;
}
.articleMenu__closeTitle {
  margin-right: 5px;
  transform: translateY(-2px);
}
.articleMenu__section {
  margin-bottom: 17px;
}
.articleMenu__category {
  position: relative;
  font-size: 1.4rem;
  font-weight: 700;
}
.articleMenu__category:after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
}
.articleMenu__category--info:after {
  content: "\E905";
}
.articleMenu__category--search:after {
  content: "\E918";
}
.articleMenu__category--link:after {
  content: "\E908";
}
.articleMenu__item {
  margin-top: 15px;
  font-size: 1.4rem;
  letter-spacing: 0.03rem;
  line-height: 2;
}
.articleMenu__itemLink {
  color: #083163;
}
.articleMenu__itemNumber {
  font-size: 0.8rem;
  vertical-align: super;
}

.magazinesList__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 597px;
  margin: 0 auto;
  padding: 72px 0;
  color: #083163;
  text-align: center;
}
.magazinesList__introImage {
  max-width: 70px;
  margin-bottom: 16px;
}
.magazinesList__introTitle {
  margin-bottom: 15px;
  font-size: 3.4rem;
  font-weight: 700;
}
.magazinesList__introText {
  padding: 0 10px;
  font-size: 1.6rem;
  letter-spacing: 0.022rem;
  line-height: 1.62;
}

.homeHeader {
  display: flex;
  position: relative;
  align-items: center;
  margin-top: 84px;
  padding: 67px 0;
  overflow-y: hidden;
}
@media (max-width: 767px) {
  .homeHeader {
    padding: 40px 0 50px;
  }
}
.homeHeader--overlay::before {
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  content: "";
  z-index: 2;
}
.homeHeader--darkFont {
  color: #000;
}
.homeHeader--lightFont {
  color: #fff;
}
.homeHeader__bg {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 599px) {
  .homeHeader__bg--hideMobile {
    display: none;
  }
}
.homeHeader__bg--mobile {
  display: none;
}
@media (max-width: 599px) {
  .homeHeader__bg--mobile {
    display: block;
  }
}
.homeHeader__content {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  z-index: 3;
}
@media (max-width: 767px) {
  .homeHeader__content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.homeHeader__number {
  font-size: 1.5rem;
  text-transform: uppercase;
}
.homeHeader__title {
  margin-right: 30px;
  color: #083163;
  font-size: 8rem;
  font-weight: 600;
}
.homeHeader__title strong {
  font-weight: 700;
}
.homeHeader__title--special {
  margin: 50px 0;
  line-height: 0.387;
}
@media (max-width: 1023px) {
  .homeHeader__title {
    font-size: 7rem;
  }
}
@media (max-width: 767px) {
  .homeHeader__title {
    margin: 0;
    font-size: 4rem;
  }
}
.homeHeader__description {
  max-width: 641px;
  color: #083163;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.022rem;
  line-height: 1.63;
  text-align: left;
}
@media (max-width: 767px) {
  .homeHeader__description {
    margin-top: 20px;
  }
}

.heroBanner {
  position: relative;
}
.heroBanner--lightFont .heroBanner__brand,
.heroBanner--lightFont .heroBanner__title,
.heroBanner--lightFont .heroBanner__intro,
.heroBanner--lightFont .heroBanner__cta,
.heroBanner--lightFont .heroBanner__lesezeit {
  color: #fff;
}
.heroBanner--darkFont .heroBanner__brand,
.heroBanner--darkFont .heroBanner__title,
.heroBanner--darkFont .heroBanner__intro,
.heroBanner--darkFont .heroBanner__cta,
.heroBanner--darkFont .heroBanner__lesezeit {
  color: #000;
}
@media (max-width: 599px) {
  .heroBanner--footer .heroBanner__inner {
    height: 656px;
  }
  .heroBanner--footer .heroBanner__header {
    height: auto;
  }
}
.heroBanner--introBelow {
  padding-top: 0;
  background: none;
}
.heroBanner--introBelow .heroBanner__inner {
  max-width: none;
  height: auto;
}
.heroBanner--introBelow .heroBanner__header {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 716px;
  margin-bottom: 75px;
  padding-bottom: 100px;
}
@media (max-width: 599px) {
  .heroBanner--introBelow .heroBanner__header {
    height: 656px;
    margin-bottom: 25px;
    padding-bottom: 50px;
  }
}
.heroBanner--introBelow .heroBanner__brand,
.heroBanner--introBelow .heroBanner__title,
.heroBanner--introBelow .heroBanner__intro {
  position: relative;
  max-width: 670px;
  margin: 0 auto;
  z-index: 1;
}
.heroBanner--introBelow .heroBanner__title {
  margin-top: 25px;
}
.heroBanner--introBelow.heroBanner--backDark .heroBanner__intro,
.heroBanner--introBelow.heroBanner--backDark .heroBanner__cta,
.heroBanner--introBelow.heroBanner--backDark .heroBanner__lesezeit {
  color: #fff;
}
.heroBanner--introBelow.heroBanner--backLight .heroBanner__intro,
.heroBanner--introBelow.heroBanner--backLight .heroBanner__cta,
.heroBanner--introBelow.heroBanner--backLight .heroBanner__lesezeit {
  color: #000;
}
.heroBanner--overlay::before {
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  content: "";
}
@media (max-width: 599px) {
  .heroBanner--overlay::before:not(.heroBanner--overlay::before--footer) {
    height: 637px;
  }
}
.heroBanner--compact {
  padding-top: calc(84px + 75px);
}
.heroBanner--compact .heroBanner__inner {
  height: auto;
}
.heroBanner__inner {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}
.heroBanner__inner--footer {
  height: 540px;
}
@media (max-width: 599px) {
  .heroBanner__inner {
    height: auto;
  }
  .heroBanner--compact .heroBanner__inner {
    height: auto;
    padding-top: calc(84px + 75px);
  }
}
.heroBanner__brand {
  font-size: 1.5rem;
  text-transform: uppercase;
}
.heroBanner__header {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 599px) {
  .heroBanner__header {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: flex-end;
    height: 637px;
    padding-bottom: 50px;
  }
  .heroBanner--compact .heroBanner__header {
    height: auto;
    padding-bottom: 0;
  }
}
.heroBanner__header--overlay::before {
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  content: "";
}
.heroBanner__title {
  margin-top: 25px;
  font-size: 6.5rem;
  letter-spacing: 0.05rem;
  line-height: 1.0307692308;
}
@media (max-width: 599px) {
  .heroBanner__title {
    font-size: 4.5rem;
  }
}
.heroBanner__title strong {
  font-weight: 600;
}
.heroBanner__intro {
  padding-top: 25px;
  font-size: 2.4rem;
  letter-spacing: 0.02rem;
  line-height: 1.3333333333;
}
@media (max-width: 599px) {
  .heroBanner__intro {
    padding-top: 50px;
  }
}
.heroBanner__ctaWrapper {
  margin-top: 150px;
}
.heroBanner__cta {
  margin-top: 13px;
  font-family: "DINProDRVp", Tahoma, Arial;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.03rem;
  line-height: 1.4;
}
.heroBanner__lesezeit {
  margin-top: 40px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.03rem;
  line-height: 1.4;
}
.heroBanner__brand, .heroBanner__title, .heroBanner__intro, .heroBanner__lesezeit, .heroBanner__cta {
  padding-right: 20px;
  padding-left: 20px;
}
@media (max-width: 599px) {
  .heroBanner.heroBanner--backLight .heroBanner__intro, .heroBanner.heroBanner--backLight .heroBanner__lesezeit, .heroBanner.heroBanner--backLight .heroBanner__cta {
    color: #000;
  }
  .heroBanner.heroBanner--backLight .heroBanner__intro, .heroBanner.heroBanner--backLight .heroBanner__lesezeit, .heroBanner.heroBanner--backLight .heroBanner__cta {
    color: #000;
  }
  .heroBanner.heroBanner--backLight .heroBanner__intro, .heroBanner.heroBanner--backLight .heroBanner__lesezeit, .heroBanner.heroBanner--backLight .heroBanner__cta {
    color: #000;
  }
  .heroBanner.heroBanner--backDark .heroBanner__intro, .heroBanner.heroBanner--backDark .heroBanner__lesezeit, .heroBanner.heroBanner--backDark .heroBanner__cta {
    color: #fff;
  }
  .heroBanner.heroBanner--backDark .heroBanner__intro, .heroBanner.heroBanner--backDark .heroBanner__lesezeit, .heroBanner.heroBanner--backDark .heroBanner__cta {
    color: #fff;
  }
  .heroBanner.heroBanner--backDark .heroBanner__intro, .heroBanner.heroBanner--backDark .heroBanner__lesezeit, .heroBanner.heroBanner--backDark .heroBanner__cta {
    color: #fff;
  }
}
.heroBanner--white {
  background-color: #fff;
}
.heroBanner--blue {
  background-color: #BCC8DA;
}
.heroBanner--yellow {
  background-color: #F4E99E;
}
.heroBanner--grey {
  background-color: #ECECED;
}

.editionsSwiper {
  width: 100%;
  height: 197px;
  margin-top: 60px;
  overflow: visible;
}
.editionsSwiper__wrapper--centered {
  justify-content: center;
}
.editionsSwiper__slide {
  position: relative;
  width: 96px;
  margin: 0 10px 0 28px;
  padding: 24px 0 20px;
  cursor: pointer;
  box-sizing: border-box;
}
.editionsSwiper__slide:last-child {
  margin-right: 28px;
}
.editionsSwiper__slide::after {
  display: block;
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -12px) rotate(45deg);
  transition: transform 0.3s;
  background-color: #fff;
  content: "";
  z-index: 100;
}
.editionsSwiper__slide--active .editionsSwiper__cover {
  opacity: 1;
}
.editionsSwiper__slide--active::after {
  transform: translate(-50%, 0) rotate(45deg);
}
.editionsSwiper__slide:focus .editionsSwiper__cover, .editionsSwiper__slide:hover .editionsSwiper__cover {
  opacity: 1;
}
.editionsSwiper__slide:focus .editionsSwiper__cover {
  outline: 3px solid #56f;
  outline-offset: 2px;
}
.editionsSwiper__cover {
  width: 100%;
  margin-bottom: 10px;
  transition: opacity 0.3s;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  opacity: 0.5;
  box-sizing: border-box;
}
.editionsSwiper__title {
  color: #000;
  font-family: "DINProDRVp", Tahoma, Arial;
  font-size: 1.3rem;
  text-align: center;
}

.archiveHeader {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: -25vw;
  padding: 50px 0 30vw;
}
@media screen and (min-width: 1440px) {
  .archiveHeader {
    margin-bottom: -370px;
    padding: 50px 0 416px;
  }
}
.archiveHeader--noNumber {
  margin-top: 60px;
  padding-top: 75px;
}
.archiveHeader--noButton .archiveHeader__headerTitle {
  margin-bottom: 40px;
}
.archiveHeader__headerNumber {
  font-size: 2.4rem;
  line-height: 2.782;
}
.archiveHeader__headerTitle {
  margin-bottom: 15px;
  font-size: 6.5rem;
  font-weight: 700;
  line-height: 1.031;
}

.articleFeatured {
  margin-bottom: 50px;
}
.articleFeatured__articleInner {
  display: flex;
  position: relative;
  flex-direction: column;
}
.articleFeatured__articleInner::before {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 40%, #000 100%);
  content: "";
}
@media (max-width: 599px) {
  .articleFeatured__articleInner::before {
    display: none;
  }
}
.articleFeatured__articleInner:focus {
  outline: 3px solid #56f;
  outline-offset: 2px;
}
.articleFeatured__articleImage {
  width: 100%;
}
@media (max-width: 599px) {
  .articleFeatured__articleImage {
    margin-bottom: 15px;
  }
}
.articleFeatured__articleHeader {
  position: absolute;
  bottom: 0;
  left: 0;
  margin-top: auto;
  padding: 45px;
  color: #fff;
  z-index: 100;
}
@media (max-width: 599px) {
  .articleFeatured__articleHeader {
    position: static;
    padding: 0;
    color: #000;
  }
}
.articleFeatured__articleHeader a {
  color: inherit;
}
@media (max-width: 599px) {
  .articleFeatured__articleCategory {
    font-size: 1.5rem;
  }
}
.articleFeatured__articleTitle {
  margin-top: 10px;
  font-size: 3.2rem;
  line-height: 1.125;
}
@media (max-width: 599px) {
  .articleFeatured__articleTitle {
    font-size: 2.4rem;
  }
}
.articleFeatured__articleTitle strong {
  font-weight: 600;
}

.editionsShowcase {
  padding: 100px 0 27px;
  background-color: #333;
  color: #fff;
}
@media (max-width: 767px) {
  .editionsShowcase {
    padding: 75px 0;
  }
}
.editionsShowcase__header {
  margin-bottom: 70px;
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
}
.editionsShowcase__list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
  overflow: visible;
}
.editionsShowcase__listWrapper {
  width: 100%;
}
.editionsShowcase__edition {
  margin-bottom: 73px;
  font-size: 1.5rem;
  line-height: 1.333;
  text-align: center;
}
.editionsShowcase__edition:focus {
  outline: 3px solid #ffbf47;
  outline-offset: 2px;
}
@media (max-width: 767px) {
  .editionsShowcase__edition {
    width: 260px;
  }
}
.editionsShowcase__editionFocus, .editionsShowcase__editionNumber {
  color: #fff;
}
.editionsShowcase__editionCover {
  width: 190px;
  margin: 0 auto 21px;
  box-shadow: 4px 3px 10px rgba(0, 0, 0, 0.24);
}

.searchEmpty__text {
  font-size: 2.4rem;
  text-align: center;
}

.articlesSearch {
  padding: 50px 0;
}
.articlesSearch__counter {
  color: #083163;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.02rem;
}
.articlesSearch__article {
  margin-top: 60px;
}
.articlesSearch__article:first-child {
  margin-top: 40px;
}

.searchResults__form {
  padding: 80px 0 30px;
  background: rgba(8, 49, 99, 0.05);
  text-align: center;
}
@media (max-width: 599px) {
  .searchResults__form {
    padding: 30px 0 0;
  }
}
.searchResults__heading {
  font-size: 3.6rem;
}
@media (max-width: 479px) {
  .searchResults__heading {
    font-size: 3.4rem;
  }
}

.ausgabeArchive__header {
  padding: 80px 0;
}
.ausgabeArchive__heading {
  color: #083163;
  font-size: 6rem;
  font-weight: 700;
  text-align: center;
}
.ausgabeArchive__heading--year {
  color: #d3db2b;
}

.allArticles.articles {
  padding-top: 0;
}

.blockquote__inner {
  width: 100%;
  max-width: 532px;
  margin: 0 auto;
  text-align: center;
}
.blockquote__quote {
  display: inline;
  position: relative;
  padding: 0 1.2rem 0 1.8rem;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.0625;
}
.blockquote__quote--strong {
  font-weight: 700;
}
.blockquote__info {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  font-size: 1.5rem;
  letter-spacing: 0.03rem;
  line-height: 1.4;
}
.blockquote__author {
  padding-right: 6px;
  font-weight: 700;
}

.infoBox__inner {
  width: 100%;
  max-width: 770px;
  margin: 0 auto;
  padding: 41px 51px 51px;
  background-color: #89c9cb;
  text-align: center;
}
.infoBox__inner--border {
  border: 2px solid #000;
}
.sections--white .infoBox__inner--border {
  border-color: #fff;
}
@media (max-width: 599px) {
  .infoBox__inner {
    padding: 50px 30px;
  }
}
.infoBox__header {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.02rem;
  line-height: 1.2083333333;
}
.infoBox__text {
  margin-top: 24px;
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
  font-family: "DINProDRVp", Tahoma, Arial;
  font-size: 1.5rem;
  letter-spacing: 0.03rem;
  line-height: 1.4666666667;
  text-align: left;
}
@media (max-width: 599px) {
  .infoBox__text {
    -moz-columns: 1;
         columns: 1;
  }
}
.infoBox__text p:not(:last-child) {
  margin-bottom: 15px;
}
.infoBox__text strong {
  font-weight: 600;
}

.moreInfoModal {
  overflow: auto;
}
.moreInfoModal__inner {
  max-width: 670px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.5;
}
.moreInfoModal__inner > p {
  line-height: 1.5;
}
.moreInfoModal__inner--initial > p:first-of-type::first-letter {
  margin-right: 1rem;
  float: left;
  font-size: 17rem;
  font-weight: 400;
  line-height: 13rem;
}
@media (max-width: 599px) {
  .moreInfoModal__inner--initial > p:first-of-type::first-letter {
    font-size: 10rem;
    line-height: 9rem;
  }
}
.moreInfoModal__box {
  width: 310px;
  margin-right: -240px;
  margin-bottom: 45px;
  margin-left: 50px;
  padding: 25px;
  float: right;
  border: 1px solid #000;
  text-align: center;
}
.sections--white .moreInfoModal__box {
  border-color: #fff;
}
@media (max-width: 1279px) {
  .moreInfoModal__box {
    margin-right: calc(-1 * (100vw - 670px) / 2 + 20px);
  }
}
@media (max-width: 767px) {
  .moreInfoModal__box {
    width: 100%;
    margin: 0 auto 75px;
    float: none;
  }
}
.moreInfoModal--leftside .moreInfoModal__box {
  margin-right: 50px;
  margin-left: -240px;
  float: left;
}
@media (max-width: 1279px) {
  .moreInfoModal--leftside .moreInfoModal__box {
    margin-right: 50px;
    margin-left: calc(-1 * (100vw - 670px) / 2 + 20px);
  }
}
@media (max-width: 767px) {
  .moreInfoModal--leftside .moreInfoModal__box {
    width: 100%;
    margin: 0 auto 75px;
    float: none;
  }
}
.moreInfoModal--notext .moreInfoModal__box {
  width: 100%;
  margin: 0 auto;
  float: none;
}
.moreInfoModal__textTop {
  font-size: 1.5rem;
  text-transform: uppercase;
}
.moreInfoModal__headerBottom {
  margin-top: 14px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.25;
}
.moreInfoModal__button {
  margin-top: 24px;
}
.moreInfoModal__modal {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  flex-direction: column;
  justify-content: space-between;
  width: 505px;
  max-width: 100vw;
  height: 100%;
  padding: 106px 50px 50px;
  transform: translateX(-505px);
  transition: transform 0.3s ease 0s;
  background-color: #fff;
  z-index: -1;
}
@media (max-width: 479px) {
  .moreInfoModal__modal {
    padding: 77px 20px 50px;
  }
}
.moreInfoModal__modal.active {
  transform: translateX(0);
  transition: transform 0.3s ease 0.1s;
  z-index: 1;
}
.moreInfoModal__modalImg {
  max-width: 100%;
  height: auto;
  margin-bottom: 25px;
}
.moreInfoModal__modalImg.hidden {
  display: none;
}
.moreInfoModal__modalHeader {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.02rem;
  line-height: 1.2083333333;
}
.moreInfoModal__modalText {
  margin-top: 25px;
  font-size: 1.5rem;
  letter-spacing: 0.02rem;
  line-height: 1.4666666667;
}
.moreInfoModal__modalWrapper {
  max-height: 100%;
  overflow-y: auto;
}

.photoCentered {
  padding: 40px 0 74px;
  background: rgba(211, 219, 43, 0.1);
}
.photoCentered--small {
  max-width: 455px;
  background: transparent;
}
.photoCentered--small .container__inner {
  padding: 0;
}
.photoCentered--bottomMargin {
  margin-bottom: 60px;
}
.photoCentered__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 645px;
  margin: 0 auto;
  text-align: center;
}
.photoCentered__categories {
  margin-bottom: 40px;
}
.photoCentered--small .photoCentered__categories {
  align-self: flex-start;
}
@media (max-width: 599px) {
  .photoCentered__categories {
    margin-bottom: 20px;
  }
}
.photoCentered__img {
  width: 100%;
  max-width: 770px;
  height: auto;
}
.photoCentered__zoom {
  position: absolute;
  right: -60px;
  bottom: 0;
  width: 30px;
  height: 30px;
  background: #d3db2b;
}
.photoCentered__zoom:before {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #083163;
  font-size: 16px;
  content: "\E918";
}
@media (max-width: 599px) {
  .photoCentered__zoom {
    right: 0;
  }
}
.photoCentered__info {
  margin-top: 20px;
  font-size: 1.4rem;
  letter-spacing: 0.03rem;
  line-height: 1.57;
}
@media (min-width: 600px) {
  .photoCentered__info {
    display: flex;
    justify-content: center;
  }
}
.photoCentered__title {
  font-weight: 500;
}
@media (max-width: 599px) {
  .photoCentered__title {
    display: inline;
  }
}
@media (max-width: 599px) {
  .photoCentered__author {
    display: inline;
  }
}
.photoCentered__photo {
  position: relative;
  max-width: 462px;
}
.photoCentered--small .photoCentered__photo {
  max-width: 330px;
}
@media (max-width: 599px) {
  .photoCentered__photo {
    width: 100%;
  }
}
.photoCentered__more {
  margin-top: 66px;
}
@media (max-width: 599px) {
  .photoCentered__more {
    margin-top: 40px;
  }
}

.photoSlider__inner {
  width: 100%;
  max-width: 910px;
  margin: -18px auto 0;
  text-align: center;
}
.photoSlider__img {
  max-width: 910px;
  height: auto;
}
.photoSlider__info {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.03rem;
  line-height: 1.4;
}

.textImageSlider__inner {
  width: 100%;
  max-width: 910px;
  margin: -18px auto 0;
  text-align: center;
}
.textImageSlider__img {
  max-width: 910px;
  height: auto;
}
.textImageSlider__info {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.03rem;
  line-height: 1.4;
}

.numbersSlider__inner {
  width: 100%;
  max-width: 910px;
  margin: -18px auto 0;
  text-align: center;
}
.numbersSlider__img {
  max-width: 910px;
  height: auto;
}
.numbersSlider__info {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.03rem;
  line-height: 1.4;
}

.photoWide__inner {
  margin: 0 0 0 120px;
  text-align: center;
}
.photoWide__inner--flipped {
  margin: 0 120px 0 0;
}
.photoWide__inner--flipped .photoWide__quote {
  right: 0;
  left: auto;
  padding-right: 0;
  padding-left: 25px;
}
@media (max-width: 767px) {
  .photoWide__inner {
    margin-right: 0;
    margin-left: 0;
  }
}
.photoWide__photo {
  position: relative;
}
.photoWide__img {
  width: 100%;
  height: auto;
}
.photoWide__quote {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 310px;
  padding: 25px 25px 25px 0;
  background-color: #fff;
  color: #000;
  font-size: 3.2rem;
  letter-spacing: 0.02rem;
  line-height: 1.0625;
}
.sections--white .photoWide__quote {
  background-color: #000;
  color: #fff;
}
@media (max-width: 767px) {
  .photoWide__quote {
    position: static;
    width: 100%;
    padding: 25px 20px;
    font-size: 2.8rem;
  }
}
.photoWide__quoteInner {
  display: inline;
  position: relative;
}
.photoWide__quoteInner--strong {
  font-weight: 600;
}
.photoWide__quoteInner--strong::before {
  left: -20px;
}
.photoWide__quoteInner--strong::after {
  right: -10px;
}

.textFormatted__inner {
  width: 100%;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.89;
  padding-block: 2rem;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .textFormatted__inner {
    grid-template-columns: 1fr 640px 1fr;
  }
}
.textFormatted__inner--initial p:first-of-type::first-letter {
  margin-right: 1rem;
  float: left;
  font-size: 17rem;
  font-weight: 400;
  line-height: 13rem;
}
@media (max-width: 599px) {
  .textFormatted__inner--initial p:first-of-type::first-letter {
    font-size: 10rem;
    line-height: 9rem;
  }
}
.textFormatted__inner--initial a {
  display: inline-block;
  transition: padding-bottom 0.3s, border-color 0.3s;
  border-bottom: 1px solid #000;
  color: #000;
  line-height: 0.9;
}
.textFormatted__inner--initial a:hover {
  padding-bottom: 1px;
  border-bottom-color: rgba(0, 0, 0, 0.6);
}
.textFormatted__inner--initial a[target=_blank] {
  position: relative;
  margin-right: 18px;
}
.textFormatted__inner--initial a[target=_blank]::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  font-size: 10px;
  line-height: 10px;
  text-align: right;
  top: 8px;
  right: -16px;
  color: #000;
  font-weight: 600;
  content: "\E906";
}
.sections--white .textFormatted__inner--initial a {
  border-bottom: 1px solid #fff;
  color: #fff;
}
.sections--white .textFormatted__inner--initial a:hover {
  border-bottom-color: rgba(255, 255, 255, 0.6);
}
.sections--white .textFormatted__inner--initial a[target=_blank]::after {
  color: #fff;
}
.textFormatted__title {
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: 700;
  color: #083163;
  letter-spacing: 0.17px;
}
@media (min-width: 768px) {
  .textFormatted__title {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
}
.textFormatted__text p {
  margin-top: 2rem;
}
.textFormatted__text h4 {
  font-size: 2rem;
  line-height: 2.8rem;
}
@media (min-width: 768px) {
  .textFormatted__text h4 {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
}
.textFormatted__external {
  max-width: 23.3rem;
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .textFormatted__external {
    max-width: 100%;
    margin-top: 4rem;
  }
}
.textFormatted__externalText {
  display: flex;
  gap: 1.4rem;
  position: relative;
  font-size: 1.4rem;
  line-height: 2.8rem;
  color: #083163;
}
.textFormatted__externalText::before {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\E908";
  color: #083163;
  margin-top: 0.8rem;
}
.textFormatted__info {
  max-width: 27rem;
}
@media (max-width: 767px) {
  .textFormatted__info {
    max-width: 100%;
    margin-top: 4rem;
  }
}
.textFormatted__infoText {
  display: flex;
  gap: 1.4rem;
  position: relative;
  font-size: 1.4rem;
  line-height: 2.8rem;
  color: #083163;
}
.textFormatted__infoText::before {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\E905";
  color: #083163;
  margin-top: 0.8rem;
}
.textFormatted__notes {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-right: -60px;
}
@media (max-width: 767px) {
  .textFormatted__notes {
    margin-right: -26px;
  }
}
@media (max-width: 1023px) {
  .textFormatted__notes {
    margin-right: -60px;
  }
}
.textFormatted__note {
  display: flex;
  gap: 2.2rem;
  padding: 3rem;
  border-radius: 2rem;
  background-color: #F6F8D5;
  padding-right: 6rem;
}
.textFormatted__noteText {
  font-size: 1.4rem;
  line-height: 2.8rem;
}
.textFormatted__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background-color: #fff;
}
@media (max-width: 767px) {
  .textFormatted__icon {
    min-width: 4.5rem;
    height: 4.5rem;
  }
}
.textFormatted__icon::before {
  font-size: 3.6rem;
  color: rgba(8, 49, 99, 0.5);
}
@media (max-width: 767px) {
  .textFormatted__icon::before {
    font-size: 1.8rem;
  }
}
.textFormatted__link {
  display: flex;
  gap: 1.4rem;
  position: relative;
  font-size: 1.4rem;
  line-height: 2.8rem;
  color: #083163;
  margin-left: 3rem;
  text-decoration: underline;
  padding-left: 2.4rem;
}
.textFormatted__link::before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\E906";
  color: #083163;
  margin-top: 0.8rem;
}
.textFormatted__side {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .textFormatted__side {
    justify-content: flex-start;
  }
}
.textFormatted__content {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .textFormatted__content {
    margin: 0;
  }
}
.textFormatted__content p {
  white-space: pre-line;
}
.textFormatted__image {
  margin-top: auto;
  max-width: 42.1rem;
  display: none;
}
@media (min-width: 768px) {
  .textFormatted__image {
    display: block;
  }
}
.textFormatted__image--mobile {
  display: block;
}
@media (min-width: 768px) {
  .textFormatted__image--mobile {
    display: none;
  }
}
.textFormatted__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.textFormatted__aside, .photoCaption__aside {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 264px;
  padding-right: 60px;
  color: #083163;
  font-size: 1.4rem;
  letter-spacing: 0.03rem;
  line-height: 2;
  box-sizing: content-box;
}
.textFormatted__aside--margin-1 {
  margin-top: 260px;
}
.textFormatted__aside--margin-2 {
  margin-top: 440px;
}
.textFormatted__aside--margin-3 {
  margin-top: 620px;
}
@media (max-width: 1279px) {
  .textFormatted__aside, .photoCaption__aside {
    max-width: 250px;
    padding-right: 10px;
  }
}
.textFormatted--white {
  background-color: #fff;
}
.textFormatted--blue {
  background-color: #BCC8DA;
}
.textFormatted--yellow {
  background-color: #F4E99E;
}
.textFormatted--grey {
  background-color: #ECECED;
}
.textFormatted--topMargin .textFormatted__inner {
  padding-block-start: 15.6rem;
}
@media (max-width: 767px) {
  .textFormatted--topMargin .textFormatted__inner {
    padding-block-start: 7.8rem;
  }
}
.textFormatted--bottomMargin .textFormatted__inner {
  padding-block-end: 15.6rem;
}
@media (max-width: 767px) {
  .textFormatted--bottomMargin .textFormatted__inner {
    padding-block-end: 7.8rem;
  }
}
.textFormatted--notes .textFormatted__inner {
  grid-template-columns: 1fr 530px 1fr;
  gap: 2.8rem;
}
@media (max-width: 1023px) {
  .textFormatted--notes .textFormatted__inner {
    display: flex;
    flex-direction: column-reverse;
    gap: 4rem;
  }
}
.textFormatted--notes .textFormatted__content {
  margin-left: -5.5rem;
}
@media (max-width: 1023px) {
  .textFormatted--notes .textFormatted__content {
    margin-left: 0;
  }
}
.textFormatted--compact .textFormatted__text p {
  margin-top: 0.25rem;
}
.textFormatted--compact .textFormatted__text br {
  display: none;
}
.textFormatted--compact .textFormatted__text strong {
  display: block;
  margin-top: 1.5rem;
  margin-bottom: 0.25rem;
}
.textFormatted--compact .textFormatted__text p:first-child strong {
  margin-top: 0;
}

body.page-id-373 .textFormatted__content p {
  white-space: normal !important;
}

.quoteWithImage {
  padding-bottom: 120px;
  background: rgba(211, 219, 43, 0.1);
}
.quoteWithImage--noBg {
  background: transparent;
}
.quoteWithImage--small {
  max-width: 469px;
}
.quoteWithImage__content {
  display: flex;
  position: relative;
  align-items: flex-start;
  padding: 63px 65px 82px;
  border-radius: 100px;
  border-bottom-right-radius: 0;
  background: rgba(211, 219, 43, 0.2);
}
.quoteWithImage__content:after {
  position: absolute;
  right: 0;
  bottom: -120.5px;
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: scaleX(-1);
  color: rgba(211, 219, 43, 0.2);
  font-size: 120px;
  content: "\E902";
}
.quoteWithImage--small .quoteWithImage__content {
  flex-direction: column;
  align-items: center;
  padding: 29px;
  border-radius: 47px;
  border-bottom-right-radius: 0;
}
.quoteWithImage--small .quoteWithImage__content:after {
  bottom: -80px;
  font-size: 80px;
}
@media (max-width: 767px) {
  .quoteWithImage__content {
    flex-direction: column;
    align-items: center;
    padding: 29px;
    border-radius: 47px;
    border-bottom-right-radius: 0;
  }
  .quoteWithImage__content:after {
    bottom: -80px;
    font-size: 80px;
  }
}
.quoteWithImage__contentText {
  padding-left: 43px;
}
.quoteWithImage--small .quoteWithImage__contentText {
  padding: 0;
  text-align: center;
}
@media (max-width: 767px) {
  .quoteWithImage__contentText {
    padding: 0;
    text-align: center;
  }
}
.quoteWithImage__contentImage {
  position: relative;
  flex-shrink: 0;
}
.quoteWithImage--small .quoteWithImage__contentImage {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .quoteWithImage__contentImage {
    margin-bottom: 10px;
  }
}
.quoteWithImage__header {
  margin: 0 auto 7px;
}
.quoteWithImage--small .quoteWithImage__header {
  display: none;
}
@media (max-width: 767px) {
  .quoteWithImage__header {
    display: none;
  }
}
.quoteWithImage__header--mobile {
  display: none;
  padding-bottom: 6px;
}
.quoteWithImage--small .quoteWithImage__header--mobile {
  display: block;
}
@media (max-width: 767px) {
  .quoteWithImage__header--mobile {
    display: block;
  }
}
.quoteWithImage__quote {
  margin-bottom: 22px;
  color: #083163;
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 0.071rem;
  line-height: 1.44;
}
.quoteWithImage--small .quoteWithImage__quote {
  margin-bottom: 16px;
  font-size: 2.4rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .quoteWithImage__quote {
    margin-bottom: 16px;
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
.quoteWithImage__author {
  color: #083163;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.03rem;
  line-height: 1.4;
}
.quoteWithImage__image {
  width: 100%;
  max-width: 144px;
  border-radius: 50%;
}
.quoteWithImage--small .quoteWithImage__image {
  max-width: 118px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .quoteWithImage__image {
    max-width: 118px;
    margin: 0 auto;
  }
}
.quoteWithImage--small .quoteWithImage .container__inner {
  padding: 0;
}
@media (max-width: 599px) {
  .quoteWithImage .container__inner {
    padding: 0;
  }
}

.textWithImage__content {
  display: flex;
  align-items: center;
}
.textWithImage__content--image-left .textWithImage__contentText {
  padding: 0 120px 0 50px;
}
@media (max-width: 1023px) {
  .textWithImage__content--image-left .textWithImage__contentText {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .textWithImage__content--image-left .textWithImage__contentText {
    padding-left: 0;
  }
}
.textWithImage__content--image-left .textWithImage__contentImage {
  order: -1;
}
@media (max-width: 767px) {
  .textWithImage__content {
    flex-direction: column;
  }
}
.textWithImage__contentText {
  width: 60%;
  padding: 0 50px 0 120px;
  font-size: 1.8rem;
  line-height: 1.5;
}
@media (max-width: 1023px) {
  .textWithImage__contentText {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .textWithImage__contentText {
    width: 100%;
    padding-right: 0;
  }
}
.textWithImage__contentText p {
  margin-bottom: 16px;
}
.textWithImage__contentText strong {
  font-weight: 700;
}
.textWithImage__contentText em {
  font-style: italic;
}
.textWithImage__contentImage {
  position: relative;
  width: 40%;
}
@media (max-width: 767px) {
  .textWithImage__contentImage {
    order: -1;
    width: 100%;
    margin-bottom: 50px;
  }
}
.textWithImage__image {
  width: 100%;
}

.articles {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 100px 0;
  background: rgba(8, 49, 99, 0.05);
}
.articles--noBg {
  background: none;
}
@media (max-width: 767px) {
  .articles {
    padding: 64px 0;
  }
}
.articles--lightBackground {
  background: rgba(211, 219, 43, 0.1);
}
.articles--bottomMargin {
  margin-bottom: 60px;
}
.articles__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 47px;
  text-align: center;
}
.articles--noHeader .articles__header {
  align-items: flex-start;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .articles--noHeader .articles__header {
    align-items: center;
  }
}
@media (max-width: 767px) {
  .articles__header {
    margin-bottom: 17px;
  }
}
@media (max-width: 767px) {
  .articles__heading {
    font-size: 3.4rem;
  }
}
.articles__headerImage {
  max-height: 47px;
  margin-bottom: 15px;
}
.articles__description {
  max-width: 597px;
  margin-top: 15px;
  color: #083163;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.022rem;
  line-height: 1.625;
}
.articles__articles {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  .articles__articles {
    flex-direction: column;
    align-items: center;
  }
}
.articles__article:not(.articles__article--center) {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .articles__article:not(.articles__article--center) {
    margin-top: 20px;
  }
}
.articles__article--margin {
  margin-top: 53px;
}
.articles__article--bottomMargin:not(:nth-last-child(2)) {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .articles__article--bottomMargin:not(:nth-last-child(2)) {
    margin-bottom: 10px;
  }
}
.articles__article--bottomMargin:last-child {
  margin-bottom: 0;
}
.articles__article--center {
  width: 100%;
}
.articles--archive .articles__article--center {
  margin: 80px auto 0;
}
.articles__article a:focus {
  outline: 3px solid #56f;
  outline-offset: 2px;
}
.sections--white .articles__article a:focus {
  outline-color: #ffbf47;
}
.articles__articleInner {
  display: flex;
  flex-direction: column;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.articles__more {
  margin-top: 80px;
  text-align: center;
}
@media (max-width: 767px) {
  .articles__more {
    margin-top: 10px;
  }
}

.literature {
  margin: 60px 0;
}
.literature--ausgabe {
  margin: 100px 0;
}
@media (max-width: 767px) {
  .literature--ausgabe {
    margin: 70px 0 20px;
  }
}
.literature__content {
  display: flex;
  align-items: flex-start;
  margin-top: 63px;
}
.literature__cover {
  align-self: flex-start;
  width: 100%;
  min-width: 91px;
  max-width: 196px;
  margin-right: 29px;
  box-shadow: 10px 10px 12px 0 rgba(183, 183, 183, 0.5);
}
.literature__cover--multi {
  width: auto;
}
@media (max-width: 599px) {
  .literature__cover {
    display: none;
  }
}
.literature__cover--mobile {
  display: none;
  margin-right: 25px;
}
@media (max-width: 599px) {
  .literature__cover--mobile {
    display: block;
  }
}
.literature__cover img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .literature--ausgabe .literature__heading {
    text-align: center;
  }
}
.literature__article {
  display: flex;
}
.literature__article--more {
  width: 100%;
}
.literature__article--more .articleIntro {
  margin-right: 96px;
}
@media (max-width: 1023px) {
  .literature__article--more .articleIntro {
    margin-right: 36px;
  }
}
@media (max-width: 767px) {
  .literature__article--more {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 599px) {
  .literature__article {
    margin: 0;
  }
}
@media (min-width: 768px) {
  .literature__more {
    margin-top: 74px;
  }
}

.magazines {
  margin: 60px 0;
}
@media (max-width: 479px) {
  .magazines {
    background-color: rgba(211, 219, 43, 0.1);
  }
}
.magazines__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 30px;
  background: rgba(211, 219, 43, 0.1);
}
@media (max-width: 479px) {
  .magazines__inner {
    padding: 50px 0;
    background: transparent;
  }
}
.magazines__title {
  margin-bottom: 33px;
  color: #083163;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.011rem;
  text-transform: uppercase;
}
.magazines__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 605px;
}
@media (max-width: 767px) {
  .magazines__items {
    flex-direction: column;
  }
}
.magazines__more {
  margin-top: -10px;
}

.ausgabeSlider {
  padding: 68px 0 10px;
  background: rgba(211, 219, 43, 0.1);
  color: #083163;
}
.ausgabeSlider__inner {
  padding: 0 15px;
}
.ausgabeSlider__wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 1016px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .ausgabeSlider__wrapper {
    justify-content: center;
  }
}
.ausgabeSlider__photoWrapper {
  margin-right: 20px;
  padding-top: 46px;
}
@media (max-width: 1023px) {
  .ausgabeSlider__photoWrapper {
    display: none;
  }
}
.ausgabeSlider__year {
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 600;
}
.ausgabeSlider__title {
  font-size: 5.6rem;
  font-weight: 600;
  letter-spacing: 0.047rem;
}
.ausgabeSlider__file {
  display: inline-block;
  margin-top: 12px;
  transition: color 0.3s;
  color: #083163;
  font-size: 1.8rem;
  letter-spacing: 0.04rem;
}
.ausgabeSlider__file:hover {
  color: #d3db2b;
}
.ausgabeSlider__file .icon {
  font-size: 1.4rem;
}
.ausgabeSlider__articles {
  margin-top: 44px;
}
.ausgabeSlider__article {
  margin-bottom: 29px;
}
.ausgabeSlider__article:not(:last-child) .articleIntro {
  border-bottom: 2px solid #e1e6ec;
}
.ausgabeSlider__more {
  margin-bottom: 80px;
}

.photoCaption__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}
.photoCaption__inner--wide {
  max-width: 870px;
}
@media (max-width: 1279px) {
  .photoCaption__inner {
    padding-right: 80px;
  }
}
@media (max-width: 1023px) {
  .photoCaption__inner {
    padding-right: 0;
  }
}
.photoCaption img {
  max-width: 100%;
}
.photoCaption__caption {
  max-width: 640px;
  padding: 20px 6px;
  color: #000;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02rem;
  line-height: 2.14;
  text-align: center;
}
.photoCaption__legend {
  color: #666;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.03rem;
  line-height: 2.14;
}

.textIcon {
  margin: 100px 0;
  background: #083163;
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0.03rem;
  line-height: 1.88;
  overflow: hidden;
}
.textIcon__inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding: 60px 0;
}
.textIcon__icon {
  position: absolute;
  top: 0;
  right: calc(100% + 105px);
  bottom: 0;
  height: 100%;
}
@media (max-width: 1023px) {
  .textIcon__icon {
    right: 50%;
    transform: translateX(50%);
  }
}
.textIcon__header {
  position: relative;
  margin-bottom: 20px;
  font-weight: 700;
}
.textIcon__content {
  position: relative;
  font-weight: 400;
}

.heroStage {
  position: relative;
  overflow: hidden;
}
.heroStage--full {
  background-color: #2E517B;
  min-height: clamp(360px, 60vh, 700px);
  display: grid;
  align-items: center;
}
.heroStage__container {
  padding-block: clamp(48px, 10vh, 120px);
}
.heroStage__inner {
  display: grid;
  place-items: center;
  text-align: center;
  padding-inline: clamp(16px, 6vw, 80px);
}
.heroStage__content {
  max-width: 900px;
  width: 100%;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .heroStage__content {
    gap: 1.5rem;
  }
}
.heroStage__title {
  color: #083163;
  color: white;
  font-weight: 700;
  line-height: 1.1;
  font-size: clamp(2rem, 4vw, 3rem);
}
.heroStage__text {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 56ch;
  white-space: normal;
}
.heroStage__button {
  justify-self: center;
  margin-top: 0.5rem;
}
.heroStage__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  display: grid;
  place-items: center;
}
.heroStage__bgSvg {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.heroStage__bgSvg svg {
  height: min(440px, 55vh);
  width: auto;
  max-width: min(1100px, 86vw);
  transform: none;
}
.heroStage__bgImg {
  position: static;
  width: auto;
  height: min(440px, 55vh);
  max-width: min(1100px, 86vw);
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0;
  transform: none;
  opacity: 1;
}
.heroStage__container, .heroStage__inner, .heroStage__content {
  position: relative;
  z-index: 1;
}
.heroStage--white {
  background-color: #fff;
}
.heroStage--blue {
  background-color: #BCC8DA;
}
.heroStage--yellow {
  background-color: #F4E99E;
}
.heroStage--grey {
  background-color: #ECECED;
}
.heroStage--navy {
  background-color: #083163;
}

.numberSlider__container {
  padding-block: 37px 61px;
}
@media (min-width: 1024px) {
  .numberSlider__container {
    padding-block: 100px 155px;
  }
}
.numberSlider__title {
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: 700;
  color: #083163;
}
@media (min-width: 768px) {
  .numberSlider__title {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
}
.numberSlider__text {
  font-size: 1.8rem;
  line-height: 3.4rem;
  font-weight: 400;
  white-space: pre-wrap;
  color: #000;
  margin-top: 15px;
}
.numberSlider__slider {
  margin-top: 5rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .numberSlider__slider {
    margin-top: 4rem;
    margin-inline: -7rem;
  }
}
.numberSlider__wrapper {
  display: flex;
}
.numberSlider__slide {
  flex-grow: 1;
  width: 100%;
}
@media (min-width: 768px) {
  .numberSlider__slide {
    width: -moz-fit-content;
    width: fit-content;
    padding-inline: 7rem;
  }
}
.numberSlider__value {
  font-size: 5.6rem;
  line-height: 6.4rem;
  font-weight: 700;
  color: #083163;
}
@media (min-width: 768px) {
  .numberSlider__value {
    font-size: 7.6rem;
    line-height: 8.4rem;
  }
}
.numberSlider__label {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.6rem;
  margin-top: 2.4rem;
}
.numberSlider__navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.4rem;
  gap: 2.6rem;
}
@media (min-width: 768px) {
  .numberSlider__navigation {
    justify-content: flex-start;
    margin-top: 7.6rem;
  }
}
.numberSlider__pagination {
  display: flex;
}
.numberSlider__arrow:focus {
  outline: 3px solid #ffbf47;
  outline-offset: 2px;
}
.numberSlider--white {
  background-color: #fff;
}
.numberSlider--blue {
  background-color: #BCC8DA;
}
.numberSlider--yellow {
  background-color: #F4E99E;
}
.numberSlider--grey {
  background-color: #ECECED;
}

.textImageTeaser {
  position: relative;
  z-index: 1;
}
.textImageTeaser__container {
  padding-block: 3.8rem 2.9rem;
}
@media (min-width: 768px) {
  .textImageTeaser__container {
    padding-block: 9.5rem 11.2rem;
  }
}
.textImageTeaser__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
}
@media (min-width: 1280px) {
  .textImageTeaser__inner {
    gap: 7rem;
  }
}
@media (min-width: 1024px) {
  .textImageTeaser__inner {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .textImageTeaser__content, .textImageTeaser__side {
    width: 50%;
  }
}
.textImageTeaser__label {
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-weight: 700;
  color: #083163;
}
.textImageTeaser__title {
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: 700;
  color: #083163;
  margin-top: 0.8rem;
}
@media (min-width: 768px) {
  .textImageTeaser__title {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
}
.textImageTeaser__text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.6rem;
  margin-top: 1.7rem;
}
.textImageTeaser__foot {
  position: relative;
}
.textImageTeaser__line {
  width: 100%;
  height: 2px;
  background-color: #e1e6ec;
  margin-top: 3.5rem;
}
@media (min-width: 768px) {
  .textImageTeaser__line {
    width: 78%;
  }
}
.textImageTeaser__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.1rem;
  font-size: 1.4rem;
  line-height: 3.2rem;
  font-weight: 700;
  color: #083163;
  width: -moz-fit-content;
  width: fit-content;
}
.textImageTeaser__link::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\E90A";
}
.textImageTeaser__link:focus {
  outline: 3px solid #ffbf47;
  outline-offset: 2px;
}
@media (max-width: 1023px) {
  .textImageTeaser__image {
    height: 29rem;
  }
}
@media (max-width: 1023px) {
  .textImageTeaser__img {
    width: auto;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.textImageTeaser__caption {
  font-size: 1.8rem;
  line-height: 3.4rem;
  color: #676767;
  margin-top: 1.5rem;
}
.textImageTeaser--white {
  background-color: #fff;
}
.textImageTeaser--blue {
  background-color: #BCC8DA;
}
.textImageTeaser--yellow {
  background-color: #F4E99E;
}
.textImageTeaser--grey {
  background-color: #ECECED;
}
.textImageTeaser--reverse .textImageTeaser__inner {
  flex-direction: column;
}
@media (min-width: 1024px) {
  .textImageTeaser--reverse .textImageTeaser__inner {
    flex-direction: row-reverse;
  }
}
.textImageTeaser--reverse .textImageTeaser__img {
  margin-left: auto;
}
.textImageTeaser--noImage .textImageTeaser__inner {
  justify-content: center;
}

.teaserSlider__inner {
  padding-block: 4rem;
}
@media (min-width: 768px) {
  .teaserSlider__inner {
    padding-block: 4.8rem 8.5rem;
  }
}
.teaserSlider__label {
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-weight: 700;
  color: #083163;
  text-align: center;
}
.teaserSlider__title {
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: 700;
  color: #083163;
  text-align: center;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .teaserSlider__title {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
}
.teaserSlider__text {
  font-size: 1.8rem;
  line-height: 3.4rem;
  color: #676767;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .teaserSlider__text {
    line-height: 2.6rem;
  }
}
.teaserSlider__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  line-height: 3.2rem;
  font-weight: 700;
  color: #083163;
  margin-top: 3.5rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.teaserSlider__link::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\E90A";
}
.teaserSlider__link:focus {
  outline: 3px solid #ffbf47;
  outline-offset: 2px;
}
.teaserSlider__slider {
  max-width: 64.8rem;
  margin-top: 4rem;
  margin-inline: auto;
  overflow: hidden;
}
@media (min-width: 768px) {
  .teaserSlider__slider {
    margin-top: 2.5rem;
  }
}
.teaserSlider__wrapper {
  display: flex;
}
.teaserSlider__icon {
  display: none;
}
@media (min-width: 768px) {
  .teaserSlider__icon {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 3rem;
    height: 3rem;
    background-color: #d3db2b;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .teaserSlider__icon::before {
    font-size: 1.6rem;
  }
}
.teaserSlider__navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.6rem;
  margin-top: 3.5rem;
}
@media (min-width: 768px) {
  .teaserSlider__navigation {
    justify-content: center;
  }
}
.teaserSlider__pagination {
  display: flex;
}
.teaserSlider__image {
  position: relative;
  background-color: #ECECED;
  padding-block: 3.2rem;
  padding-inline: 1.4rem;
}
@media (min-width: 768px) {
  .teaserSlider__image {
    padding-block: 6.1rem;
    padding-inline: 3rem;
  }
}
.teaserSlider__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.teaserSlider--white {
  background-color: #fff;
}
.teaserSlider--blue {
  background-color: #BCC8DA;
}
.teaserSlider--yellow {
  background-color: #F4E99E;
}
.teaserSlider--grey {
  background-color: #ECECED;
}

.footerTeaser {
  position: relative;
  z-index: 1;
}
.footerTeaser__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
  padding-block: 3rem 4rem;
  gap: 3rem;
}
@media (min-width: 768px) {
  .footerTeaser__inner {
    padding-block: 6rem 9.3rem;
    flex-direction: row;
    gap: 11.3rem;
  }
}
.footerTeaser__content {
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  .footerTeaser__content {
    width: 41%;
  }
}
.footerTeaser__label {
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-weight: 700;
  color: #083163;
}
.footerTeaser__title {
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: 700;
  color: #083163;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .footerTeaser__title {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
}
.footerTeaser__text {
  font-size: 1.8rem;
  line-height: 3.4rem;
  margin-top: 2rem;
  letter-spacing: 0.4px;
}
.footerTeaser__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  line-height: 3.2rem;
  font-weight: 700;
  color: #083163;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 2.5rem;
}
.footerTeaser__link::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\E90A";
}
.footerTeaser__link:focus {
  outline: 3px solid #ffbf47;
  outline-offset: 2px;
}
.footerTeaser__image {
  width: 100%;
}
@media (min-width: 768px) {
  .footerTeaser__image {
    width: 34%;
  }
}
.footerTeaser__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footerTeaser--white {
  background-color: #fff;
}
.footerTeaser--blue {
  background-color: #BCC8DA;
}
.footerTeaser--yellow {
  background-color: #F4E99E;
}
.footerTeaser--grey {
  background-color: #ECECED;
}

.textImage {
  position: relative;
  z-index: 1;
}
.textImage__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
  padding-block: 4rem;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .textImage__inner {
    padding-block: 10rem;
    flex-direction: row;
    gap: 3rem;
  }
}
@media (min-width: 768px) {
  .textImage__content {
    width: 47.75%;
  }
}
.textImage__title {
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: 700;
  color: #083163;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .textImage__title {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
}
.textImage__text, .textImage__caption {
  font-size: 1.8rem;
  line-height: 3.4rem;
  margin-top: 1.5rem;
}
.textImage__text a {
  display: inline-block;
  transition: padding-bottom 0.3s, border-color 0.3s;
  border-bottom: 1px solid #000;
  color: #000;
  line-height: 0.9;
}
.textImage__text a:hover {
  padding-bottom: 1px;
  border-bottom-color: rgba(0, 0, 0, 0.6);
}
.textImage__text a[target=_blank] {
  position: relative;
  margin-right: 18px;
}
.textImage__text a[target=_blank]::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  font-size: 10px;
  line-height: 10px;
  text-align: right;
  top: 8px;
  right: -16px;
  color: #000;
  font-weight: 600;
  content: "\E906";
}
.sections--white .textImage__text a {
  border-bottom: 1px solid #fff;
  color: #fff;
}
.sections--white .textImage__text a:hover {
  border-bottom-color: rgba(255, 255, 255, 0.6);
}
.sections--white .textImage__text a[target=_blank]::after {
  color: #fff;
}
.textImage__caption {
  color: #676767;
}
@media (min-width: 768px) {
  .textImage__imageBox {
    width: 52.25%;
  }
}
.textImage__image {
  position: relative;
}
.textImage__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.textImage__icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 3rem;
  height: 3rem;
  background-color: #d3db2b;
  display: flex;
  align-items: center;
  justify-content: center;
}
.textImage__icon::before {
  font-size: 1.6rem;
}
.textImage--reversed .textImage__inner {
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .textImage--reversed .textImage__inner {
    flex-direction: row-reverse;
  }
}
.textImage--lightbox .textImage__image {
  background-color: #ECECED;
}
.textImage--white {
  background-color: #fff;
}
.textImage--blue {
  background-color: #BCC8DA;
}
.textImage--yellow {
  background-color: #F4E99E;
}
.textImage--grey {
  background-color: #ECECED;
}

.furtherInfo {
  position: relative;
  z-index: 1;
}
.furtherInfo__inner {
  padding-block: 4rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .furtherInfo__inner {
    padding-block: 8rem;
  }
}
.furtherInfo__content {
  max-width: 640px;
  margin-inline: auto;
}
.furtherInfo__title {
  font-size: 2.6rem;
  line-height: 4rem;
  font-weight: 700;
  color: #083163;
}
@media (min-width: 768px) {
  .furtherInfo__title {
    font-size: 3.4rem;
    line-height: 5rem;
  }
}
.furtherInfo__text {
  font-size: 1.8rem;
  line-height: 3.4rem;
  letter-spacing: 0.4px;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .furtherInfo__text {
    margin-top: 1rem;
  }
}
.furtherInfo__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) {
  .furtherInfo__link {
    margin-top: 1rem;
  }
}
.furtherInfo__link:focus {
  outline: 2px solid #ff6600;
}
.furtherInfo__link:focus-visible {
  outline: 3px solid #ff6600;
}
.furtherInfo__icon::before {
  color: #083163;
  font-size: 1.2rem;
}
.furtherInfo__label {
  position: relative;
  font-size: 1.4rem;
  line-height: 2.8rem;
  color: #083163;
}
.furtherInfo__label::before {
  content: "";
  position: absolute;
  bottom: 0.4rem;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background-color: #083163;
}
.furtherInfo--white {
  background-color: #fff;
}
.furtherInfo--blue {
  background-color: #BCC8DA;
}
.furtherInfo--yellow {
  background-color: #F4E99E;
}
.furtherInfo--grey {
  background-color: #ECECED;
}

.imageSlider__inner {
  padding-block: 4rem 8rem;
}
.imageSlider__slider {
  max-width: 640px;
  margin-inline: auto;
  overflow: hidden;
}
.imageSlider__wrapper {
  display: flex;
}
.imageSlider__caption {
  font-size: 1.8rem;
  line-height: 3.4rem;
  color: #676767;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .imageSlider__caption {
    line-height: 2.6rem;
  }
}
.imageSlider__image {
  padding: 1.2rem;
  background-color: #ECECED;
  position: relative;
}
@media (min-width: 768px) {
  .imageSlider__image {
    padding: 4rem;
  }
}
.imageSlider__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.imageSlider__icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 3rem;
  height: 3rem;
  background-color: #d3db2b;
  display: flex;
  align-items: center;
  justify-content: center;
}
.imageSlider__icon::before {
  font-size: 1.6rem;
}
.imageSlider__navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3.5rem;
  gap: 2.6rem;
}
@media (min-width: 768px) {
  .imageSlider__navigation {
    justify-content: center;
  }
}
.imageSlider--white {
  background-color: #fff;
}
.imageSlider--blue {
  background-color: #BCC8DA;
}
.imageSlider--yellow {
  background-color: #F4E99E;
}
.imageSlider--grey {
  background-color: #ECECED;
}

.simpleImage__inner {
  padding-block: 4rem;
}
.simpleImage__content {
  max-width: 640px;
  margin-inline: auto;
}
.simpleImage__image {
  position: relative;
  background-color: #ECECED;
}
.simpleImage__icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 3rem;
  height: 3rem;
  background-color: #d3db2b;
  display: flex;
  align-items: center;
  justify-content: center;
}
.simpleImage__icon::before {
  font-size: 1.6rem;
}
.simpleImage__text {
  font-size: 1.8rem;
  line-height: 3.4rem;
  color: #676767;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .simpleImage__text {
    line-height: 2.6rem;
  }
}
.simpleImage__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.simpleImage--innerPadding .simpleImage__image {
  padding: 2.4rem;
}
.simpleImage--white {
  background-color: #fff;
}
.simpleImage--blue {
  background-color: #BCC8DA;
}
.simpleImage--yellow {
  background-color: #F4E99E;
}
.simpleImage--grey {
  background-color: #ECECED;
}

.centeredTextImage__inner {
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  justify-content: center;
  padding-block: 4rem 5.3rem;
  gap: 7.4rem;
}
@media (min-width: 768px) {
  .centeredTextImage__inner {
    flex-direction: row;
    padding-block: 8rem;
  }
}
@media (min-width: 1024px) {
  .centeredTextImage__inner {
    gap: 14.1rem;
  }
}
.centeredTextImage__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 53.7rem;
}
.centeredTextImage__label {
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-weight: 700;
  color: #083163;
}
.centeredTextImage__title {
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: 700;
  color: #083163;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .centeredTextImage__title {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
}
.centeredTextImage__text {
  font-size: 1.8rem;
  line-height: 3.4rem;
  margin-top: 2rem;
}
.centeredTextImage__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.1rem;
  font-size: 1.4rem;
  line-height: 3.2rem;
  font-weight: 700;
  color: #083163;
  width: -moz-fit-content;
  width: fit-content;
}
.centeredTextImage__link::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\E90A";
}
.centeredTextImage__link:focus {
  outline: 3px solid #ffbf47;
  outline-offset: 2px;
}
.centeredTextImage__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.centeredTextImage--white {
  background-color: #fff;
}
.centeredTextImage--blue {
  background-color: #BCC8DA;
}
.centeredTextImage--yellow {
  background-color: #F4E99E;
}
.centeredTextImage--grey {
  background-color: #ECECED;
}

.simpleQuote__inner {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding-block: 4rem;
}
@media (min-width: 768px) {
  .simpleQuote__inner {
    padding-inline: 0;
  }
}
.simpleQuote__content {
  text-align: center;
}
.simpleQuote__quote {
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: 700;
  color: #083163;
}
@media (min-width: 768px) {
  .simpleQuote__quote {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
}
.simpleQuote__text {
  font-size: 1.4rem;
  line-height: 3rem;
  letter-spacing: 0.3px;
  margin-top: 1rem;
}

.simpleVideo__inner {
  padding-block: 4rem;
}
.simpleVideo__content {
  max-width: 640px;
  margin-inline: auto;
}
.simpleVideo__videoBox {
  position: relative;
  width: 100%;
  height: 41rem;
}
.simpleVideo__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: all 0.3s;
}
.simpleVideo__image--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.simpleVideo__playButton {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8.8rem;
  height: 8.8rem;
  background-color: #d3db2b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: all 0.3s;
}
.simpleVideo__playButton::before {
  font-size: 4.5rem;
  color: #083163;
  margin-left: 0.6rem;
}
.simpleVideo__playButton:hover {
  cursor: pointer;
}
.simpleVideo__playButton:focus {
  outline: 3px solid #56f;
  outline-offset: 2px;
}
.simpleVideo__playButton--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.simpleVideo__text {
  font-size: 1.8rem;
  line-height: 3.4rem;
  color: #676767;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .simpleVideo__text {
    line-height: 2.6rem;
  }
}
.simpleVideo__video, .simpleVideo__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.simpleVideo__video {
  background-color: #000;
}
@media (max-width: 767px) {
  .simpleVideo__video {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.simpleVideo--white {
  background-color: #fff;
}
.simpleVideo--blue {
  background-color: #BCC8DA;
}
.simpleVideo--yellow {
  background-color: #F4E99E;
}
.simpleVideo--grey {
  background-color: #ECECED;
}

.simpleTable {
  --tbl-head-bg: #BBC8D9;
  --tbl-head-color: #000;
  --tbl-summary-bg: transparent;
  --tbl-summary-color: inherit;
  --tbl-row-odd-bg: #CAD4E2;
  --tbl-row-even-bg: transparent;
}
.simpleTable--head-yellow {
  --tbl-head-bg: #E4D100;
  --tbl-head-color: #000;
}
.simpleTable--head-blue {
  --tbl-head-bg: #648BA9;
  --tbl-head-color: #000;
}
.simpleTable--head-darkblue {
  --tbl-head-bg: #2E517B;
  --tbl-head-color: #000;
}
.simpleTable--sum-yellow {
  --tbl-summary-bg: #E4D100;
  --tbl-summary-color: #000;
}
.simpleTable--sum-blue {
  --tbl-summary-bg: #648BA9;
  --tbl-summary-color: #000;
}
.simpleTable--sum-darkblue {
  --tbl-summary-bg: #2E517B;
  --tbl-summary-color: #fff;
}
.simpleTable__inner {
  padding-block: 4rem 8rem;
}
.simpleTable__title {
  margin: 0 0 2rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #2e517b;
}
.simpleTable__content {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .simpleTable__content {
    overflow-x: auto;
  }
  .simpleTable__content::-webkit-scrollbar {
    width: 20px;
    border-radius: 5rem;
  }
  .simpleTable__content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1019607843);
    border-radius: 5rem;
  }
  .simpleTable__content::-webkit-scrollbar-thumb {
    background: #083163;
    border-radius: 5rem;
  }
}
.simpleTable__table {
  width: 100%;
  border-collapse: collapse;
}
.simpleTable__label, .simpleTable__text {
  display: block;
}
.simpleTable__label {
  font-size: 1.4rem;
  line-height: 2.4rem;
  font-weight: 700;
}
.simpleTable__text,
.simpleTable td {
  font-size: 1.4rem;
  line-height: 2.4rem;
}
.simpleTable td,
.simpleTable th {
  padding: 1rem;
}
.simpleTable th {
  text-align: right;
}
.simpleTable th:first-child {
  text-align: left;
}
.simpleTable th:first-child .simpleTable__label {
  max-width: 20rem;
}
.simpleTable tr td {
  text-align: right;
  max-width: 20rem;
}
.simpleTable tr td:first-child {
  text-align: left;
}
.simpleTable tr td:first-child .simpleTable__value {
  max-width: 20rem;
}
.simpleTable thead .simpleTable__row--head {
  background-color: var(--tbl-head-bg);
  color: var(--tbl-head-color);
}
.simpleTable thead .simpleTable__row--head .simpleTable__label,
.simpleTable thead .simpleTable__row--head .simpleTable__text {
  font-weight: 700;
}
.simpleTable__body > .simpleTable__row:nth-child(odd) {
  background-color: var(--tbl-row-odd-bg);
}
.simpleTable__body > .simpleTable__row:nth-child(even) {
  background-color: var(--tbl-row-even-bg);
}
.simpleTable .simpleTable__row--summary {
  background-color: var(--tbl-summary-bg) !important;
  color: var(--tbl-summary-color) !important;
  font-weight: 700;
}
.simpleTable .simpleTable__row--shade-blue {
  background-color: #BBC8D9 !important;
}
.simpleTable .simpleTable__row--shade-yellow {
  background-color: #F4E89E !important;
}
.simpleTable .simpleTable__row--bar-yellow {
  background-color: #E4D100 !important;
  color: #000 !important;
  font-weight: 700;
}
.simpleTable .simpleTable__row--bar-blue {
  background-color: #648BA9 !important;
  color: #000 !important;
  font-weight: 700;
}
.simpleTable .simpleTable__row--bar-darkblue {
  background-color: #2E517B !important;
  color: #000 !important;
  font-weight: 700;
}
.simpleTable--alt-rows-blue .simpleTable__body > .simpleTable__row:nth-child(odd) {
  background-color: #BBC8D9;
}
.simpleTable--alt-rows-blue .simpleTable__body > .simpleTable__row:nth-child(even) {
  background-color: transparent;
}
.simpleTable--alt-rows-yellow .simpleTable__body > .simpleTable__row:nth-child(odd) {
  background-color: #F4E89E;
}
.simpleTable--alt-rows-yellow .simpleTable__body > .simpleTable__row:nth-child(even) {
  background-color: transparent;
}
.simpleTable__value {
  display: inline-block;
}
.simpleTable__value--highlighted {
  font-weight: 700;
  max-width: 100% !important;
}
.simpleTable__value--spaced, .simpleTable__value--indent-1 {
  padding-left: 2rem;
  max-width: 100% !important;
}
.simpleTable__value--indent-2 {
  padding-left: 4rem;
  max-width: 100% !important;
}
.simpleTable__value--indent-3 {
  padding-left: 6rem;
  max-width: 100% !important;
}
.simpleTable--white {
  background-color: #fff;
}
.simpleTable--blue {
  background-color: #BCC8DA;
}
.simpleTable--yellow {
  background-color: #F4E99E;
}
.simpleTable--grey {
  background-color: #ECECED;
}

.textTeaser {
  padding-block: clamp(48px, 10vh, 100px);
}
.textTeaser__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 1.25rem;
}
.textTeaser--w-narrow .textTeaser__inner {
  max-width: 720px;
}
.textTeaser--w-normal .textTeaser__inner {
  max-width: 860px;
}
.textTeaser--w-wide .textTeaser__inner {
  max-width: 1080px;
}
.textTeaser--al-left .textTeaser__inner {
  text-align: left;
}
.textTeaser__title {
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: 700;
  color: #083163;
  margin-top: 0.8rem;
}
@media (min-width: 768px) {
  .textTeaser__title {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
}
.textTeaser__label {
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-weight: 700;
  color: #083163;
}
.textTeaser--bg-navy .textTeaser__title, .textTeaser--bg-navy .textTeaser__text {
  color: #fff;
}
.textTeaser__text {
  font-size: 1.8rem;
  line-height: 2.6rem;
  margin-top: 1.7rem;
  overflow: hidden;
  transition: max-height 0.35s ease;
  max-height: 10.4rem;
}
.textTeaser__text.is-expanded {
  max-height: none;
}
.textTeaser__cta {
  margin: 0.75rem 0 0;
  text-align: center;
}
.textTeaser__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  padding: 0.25rem 0.5rem;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 700;
  color: #083163;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s ease;
}
.textTeaser__toggle:hover {
  text-decoration: underline;
}
.textTeaser__toggle:focus {
  outline: 3px solid #ffbf47;
  outline-offset: 2px;
}
.textTeaser__toggle::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\E90A";
  font-size: 1.1rem;
}
.textTeaser__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.1rem;
  font-size: 1.4rem;
  line-height: 3.2rem;
  font-weight: 700;
  color: #083163;
  width: -moz-fit-content;
  width: fit-content;
}
.textTeaser__link::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\E90A";
}
.textTeaser__link:focus {
  outline: 3px solid #ffbf47;
  outline-offset: 2px;
}
.textTeaser--white {
  background-color: #fff;
}
.textTeaser--blue {
  background-color: #BCC8DA;
}
.textTeaser--yellow {
  background-color: #F4E99E;
}
.textTeaser--grey {
  background-color: #ECECED;
}

.deMap {
  padding: clamp(24px, 4vw, 40px);
  background: #fff;
  position: relative;
  z-index: 3;
}
@media (max-width: 768px) {
  .deMap {
    padding: 0px;
  }
}
.deMap__container {
  max-width: 1600px;
  margin-inline: auto;
}
.deMap__inner {
  display: grid;
  grid-template-columns: 1fr minmax(600px, 1400px);
  grid-template-areas: "locations map" "abbreviations abbreviations";
  gap: clamp(16px, 3vw, 32px);
  align-items: start;
}
@media (max-width: 980px) {
  .deMap__inner {
    grid-template-columns: 1fr;
    grid-template-areas: "locations" "map" "abbreviations";
  }
}
@media (max-width: 768px) {
  .deMap__inner {
    grid-template-columns: 1fr;
    grid-template-areas: "map";
  }
}
.deMap__legend--locations {
  grid-area: locations;
  display: grid;
  align-content: start;
  gap: 12px;
}
@media (max-width: 768px) {
  .deMap__legend--locations {
    display: none;
  }
}
.deMap__stage {
  grid-area: map;
  position: relative;
  aspect-ratio: 1513/1100;
  background: transparent;
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.deMap__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
}
.deMap__legendTitle {
  margin: 0 0 8px;
  font-weight: 700;
  color: #083163;
  font-size: clamp(16px, 1.4vw, 18px);
  white-space: nowrap;
}
@media (max-width: 700px) {
  .deMap__legendTitle {
    white-space: normal;
  }
}
.deMap__list {
  list-style: none;
  margin: 0;
  padding: 0;
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: 32px;
       column-gap: 32px;
}
@media (max-width: 768px) {
  .deMap__list {
    -moz-columns: 1;
         columns: 1;
  }
}
.deMap__item {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  display: flex;
  align-items: flex-start;
  padding: 6px 0 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.15s ease, outline 0.15s ease;
  outline: 1px solid transparent;
  font-size: 16px;
}
.deMap__item:hover, .deMap__item.is-active {
  background-color: #f0f0f0;
  outline: 2px solid #083163;
}
.deMap__item:focus-visible {
  outline: 2px solid #083163;
  outline-offset: 2px;
  background-color: #f0f0f0;
}
.deMap__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #083163;
  color: #083163;
  background: #fff;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  margin-right: 8px;
  flex-shrink: 0;
}
.deMap__item-text {
  flex-grow: 1;
}
.deMap__name {
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.deMap__desc {
  display: block;
  color: #333;
  font-size: 16px;
  line-height: 1.25;
}
.deMap__legend--abbrev {
  grid-area: abbreviations;
  margin-top: clamp(16px, 2vw, 24px);
  padding-top: clamp(8px, 1.5vw, 12px);
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
@media (max-width: 768px) {
  .deMap__legend--abbrev {
    display: none;
  }
}
.deMap__abbrevList {
  display: grid;
  grid-template-columns: minmax(60px, 100px) 1fr minmax(60px, 100px) 1fr;
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 6px;
  margin: 0;
  padding: 0;
}
@media (max-width: 900px) {
  .deMap__abbrevList {
    grid-template-columns: minmax(60px, 100px) 1fr;
  }
}
.deMap .deMap__abbrev {
  display: contents;
}
.deMap .deMap__abbrev dt {
  font-weight: 700;
}
.deMap .deMap__abbrev dd {
  margin: 0 0 6px 0;
  color: #111;
}
.deMap__marker {
  position: absolute;
  /* Offsets für enge Breakpoints */
  --dx: 0px;
  --dy: 0px;
  transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy)));
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #083163;
  color: #083163;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.deMap__marker:hover, .deMap__marker:focus-visible, .deMap__marker.is-active {
  background: #083163;
  color: #fff;
  transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(1.1);
  z-index: 3;
}
.deMap__marker:focus {
  outline: none;
}
.deMap__tooltip {
  position: absolute;
  top: 0;
  left: 0;
  background: #D8D8D8;
  border: 2px solid #111;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 14px 16px 16px;
  color: #111;
  width: -moz-max-content;
  width: max-content;
  max-width: 360px;
  min-width: 280px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  pointer-events: none;
}
.deMap__tooltip.is-active {
  opacity: 1;
  visibility: visible;
}
.deMap__tooltip .deMap__tt-title {
  margin: 0 0 10px;
  font-weight: 800;
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.2;
  color: #000;
}
.deMap__tooltip .deMap__tt-list {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
}
.deMap__tooltip .deMap__tt-list li {
  color: #111;
  font-size: 15px;
  line-height: 1.35;
  margin: 0 0 6px;
}
.deMap {
  /* Mobile: kleinere Marker */
}
@media (max-width: 768px) {
  .deMap__marker {
    width: 18px;
    height: 18px;
    font-size: 9px;
    border-width: 2px;
  }
  .deMap__marker:hover, .deMap__marker:focus-visible, .deMap__marker.is-active {
    transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(1.05);
  }
}
@media (min-width: 980px) {
  .deMap__marker {
    width: 22px;
    height: 22px;
    font-size: 11px;
  }
  .deMap__marker[data-id="12"] {
    --dx: -4px;
    --dy: -4px;
  }
  .deMap__marker[data-id="13"] {
    --dx: 4px;
    --dy: 0px;
  }
  .deMap__marker[data-id="14"] {
    --dx: -3px;
    --dy: 3px;
  }
  .deMap__marker[data-id="15"] {
    --dx: 3px;
    --dy: -3px;
  }
  .deMap__marker[data-id="16"] {
    --dx: 0px;
    --dy: 4px;
  }
  .deMap__marker[data-id="17"] {
    --dx: 0px;
    --dy: 6px;
  }
}

.textImageTeaserSlider .textImageTeaser__container {
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .textImageTeaserSlider .textImageTeaser__container {
    padding-bottom: 6rem;
  }
}
.textImageTeaserSlider--white {
  background-color: #fff;
}
.textImageTeaserSlider--blue {
  background-color: #BCC8DA;
}
.textImageTeaserSlider--yellow {
  background-color: #F4E99E;
}
.textImageTeaserSlider--grey {
  background-color: #ECECED;
}
.textImageTeaserSlider--reverse .textImageTeaser__inner {
  flex-direction: column;
}
@media (min-width: 1024px) {
  .textImageTeaserSlider--reverse .textImageTeaser__inner {
    flex-direction: row-reverse;
  }
}
.textImageTeaserSlider--reverse .textImageTeaser__img {
  margin-left: auto;
}

.textImageTeaser__quote {
  margin-top: 1.5rem;
  margin-bottom: 2.2rem;
  color: #083163;
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 0.071rem;
  line-height: 1.44;
}
@media (max-width: 767px) {
  .textImageTeaser__quote {
    font-size: 2.4rem;
    line-height: 1.5;
    margin-bottom: 1.6rem;
  }
}
.textImageTeaser__quote-author {
  margin-top: 0;
  color: #083163;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.03rem;
  line-height: 1.4;
  margin-top: 5rem;
}
.textImageTeaser__quote-author-meta {
  display: inline-block;
  margin-top: 0.2rem;
  font-weight: 400;
}
.textImageTeaser__quote-author-meta {
  font-style: italic;
}

.contributionSlider__container {
  padding-block: 0 6rem;
}
@media (min-width: 1024px) {
  .contributionSlider__container {
    padding-block: 0 11rem;
  }
}
.contributionSlider__title {
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: 700;
  color: #083163;
}
@media (min-width: 768px) {
  .contributionSlider__title {
    font-size: 2rem;
    line-height: 3.6rem;
  }
}
.contributionSlider__slider {
  margin-top: 3rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .contributionSlider__slider {
    margin-top: 4rem;
  }
}
.contributionSlider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.contributionSlider .swiper-slide {
  height: auto;
  display: flex;
}
.contributionSlider__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #fff;
  padding: 3rem;
  border: 1px solid #ECECED;
}
.contributionSlider__card-title {
  font-size: 1.8rem;
  line-height: 2.6rem;
  font-weight: 700;
  color: #083163;
}
.contributionSlider__card-foot {
  margin-top: auto;
  padding-top: 1.5rem;
}
.contributionSlider__card-line {
  width: 100%;
  height: 2px;
  background-color: #e1e6ec;
  margin-bottom: 1.5rem;
}
.contributionSlider__card-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  line-height: 2.2rem;
  font-weight: 700;
  color: #083163;
  width: -moz-fit-content;
  width: fit-content;
}
.contributionSlider__card-link::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\E90A";
}
.contributionSlider__card-link:focus {
  outline: 3px solid #ffbf47;
  outline-offset: 2px;
}
.contributionSlider__navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
  gap: 2.6rem;
}
@media (min-width: 768px) {
  .contributionSlider__navigation {
    justify-content: flex-start;
    margin-top: 5rem;
  }
}
.contributionSlider__pagination {
  display: flex;
}
.contributionSlider__arrow:focus {
  outline: 3px solid #ffbf47;
  outline-offset: 2px;
}
.contributionSlider--no-slider .contributionSlider__navigation {
  display: none;
}
.contributionSlider--no-slider .is-static > div {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
@media (min-width: 768px) {
  .contributionSlider--no-slider .is-static > div {
    justify-content: flex-start;
  }
}
.contributionSlider--no-slider .is-static > div > * {
  flex: 1 1 300px;
  max-width: 350px;
}
.contributionSlider--no-slider .contributionSlider__slider {
  overflow: visible;
}

.barChart {
  position: relative;
  z-index: 3;
}
.barChart__inner {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: clamp(12px, 2vw, 20px);
}
.barChart__title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: #083163;
}
.barChart__canvasWrap {
  position: relative;
  --rows: 6;
  --row-height: 64px;
  height: max(600px, var(--rows) * var(--row-height));
  padding-top: clamp(8px, 1.5vw, 20px);
  padding-bottom: clamp(8px, 1.5vw, 20px);
}
.barChart__canvasWrap canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
.barChart__desc {
  margin-top: 10px;
  font-size: 14px;
  color: #6b7280;
}
.barChart--horizontal .barChart__canvasWrap {
  --row-height: 68px;
}
.barChart--stacked .barChart__canvasWrap {
  --row-height: 72px;
  padding-right: clamp(16px, 7vw, 320px);
}
@media (max-width: 1024px) {
  .barChart__canvasWrap {
    --row-height: 60px;
    padding-right: clamp(12px, 5vw, 200px);
  }
}
@media (max-width: 768px) {
  .barChart__canvasWrap {
    --row-height: 56px;
    padding-left: clamp(8px, 3vw, 24px);
    padding-right: clamp(8px, 4vw, 140px);
  }
}
@media (max-width: 480px) {
  .barChart__canvasWrap {
    --row-height: 52px;
    height: max(600px, var(--rows) * var(--row-height));
    padding-left: 12px;
    padding-right: 12px;
  }
}
.barChart__downloadLink {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  line-height: 3.2rem;
  font-weight: 700;
  color: #083163;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.barChart__downloadLink::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\E90A";
}
.barChart__downloadLink:focus {
  outline: 3px solid #ffbf47;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.statBoxSection {
  position: relative;
  z-index: 1;
}
.statBoxSection__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-block: 4rem;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .statBoxSection__inner {
    padding-block: 10rem;
    flex-direction: row;
    gap: 3rem;
  }
}
@media (min-width: 768px) {
  .statBoxSection__content {
    width: 47.75%;
  }
}
.statBoxSection__title {
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: 700;
  color: #083163;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .statBoxSection__title {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
}
.statBoxSection__text {
  font-size: 1.8rem;
  line-height: 3.4rem;
  margin-top: 1.5rem;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.statBoxSection__box {
  width: 100%;
}
@media (min-width: 768px) {
  .statBoxSection__box {
    width: 52.25%;
  }
}
.statBoxSection--reversed .statBoxSection__inner {
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .statBoxSection--reversed .statBoxSection__inner {
    flex-direction: row-reverse;
  }
}
.statBoxSection--white {
  background-color: #fff;
}
.statBoxSection--blue {
  background-color: #BCC8DA;
}
.statBoxSection--yellow {
  background-color: #F4E99E;
}
.statBoxSection--grey {
  background-color: #ECECED;
}

.statBox {
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 8px;
  padding: clamp(10rem, 5vw, 4rem);
  min-height: unset;
}
.statBox__inner {
  width: min(40rem, 92%);
}
.statBox__number {
  margin: 0 0 0.5rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: clamp(3.2rem, 9vw, 7.2rem);
  display: inline-flex;
  align-items: baseline;
  gap: 0.25ch;
}
.statBox__number .statBox__value {
  line-height: 1;
}
.statBox__number .statBox__unit {
  margin-left: 0.25ch;
  font-weight: 700;
  font-size: 0.55em;
  line-height: 1;
}
.statBox__copy {
  margin: 0;
  font-weight: 600;
  line-height: 1.25;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  max-width: 24ch;
  margin-inline: auto;
}
.statBox--blue-light {
  background-color: #BCC8DA;
}
.statBox--yellow {
  background-color: #D3DB2B;
}
.statBox--blue-dark {
  background-color: #003472;
}
.statBox--text-blue {
  color: #003472;
}
.statBox--text-yellow {
  color: #D3DB2B;
}

@media (min-width: 768px) {
  .statBox__number {
    font-size: clamp(5rem, 6vw, 9rem);
  }
  .statBox__copy {
    font-size: clamp(1.8rem, 1.8vw, 2.4rem);
  }
}
.asideFooter {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 25px 20px;
  background: #083163;
}
.asideFooter__links {
  display: flex;
  justify-content: center;
}
.asideFooter__item + .asideFooter__item {
  margin-left: 27px;
}
.asideFooter__link {
  transition: color 0.3s;
  color: #d3db2b;
  font-size: 1.4rem;
  font-weight: 700;
}
.asideFooter__link:hover {
  color: #fff;
}
.asideFooter__link:focus {
  outline: 3px solid #ffbf47;
  outline-offset: 2px;
}

.breadcrumbs {
  background: #d3db2b;
  overflow: hidden;
}
.breadcrumbs__items {
  display: flex;
  align-items: center;
  padding: 13px 0;
}
.breadcrumbs__home:before {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #083163;
  font-size: 1.5rem;
  content: "\E910";
}
.breadcrumbs__home span {
  position: absolute;
  top: auto;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.breadcrumbs__item {
  display: flex;
  position: relative;
  align-items: center;
  color: #083163;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.019rem;
  white-space: nowrap;
}
.breadcrumbs__item:before {
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 0 11px;
  background: #083163;
  content: "";
}
.breadcrumbs__itemLink {
  color: #083163;
}
.breadcrumbs__itemLink:focus {
  outline: 3px solid #083163;
  outline-offset: 2px;
}

.cardSlider {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  margin-bottom: 100px;
}
@media (max-width: 599px) {
  .cardSlider {
    margin-bottom: 0;
  }
}
.cardSlider:focus-within .cardSlider__galleryButtons, .cardSlider:hover .cardSlider__galleryButtons {
  opacity: 1;
  pointer-events: all;
}
.cardSlider--modal {
  height: 100vh;
}
.cardSlider__slides {
  position: relative;
  margin: 32px 0;
}
.cardSlider__slide {
  margin: 0 70px;
}
@media (max-width: 599px) {
  .cardSlider__slide {
    margin: 0;
  }
}
.cardSlider__slide--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: #083163;
  font-size: 3rem;
}
.cardSlider__slideInner {
  position: relative;
}
.cardSlider__controls {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  pointer-events: none;
}
.cardSlider--modal .cardSlider__controls {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cardSlider__photoWrapper {
  overflow: hidden;
}
.cardSlider__photo {
  width: 100%;
  transition: transform 0.3s;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  pointer-events: none;
}
.cardSlider__content {
  padding: 0 25px;
}
@media (max-width: 767px) {
  .cardSlider__content {
    padding: 0 20px;
  }
}
.cardSlider__date {
  display: inline-block;
  position: relative;
  margin-top: 30px;
  padding-left: 26px;
  color: rgba(151, 151, 151, 0.5);
  font-size: 1.4rem;
  font-weight: 300;
}
.cardSlider__date::before {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  font-size: 16px;
  line-height: 16px;
  text-align: left;
  color: #083163;
  content: "\E918";
}
html[dir=rtl] .cardSlider__date {
  padding-right: 26px;
  padding-left: 0;
}
html[dir=rtl] .cardSlider__date::before {
  right: 0;
  left: auto;
}
.cardSlider__location {
  display: inline-block;
  position: relative;
  margin: 2px 0 0;
  padding-left: 20px;
  color: rgba(151, 151, 151, 0.5);
  font-size: 1.4rem;
}
.cardSlider__location::before {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  font-size: 16px;
  line-height: 16px;
  text-align: left;
  color: #083163;
  content: "icon-location";
}
html[dir=rtl] .cardSlider__location {
  margin-right: 10px;
  margin-left: 0;
  padding-right: 20px;
  padding-left: 0;
}
html[dir=rtl] .cardSlider__location::before {
  right: 0;
  left: auto;
}
.cardSlider__header {
  position: relative;
  margin-top: 40px;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.5;
}
.cardSlider__header::before {
  position: absolute;
  top: -20px;
  left: 0;
  width: 21px;
  height: 2px;
  background-color: #083163;
  content: "";
}
html[dir=rtl] .cardSlider__header::before {
  right: 0;
  left: auto;
}
@media (max-width: 1279px) {
  .cardSlider__header {
    margin-top: 36px;
  }
  .cardSlider__header::before {
    top: -15px;
  }
}
@media (max-width: 767px) {
  .cardSlider__header {
    font-size: 1.8rem;
  }
}
.cardSlider__img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.cardSlider__photoSet {
  display: flex;
  flex-wrap: wrap;
  margin: -7px -7px 0;
  padding: 15px;
}
.cardSlider__photoSetInner {
  position: relative;
  flex-basis: 50%;
  max-width: 50%;
  padding: 7px;
}
.cardSlider__photoSetInner:first-child {
  flex-basis: 100%;
  max-width: 100%;
}
.cardSlider__photoSetInner::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  border-radius: 50%;
  background-color: #083163;
  content: "";
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}
.cardSlider__photoSetInner::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  margin-left: -12px;
  margin-top: -11px;
  margin-left: -13px;
  transition: opacity 0.3s;
  color: #fff;
  content: "\E918";
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}
.cardSlider__photoSetInner:hover::before, .cardSlider__photoSetInner:hover::after {
  opacity: 1;
}
.cardSlider__photoLink {
  display: block;
  position: relative;
}
.cardSlider__photoLink::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s;
  background-color: rgba(151, 151, 151, 0.67);
  content: "";
  opacity: 0;
}
.cardSlider__photoLink:hover::before {
  opacity: 1;
}
.cardSlider__photoBig, .cardSlider__photoSmall {
  width: 100%;
}
.cardSlider__galleryClose {
  position: absolute;
  top: 20px;
  right: 20px;
}
.cardSlider__galleryButtons {
  display: flex;
  position: absolute;
  top: 50%;
  left: 0;
  justify-content: space-between;
  width: 100%;
  transform: translateY(-50%);
  transition: opacity 0.3s;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 599px) {
  .cardSlider__galleryButtons {
    display: none;
  }
}
.cardSlider--modal.active .cardSlider__galleryButtons {
  top: 50%;
  bottom: auto;
  transform: translateY(-50px);
}
.cardSlider__galleryButtons--vCentered {
  top: 50%;
  right: -48px;
  left: -48px;
  width: auto;
  height: 1px;
  margin: 0;
  padding: 0;
  transform: translateY(-17px);
}
@media (max-width: 1279px) {
  .cardSlider__galleryButtons--vCentered {
    right: -10px;
    left: -10px;
  }
}
.cardSlider__galleryIndicators {
  display: inline-flex;
  position: absolute;
  bottom: 0;
  left: 50%;
  justify-content: center;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: auto;
}
.cardSlider--modal.active .cardSlider__galleryIndicators {
  bottom: 50px;
}
@media (max-width: 599px) {
  .cardSlider__galleryIndicators {
    bottom: 0;
  }
}
@media print {
  .cardSlider {
    display: none;
  }
}
.cardSlider--withtext .cardSlider__img {
  max-height: 240px;
  margin: 0 auto;
}
.cardSlider--withtext .cardSlider__content {
  margin: 12px 0 40px;
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 599px) {
  .cardSlider--withtext .cardSlider__content {
    padding: 0;
  }
}
.cardSlider--withtext .cardSlider__header {
  margin: 0;
  font-size: 1em;
  font-weight: 700;
}
.cardSlider--withtext .cardSlider__header--large {
  font-size: 18rem;
}
@media (max-width: 599px) {
  .cardSlider--withtext .cardSlider__header--large {
    font-size: 15rem;
  }
}
.cardSlider--withtext .cardSlider__header::before {
  display: none;
}
.cardSlider--withtext .cardSlider__text {
  margin: 0;
}
.cardSlider--withtext .cardSlider__text p {
  margin: 0;
}

.reusable__flexRow {
  display: flex;
  flex-wrap: wrap;
}
.reusable__pre {
  display: block;
  font-family: "Courier New", Courier, monospace;
  white-space: pre;
  unicode-bidi: embed;
}
.reusable__whiteBack {
  background-color: #fff;
}
body.contrast .reusable__whiteBack {
  background-color: #0b0c0c;
}
.reusable__columns {
  -moz-column-count: 2;
       column-count: 2;
}
.reusable__colorBox {
  width: 75px;
  height: 75px;
  margin-right: 10px;
  border: 1px solid #000;
}
.reusable__colorHex {
  width: 100px;
}
.reusable__3cols {
  -moz-column-count: 3;
       column-count: 3;
}
.reusable__color {
  width: 300px;
  height: 60px;
  margin: 10px;
  padding: 10px;
  border: 1px solid #979797;
  font-weight: 600;
  -moz-column-break-inside: avoid;
       break-inside: avoid-column;
}

.langSwitcher {
  padding-left: 20px;
  border-left: 1px solid #979797;
}
html[dir=rtl] .langSwitcher {
  padding-right: 20px;
  padding-left: 0;
  border-right: 1px solid #979797;
  border-left: 0 solid transparent;
}
.langSwitcher__link {
  transition: opacity 0.3s;
  color: #979797;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 47px;
}
.langSwitcher__link:hover {
  opacity: 0.7;
}

.searchForm {
  position: absolute;
  top: 84px;
  width: 100%;
  padding: 50px 30px;
  transform: translateY(calc(-100% - 84px));
  transition: opacity 0.3s, transform 0.3s;
  background-color: #fff;
  z-index: 5;
}
.search .searchForm {
  position: relative;
  top: 0;
  transform: none;
}
.searchForm:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(8, 49, 99, 0.05);
  content: "";
  z-index: -1;
}
@media (max-width: 767px) {
  .searchForm {
    padding: 50px 20px;
  }
}
@media (max-width: 599px) {
  .searchForm {
    padding: 20px 0 30px;
  }
}
.searchForm--show {
  transform: none;
}
.searchForm__form {
  position: relative;
  width: 100%;
}
.searchForm__inputWrapper {
  position: relative;
}
.searchForm__input {
  flex-grow: 1;
  width: 100%;
  height: 50px;
  padding: 0 65px 0 25px;
  border: 1px solid #e6e6e6;
  border-right: 0;
  border-radius: 10px;
  font-family: "DINProDRVp", Tahoma, Arial;
  font-size: 1.5rem;
  letter-spacing: 1px;
}
.searchForm__input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.searchForm__input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.searchForm__input:focus {
  outline: 3px solid #56f;
  outline-offset: 2px;
}
.header--white .searchForm__input:focus {
  outline-color: #ffbf47;
}
.searchForm__input:focus {
  outline-offset: 4px;
}
.searchForm.active .searchForm__input {
  padding: 0 65px 0 42px;
}
.searchForm__clear {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  transition: background-color 0.3s, color 0.3s, opacity 0.3s;
  border-radius: 50%;
  background: #083163;
  color: #fff;
  font-size: 0;
  cursor: pointer;
  opacity: 0;
}
.searchForm__clear:before {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 8px;
  line-height: 8px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  margin-left: -4px;
  content: "\E907";
}
.searchForm__clear:hover {
  background: #d3db2b;
  color: #083163;
}
.searchForm.active .searchForm__clear {
  opacity: 1;
}
.searchForm__button {
  position: absolute;
  top: 0;
  right: 0;
}
.searchForm__button:focus {
  outline: 3px solid #56f;
  outline-offset: 2px;
}
.header--white .searchForm__button:focus {
  outline-color: #ffbf47;
}
.header.header--white .searchForm {
  background-color: #000;
}
.header.header--white .searchForm__input {
  border-color: #fff;
}
.header.header--white .searchForm__button {
  border-color: #fff;
  border-left-color: #000;
  background-color: #fff;
  color: #000;
}
.header.header--white .searchForm__button:hover {
  background-color: #000;
  color: #fff;
}
.searchForm__label {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}
.searchForm__tags {
  display: flex;
  align-items: center;
  margin-top: 5px;
}
@media (max-width: 1023px) {
  .searchForm__tags {
    flex-wrap: wrap;
  }
}

.topLogo__link {
  display: flex;
  align-items: center;
  background-color: transparent;
  cursor: pointer;
}
.topLogo__link:focus {
  outline: 3px solid #56f;
  outline-offset: 2px;
}
.header--white .topLogo__link:focus {
  outline-color: #ffbf47;
}
.topLogo__image img {
  max-height: 40px;
}
@media (max-width: 479px) {
  .topLogo__image img {
    max-height: 38px;
  }
}

.topMenu {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 446px;
  height: 100%;
  padding: 100px 70px;
  transform: translateX(446px);
  transition: transform 0.3s ease 0s;
  background-color: #d3db2b;
  overflow: hidden;
  z-index: -1;
}
@media only screen and (max-height: 600px) and (orientation: landscape) {
  .topMenu {
    padding: 50px 120px 50px 70px;
  }
}
@media only screen and (max-height: 400px) and (orientation: landscape) {
  .topMenu {
    padding: 30px 120px 30px 70px;
  }
}
@media (max-width: 599px) {
  .topMenu {
    padding: 84px 40px 50px;
  }
}
.topMenu.active {
  display: flex;
  transform: translateX(0);
  transition: transform 0.3s ease 0.1s;
  z-index: 1;
}
.topMenu.active .topMenu__info {
  opacity: 1;
}
.topMenu__item {
  position: relative;
}
.topMenu__item.active > .topMenu__subSubMenu, .topMenu__item.active > .topMenu__subMenu {
  max-height: 100%;
  opacity: 1;
  pointer-events: auto;
}
.topMenu__item--hasChildren {
  cursor: pointer;
}
.topMenu__item--hasChildren:before {
  position: absolute;
  top: 0;
  bottom: -20px;
  left: 50%;
  width: 250%;
  transform: translateX(-50%);
  transition: opacity 0.3s;
  background: rgba(255, 255, 255, 0.3);
  content: "";
  opacity: 0;
}
.topMenu__item--hasChildren.active:before {
  opacity: 1;
}
.topMenu__item--hasChildren.active span:before {
  opacity: 1;
}
.topMenu__item--hasChildren.active span::after {
  transform: rotate(-180deg);
}
.topMenu__link {
  display: inline-block;
  position: relative;
  flex-direction: column;
  width: 100%;
  padding: 16px 0;
  transition: color 0.3s, transform 0.3s;
  color: #083163;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.1;
}
@media only screen and (max-height: 600px) and (orientation: landscape) {
  .topMenu__link {
    padding: 6px 0;
  }
}
@media only screen and (max-height: 400px) and (orientation: landscape) {
  .topMenu__link {
    padding: 3px 0;
  }
}
.topMenu__link:focus span {
  outline: 3px solid #ffbf47;
  outline-offset: 2px;
}
.topMenu__link:hover {
  transform: translateX(20px);
}
@media (max-width: 599px) {
  .topMenu__link:hover {
    transform: none;
  }
}
.topMenu__link span {
  display: inline-block;
  position: relative;
}
.topMenu__link.topMenu__link:hover span:before {
  opacity: 1;
}

.topMenu__link span:before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  transition: opacity 0.3s;
  background: #083163;
  content: "";
  opacity: 0;
}
.topMenu__link--lang {
  margin-left: 32px;
}
.topMenu__link--lang.active::before, .topMenu__link--lang:hover::before {
  max-width: 100%;
  background-color: #979797;
  animation: maxToHide 0.6s 1 normal forwards;
}
.topMenu__link--hasChildren span::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  font-size: 8px;
  line-height: 8px;
  text-align: right;
  right: -20px;
  transition: transform 0.3s;
  color: #083163;
  content: "\E903";
}
html[dir=rtl] .topMenu__link--hasChildren span::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 11px;
  height: 11px;
  margin-top: -5.5px;
  font-size: 11px;
  line-height: 11px;
  text-align: left;
  right: initial;
  left: -20px;
}
.topMenu__link--hasChildren:hover {
  transform: none;
}
.topMenu__tools {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
}
.topMenu__sign, .topMenu__read {
  display: none;
}
@media (min-width: 480px) {
  .topMenu__sign, .topMenu__read {
    display: block;
    background-color: transparent;
    padding-inline: 0;
  }
}
.topMenu__sign::before, .topMenu__read::before {
  color: #083163;
  font-size: 1.6rem;
}
@media (hover: hover) {
  .topMenu__sign:hover, .topMenu__read:hover {
    cursor: pointer;
  }
}
.topMenu__sign:focus, .topMenu__read:focus {
  outline: 3px solid #56f;
  outline-offset: 2px;
}
.topMenu__lang {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "DINProDRVp", Tahoma, Arial;
  font-size: 1.4rem;
  font-weight: 700;
  color: #083163;
  line-height: 34px;
  text-transform: uppercase;
  background-color: transparent;
}
@media (hover: hover) {
  .topMenu__lang:hover {
    cursor: pointer;
  }
}
.topMenu__lang:focus {
  outline: 3px solid #56f;
  outline-offset: 2px;
}
.topMenu__lang--expanded .topMenu__chevron::before {
  transform: rotate(180deg);
}
.topMenu__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border: 0.15rem solid #083163;
  border-radius: 1rem;
  padding-block: 2.2rem;
  display: flex;
  flex-direction: column-reverse;
  opacity: 0;
  visibility: hidden;
  gap: 1.3rem;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}
.topMenu__dropdown--active {
  transform: translateX(-50%);
  visibility: visible;
  opacity: 1;
}
.topMenu__langLink {
  font-size: 1.8rem;
  line-height: 2.6rem;
  font-weight: 400;
  color: #083163;
  padding-inline: 3.2rem;
  padding-block: 0;
}
.topMenu__langLink--active {
  font-weight: 700;
}
.topMenu__chevron::before {
  display: block;
  font-size: 0.5rem;
}
.topMenu__subMenu {
  min-width: 300px;
  max-height: 0;
  transition: opacity 0.3s, max-height 0.3s;
  box-shadow: 0 10px 15px rgba(151, 151, 151, 0.05);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}
.topMenu__subMenu .topMenu__link {
  padding: 10px 0 5px;
  font-size: 1.6rem;
}
.topMenu__subMenu.active {
  opacity: 1;
  pointer-events: auto;
}
.topMenu__subSubMenu {
  min-width: 160px;
  margin-left: 10px;
  padding: 10px 4px 4px;
  transition: opacity 0.3s, max-height 0.3s;
  box-shadow: 0 10px 15px rgba(151, 151, 151, 0.05);
  z-index: 1;
}
.topMenu__subSubMenu .topMenu__link {
  padding: 6px 0;
  font-size: 1.4rem;
  font-weight: 500;
}
.topMenu__search {
  display: flex;
  align-items: center;
}
.topMenu__searchText {
  display: none;
}
@media (min-width: 480px) {
  .topMenu__searchText {
    display: block;
    color: #083163;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.018rem;
  }
}
.topMenu__searchButton {
  display: block;
  position: relative;
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin: 0;
  margin-left: 9px;
  padding: 0;
  transition: color 0.3s;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}
.topMenu__searchButton::before {
  color: #083163;
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\E918";
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  margin-left: -9px;
}
.topMenu__searchButton:hover {
  color: rgba(8, 49, 99, 0.8);
}
.header.header--white .topMenu__searchButton:hover {
  color: rgba(255, 255, 255, 0.8);
}
.topMenu__searchButton:focus {
  outline: 3px solid #56f;
  outline-offset: 2px;
}
.header--white .topMenu__searchButton:focus {
  outline-color: #ffbf47;
}
@media (max-width: 479px) {
  .topMenu__searchButton::before {
    font-size: 26px;
    line-height: 26px;
    text-align: center;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 26px;
    margin-top: -13px;
    margin-left: -13px;
  }
}
.topMenu__searchButton--white {
  color: #fff;
}
.topMenu__searchButton--black {
  color: #000;
}
.topMenu__menu {
  display: flex;
  scrollbar-width: none;
}
@media (max-width: 767px) {
  .topMenu__menu {
    overflow-y: auto;
  }
}
.topMenu__menu--modal {
  margin-bottom: 4rem;
}
.topMenu__menu::-webkit-scrollbar {
  display: none;
}
.topMenu__menu:focus {
  outline: 3px solid #56f;
  outline-offset: 2px;
}
.header--white .topMenu__menu:focus {
  outline-color: #ffbf47;
}
.topMenu__menuText {
  display: block;
  margin-left: 9px;
  color: #083163;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.018rem;
}
.topMenu__closeText {
  margin-right: 6px;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.03rem;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transition: opacity 0.3s ease 0s;
  transition-delay: 0.15s;
  background-color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  z-index: 100;
  pointer-events: none;
}
.lightbox--show {
  transition-delay: 0s;
  opacity: 1;
  pointer-events: all;
}
.lightbox--show .lightbox__inner {
  transform: none;
  transition-delay: 0.15s;
}
.lightbox__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 25px 0;
  transform: translateX(-100%);
  transition: transform 0.3s ease 0.1s;
  transition-delay: 0s;
  color: #000;
}
.lightbox__counter {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.lightbox__close {
  position: absolute;
  top: 100px;
  right: 60px;
  padding-right: 60px;
  z-index: 999;
}
.lightbox__close.button:after {
  left: calc(100% - 40px);
}
.lightbox__close:focus {
  outline: 3px solid #ffbf47;
  outline-offset: 2px;
}
.lightbox__swiper {
  width: 100%;
}
.lightbox__swiperSlide {
  display: flex;
  align-items: center;
}
.lightbox__swiperImage {
  max-width: calc(100% - 200px);
  max-height: 100%;
  margin: auto;
}
@media (max-width: 767px) {
  .lightbox__swiperImage {
    max-width: calc(100% - 40px);
  }
}
.lightbox__swiperNav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}
.lightbox__swiperNav:focus {
  outline: 3px solid #ffbf47;
  outline-offset: 2px;
}
@media (max-width: 767px) {
  .lightbox__swiperNav {
    display: none;
  }
}
.lightbox__swiperNav[data-lightbox-prev] {
  left: 25px;
}
.lightbox__swiperNav[data-lightbox-next] {
  right: 25px;
}
.lightbox__title {
  max-width: 651px;
  margin-top: 20px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.57;
  text-align: center;
}

[data-lightbox-trigger] {
  cursor: pointer;
}
[data-lightbox-trigger]:focus {
  outline: 3px solid #56f;
  outline-offset: 2px;
}
.sections--white [data-lightbox-trigger]:focus {
  outline-color: #ffbf47;
}

.socialShare {
  position: relative;
}
.socialShare__button:hover + .socialShare__icons, .socialShare__button:focus + .socialShare__icons {
  transform: translate(-50%, -60px);
  opacity: 1;
  pointer-events: all;
}
.socialShare__icons {
  position: absolute;
  left: 50%;
  margin-top: -30px;
  padding: 16px 32px;
  transform: translate(-50%, 0);
  transition: opacity 0.3s, transform 0.3s;
  border-radius: 8px;
  display: flex;
  background-color: #083163;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  z-index: 100;
  pointer-events: none;
}
.socialShare__icons:focus-within, .socialShare__icons:hover {
  transform: translate(-50%, -60px);
  opacity: 1;
  pointer-events: all;
}
.socialShare__icons::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 20px;
  height: 20px;
  transform: translate(-50%, 50%) rotate(45deg);
  background-color: #083163;
  content: "";
}
.socialShare__icons::after {
  display: block;
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.socialShare__icons .shared-counts-wrap {
  margin-bottom: 0;
  overflow: visible;
}
.socialShare__icons .shared-counts-button {
  position: relative;
}
.socialShare__icons .shared-counts-button:focus {
  outline: 3px solid #56f;
  outline-offset: 2px;
  z-index: 1;
}
.articleIntro + .socialShare {
  margin: -50px 0 70px;
}
.socialShare__icon {
  transition: color 0.3s;
  color: #fff;
  font-size: 20px;
}
.socialShare__icon:not(:last-child) {
  margin-right: 30px;
}
.socialShare__icon:hover {
  color: #d3db2b;
}

.copyright {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 100%;
  max-width: 300px;
  text-align: right;
}
.copyright--bottom {
  top: auto;
  right: calc(-1 * (100vw - 670px) / 2 + 1px);
  bottom: 1px;
}
.heroBanner--introBelow .copyright--bottom {
  right: 1px;
  width: 100%;
  max-width: 300px;
  text-align: right;
}
@media screen and (max-width: 670px) {
  .copyright--bottom {
    right: 1px;
  }
}
.copyright:focus-within .copyright__tooltip, .copyright:hover .copyright__tooltip {
  transform: translate(0, -50%);
  opacity: 1;
  pointer-events: auto;
}
.copyright:focus-within {
  outline: 3px solid #56f;
  outline-offset: 2px;
}
.sections--white .copyright:focus-within {
  outline-color: #ffbf47;
}
.copyright__button {
  opacity: 0.3;
}
.copyright__button:focus {
  outline: none;
}
.copyright__tooltip {
  position: absolute;
  top: 50%;
  right: 36px;
  padding: 14px 20px;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s, transform 0.3s;
  background-color: #000;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 1px;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
}
.copyright__tooltip::before {
  display: block;
  position: absolute;
  top: 50%;
  right: -5px;
  width: 10px;
  height: 10px;
  transform: translateY(-50%) rotate(45deg);
  background-color: #000;
  content: "";
}

.articleIntro {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  text-align: left;
  padding-top: 4rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .articleIntro {
    flex-direction: row;
    padding-top: 7.8rem;
    padding-bottom: 5.2rem;
  }
}
.articleIntro--headerSection {
  align-items: center;
  width: 100%;
  text-align: center;
}
.articles .articleIntro--headerSection {
  margin-bottom: 30px;
}
.articleIntro--smallSection {
  margin-top: 28px;
}
@media (max-width: 767px) {
  .articleIntro--smallSection:last-child {
    margin-bottom: 0;
  }
}
.articleIntro--smallSection:not(:last-child) {
  border-bottom: 2px solid #e1e6ec;
}
.articleIntro--medium {
  max-width: 469px;
}
.articleIntro--middle {
  max-width: 532px;
}
.articleIntro--wide {
  max-width: 645px;
}
.articleIntro--full {
  max-width: 100%;
}
.articleIntro__headerWrapper {
  display: flex;
  align-items: flex-start;
  margin: 14px 0 24px;
}
@media (max-width: 767px) {
  .articleIntro__headerWrapper {
    margin-bottom: 0;
  }
}
.articleIntro__headerWrapper .articleIntro--smallSection:last-child {
  margin-bottom: 0;
}
.articleIntro__header {
  position: relative;
  width: 100%;
}
.articleIntro--smallSection .articleIntro__header {
  margin-top: 6px;
  margin-bottom: 17px;
}
.articleIntro__headerLink {
  transition: color 0.3s;
  color: #083163;
}
.articleIntro--smallSection .articleIntro__headerLink {
  display: flex;
  align-items: center;
  padding-right: 45px;
}
.articleIntro--smallSection .articleIntro__headerLink:after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 11px;
  height: 11px;
  margin-top: -5.5px;
  font-size: 11px;
  line-height: 11px;
  text-align: right;
  content: "\E90A";
}
.articleIntro__headerLink:focus {
  outline: 3px solid #56f;
  outline-offset: 2px;
}
.header--white .articleIntro__headerLink:focus {
  outline-color: #ffbf47;
}
.articleIntro__headerLink:focus {
  outline-offset: 4px;
}
.articleIntro__label {
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-weight: 700;
  color: #083163;
}
.articleIntro__description {
  font-weight: 500;
  letter-spacing: 0.04rem;
  line-height: 1.44;
}
@media (max-width: 767px) {
  .articleIntro__description {
    margin-bottom: 17px;
  }
}
.articleIntro--heroBanner .articleIntro__description {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.04rem;
  line-height: 1.8;
}
.articleIntro__footer {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 767px) {
  .articleIntro__footer {
    margin-top: 2.8rem;
  }
}
.articleIntro__footer:before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: #e1e6ec;
  content: "";
}
.articleIntro--wide .articleIntro__footer, .articleIntro--full .articleIntro__footer {
  max-width: 100%;
}
.articleIntro--heroBanner .articleIntro__footer {
  justify-content: center;
}
.articleIntro--heroBanner .articleIntro__footer:before {
  display: none;
}
.articleIntro__share {
  margin-top: 2.4rem;
}
@media (max-width: 767px) {
  .articleIntro__share {
    margin-top: 1.6rem;
  }
}
.articleIntro--smallSection .articleIntro__authors {
  margin-bottom: 40px;
}
.articleIntro__readMore {
  display: flex;
  align-items: center;
  transition: color 0.3s;
  color: #083163;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.018rem;
}
.articleIntro__readMore:after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 9px;
  color: #083163;
  font-size: 11px;
  content: "\E90A";
}
.articleIntro__readMore:hover {
  color: #d3db2b;
}
.articleIntro__readMore:focus {
  outline: 3px solid #56f;
  outline-offset: 2px;
}
.header--white .articleIntro__readMore:focus {
  outline-color: #ffbf47;
}
.articleIntro__readMore:focus {
  outline-offset: 2px;
}
.articleIntro__readTime {
  display: flex;
  align-items: center;
  color: #083163;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.018rem;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .articleIntro__readTime {
    margin-top: 0;
  }
}
.articleIntro__readTime:before {
  width: 4px;
  height: 4px;
  margin: 0 10px;
  background: #d3db2b;
  content: "";
}
.articleIntro__next {
  display: inline-block;
  margin-top: 8px;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.03rem;
}
.articleIntro__nextButton {
  margin-top: 26px;
}
@media (min-width: 768px) {
  .articleIntro__main {
    width: 60%;
  }
}
@media (min-width: 768px) {
  .articleIntro__side {
    width: 40%;
  }
}
.articleIntro__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.articleCategories {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .articleCategories {
    justify-content: center;
  }
}
.articleCategories--small {
  margin-bottom: 0;
}
.articleCategories__category {
  display: inline-block;
  position: relative;
  margin-right: 6px;
  padding: 9px 10px 9px 12px;
  border-radius: 5px;
  border-bottom-left-radius: 0;
  background: #d3db2b;
  color: #083163;
  font-size: 1.8rem;
  font-weight: 600;
}
.articleCategories__category:after {
  position: absolute;
  bottom: -12px;
  left: 0;
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 22px;
  height: 12px;
  color: #d3db2b;
  font-size: 1.2rem;
  content: "\E902";
}
.articleCategories--small .articleCategories__category {
  margin-bottom: 0;
  padding: 4px 6px;
  border-bottom-left-radius: 5px;
  font-size: 1.4rem;
}
.articleCategories--small .articleCategories__category:after {
  display: none;
}
.articleCategories--noBackground .articleCategories__category {
  padding: 0;
  background: transparent;
}
.articleCategories__category:focus {
  outline: 3px solid #56f;
  outline-offset: 2px;
}
.header--white .articleCategories__category:focus {
  outline-color: #ffbf47;
}
.articleCategories__category:focus {
  outline-offset: 4px;
}
.articleCategories__subcategory {
  color: #083163;
  font-size: 1.8rem;
  font-weight: 600;
}
.articleCategories--small .articleCategories__category + .articleCategories__subcategory:before {
  width: 4px;
  height: 4px;
  margin: 0 10px 0 4px;
  background: #d3db2b;
  content: "";
}
.articleCategories--small .articleCategories__subcategory {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  letter-spacing: 0.018rem;
}

.articleAuthors {
  display: flex;
  align-items: center;
}
.articleAuthors__avatar {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e1e6ec;
}
.articleAuthors__avatar:after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #083163;
  font-size: 14px;
  content: "\E901";
}
.articleAuthors__names {
  margin-left: 10px;
  color: #083163;
  font-size: 1.4rem;
  font-weight: 700;
}

.articleHeader {
  max-width: 1320px;
}
.articleHeader__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border-bottom: 1px solid rgba(8, 49, 99, 0.2);
  cursor: pointer;
}
@media (max-width: 767px) {
  .articleHeader__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.articleHeader__item {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.003rem;
}
@media (min-width: 768px) {
  .articleHeader__item:not(:last-child) {
    margin-right: 25px;
  }
}
@media (min-width: 1024px) {
  .articleHeader__item:not(:last-child) {
    margin-right: 60px;
  }
}
@media (max-width: 767px) {
  .articleHeader__item:not(:last-child) {
    margin-bottom: 24px;
  }
}
.articleHeader__itemIcon {
  margin-right: 10px;
}

.articleQuotes {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
}
@media (min-width: 1024px) {
  .articleQuotes {
    margin: 80px 0 30px 20px;
    float: right;
  }
}

.articleQuote {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 488px;
  padding: 30px;
  border-radius: 20px;
  background-color: rgba(211, 219, 43, 0.2);
}
.articleQuote:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 479px) {
  .articleQuote {
    flex-direction: column;
    text-align: center;
  }
}
.articleQuote__user {
  position: relative;
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  margin-right: 20px;
  border-radius: 50%;
  background-color: #fff;
}
.articleQuote__user:after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(8, 49, 99, 0.5);
  font-size: 45px;
  content: "\E901";
}
@media (max-width: 479px) {
  .articleQuote__user {
    margin: 0 0 20px;
  }
}
.articleQuote__quote {
  max-width: 278px;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.03rem;
  line-height: 2.14;
}

.articleNote {
  display: flex;
  color: #083163;
  font-size: 1.4rem;
  letter-spacing: 0.03rem;
  line-height: 2;
}
.articleNote--inline {
  display: inline;
}
@media (max-width: 1023px) {
  .articleNote {
    display: none;
  }
}
.articleNote--mobile {
  display: none;
}
@media (max-width: 1023px) {
  .articleNote--mobile {
    display: block;
    margin: 20px 0;
    text-align: left;
  }
}
.articleNote__iconWrapper {
  flex-shrink: 0;
  margin-right: 5px;
}
.articleNote__number {
  position: relative;
  top: -5px;
  font-size: 0.8rem;
  vertical-align: super;
}
.articleNote__hidden {
  display: none;
}
.articleNote__link {
  display: block;
  margin-top: 5px;
  color: #083163;
}
.articleNote__link:before {
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 5px;
  transform: translateY(2px);
  transition: transform 0.3s;
  color: #083163;
  font-size: 1rem;
  text-decoration: none;
  content: "\E90A";
}
.articleNote__link:hover:before {
  transform: rotate(45deg);
}
.articleNote__link--external:before {
  content: "\E906";
}
.articleNote__link span {
  text-decoration: underline;
}

.articleQuotation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 26px 0;
  text-align: center;
}
.articleQuotation__content {
  color: #083163;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.071rem;
  line-height: 1.43;
}
.articleQuotation__author {
  margin-top: 10px;
  color: #000;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.03rem;
  line-height: 2.1;
}

.articleAnchors {
  display: flex;
  flex-direction: column;
  max-width: 240px;
  padding-top: 80px;
}
.articleAnchors__item {
  display: flex;
  margin-top: 10px;
  transition: font-weight 0.3s;
  color: #666666;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.03rem;
  line-height: 2.14;
}
.articleAnchors__item:before {
  min-width: 4px;
  height: 4px;
  margin-right: 10px;
  margin-top: 12px;
  transition: opacity 0.3s;
  border-radius: 50%;
  background: #083163;
  content: "";
  opacity: 0;
}
.articleAnchors__item:active, .articleAnchors__item:hover {
  color: #083163;
  font-weight: 700;
}
.articleAnchors__item:active:before, .articleAnchors__item:hover:before {
  opacity: 1;
}
.articleAnchors__item:focus {
  outline: 2px solid #ff6600;
}
.articleAnchors__item:focus-visible {
  outline: 3px solid #ff6600;
  font-weight: 800;
}
.articleAnchors__item--active {
  color: #083163;
  font-weight: 700;
}
.articleAnchors__item--active:before {
  opacity: 1;
}

.magazine {
  width: 47%;
  margin-bottom: 60px;
}
.magazinesList .magazine {
  padding-right: 68px;
}
@media (max-width: 1023px) {
  .magazine {
    width: 100%;
    padding-right: 0;
  }
}
.magazine--small {
  max-width: 267px;
}
.magazine__title {
  margin-bottom: 21px;
}
.magazine__link {
  transition: color 0.3s;
  color: #083163;
}
.magazine__link:hover {
  color: #d3db2b;
}
.magazine__description {
  letter-spacing: 0.04rem;
  line-height: 1.44;
}

.tag {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  margin: 10px 15px 0 0;
}
.tag__input {
  position: absolute;
  width: 0;
  height: 0;
  cursor: pointer;
  opacity: 0;
}
.tag__input:checked ~ .tag__title {
  background-color: #083163;
  color: #fff;
}
.tag__title {
  padding: 7px 14px 9px;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 24px;
  background: #d3db2b;
  color: #083163;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.018rem;
  cursor: pointer;
}
.tag__title:hover {
  background-color: #083163;
  color: #fff;
}

.cookies {
  position: fixed;
  right: 60px;
  bottom: 60px;
  width: 100%;
  max-width: 536px;
  padding: 30px;
  background: #083163;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
  z-index: 999;
}
@media (max-width: 767px) {
  .cookies {
    width: 100%;
    right: 0;
    bottom: 0;
  }
}
.cookies__text {
  margin-bottom: 20px;
}
.cookies__text a {
  transition: color 0.3s;
  color: #d3db2b;
  text-decoration: underline;
}
.cookies__text a:hover {
  color: rgba(255, 255, 255, 0.4);
}
.cookies__button {
  margin-top: 12px;
  color: #000;
}
.cookies__button:hover {
  background-color: rgba(255, 255, 255, 0.4);
  color: #000;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "DINProDRVp", Tahoma, Arial;
  font-size: 1.8rem;
  font-weight: 400;
}

[v-cloak] {
  display: none;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body.modal {
  overflow: hidden;
}

main {
  position: relative;
  z-index: 1;
}

.leichte-sprache * {
  line-height: 1.5 !important;
  letter-spacing: 2pt !important;
  word-spacing: 3pt !important;
}

html.leichte-sprache {
  font-size: 70% !important;
}

h2 {
  scroll-margin-top: 75px;
}