@charset "UTF-8";
/* blau */
/* Test autoprefixer */
.test_autoprefix {
  -webkit-transform: rotate("41");
          transform: rotate("41");
}

:root {
  --font-size-headline-l: clamp(calc(5.2 * 14px / 1.5), calc(100vw / 100 * 5.2), calc(5.2 * 14px * 2));
  --line-height-headline-l: calc(var(--font-size-headline-l) *0.9);
  --font-size-headline-m: clamp(calc(1.4 * 14px / 1.5), calc(100vw / 100 * 1.4), calc(1.4 * 14px * 2));
  --line-height-headline-m: calc(var(--font-size-headline-m) /3 *3.8);
  --font-size-headline-s: clamp(calc(1.2 * 14px / 1.5 * 1.2), calc(100vw / 100 * 1.2), calc(1.2 * 14px * 2));
  --line-height-headline-s: calc(var(--font-size-headline-s) /3 *4);
  --font-size-main: clamp(calc(1.6 * 14px / 1.5), calc(100vw / 100 * 1.6), calc(1.6 * 14px * 2));
  --line-height-main: calc(var(--font-size-main) /3 * 4.5);
  --font-size-claim: clamp(calc(6 * 14px / 1.5), calc(100vw / 100 * 6), calc(6 * 14px * 2));
  --line-height-claim: calc(var(--font-size-claim) /3 *3.6);
  --font-size-small: clamp(calc(1.1428571429 * 14px / 1.5 * 1.2), calc(100vw / 100 * 1.1428571429), calc(1.1428571429 * 14px * 1.0));
  --line-height-small: calc(var(--font-size-small) /3 * 4.0);
  --font-size-menu-large: clamp(calc(1.2 * 14px / 1.5), calc(100vw / 100 * 1.2), calc(1.2 * 14px * 2));
  --font-size-menu-small: clamp(calc(1 * 14px / 1.5), calc(100vw / 100 * 1), calc(1 * 14px * 2));
  --border-padding: $border_padding;
}

@media (max-width: 1200px) {
  :root {
    --border-padding: calc(0px * 0.3);
    --font-size-menu-large: clamp(calc(2 * 14px / 1.5), calc(100vw / 100 * 2), calc(2 * 14px * 2));
    --line-height-menu-large: calc(var(--font-size-menu-large) /3 * 4.0);
  }
}
@media (max-width: 800px) {
  :root {
    --border-padding: calc(0px * 0.2);
  }
}
@media (max-width: 510px) {
  :root {
    --border-padding: calc(0px * 0.1);
  }
}
/*
------------------------------------------------------------------
functions, mixins
------------------------------------------------------------------
*/
/*
------------------------------------------------------------------
general styling
------------------------------------------------------------------
*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*html {
    overflow-y: scroll;
}*/
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
  .main > section {
    scroll-margin: 0;
    /* nicht nötig */
  }
}
html,
body {
  font-family: "montserrat", sans-serif;
  position: relative;
  margin: 0;
  padding: 0;
  background-color: white;
  scroll-padding-top: calc(120px + 2vw);
}

.float_left,
.align_left {
  float: left;
}

.float_right,
.align_right {
  float: right;
}

.zentriert,
.align_center {
  margin: 0 auto;
  text-align: center;
}

.underline {
  display: inline-block;
  border-bottom: 2px solid #c63d55;
}

.inline {
  display: inline;
}

.main_content_formatting, .main_content_formatting_large {
  margin: 0 auto;
  padding: 0px;
  width: 100%;
  min-width: 320px;
  max-width: 2400px;
}

.main_content_formatting_large {
  max-width: calc(2400px * 2);
}

.content-padding {
  padding: 25px;
}

.clear,
#clear {
  height: 0.1px;
  font-size: 0.1px;
  line-height: 0.1px;
  clear: both;
}

.invisible {
  width: 0;
  height: 0;
  left: -1000px;
  top: -1000px;
  position: absolute;
  overflow: hidden;
}

