@charset "UTF-8";
/* antic-slab-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Antic Slab";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/antic-slab-v16-latin-regular.eot"); /* IE9 Compat Modes */
  src: url("../fonts/antic-slab-v16-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/antic-slab-v16-latin-regular.woff2") format("woff2"), url("../fonts/antic-slab-v16-latin-regular.woff") format("woff"), url("../fonts/antic-slab-v16-latin-regular.ttf") format("truetype"), url("../fonts/antic-slab-v16-latin-regular.svg#AnticSlab") format("svg"); /* Legacy iOS */
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
}

:root {
  --green: #329076;
  --text: #585c5d;
  font-family: "Antic Slab", serif;
  color: var(--text);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  font-weight: normal;
}

.head__banner {
  position: fixed;
  z-index: 98;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
.head__banner .call {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}
.head__banner .call img {
  width: 1.5em;
  height: 1.5em;
}
.head__banner > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3rem;
}
.head__banner .logo__wrapper {
  width: min(40%, 350px);
}
.head__banner .logo__wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

header {
  background: url("../images/hg.jpg") center center/cover no-repeat;
  height: 450px;
}
header div {
  background: url("../images/header-bild.png") center center/cover no-repeat;
  height: 100%;
}
header img {
  width: 100%;
}

.content,
footer > div,
.head__banner > div,
header > div {
  width: min(95%, 1140px);
  margin-inline: auto;
}

@media (max-width: 599.999px) {
  body.cookie-shown .hamburger__button {
    bottom: 21%;
  }
}

.hamburger__button {
  background-color: var(--green);
  padding: 1rem;
  position: fixed;
  z-index: 99;
  bottom: 1rem;
  right: 1rem;
  -webkit-transition-duration: 250ms;
          transition-duration: 250ms;
}
@media (min-width: 1000px) {
  .hamburger__button {
    display: none;
  }
}
.hamburger__button.active {
  background-color: #fff;
}
.hamburger__button.active .line {
  background-color: var(--green);
}
.hamburger__button.active .line:nth-child(1) {
  -webkit-transform: translateY(0.37em) rotate(45deg);
          transform: translateY(0.37em) rotate(45deg);
}
.hamburger__button.active .line:nth-child(2) {
  opacity: 0;
}
.hamburger__button.active .line:nth-child(3) {
  -webkit-transform: translateY(-0.37em) rotate(-45deg);
          transform: translateY(-0.37em) rotate(-45deg);
}

.hamburger {
  width: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25em;
}
.hamburger .line {
  width: 100%;
  height: 2px;
  background-color: #fff;
  -webkit-transition-duration: 250ms;
          transition-duration: 250ms;
}

.content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.5rem;
  padding-block: 1em;
}
.content aside {
  border-right: 2px solid transparent;
  overflow: hidden;
  background-color: #fff;
  -webkit-transition-duration: 250ms;
          transition-duration: 250ms;
  font-size: 1.1rem;
  position: fixed;
  z-index: 98;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
}
.content aside a {
  position: relative;
  z-index: 2;
  display: block;
  padding: 0.5em 1em;
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid var(--green);
}
.content aside a.active {
  color: var(--green);
  background: url(../../../../../images/navi.jpg) bottom repeat-x #fff !important;
}
.content aside a:hover {
  color: var(--green);
}
.content aside.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (min-width: 1000px) {
  .content aside {
    position: relative;
    z-index: 5;
    -webkit-transform: unset;
            transform: unset;
    width: min(30%, 325px);
  }
}
.content main {
  width: 100%;
}

h1 {
  text-transform: uppercase;
  color: var(--green);
  padding-bottom: 0.25em;
  border-bottom: 2px solid var(--green);
  margin-bottom: 1em;
}

h2:not(:first-child) {
  margin-top: 2em;
}

h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5em;
  font-weight: normal;
}

strong.block {
  display: block;
}
strong.margin {
  margin-top: 2em;
}

*:not(img) + p {
  margin-top: 1em;
}

