@font-face {
  font-family: Worksans;
  src: url('../fonts/WorkSans-SemiBoldItalic.ttf') format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Worksans;
  src: url('../fonts/WorkSans-MediumItalic.ttf') format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Worksans;
  src: url('../fonts/WorkSans-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Worksans;
  src: url('../fonts/WorkSans-ThinItalic.ttf') format("truetype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Worksans;
  src: url('../fonts/WorkSans-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Worksans;
  src: url('../fonts/WorkSans-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Worksans;
  src: url('../fonts/WorkSans-Italic.ttf') format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Worksans;
  src: url('../fonts/WorkSans-Black.ttf') format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Worksans;
  src: url('../fonts/WorkSans-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Worksans;
  src: url('../fonts/WorkSans-LightItalic.ttf') format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Worksans;
  src: url('../fonts/WorkSans-Thin.ttf') format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Worksans;
  src: url('../fonts/WorkSans-ExtraBoldItalic.ttf') format("truetype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Worksans;
  src: url('../fonts/WorkSans-ExtraLight.ttf') format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Worksans;
  src: url('../fonts/WorkSans-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Worksans;
  src: url('../fonts/WorkSans-ExtraBold.ttf') format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Worksans;
  src: url('../fonts/WorkSans-BlackItalic.ttf') format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Worksans;
  src: url('../fonts/WorkSans-BoldItalic.ttf') format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Worksans;
  src: url('../fonts/WorkSans-ExtraLightItalic.ttf') format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Michroma;
  src: url('../fonts/Michroma-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: white;
  --dark-slate-grey: #334148;
  --dim-grey: #636363;
  --black: black;
  --brown: #af272f;
  --white-smoke: whitesmoke;
  --silver: #c2c2c2;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: #333;
  font-family: Worksans, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 25px;
  font-family: Michroma, sans-serif;
  font-size: 5em;
  font-weight: 400;
  line-height: 1em;
}

h2 {
  color: var(--dark-slate-grey);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Michroma, sans-serif;
  font-size: 2.5em;
  font-weight: 400;
  line-height: 1.1em;
}

h3 {
  color: #fff;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.2em;
}

h4 {
  color: #fff;
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 1.3em;
  font-weight: 500;
  line-height: 24px;
}

p {
  color: var(--dim-grey);
  margin-bottom: 20px;
  font-size: 1.2em;
  line-height: 1.6em;
}

a {
  text-decoration: underline;
}

a:focus-visible, a[data-wf-focus-visible] {
  outline-color: var(--black);
  outline-offset: .125rem;
  outline-width: .125rem;
  outline-style: solid;
}

ul {
  margin-top: 15px;
  margin-bottom: 10px;
  padding-left: 20px;
  font-size: 1.2em;
  font-weight: 600;
  list-style-type: square;
}

li {
  margin-bottom: 10px;
}

strong {
  font-weight: 600;
}

.text-link {
  color: #324148;
  line-height: 24px;
  text-decoration: underline;
}

.text-link:hover {
  color: #b12f35;
}

.nav__brand__image {
  width: 225px;
}

.nav {
  z-index: 999;
  background-color: #fff;
  justify-content: flex-start;
  max-width: 1440px;
  height: 95px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 25px 5px;
  position: fixed;
  inset: 0 0% auto;
  box-shadow: inset 0 0 0 1px #0000001a;
}

.introslider__headline {
  color: #fff;
  text-transform: uppercase;
  white-space: pre-line;
  margin-bottom: 30px;
  font-family: Michroma, sans-serif;
  font-size: 4vw;
  font-weight: 400;
  line-height: 1.1em;
}

.introslider__text-wrapper {
  flex-flow: column wrap;
  flex: 0 100%;
  align-items: stretch;
  max-width: 1440px;
  margin-bottom: 7vh;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 40px 50px;
  display: flex;
}

.introslider__text {
  color: #fff;
  max-width: 700px;
  font-size: 1.7em;
  line-height: 1.2em;
}

.nav__contact-button__phone {
  background-color: #b12f35;
  background-image: url('../images/phone_white.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
  transition: all .2s;
  display: inline-block;
  position: static;
  inset: 17px 25px auto auto;
}

.nav__contact-button__phone:hover {
  background-color: var(--dim-grey);
  background-image: url('../images/phone_white.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
  display: inline-block;
  position: static;
  inset: 17px 25px auto auto;
}

.nav__contact-button__mail {
  background-color: var(--dim-grey);
  background-image: url('../images/mail_white_1mail_white.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 40px;
  width: 60px;
  height: 60px;
  transition: all .2s;
}

.nav__contact-button__mail:hover {
  background-color: var(--brown);
}

.introslider__text-container {
  z-index: 500;
  background-image: linear-gradient(#0000, #00000073 30%);
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  position: absolute;
  inset: auto 0% 0;
}

.section {
  padding: 80px 40px;
  position: relative;
}

.section.section--intro {
  justify-content: center;
  width: 100%;
  height: 100vh;
  padding: 0;
  overflow: hidden;
}

.section.section--footer {
  background-color: var(--white-smoke);
  padding-top: 40px;
  padding-bottom: 40px;
}

.section.section--image {
  background-image: linear-gradient(#0003, #0003), url('../images/TzW_020_2.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  align-items: center;
  height: 400px;
  display: flex;
}

.section.section--grey {
  background-color: var(--white-smoke);
}

.section.section--header {
  background-color: var(--brown);
  margin-left: auto;
  margin-right: auto;
  padding-top: 170px;
  padding-left: 40px;
  padding-right: 40px;
}

.flex_container {
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  margin-left: -40px;
  margin-right: -40px;
  display: flex;
}

.flex_box_50 {
  flex: 0 50%;
}

.flex_box_padding {
  height: 100%;
  padding-bottom: 20px;
  padding-left: 40px;
  padding-right: 40px;
}

.h2--white {
  color: #fff;
  font-weight: 400;
}

.hours {
  flex-wrap: wrap;
  margin-bottom: 15px;
  display: flex;
}

.day {
  color: #fff;
  flex-basis: 60%;
  margin-bottom: 5px;
  font-size: 1.3em;
  font-weight: 600;
}

.day.grey {
  color: var(--dark-slate-grey);
}

.hour {
  color: #fff;
  flex: 1;
  font-size: 1.3em;
  font-weight: 600;
}

.hour.grey {
  color: var(--dark-slate-grey);
  margin-bottom: 5px;
}

.p--white {
  color: #fff;
}

.divider {
  background-color: var(--white);
  width: 40px;
  height: 3px;
  margin-bottom: 10px;
}

.divider.divider--red {
  background-color: var(--brown);
  margin-top: 15px;
  margin-bottom: 20px;
}

.divider.divider--red.center {
  margin-left: auto;
  margin-right: auto;
}

.divider.white {
  background-color: #fff;
}

.footerlink {
  color: #000;
  line-height: 2em;
}

.footerlink:hover {
  color: var(--brown);
  text-decoration: underline;
}

.footer__text {
  flex: 1;
  font-size: 1.1em;
  font-weight: 300;
  line-height: 1.4em;
}

.footer__text.footer__text-right {
  text-align: right;
}

.button_intro {
  background-color: var(--brown);
  color: var(--white);
  margin-top: 10px;
  padding: 15px 30px;
  font-size: 1.3em;
  font-weight: 400;
  transition: all .2s;
}

.button_intro:hover {
  background-color: var(--white);
  color: var(--brown);
}

.p--twocolumns {
  column-count: 2;
  column-gap: 80px;
  margin-bottom: 30px;
}

.container {
  flex: 1;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.facts__number {
  color: var(--brown);
  text-align: center;
  text-shadow: 1px 1px 60px #fff, 0 0 75px #fff;
  margin-bottom: 15px;
  font-size: 6em;
  font-weight: 700;
  line-height: 1em;
}

.facts-headline {
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  font-family: Michroma, sans-serif;
  font-size: 3em;
  font-weight: 400;
}

.facts__text {
  color: #fff;
  text-align: center;
  font-size: 2.3em;
  font-weight: 400;
  line-height: 1.2em;
}

.teaser {
  height: 100%;
  text-decoration: none;
}

.teaser__text {
  color: #4b4b4b;
  text-align: left;
  flex: auto;
  margin-bottom: 15px;
  font-size: 1.1em;
  font-weight: 400;
}

.teaser__headline {
  color: var(--dark-slate-grey);
  text-align: left;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 1.3em;
  font-weight: 700;
}

.introslider {
  flex: 1;
  width: 100%;
  height: 100%;
}

.nav__menu__link {
  color: var(--dark-slate-grey);
  padding: 25px 20px;
  font-size: 1.2em;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
}

.nav__menu__link:hover {
  color: #b12f35;
}

.nav__menu__link.w--current {
  color: var(--dark-slate-grey);
  font-weight: 600;
}

.content-image-container {
  padding-top: 25px;
  position: relative;
}

.image-caption-container {
  background-color: var(--brown);
  width: 70%;
  padding: 10px 30px;
  display: inline-block;
  position: absolute;
  inset: 0% auto auto 25px;
}

.nav__menu {
  float: right;
}

.nav__contact-button {
  float: right;
  margin-top: 8px;
  margin-left: 10px;
}

.h4_grey {
  color: var(--dark-slate-grey);
}

.introslider__image-container {
  z-index: -1;
  position: absolute;
  inset: 0%;
}

.introslider__cover-container {
  z-index: -9999;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.header__image {
  position: absolute;
  inset: auto 0% 0% auto;
}

.cookiehinweis {
  z-index: 500;
  background-color: #f5f5f5e6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 25px 20px;
  display: block;
  position: fixed;
  inset: auto 0% 0%;
}

.accordion {
  width: 100%;
  margin-bottom: 10px;
}

.accordion__toggle {
  background-color: var(--dim-grey);
  color: var(--white);
  white-space: normal;
  background-image: url('../images/arrow_down_1arrow_down.png');
  background-position: 99%;
  background-repeat: no-repeat;
  background-size: 50px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  width: 100%;
  margin-top: -1px;
  padding: 15px 60px 15px 15px;
  font-size: 1.1em;
  transition: all .2s;
}

.accordion__toggle:hover {
  background-color: var(--brown);
}

.accordion__toggle.w--open {
  background-color: var(--brown);
  color: var(--white);
  background-image: url('../images/arrow_up_1arrow_up.png');
  background-position: 99%;
  background-repeat: no-repeat;
  background-size: 50px;
  border-top: 1px solid #ccc;
}

.accordion__content {
  background-color: #0000;
  height: 0;
  position: relative;
  overflow: hidden;
}

.accordion__content.w--open {
  height: auto;
}

.accordion__padding {
  padding: 20px 15px;
}

.text_accordion {
  font-size: 1.2em;
  display: inline-block;
}

.h3--grey {
  color: var(--dark-slate-grey);
  margin-bottom: 10px;
  font-size: 1.5em;
}

.h3--grey.center {
  text-align: center;
}

.teaser__flexcontainer {
  flex-direction: column;
  height: 100%;
  display: flex;
}

.teaser__image {
  flex: none;
  width: 100%;
  height: auto;
}

.teaser__textcontainer {
  flex-direction: column;
  flex: auto;
  display: flex;
}

.card {
  background-color: var(--white-smoke);
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px;
  display: flex;
  position: relative;
}

.card.card--red {
  background-color: var(--brown);
}

.button {
  background-color: var(--dim-grey);
  color: var(--white);
  padding: 15px 25px;
  font-size: 1.4em;
  line-height: 1.1em;
  transition: all .2s;
}

.button:hover {
  background-color: var(--brown);
  transition: all .2s;
}

.button.button--ghost {
  box-shadow: inset 0 0 0 1px var(--white);
  background-color: #0000;
}

.button.button--ghost:hover {
  box-shadow: inset 0 0 0 2px var(--white);
  background-color: #0000;
}

.button.button--download {
  background-color: var(--dim-grey);
  background-image: url('../images/icon_download_1icon_download.png');
  background-position: 10px;
  background-repeat: no-repeat;
  background-size: 30px;
  margin-bottom: 15px;
  padding-left: 50px;
}

.button.button--download:hover {
  background-color: var(--brown);
}

.button.button--arrow {
  color: var(--white);
  background-image: url('../images/arrow_right_icon2x-8_1arrow_right_icon@2x-8.png');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 30px;
  padding-right: 40px;
  text-decoration: none;
}

.button.button--intro {
  background-color: var(--brown);
}

.button.button--intro:hover {
  background-color: var(--white);
  color: var(--brown);
}

.notice-popup {
  z-index: 999;
  background-color: #fffffff2;
  border-radius: 15px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 40px 20px;
  display: block;
  position: absolute;
  top: 30%;
  left: 0%;
  right: 0%;
  box-shadow: 1px 1px 20px -4px #000;
}

.notice-close {
  cursor: pointer;
  background-image: url('../images/close_icon_round_1close_icon_round.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 50px 50px;
  width: 80px;
  height: 80px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.notice-text {
  font-size: 1.5em;
}

.spacer-40 {
  height: 40px;
}

.image-cover {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.p--header {
  color: var(--white);
  max-width: 50%;
}

.grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
}

.grid.grid--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid.grid--4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.button-container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  display: flex;
}

.h3--white {
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 1.3em;
  font-weight: 500;
}

.h1_home {
  color: var(--dark-slate-grey);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 2.5em;
  line-height: 1.1em;
}

.team_name {
  padding-top: 8px;
  font-size: 1.2em;
  font-weight: 600;
}

html.w-mod-js [data-ix="cookieinitial"] {
  opacity: 0;
  transform: translate(0, 100px);
}

html.w-mod-js [data-ix="accordion-initial"] {
  height: 0;
  display: none;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 10svw;
  }

  h3 {
    line-height: 1.1em;
  }

  .nav {
    min-width: auto;
    position: relative;
  }

  .introslider__headline {
    margin-bottom: 20px;
    font-size: 2.7em;
  }

  .introslider__text-wrapper {
    flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 50px;
    padding-bottom: 15px;
  }

  .introslider__text {
    font-size: 1.4em;
  }

  .introslider__text-container {
    top: auto;
    left: 0%;
    right: 0%;
  }

  .section {
    padding: 10vw 4vw;
  }

  .section.section--intro {
    height: 600px;
    margin-top: 0;
  }

  .section.section--footer {
    padding-bottom: 20px;
    position: relative;
  }

  .section.section--image {
    justify-content: center;
  }

  .section.section--header {
    padding-top: 80px;
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .flex_container {
    margin-left: -20px;
    margin-right: -20px;
  }

  .flex_box_padding {
    padding-left: 20px;
    padding-right: 20px;
  }

  .button_intro {
    font-size: 1.2em;
    position: static;
  }

  .container {
    flex: 0 auto;
  }

  .facts__number {
    font-size: 4em;
  }

  .facts-headline {
    font-size: 2.2em;
  }

  .facts__text {
    font-size: 1.7em;
  }

  .teaser__text {
    height: 160px;
  }

  .nav__menu__link {
    font-size: 1.4em;
  }

  .nav__menu__link:active, .nav__menu__link.w--current {
    background-color: var(--white);
  }

  .nav__menu-button {
    text-align: center;
    width: 60px;
    height: 60px;
    margin-top: 8px;
    margin-left: 10px;
    padding: 10px 0 0;
    font-size: 3em;
  }

  .nav__menu-button.w--open {
    background-color: var(--white);
    color: var(--brown);
  }

  .introslider__cover-container {
    position: relative;
  }

  .cookiehinweis {
    background-color: #f5f5f5f2;
    width: 100%;
    max-width: none;
    inset: auto 0% 0%;
  }

  .accordion__toggle {
    padding-right: 55px;
  }

  .accordion__padding {
    padding-bottom: 20px;
  }

  .button {
    padding-left: 3vw;
    padding-right: 3vw;
  }

  .notice-popup {
    margin-left: 15px;
    margin-right: 15px;
    top: 20%;
  }

  .image-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .grid {
    grid-column-gap: 4vw;
    grid-row-gap: 4vw;
  }

  .grid.grid--4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 7svw;
  }

  h2 {
    font-size: 1.5em;
  }

  h3 {
    line-height: 1.2em;
  }

  .nav__brand__image {
    width: 200px;
    padding-top: 5px;
  }

  .introslider__headline {
    font-size: 2.2em;
    line-height: 1.3em;
  }

  .introslider__text-wrapper {
    flex: 1;
    padding: 100px 4vw 0;
  }

  .introslider__text {
    color: var(--white);
  }

  .introslider__text-container {
    background-image: linear-gradient(#0000, #00000073 40%);
    padding-left: 0;
    padding-right: 0;
  }

  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .section.section--intro, .section.section--image {
    height: auto;
  }

  .flex_container {
    flex-wrap: wrap;
  }

  .flex_box_50 {
    flex: 0 100%;
  }

  .footerlink {
    float: none;
    text-align: left;
    line-height: 2em;
    display: inline;
  }

  .footer__text.footer__text-right {
    text-align: left;
  }

  .p--twocolumns {
    column-count: 1;
  }

  .facts__number {
    margin-bottom: 0;
  }

  .facts-headline {
    font-size: 1.5em;
  }

  .facts__text {
    font-size: 1.4em;
  }

  .teaser__text {
    height: auto;
  }

  .content-image-container {
    margin-top: 20px;
  }

  .slider__right-arrow, .slider__left-arrow {
    display: none;
  }

  .introslider__image-container {
    height: 80vw;
    position: relative;
  }

  .header__image {
    width: 50%;
  }

  .accordion__toggle {
    background-size: 25px;
    padding-right: 35px;
    font-size: 1em;
    font-weight: 300;
  }

  .accordion__toggle.w--open {
    background-size: 25px;
  }

  .accordion__content {
    height: 0;
  }

  .card {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .button {
    font-size: 1.2em;
  }

  .notice-popup {
    padding: 40px;
    top: 10%;
  }

  .p--header {
    max-width: 100%;
  }

  .grid, .grid.grid--3 {
    grid-template-columns: 1fr;
  }

  .h1_home {
    font-size: 1.5em;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 9svw;
  }

  h2 {
    font-size: 1.5em;
    font-weight: 400;
  }

  .nav__brand__image {
    width: 140px;
    padding-top: 0;
  }

  .nav {
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
  }

  .introslider__headline {
    font-size: 1.6em;
    font-weight: 400;
  }

  .introslider__text-wrapper {
    margin-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .nav__contact-button__mail {
    display: none;
  }

  .introslider__text-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .section.section--header {
    padding-top: 4vw;
    padding-bottom: 20vw;
  }

  .hours {
    flex-flow: wrap;
  }

  .day {
    flex-basis: 100%;
  }

  .hour {
    flex: 0 100%;
  }

  .footer__text {
    text-align: left;
  }

  .button_intro {
    text-align: center;
  }

  .p--twocolumns {
    column-count: 1;
  }

  .facts__number {
    margin-bottom: 5px;
    font-size: 3em;
  }

  .facts__text {
    margin-bottom: 20px;
    font-size: 1.1em;
  }

  .teaser {
    height: auto;
  }

  .image-caption-container {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    inset: 0% 0% auto;
  }

  .nav__menu-button {
    margin-left: 0;
  }

  .nav__brand {
    margin-top: 15px;
    padding-left: 0;
  }

  .slider__nav {
    display: none;
  }

  .introslider__image-container {
    height: 140vw;
  }

  .cookiehinweis {
    padding-left: 0;
  }

  .accordion__toggle.w--open {
    background-size: 25px;
  }

  .teaser__flexcontainer {
    height: auto;
  }

  .notice-popup {
    background-color: #fff;
    padding-top: 80px;
    box-shadow: 1px 1px 17px -1px #000;
  }

  .grid.grid--4 {
    grid-template-columns: 1fr;
  }

  .h1_home, .heading {
    font-size: 1.4em;
  }
}

#w-node-_3967086e-0667-ec07-d014-7cbc4cfd7b60-2625704d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e6e22cb2-fe8b-6e8f-1724-d18f374a10b5-f70e5fbd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-fd14d14b-c21d-5c61-2b33-8b2cc4ab6006-2625704d, #w-node-_5fc1a6e2-afbf-7583-d8f1-ae156f0d8da7-2625704d {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_3967086e-0667-ec07-d014-7cbc4cfd7b60-2625704d, #w-node-fd14d14b-c21d-5c61-2b33-8b2cc4ab6006-2625704d, #w-node-_5fc1a6e2-afbf-7583-d8f1-ae156f0d8da7-2625704d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-fd14d14b-c21d-5c61-2b33-8b2cc4ab6006-2625704d, #w-node-_5fc1a6e2-afbf-7583-d8f1-ae156f0d8da7-2625704d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Worksans';
  src: url('../fonts/WorkSans-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Worksans';
  src: url('../fonts/WorkSans-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Worksans';
  src: url('../fonts/WorkSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Worksans';
  src: url('../fonts/WorkSans-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Worksans';
  src: url('../fonts/WorkSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Worksans';
  src: url('../fonts/WorkSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Worksans';
  src: url('../fonts/WorkSans-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Worksans';
  src: url('../fonts/WorkSans-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Worksans';
  src: url('../fonts/WorkSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Worksans';
  src: url('../fonts/WorkSans-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Worksans';
  src: url('../fonts/WorkSans-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Worksans';
  src: url('../fonts/WorkSans-ExtraBoldItalic.ttf') format('truetype');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Worksans';
  src: url('../fonts/WorkSans-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Worksans';
  src: url('../fonts/WorkSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Worksans';
  src: url('../fonts/WorkSans-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Worksans';
  src: url('../fonts/WorkSans-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Worksans';
  src: url('../fonts/WorkSans-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Worksans';
  src: url('../fonts/WorkSans-ExtraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Michroma';
  src: url('../fonts/Michroma-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}