html, body {
  height: 100%;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  background-color: rgba(255, 255, 255, 1);
  color: rgba(25, 30, 35, 1);
  font-family: "Cera", sans-serif;
  font-size: calc(15px + (19 - 15) * ((100vw - 320px) / (1920 - 320)));
  font-style: italic;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
.mobile body.error {
  background-color: rgb(25,30,35);
}

figure, ul, ol, dl, li {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

/* Colors */

a {
  color: currentColor;
  text-decoration: none;
  cursor: pointer;
}

.light {
  /* default page colors */
  background-color: rgba(255, 255, 255, 1);
  color: rgba(25, 30, 35, 1);
}

.dark {
  /* default invert colors */
  background-color: rgba(25, 30, 35, 1);
  color: rgba(255, 255, 255, 1);
}

.title, .subtitle, b, strong {
  color: currentColor;
}

/* light is default; dark gets class .txt-color */
.txt-dark { 
  color: rgba(25, 30, 35, 1);
}
.txt-light {
  color: rgba(255, 255, 255, 1);
}
/* Typography 
   Hausschrift von Dokyo ist "Cera"
   font-weights: siehe fonts.css
*/

h1, h2, h3, h4, h5, h6, .is-h1, .is-h2, .is-h3, .is-h4, .is-h5, .is-h6 {
  font-family: 'Cera', sans-serif;
  font-weight: 900;
  letter-spacing: 1.5px;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 0;
}

.title, h1, .is-h1 {
  font-style: normal;
  font-size: calc(57px + 8 * ((100vw - 320px) / 880));
  line-height: 1;
}

h1.subtitle.is-h2 {
  font-size: calc(27px + 8 * ((100vw - 320px) / 880));
  line-height: 1;
  font-style: italic;
  font-weight: 900;
  margin-bottom: .5em;
}

h1.title:first-of-type {
  margin-top: 0;
}

h2.subtitle {
  font-size: calc(27px + 8 * ((100vw - 320px) / 880));
  line-height: 1;
  font-style: italic;
  margin-bottom: 0;
}

h3.title, .teaser-subtitle {
  margin-top: 0;
  text-shadow: 1px 1px 2px rgba(25, 30, 35, .4);
}

p {
  margin-bottom: 0;
}

b, strong {
  font-family: "Cera", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/* Global / mobile first - Rules */

.content-page .page-wrapper {
  background-color: rgba(25, 30, 35, 1);
}

.desktop .page-wrapper {
  width: 1920px; /* Anpassung 15-11-2019 US*/
  margin: 0 auto;
}
.mobile .page-wrapper {
  width: 100vw;
  max-width: 100vw;
  overflow-x: hidden;
}


/* Header */

.header {
  height: 100vh;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.mobile .header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns:       2.5em 90px auto 45px 2.5em;;
  grid-template-columns:  2.5em 90px auto 45px 2.5em;
  -ms-grid-rows:          5em 90px 45px auto auto 45px;
  grid-template-rows:     5em 90px 45px auto auto 45px;
}
@media (max-height: 600px) {
  .mobile .header {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns:       2.5em 90px auto 45px 2.5em;;
    grid-template-columns:  2.5em 90px auto 45px 2.5em;
    -ms-grid-rows:          5em 45px 45px auto auto 45px;
    grid-template-rows:     5em 45px 45px auto auto 45px;
  }
}
.brand {
  max-width: 70%;
  margin-left: -2.7em;
}
.mobile .header .brand {
  -ms-grid-column:      1;
  -ms-grid-column-span: 5;
  grid-column:          1 / -1;
  -ms-grid-row:         2;
  -ms-grid-row-span:    2;
  -ms-grid-row-align:   center;
  grid-row:             2 / 5;
  margin-left:          0;
  align-self:           end;
  display:              flex;
  flex-direction:       column;
  padding-bottom:       2em;
} 
.mobile .home .brand.small {
  -ms-grid-column:      1;
  -ms-grid-column-span: 5;
  grid-column:          1 / -1;
  -ms-grid-row:         2;
  -ms-grid-row-span:    1;
  -ms-grid-row-align:   end;
  grid-row:             2;
  margin-left:          0;
  align-self:           end;
  padding-bottom:       0;
}
.mobile .standard .header .brand {
  align-self:           center;
}
.mobile .home .brand.small img,
.mobile .brand img {
  min-width: 65%;
}
.mobile .header .text {
  -ms-grid-column:      2;
  -ms-grid-column-span: 3;
  grid-column:          2 / 5;
  -ms-grid-row:         5;
  -ms-grid-row-span:    1;
  grid-row:             5;
}
.mobile .header .btn-cta-wrapper {
  -ms-grid-column:      2;
  -ms-grid-column-span: 1;
  grid-column:          2 / 3;
  -ms-grid-row:         4;
  -ms-grid-row-span:    1;
  grid-row:             4;
}
.header .brand .page-title {
  font-style: normal;
  font-size: calc(30px + 6 * ((100vw - 320px) / 880));
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
  margin-left: .2em;
  display: block;
}

@media (max-width: 500px) {
  .title, h1, .is-h1 {
    font-size: calc(25px + 8 * ((100vw - 320px) / 880));
  }
  h1.subtitle.is-h2 {
    font-size: calc(20px + 8 * ((100vw - 320px) / 880));
  }
  h2.subtitle {
    font-size: calc(20px + 8 * ((100vw - 320px) / 880));
  }
  .header .brand .page-title {
    font-size: calc(15px + 6 * ((100vw - 320px) / 880));
  }
}

.content-page .header .brand {
  margin-top: 5em;
  margin-left: -.2em;
}

.desktop .content-page .header .brand {
  margin-top: 1.5em;
}

.btn-back-to-home a {
  display: block;
  height: 100%;
  width: 100%;
}

.detail-page .btn-back-to-home,
.detail-page .header .brand,
.detail-page .header .btn-cta-wrapper,
.detail-page .header .text,
.content-page .header .btn-back-to-home,
.mobile .btn-back-to-home.desktop-only {
  display: none;
}

.btn-back-to-home a img {
  width: auto;
  max-height: 35px;
}

.home .header .brand .page-title {
  display: none;
}

.overview-page .header .brand a img {
  max-width: 70%;
  display: block;
}

.header .text h1,
.header .text p {
  max-width: 50ch;
}
.header .text h1 {
  margin: 0;
}

.desktop body.error .header.dark {
  color: rgb(25,30,35);
  background-color: rgb(255,255,255);
  background-size: 80vw;
}
.desktop body.error .header.dark {
  background-size: 60vw;
}
.desktop body.error .header.dark .brand.small,
body.error .header.dark .btn-arrow-down,
body.error footer {
  display: none;
}

.mobile body.error section.header.dark{
  background-image: none !important;
}
.desktop body.error .header .text {
  font-size: 45px;
  grid-column: 1/-1;
  grid-row: 5/6;
  line-height: 1;
  text-align: center;
}
.mobile body.error .header .brand {
  align-self: center;
}
.mobile body.error .header .text {
  font-size: 25px;
  grid-column: 1/-1;
  grid-row: 5/6;
  line-height: 1;
  text-align: center;
  padding: 0 2.5em;
}
.mobile body.error .header .page-title {
  text-align: left;
}
body.error .header .text h1, 
body.error .header .text p {
  max-width: 100%;
}
body.error .header .text p a {
  text-decoration: underline;
}
@media (max-height: 604px) {
  .desktop body.error .header.dark {
      background-size: contain;
      background-position: center -60px;
  }
  .desktop body.error .header .text {
      font-size: 25px;
  }
}

.btn-plus >img,
.standard .btn-plus {
  width: 45px;
  height: 45px;
  display: block;
  transition: 0.70s;
  -webkit-transition: 0.70s;
  -moz-transition: 0.70s;
  -ms-transition: 0.70s;
  -o-transition: 0.70s;
}
.mobile .home .header .btn-plus >img {
  margin: 0 auto;
}
.btn-plus:hover >img,
.standard .btn-plus:hover {
  transition: 0.70s;
  -webkit-transition: 0.70s;
  -moz-transition: 0.70s;
  -ms-transition: 0.70s;
  -o-transition: 0.70s;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.desktop .btn-plus.with-label {
  display: flex;
  justify-content: center;
  -ms-flex-direction: column;
  display: grid;
  height: 70%;
  grid-template-columns: 45px;
  grid-template-rows: 1fr 45px;
}

.btn-plus.with-label .btn-label {
  display: block;
  align-self: end;
  padding-top: 1em;
  width: 45px;
  height: auto;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  white-space: nowrap;
  line-height: 2.7;
}

.mobile .home .header .btn-plus.with-label .btn-label {
  padding-bottom: 0;
  padding-right: 1.5em;
}
.standard .btn-plus {
  background: transparent url(/img/btn-plus-light.png) no-repeat center;
}
.standard .btn-plus img {
  display: none;
}
.desktop .btn-plus > img, 
.desktop .standard .btn-plus {
  align-self: end;
}

@media (max-height: 600px) {
  .mobile .btn-cta-wrapper {
    -ms-grid-column: 2;
    -ms-grid-column-span: 3;
    grid-column: 2 / -1;
  }
  .mobile .btn-plus.with-label {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: start;
  }
  .mobile .home .btn-plus.with-label .btn-label {
    transform: none;
    margin: 0;
    padding: 0 0 0 1em;
    align-self: center;
  }
}
@media (max-width: 480px){
    .mobile .header .btn-cta-wrapper {
        grid-column: 2/-1;
    }
    .mobile .home .btn-plus.with-label {
        display: block;
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
    }
    .mobile .home .btn-plus.with-label .btn-label {
        padding: 0;
        margin: 0 0 0 1em;
        align-self: center;
        writing-mode: horizontal-tb;
        text-overflow: unset;
        transform: none;
    }
    .mobile .home .header .btn-plus>img {
        margin: 0;
    }
}
.btn-arrow-down img {
  width: 45px;
}
.btn-arrow-down {
    z-index: 99;
}
.mobile .btn-arrow-down {
  width: 50px;
  display: block;
  -ms-grid-column:      1;
  -ms-grid-column-span: 5;
  -ms-grid-column-span: center;
  grid-column:     1 / -1;
  -ms-grid-row:         6;
  -ms-grid-row-span:    1;
  grid-row:             6;
  justify-self: center;
}

.desktop .home .btn-arrow-down {
  width: 50px;
  display: block;
  -ms-grid-column: 1;
  -ms-grid-column-span: 12;
  -ms-grid-column-align: center;
  grid-row: 5/6;
  grid-column: 6/8;
  align-self: end;
}

.desktop .btn-arrow-down img {
  animation: bounce 0.9s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}

.desktop .header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  -ms-grid-rows:      5em 45px 1fr 2fr auto 45px;
  grid-template-rows: 5em 45px 1fr 2fr auto 45px;
  justify-content: normal;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.desktop .btn-back-to-home {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2;
}

.desktop .brand {
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  -ms-grid-column-align: start;
  grid-column: 1/-1;
  -ms-grid-row: 3;
  -ms-grid-row-span: 2;
  -ms-grid-row-align: center;
  grid-row: 3/5;
  align-self: center;
  margin-left: -.2em;
}

.desktop .home .brand {
  -ms-grid-row-span: 1;
  -ms-grid-row-align: center;
  grid-row: 3/4;
}

.desktop .brand img {
  display: block;
}
.brand.small a {
	display: inline-block;
}
.desktop .brand.small img,
.desktop .brand img {
  max-width: 30vw;
  width: 450px;
}

.desktop .header .btn-cta-wrapper {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 4;
  -ms-grid-row-span: 1;
  grid-row: 4/5;
  align-self: center;
  height: 100%;
}

.desktop .header .text {
  -ms-grid-column: 3;
  -ms-grid-column-span: 5;
  grid-column: 3/7;
  -ms-grid-row: 4;
  -ms-grid-row-span: 1;
  -ms-grid-row-align: center;
  grid-row: 4/5;
  align-self: center;
}

.desktop .btn-arrow-down {
  -ms-grid-column: 1;
  -ms-grid-column-span: 12;
  grid-column: 1/-1;
  -ms-grid-row: 6;
  -ms-grid-row-span: 1;
  grid-row: 6/7;
  -ms-grid-row-align: center;
  justify-self: center;
  display: block; /* for IE grid */
  text-align: center; /* for IE */
}

.standard .header {
  max-height: 100vh;
  grid-template-rows: 5em 45px 1fr 1fr 1fr 45px;
}

.standard .header .brand {
  max-width: 60%;
}

.standard .header .brand {
  -ms-grid-column-align: start;
  -ms-grid-row: 4;
  grid-row: 3/5;
}

.content-page .text-wrapper {
  padding: 0 2.5em 5em;
}

.standard .text-wrapper {
  padding: 2.5em;
}

.desktop .content-page .text-wrapper {
  padding: 0 5em 5em;
}

.desktop .standard .text-wrapper {
  padding: 5em;
}
.desktop .standard .privacyoptoutList .text-wrapper {
    padding: 0 5em;
}
.content-page .header {
  padding: 0;
}

.jump-spot {
  line-height: 0;
  font-size: 0;
}

/* Video */

.media {
  line-height: 0;
  display: flex;
  justify-content: center;
  background: rgba(25, 30, 35, 1);
  position: relative;
}

.media-wrapper {
  position: relative;
  width: 100%;
}

.desktop .video {
  width: 100%;
  max-height: 100vh;
}
.mobile .video {
  max-width: 100vw;
}
.video-meta {
  position: relative;
  text-align: center; /* zentriert das Poster mobile */
}
.video-meta .text,
.video-meta .text {
  width: auto;
  position: absolute;
  left: 5em;
  bottom: 5em;
}
.video-meta h3,
.video-meta h4 {
  color: rgb(255, 255, 255);
  text-shadow: 1px 1px 2px rgba(25, 30, 35, .4);
}
.mobile .video-meta .text {
  left: 2.5em;
  bottom: 2.5em;
  padding-right: 2.5em;
}

.btn-play {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  background: url("../img/btn-play-default-dark.png") no-repeat center;
  transition: background .3s ease-in-out;
}
.btn-play:hover, .btn-play:focus {
  background: url("../img/btn-play-invert-dark.png") no-repeat center;
}
.mobile .btn-play,
.mobile .btn-play:hover,
.mobile .btn-play:focus {
  background-size: 33.33333%;
}
a.video-mute {
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 6;
  background-image: url("/img/icon_volume_sprite.svg");
  background-repeat: no-repeat;
  background-position: 0 -38px;
  background-size: cover;
}
a.video-mute.off {
  background-image: url("/img/icon_volume_sprite.svg");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
}

/* Slider Section */

.slider {
  padding: 0;
  min-height: 100%;
  overflow-x: hidden;
}

/* Sections */

.col-text {
  /* mobile */
  margin-bottom: 2.5em;
  padding: 2.5em;
}

.col-text .text-wrapper {
  max-width: 45ch;
}
.mobile .col-text .text-wrapper {
  max-width: 65ch;
  text-align: center;
  margin: 0 auto;
}
.mobile .text-wrapper {
  max-width: 65ch;
  text-align: center;
  margin: 0 auto;
}
.text-img {
  display: flex;
  flex-direction: column;
  padding: 0;
  padding-bottom: 0;
}

.desktop .text-img {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-row: 1;
}

.desktop .text-img .col-text {
  -ms-grid-column: 1;
  -ms-grid-column-span: 6;
  grid-column: 1/2;
  align-self: center;
  justify-self: center;
  padding: 2.5em;
}

.desktop .text-img .col-text {
  padding: 5em;
}

.text-img .col-img {
  -ms-grid-column: 8;
  -ms-grid-column-span: 4;
  grid-column: 2/3;
  justify-self: center;
  padding-right: 2.5em;
  padding-bottom: 2.5em;
  padding-right: 0;
  padding-bottom: 0;
}

.col-img {
  padding: 0;
  margin: 0;
}

.col-img img {
  width: 100vw;
  display: block;
  object-fit: cover;
}

.col-img .single {
  margin: 0;
  padding: 0;
}

.col-img .single img {
  min-width: 200px;
}

.desktop .text-img .col-img {
  padding-right: 5em;
  padding-bottom: 5em;
}

.desktop .col-img img {
  width: 100%;
  max-width: 465px;
  display: block;
  object-fit: cover;
  align-self: end;
}
.desktop .imageText .col-img figure img {
  object-fit: contain;
}
.text-img .col-text .btn-cta-wrapper {
  margin-top: 2.5em;
}

.text-img.reverse .col-text {
  -ms-grid-column: 7;
  -ms-grid-column-span: 5;
  grid-column: 2/3;
  -ms-grid-row: 1;
  grid-row: 1/2;
}

.text-img.reverse .col-img {
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-column: 1/2;
  -ms-grid-row: 1;
  grid-row: 1/2;
  justify-self: center;
  padding-left: 2.5em;
  padding-right: 0;
  padding-left: 0;
  /* mobile */
}

.desktop .text-img.reverse .col-img {
  padding-left: 5em;
}

/* increasing space for col-text on mobile
   when col-img has dektop-only */

@media (max-width: 768px) {
  .text-img.mobile-reverse .col-text {
    grid-column: 1/3;
  }
  .text-img.mobile-reverse .col-text .text-wrapper {
    max-width: 100%;
  }
}
/* Teaser mobile styles correction 18-12-2019
   text should be always on top of images and
   positioned bottom
*/
.mobile .text-img.dark.reverse {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
}
.mobile .text-img.reverse .col-text {
    -ms-grid-column: 1;
    grid-column: 1;
    z-index: 1;
    align-self: end;
}
.mobile .text-img.mobile-reverse {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
}
.mobile .text-img.mobile-reverse .col-text {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
    z-index: 1;
    align-self: end;
    color: rgba(255,255,255,1);
}
.mobile .text-img.mobile-reverse .col-text .text-wrapper {
    text-align: left;
}

.mobile .text-img.mobile-reverse .col-img {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
    z-index: 0;
}
.mobile .text-img.mobile-reverse .btn-cta-wrapper a {
    height: 45px;
    width: 45px;
    display: inline-block;
    background: transparent url(/img/btn-plus-light.png) no-repeat center;
}
.mobile .text-img.mobile-reverse .btn-cta-wrapper a img {
    display: none;
}
/* End of teaser mobile correction */

/* If mobile and text-wrapper content is 
   centered Button must be centered too */
.mobile .text-wrapper + .btn-cta-wrapper .btn-plus >img {
  margin: 0 auto;
}
.desktop .overlap {
  margin-top: -5em;
  position: relative;
}

.desktop .col-img .single.overlap {
  min-width: 200px;
  margin-top: -5em;
  z-index: 3;
}

.desktop .stack {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 225px 15px 225px;
  grid-template-columns: 225px 225px;
  -ms-grid-rows: 460px 15px 225px;
  grid-template-rows: 460px 225px;
  grid-gap: 15px;
}

.desktop .stack img:nth-of-type(1) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/3;
  -ms-grid-row: 1;
}

.desktop .stack img:nth-of-type(2),
.desktop .stack img:nth-of-type(3) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  -ms-grid-row: 3;
  grid-row: 2/3;
}
.desktop .stack img:nth-of-type(3) {
  -ms-grid-column: 3;
}

/* Detail-Page Mosaic Module */

.mobile .mosaic {
  display: block;
  padding: 0;
}

.desktop .mosaic {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: 1fr auto;
  grid-template-rows: 1fr auto;
  padding: 5em 0;
}

.desktop .mosaic .col-img:first-child {
  -ms-grid-column: 1;
  -ms-grid-column-span: end;
  -ms-grid-column-align: end;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-align: end;
  grid-row: 1/2;
  justify-self: right;
}

.desktop .mosaic .col-text {
  -ms-grid-column: 2;
  grid-column: 2/3;
  -ms-grid-row: 1;
  grid-row: 1/2;
  padding-left: 5em;
  padding-top: 0;
  margin-bottom: 0;
}

.desktop .mosaic .col-img:last-child {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  -ms-grid-column-align: center;
  grid-column: 1/-1;
  -ms-grid-row: 2;
  -ms-grid-row-align: center;
  grid-row: 2/3;
}

.desktop .mosaic .top img {
  max-height: calc(100vh - 5em);
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 15px;
}

.desktop .mosaic .bottom {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 200px) 15px minmax(200px, 500px);
  grid-template-columns: minmax(0, 200px) minmax(200px, 500px);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 15px;
  justify-content: center;
  align-content: start;
}
.desktop .mosaic .col-img:last-child .bottom img:nth-of-type(1) {
  -ms-grid-column: 1;
  grid-column: 1 / 2;
  -ms-grid-row-align: start;
  max-width: none;
  align-self: start;
}
.desktop .mosaic .col-img:last-child .bottom img:nth-of-type(2) {
  -ms-grid-column: 3;
  grid-column: 2 / 3;
  -ms-grid-row: start;
  max-width: none;
}

.desktop .mosaic figure img {
  display: block;
}

/* Quotes */

.zitat {
  padding: 5em;
}

.quote {
  margin-left: -1em;
  padding-left: 1em;
  max-width: 55ch;
}
.desktop .quote.reverse {
  margin-left: auto;
}
.icon-quote {
  display: block;
  margin-left: -1em;
}

.quote h2.subtitle {
  margin: .5em 0 0;
  font-weight: 700;
}

.text-text {
  display: grid;
  grid-template-columns: 1fr;
  padding: 2.5em;
  text-align: center;
}

.text-text .col-text {
  margin: 0;
  padding: 0;
  /* mobile */
}

.text-text .col-text:last-child {
  padding-top: 0;
  /* mobile */
}

.text-text .col-text .text-wrapper {
  display: block;
  /* mobile */
  margin: 0 auto;
  /* mobile */
}

.col-2 .text-wrapper p:first-of-type,
.text-text .col-text .text-wrapper p:first-of-type {
  margin-top: 0;
}

.desktop .text-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 5em;
  text-align: left;
}

