@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../../fonts/open-sans-03-memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4n.ttf") format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../../fonts/open-sans-04-memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1y4n.ttf") format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../../fonts/open-sans-05-memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1y4n.ttf") format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../../fonts/open-sans-01-memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkaVc.ttf") format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../../fonts/open-sans-medium-italic.ttf") format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../../fonts/open-sans-02-memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjaVc.ttf") format("truetype");
}

:root {
  --font-body: "Open Sans", Arial, Helvetica, sans-serif;
  --color-text: #747474;
  --color-heading: #333;
  --color-link: #333;
  --color-link-hover: rgb(225, 7, 7);
  --color-reference-link: #2980b9;
  --color-muted: #8f8f8f;
  --color-border: #e5e5e5;
  --color-surface: #fff;
  --color-surface-soft: #f6f6f6;
  --color-menu-bg: #050505;
  --color-menu-text: #fff;
  --color-accent-menu-hero: rgb(225, 7, 7);
  --color-accent-content: #ff675b;
  --color-footer-bg: #000;
  --color-footer-text: #ccc;
  --color-footer-link: #bfbfbf;
  --page-max-width: 1220px;
  --page-gutter: 30px;
  --body-font-size: 14px;
  --body-line-height: 1.5;
  --menu-height: 50px;
  --menu-height-mobile: 58px;
  --menu-font-size: 18px;
  --hero-title-max: 109px;
  --hero-slogan-max: 24px;
  --footer-logo-width: 220px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-surface);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
}

img,
svg,
video,
audio,
iframe {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
}

a {
  color: var(--color-link);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--color-link-hover);
}

a.barth, .achtung, .achtung a {
color: var(--color-accent-menu-hero);
}
a.barth:hover, .achtung a:hover {
color: #ff4b3c;
}
.achtung, .achtung a {
font-weight:800; 
}
p {
  margin: 0 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 22.78px 0;
  color: var(--color-heading);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.4;
}

h1 {
  font-size: 34px;
}

h2 {
  margin-top: 0;
  margin-bottom: 19.8px;
  font-size: 18px;
  line-height: 1.5;
}

h3 {
  margin: 16px 0;
  font-size: 16px;
  line-height: 1.5;
}

ul,
ol {
  margin-top: 0;
  padding-left: 1.4em;
}

strong,
b {
  font-weight: 700;
}

button,
input,
select,
textarea {
  font: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus,
.skip-link:focus-visible {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10001;
  width: auto;
  height: auto;
  margin: 0;
  padding: .65rem .9rem;
  overflow: visible;
  clip: auto;
  background: var(--color-menu-bg);
  color: var(--color-menu-text);
  white-space: normal;
}

#main {
  width: 100%;
  background: var(--color-surface);
}

#content {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--page-max-width));
  margin: 0 auto;
}

.page-content {
  width: 100%;
}

.home #content {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--page-max-width));
}

.content-section {
  width: 100%;
  margin: 60px 0 40px;
  clear: both;
}

.content-section:first-child {
  margin-top: 0;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.content-grid.align-center {
  align-items: center;
}

.content-column {
  min-width: 0;
  padding-right: 1.92%;
  padding-left: 1.92%;
}

.content-grid > .content-column:first-child {
  padding-left: 0;
}

.content-grid > .content-column:last-child {
  padding-right: 0;
}

.content-column.is-full {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
}

.content-column.is-half {
  width: 50%;
}

.content-column.is-third {
  width: 33.3333%;
}

.content-column.is-two-thirds {
  width: 66.6667%;
}

.mittig {
  text-align: center;
}

.bottomspace {
  margin-bottom: 40px;
}

.hinweisbanner {
  margin: 1.5em 0;
  text-align: center;
}

.hinweisbanner a {
  font-size: clamp(.8rem, 3cqi, 1.6rem);
  font-weight: 700;
}

.separator {
  width: 100%;
  margin: 2rem 0;
  border: 0;
  border-top: 1px solid var(--color-border);
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  margin: 10px 0 40px;
  padding: .75em 2em;
  border: 0;
  border-radius: 3px;
  background: var(--color-accent-content);
  color: #fff;
  font-weight: 500;
  line-height: 24px;
}

.button-link:hover,
.button-link:focus {
  background: #ff4b3c;
  color: #fff;
}

.button-arrow {
  display: inline-block;
  margin-left: .55em;
  font-size: 2em;
  line-height: .85;
  margin-top: -4px;
  transform: scaleX(1.35);
  transform-origin: center;
}

.photocredit,
.beschriftung,
figcaption {
  color: var(--color-text);
  font-size: 13px;
  line-height: 1.5;
}

.photocredit {
  text-align: right;
}
body.geschichte .photocredit {
  font-size: 10px;
  margin-top: 6px;
  margin-bottom: 40px;
}
.beschriftung,
figcaption {
  margin-top: 4px;
  margin-bottom: 40px;
}

.nomapa {
  margin: 0;
  padding: 0;
}

img + br {
  display: none;
}

.audios-clean-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  background: var(--color-menu-bg);
  transition: box-shadow .18s ease;
}