.quote {
  text-align: center;
  margin-bottom: 3em;
}
.quote blockquote {
  font-style: italic;
  max-width: 45ch;
  margin-inline: auto;
  color: var(--green);
}
.quote blockquote::before {
  content: "„";
}
.quote blockquote::after {
  content: '"';
}
.quote span {
  display: inline-block;
  margin-top: 0.5rem;
  opacity: 0.5;
}

iframe {
  width: 100%;
  border: none;
}
iframe.kontakt {
  height: 900px;
}

.images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-top: 1em;
}
.images:not(:last-child) {
  margin-bottom: 2em;
}
@media (min-width: 550px) {
  .images {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
@media (min-width: 750px) {
  .images {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.images img {
  width: 100%;
}

a {
  color: var(--green);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.inline-flex {
  margin-top: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.9rem;
}
.inline-flex img {
  width: 80px;
}

footer {
  background-color: #f0f0f0;
  border-top: 1px solid var(--green);
  padding-block: 2rem;
}
footer .highlight {
  font-weight: 500;
  font-size: 1.5rem;
  display: block;
  color: var(--green);
}
footer p {
  margin: 0;
}
footer > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  footer > div {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 2rem;
  }
}

.imprint-flex {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
}
@media (min-width: 768px) {
  .imprint-flex {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .imprint-flex {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.imprint-flex p {
  margin: 0;
}

/* GLLX */
:root {
  --gllx--transition-duration: 250ms;
  --gllx--transition-duration-long: 400ms;
  --gllx--gallery--min-width: 200px;
  --gllx--gallery--gap: 1rem;
  --gllx--gallery--roundness: 0;
  --gllx--gallery--fill-mode: cover;
  --gllx--gallery--fill-color: #fff;
  --gllx--enlarge--background-transparency: 70%;
  --gllx--enlarge--blur: 3px;
}

body.gllx__shown {
  overflow: hidden;
}

.gllx {
  display: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  grid-template-columns: repeat(auto-fill, minmax(var(--gllx--gallery--min-width), 1fr));
  gap: var(--gllx--gallery--gap);
}

.gllx.initialized {
  display: grid;
}

.gllx__enlarged {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, var(--gllx--enlarge--background-transparency));
  -webkit-backdrop-filter: blur(var(--gllx--enlarge--blur));
          backdrop-filter: blur(var(--gllx--enlarge--blur));
  -webkit-transition-duration: var(--gllx--transition-duration-long);
          transition-duration: var(--gllx--transition-duration-long);
  pointer-events: none;
  opacity: 0;
}

.gllx__enlarged.enlarge {
  opacity: 1;
  pointer-events: auto;
}

.gllx__enlarged__content > div {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 55%;
  left: 50%;
  width: min(90%, 900px);
  max-height: 95%;
  -o-object-fit: contain;
     object-fit: contain;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-transition-duration: var(--gllx--transition-duration-long);
          transition-duration: var(--gllx--transition-duration-long);
  opacity: 0;
  pointer-events: none;
}

.gllx__enlarged.enlarge .gllx__enlarged__content > div {
  top: 50%;
}

.gllx__enlarged.enlarge .gllx__enlarged__content > div.show {
  opacity: 1;
  pointer-events: auto;
}

.gllx__enlarged .gllx__large.background {
  background: #fff;
  padding: 1rem;
}

.gllx__enlarged .gllx__large img {
  width: 100%;
  height: 100%;
  max-height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
}

.gllx__image {
  border-radius: var(--gllx--gallery--roundness);
  overflow: hidden;
  background: var(--gllx--gallery--fill-color);
}

.gllx__image.initialized {
  cursor: pointer;
}

.gllx__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: var(--gllx--gallery--fill-mode);
     object-fit: var(--gllx--gallery--fill-mode);
}

.gllx__image .gllx__large {
  display: none;
}

/* Secure */
.dsa-cookie-notice {
  background-color: var(--green);
  color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}
.dsa-cookie-notice .cookie-inner {
  max-width: 90ch;
  margin-inline: auto;
}
.dsa-cookie-notice .cookie-inner a {
  color: #fff !important;
  text-decoration: underline;
}