.desktop .text-text .col-text .text-wrapper {
  display: flex;
  flex-direction: column;
  margin-left: 5em;
}

.desktop .text-text .col-text:first-of-type .text-wrapper {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  text-align: left;
}
/* New Option: text-text switching position */
.text-text.inverse .col-text:first-child {
  grid-column: 2/3;
  grid-row: 1;
}
.text-text.inverse .col-text:last-child {
  grid-column: 1/2;
  grid-row: 1;
}
.text-text .text-right {
  justify-self: flex-end;
}
.text-text .text-left {
  justify-self: flex-start;
}
.inverse .text-right {
  justify-self: flex-start;
}
.inverse .text-left {
  justify-self: flex-end;
}
.desktop .col-1 {
  padding: 5em;
}

.desktop .col-1 img {
  padding: 5em 0 0 0;
}

.col-1 {
  text-align: center;
  padding: 2.5em;
}

.col-1 img {
  display: block;
  margin: 0 auto;
}

.col-1 .text-wrapper {
  max-width: 65ch;
  margin: 0 auto;
}

.col-1 img {
  padding: 2.5em 0 0 0;
}

.col-2 {
  padding-top: 2.5em;
}

.mobile .text-text .btn-cta-wrapper {
	display: flex;
	justify-content: center;
	margin-top: 2em;
}