.audios-clean-header.is-stuck {
  box-shadow: 0 6px 18px rgba(0, 0, 0, .22);
}

.audios-clean-nav {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: min(100%, var(--page-max-width));
  min-height: var(--menu-height);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
}

.audios-clean-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.audios-clean-toggle-label {
  display: none;
}

.audios-clean-menu {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audios-clean-menu li {
  display: flex;
  margin: 0;
  padding: 0;
}

.audios-clean-menu a {
  display: flex;
  align-items: center;
  min-height: var(--menu-height);
  margin: 9px 17px 12px;
  padding: 0;
  border-bottom: 2px solid transparent;
  color: var(--color-menu-text);
  font-size: var(--menu-font-size);
  font-weight: 400;
  line-height: 18px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .15s ease, border-color .15s ease;
}

.audios-clean-menu a:hover,
.audios-clean-menu a:focus,
.audios-clean-menu a[aria-current="page"] {
  color: var(--color-accent-menu-hero);
  border-bottom-color: var(--color-accent-menu-hero);
}

.audios-hero {
  position: relative;
  display: grid;
  place-items: center;
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: #2c2c2c;
}

.audios-hero-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
}

.audios-hero-overlay {
  position: absolute;
  top: 17.4%;
  left: 50%;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(8px, 1.2vw, 18px);
  width: max-content;
  max-width: 92vw;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  transform: translateX(-50%);
}

.audios-hero-title h1 {
  display: block;
  margin: 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(42px, 7.45vw, var(--hero-title-max));
  font-style: italic;
  font-weight: 500;
  line-height: .92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.audios-hero-slogan {
  padding-bottom: .08em;
  border-bottom: 3px solid var(--color-accent-menu-hero);
  color: #fff;
  font-size: clamp(13px, 1.64vw, var(--hero-slogan-max));
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: .01em;
}

.home .content-section:not(.audios-hero) h1,
.home .content-section:not(.audios-hero) h2 {
  font-size: 34px;
  font-weight: 400;
  line-height: 1.4;
}

section.subhero {
  margin-top:06px
}
.audio-block,
audio {
  display: block;
  width: 100%;
  background: #000;
}

.audio-block {
  margin-bottom: 40px;
}

audio {
  min-height: 54px;
}

body.referenzen .page-content > .content-grid:first-child {
  min-height: 32px;
}

body.referenzen h1 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 44px;
  font-weight: 400;
  line-height: 1.5;
}

body.referenzen .page-content a {
  color: var(--color-reference-link);
}

body.referenzen .page-content a:hover,
body.referenzen .page-content a:focus {
  color: var(--color-link-hover);
}

body.geschichte .page-content > .content-grid:first-child {
  margin-top: 33px;
}

body.geschichte h1,
body.news h1,
body.press h1, 
body.referenzen h1 {
  font-size: 34px;
  font-weight: 400;
  line-height: 1.4;
}

body.geschichte h1, body.press h1, div.linkzumpdf {
  text-align: center;
  margin-bottom:40px;
}
body.referenzen h1, body.press h1 {
  margin-top: 80px;
}
body.geschichte h2,
body.news h2,
body.press h2,
body.biography h1 {
  margin: 0 0 19.8px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

body.geschichte .page-content a {
  color: var(--color-link-hover);
}

body.biography .page-content > .content-grid:first-child,
body.news .page-content > .content-grid:first-child {
  margin-top: 60px;
}

body.biography .page-content > .content-grid:nth-child(2) {
  margin-top: 8px;
}

body.press h1,
body.impressum h1 {
  text-transform: uppercase;
}

body.press h1 {
  text-align: center;
}

body.impressum h1 {
  margin-top: 60px;
  margin-bottom: 20px;
}

.audios-photo-gallery {
  margin: 0 0 10px;
}

.audios-photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.audios-gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--color-surface-soft);
}

.audios-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .22s ease, opacity .22s ease;
}

.audios-gallery-item:hover img,
.audios-gallery-item:focus img {
  opacity: .88;
  transform: scale(1.04);
}

.biography .audios-photo-gallery + .beschriftung {
  margin-top: 8px;
  margin-bottom: 28px;
  text-align: left;
}
.audios-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0, 0, 0, .88);
}

.audios-lightbox.is-open {
  display: flex;
}

.audios-lightbox-dialog {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  max-width: min(1100px, 80vw);
  max-height: 92vh;
}

.audios-lightbox-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(92vh - 58px);
  margin: 0 auto;
  border: 2px solid var(--color-border);
  object-fit: contain;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
}