.invisible_container {
  opacity: 0;
}
.invisible_container* {
  opacity: 0;
}

.inverted_img {
  -webkit-filter: invert(1);
  filter: invert(1);
}

hr {
  height: 10px;
  background-color: #c63d55;
}

.full_width {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

/*
------------------------------------------------------------------
structure
------------------------------------------------------------------
*/
.main > section {
  padding-left: var(--border-padding);
  padding-right: var(--border-padding);
  position: relative;
  min-height: calc(100vh - 25px);
  padding-top: 0px;
}
.main > section:first-child {
  padding-top: calc(120px + 2vw);
}

@media (max-width: 1200px) {
  .main_nav, .footer_nav {
    position: static;
  }
}

header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: calc(120px + 2vw);
  margin: 0 auto;
  padding: 0 0px;
  z-index: 10;
}
@media (max-width: 800px) {
  header {
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media (max-width: 510px) {
  header {
    padding: 0;
  }
}
header .header_content_wrapper {
  position: relative;
  margin: 0 auto;
  padding-top: 15px;
  height: calc(120px + 2vw);
  max-width: 2400px;
  background-color: white;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
header a {
  border: none;
}

#main {
  margin: 0 auto;
  padding: 0px;
  width: 100%;
  min-width: 320px;
  max-width: 2400px;
}

.wrapper_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: no-wrap;
      flex-wrap: no-wrap;
  width: 100%;
  min-height: calc(100vh - 25px - calc(120px + 2vw));
}
@media (max-width: 800px) {
  .wrapper_section {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.content_left,
.content_right {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  padding: 25px;
  padding-bottom: 0;
}
@media (max-width: 800px) {
  .content_left,
  .content_right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    min-height: calc(100vh - 25px - calc(120px + 2vw));
  }
}

.content_left {
  padding-right: calc(25px / 2);
  padding-left: 0;
}
@media (max-width: 800px) {
  .content_left {
    padding-right: 0;
  }
}

.content_right {
  padding-left: calc(25px / 2);
  padding-right: 0;
}
@media (max-width: 800px) {
  .content_right {
    padding-left: 0;
  }
}

.content_action_button {
  padding-bottom: 180px;
}

.content_fullsize {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}

/*
------------------------------------------------------------------
logo
------------------------------------------------------------------
*/
.logo {
  display: inline-block;
  position: absolute;
  width: 50%;
  top: 25%;
  text-align: center;
}
.logo a {
  border: none;
  text-decoration: none;
  outline: none;
}
.logo a:focus-visible {
  border: 0;
}
.logo a:before {
  content: none;
}
.logo img {
  display: inline-block;
  /* damit verlinktes Logo nicht über die gesamte Breite geht */
  width: 400px;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.logo img:hover {
  opacity: 0.5;
}
@media (max-width: 1200px) {
  .logo {
    left: 7.5px;
    bottom: 0;
  }
  .logo img {
    width: 240px;
  }
}
/*
------------------------------------------------------------------
headroom
------------------------------------------------------------------
*/
.headroom {
  will-change: transform;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.xxxheadroom--pinned,
.headroom--top {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.headroom--unpinned .logo img,
.headroom--not-top .logo img {
  width: calc(400px * 0.6);
}
@media (max-width: 1200px) {
  .headroom--top .logo {
    bottom: -30px;
  }
  .headroom--not-top .logo {
    bottom: -50px;
  }
}
/*
------------------------------------------------------------------
text
------------------------------------------------------------------
*/
*::-moz-selection {
  background-color: #d97c8c;
}

*::selection {
  background-color: #d97c8c;
}

@font-face {
  font-family: "montserrat";
  src: url("../fonts/Montserrat-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "montserrat";
  src: url("../fonts/Montserrat-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "montserrat";
  src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "montserrat";
  src: url("../fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "montserrat";
  src: url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
body {
  font-size: var(--font-size-main);
  line-height: var(--line-height-main);
  font-family: "montserrat", sans-serif;
  font-weight: 300;
  color: black;
  letter-spacing: 1px;
}

b,
strong {
  font-weight: 500;
}

h1 {
  font-size: var(--font-size-headline-l);
  line-height: var(--line-height-headline-l);
  margin-top: 0;
  margin-bottom: 60px;
  font-family: "montserrat", sans-serif;
  color: black;
  font-weight: bold;
  text-transform: uppercase;
}
h1::first-line {
  font-size: calc(var(--font-size-headline-l) / 3);
  line-height: calc(var(--line-height-headline-l) / 3);
  font-weight: normal;
}

@media (max-width: 510px) {
  h1,
  h2,
  h3 {
    -webkit-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto;
  }
}
h2, h3 {
  font-size: var(--font-size-headline-m);
  font-weight: 500;
  line-height: var(--line-height-headline-m);
  margin-top: var(--font-size-headline-m);
  margin-bottom: var(--font-size-headline-m);
  padding: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 0.4rem;
  font-size: var(--font-size-headline-s);
  font-weight: bold;
  line-height: var(--line-height-headline-s);
  text-transform: none;
}

a {
  color: black;
  text-decoration: none;
  border-bottom: 1px black solid;
}
a.no_link_decoration {
  border: none;
  text-decoration: none;
}
a.no_link_decoration:focus-visible {
  border: 0;
}
a.no_link_decoration:before {
  content: none;
}

p {
  margin-top: 0rem;
  margin-bottom: 60px;
  max-width: 1800px;
}

.main ul {
  margin-top: 0px;
  margin-bottom: 2rem;
  padding-left: 1.2rem;
  list-style-type: none;
  text-indent: -0.7rem;
}
.main ul li:before {
  content: "▪";
  margin-left: 0;
  margin-right: 0.4rem;
  color: #427bab;
}
.main ul li ul li:before {
  color: #c1dffb;
}
.main ul a {
  text-indent: 0;
  line-height: 16px;
}
.main ol {
  margin-top: 0px;
  margin-bottom: 0.6rem;
  padding-left: 1.6rem;
  counter-reset: item;
  text-indent: -0.6rem;
}
.main ol li {
  display: block;
}
.main ol li:before {
  display: inline-block;
  width: 0.6rem;
  content: counter(item) ". ";
  counter-increment: item;
  color: #427bab;
}
.main p:has(+ ul) {
  background-color: yellow;
  margin-bottom: 15px;
}

.textbox {
  padding-left: 10vw;
  padding-right: 10vw;
}

/*
------------------------------------------------------------------
images
------------------------------------------------------------------
*/
.main_container img {
  height: auto;
}
.main_container img.align_left {
  padding-right: 15px;
}
.main_container img.align_right {
  padding-left: 15px;
}
.main_container img a {
  border: none;
  text-decoration: none;
}
.main_container img a:focus-visible {
  border: 0;
}
.main_container img a:before {
  content: none;
}

img {
  display: block;
  border: 0;
  max-width: 100%;
}

picture {
  display: block;
}

figure {
  display: table;
  margin: 0;
}
figure.align_left {
  padding-right: 15px;
}
figure.align_left figcaption {
  padding-right: 15px;
}
figure.align_right {
  padding-left: 15px;
}
figure.align_right figcaption {
  padding-left: 15px;
}

figcaption {
  display: table-caption;
  width: 100%;
  margin-top: 3px;
  caption-side: bottom;
  font-size: var(--font_size_s);
}

.image_wrapper {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
}

/*
------------------------------------------------------------------
navigation
------------------------------------------------------------------
*/
/*---------------------------- Menübutton----------------------*/
/*Menübutton*/
.menu-button {
  position: absolute;
  right: calc(0px / 2);
  bottom: 0px;
}
.toggle-nav {
  display: none;
  color: #427bab;
  background-color: transparent;
  border: none;
}
.toggle-nav:hover {
  background-color: transparent;
}
@media screen and (max-width: 1200px) {
  .toggle-nav.is-inactive {
    display: block;
  }
}

.show-nav .is-active {
  display: block;
}
.show-nav .is-inactive {
  display: none;
}
.show-nav .main_nav, .show-nav .footer_nav {
  max-height: 500px;
  -webkit-animation: fadeInRight;
          animation: fadeInRight;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
@media screen and (min-width: 1200px) {
  .show-nav .toggle-nav {
    display: none;
  }
}

.main_nav, .footer_nav {
  position: absolute;
  top: 25%;
  top: 60px;
  right: 0;
  width: 46%;
  display: block;
  height: auto;
  background-color: white;
  color: black;
  font-family: "montserrat", sans-serif;
  font-size: var(--font-size-menu-large);
  text-transform: uppercase;
  text-align: right;
  font-weight: 300;
  overflow: hidden;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.main_nav ul, .footer_nav ul {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 2px;
  text-align: right;
}
.main_nav ul li, .footer_nav ul li {
  float: left;
  padding-top: 2px;
  padding-left: 30px;
  text-indent: 0;
  text-align: right;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.main_nav ul li:first-child, .footer_nav ul li:first-child {
  padding-left: 0;
}
.main_nav ul li.current, .footer_nav ul li.current, .main_nav ul li.current a, .footer_nav ul li.current a {
  font-weight: 500;
}
.main_nav ul li::before, .footer_nav ul li::before {
  content: none;
}
.main_nav ul li:hover, .footer_nav ul li:hover {
  padding-top: 0px;
  padding-bottom: 2px;
}
.main_nav a, .footer_nav a {
  border: none;
  text-decoration: none;
  color: black;
}
.main_nav a:focus-visible, .footer_nav a:focus-visible {
  border: 0;
}
.main_nav a:before, .footer_nav a:before {
  content: none;
}
@media (max-width: 1200px) {
  .main_nav, .footer_nav {
    margin-right: 60px;
    margin-top: 20px;
    max-height: 0px;
    width: auto;
    line-height: var(--line-height-menu-large);
    -webkit-animation: fadeOut;
            animation: fadeOut;
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  .main_nav ul, .footer_nav ul {
    float: none;
    margin-top: 0px;
  }
  .main_nav ul li, .footer_nav ul li {
    float: none;
    padding-right: 30px;
  }
  .main_nav ul li:hover, .footer_nav ul li:hover {
    padding-top: 0px;
    padding-right: 32px;
  }
}

.footer_nav {
  position: relative;
  display: inline-block;
  top: 0;
  right: 0;
  width: auto;
  max-height: none;
  margin: 0;
  padding: 0;
  font-size: var(--font-size-menu-large);
  color: white;
  background-color: transparent;
  cursor: pointer;
}
.footer_nav a {
  color: white;
}
.footer_nav ul {
  margin: 0;
  margin-top: 7.5px;
  width: 100%;
  text-align: center;
}
.footer_nav ul li {
  display: inline-block;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: calc(30px / 2);
  padding-right: calc(30px / 2);
}
.footer_nav ul li:nth-child(2) {
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .footer_nav {
    max-height: none;
    margin-right: 0;
  }
  .footer_nav ul li:hover {
    padding-right: calc(30px / 2);
  }
}

/* 
    --------------------------------------------------------
    languageSwitcher
    --------------------------------------------------------
*/
nav.languages {
  /*@include border;*/
  display: block;
  font-size: var(--font-size-menu-small);
}
nav.languages ul {
  list-style: none;
  padding: 0;
  text-transform: uppercase;
}
nav.languages ul li {
  display: inline-block;
}
nav.languages.in_header {
  position: absolute;
  right: 15px;
  top: 66px;
}
nav.languages.in_header ul {
  margin: 0px auto 0 auto;
  margin: 0;
}
nav.languages.in_header ul li {
  list-style: none;
}
nav.languages.in_header ul li:not(:last-child) {
  margin-right: 2px;
}
nav.languages.in_header ul li:not(:last-child)::after {
  content: "/";
}
nav.languages.in_header ul li a {
  border: none;
  text-decoration: none;
}
nav.languages.in_header ul li a:focus-visible {
  border: 0;
}
nav.languages.in_header ul li a:before {
  content: none;
}
nav.languages.in_header ul li.current, nav.languages.in_header ul li.current a {
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  nav.languages.in_header {
    top: 20px;
  }
}
nav.languages.in_topnav {
  display: none;
  /*padding-left: $padding_header_elements_max;*/
}
@media screen and (max-width: 800px) {
  nav.languages.in_topnav {
    display: inline-block;
  }
}
nav.languages.in_topnav ul li {
  /*padding: 0 $padding_navigation_elements 0 $padding_navigation_elements;*/
  display: block;
  float: left;
}
nav.languages.in_topnav ul li:not(:last-child)::after {
  content: "|";
  margin: 0 10px;
}
nav.languages.in_topnav ul li a {
  border: none;
  text-decoration: none;
}
nav.languages.in_topnav ul li a:focus-visible {
  border: 0;
}
nav.languages.in_topnav ul li a:before {
  content: none;
}
/*
------------------------------------------------------------------
footer
------------------------------------------------------------------
*/
footer {
  padding-left: var(--border-padding);
  padding-right: var(--border-padding);
  height: 50px;
  padding-top: 0;
  padding-bottom: 15px;
}
footer a {
  border: none;
  text-decoration: none;
}
footer a:focus-visible {
  border: 0;
}
footer a:before {
  content: none;
}
@media (max-width: 800px) {
  footer {
    padding: 7.5px 25px;
  }
}

.footer_content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  background-color: black;
}

.footer_left,
.footer_center,
.footer_right {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.footer_left ul.nav,
.footer_center ul.nav,
.footer_right ul.nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer_left ul.nav li,
.footer_center ul.nav li,
.footer_right ul.nav li {
  cursor: default;
}
.footer_left ul.nav a,
.footer_center ul.nav a,
.footer_right ul.nav a {
  border: none;
  text-decoration: none;
}
.footer_left ul.nav a:focus-visible,
.footer_center ul.nav a:focus-visible,
.footer_right ul.nav a:focus-visible {
  border: 0;
}
.footer_left ul.nav a:before,
.footer_center ul.nav a:before,
.footer_right ul.nav a:before {
  content: none;
}

.footer_center {
  text-align: center;
}

/*
------------------------------------------------------------------
Layouts der Inhaltselemente
------------------------------------------------------------------
*/
.fancybox__container {
  --fancybox-color: #334155;
  --fancybox-bg: #eeeeeed1;
  --fancybox-content-color: #6b7280;
  --fancybox-content-bg: #fff;
  --fancybox-thumbs-width: 48px;
  --fancybox-thumbs-ratio: 1;
  --carousel-button-svg-stroke-width: 1.5;
  --carousel-button-svg-filter: none;
  overflow-y: scroll;
}

.fancybox__content {
  border: 1px black solid;
  padding: 60px;
  color: black;
  max-width: 900px;
}
.fancybox__content h1 {
  margin-bottom: 50px;
}
.fancybox__content > .carousel__button.is-close {
  top: 10px;
}

.fancybox__thumbs {
  display: none;
}

.claim {
  text-align: center;
  font-size: var(--font-size-claim);
  line-height: var(--line-height-claim);
  padding-top: 10vh;
  background: -webkit-gradient(linear, left top, right top, from(#c1dffb), to(#427bab));
  background: linear-gradient(to right, #c1dffb 0%, #427bab 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.claim.claim-over-image {
  position: absolute;
  width: 100%;
  top: 50%;
  padding: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: left;
}

button,
.button {
  border: none;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin: 0;
  padding: 5px 10px 5px 10px;
  color: black;
  text-decoration: none;
  font-family: "montserrat", sans-serif;
  font-size: var(--font-size-main);
  font-weight: 500;
  line-height: var(--line-height-main);
  background-color: white;
  outline: none;
  border: 2px black solid;
  cursor: pointer;
}
button:focus-visible,
.button:focus-visible {
  border: 0;
}
button:before,
.button:before {
  content: none;
}
button:hover,
.button:hover {
  background-color: #c1dffb;
}
button:focus,
.button:focus {
  background-color: white;
}
button.active,
.button.active {
  background-color: #c63d55;
}
button.button-inverted,
.button.button-inverted {
  color: white;
  background-color: black;
  border-color: white;
}
button.button-no-border,
.button.button-no-border {
  border: none;
}
button.button-action,
.button.button-action {
  display: block;
  position: absolute;
  bottom: 120px;
  left: 50%;
  width: auto;
  color: white;
  background-color: black;
  white-space: nowrap;
  text-transform: uppercase;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}

.button {
  display: inline-block;
}

.icon {
  stroke: black;
  stroke-width: 1;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

.icon-close {
  stroke: #c63d55;
  stroke-width: 2;
}

.icon-chevron {
  display: block;
  position: absolute;
  bottom: 15px;
  left: 50%;
  margin-top: 15px;
  -webkit-transform: translateX(-50%) scale(2);
          transform: translateX(-50%) scale(2);
  stroke-width: 0.3px;
}

.share-container {
  margin: -5px auto 0 auto;
  text-align: center;
  max-width: 18rem;
}
@media (max-width: 800px) {
  .share-container {
    margin: 0;
    text-align: right;
  }
}

.wrapper_left_footer {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.privacywire-banner {
  background-color: rgba(255, 255, 255, 0.9) !important;
}

/* 
    --------------------------------------------------------
    pages: seitenspez. Anpassungen
    --------------------------------------------------------
*/
#video {
  min-height: auto;
}

/* 
    --------------------------------------------------------
    Tiles
    --------------------------------------------------------
*/
.tiles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 15px;
  gap: 15px;
}
.tiles.content-boxes-start {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 15px;
  margin-right: -15px;
}
.tiles.content-boxes-start .tile {
  margin-right: 15px;
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
}
.tiles.content-boxes-start h2, .tiles.content-boxes-start h3 {
  text-align: center;
}
@media (max-width: 800px) {
  .tiles {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.tiles figure {
  display: block;
  text-align: center;
  margin-top: 60px;
  margin: 60px auto 0;
}
.tiles figcaption {
  margin-bottom: 25px;
}
.tiles img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.tile {
  font-size: var(--font-size-small);
  line-height: var(--line-height-small);
  text-align: center;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -ms-flex-preferred-size: calc(100% - ((2 - 1) * 15px) / 2);
      flex-basis: calc(100% - ((2 - 1) * 15px) / 2);
  overflow-wrap: anywhere;
}
.tile:target, .tile:hover {
  background-color: #ddd;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.tile h2, .tile h3 {
  text-align: center;
}
.tile h3 {
  margin: 7.5px 0 0 0;
}
.tile h4 {
  padding-bottom: 15px;
  font-family: "montserrat", sans-serif;
  font-weight: normal;
  font-size: 0.8rem;
}
.tile p {
  margin: 0;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}
.tile .image-contain img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.tile ul {
  display: inline-block;
  padding-left: 0;
}
.tile ul.download_list {
  margin-bottom: 0;
}
.tile.tile-padding-large {
  padding: 90px;
  padding-bottom: 15px;
}
.tile.tile-small {
  -ms-flex-preferred-size: 250px;
      flex-basis: 250px;
}
.tile.tile-large {
  -ms-flex-preferred-size: 550px;
      flex-basis: 550px;
}
.tile.tile-grow {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.tile.tile-fullsize {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
.tile.tile-image-small img {
  width: 140px;
}
.tile.tile-gallery {
  -ms-flex-preferred-size: calc((100% / 4) - ((4 - 1) * 15px / 4));
      flex-basis: calc((100% / 4) - ((4 - 1) * 15px / 4));
}
@media (max-width: 800px) {
  .tile.tile-gallery {
    -ms-flex-preferred-size: calc((100% / 3) - ((3 - 1) * 15px / 3));
        flex-basis: calc((100% / 3) - ((3 - 1) * 15px / 3));
  }
}
@media (max-width: 510px) {
  .tile.tile-gallery {
    -ms-flex-preferred-size: calc((100% / 2) - ((2 - 1) * 15px / 2));
        flex-basis: calc((100% / 2) - ((2 - 1) * 15px / 2));
  }
}
.tile.tile-gallery p {
  padding: 0;
  font-size: var(--font_size_small);
}
.tile.tile-gallery a {
  cursor: pointer;
}
.tile.tile-gallery img {
  width: 100%;
}
.tile.tile-gallery.show-pointer {
  cursor: pointer;
}
.tile.tile-gallery.tile-gallery-categories h3 {
  font-size: var(--font-size-headline-m);
  font-weight: normal;
  line-height: var(--line-height-headline-m);
  text-transform: uppercase;
}
.tile.half_screen_gallery {
  -ms-flex-preferred-size: calc((100% / 3) - ((3 - 1) * 15px / 3));
      flex-basis: calc((100% / 3) - ((3 - 1) * 15px / 3));
  padding-bottom: 60px;
}
@media (max-width: 1200px) {
  .tile.half_screen_gallery {
    -ms-flex-preferred-size: calc((100% / 2) - ((2 - 1) * 15px / 2));
        flex-basis: calc((100% / 2) - ((2 - 1) * 15px / 2));
  }
}
@media (max-width: 800px) {
  .tile.half_screen_gallery {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.tile.tile-insta {
  width: 250px;
  height: 250px;
  overflow: hidden;
}
.tile.tile-insta img {
  width: 250px;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.tile.tile-follow {
  height: 2rem;
}
.tile.tile-follow:target, .tile.tile-follow:hover {
  background-color: initial;
}
.tile.tile-follow p {
  padding: 0;
}
.tile.tile-border {
  border-bottom: 3px solid;
  border-top: 0;
  border-image-slice: 1;
  border-image-source: linear-gradient(90deg, white 20%, black 20%, black 80%, white 80%);
}
.tile.tile-gallery-popup {
  width: 250px;
  height: auto;
  min-height: 260px;
  margin-bottom: 90px;
}
.tile.tile-gallery-news {
  width: 250px;
  margin-top: 60px;
}
@media (max-width: 1200px) {
  .tile {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    max-width: auto;
    margin-bottom: 2%;
  }
  .tile h2,
  .tile h3 {
    text-align: center;
  }
}
@media (max-width: 1200px) {
  .tile.tile-insta:nth-child(n+9) {
    display: none;
  }
}

/*
------------------------------------------------------------------
video
------------------------------------------------------------------
*/
.wrapper_video {
  margin: 0 auto;
  width: 100%;
}

.vjs-poster {
  background-color: white;
}

/*
------------------------------------------------------------------
tweaks
------------------------------------------------------------------
*/
/*
------------------------------------------------------------------
print
------------------------------------------------------------------
*/
@page {
  size: A4;
}
@media print {
  html, body {
    width: 210mm;
    height: 297mm;
    height: 197mm;
  }
  #left_nav,
  #top_nav,
  .search,
  #leftColButton,
  #button_print,
  #abschluss,
  .back_to_overview {
    display: none;
  }
  #container {
    margin-left: 0;
  }
  .container {
    grid-template-areas: "header" "content" "footer";
    grid-template-columns: auto;
    grid-template-rows: auto 1fr auto;
    width: 210mm;
    overflow: hidden;
  }
  .content_right, .content_right_additional {
    padding: 0;
  }
  #logo {
    grid-area: header;
    padding-top: 10px;
  }
  body {
    color: black;
  }
}