/* Image | Text Module (new) */

  /* Image right */
  .desktop .imageText.image-right,
  .desktop .imageText.image-left {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
  }

  .desktop .imageText.image-right .col-img {
    -ms-grid-column: 2;
    grid-column: 2/3;
    -ms-grid-row: 1;
    grid-row: 1;
    padding: 5em 5em 5em 0;
  }
 .desktop .imageText.image-right .col-img img {
     margin-right: auto;
  }
  .desktop .imageText.image-left .col-img {
    -ms-grid-column: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    grid-row: 1;
    padding: 5em 0 5em 5em;
  }
  .desktop .imageText.image-left .col-img img {
      margin-left: auto;
  }
  .desktop .imageText.image-right .col-text {
    -ms-grid-column: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    grid-row: 1;
    padding: 5em;
    margin-left: auto;
    text-align: right;
  }
  .desktop .imageText.image-left .col-text {
    -ms-grid-column: 2;
    grid-column: 2/3;
    -ms-grid-row: 1;
    grid-row: 1;
    padding: 5em;
  }

/* Single big images with text on top with 4 different colors */
.image {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
}

.image img, .image a {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/-1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: 1fr, 1fr;
	grid-template-rows: repeat(2, 1fr);
}

.image .text-wrapper.center-left {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-row-align: end;
  align-self: end;
  padding-left: 5em;
}