.audios-lightbox-caption {
  min-height: 22px;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

.audios-lightbox-button {
  position: absolute;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.audios-lightbox-button:hover,
.audios-lightbox-button:focus {
  background: rgba(7, 7, 7, .5);
}

.audios-lightbox-close {
  top: 10px;
  right: 10px;
  border: 0;
  background: transparent;
  font-size: 22px;
}

.audios-lightbox-close:hover,
.audios-lightbox-close:focus {
  background: transparent;
}

.audios-lightbox-prev,
.audios-lightbox-next {
  top: 50%;
  font-size: 19px;
  transform: translateY(-50%);
}

.audios-lightbox-prev {
  left: 10px;
}

.audios-lightbox-next {
  right: 10px;
}

.site-footer {
  margin-top: 3rem;
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
}

.site-footer-widgets {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 36px var(--page-gutter);
  background: var(--color-footer-bg);
}

.site-footer a,
body.referenzen .site-footer a {
  color: var(--color-footer-link);
}

.site-footer a:hover,
.site-footer a:focus,
body.referenzen .site-footer a:hover,
body.referenzen .site-footer a:focus {
  color: #fff;
}

.site-footer-column:nth-child(1) {
  text-align: left;
}

.site-footer-column:nth-child(2) {
  text-align: center;
}

.site-footer-column:nth-child(3) {
  text-align: right;
}

.site-footer p {
  margin: 0;
}

.site-footer-logo {
  display: inline-block;
  width: min(100%, var(--footer-logo-width));
  height: auto;
  vertical-align: middle;
}

.site-footer-copyright {
  padding: 18px var(--page-gutter);
  border-top: 1px solid #4b4c4d;
  background: #282a2b;
  color: #cfcfcf;
  font-size: 12px;
  text-align: center;
}

.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9998;
}

.to-top a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .72);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.to-top.is-visible {
   opacity: 1;
   visibility: visible;
}
body.home hr {
  border: none;
  height: 2px;
  background-color: #ff4b3c;
}
@media (max-width: 900px) {
  .audios-clean-menu a {
    font-size: 14px;
  }
}

@media (max-width: 800px) {
  :root {
    --page-gutter: 24px;
  }

  .content-grid {
    display: block;
  }

  .content-column,
  .content-column.is-full,
  .content-column.is-half,
  .content-column.is-third,
  .content-column.is-two-thirds {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  .audios-clean-nav {
    justify-content: flex-end;
    min-height: var(--menu-height-mobile);
    padding-right: 16px;
    padding-left: 16px;
  }

  .audios-clean-toggle-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: var(--menu-height-mobile);
    margin-left: auto;
    color: var(--color-menu-text);
    cursor: pointer;
  }

  .audios-clean-toggle-label span,
  .audios-clean-toggle-label span::before,
  .audios-clean-toggle-label span::after {
    position: relative;
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    content: "";
    transition: transform .18s ease, opacity .18s ease;
  }

  .audios-clean-toggle-label span::before,
  .audios-clean-toggle-label span::after {
    position: absolute;
    left: 0;
  }

  .audios-clean-toggle-label span::before {
    top: -8px;
  }

  .audios-clean-toggle-label span::after {
    top: 8px;
  }

  .audios-clean-toggle:checked + .audios-clean-toggle-label span {
    background: transparent;
  }

  .audios-clean-toggle:checked + .audios-clean-toggle-label span::before {
    top: 0;
    transform: rotate(45deg);
  }

  .audios-clean-toggle:checked + .audios-clean-toggle-label span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .audios-clean-menu {
    position: absolute;
    top: var(--menu-height-mobile);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    background: rgb(246, 246, 246);
    border-top: 1px solid rgb(218, 218, 218);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .24);
  }

  .audios-clean-toggle:checked ~ .audios-clean-menu {
    display: flex;
  }

  .audios-clean-menu li {
    display: block;
    height: 34px;
  }

  .audios-clean-menu a {
    display: block;
    height: 34px;
    min-height: 34px;
    margin: 0;
    padding: 0 22px 0 30px;
    border-bottom: 1px solid rgb(218, 218, 218);
    border-left: 4px solid transparent;
    background: rgb(246, 246, 246);
    color: rgb(51, 51, 51);
    font-size: 12px;
    font-weight: 400;
    line-height: 33px;
  }

  .audios-clean-menu a:hover,
  .audios-clean-menu a:focus,
  .audios-clean-menu a[aria-current="page"] {
    border-bottom-color: var(--color-accent-menu-hero);
    border-left-color: var(--color-accent-menu-hero);
    color: var(--color-accent-menu-hero);
  }

  .audios-hero-overlay {
    top: 17.8%;
    gap: clamp(6px, 1vw, 10px);
  }

  .audios-hero-title h1 {
    font-size: clamp(31px, 10.8vw, 56px);
  }

  .audios-hero-slogan {
    border-bottom-width: 2px;
    font-size: clamp(10px, 3vw, 15px);
  }

  .audios-photo-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audios-lightbox-dialog {
    max-width: min(1100px, 70vw);
  }

  .site-footer-widgets {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .site-footer-column,
  .site-footer-column:nth-child(1),
  .site-footer-column:nth-child(2),
  .site-footer-column:nth-child(3) {
    text-align: center;
  }
}

@media (max-width: 520px) {
  :root {
    --body-font-size: 13px;
  }

  .audios-hero-overlay {
    top: 15.5%;
  }

  .audios-hero-title h1 {
    font-size: clamp(25px, 10vw, 38px);
  }

  .audios-hero-slogan {
    font-size: clamp(8px, 2.75vw, 12px);
  }
}