.image .text-wrapper.center-right {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-row-align: end;
  align-self: end;
  padding-left: 5em;
}

.image .text-wrapper.bottom-left {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-row-align: end;
  align-self: end;
  padding: 0 0 5em 5em;
}

.image .text-wrapper.bottom-right {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-row-align: end;
  align-self: end;
  padding: 0 0 5em 5em;
}

/* Standard pages like imprint */

.standard .page-wrapper, .standard .col-1.light {
  background-color: rgba(25, 30, 35, 1) !important;
  color: rgba(255, 255, 255, 1);
}

.standard .col-1 .text-wrapper {
  padding: 0;
  text-align: left;
  max-width: 100%;
  margin: 0;
}

.col-1 .text-wrapper img {
  padding: 0;
}

.col-1 .text-wrapper .btn-cta-wrapper {
  width: 45px;
}

.col-1 .text-wrapper img {
  padding: 0;
}

.col-1 .text-wrapper .btn-cta-wrapper {
  width: 45px;
}

/* Teaser */

.teaser {
  padding: 0;
}

.teaser-items {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.desktop .teaser-items {
  flex-direction: row;
  flex-wrap: wrap;
}

.teaser-items figure {
  flex-basis: 50%;
  overflow: hidden;
}

.teaser-items figure a {
  position: relative;
  display: block;
  height: 100%;
  color: currentColor;
}

.teaser-items figure a img {
  display: block;
  transition: transform 3s ease-in-out;
}
.mobile .teaser-items figure a img {
  width: 100vw;
}
.teaser-items figcaption {
  color: rgba(255, 255, 255, 1);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2em;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 1;
  font-size: calc(20px + 8 * ((100vw - 320px) / 880));
  font-style: normal;
  letter-spacing: 1.5px;
  line-height: 1;
  font-weight: 900;
  
  background: rgba(25,30,35,.3);
}

.teaser-items figcaption .title {
  margin: 0;
  font-size: calc(50px + 8 * ((100vw - 320px) / 880));
}
.mobile .teaser-items figcaption .title {
  font-size: calc(40px + 8 * ((100vw - 320px) / 880));  
}
@media (max-width: 480px) {
    .mobile .teaser-items figcaption .title {
        font-size: calc(30px + 8 * ((100vw - 320px) / 880));  
    }
}
.desktop .teaser-items figcaption {
  transition: background .3s ease-in-out;
}
.mobile .teaser-items figcaption {
  padding: 1.5em;
}
/* .teaser hover */

.desktop .teaser-items figure a:hover img {
  transform: scale(1.2);
}

.desktop .teaser-items figure a:hover figcaption {
  background: rgba(25,30,35,0);
}

.desktop .overview .teaser-items {
  display: flex;
  flex-flow: row wrap;
  box-sizing: border-box;
}

.desktop .overview .teaser-items img {
  display: block;
  line-height: 1;
}

.desktop .overview .teaser-items figure, 
.overview .teaser-items .figure-group, 
.desktop .foto-grid .teaser-items figure, 
.foto-grid .teaser-items .figure-group {
  flex-basis: 50%;
  width: 100%;
  overflow: hidden;
}

.desktop .overview .teaser-items .figure-group {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
}

/* loading more */

.desktop .load-more, .desktop .load-more-feed {
  text-align: center;
  padding: 0;
}
/* Section .image */
.image img {
  display: block;
}


/* About */

.desktop .team figure {
  line-height: 1;
}

.desktop .team {
  border: none;
  background: rgba(25, 30, 35, 1);
}

.desktop .team .img-img {
  display: block;
  /* mobile */
}

.desktop .img-img.reverse {
  flex-direction: row-reverse;
}

.big-img, .small-img {
  display: block;
  /* mobile */
  width: 100%;
  /* mobile */
}

/* .teaser-more button */

.btn {
  font-size: calc(57px + 8 * ((100vw - 320px) / 880));
  font-style: normal;
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
  display: inline-block;
  border: 3px solid currentColor;
  padding: .02em .45em;
  transition: background-color .5s ease-in-out;
}
.mobile .btn {
  font-size: calc(35px + 8 * ((100vw - 320px) / 880));
  padding: .3em;
  line-height: 1;
}
.btn:hover, .btn:focus {
  background-color: rgba(25, 30, 35, 1);
  color: rgba(255, 255, 255, 1);
  border-color: rgba(25, 30, 35, 1);
}

.dark .btn {
  background-color: rgba(25, 30, 35, 1);
  color: rgba(255, 255, 255, 1);
  border-color: currentColor;
}

.dark .btn:hover, .dark .btn:focus {
  background-color: rgba(255, 255, 255, 1);
  color: rgba(25, 30, 35, 1);
  border-color: rgba(255, 255, 255, 1);
}

.dark .load-more.light .btn {
  background-color: rgba(255, 255, 255, 1);
  color: rgba(25, 30, 35, 1);
  border-color: rgba(25, 30, 35, 1);
}

.dark .load-more.light .btn:hover, .dark .load-more.light .btn:focus {
  background-color: rgba(25, 30, 35, 1);
  color: rgba(255, 255, 255, 1);
  border-color: rgba(25, 30, 35, 1);
}

.load-more-feed .btn, .load-more .btn {
  margin: 0;
}
.desktop .load-more-feed .btn, .load-more .btn {
  margin: 2.5em 0;
}
.desktop .singleButton .load-more .btn {
  padding: .03em .45em;
}
.mobile .load-more-feed, .mobile .load-more {
  text-align: center;
}
.btn-no-border {
    border: none;
}
.desktop .team .img-img {
  display: flex;
  flex-basis: 100%;
}

.big-img img, .small-img img {
  display: block;
}

.desktop .big-img, .small-img {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-basis: 50%;
}

.team .big-img a, .team .small-img a {
  display: block;
  position: relative;
}

.team .big-img a img {
  object-fit: cover;
}

.team .big-img a .ma-label, .team .small-img a .ma-label {
  display: block;
  width: auto;
  position: absolute;
  bottom: 1.5em;
  left: 2em;
}

.team .ma-label {
  font-style: normal;
  text-transform: uppercase;
}

.ma-label h3, .ma-label h4 {
  margin: .5em 0 0;
}

.ma-label h3 {
  font-size: calc(28px + 8 * ((100vw - 320px) / 880));
}

/* Clients */

.clients {
  padding: 5em;
}
.mobile .clients {
  padding: 2.5em;
}
.clients h2 {
  margin-top: 0;
  margin-bottom: 1em;
}
.mobile .clients h2 {
  text-align: center;
}
.client-wrapper figure img {
  display: block;
  padding: .5em;
}
.mobile .client-wrapper figure img {
  margin: 0 auto;
  padding: 1.5em;
}
.clients .load-more {
  padding: 3em 0 0;
}

.desktop .client-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-top: 30px;
  margin: 0 -2em;
}

.desktop .client-wrapper figure {
  flex: 0 0 20%
}

.desktop .client-wrapper figure img {
  margin: 0 auto;
}

.desktop .clients h2.title.is-2 {
  flex-basis: 100%;
  margin-bottom: 0;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

/* Divider with outline typo */

.divider {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  width: 100%;
  max-width: 1400px;
  height: auto;
  min-height: auto;
}

.desktop .divider {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.outline-text {
  color: rgba(255, 255, 255, 1);
  display: block;
  font-size: calc(35px + (200 - 35) * ((100vw - 300px) / (1920 - 300)));
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  padding: .535em 0;
  /* Stroke */
  -webkit-text-stroke: 1px black;
  color: white;
  text-shadow: 3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

@supports(-webkit-text-stroke: 1px black) {
  .outline-text {
    color: red;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    /* Will override color (regardless of order) */
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: white;
    text-shadow: none;
  }
}
@media (min-width: 1921px) {
  .outline-text {
      font-size: calc(35px + (250 - 35) * ((50vw - 300px) / (1920 - 300)));
  }
}

/* Social Media Feed */

.social-feed {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.social-feed .load-more {
  padding-bottom: 3.2em;
  padding-top: 3.2em/* mobile */
  ;
}

.desktop .social-feed {
  padding: 5em;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
}

.social-feed .load-more {
  flex: 1;
}

/* Social Media Links */

.cta-sm {
  min-height: 50vh;
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5em;
  text-align: center;
}
.mobile .cta-sm {
  padding: 0 2.5em;
}
.cta-sm .title {
  margin: 0;
}

.cta-sm-icons {
  display: block;
  text-align: center;
  padding: 1em 0 0 0;
}
.mobile .cta-sm-icons {
  justify-content: space-around;
  display: flex;
  width: 60vw;
  padding: 2.5em 0 0 0;
}
.cta-sm .cta-sm-icons a img {
  max-width: 65px;
  width: 65px;
}

.desktop .cta-sm {
  min-height: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5em;
}

/* Social Feed Instagram */

.socialfeed {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 2.5em;
}

.socialfeed h3 {
  flex: 0 0 100%;
  margin-top: 0;
  text-align: center;
}

.socialfeed figure {
  flex: 0 0 100%;
  margin: 1em 0;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16), 0 0 3px rgba(0, 0, 0, 0.23);
  outline: 1px solid rgba(25, 30, 35, .1);
}

@media (max-width: 768px) {
  .socialfeed figure:last-of-type {
    margin-bottom: 0;
  }
}

.desktop .socialfeed {
  padding: 5em;
}

.desktop .socialfeed figure {
  flex: 0 0 30%;
  margin: 1em 0;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16), 0 0 6px rgba(0, 0, 0, 0.23);
}

.socialfeed .img-wrapper {
  position: relative;
}

.socialfeed img {
  display: block;
  object-fit: cover;
  width: 100%;
}

.socialfeed .likes {
  background: rgba(0, 0, 0, .6);
  color: rgb(255, 255, 255);
  font-style: normal;
  font-weight: 900;
  text-align: right;
  padding: .2em .5em;
  text-transform: uppercase;
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.socialfeed .likes span {
  width: 20px;
  height: 20px;
  background: url(../img/icon-like-red.svg) no-repeat center;
  background-size: 80%;
  display: block;
  margin-right: 5px;
}

.socialfeed figcaption {
  font-style: normal;
  letter-spacing: 0;
  line-height: 1.4;
  padding: 0 2.5em 2em;
}

.socialfeed .load-more-feed {
  margin: 2.5em auto 0;
}
.desktop .socialfeed .load-more-feed,
.desktop .socialfeed .load-more-feed .btn {
  margin: .75em auto 0;
}
/* Formulare */

.formular {
  display: flex;
  flex-direction: column;
  padding: 2.5em;
}
.mobile .formular {
  flex-direction: column-reverse;
}

.mobile .formular .col-text {
  padding: 0;
}

.col-form form {
  font-weight: 400;
  text-transform: uppercase;
}

.col-form input, .col-form textarea {
  display: block;
  width: 100%;
  padding: .5em;
  margin-bottom: .8em;
  border: 2px solid currentColor;
}

.col-form label {
  display: flex;
  flex-direction: column;
}

.label-text {
  font-weight: 700;
}

.col-form textarea {
  min-height: 9em;
}

.upload {
  width: 100%;
}

.upload label, .col-form button {
  border: 2px solid currentColor;
  font-size: calc(20px + 8 * ((100vw - 320px) / 880));
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  height: 1.5em;
  display: block !important;
  position: relative;
  margin-top: .6em !important;
  cursor: pointer;
}

@media (max-width: 768px) {
  .upload label, .col-form button {
    border: 2px solid currentColor;
    font-size: calc(15px + 8 * ((100vw - 320px) / 880));
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    width: 49%;
    height: 2.5em;
    display: block !important;
    position: relative;
    margin-top: .6em !important;
    cursor: pointer;
  }
}

.upload {
  position: relative;
}

.col-form .message .label-text {
  display: none;
}
.upload label {
  max-width: 49%;
}
.upload .label-text {
  text-align: center;
  margin: 0;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.buttons {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.desktop .buttons button {
  flex-basis: 49%;
}
.light button[type=reset] {
  background: rgba(255, 255, 255, 1);
}

.dark button[type=reset], .dark .upload label, .light button[type=submit] {
  background: rgba(25, 30, 35, 1);
  color: rgba(255, 255, 255, 1);
  border-color: rgba(25, 30, 35, 1);
}

.dark button[type=reset], .dark .upload label, .dark button[type=submit] {
  border: 2px solid rgba(255, 255, 255, 1);
}

.light .upload label:hover, .light .upload label:focus, .light button[type=reset]:hover, .light button[type=reset]:focus, .dark button[type="submit"]:hover, .dark button[type="submit"]:focus {
  background: rgba(25, 30, 35, 1);
  color: rgba(255, 255, 255, 1);
  border-color: rgba(25, 30, 35, 1);
}

.dark button[type="submit"]:hover, .dark button[type="submit"]:focus {
  border-color: rgba(255, 255, 255, 1);
}

.dark button[type=submit], .light button[type=submit]:hover, .light button[type=submit]:focus, .dark button[type="reset"]:hover, .dark button[type="reset"]:focus, .dark .upload label:hover, .dark .upload label:focus {
  background: rgba(255, 255, 255, 1);
  color: rgba(25, 30, 35, 1);
}

.upload input {
  opacity: 0;
  width: auto;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  padding: 1em 0;
}

.terms {
  font-size: .85em;
  width: 100%;
  height: auto;
  position: relative;
  margin: .5em 0;
}

/* Terms & Conditions */

.terms input[type=checkbox] {
  opacity: 0;
  width: 1em;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.terms .label-text {
  width: auto;
  position: relative;
  padding-left: 2em;
}

.terms .label-text::before {
  content: " ";
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  background: rgba(255, 255, 255, 1);
  ;
  border: 4px solid currentColor;
  position: absolute;
  top: 4px;
  left: 0;
  z-index: 1;
}

input#terms:checked+label>.label-text:before {
  background: rgba(25, 30, 35, 1);
}

.error {
  color: red;
  font-size: .7em;
  font-weight: 700;
  margin-top: -.3em;
  display: block;
  text-align: right;
}

.buttons {
  margin-bottom: .25em;
}

.required {
  font-size: .7em;
}

.mobile .btn-cta-wrapper  {
  margin: 1.5em 0;
}

.desktop .formular {
  padding: 5em;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.desktop .formular .col-form, .desktop .formular .col-text {
  padding: 0 2.5em 0 0;
}
.desktop .formular .col-form {
  -ms-grid-column: 1;
  grid-column: 1/2;
}
.desktop .formular .col-text {
  padding: 0 0 0 2.5em;
  -ms-grid-column: 2;
  grid-column: 2/3;
}

.desktop .mobile-only,
.mobile .desktop-only {
  display: none;
}
.mobile .case .btn-back-to-home.desktop-only {
  display: none;
}
.normal-text {
  text-transform: none;
}
/* Special styles for Jobs subpages
   with massive text content
*/
.mobile .jobs .text-text {
  padding-top: 0;
}
.mobile .jobs .text-wrapper {
  text-align: left;
  max-width: 55ch;
}
.mobile .jobs .text-wrapper ul {
  list-style-position: outside;
  padding: 1rem 1rem 0 1rem;
  margin-left: 1rem;
}
.mobile .jobs .text-wrapper li {
  padding-bottom: .5em;
}
.desktop .jobs .col-text .text-wrapper .subtitle {
  margin-top: 0;
}
/*
Responsive Desktop View
04-10-2019 / US
Info: changed in site.js #4:
<meta name="viewport" content="width=1024"> was: "width=1400"
*/
.desktop .page-wrapper {
  width: 100%; /*was 1400px */
  max-width: 1920px; /*new*/
  margin: 0 auto;
}

/* Cookie + Privacy Styles */

/* Cookie Banderole */
.cc-compliance {
  flex-direction: row-reverse;
  flex-wrap: wrap;
}
.cc-window.cc-banner.cc-type-info.cc-theme-block.cc-bottom.cc-color-override-1467710567,
.mobile .cc-color-override-1467710567.cc-window {
  background: rgba(25, 30, 35, 1);
}
.cc-message {
  font-style: normal;
  display: flex;
}
.cc-link {
  padding: 0 .4em;
}
.cc-compliance .cc-btn.cc-dismiss,
.cc-compliance .btn-close {
  padding: 8px 10px;
  background: #e3814e;
  border: none;
  color: white;
  font-family: "Cera", sans-serif;
  font-size: .9em;
  font-weight: normal;
  font-style: normal;
  text-decoration: none;
  display: block;
  cursor: pointer;
}
.cc-compliance .btn-close {
  margin-right: 10px;
}
.cc-compliance .cc-btn.cc-dismiss:hover,
.cc-compliance .btn-close:hover {
  background: #f1c0a7;
  color: #191e23;
}
.cc-btn.cc-dismiss {
  flex-basis: auto;
}
/* .mobile cc styles */
.mobile .cc-revoke, .cc-window {
    flex-direction: column !important;
    }
.mobile .cc-banner .cc-message {
    flex-direction: column;
    margin: 2em 0;
    text-align: center;
    }

/* Cookie Settings in Privacy */

/* Klippklapp in Datenschutz */
.accordion-item.is-active {
    margin-bottom: .5em;
}

.accordion-header {
    background: #fff url(/img/btn-plus-dark.png) no-repeat 99% 50%;
    background-size: 20px;
    display: block;
    padding: .5em;
    font-weight: 700;
    color: #444;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid #fff;
}
.accordion-header:hover {
    background: rgb(25,30,35) url(/img/btn-plus-light.png) no-repeat 99% 50%;
    background-size: 20px;
    color: #fff;
}
.accordion-item.is-active .accordion-header {
    background: rgb(255,255,255) url(/img/btn-minus-dark.png) no-repeat 99% 50%;
    background-size: 20px;
}
.accordion-item.is-active .accordion-header:hover {
    background: rgb(25,30,35) url(/img/btn-minus-light.png) no-repeat 99% 50%;
    background-size: 20px;
}
.mobile .accordion-header,
.mobile .accordion-header:hover,
.mobile .accordion-item.is-active .accordion-header,
.mobile .accordion-item.is-active .accordion-header:hover {
  background-position: 95% 50%;
}

.accordion-body {
    visibility: hidden;
    opacity: 0;
    height: 0;
    padding: 0;
    line-height: 1.5;
    border: 1px solid #fff;
    transition: height .5s ease-in-out;
}

.accordion-item.is-active .accordion-body {
    visibility: visible;
    opacity: 1;
    height: auto;
    padding: 1em;
}

.accordion-content {
    margin-bottom: 1em;
}

.optOut-link {
    display: flex;
    position: relative;
    align-items: center;
    color: #fff;
    line-height: 1;
    transition: .5s;
    text-decoration: none;
}

.optOut-link::before {
    content: "";
    width: 50px;
    height: 20px;
    display: block;
    border: 2px solid #fff;
    border-radius: 30px;
    margin-right: .7em;
}

.optOut-link::after { /* Settings active */
    content: "";
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 50%;
    margin-right: .7em;
    position: absolute;
    left: 26px;
    top: -4px;
    background: #32CD32;
    background-size: 500% 500%;
}

.optOut-link::after:hover {
    animation: none;
}

.deactivated {
    display: flex;
    align-items: center;
    position: relative;
    line-height: 1;
    transition: .5s;
}

.deactivated::before { /* Settings inactive */
    content: "";
    width: 50px;
    height: 20px;
    display: block;
    border: 2px solid #fff;
    border-radius: 30px;
    margin-right: .7em;
}

.deactivated::after {
    content: "";
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 50%;
    margin-right: .7em;
    position: absolute;
    left: -1px;
    top: -4px;
    background: #fff;
}

/* IE 10/11 */
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {  
  .desktop .brand.small img, .desktop .brand img {
    width: 450px;
  }
  .teaser-items {
    background-color: rgb(25,30,35);
  }
  a img {
    text-decoration: none;
    border: none;
    outline: transparent;
  }
  .desktop .mosaic .top img {
     max-width: 465px;
  }
}