@charset "UTF-8";
/* =========================  VARIABLES ========================= */
/* =========================
   DEVICES
========================= */
:root {
  --page-font-size: clamp(16px, calc(1rem + 0.38vw), 22px);
  --clr-black: rgb(47, 48, 54);
  --clr-blue: #4fa5d2;
  --clr-gray: #ccc;
  --clr-gray-trans: rgb(0, 0, 0, 0.03);
  --clr-green: rgb(162, 198, 20);
  --clr-green-hell: rgb(162, 198, 20, 0.3);
  --clr-green-verlauf-1: rgb(162, 198, 20, 0.85);
  --clr-green-verlauf-2: rgb(162, 198, 20, 0.8);
  --clr-green-verlauf-3: rgb(162, 198, 20, 0.75);
  --clr-orange: orange;
  --clr-red: rgb(230, 61, 66);
  --clr-yellow: yellow;
  /* --pfeil-links: "\f0d9"; // \2190 ←
  --pfeil-rechts: "\f0da"; // \2192 → oder 27F6 ⟶ */
  --maxLetterWidth: 60ch; /* 29rem*/
  --shadow-unten:
    0 2px 5px 0 rgb(0, 0, 0, 0.35), 0 2px 10px 0 rgb(0, 0, 0, 0.12);
  --shadow-3-seiten:
    -2px -1px 3px 0px rgb(0, 0, 0, 0.35), 2px -1px 3px 0px rgb(0, 0, 0, 0.35);
  --shadow-4-seiten: 0px 0px 3px 2px rgb(0, 0, 0, 0.35);
  --btn-open-menu-size: 40px;
  --btn-open-menu-font: clamp(30px, 11vw, 35px);
  --btn-open-search-font: clamp(32px, 12vw, 37px);
  --btn-close-search-font: var(--btn-open-menu-font);
  --header-font-size: clamp(42px, 7vw, 68px);
  --head-circle--size: 3.5em;
  --form-control-color: var(--clr-orange);
  --show-bubbles: 600px;
  --transition-dur-time: 0.31s ease-in-out;
  --dist: 9px;
  --rand-dist: min(12px, var(--dist));
  --double-dist: min(32px, calc(2 * var(--rand-dist)));
  --half-dist: max(calc(0.5 * var(--dist)), 9px);
  --triple-dist: calc(3 * var(--rand-dist));
  --logo-height: 44px;
  --logo-width: 64px;
  --header-height: calc(
    var(--logo-height) + 2 * var(--rand-dist) + var(--border-under-nav)
  );
  --search-height: calc(5 * var(--rand-dist) + 50px);
  --border-under-nav: 9px;
}

@media (min-width: 320px) {
  :root {
    --dist: 12px;
    --logo-height: 92px;
    --logo-width: 103px;
  }
  :root .scroll,
  :root .menu--open {
    --logo-height: 44px;
    --logo-width: 64px;
    --header-height: calc(
      var(--logo-height) + 2 * var(--rand-dist) + var(--border-under-nav)
    );
  }
}
@media (min-width: 600px) {
  :root {
    --dist: 16px;
    --rand-dist: var(--dist);
  }
}
@media (min-width: 993px) {
  :root {
    --logo-height: calc(3 * 0.8 * var(--page-font-size) + 3 * var(--dist));
    --header-height: calc(
      0.8 * var(--page-font-size) + 2rem + var(--double-dist) +
        var(--border-under-nav)
    );
  }
  :root .scroll {
    --logo-height: calc(3 * 0.8 * var(--page-font-size) + var(--dist));
    --header-height: calc(
      0.8 * var(--page-font-size) + 2rem + var(--dist) + var(--border-under-nav)
    );
  }
}
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
a {
  -webkit-text-decoration-skip: objects;
  position: relative;
  text-decoration: none;
  transition: color 0.31s, background-color 0.31s, border-color 0.31s, border-radius 0.31s, cursor 0s;
}
a:link, a:visited, a:hover, a:focus, a:active {
  background-color: transparent;
  text-decoration: none;
}
a:link, a:visited {
  color: var(--clr-green);
}
a:hover, a:focus, a:active {
  color: var(--clr-black);
}
a:focus-visible {
  outline-color: orange;
  outline-offset: 10px;
  outline-style: dotted;
  outline-width: 3px;
}
a:hover {
  outline-width: 2px;
}
a::after, a::before {
  transition: all 0.3s;
}

.com-content-category-blog a,
.blog-featured a,
.com-content-article a,
.suchergebnis .search a,
a.underline,
.underline a {
  border-radius: 0;
}

.blog-featured a:hover, .blog-featured a:focus, .blog-featured a:active,
.com-content-article a:hover,
.com-content-article a:focus,
.com-content-article a:active,
.suchergebnis .search a:hover,
.suchergebnis .search a:focus,
.suchergebnis .search a:active,
a.underline:hover,
a.underline:focus,
a.underline:active,
.underline a:hover,
.underline a:focus,
.underline a:active {
  box-shadow: 0px 2px var(--clr-green);
}
.blog-featured a:has(> img):hover, .blog-featured a:has(> img):focus, .blog-featured a:has(> img):active,
.com-content-article a:has(> img):hover,
.com-content-article a:has(> img):focus,
.com-content-article a:has(> img):active,
.suchergebnis .search a:has(> img):hover,
.suchergebnis .search a:has(> img):focus,
.suchergebnis .search a:has(> img):active,
a.underline:has(> img):hover,
a.underline:has(> img):focus,
a.underline:has(> img):active,
.underline a:has(> img):hover,
.underline a:has(> img):focus,
.underline a:has(> img):active {
  box-shadow: none;
}

a.underline::before,
.underline a::before {
  content: "";
  position: absolute;
  height: 2px;
  bottom: -2px;
  width: 100%;
  left: 0;
  transition: all 0.3s ease-in-out 0s;
  background-color: var(--clr-green);
  transform: scaleX(0);
}

a.underline:not(.active):hover::before, a.underline:not(.active):focus::before, a.underline:not(.active):active::before,
.underline a:not(.active):hover::before,
.underline a:not(.active):focus::before,
.underline a:not(.active):active::before {
  transform: scaleX(1);
}

/*
a[href$=".gif" i]::after,
a[href$=".jpg" i]::after,
a[href$=".jpeg" i]::after,
a[href$=".png" i]::after,
a[href$=".webp" i]::after {
    background-color: rgba(255, 255, 255, 0.5);
    content: "+";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5em;
    transform: scaleX(0);
    transition: 0.3s;
}
a[href$=".gif" i]:focus::after,
a[href$=".gif" i]:hover::after,
...
    transform: scaleX(1);
}
*/
/* .com-content-category-blog,
.blog-featured,
.com-content-article,
.suchergebnis .search {
  a,
  span {
    &::after {
      margin-left: 5px;
    }
    &::before {
      margin-right: 5px;
    }
  }
} #### nach Umstellung icon vielleicht wieder rein */
.oeffnungszeiten-icon::before,
.briefumschlag-mail-icon::before,
.mobil-icon::before,
.telefonhoerer-icon::before,
.web-icon::before,
.flyer-dokument-icon::before,
.externer-link-icon::after,
a[href^=http i]::after {
  content: "";
  display: inline-block;
  background-color: currentColor;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  color: var(--clr-green);
  width: 1em;
  height: 1em;
  vertical-align: -1px;
}

.oeffnungszeiten-icon::before {
  mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20fill='currentColor'%20d='M384%20128L448%20128L448%20544C448%20561.7%20462.3%20576%20480%20576L512%20576C529.7%20576%20544%20561.7%20544%20544C544%20526.3%20529.7%20512%20512%20512L512%20128C512%2092.7%20483.3%2064%20448%2064L352%2064L352%2064L192%2064C156.7%2064%20128%2092.7%20128%20128L128%20512C110.3%20512%2096%20526.3%2096%20544C96%20561.7%20110.3%20576%20128%20576L352%20576C369.7%20576%20384%20561.7%20384%20544L384%20128zM256%20320C256%20302.3%20270.3%20288%20288%20288C305.7%20288%20320%20302.3%20320%20320C320%20337.7%20305.7%20352%20288%20352C270.3%20352%20256%20337.7%20256%20320z'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20fill='currentColor'%20d='M384%20128L448%20128L448%20544C448%20561.7%20462.3%20576%20480%20576L512%20576C529.7%20576%20544%20561.7%20544%20544C544%20526.3%20529.7%20512%20512%20512L512%20128C512%2092.7%20483.3%2064%20448%2064L352%2064L352%2064L192%2064C156.7%2064%20128%2092.7%20128%20128L128%20512C110.3%20512%2096%20526.3%2096%20544C96%20561.7%20110.3%20576%20128%20576L352%20576C369.7%20576%20384%20561.7%20384%20544L384%20128zM256%20320C256%20302.3%20270.3%20288%20288%20288C305.7%20288%20320%20302.3%20320%20320C320%20337.7%20305.7%20352%20288%20352C270.3%20352%20256%20337.7%20256%20320z'/%3e%3c/svg%3e");
  vertical-align: -3px;
}

.briefumschlag-mail-icon::before {
  mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20fill='currentColor'%20d='M112%20128C85.5%20128%2064%20149.5%2064%20176C64%20191.1%2071.1%20205.3%2083.2%20214.4L291.2%20370.4C308.3%20383.2%20331.7%20383.2%20348.8%20370.4L556.8%20214.4C568.9%20205.3%20576%20191.1%20576%20176C576%20149.5%20554.5%20128%20528%20128L112%20128zM64%20260L64%20448C64%20483.3%2092.7%20512%20128%20512L512%20512C547.3%20512%20576%20483.3%20576%20448L576%20260L377.6%20408.8C343.5%20434.4%20296.5%20434.4%20262.4%20408.8L64%20260z'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20fill='currentColor'%20d='M112%20128C85.5%20128%2064%20149.5%2064%20176C64%20191.1%2071.1%20205.3%2083.2%20214.4L291.2%20370.4C308.3%20383.2%20331.7%20383.2%20348.8%20370.4L556.8%20214.4C568.9%20205.3%20576%20191.1%20576%20176C576%20149.5%20554.5%20128%20528%20128L112%20128zM64%20260L64%20448C64%20483.3%2092.7%20512%20128%20512L512%20512C547.3%20512%20576%20483.3%20576%20448L576%20260L377.6%20408.8C343.5%20434.4%20296.5%20434.4%20262.4%20408.8L64%20260z'/%3e%3c/svg%3e");
  vertical-align: -5px;
}

.mobil-icon::before {
  mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20fill='currentColor'%20d='M144%20128C144%2092.7%20172.7%2064%20208%2064L432%2064C467.3%2064%20496%2092.7%20496%20128L496%20512C496%20547.3%20467.3%20576%20432%20576L208%20576C172.7%20576%20144%20547.3%20144%20512L144%20128zM208%20128L208%20432L432%20432L432%20128L208%20128zM320%20536C337.7%20536%20352%20521.7%20352%20504C352%20486.3%20337.7%20472%20320%20472C302.3%20472%20288%20486.3%20288%20504C288%20521.7%20302.3%20536%20320%20536z'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20fill='currentColor'%20d='M144%20128C144%2092.7%20172.7%2064%20208%2064L432%2064C467.3%2064%20496%2092.7%20496%20128L496%20512C496%20547.3%20467.3%20576%20432%20576L208%20576C172.7%20576%20144%20547.3%20144%20512L144%20128zM208%20128L208%20432L432%20432L432%20128L208%20128zM320%20536C337.7%20536%20352%20521.7%20352%20504C352%20486.3%20337.7%20472%20320%20472C302.3%20472%20288%20486.3%20288%20504C288%20521.7%20302.3%20536%20320%20536z'/%3e%3c/svg%3e");
  margin-left: -2px;
  margin-right: 2px;
  vertical-align: -4px;
}

.telefonhoerer-icon::before {
  mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%20width='16'%20height='16'%20aria-hidden='true'%3e%3cpath%20fill='currentColor'%20d='M164.9%2024.6c-7.7-18.6-28-28.5-47.4-23.2l-88%2024C12.1%2030.2%200%2046%200%2064C0%20311.4%20200.6%20512%20448%20512c18%200%2033.8-12.1%2038.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3%2011.6l-40.4%2049.3c-70.4-33.3-127.4-90.3-160.7-160.7l49.3-40.4c13.7-11.2%2018.4-30%2011.6-46.3l-40-96z'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%20width='16'%20height='16'%20aria-hidden='true'%3e%3cpath%20fill='currentColor'%20d='M164.9%2024.6c-7.7-18.6-28-28.5-47.4-23.2l-88%2024C12.1%2030.2%200%2046%200%2064C0%20311.4%20200.6%20512%20448%20512c18%200%2033.8-12.1%2038.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3%2011.6l-40.4%2049.3c-70.4-33.3-127.4-90.3-160.7-160.7l49.3-40.4c13.7-11.2%2018.4-30%2011.6-46.3l-40-96z'/%3e%3c/svg%3e");
  height: 0.8em;
}

.web-icon::before {
  mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20fill='currentColor'%20d='M415.9%20344L225%20344C227.9%20408.5%20242.2%20467.9%20262.5%20511.4C273.9%20535.9%20286.2%20553.2%20297.6%20563.8C308.8%20574.3%20316.5%20576%20320.5%20576C324.5%20576%20332.2%20574.3%20343.4%20563.8C354.8%20553.2%20367.1%20535.8%20378.5%20511.4C398.8%20467.9%20413.1%20408.5%20416%20344zM224.9%20296L415.8%20296C413%20231.5%20398.7%20172.1%20378.4%20128.6C367%20104.2%20354.7%2086.8%20343.3%2076.2C332.1%2065.7%20324.4%2064%20320.4%2064C316.4%2064%20308.7%2065.7%20297.5%2076.2C286.1%2086.8%20273.8%20104.2%20262.4%20128.6C242.1%20172.1%20227.8%20231.5%20224.9%20296zM176.9%20296C180.4%20210.4%20202.5%20130.9%20234.8%2078.7C142.7%20111.3%2074.9%20195.2%2065.5%20296L176.9%20296zM65.5%20344C74.9%20444.8%20142.7%20528.7%20234.8%20561.3C202.5%20509.1%20180.4%20429.6%20176.9%20344L65.5%20344zM463.9%20344C460.4%20429.6%20438.3%20509.1%20406%20561.3C498.1%20528.6%20565.9%20444.8%20575.3%20344L463.9%20344zM575.3%20296C565.9%20195.2%20498.1%20111.3%20406%2078.7C438.3%20130.9%20460.4%20210.4%20463.9%20296L575.3%20296z'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20fill='currentColor'%20d='M415.9%20344L225%20344C227.9%20408.5%20242.2%20467.9%20262.5%20511.4C273.9%20535.9%20286.2%20553.2%20297.6%20563.8C308.8%20574.3%20316.5%20576%20320.5%20576C324.5%20576%20332.2%20574.3%20343.4%20563.8C354.8%20553.2%20367.1%20535.8%20378.5%20511.4C398.8%20467.9%20413.1%20408.5%20416%20344zM224.9%20296L415.8%20296C413%20231.5%20398.7%20172.1%20378.4%20128.6C367%20104.2%20354.7%2086.8%20343.3%2076.2C332.1%2065.7%20324.4%2064%20320.4%2064C316.4%2064%20308.7%2065.7%20297.5%2076.2C286.1%2086.8%20273.8%20104.2%20262.4%20128.6C242.1%20172.1%20227.8%20231.5%20224.9%20296zM176.9%20296C180.4%20210.4%20202.5%20130.9%20234.8%2078.7C142.7%20111.3%2074.9%20195.2%2065.5%20296L176.9%20296zM65.5%20344C74.9%20444.8%20142.7%20528.7%20234.8%20561.3C202.5%20509.1%20180.4%20429.6%20176.9%20344L65.5%20344zM463.9%20344C460.4%20429.6%20438.3%20509.1%20406%20561.3C498.1%20528.6%20565.9%20444.8%20575.3%20344L463.9%20344zM575.3%20296C565.9%20195.2%20498.1%20111.3%20406%2078.7C438.3%20130.9%20460.4%20210.4%20463.9%20296L575.3%20296z'/%3e%3c/svg%3e");
  vertical-align: -5px;
}

.flyer-dokument-icon::before {
  mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20fill='currentColor'%20d='M320%20205.3L320%20514.6L320.5%20514.4C375.1%20491.7%20433.7%20480%20492.8%20480L512%20480L512%20160L492.8%20160C450.6%20160%20408.7%20168.4%20369.7%20184.6C352.9%20191.6%20336.3%20198.5%20320%20205.3zM294.9%20125.5L320%20136L345.1%20125.5C391.9%20106%20442.1%2096%20492.8%2096L528%2096C554.5%2096%20576%20117.5%20576%20144L576%20496C576%20522.5%20554.5%20544%20528%20544L492.8%20544C442.1%20544%20391.9%20554%20345.1%20573.5L332.3%20578.8C324.4%20582.1%20315.6%20582.1%20307.7%20578.8L294.9%20573.5C248.1%20554%20197.9%20544%20147.2%20544L112%20544C85.5%20544%2064%20522.5%2064%20496L64%20144C64%20117.5%2085.5%2096%20112%2096L147.2%2096C197.9%2096%20248.1%20106%20294.9%20125.5z'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20fill='currentColor'%20d='M320%20205.3L320%20514.6L320.5%20514.4C375.1%20491.7%20433.7%20480%20492.8%20480L512%20480L512%20160L492.8%20160C450.6%20160%20408.7%20168.4%20369.7%20184.6C352.9%20191.6%20336.3%20198.5%20320%20205.3zM294.9%20125.5L320%20136L345.1%20125.5C391.9%20106%20442.1%2096%20492.8%2096L528%2096C554.5%2096%20576%20117.5%20576%20144L576%20496C576%20522.5%20554.5%20544%20528%20544L492.8%20544C442.1%20544%20391.9%20554%20345.1%20573.5L332.3%20578.8C324.4%20582.1%20315.6%20582.1%20307.7%20578.8L294.9%20573.5C248.1%20554%20197.9%20544%20147.2%20544L112%20544C85.5%20544%2064%20522.5%2064%20496L64%20144C64%20117.5%2085.5%2096%20112%2096L147.2%2096C197.9%2096%20248.1%20106%20294.9%20125.5z'/%3e%3c/svg%3e");
}

.externer-link-icon::after,
a[href^=http i]::after {
  mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20fill='currentColor'%20d='M354.4%2083.8C359.4%2071.8%20371.1%2064%20384%2064L544%2064C561.7%2064%20576%2078.3%20576%2096L576%20256C576%20268.9%20568.2%20280.6%20556.2%20285.6C544.2%20290.6%20530.5%20287.8%20521.3%20278.7L464%20221.3L310.6%20374.6C298.1%20387.1%20277.8%20387.1%20265.3%20374.6C252.8%20362.1%20252.8%20341.8%20265.3%20329.3L418.7%20176L361.4%20118.6C352.2%20109.4%20349.5%2095.7%20354.5%2083.7zM64%20240C64%20195.8%2099.8%20160%20144%20160L224%20160C241.7%20160%20256%20174.3%20256%20192C256%20209.7%20241.7%20224%20224%20224L144%20224C135.2%20224%20128%20231.2%20128%20240L128%20496C128%20504.8%20135.2%20512%20144%20512L400%20512C408.8%20512%20416%20504.8%20416%20496L416%20416C416%20398.3%20430.3%20384%20448%20384C465.7%20384%20480%20398.3%20480%20416L480%20496C480%20540.2%20444.2%20576%20400%20576L144%20576C99.8%20576%2064%20540.2%2064%20496L64%20240z'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20fill='currentColor'%20d='M354.4%2083.8C359.4%2071.8%20371.1%2064%20384%2064L544%2064C561.7%2064%20576%2078.3%20576%2096L576%20256C576%20268.9%20568.2%20280.6%20556.2%20285.6C544.2%20290.6%20530.5%20287.8%20521.3%20278.7L464%20221.3L310.6%20374.6C298.1%20387.1%20277.8%20387.1%20265.3%20374.6C252.8%20362.1%20252.8%20341.8%20265.3%20329.3L418.7%20176L361.4%20118.6C352.2%20109.4%20349.5%2095.7%20354.5%2083.7zM64%20240C64%20195.8%2099.8%20160%20144%20160L224%20160C241.7%20160%20256%20174.3%20256%20192C256%20209.7%20241.7%20224%20224%20224L144%20224C135.2%20224%20128%20231.2%20128%20240L128%20496C128%20504.8%20135.2%20512%20144%20512L400%20512C408.8%20512%20416%20504.8%20416%20496L416%20416C416%20398.3%20430.3%20384%20448%20384C465.7%20384%20480%20398.3%20480%20416L480%20496C480%20540.2%20444.2%20576%20400%20576L144%20576C99.8%20576%2064%20540.2%2064%20496L64%20240z'/%3e%3c/svg%3e");
  width: 0.8em;
  height: 0.8em;
  margin-left: 4px;
  margin-right: 5px;
}

a[href^=http i]:has(> img)::after {
  content: none !important;
}

.intern::after,
.pfeil-dahinter::after,
.pfeil-davor::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  transform: scaleX(1) !important;
}

.intern::after,
.pfeil-dahinter::after {
  mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20fill='currentColor'%20d='M441.3%20299.8C451.5%20312.4%20450.8%20330.9%20439.1%20342.6L311.1%20470.6C301.9%20479.8%20288.2%20482.5%20276.2%20477.5C264.2%20472.5%20256.5%20460.9%20256.5%20448L256.5%20192C256.5%20179.1%20264.3%20167.4%20276.3%20162.4C288.3%20157.4%20302%20160.2%20311.2%20169.3L439.2%20297.3L441.4%20299.7z'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20fill='currentColor'%20d='M441.3%20299.8C451.5%20312.4%20450.8%20330.9%20439.1%20342.6L311.1%20470.6C301.9%20479.8%20288.2%20482.5%20276.2%20477.5C264.2%20472.5%20256.5%20460.9%20256.5%20448L256.5%20192C256.5%20179.1%20264.3%20167.4%20276.3%20162.4C288.3%20157.4%20302%20160.2%20311.2%20169.3L439.2%20297.3L441.4%20299.7z'/%3e%3c/svg%3e");
  margin-left: -2px;
  margin-right: 2px;
  vertical-align: -5px;
}

.pfeil-davor::before {
  mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20fill='currentColor'%20d='M441.3%20299.8C451.5%20312.4%20450.8%20330.9%20439.1%20342.6L311.1%20470.6C301.9%20479.8%20288.2%20482.5%20276.2%20477.5C264.2%20472.5%20256.5%20460.9%20256.5%20448L256.5%20192C256.5%20179.1%20264.3%20167.4%20276.3%20162.4C288.3%20157.4%20302%20160.2%20311.2%20169.3L439.2%20297.3L441.4%20299.7z'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20fill='currentColor'%20d='M441.3%20299.8C451.5%20312.4%20450.8%20330.9%20439.1%20342.6L311.1%20470.6C301.9%20479.8%20288.2%20482.5%20276.2%20477.5C264.2%20472.5%20256.5%20460.9%20256.5%20448L256.5%20192C256.5%20179.1%20264.3%20167.4%20276.3%20162.4C288.3%20157.4%20302%20160.2%20311.2%20169.3L439.2%20297.3L441.4%20299.7z'/%3e%3c/svg%3e");
  margin-left: -6px;
  margin-right: 6px;
  vertical-align: -4px;
}

.news a[href^=http i]::after {
  content: none !important;
}

a[href$=".pdf" i]::after {
  content: "[PDF]";
  font-family: "Didact Gothic", "Didact Gothic Fallback", sans-serif;
  font-size: 0.7em;
  margin-left: 5px;
}

a[href^=mailto] {
  word-break: break-word;
}

.intern::before,
.externer-link-icon::before,
.pfeil-dahinter::before,
.pfeil-davor::after {
  content: "";
  position: absolute;
  height: 2px;
  bottom: -2px;
  width: 100%;
  left: 0;
  transition: all 0.3s ease-in-out 0s;
  background-color: var(--clr-green);
  transform: scaleX(0);
}

.intern:focus::before, .intern:hover::before, .intern:active::before,
.externer-link-icon:focus::before,
.externer-link-icon:hover::before,
.externer-link-icon:active::before,
.pfeil-dahinter:focus::before,
.pfeil-dahinter:hover::before,
.pfeil-dahinter:active::before {
  transform: scaleX(1);
}

.pfeil-davor:focus::after, .pfeil-davor:hover::after, .pfeil-davor:active::after {
  transform: scaleX(1);
}

.no-icon::after,
.ohne-symbol::after,
.ohne-symbol::before,
.sige a::after {
  content: "" !important;
  margin: 0 !important;
  width: 0 !important;
}

a .icon {
  transition: transform 1s, color 0.3s;
}

a:hover .icon,
a:focus .icon,
a:active .icon {
  transform: rotate(359deg);
}

*,
::after,
::before {
  box-sizing: border-box;
  background-repeat: no-repeat;
  border-radius: 2px;
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background-color: var(--clr-green);
}

::-webkit-scrollbar-thumb {
  background-color: var(--clr-black);
}

body {
  scrollbar-width: thin;
  scrollbar-color: var(--clr-green) white;
}

.html {
  -webkit-tap-highlight-color: var(--clr-orange);
}

/*
nav::-webkit-scrollbar { width: 1px; }
nav::-webkit-scrollbar-track { background-color: white; }
nav::-webkit-scrollbar-thumb { background-color: var(--clr-green); }
nav::-webkit-scrollbar-thumb:hover { background-color: var(--clr-black); }
*/
html {
  font-size: var(--page-font-size);
  overflow-y: scroll;
}

html,
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--clr-green);
  font-weight: normal;
  min-width: 240px;
}

svg,
path {
  border-radius: 0;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  border: none;
  transition: opacity 0.31s ease-in-out;
}

button {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  outline: none;
  outline-width: 0;
  margin: 0;
  padding: 0;
  transition: all var(--transition-dur-time);
}
button span,
button div,
button div span {
  pointer-events: none;
}

input {
  caret-color: var(--clr-green);
}

@supports (caret-shape: block) {
  input {
    caret-color: hsl(from var(--clr-green) h s l/0.5);
    caret-shape: block;
  }
}
label {
  line-height: 1.3;
}

:target {
  scroll-margin: 10rem;
  animation: target 1s;
}

@keyframes target {
  from {
    box-shadow: 0 0 0 3px var(--clr-orange);
    border-radius: 1px;
  }
  to {
    box-shadow: 0 0 0 0 transparent;
  }
}
::selection {
  background-color: var(--clr-orange);
  color: white;
}

/* Didact Gothic */
@font-face {
  font-family: "Didact Gothic Fallback";
  src: local("Arial"), local("ArialMT");
  font-weight: 400;
  ascent-override: 110.2382%;
  descent-override: 27.9284%;
  line-gap-override: 0%;
  size-adjust: 94.8854%;
}
/* Poppins */
@font-face {
  font-family: "Poppins Fallback";
  src: local("Arial"), local("ArialMT");
  font-weight: 400;
  ascent-override: 93.6182%;
  descent-override: 31.2061%;
  line-gap-override: 8.916%;
  size-adjust: 112.1577%;
}
@font-face {
  font-family: "Poppins Fallback";
  src: local("Arial"), local("ArialMT");
  font-weight: 500;
  ascent-override: 92.5081%;
  descent-override: 30.836%;
  line-gap-override: 8.8103%;
  size-adjust: 113.5036%;
}
@font-face {
  font-family: "Poppins Fallback";
  src: local("Arial"), local("ArialMT");
  font-weight: 600;
  ascent-override: 91.7825%;
  descent-override: 30.5942%;
  line-gap-override: 8.7412%;
  size-adjust: 114.4009%;
}
@font-face {
  font-family: "Poppins Fallback";
  src: local("Arial"), local("ArialMT");
  font-weight: 700;
  ascent-override: 90.8914%;
  descent-override: 30.2971%;
  line-gap-override: 8.6563%;
  size-adjust: 115.5225%;
}
@font-face {
  font-family: "Poppins Fallback";
  src: local("Arial"), local("ArialMT");
  font-weight: 800;
  ascent-override: 90.1909%;
  descent-override: 30.0636%;
  line-gap-override: 8.5896%;
  size-adjust: 116.4197%;
}
@font-face {
  font-family: "Didact Gothic";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/media/templates/site/gsb/assets/didact-gothic-v13-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/media/templates/site/gsb/assets/Poppins-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/media/templates/site/gsb/assets/Poppins-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/media/templates/site/gsb/assets/Poppins-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/media/templates/site/gsb/assets/Poppins-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/media/templates/site/gsb/assets/Poppins-ExtraBold.woff2") format("woff2");
}
body,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--clr-black);
  line-height: 1;
  margin: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  -ms-word-break: normal;
  -webkit-word-break: normal;
  word-break: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  font-weight: 400;
}

body,
p,
h4,
h5,
h6 {
  font-family: "Didact Gothic", "Didact Gothic Fallback", sans-serif;
}

h1,
.h1 {
  font-family: "Poppins", "Poppins Fallback", sans-serif;
  font-weight: 800;
  --h1-fontsize: 24px;
  font-size: var(--h1-fontsize);
  line-height: 1.2;
  margin-bottom: calc(1.5 * var(--dist));
  margin-top: var(--dist);
  text-transform: uppercase;
}
@media (min-width: 280px) {
  h1,
  .h1 {
    --h1-fontsize: clamp(24px, 1.85em, 35px);
  }
}

@media (min-width: 993px) {
  .com-content-article__body:has(div) h1 {
    padding-left: var(--dist);
  }
}
h2 {
  font-family: "Poppins", "Poppins Fallback", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: var(--half-dist);
}

h3 {
  font-family: "Poppins", "Poppins Fallback", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  margin-top: 2em;
}

div > h3:first-child {
  margin-bottom: 0.35em;
  margin-top: 0;
}

h5 {
  font-size: 0.9em;
  line-height: 1.5;
}

br {
  line-height: 1;
}

p {
  font-weight: normal;
  line-height: 1.4;
  margin-top: 1.3em;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

h2 + p,
h3 + p {
  margin-top: 0;
}

strong {
  font-family: "Poppins", "Poppins Fallback", sans-serif;
  font-weight: 600;
}

dd {
  line-height: 1.5;
  margin-bottom: var(--double-dist);
  margin-inline-start: 0;
  margin-left: 0;
}
@media (min-width: 993px) {
  dd {
    margin-inline-start: 19px;
    margin-left: 19px;
  }
}

dt {
  color: var(--clr-green);
  font-weight: bold;
}

hr {
  border: 0;
  border-top: 1px solid #eee;
  margin: 20px 0;
}

ol,
ul {
  margin-bottom: var(--dist);
  margin-top: var(--half-dist);
  padding-left: var(--double-dist);
}

ul + h2 {
  margin-top: var(--double-dist);
}

div > ul:last-child {
  margin-bottom: 0;
}

li.anchor,
ul.anchor li {
  position: relative;
  list-style: none;
  padding-left: 1.3em;
}
li.anchor::before,
ul.anchor li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  background-color: var(--clr-green);
  mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20fill='currentColor'%20d='M320%20128C302.3%20128%20288%20142.3%20288%20160C288%20177.7%20302.3%20192%20320%20192C337.7%20192%20352%20177.7%20352%20160C352%20142.3%20337.7%20128%20320%20128zM224%20160C224%20107%20267%2064%20320%2064C373%2064%20416%20107%20416%20160C416%20201.8%20389.3%20237.4%20352%20250.5L352%20508.4C414.9%20494.1%20462.2%20438.7%20463.9%20371.9L447.8%20386C437.8%20394.7%20422.7%20393.7%20413.9%20383.7C405.1%20373.7%20406.2%20358.6%20416.2%20349.8L480.2%20293.8C489.2%20285.9%20502.8%20285.9%20511.8%20293.8L575.8%20349.8C585.8%20358.5%20586.8%20373.7%20578.1%20383.7C569.4%20393.7%20554.2%20394.7%20544.2%20386L528%20371.9C525.9%20485%20433.6%20576%20320%20576C206.4%20576%20114.1%20485%20112%20371.9L95.8%20386.1C85.8%20394.8%2070.7%20393.8%2061.9%20383.8C53.1%20373.8%2054.2%20358.7%2064.2%20349.9L128.2%20293.9C137.2%20286%20150.8%20286%20159.8%20293.9L223.8%20349.9C233.8%20358.6%20234.8%20373.8%20226.1%20383.8C217.4%20393.8%20202.2%20394.8%20192.2%20386.1L176.1%20372C177.9%20438.8%20225.2%20494.2%20288%20508.5L288%20250.6C250.7%20237.4%20224%20201.9%20224%20160.1z'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20fill='currentColor'%20d='M320%20128C302.3%20128%20288%20142.3%20288%20160C288%20177.7%20302.3%20192%20320%20192C337.7%20192%20352%20177.7%20352%20160C352%20142.3%20337.7%20128%20320%20128zM224%20160C224%20107%20267%2064%20320%2064C373%2064%20416%20107%20416%20160C416%20201.8%20389.3%20237.4%20352%20250.5L352%20508.4C414.9%20494.1%20462.2%20438.7%20463.9%20371.9L447.8%20386C437.8%20394.7%20422.7%20393.7%20413.9%20383.7C405.1%20373.7%20406.2%20358.6%20416.2%20349.8L480.2%20293.8C489.2%20285.9%20502.8%20285.9%20511.8%20293.8L575.8%20349.8C585.8%20358.5%20586.8%20373.7%20578.1%20383.7C569.4%20393.7%20554.2%20394.7%20544.2%20386L528%20371.9C525.9%20485%20433.6%20576%20320%20576C206.4%20576%20114.1%20485%20112%20371.9L95.8%20386.1C85.8%20394.8%2070.7%20393.8%2061.9%20383.8C53.1%20373.8%2054.2%20358.7%2064.2%20349.9L128.2%20293.9C137.2%20286%20150.8%20286%20159.8%20293.9L223.8%20349.9C233.8%20358.6%20234.8%20373.8%20226.1%20383.8C217.4%20393.8%20202.2%20394.8%20192.2%20386.1L176.1%20372C177.9%20438.8%20225.2%20494.2%20288%20508.5L288%20250.6C250.7%20237.4%20224%20201.9%20224%20160.1z'/%3e%3c/svg%3e");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}
li.anchor:focus::before, li.anchor:hover::before, li.anchor:active::before,
ul.anchor li:focus::before,
ul.anchor li:hover::before,
ul.anchor li:active::before {
  background-color: currentColor;
}

select {
  border-color: var(--clr-green);
  border-width: 1px;
  border-radius: 3px;
  background-color: white;
  text-align: right;
}

table {
  margin-bottom: var(--dist);
  margin-top: var(--dist);
}

th {
  background-color: #e6e6e6;
  text-align: left;
}

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

.sr-only {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
  clip-path: inset(0px 0px 99.9% 99.9%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
  top: 50%;
}

.no-inhalt {
  color: var(--clr-red) !important;
}

.no-hyphens {
  hyphens: none;
}

.ellipsi {
  margin-bottom: 3em;
}

/* KEEP
.ellipsi::after {
  content: '\00a0\2026';
}
*/
.heart {
  display: inline-block;
  width: calc(var(--h1-fontsize) + 3px);
  height: calc(var(--h1-fontsize) + 3px);
  vertical-align: -7px;
}
.heart::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--clr-orange);
  mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20d='M305%20151.1L320%20171.8L335%20151.1C360%20116.5%20400.2%2096%20442.9%2096C516.4%2096%20576%20155.6%20576%20229.1L576%20231.7C576%20343.9%20436.1%20474.2%20363.1%20529.9C350.7%20539.3%20335.5%20544%20320%20544C304.5%20544%20289.2%20539.4%20276.9%20529.9C203.9%20474.2%2064%20343.9%2064%20231.7L64%20229.1C64%20155.6%20123.6%2096%20197.1%2096C239.8%2096%20280%20116.5%20305%20151.1z'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20d='M305%20151.1L320%20171.8L335%20151.1C360%20116.5%20400.2%2096%20442.9%2096C516.4%2096%20576%20155.6%20576%20229.1L576%20231.7C576%20343.9%20436.1%20474.2%20363.1%20529.9C350.7%20539.3%20335.5%20544%20320%20544C304.5%20544%20289.2%20539.4%20276.9%20529.9C203.9%20474.2%2064%20343.9%2064%20231.7L64%20229.1C64%20155.6%20123.6%2096%20197.1%2096C239.8%2096%20280%20116.5%20305%20151.1z'/%3e%3c/svg%3e");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}

.jump-dist {
  border-top: var(--double-dist) solid transparent;
}

.pos-rel {
  position: relative;
}

.bg-image {
  position: relative;
  min-height: 50vw;
}
.bg-image::before {
  content: "";
  background-image: url(/media/templates/site/gsb/assets/kranz-blau-rot.png);
  background-size: contain;
  background-position-x: right;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

.icon path {
  fill: currentColor;
}

.readmore {
  position: absolute;
  bottom: var(--rand-dist);
  right: var(--rand-dist);
}
.readmore a {
  border: 1px solid var(--clr-green);
  display: inline-block;
  font-family: "Poppins", "Poppins Fallback", sans-serif;
  font-weight: 400;
  font-size: 0.8em;
  text-transform: uppercase;
  padding: 6px var(--rand-dist);
  vertical-align: middle;
  white-space: nowrap;
  -webkit-touch-callout: none;
}
@media (min-width: 600px) {
  .readmore a {
    padding-bottom: 4px;
    padding-top: 4px;
  }
}
.readmore a:link, .readmore a:visited {
  background-color: var(--clr-green);
  color: white;
  cursor: pointer;
}
.readmore a:focus, .readmore a:hover, .readmore a:active {
  background-color: white;
  border-color: var(--clr-green);
  color: var(--clr-green);
}
.readmore a:not(.btn)::after {
  content: "";
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20fill='currentColor'%20d='M441.3%20299.8C451.5%20312.4%20450.8%20330.9%20439.1%20342.6L311.1%20470.6C301.9%20479.8%20288.2%20482.5%20276.2%20477.5C264.2%20472.5%20256.5%20460.9%20256.5%20448L256.5%20192C256.5%20179.1%20264.3%20167.4%20276.3%20162.4C288.3%20157.4%20302%20160.2%20311.2%20169.3L439.2%20297.3L441.4%20299.7z'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20fill='currentColor'%20d='M441.3%20299.8C451.5%20312.4%20450.8%20330.9%20439.1%20342.6L311.1%20470.6C301.9%20479.8%20288.2%20482.5%20276.2%20477.5C264.2%20472.5%20256.5%20460.9%20256.5%20448L256.5%20192C256.5%20179.1%20264.3%20167.4%20276.3%20162.4C288.3%20157.4%20302%20160.2%20311.2%20169.3L439.2%20297.3L441.4%20299.7z'/%3e%3c/svg%3e");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  margin-left: -2px;
  vertical-align: -5px;
  transition: transform 1s;
  margin-right: -2px;
}
.readmore a:not(.btn):focus::after, .readmore a:not(.btn):hover::after, .readmore a:not(.btn):active::after {
  transform: rotate(359deg);
}
.readmore a.btn .icon-caret-right, .readmore a.btn .icon-caret-left {
  height: 1.3em;
  margin-left: -4px;
  vertical-align: -5px;
  transition: transform 1s;
  margin-right: -4px;
}
.readmore a.btn:focus .icon-caret-right, .readmore a.btn:hover .icon-caret-right, .readmore a.btn:active .icon-caret-right, .readmore a.btn:focus .icon-caret-left, .readmore a.btn:hover .icon-caret-left, .readmore a.btn:active .icon-caret-left {
  transform: rotate(359deg);
}

.full-width-layout {
  border-radius: 0;
}

.centered-layout {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
}

.padlr--rand-dist {
  padding-inline: var(--rand-dist);
}
@media (min-width: 1174px) {
  .padlr--rand-dist {
    padding-inline: 0 !important;
  }
}

.marb--dist {
  margin-bottom: var(--double-dist);
}

.big-screen {
  display: none !important;
}
@media (min-width: 993px) {
  .big-screen {
    display: block !important;
  }
}

@media (min-width: 993px) {
  .small-screen {
    display: none !important;
  }
}
.sameWidthS,
.sameWidthL,
.sameWidth40 {
  display: inline-block;
}

.sameWidthS {
  width: 55px;
}
@media (min-width: 531px) {
  .sameWidthS {
    width: 76px;
  }
}
@media (min-width: 768px) {
  .sameWidthS {
    width: 65px;
  }
}

@media (min-width: 592px) and (max-width: 767.98px) {
  .sameWidthS,
  .sameWidthL {
    width: 133px;
  }
}
@media (min-width: 870px) {
  .sameWidthL {
    width: 140px;
  }
}
.sameWidth40 {
  width: 40px;
}

.shadow {
  box-shadow: var(--shadow-4-seiten);
}

.blau,
.blaue-Schrift {
  color: var(--clr-blau) !important;
}

.gelb,
.gelbe-Schrift {
  color: var(--clr-yellow) !important;
}

.gruen,
.gruene-Schrift {
  color: var(--clr-green) !important;
}

.orange,
.orange-Schrift {
  color: var(--clr-orange) !important;
}

.rot,
.rote-Schrift {
  color: var(--clr-red) !important;
}

.kreis {
  position: relative;
  background-color: transparent;
  border-radius: 50%;
  float: right;
  line-height: 1;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.kreis::after, .kreis::before {
  content: "";
  display: table;
  clear: both;
}

.borderB {
  border-bottom: 1px solid var(--clr-green);
  margin: 0;
  padding: 16px 0;
}

.logo a {
  display: block;
  transition: transform 0.55s ease-in-out 0.06s;
}
.logo a:hover, .logo a:focus, .logo a:focus-within, .logo a:active {
  transform: rotate(359deg);
}

.top-distance {
  padding-top: calc(var(--header-height) + var(--rand-dist));
  transition: padding var(--transition-dur-time);
}

main {
  display: grid;
  gap: var(--dist);
  grid-template-rows: min-content auto;
}

.main.gridTemplate {
  display: grid;
  grid-template-rows: auto auto;
  row-gap: var(--double-dist);
  width: 100%;
}

@media (min-width: 993px) {
  body:not(.termine) .main.gridTemplate {
    display: inline-grid;
    grid-template: auto/1fr calc(200px + 2 * var(--dist));
    column-gap: var(--dist);
    row-gap: unset;
  }
}
@media (max-width: 435.98px) {
  .wrapper-content {
    margin-bottom: 0;
    padding: 0;
  }
  main {
    padding: 0 var(--rand-dist);
  }
}
.breadcrumbs {
  background-color: white;
  padding: var(--half-dist) var(--dist);
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  font-family: "Poppins", "Poppins Fallback", sans-serif;
  font-weight: 600;
  list-style: none;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}
.breadcrumbs li:first-child {
  display: none;
}
.breadcrumbs li {
  margin-bottom: 0;
  padding-right: 1em;
  position: relative;
}
.breadcrumbs li::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-41%);
  content: "";
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  margin-inline: 0 3px;
  background-color: var(--clr-orange);
  mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20fill='currentColor'%20d='M441.3%20299.8C451.5%20312.4%20450.8%20330.9%20439.1%20342.6L311.1%20470.6C301.9%20479.8%20288.2%20482.5%20276.2%20477.5C264.2%20472.5%20256.5%20460.9%20256.5%20448L256.5%20192C256.5%20179.1%20264.3%20167.4%20276.3%20162.4C288.3%20157.4%20302%20160.2%20311.2%20169.3L439.2%20297.3L441.4%20299.7z'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20fill='currentColor'%20d='M441.3%20299.8C451.5%20312.4%20450.8%20330.9%20439.1%20342.6L311.1%20470.6C301.9%20479.8%20288.2%20482.5%20276.2%20477.5C264.2%20472.5%20256.5%20460.9%20256.5%20448L256.5%20192C256.5%20179.1%20264.3%20167.4%20276.3%20162.4C288.3%20157.4%20302%20160.2%20311.2%20169.3L439.2%20297.3L441.4%20299.7z'/%3e%3c/svg%3e");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}
.breadcrumbs li:last-child::after {
  content: none;
}
.breadcrumbs a,
.breadcrumbs span {
  font-size: 0.8rem;
}
.breadcrumbs a:focus,
.breadcrumbs a:hover,
.breadcrumbs a:active {
  text-decoration-style: solid;
  text-decoration-color: currentColor;
  text-decoration-line: underline;
}

aside {
  background-color: white;
  padding: var(--rand-dist);
  position: sticky;
  top: 0;
  align-self: start;
}

/* @use "layout/order-boxes"; */
.boxes {
  display: grid;
  gap: var(--rand-dist);
  grid-template-columns: 1fr;
}
.boxes > div {
  min-height: 170px;
}
.boxes a {
  font-size: 0.9em;
  transition: font-size 0.3s, color 0.6s, background-color 0.3s, background-image 0.2s, background-size 0.3s, border-radius 0.3s, transform 0.55s ease-in-out 0.06s;
}
.boxes a:link, .boxes a:visited {
  color: var(--clr-black);
}
.boxes a:hover, .boxes a:focus, .boxes a:active {
  color: var(--clr-green);
}
.boxes a .icon-phone {
  width: 1em;
  height: 1em;
  margin-bottom: 8px;
}

/* @media (max-width: 459.98px) {
  .boxes .brief {
    min-height: 142px;
  }
} */
@media (min-width: 460px) and (max-width: 585.98px) {
  .boxes .contacts--title a,
  .boxes .brief a .brief--text {
    font-size: 0.76em;
  }
}
@media (min-width: 636px) and (max-width: 663px) {
  .boxes .contacts--title a,
  .boxes .brief a .brief--text {
    font-size: 0.9em;
  }
}
@media (min-width: 460px) and (max-width: 992.98px) {
  .boxes {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 460px) and (max-width: 702.98px) {
  .boxes .boxes {
    grid-template-columns: 1fr 1fr;
  }
  .boxes .logo {
    display: none;
  }
  .boxes .box-krankmeldung {
    order: 1;
  }
  .boxes .sozialarbeit {
    order: 2;
  }
  .boxes .sekretariat {
    order: 3;
  }
  .boxes .og {
    order: 4;
  }
  .boxes .brief.gsb {
    order: 5;
  }
  .boxes .brief.sv {
    order: 6;
  }
  .boxes .speiseplan {
    order: 7;
  }
  .boxes .slider-home-modal {
    order: 8;
  }
}
@media (min-width: 703px) and (max-width: 992.98px) {
  .boxes {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .boxes .logo {
    order: 1;
  }
  .boxes .box-krankmeldung {
    order: 2;
  }
  .boxes .sekretariat {
    order: 3;
  }
  .boxes .og {
    order: 5;
  }
  .boxes .sozialarbeit {
    order: 5;
  }
  .boxes .speiseplan {
    order: 8;
  }
  .boxes .brief.gsb {
    order: 7;
  }
  .boxes .brief.sv {
    order: 9;
  }
  .boxes .slider-home-modal {
    order: 6;
  }
}
.boxes .logo a {
  display: block;
  background-image: url(/media/templates/site/gsb/assets/logo-grundschule-buenningstedt.png);
  background-position: center;
  height: 100%;
  width: 100%;
  margin-inline: auto;
}

.boxes .brief {
  background-color: white;
  border: var(--half-dist) solid var(--clr-green) !important;
}
.boxes .brief a {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.boxes .brief .triangle {
  position: relative;
  height: 3.5em;
}
.boxes .brief .triangle > * {
  position: absolute;
}
.boxes .brief .triangle .triangle-shape path {
  fill: var(--clr-green);
}
.boxes .brief .triangle p {
  margin-top: 5px;
  text-align: center;
  width: 100%;
}
.boxes .brief .triangle p .icon-heart {
  display: inline-block;
  width: 42px;
  height: 42px;
  color: var(--clr-orange);
  transition: transform 0.71s;
}
.boxes .brief a .brief--text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  text-align: center;
  font-family: "Poppins", "Poppins Fallback", sans-serif;
  font-weight: 600;
  padding: 0 var(--dist);
  transition: all 0.31s;
}
.boxes .brief.gsb a:hover .icon-heart,
.boxes .brief.gsb a:focus .icon-heart,
.boxes .brief.gsb a:active .icon-heart {
  transform: rotate(180deg);
}
.boxes .brief.sv {
  border: var(--half-dist) solid var(--clr-orange) !important;
}
.boxes .brief.sv .triangle-shape path {
  fill: var(--clr-orange);
}
.boxes .brief.sv .triangle p {
  color: var(--clr-black);
  font-family: "Poppins", "Poppins Fallback", sans-serif;
  font-weight: 600;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 1px;
  padding-top: 6px;
  z-index: 0;
}
.boxes .brief.sv .triangle p .icon-heart {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -36%);
  color: var(--clr-green);
  z-index: -1;
}
.boxes .brief.sv a:hover .icon-heart,
.boxes .brief.sv a:focus .icon-heart,
.boxes .brief.sv a:active .icon-heart {
  transform: translate(-50%, -36%) rotate(180deg);
}

.contacts .wrapper {
  border-style: solid;
  border-width: var(--half-dist);
  height: 100%;
}
.contacts .outer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: var(--half-dist);
}
.contacts .contacts--title {
  line-height: 1.1;
  margin-top: 0;
  text-align: center;
}
.contacts .contacts--title a {
  font-family: "Poppins", "Poppins Fallback", sans-serif;
  font-weight: 600;
}
.contacts .contacts--title a::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20fill='currentColor'%20d='M441.3%20299.8C451.5%20312.4%20450.8%20330.9%20439.1%20342.6L311.1%20470.6C301.9%20479.8%20288.2%20482.5%20276.2%20477.5C264.2%20472.5%20256.5%20460.9%20256.5%20448L256.5%20192C256.5%20179.1%20264.3%20167.4%20276.3%20162.4C288.3%20157.4%20302%20160.2%20311.2%20169.3L439.2%20297.3L441.4%20299.7z'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20fill='currentColor'%20d='M441.3%20299.8C451.5%20312.4%20450.8%20330.9%20439.1%20342.6L311.1%20470.6C301.9%20479.8%20288.2%20482.5%20276.2%20477.5C264.2%20472.5%20256.5%20460.9%20256.5%20448L256.5%20192C256.5%20179.1%20264.3%20167.4%20276.3%20162.4C288.3%20157.4%20302%20160.2%20311.2%20169.3L439.2%20297.3L441.4%20299.7z'/%3e%3c/svg%3e");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  margin-left: -2px;
  vertical-align: -2px;
  transition: transform 1s;
}
.contacts .contacts--title a:focus::after, .contacts .contacts--title a:hover::after, .contacts .contacts--title a:active::after {
  color: inherit;
  transform: rotate(359deg);
}
.contacts .nummer {
  text-align: center;
}
.contacts .nummer a {
  display: inline-block;
  line-height: 0.5;
  margin-top: 12px;
  white-space: nowrap;
}
.contacts .person {
  color: white;
  line-height: 1.3;
}

.boxes .sekretariat {
  /* background-color: var(--clr-green); */
}
.boxes .sekretariat .wrapper {
  border-color: var(--clr-green);
}
.boxes .sekretariat .person {
  color: var(--clr-black);
}

.boxes .og {
  background-color: var(--clr-green);
}
.boxes .og .wrapper {
  border-color: var(--clr-green);
}
.boxes .og .person {
  color: white;
}
.boxes .og a:link,
.boxes .og a:visited {
  color: var(--clr-black);
}
.boxes .og a:hover,
.boxes .og a:focus,
.boxes .og a:active {
  color: white;
}

.boxes .sozialarbeit {
  border-color: var(--clr-green);
}
.boxes .sozialarbeit .wrapper {
  border-color: var(--clr-orange);
}
.boxes .sozialarbeit .person {
  color: var(--clr-black);
}

.boxes .box-krankmeldung a,
.boxes .speiseplan a {
  display: flex;
  font-family: "Poppins", "Poppins Fallback", sans-serif;
  font-weight: 700;
  font-size: 1em;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: font-size 0.3s;
  z-index: 0;
}
.boxes .box-krankmeldung a::before,
.boxes .speiseplan a::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  transition: transform 0.71s, background-color 0.51s;
  z-index: -1;
}

.boxes .box-krankmeldung a:focus,
.boxes .box-krankmeldung a:hover,
.boxes .box-krankmeldung a:active,
.boxes .speiseplan a:focus,
.boxes .speiseplan a:hover,
.boxes .speiseplan a:active {
  font-size: 0.88em;
}

.boxes .box-krankmeldung {
  background-color: var(--clr-orange);
}
.boxes .box-krankmeldung a:link, .boxes .box-krankmeldung a:visited {
  color: var(--clr-black);
}
.boxes .box-krankmeldung a:focus, .boxes .box-krankmeldung a:hover, .boxes .box-krankmeldung a:active {
  color: white;
}
.boxes .box-krankmeldung a::before {
  background-color: white;
  mask-image: url("data:image/svg+xml,%3csvg%20class='cross'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2040%2040'%3e%3cpath%20fill='currentColor'%20class='cross__bg'%20d='M33.48,34.79h-17.46c-.23,0-.37.1-.52.24l-5.2,4.73c-.39.36-1.04.29-1.47.07-.4-.2-.8-.66-.8-1.19l-.02-3.85h-1.56c-1.26-.07-2.25-1-2.41-2.27v-13.33c0-.13-.12-.25-.22-.25h-1.42c-1.04-.02-1.86-.86-1.88-1.91-.01-.64.23-1.31.74-1.74L18.44.71c1.02-.86,2.43-.66,3.39.16l6.6,5.65.03-1.44c.02-.8.71-1.57,1.54-1.57h3.41c.96,0,1.63.85,1.63,1.77v6.88s3.83,3.26,3.83,3.26c.52.44.75,1.11.69,1.78-.12.99-.91,1.73-1.91,1.73h-1.37c-.11,0-.22.12-.22.26v13.28c-.15,1.33-1.22,2.33-2.59,2.31ZM9.45,34.52v4.02s4.99-4.54,4.99-4.54c.44-.4.9-.67,1.53-.66h17.63c.57,0,1.03-.5,1.03-1.06v-13.14c0-.97.77-1.65,1.7-1.64h1.28c.21,0,.41-.13.48-.3.06-.14.08-.44-.09-.58L20.76,1.91c-.49-.42-1.05-.36-1.53.04l-9.69,8.24-7.4,6.29c-.16.14-.19.42-.17.59.03.27.27.44.53.44h1.41c.91.01,1.57.78,1.57,1.68v13.1c0,.52.42,1.03.92,1.04l1.91.02c.63.04,1.11.52,1.15,1.18ZM33.58,10.9v-5.61c0-.2-.13-.32-.32-.35h-3.05c-.19.03-.32.15-.33.34v2.49s3.7,3.12,3.7,3.12Z'/%3e%3cpath%20fill='currentColor'%20class='cross__symbol'%20d='M21.95,28.9h-3.68c-.67.04-1.32-.47-1.32-1.17v-4.17s-4.04.01-4.04.01c-.72,0-1.32-.41-1.4-1.16v-3.88c.05-.61.5-1.18,1.15-1.18h4.28s0-4.14,0-4.14c0-.65.51-1.16,1.14-1.23h3.67c.81-.02,1.35.6,1.35,1.38v3.98s4.23.01,4.23.01c.62,0,1.08.59,1.13,1.18v3.88c-.06.69-.59,1.16-1.28,1.16h-4.08s0,4.02,0,4.02c0,.68-.44,1.21-1.14,1.32Z'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20class='cross'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2040%2040'%3e%3cpath%20fill='currentColor'%20class='cross__bg'%20d='M33.48,34.79h-17.46c-.23,0-.37.1-.52.24l-5.2,4.73c-.39.36-1.04.29-1.47.07-.4-.2-.8-.66-.8-1.19l-.02-3.85h-1.56c-1.26-.07-2.25-1-2.41-2.27v-13.33c0-.13-.12-.25-.22-.25h-1.42c-1.04-.02-1.86-.86-1.88-1.91-.01-.64.23-1.31.74-1.74L18.44.71c1.02-.86,2.43-.66,3.39.16l6.6,5.65.03-1.44c.02-.8.71-1.57,1.54-1.57h3.41c.96,0,1.63.85,1.63,1.77v6.88s3.83,3.26,3.83,3.26c.52.44.75,1.11.69,1.78-.12.99-.91,1.73-1.91,1.73h-1.37c-.11,0-.22.12-.22.26v13.28c-.15,1.33-1.22,2.33-2.59,2.31ZM9.45,34.52v4.02s4.99-4.54,4.99-4.54c.44-.4.9-.67,1.53-.66h17.63c.57,0,1.03-.5,1.03-1.06v-13.14c0-.97.77-1.65,1.7-1.64h1.28c.21,0,.41-.13.48-.3.06-.14.08-.44-.09-.58L20.76,1.91c-.49-.42-1.05-.36-1.53.04l-9.69,8.24-7.4,6.29c-.16.14-.19.42-.17.59.03.27.27.44.53.44h1.41c.91.01,1.57.78,1.57,1.68v13.1c0,.52.42,1.03.92,1.04l1.91.02c.63.04,1.11.52,1.15,1.18ZM33.58,10.9v-5.61c0-.2-.13-.32-.32-.35h-3.05c-.19.03-.32.15-.33.34v2.49s3.7,3.12,3.7,3.12Z'/%3e%3cpath%20fill='currentColor'%20class='cross__symbol'%20d='M21.95,28.9h-3.68c-.67.04-1.32-.47-1.32-1.17v-4.17s-4.04.01-4.04.01c-.72,0-1.32-.41-1.4-1.16v-3.88c.05-.61.5-1.18,1.15-1.18h4.28s0-4.14,0-4.14c0-.65.51-1.16,1.14-1.23h3.67c.81-.02,1.35.6,1.35,1.38v3.98s4.23.01,4.23.01c.62,0,1.08.59,1.13,1.18v3.88c-.06.69-.59,1.16-1.28,1.16h-4.08s0,4.02,0,4.02c0,.68-.44,1.21-1.14,1.32Z'/%3e%3c/svg%3e");
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: 19%;
  -webkit-mask-size: 19%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
.boxes .box-krankmeldung a:hover::before, .boxes .box-krankmeldung a:focus::before, .boxes .box-krankmeldung a:active::before {
  transform: rotate(359deg);
  background-color: var(--clr-green);
}

.boxes .speiseplan {
  background-color: var(--clr-green);
}
.boxes .speiseplan a:link, .boxes .speiseplan a:visited {
  color: white;
}
.boxes .speiseplan a:focus, .boxes .speiseplan a:hover, .boxes .speiseplan a:active {
  color: white;
}
.boxes .speiseplan a::before {
  background-color: black;
  mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20817.000000%201280.000000'%20preserveAspectRatio='xMidYMid%20meet'%3e%3cmetadata%3e%20Created%20by%20potrace%201.15,%20written%20by%20Peter%20Selinger%202001-2017%20%3c/metadata%3e%3cg%20transform='translate(0.000000,1280.000000)%20scale(0.100000,-0.100000)'%20fill='%23000000'%20stroke='none'%3e%3cpath%20fill='currentColor'%20d='M6620%2012781%20c-359%20-98%20-717%20-600%20-954%20-1338%20-170%20-531%20-261%20-1116%20-273%20-1743%20-8%20-416%2013%20-603%2093%20-852%20115%20-356%20300%20-596%20698%20-907%20186%20-145%20255%20-211%20284%20-273%2021%20-43%2022%20-57%2022%20-364%200%20-723%20-41%20-1680%20-110%20-2554%20-29%20-357%20-61%20-698%20-135%20-1415%20-104%20-1008%20-119%20-1175%20-137%20-1593%20-12%20-295%20-2%20-598%2028%20-831%2019%20-145%2067%20-388%2095%20-472%2090%20-274%20276%20-431%20514%20-432%20147%200%20261%2048%20370%20158%20109%20109%20161%20240%20204%20515%2041%20263%2046%20343%2045%20785%20-1%20498%20-6%20582%20-114%201770%20-124%201367%20-158%201843%20-195%202710%20-17%20404%20-40%201511%20-33%201624%208%20139%2069%20214%20301%20372%20240%20163%20374%20273%20471%20389%20193%20230%20299%20483%20353%20836%2036%20235%2019%20871%20-32%201271%20-149%201151%20-568%202031%20-1088%202288%20-148%2073%20-278%2091%20-407%2056z'/%3e%3cpath%20fill='currentColor'%20d='M2750%2012747%20c-69%20-155%20-152%20-890%20-205%20-1812%20-32%20-563%20-39%20-801%20-39%20-1325%20-1%20-466%202%20-563%2017%20-667%2021%20-147%2054%20-258%20113%20-376%2058%20-115%2095%20-169%20261%20-378%20150%20-189%20210%20-277%20253%20-374%2074%20-164%2091%20-316%2071%20-596%20-7%20-90%20-46%20-515%20-87%20-944%20-151%20-1583%20-188%20-2028%20-233%20-2780%20-41%20-678%20-46%20-830%20-46%20-1505%200%20-731%208%20-889%2060%20-1256%2047%20-327%2099%20-468%20215%20-584%2036%20-36%2088%20-78%20116%20-92%20295%20-157%20652%2022%20762%20382%2024%2078%2066%20324%2088%20510%2021%20184%2029%20691%2015%20964%20-17%20318%20-34%20520%20-111%201296%20-158%201587%20-203%202272%20-231%203470%20-14%20602%20-9%20909%2015%20995%2038%20135%2093%20226%20256%20420%20175%20210%20286%20398%20358%20610%2070%20203%2087%20455%2079%201165%20-6%20502%20-10%20629%20-42%201145%20-56%20899%20-155%201779%20-200%201767%20-33%20-9%20-51%20-255%20-80%20-1122%20-35%20-1048%20-60%20-1434%20-106%20-1664%20-24%20-121%20-42%20-158%20-72%20-154%20-76%2011%20-113%20387%20-137%201388%20-30%201273%20-42%201507%20-84%201548%20-44%2044%20-64%20-206%20-91%20-1123%20-32%20-1072%20-56%20-1447%20-110%20-1680%20-40%20-178%20-110%20-179%20-150%20-3%20-47%20206%20-63%20544%20-75%201572%20-12%20979%20-23%201218%20-60%201241%20-44%2027%20-70%20-253%20-110%20-1170%20-35%20-815%20-51%20-1083%20-76%20-1335%20-29%20-301%20-63%20-440%20-105%20-440%20-50%200%20-82%20135%20-109%20460%20-19%20229%20-30%20618%20-40%201407%20-12%20874%20-22%201083%20-52%201083%20-5%200%20-18%20-19%20-28%20-43z'/%3e%3cpath%20fill='currentColor'%20d='M604%2012690%20c-94%20-22%20-172%20-140%20-237%20-360%20-85%20-282%20-133%20-672%20-173%20-1392%20-21%20-366%20-30%20-2277%20-15%20-3238%2012%20-821%2016%20-860%20131%20-1291%2074%20-278%2080%20-325%2080%20-603%200%20-618%20-47%20-1445%20-120%20-2131%20-31%20-285%20-62%20-531%20-134%20-1055%20-116%20-847%20-130%20-981%20-130%20-1320%20-1%20-294%2012%20-415%2063%20-626%2054%20-218%20104%20-320%20203%20-409%20239%20-215%20667%20-165%20842%2099%2065%2097%20114%20291%20143%20556%2027%20255%208%20608%20-62%201145%20-13%20105%20-40%20309%20-59%20455%20-90%20686%20-147%201302%20-181%201960%20-20%20406%20-38%201099%20-33%201340%20l4%20205%2036%20105%20c20%2058%2099%20238%20176%20400%20192%20403%20262%20584%20326%20835%2085%20336%20100%20603%2076%201340%20-58%201796%20-279%203196%20-591%203741%20-101%20176%20-235%20271%20-345%20244z'/%3e%3c/g%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20817.000000%201280.000000'%20preserveAspectRatio='xMidYMid%20meet'%3e%3cmetadata%3e%20Created%20by%20potrace%201.15,%20written%20by%20Peter%20Selinger%202001-2017%20%3c/metadata%3e%3cg%20transform='translate(0.000000,1280.000000)%20scale(0.100000,-0.100000)'%20fill='%23000000'%20stroke='none'%3e%3cpath%20fill='currentColor'%20d='M6620%2012781%20c-359%20-98%20-717%20-600%20-954%20-1338%20-170%20-531%20-261%20-1116%20-273%20-1743%20-8%20-416%2013%20-603%2093%20-852%20115%20-356%20300%20-596%20698%20-907%20186%20-145%20255%20-211%20284%20-273%2021%20-43%2022%20-57%2022%20-364%200%20-723%20-41%20-1680%20-110%20-2554%20-29%20-357%20-61%20-698%20-135%20-1415%20-104%20-1008%20-119%20-1175%20-137%20-1593%20-12%20-295%20-2%20-598%2028%20-831%2019%20-145%2067%20-388%2095%20-472%2090%20-274%20276%20-431%20514%20-432%20147%200%20261%2048%20370%20158%20109%20109%20161%20240%20204%20515%2041%20263%2046%20343%2045%20785%20-1%20498%20-6%20582%20-114%201770%20-124%201367%20-158%201843%20-195%202710%20-17%20404%20-40%201511%20-33%201624%208%20139%2069%20214%20301%20372%20240%20163%20374%20273%20471%20389%20193%20230%20299%20483%20353%20836%2036%20235%2019%20871%20-32%201271%20-149%201151%20-568%202031%20-1088%202288%20-148%2073%20-278%2091%20-407%2056z'/%3e%3cpath%20fill='currentColor'%20d='M2750%2012747%20c-69%20-155%20-152%20-890%20-205%20-1812%20-32%20-563%20-39%20-801%20-39%20-1325%20-1%20-466%202%20-563%2017%20-667%2021%20-147%2054%20-258%20113%20-376%2058%20-115%2095%20-169%20261%20-378%20150%20-189%20210%20-277%20253%20-374%2074%20-164%2091%20-316%2071%20-596%20-7%20-90%20-46%20-515%20-87%20-944%20-151%20-1583%20-188%20-2028%20-233%20-2780%20-41%20-678%20-46%20-830%20-46%20-1505%200%20-731%208%20-889%2060%20-1256%2047%20-327%2099%20-468%20215%20-584%2036%20-36%2088%20-78%20116%20-92%20295%20-157%20652%2022%20762%20382%2024%2078%2066%20324%2088%20510%2021%20184%2029%20691%2015%20964%20-17%20318%20-34%20520%20-111%201296%20-158%201587%20-203%202272%20-231%203470%20-14%20602%20-9%20909%2015%20995%2038%20135%2093%20226%20256%20420%20175%20210%20286%20398%20358%20610%2070%20203%2087%20455%2079%201165%20-6%20502%20-10%20629%20-42%201145%20-56%20899%20-155%201779%20-200%201767%20-33%20-9%20-51%20-255%20-80%20-1122%20-35%20-1048%20-60%20-1434%20-106%20-1664%20-24%20-121%20-42%20-158%20-72%20-154%20-76%2011%20-113%20387%20-137%201388%20-30%201273%20-42%201507%20-84%201548%20-44%2044%20-64%20-206%20-91%20-1123%20-32%20-1072%20-56%20-1447%20-110%20-1680%20-40%20-178%20-110%20-179%20-150%20-3%20-47%20206%20-63%20544%20-75%201572%20-12%20979%20-23%201218%20-60%201241%20-44%2027%20-70%20-253%20-110%20-1170%20-35%20-815%20-51%20-1083%20-76%20-1335%20-29%20-301%20-63%20-440%20-105%20-440%20-50%200%20-82%20135%20-109%20460%20-19%20229%20-30%20618%20-40%201407%20-12%20874%20-22%201083%20-52%201083%20-5%200%20-18%20-19%20-28%20-43z'/%3e%3cpath%20fill='currentColor'%20d='M604%2012690%20c-94%20-22%20-172%20-140%20-237%20-360%20-85%20-282%20-133%20-672%20-173%20-1392%20-21%20-366%20-30%20-2277%20-15%20-3238%2012%20-821%2016%20-860%20131%20-1291%2074%20-278%2080%20-325%2080%20-603%200%20-618%20-47%20-1445%20-120%20-2131%20-31%20-285%20-62%20-531%20-134%20-1055%20-116%20-847%20-130%20-981%20-130%20-1320%20-1%20-294%2012%20-415%2063%20-626%2054%20-218%20104%20-320%20203%20-409%20239%20-215%20667%20-165%20842%2099%2065%2097%20114%20291%20143%20556%2027%20255%208%20608%20-62%201145%20-13%20105%20-40%20309%20-59%20455%20-90%20686%20-147%201302%20-181%201960%20-20%20406%20-38%201099%20-33%201340%20l4%20205%2036%20105%20c20%2058%2099%20238%20176%20400%20192%20403%20262%20584%20326%20835%2085%20336%20100%20603%2076%201340%20-58%201796%20-279%203196%20-591%203741%20-101%20176%20-235%20271%20-345%20244z'/%3e%3c/g%3e%3c/svg%3e");
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: 25%;
  -webkit-mask-size: 25%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
.boxes .speiseplan a:hover::before, .boxes .speiseplan a:focus::before, .boxes .speiseplan a:active::before {
  transform: rotate(359deg);
}

.boxes .slider-home-modal button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  background-image: url(/media/templates/site/gsb/assets/slider001-min.jpg);
  background-size: cover;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-dur-time);
}
.boxes .slider-home-modal button:focus, .boxes .slider-home-modal button:hover, .boxes .slider-home-modal button:active {
  color: var(--clr-orange);
}
.boxes .slider-home-modal button .icon-heart {
  width: 39px;
  height: 39px;
  color: inherit;
  transition: transform 0.71s;
}
.boxes .slider-home-modal button:focus .icon-heart, .boxes .slider-home-modal button:hover .icon-heart, .boxes .slider-home-modal button:active .icon-heart {
  transform: rotate(180deg);
}

@media (min-width: 993px) {
  body:not(.termine) .boxes {
    /* font-size: 0.88em; */
    gap: var(--double-dist);
  }
  body:not(.termine) .boxes .box-krankmeldung,
  body:not(.termine) .boxes .contacts,
  body:not(.termine) .boxes .speiseplan,
  body:not(.termine) .boxes .slider-home-modal {
    min-height: 200px;
  }
  body:not(.termine) .boxes .logo {
    min-height: unset;
    height: calc(163px + var(--double-dist) - var(--rand-dist));
    padding-top: calc(var(--double-dist) - var(--rand-dist));
  }
  body:not(.termine) .boxes .box-krankmeldung {
    border-radius: 50%;
  }
  body:not(.termine) .boxes a::before {
    mask-size: 36%;
    -webkit-mask-size: 36%;
  }
  body:not(.termine) .boxes .contacts .person {
    color: var(--clr-black);
  }
  body:not(.termine) .boxes .sekretariat .wrapper {
    background-color: white;
  }
  body:not(.termine) .boxes .sekretariat a:link,
  body:not(.termine) .boxes .sekretariat a:visited {
    color: var(--clr-black);
  }
  body:not(.termine) .boxes .sekretariat a:hover,
  body:not(.termine) .boxes .sekretariat a:focus,
  body:not(.termine) .boxes .sekretariat a:active {
    color: var(--clr-green);
  }
  body:not(.termine) .boxes .og {
    border-radius: 50vw;
  }
  body:not(.termine) .boxes .og .outer {
    padding: 0;
  }
  body:not(.termine) .boxes .og .contacts .person {
    color: white;
  }
  body:not(.termine) .boxes .og a:link,
  body:not(.termine) .boxes .og a:visited {
    color: var(--clr-black);
  }
  body:not(.termine) .boxes .og a:hover,
  body:not(.termine) .boxes .og a:focus,
  body:not(.termine) .boxes .og a:active {
    color: white;
  }
  body:not(.termine) .boxes .sozialarbeit .wrapper {
    border: none;
  }
  body:not(.termine) .boxes .sozialarbeit .wrapper .outer {
    border: var(--half-dist) solid orange;
    border-radius: 0;
  }
  body:not(.termine) .boxes .brief {
    min-height: 142px;
  }
  body:not(.termine) .boxes .speiseplan {
    border-radius: 50%;
  }
}
@media (min-width: 993px) {
  .termine .boxes {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.item-content,
.com-content-article__body,
.search,
.visforms {
  /* ul li:last-child {
    margin-bottom: 0;
  } */
}
.item-content li:not(:last-child),
.com-content-article__body li:not(:last-child),
.search li:not(:last-child),
.visforms li:not(:last-child) {
  margin-block-end: 9px;
}
.item-content li,
.com-content-article__body li,
.search li,
.visforms li {
  line-height: 1.3;
}

.blog-featured {
  position: relative;
}

.com-content-article,
.com-content-category-blog {
  background-color: white;
  padding: var(--double-dist) var(--rand-dist) var(--triple-dist);
}

.blog-featured::before,
.com-content-article::before,
.com-content-category-blog::before {
  content: "";
  clear: both;
  display: table;
}

.blog-featured img,
.com-content-article img,
.com-content-category-blog img {
  max-width: 100%;
  height: auto;
  transition: opacity var(--transition-dur-time);
}

.blog-featured .blog-items.items-leading {
  min-height: 100%;
  display: grid;
}
.blog-featured .blog-items.items-leading .blog-item {
  background-color: white;
  padding: var(--triple-dist) var(--dist);
  position: relative;
}
.blog-featured .blog-items.items-leading .blog-item:not(:last-child) {
  margin-bottom: var(--dist);
}
.blog-featured .blog-items.items-leading .blog-item .item-content {
  margin-inline: auto;
  max-width: var(--maxLetterWidth);
}

.com-content-article__body {
  margin-inline: auto;
  max-width: var(--maxLetterWidth);
}
.com-content-article__body div {
  background-color: var(--clr-gray-trans);
  margin-top: var(--double-dist);
  padding: var(--double-dist) var(--dist);
}
.com-content-article__body div > div {
  background-color: white;
}
.com-content-article__body div.slider {
  padding: 0;
}
.com-content-article__body li {
  margin-bottom: 0.5em;
}
.com-content-article__body .icon-book-open,
.com-content-article__body .icon-door-open,
.com-content-article__body .icon-envelope,
.com-content-article__body .icon-globe,
.com-content-article__body .icon-mobile,
.com-content-article__body .icon-phone {
  color: var(--clr-green);
  line-height: 2;
  width: 1.5em;
  height: 1.5em;
}
.com-content-article__body .icon-door-open {
  color: var(--clr-black);
}
.com-content-article__body h2 {
  margin-bottom: 0;
  margin-top: 2em;
}
.com-content-article__body div h2:first-of-type {
  margin-top: 0.5em;
}
.com-content-article__body h2 ~ table {
  margin-top: 0.4em;
}

.com-content-article table {
  line-height: 1.4;
  max-width: 100% !important;
}
.com-content-article td,
.com-content-article th {
  padding: 0.5em;
}

.com-content-category-blog > * {
  margin-inline: auto;
  max-width: var(--maxLetterWidth);
}

.com-content-category-blog__item {
  border: 1px solid transparent;
  background-color: var(--clr-gray-trans);
  margin-bottom: var(--double-dist);
  padding: var(--double-dist) var(--dist);
  position: relative;
  transition: border-color 0.31s, background-color 0.31s;
}
@media (min-width: 280px) {
  .com-content-category-blog__item {
    padding: var(--dist);
  }
}
.com-content-category-blog__item:focus, .com-content-category-blog__item:hover, .com-content-category-blog__item:active {
  background-color: white;
  border-color: var(--clr-green);
}

.com-content-category-blog .items-more {
  font-size: 0.9em;
  padding: var(--dist);
  border: 1px solid var(--clr-green);
  border-bottom: none;
  border-left-style: solid;
}

.items-more h3 {
  border-bottom: 1px solid var(--clr-green);
  font-weight: 700;
  margin-top: var(--dist);
}
.items-more ol li {
  margin-bottom: var(--dist);
  padding-left: 4px;
  padding-right: var(--dist);
  line-height: 1.3;
}
.items-more ol li:last-child {
  margin-bottom: 0;
}
.items-more a:link {
  color: inherit;
  text-decoration: underline;
}
.items-more a:visited {
  color: inherit;
}
.items-more a:focus,
.items-more a:hover,
.items-more a:active {
  color: var(--clr-green);
  text-decoration: none;
}

.com-content-category-blog__navigation,
.suchergebnis .pagination {
  margin-top: var(--double-dist);
}

.com-content-category-blog__navigation nav,
.suchergebnis .pagination nav {
  text-align: center;
}

.pagination {
  padding-left: 0;
}
.pagination ul {
  list-style-type: none;
  padding-left: 0;
}
.pagination li {
  display: inline-block;
  margin-right: 0;
}
@media (min-width: 500px) {
  .pagination li {
    margin-right: -5px;
  }
}
@media (min-width: 650px) {
  .pagination li {
    margin-right: -5px;
  }
}
.pagination li a {
  border-bottom: 1px solid var(--clr-green);
  border-radius: 0;
  padding: 0 6px;
  text-decoration: none;
}
@media (min-width: 500px) {
  .pagination li a {
    padding: 0 14px;
  }
}
@media (min-width: 650px) {
  .pagination li a {
    padding: 0 19px;
  }
}
.pagination li a:focus, .pagination li a:hover, .pagination li a:active {
  box-shadow: 0 -2px var(--clr-green) inset !important;
  text-decoration: none;
}
.pagination li.active a {
  border-color: var(--clr-black);
  color: var(--clr-black);
  box-shadow: 0 -2px var(--clr-black) inset;
  font-weight: 700;
}
.pagination li.active a:focus, .pagination li.active a:hover, .pagination li.active a:active {
  box-shadow: 0 -2px var(--clr-black) inset;
  cursor: default;
}

input::placeholder {
  color: var(--clr-black);
  opacity: 1;
}

input:hover::placeholder {
  color: var(--clr-green);
}

input:focus::placeholder {
  color: transparent;
}

.alle,
.schulschluss {
  text-transform: uppercase;
  font-weight: bold;
  background-color: rgb(242, 242, 242);
}

footer {
  color: white;
  position: relative;
}
footer .kontakt--zertifikate {
  background: linear-gradient(rgba(162, 198, 20, 0.5), rgba(162, 198, 20, 0.5)) padding-box, linear-gradient(rgba(162, 198, 20, 0.9), var(--clr-black)) border-box;
}
footer .layout-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  grid-template-areas: "a" "c" "d";
  justify-items: center;
  text-align: center;
  padding: calc(5 * var(--dist)) var(--rand-dist) calc(4 * var(--dist));
}
footer .logo {
  grid-area: a;
}
footer .slogan {
  grid-area: b;
}
footer .address {
  grid-area: c;
}
footer .certs {
  grid-area: d;
}
footer .slogan {
  font-size: 1.5em;
}
footer address {
  color: white;
  font-size: 0.8em;
  font-style: normal;
  line-height: 1.4;
}
footer address .heading {
  font-family: "Poppins", "Poppins Fallback", sans-serif;
  font-weight: 800;
  font-size: calc(0.8 * var(--page-font-size));
  text-transform: uppercase;
  display: block;
  visibility: hidden;
}
footer address a:link,
footer address a:visited {
  color: white;
}
footer address a.underline:hover, footer address a.underline:focus, footer address a.underline:active {
  color: var(--clr-green);
  box-shadow: 0 2px white;
}
footer address a.underline::before {
  background-color: var(--clr-green);
}
footer address .icon-phone {
  height: 1em;
  margin-right: 3px;
}
footer .certs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--dist);
  margin-top: calc(4 * var(--dist));
}
@media (min-width: 630px) {
  footer .certs {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
footer .batch {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(188px, 13.5vw, 240px);
  width: clamp(188px, 13.5vw, 240px);
  border-radius: 50%;
  background: rgba(162, 198, 20, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: background var(--transition-dur-time);
}
footer .batch:hover {
  background: rgba(255, 255, 255, 0.8);
}
footer .batch img {
  max-width: 70%;
  max-height: 70%;
  width: auto;
  height: auto;
  object-fit: contain;
}
footer .footer--links {
  background: linear-gradient(rgba(162, 198, 20, 0.7), rgba(162, 198, 20, 0.7)) padding-box, linear-gradient(var(--clr-black), var(--clr-black)) border-box;
}
footer .footer--links .nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer--links .nav li {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
}
footer .footer--links .nav li a {
  display: block;
  padding: 12px 0;
  text-align: center;
  font-family: "Poppins", "Poppins Fallback", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: calc(0.8 * var(--page-font-size));
}
footer .footer--links .nav li a:link, footer .footer--links .nav li a:visited {
  color: white;
}
footer .footer--links .nav li a:hover, footer .footer--links .nav li a:focus, footer .footer--links .nav li a:active {
  color: var(--clr-green);
}
footer .footer--links .nav li:last-child {
  margin-bottom: 3px;
}
@media (max-width: 499.98px) {
  footer .footer--links .nav li a:hover,
  footer .footer--links .nav li a:focus,
  footer .footer--links .nav li a:active {
    background: rgba(255, 255, 255, 0.05);
  }
}
footer .footer--links.underline .nav li.active a:link, footer .footer--links.underline .nav li.active a:visited, footer .footer--links.underline .nav li.active a:hover, footer .footer--links.underline .nav li.active a:focus, footer .footer--links.underline .nav li.active a:active {
  color: var(--clr-green);
  cursor: default;
}
@media (min-width: 500px) {
  footer .layout-grid {
    padding-block: calc(3 * var(--dist));
  }
  footer .footer--links nav {
    margin: 0;
  }
  footer .footer--links .nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .footer--links .nav li {
    border: none;
    width: auto;
  }
  footer .footer--links .nav li:not(:last-child)::after {
    content: "·";
  }
  footer .footer--links .nav li a {
    display: inline-block;
    width: auto;
    padding: 1em var(--rand-dist);
  }
  footer .footer--links .nav li:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 949.98px) {
  footer .slogan {
    display: none;
  }
}
@media (min-width: 950px) {
  footer .layout-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "a b" "c d";
    align-items: center;
    justify-items: stretch;
    text-align: left;
    padding-block: calc(3 * var(--dist));
  }
  footer .logo,
  footer .address {
    justify-self: start;
  }
  footer address .heading {
    font-size: inherit;
    visibility: visible;
    margin-bottom: 0.3rem;
  }
  footer .slogan {
    justify-self: center;
    text-align: left;
  }
  footer .footer--links .nav {
    justify-content: flex-start;
  }
}
@media (min-width: 993px) {
  footer .layout-grid {
    padding-block: calc(4 * var(--dist));
  }
  footer .certs {
    margin-top: calc(4 * var(--dist));
  }
}

.sigFreeContainer a:focus,
.sigFreeContainer a:hover,
.sigFreeContainer a:active {
  box-shadow: none;
}
.sigFreeContainer img {
  border: 1px solid var(--clr-black) !important;
  box-shadow: none;
}
.sigFreeContainer .com-content-article.neuigkeiten img {
  box-shadow: none;
}

ul.sigFreeClassic li.sigFreeThumb {
  padding-block: 1rem;
}
ul.sigFreeClassic li.sigFreeThumb a.sigFreeLink,
ul.sigFreeClassic li.sigFreeThumb a.sigFreeLink:focus,
ul.sigFreeClassic li.sigFreeThumb a.sigFreeLink:hover,
ul.sigFreeClassic li.sigFreeThumb a.sigFreeLink:active {
  background-color: transparent !important;
}

/* show always zoom-cross */
ul.sigFreeClassic li.sigFreeThumb a.sigFreeLink::after {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -24px 0 0 -24px;
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NDkxMSwgMjAxMy8xMC8yOS0xMTo0NzoxNiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjkzOEEwNTdERDM5OTExRTM5RTg1ODVGMUI1MDA1NzdFIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjkzOEEwNTdFRDM5OTExRTM5RTg1ODVGMUI1MDA1NzdFIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6OTM4QTA1N0JEMzk5MTFFMzlFODU4NUYxQjUwMDU3N0UiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6OTM4QTA1N0NEMzk5MTFFMzlFODU4NUYxQjUwMDU3N0UiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6kEtMQAAAD3ElEQVR42syaXUhUQRTH71qkufiJohEIkURSpG5akFFqHxCkD+FzL9FDD1FEREE9lD1ET4JEhRiSEBRBJhpEQmuUhhaUhZVZD32A4EfWprtquv2nzoLIPXNn7t69uwd+Lzszd+Z/Z+bcmXPWEw6HDZu2HGwBu0AJKAL5S+qMgkEwALrAczBnOGlCgCbl4BoYC+vbBGgGFTb6NUWnchnoCjtnT5wQolIpFTSCP2HnbQE0gbRYCSgCb8OxtyFQbEeAR7KJt4MOkGG4Y9PgAHio04gTUE5eI92i/TzoAe3kYT6BEJUlgzXkqWrBDvJcMguCfaA7Gi+0DoxaTHkQXAa5GtOdBc6D3xbPngSb7O4BsWEHLDpoAwVReI5V4JbCnki3I6DBwmPUA49DPvwUmJf0d0NXwEYwJxn8Iac+Pouok7hn0edWHQHtkrdxMQaDj3BS0q9fVUApKTaz+4rLJsi0T1Vo2yoRsVNFQBPTeAqsVnyT0QgQHmqcaX9H1jaJ/HUd42Wvgu8ufMR+gAambD9Ik30HqhjlwkPka6zlaGbAoPNQiHlGrWwGqhhtfWDEcM8C4DFTVs01EgKKmbI2w327x/xeIhNQyJT1ML/PipVnQgpTf4qpb7aue5lnFMoE5DFlw3GYAa7PPJkAbodPxkFAkDC7f3s5AR7OQRmJZQucgADTICMOgxTfpJXMPgpyAkaZh62NgwCuz3HZHhhiyrYxv6+gZbeUEFPfy9QPaPT5WSbgDVNWE4cZqNF06f8E+JmyCpDj4uBTwW6mrFcm4CkzncvAMRcFHCERZkcMv9WlvklyeS9w4TCXQ5d5M7tudZwW1szoE8eDSy68/XqJ225RDas8kNyKzsXwSnlU0m+nzp3YJ7lgz9MF3OnB7wWzkj59umGVRsnbEOJOODj4w5LBC/sGMnUFeMGgRdCphTad3YGLQV1RDPr2WYkw+1GE9X4qhP/OkGDVgaeA4zYSI/106dcKr1eCaYWHT1PYRQS9NtAgI89IBuvBQXAXBKIIv7MiZOF1EaHuBLkJcpx+R3fjkaVfYs76QSX4kCACiihfkaUqwKAMo4jv34zRBUfkF75q1N9MeYtsO1lKEWjtdjCt1EEB5Uxa4zr2EmTrZikjVIPbFHbUtUlK0ZaZhBZfaD5LuNgUTxSJbi/tES7RPUO3vY/gGR2J/ZQLM7MsWh4+jTFciEaAac4NZNLa/mWjvVjbjzREDDstwAnLppkoVag7k2Qknk2APeCVQt0viSggEoUQ18vXFvVaE3EJLbYcSnz7mHtydZKR2DZm/P/HwFkK/4jo3HtwmtICob8CDABbLewjRNj41AAAAABJRU5ErkJggg==) no-repeat;
}

ul.sigFreeClassic li.sigFreeThumb a.sigFreeLink:hover::after {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 100vh;
  padding: 11px;
  width: 74px;
  height: 74px;
  background-origin: content-box;
}

.fancybox-caption__body {
  display: none !important;
}

#lbClose {
  width: 101px;
}

ul.sigFreeClassic li.sigFreeThumb:not(:first-child) {
  display: none;
}
ul.sigFreeClassic li.sigFreeThumb:first-child {
  background-color: transparent !important;
  width: 100% !important;
}
ul.sigFreeClassic li.sigFreeThumb a.sigFreeLink {
  width: 100% !important;
}
ul.sigFreeClassic li.sigFreeThumb a.sigFreeLink img.sigFreeImg {
  margin-inline: auto !important;
}

header {
  position: fixed;
  background-color: var(--clr-green);
  border-bottom: var(--border-under-nav) solid var(--clr-black);
  box-shadow: var(--shadow-unten);
  width: 100%;
  z-index: 3;
}
header .centered-layout {
  background-color: var(--clr-green);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  display: flex;
  padding: var(--rand-dist);
  transition: all var(--transition-dur-time), padding 0.75s;
  position: relative;
  z-index: 1300;
}

.buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ========================================
// Button Krankmeldung
// ======================================== */
.btn_krankmeldung {
  height: 40px;
  width: 40px;
}
.btn_krankmeldung svg path {
  fill: white;
}
.btn_krankmeldung svg path.cross__symbol {
  transform: rotate(0deg);
  transform-origin: center;
  transform-box: fill-box;
  transition: transform var(--transition-dur-time), fill var(--transition-dur-time);
}
.btn_krankmeldung svg:hover .cross__symbol, .btn_krankmeldung svg:focus .cross__symbol, .btn_krankmeldung svg:active .cross__symbol {
  fill: var(--clr-red);
  transform: rotate(345deg);
}

.btn,
.btn * {
  transition: transform var(--transition-dur-time), color var(--transition-dur-time);
}

.btn.slices {
  font-size: var(--btn-open-menu-font);
}
.btn.slices div {
  position: relative;
  height: var(--btn-open-menu-size);
  width: var(--btn-open-menu-size);
}
.btn.slices .slice {
  position: absolute;
  left: 0;
  height: 5px;
  width: 100%;
  background-color: var(--clr-black);
  transition: all var(--transition-dur-time);
}

@media (min-width: 993px) {
  header .centered-layout.main-nav {
    padding: var(--double-dist) var(--dist) 0;
  }
  .scroll header .centered-layout.main-nav {
    padding-top: var(--dist);
  }
}
@media (min-width: 1174px) {
  header .centered-layout.main-nav {
    padding: var(--double-dist) 0 0;
  }
}
nav a[href$=".pdf" i]::after {
  content: " [PDF] ";
  font-size: inherit;
  font-weight: bold;
}

.main-menu {
  align-self: flex-end;
  flex-grow: 1;
  height: 100%;
  overflow-y: visible;
  position: relative;
  z-index: 1300;
}
.main-menu ul {
  border-radius: 0;
  list-style: none;
  margin-bottom: 0;
  margin-top: 0;
  padding-left: 0;
}
.main-menu .top-level {
  height: 100%;
}
.main-menu li {
  background-color: white;
  line-height: 1;
  transition: all var(--transition-dur-time);
}
.main-menu a {
  color: var(--clr-black);
  font-family: "Poppins", "Poppins Fallback", sans-serif;
  font-weight: 800;
  display: inline-block;
  line-height: 3;
  padding: 0 var(--rand-dist);
  text-transform: uppercase;
  width: 100%;
}
.main-menu a:hover, .main-menu a:active {
  background-color: var(--clr-orange);
  color: white;
}
.main-menu a:focus-visible {
  background-color: var(--clr-orange);
  color: white;
}
.main-menu .parent > a {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.main-menu .sub-level li {
  border-radius: 0;
}
.main-menu .sub-level a {
  border-bottom: 1px solid var(--clr-orange);
  border-radius: 0;
  font-family: "Poppins", "Poppins Fallback", sans-serif;
  font-weight: 500;
  padding: 0 var(--rand-dist);
  text-transform: none;
}
.main-menu .sub-level li:last-child a {
  border-bottom: none;
}
.main-menu .sub-level .current > a,
.main-menu .sub-level .current > a:focus,
.main-menu .sub-level .current > a:hover,
.main-menu .sub-level .current > a:active {
  background-color: white;
  border-color: var(--clr-orange);
  color: var(--clr-orange);
}
.main-menu .top-level > .current > a,
.main-menu .top-level > .current > a:focus,
.main-menu .top-level > .current > a:hover,
.main-menu .top-level > .current > a:active,
.main-menu .top-level > .current.active.parent > a,
.main-menu .top-level > .current.active.parent > a:focus,
.main-menu .top-level > .current.active.parent > a:hover,
.main-menu .top-level > .current.active.parent > a:active {
  background-color: transparent;
  border-color: white;
  color: white;
  cursor: default;
}
.main-menu .top-level {
  /* > .homepage.current > a,
  > .homepage.current > a:hover,
  > .homepage.current > a:focus,
  > .homepage.current > a:active {
    background-color: transparent;
    border-color: transparent;
    color: inherit;
    cursor: pointer;
  } laesst home als schrift stehen*/
}
.main-menu .homepage.current > a:focus,
.main-menu .homepage.current > a:hover,
.main-menu .homepage.current > a:active {
  cursor: n-resize;
}
.main-menu .homepage.item-home-mobile.current > a:focus,
.main-menu .homepage.item-home-mobile.current > a:hover,
.main-menu .homepage.item-home-mobile.current > a:active {
  background-color: white;
  border-color: white;
  color: var(--clr-orange);
}

#btn_menu {
  position: relative;
  z-index: 1300;
}
#btn_menu .slice:nth-child(1) {
  top: 6px;
}
#btn_menu .slice:nth-child(2) {
  top: 17px;
}
#btn_menu .slice:nth-child(3) {
  top: 28px;
}
#btn_menu:focus .slice, #btn_menu:hover .slice, #btn_menu:active .slice {
  background-color: var(--clr-orange);
}

@media (max-width: 992.98px) {
  .main-menu {
    max-height: 80vh;
    overflow-y: auto;
  }
  .main-menu li {
    margin-top: var(--dist);
  }
  .main-menu li:not(:first-child) {
    display: none;
  }
  .main-menu li:first-child {
    display: list-item;
  }
  .main-menu .main-menu-open-submenu-button {
    display: none;
  }
  .main-menu .deeper.parent > a {
    border-bottom: 1px solid var(--clr-orange);
    padding-top: var(--half-dist);
  }
  .main-menu .top-level > .active.parent > a,
  .main-menu .top-level > .active.parent > a:focus,
  .main-menu .top-level > .active.parent > a:hover,
  .main-menu .top-level > .active.parent > a:active {
    background-color: var(--clr-orange);
    border-color: white;
    color: white;
  }
  .main-menu .sub-level {
    padding-bottom: var(--half-dist);
    margin: var(--half-dist) var(--dist) var(--dist);
    margin: var(--half-dist) 0 var(--dist);
  }
  .main-menu .sub-level li {
    margin-top: 0;
  }
  .main-menu .sub-level a {
    font-size: max(0.9em, 20px);
    hyphens: auto;
  }
  .main-menu .sub-level .current > a,
  .main-menu .sub-level .current > a:focus,
  .main-menu .sub-level .current > a:hover,
  .main-menu .sub-level .current > a:active {
    padding-top: 3px;
  }
  .main-menu .item-home {
    background-color: initial;
    font-size: 0;
    margin-top: 0;
    transition: all 0.31s ease-in-out, background 0.31s ease-in-out;
  }
  .main-menu .item-home a,
  .main-menu .item-home a:focus,
  .main-menu .item-home a:hover,
  .main-menu .item-home a:active {
    background-color: transparent;
  }
  .main-menu .item-home a {
    background-image: url(/media/templates/site/gsb/assets/logo-gsb.png);
    background-position: top;
    background-size: 100%;
    color: transparent;
    height: var(--logo-height);
    width: var(--logo-width);
  }
  .main-menu .item-home a:focus, .main-menu .item-home a:hover, .main-menu .item-home a:active {
    background-image: url(/media/templates/site/gsb/assets/logo-gsb-hover.png);
  }
}
@media (min-width: 500px) and (max-width: 992.98px) {
  .main-menu .item-home {
    margin-left: var(--rand-dist);
  }
}
.menu--open .centered-layout {
  background-color: var(--clr-green);
  padding-bottom: var(--double-dist);
}
.menu--open.scroll .centered-layout {
  padding-bottom: var(--double-dist);
  padding-top: var(--rand-dist);
}
.menu--open .user-menu .centered-layout {
  padding-bottom: 0;
}
.menu--open .main-menu li {
  display: list-item;
}
.menu--open .main-menu li:not(:first-of-type) a {
  animation-name: smoothFalling;
  animation-duration: 0.31s;
  animation-fill-mode: forwards;
}
.menu--open .buttons {
  position: absolute;
  right: var(--rand-dist);
  padding-bottom: calc(0.5 * var(--rand-dist));
  padding-left: var(--rand-dist);
  background-color: var(--clr-green);
  z-index: 10000;
}
.menu--open #btn_menu:focus .slice, .menu--open #btn_menu:hover .slice, .menu--open #btn_menu:active .slice {
  background-color: var(--clr-black);
}
.menu--open #btn_menu .slice:nth-child(1) {
  transform: translateY(12px) rotate(-45deg);
}
.menu--open #btn_menu .slice:nth-child(2) {
  opacity: 0;
}
.menu--open #btn_menu .slice:nth-child(3) {
  transform: translateY(-10px) rotate(45deg);
}

@keyframes smoothFalling {
  from {
    line-height: 0;
  }
  to {
    line-height: 2;
  }
}
@media (min-width: 993px) {
  .main-menu .top-level {
    display: flex;
    align-items: flex-end;
    gap: 15px;
  }
}
@media (min-width: 993px) and (min-width: 1003px) {
  .main-menu .top-level {
    gap: var(--dist);
  }
}
@media (min-width: 993px) {
  .main-menu li {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding: 0;
  }
  .main-menu a {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    font-size: 0.8em;
    font-size: calc(0.8 * var(--page-font-size));
    line-height: 1;
    padding: 0.9rem 15px 0.5rem;
  }
}
@media (min-width: 993px) and (min-width: 1003px) {
  .main-menu a {
    padding-inline: var(--dist);
  }
}
@media (min-width: 993px) {
  .main-menu .parent > a:focus,
  .main-menu .parent > a:hover,
  .main-menu .parent > a:active, .main-menu .parent.main-menu-open > a {
    background-color: var(--clr-orange);
    color: var(--clr-black);
  }
  .main-menu .parent.main-menu-open > a {
    background-color: var(--clr-orange);
    color: white;
  }
  .main-menu .parent.active.main-menu-open > a {
    background-color: var(--clr-black);
    color: white;
  }
  .main-menu .parent.active.main-menu-open > a:hover {
    background-color: var(--clr-orange);
    color: var(--clr-black);
  }
  .main-menu .top-level > .current > a,
  .main-menu .top-level > .current > a:hover,
  .main-menu .top-level > .current > a:focus,
  .main-menu .top-level > .current > a:active,
  .main-menu .top-level > .current.active.parent > a,
  .main-menu .top-level > .current.active.parent > a:hover,
  .main-menu .top-level > .current.active.parent > a:focus,
  .main-menu .top-level > .current.active.parent > a:active,
  .main-menu .top-level > .active > a {
    background-color: var(--clr-black);
    color: white;
    padding-top: 1.5rem;
  }
  .main-menu .sub-level {
    display: none;
    grid-template-columns: max-content max-content;
    position: absolute;
    width: max-content;
    background-color: white;
    border-bottom: 1px solid var(--clr-orange);
    border-top: 9px solid var(--clr-orange);
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    padding: 0;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2), -2px 2px 3px rgba(0, 0, 0, 0.2);
  }
  .main-menu .sub-level a {
    line-height: 3;
    padding: 0 var(--dist);
  }
  .main-menu .sub-level .current > a,
  .main-menu .sub-level .active > a {
    padding-top: 0;
  }
  .main-menu .active .sub-level,
  .main-menu .active .sub-level a {
    border-color: var(--clr-black);
  }
  .main-menu .item-unsere-schule .sub-level li:nth-child(2) a,
  .main-menu .menu-termine.big-screen a {
    border-top: none;
  }
  .main-menu .nav-item.deeper {
    position: relative;
  }
  .main-menu .nav-item.deeper:hover > .sub-level,
  .main-menu .nav-item.deeper.main-menu-open > .sub-level {
    display: block;
  }
  .main-menu .nav-item.deeper.item-unsere-schule:hover > .sub-level,
  .main-menu .nav-item.deeper.item-unsere-schule.main-menu-open > .sub-level {
    display: grid;
  }
  .main-menu-open-submenu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 12px;
    padding: 0;
    background-color: var(--clr-orange);
    border: none;
    border-radius: 0;
    opacity: 0;
    pointer-events: none;
  }
  .main-menu-open-submenu-button:focus {
    opacity: 1;
    pointer-events: auto;
    outline: none;
  }
  .main-menu-open-submenu-button .icon-caret-right {
    height: 23px;
    transform: rotate(90deg);
    transition: transform 0.2s ease;
  }
  .main-menu-open .main-menu-open-submenu-button {
    background-color: white;
  }
  .main-menu-open .main-menu-open-submenu-button .icon-caret-right {
    transform: rotate(-90deg);
  }
  .main-menu-open-submenu-button-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .current.active a + button #chevron-down #bg {
    fill: var(--clr-green);
  }
  .current.active a + button #chevron-down #icon {
    fill: white;
  }
  .scroll .main-menu .item-home {
    background-color: initial;
  }
  .main-menu .item-home a {
    background-image: none;
    background-position: center top;
    background-size: auto calc(2.4 * var(--page-font-size));
    transition: all var(--transition-dur-time);
  }
  .scroll .main-menu .item-home a {
    background-color: initial;
    background-image: url(/media/templates/site/gsb/assets/logo-gsb2.png);
    color: transparent;
    min-height: 53px;
    padding-top: 0 !important;
  }
  .scroll .main-menu .item-home a:hover, .scroll .main-menu .item-home a:focus, .scroll .main-menu .item-home a:active {
    transform: rotate(359deg) scale(0.8, 0.8);
  }
}
.sub-level {
  width: 100%;
  margin-top: -1px;
}

.news {
  background: linear-gradient(rgba(162, 198, 20, 0.1), rgba(162, 198, 20, 0.1)) padding-box, linear-gradient(var(--clr-black), var(--clr-black)) border-box;
  border-radius: 0;
  overflow: hidden;
}
.news .custom {
  padding-bottom: var(--double-dist);
}
.news .header h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--clr-orange);
  border-radius: 50%;
  color: white;
  font-family: "Poppins", "Poppins Fallback", sans-serif;
  font-weight: 600;
  font-size: var(--header-font-size);
  margin-bottom: 0;
  text-transform: uppercase;
  transition: all 0.5s ease-in-out 0.02s;
  margin-left: -2px;
  margin-top: calc(-2.5 * var(--rand-dist));
  margin-bottom: -1em;
  height: var(--head-circle--size);
  width: var(--head-circle--size);
  /* KEEP
  .centered-layout:hover .custom & { background-color: var(--clr-green); }
  */
}
@media (min-width: 1174px) {
  .news .header h2 {
    margin-left: -12px;
  }
}
.news .pin {
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  background-color: var(--clr-green);
  height: 16px;
  width: 16px;
  left: -6px;
  top: -10px;
  box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.75);
  z-index: 1;
}
@media (min-width: 280px) {
  .news .pin {
    height: 20px;
    width: 20px;
    left: -8px;
    top: -11px;
  }
}
@media (min-width: 480px) {
  .news .pin {
    left: -10px;
  }
}
.news .gridTemplate {
  --grid-layout-gap: var(--dist);
  --grid-column-count: 4;
  --grid-item--min-width: 172px;
  --gap-count: calc(var(--grid-column-count) - 1);
  --total-gap-width: calc(var(--gap-count) * var(--grid-layout-gap));
  --grid-item--max-width: calc(
    (100% - var(--total-gap-width)) / var(--grid-column-count)
  );
  display: grid;
  gap: max(var(--dist), 16px);
  grid-template-columns: repeat(auto-fit, minmax(max(var(--grid-item--min-width), var(--grid-item--max-width)), 1fr));
  grid-auto-rows: auto;
  justify-items: center;
  position: relative;
  padding: 0 var(--rand-dist);
  z-index: 2;
}
.news .gridTemplate > * {
  background-color: white;
  padding: var(--rand-dist);
  padding: var(--half-dist);
  position: relative;
  width: 100%;
  transition: all 0.3s;
}
@media (min-width: 600px) and (max-width: 1099.98px) {
  .news .gridTemplate {
    padding: min(12px, var(--rand-dist));
  }
}
.news .gridTemplate > *,
.news .gridTemplate h3 {
  hyphens: manual !important;
  margin-top: 0;
}
.news .gridTemplate > div:has(p.readmore):hover {
  opacity: 0.8;
}
.news .gridTemplate .dummy {
  display: none;
}
.news .gridTemplate .no1 {
  background-color: rgba(162, 198, 20, 0.3);
}
.news .gridTemplate .no2 {
  background-color: rgba(162, 198, 20, 0.5);
}
.news .gridTemplate .no3 {
  background-color: rgba(162, 198, 20, 0.7);
}
@media (min-width: 328px) {
  .news .gridTemplate .dummy.d1.no1 {
    display: block;
  }
}
@media (min-width: 630px) {
  .news .gridTemplate .dummy.d1.no2 {
    display: block;
  }
}
@media (min-width: 900px) {
  .news .gridTemplate .dummy.d1.no3 {
    display: block;
  }
}
@media (min-width: 670px) {
  .news .gridTemplate .dummy.d2.no1 {
    display: block;
  }
}
@media (min-width: 900px) {
  .news .gridTemplate .dummy.d2.no2 {
    display: block;
  }
}
@media (min-width: 382px) and (max-width: 568.98px) {
  .news .gridTemplate .dummy.d3.no1 {
    display: block;
  }
}
@media (min-width: 993px) {
  .news .gridTemplate .dummy.d3.no1 {
    display: block;
  }
}
@media (min-width: 572px) and (max-width: 767.98px) {
  .news .gridTemplate .dummy.d4.no1,
  .news .gridTemplate .dummy.d4.no2 {
    display: block;
  }
}
@media (min-width: 340px) {
  .news .gridTemplate .dummy.d5.no1 {
    display: block;
  }
}
@media (min-width: 680px) {
  .news .gridTemplate .dummy.d5.no2,
  .news .gridTemplate .dummy.d5.no3 {
    display: block;
  }
}
@media (min-width: 768px) {
  .news .gridTemplate .dummy.d6.no1,
  .news .gridTemplate .dummy.d6.no2 {
    display: block;
  }
}
@media (min-width: 382px) {
  .news .gridTemplate .dummy.d7.no1 {
    display: block;
  }
}
@media (min-width: 572px) and (max-width: 767.98px) {
  .news .gridTemplate .dummy.d7.no2 {
    display: block;
  }
}
@media (min-width: 569px) and (max-width: 763.98px) {
  .news .gridTemplate .dummy.d8.no1 {
    display: block;
  }
}
.news .img_wrapper {
  position: relative;
}
.news .img_wrapper::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.news .img_wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news .text {
  display: flex;
  flex-direction: column;
  padding-top: var(--half-dist);
}
.news .text h3 {
  border-top: 1px solid lightgray;
  border-radius: 0;
  font-family: "Poppins", "Poppins Fallback", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  padding-top: 1em;
  text-align: center;
  width: 100%;
}
.news .text p:first-of-type {
  font-size: 0.9em;
  hyphens: manual;
  margin-bottom: 1em;
  margin-top: 0.3em;
  text-align: center;
}
.news .text p:first-of-type:not(:only-of-type) {
  margin-bottom: 3em;
}
.news .text p ~ p {
  line-height: 1;
}
.news .text p ~ p a {
  border-radius: 0;
  padding: 0;
  position: relative;
  text-align: right;
  transition: all 0.4s;
  width: 100%;
  font-family: "Poppins", "Poppins Fallback", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
.news .text p ~ p a, .news .text p ~ p a:link, .news .text p ~ p a:visited {
  background-color: white;
  border-color: transparent;
  color: var(--clr-orange);
}
.news .text p ~ p a:hover, .news .text p ~ p a:focus, .news .text p ~ p a:active {
  background-color: white;
  color: var(--clr-green);
}
.news .text p ~ p a {
  /*
  @media (min-width: 680px) and (max-width: 745.98px) { font-size: 0.7em; }
  */
}
.news .text p ~ p a::before {
  content: "";
  position: absolute;
  height: 2px;
  bottom: -2px;
  width: 100%;
  left: 0;
  transition: all 0.3s ease-in-out 0s;
  background-color: var(--clr-green);
  transform: scaleX(0);
}
.news .text p ~ p a:focus::before, .news .text p ~ p a:hover::before, .news .text p ~ p a:active::before {
  transform: scaleX(1);
}
.news .ellipsi {
  margin-bottom: 0;
}
.news .ellipsi::after {
  content: "";
}

.btn_search,
#btn_search_open {
  color: white;
  height: 40px;
  width: 40px;
  transition: transform 0.65s ease-in-out, color 0.65s ease-in-out;
  z-index: 1300;
}
.btn_search svg,
#btn_search_open svg {
  stroke: currentColor;
  fill: none;
}
.btn_search:focus, .btn_search:hover, .btn_search:active,
#btn_search_open:focus,
#btn_search_open:hover,
#btn_search_open:active {
  color: var(--clr-orange);
  transform: rotate(359deg);
}

.search--open .btn_search,
.search--open #btn_search_open {
  visibility: hidden;
}

#searchbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  background-color: rgba(204, 204, 204, 0.8);
  border-bottom: 1px solid var(--clr-black);
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: hidden;
  overflow-x: hidden;
  transform: translateY(-50%);
  z-index: 1200;
}
#searchbox .centered-layout {
  border-radius: 0;
  padding: 0;
  text-align: right;
}
#searchbox .search {
  background-color: white;
  border-radius: 0;
  padding: var(--triple-dist) var(--rand-dist) var(--double-dist);
  width: 100%;
}
@media (min-width: 500px) and (max-width: 992.98px) {
  #searchbox .search {
    padding-left: calc(2 * var(--rand-dist));
    padding-right: calc(2 * var(--rand-dist));
  }
}
#searchbox form {
  text-align: center;
}
#searchbox label.element-invisible {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
  clip-path: inset(0px 0px 99.9% 99.9%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
  top: 50%;
}

.search--open #searchbox {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  height: auto;
  bottom: 0;
  top: var(--header-height);
}

.search input {
  background-color: transparent;
  color: var(--clr-black);
  font-family: "Didact Gothic", "Didact Gothic Fallback", sans-serif;
  font-size: inherit;
  border: 0;
  border-radius: 0;
  border-bottom: 4px solid var(--clr-black);
  height: 50px;
  max-width: 500px;
  width: 100%;
  outline: none;
  padding: 0 var(--dist);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#btn_search_close {
  background-color: white;
  border-radius: 0;
  padding-right: var(--rand-dist);
}
#btn_search_close div {
  transition: transform 1s;
}
#btn_search_close .slice {
  background-color: var(--clr-black);
}
@media (max-width: 499.98px) {
  #btn_search_close div {
    margin-right: -4px;
  }
}
#btn_search_close .slice:nth-child(1) {
  top: 6px;
  transform: translateY(12px) rotate(-45deg);
}
#btn_search_close .slice:nth-child(2) {
  top: 28px;
  transform: translateY(-10px) rotate(45deg);
}
#btn_search_close:focus div, #btn_search_close:hover div, #btn_search_close:active div {
  transform: rotate(359deg);
}
#btn_search_close:focus .slice, #btn_search_close:hover .slice, #btn_search_close:active .slice {
  background-color: var(--clr-black);
}

@media (max-width: 992.98px) {
  #searchbox .centered-layout {
    border-bottom: 1px solid var(--clr-black);
  }
}
@media (min-width: 500px) and (max-width: 992.98px) {
  #btn_search_close {
    padding-right: calc(2 * var(--rand-dist));
  }
}
@media (min-width: 993px) {
  .search--open #searchbox {
    top: var(--header-height);
  }
  #searchbox .centered-layout {
    background-color: white;
    border-bottom: 1px solid var(--clr-black);
  }
  #searchbox form {
    width: 100%;
  }
  #btn_search_close .slice {
    background-color: var(--clr-black);
  }
  #btn_search_close:hover .slice, #btn_search_close:focus .slice, #btn_search_close:active .slice {
    background-color: var(--clr-green);
  }
}
@media (min-width: 1040px) {
  #searchbox .centered-layout {
    background-color: transparent;
    border-bottom: none;
  }
}
mark,
.awesomplete mark {
  background: rgba(255, 165, 0, 0.3) !important;
}

@keyframes animateFromRight {
  from {
    right: -300px;
    opacity: 0;
  }
  to {
    right: 0;
    opacity: 1;
  }
}
@keyframes animateFromLeft {
  from {
    left: -300px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}
.slider {
  background-color: white;
  position: relative;
}
.slider img {
  position: relative;
  border-radius: 2px;
  width: 100%;
}
.slider img.animateFromRight {
  animation: animateFromRight 0.4s;
}
.slider img.animateFromLeft {
  animation: animateFromLeft 0.4s;
}
.slider .backfor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.slider .backfor::after {
  content: "";
  display: table;
  clear: both;
}
.slider .backfor div {
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  line-height: 1;
  padding: var(--triple-dist) var(--dist);
  transition: all 0.3s;
}
.slider .backfor div i {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 1;
  transition: transform 0.3s;
}
.slider .backfor div i::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: currentColor;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}
.slider .backfor .back {
  float: left;
}
.slider .backfor .back i::before {
  mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20fill='currentColor'%20d='M199.7%20299.8C189.4%20312.4%20190.2%20330.9%20201.9%20342.6L329.9%20470.6C339.1%20479.8%20352.8%20482.5%20364.8%20477.5C376.8%20472.5%20384.6%20460.9%20384.6%20447.9L384.6%20191.9C384.6%20179%20376.8%20167.3%20364.8%20162.3C352.8%20157.3%20339.1%20160.1%20329.9%20169.2L201.9%20297.2L199.7%20299.6z'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20fill='currentColor'%20d='M199.7%20299.8C189.4%20312.4%20190.2%20330.9%20201.9%20342.6L329.9%20470.6C339.1%20479.8%20352.8%20482.5%20364.8%20477.5C376.8%20472.5%20384.6%20460.9%20384.6%20447.9L384.6%20191.9C384.6%20179%20376.8%20167.3%20364.8%20162.3C352.8%20157.3%20339.1%20160.1%20329.9%20169.2L201.9%20297.2L199.7%20299.6z'/%3e%3c/svg%3e");
}
.slider .backfor .back:hover i {
  color: var(--clr-green);
  transform: translateX(-4px);
}
.slider .backfor .for {
  float: right;
}
.slider .backfor .for i::before {
  mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20fill='currentColor'%20d='M441.3%20299.8C451.5%20312.4%20450.8%20330.9%20439.1%20342.6L311.1%20470.6C301.9%20479.8%20288.2%20482.5%20276.2%20477.5C264.2%20472.5%20256.5%20460.9%20256.5%20448L256.5%20192C256.5%20179.1%20264.3%20167.4%20276.3%20162.4C288.3%20157.4%20302%20160.2%20311.2%20169.3L439.2%20297.3L441.4%20299.7z'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20fill='currentColor'%20d='M441.3%20299.8C451.5%20312.4%20450.8%20330.9%20439.1%20342.6L311.1%20470.6C301.9%20479.8%20288.2%20482.5%20276.2%20477.5C264.2%20472.5%20256.5%20460.9%20256.5%20448L256.5%20192C256.5%20179.1%20264.3%20167.4%20276.3%20162.4C288.3%20157.4%20302%20160.2%20311.2%20169.3L439.2%20297.3L441.4%20299.7z'/%3e%3c/svg%3e");
}
.slider .backfor .for:hover i {
  color: var(--clr-green);
  transform: translateX(4px);
}
.slider .dots {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0%);
  color: white;
  margin-top: var(--dist);
  margin-bottom: var(--dist);
  padding: 0.01em var(--dist);
  text-align: center;
  width: 100%;
}
@media (max-width: 479.98px) {
  .slider .dots {
    display: none;
  }
}
.slider .dots .dot {
  background-color: transparent;
  border: 2px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  height: clamp(11px, 4vw, 19px);
  width: clamp(11px, 4vw, 19px);
  margin: 0 6px;
}
.slider .dots .dot:focus, .slider .dots .dot:hover, .slider .dots .dot:active {
  background-color: rgba(255, 255, 255, 0.7);
}
.slider .dots .dot.activeImage {
  background-color: white;
}
.slider .dots .dot.activeImage:focus, .slider .dots .dot.activeImage:hover, .slider .dots .dot.activeImage:active {
  background-color: white;
  cursor: auto;
}

dialog {
  border-color: white;
  overflow: hidden;
  padding: 0;
}
dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.8);
}
dialog .button.close {
  position: absolute;
  top: var(--rand-dist);
  right: var(--rand-dist);
  z-index: 1;
  width: 40px;
  height: 40px;
  color: var(--clr-orange);
  border-radius: 50%;
}
dialog .button.close:focus, dialog .button.close:hover, dialog .button.close:active {
  color: var(--clr-green);
  background-color: white;
}
dialog span.logo {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAAnCAYAAABAOmveAAABhGlDQ1BJQ0MgcHJvZmlsZQAAKJF9kT1Iw0AcxV8/pEUqDnaQ4pCh6mJBVMRRq1CECqFWaNXB5NIvaNKQpLg4Cq4FBz8Wqw4uzro6uAqC4AeIq4uToouU+L+k0CLGg+N+vLv3uHsH+JtVpprBcUDVLCOTSgq5/KoQekUQMYQxipDETH1OFNPwHF/38PH1LsGzvM/9OfqUgskAn0A8y3TDIt4gnt60dM77xFFWlhTic+Ixgy5I/Mh12eU3ziWH/TwzamQz88RRYqHUxXIXs7KhEk8RxxVVo3x/zmWF8xZntVpn7XvyF0YK2soy12kOIYVFLEGEABl1VFCFhQStGikmMrSf9PDHHL9ILplcFTByLKAGFZLjB/+D392axckJNymSBHpebPtjGAjtAq2GbX8f23brBAg8A1dax19rAjOfpDc6WvwI6N8GLq47mrwHXO4Ag0+6ZEiOFKDpLxaB9zP6pjwwcAv0rrm9tfdx+gBkqav0DXBwCIyUKHvd493h7t7+PdPu7wdD4nKUNwnkYgAAAAZiS0dEAAAAAAAA+UO7fwAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAAd0SU1FB+cFDxMoMUX1rQUAAAluSURBVFjDzZl7cNTVFcc/v9++skk2u8kmWdhNDEl4BBos7wUDvvqwtkZHbC3aGW1po1PRAaqOVZF2Wh2HFooztuM4TuuUmVp1bEddIJXxSYQQMJBIHJqHkMTdTZa8d7Pv3d+vf+S3YdlsIJCAPTO/P/bcu/ec773nnHvOuQIzSFaLbQWwEvgmsBAoAQoAvTIlCPQBXcApoBk45va4PpspHYQZALEUuB/4IWAB1Je4RAzwAG8Bf3d7XCe+FkBWi60aeAJYDahmaIPjwBFgh9vjclwVQFaLzQ48D9zElaWPgCfdHlfDFQFktdiygKeBRwEtV4ciwC7gObfH5Z8xQFaLrQR4XTGvr4OOABvcHlfXtAFZLbaVwL+BIr5ecgLr3R7XscsGZLXYqoB3gTz+P2gQuN3tcR26ZEBWi20J8D5gTvCkOMwqkSguk8nQy0gSDPaLfNkiEI0ICMJVATUAfNvtcTVNGZDVYrMAh4EyAJ0ebr49woqqUcyFETL0EqI4NjcaEfCPqmltyWTfm3p6u8SrAeo0cJ3b4/JcFJDVYhOBWuC7AHMXS9xTM0zRnNBFpQT8Kj7eb+LtPbqrcVoHgFvdHpeUzJxwIRqycx4BHgZYtDxOzaMDFMyKTEmCRitTvjBIbqGK5gbNlQZVDgz6/L6GSQFZLbYy4E1Al2mQeeipQXLzo+PjslSCKC8BYfLoKQhQXBpCFrS0t6inpbEsy1iLrBhNRnxeX7opaw3ZOW/4/L6hBCPV4LcDBoA77wulnIzAnPwd3HDtW5j1z4M8F+T096sows0/GCG3UL68fEwQsNpm84edO9hfu493He9Q82BNuqkGReeJPmS12CqB44BGnyWz/cV+8pJOx6j7NddV/haVagzEVz3HqW/ZiC7rFCp1NH3uUpvL6y/pJ0/cYnHWrF2NfbWdvLw8VCoVer2e8vK5LFgwH5PJND43HA7z3LPP8ddX/pa6TBRY5va4WkjJjB8DNAAl8yVyzQklZbI1m1lZ8eQ4GICiWUuY5/0VzqGtwFBahSsWB5HiesQUT5XiElsf28LdP76b4uJiRFFEuIjD6XQ6Nm/ezMFPDtLe1nGe6yq6/3Tch6wWWwHwYqJuWbImSuWyIFDEbMOfWFmxFZ02a4JZzDJfS4FhA6FQCaHoKJLsRBDk8YMXBZkjn2QRDgrn/W/n7p3UPFBDXl7elMAkKDMzE7PZzF7HvtShawzZOa/6/L5A4oRuTc4GCswV2Iy/4BrL9eQZSy9o63mmEuymLUQiNXj9Hga9HYQiQ0QkF+5gPUZTI97Bc75oX2PnrrvWo1JdXsWx7vp1FBQW0N/XjyyP+2iegmFPAtCG5D8Vme9iyfz7L0mQVptFvraM/NyycZ53tpfd2juA9rGQdH0VTz39FDqd7rIjn8lk4r0D/2HTpk3UHzqSPLQB2CNaLbYcwJ480t7eMSMXRTgc5szpcyE+IyODRYsWTXtdrU5Hb09vKttutdhyRKACMCaPnGo9gtfXN23BHe0dhILB8d+H6g4zMDAw7XV7etycOd2ZyjYCFaLSzDjPoFV6Jz2DDdMSGo9HcOx74zxfCQQC1B2sm37O896BdGwVsFBUUojzqHCWRHvPE4wG+i9baKf7U/r9r00IIrt27sLj8Vz2um1tbfz5xb9Mmg6JgHUCd2EMxFM0tu4iFotcstCB4S5OubZQXBaFlGThq24nL+x+gXA4fMnrjoyM8OzvnyUYCE5a9agM2Tk/U/xozFSicNs9Poy5MSLSp5zth1nmVahVU2sjnB1s41jbA8jiUUQRPnRkTkhSm5s+JxgOsXz5silHvL6+PrY/s539e2svNK1bZcjOuR+Yl+CULJC45U4vKvXYBRmW6ujubUYjlGPItCCK6e8Pf3CI1q53+MJ5NwhfKFFNwtmdicc1sUZq/KyRpuZmyspKKSwsRBTT11GhUIj6+no2/XITn9YduhjuM4LVYnMAtyU4920OUPWt4TSprwpBvpFr8jdSbruFTP25qrypdQ/OoZ0gtkysxNoy2fGoadLaWK1Ws6ZqNdue2UZlZeW5BoLTycGDB3ntH/+k6XhT8iV6IdorAuN5uTZDJtccJRwSkaTUtCCOLH7Al557icXP9ytvoBtZaEkrobg0yNpbo5O3TWMx6g/X4fN5z+N7PB6eeHwrJxpPTBUMwKhaacOONcFCAi9sM6LNyGHFDXFKyqPMLo6RY4zgHdbQ2aHD3ZlH5sZmFlfK6DJ09Pb24njdRd9oAUUlUebMCxCPCQz26XB2aTh+WEPnf8UJCapaA99ZH6FicZi8gjAqYx3DfjMZGiOR2Chq01F+99IAg/2ZtH2h48C/tERCF835egWrxbYF2H2hWaIIkoyMzAjgFwQhpM/US2q1Sh3wB7Jisbgp0XxUqUGWmHjCSbTqphh33DtMvuXcSYdDQhQy+9Vqw1mV2u+Nx0ZlUZQ1sZiQG48JBUMD6twP9hrFulrNhVTdqgbaUphBoF95GWgCWiSJDsAFhICYLMvxgD8gKwWiWgFjA5bHY9yotImtaQpIllbF+MmD/ag18rBvWHU04BfeCwXFj6MRup2dhJ1nAqE39ngVG7UIP98U1FqKYhnFpTHtvIXBkrpazTxgFbBGCWa5SXVdq2C12EqVPvL7SuPhONDp9rhiAI4GQUxSvEDJbA3KIlFgGOgBAoJA7LZVsmy12PTAdcBDwO2JuksQkB7+zchJizW8u/WktnbHNv/ZvUcFUZZRKxtSpsjISVp/RHGL04w9xcSr7bKklD1mYAFQBawDHplglI4GoQBYBlyrpEXzgDnA7Iu8MvQALcBR4EOgrtouR60W2zql1jIAj7k94tuOBidKW/l7iiJLAdMUe3Inla8J+KzaLn8+oQR3NAjFwEagGvgGoGN6b0cS0K0AefUeuzWWnY/ulX1uP/AjpcJcNAPPMDGlm/oR8Mdqu9yYALQUaGQGHsDSUJdiekPAy8DiKyBDAlZU2+UTQpKpHQNWpF6nymS3suO9imKJpw21Yu9WYC5QnC4QKDsZ5dzTZOpYm2Ku3cqO+xTZGsVU8xl73lwElConm7z5jdV2eUVqk+RlJadrBk4o30mgtdoue6eyTYr/rQVuAb6vAEzISZbVB+wH9gIfVdvlKRdJjgbBqPjcSuVbBryUthXsaBByq+3y0EzYgKNByALWA9uA+UmBYyfw6gzKyai2y6Epvw/NgEAD8BvFbB6vtst9V1Le/wBSWFZzlQ+qpwAAAABJRU5ErkJggg==);
  position: absolute;
  bottom: 0;
  right: 0;
  height: 39px;
  width: 52px;
  margin: 0 var(--rand-dist) var(--rand-dist) 0;
}

.slider.impressionen.startseite {
  padding: var(--rand-dist);
}
@media (min-width: 320px) {
  .slider.impressionen.startseite {
    padding-bottom: 0;
  }
}
.slider.impressionen.startseite .backfor div {
  color: rgba(255, 255, 255, 0.7);
  opacity: 0.75;
  padding: var(--triple-dist);
  margin-left: var(--dist);
  padding-left: var(--dist);
}
.slider.impressionen.startseite .backfor div:focus, .slider.impressionen.startseite .backfor div:hover, .slider.impressionen.startseite .backfor div:active {
  color: var(--clr-green);
}
.slider.impressionen.startseite .backfor div i {
  display: inline-block;
  width: clamp(30px, 7vw, 38px);
  height: clamp(30px, 7vw, 38px);
  transition: transform 0.3s;
}
.slider.impressionen.startseite .backfor div i::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20d='M305%20151.1L320%20171.8L335%20151.1C360%20116.5%20400.2%2096%20442.9%2096C516.4%2096%20576%20155.6%20576%20229.1L576%20231.7C576%20343.9%20436.1%20474.2%20363.1%20529.9C350.7%20539.3%20335.5%20544%20320%20544C304.5%20544%20289.2%20539.4%20276.9%20529.9C203.9%20474.2%2064%20343.9%2064%20231.7L64%20229.1C64%20155.6%20123.6%2096%20197.1%2096C239.8%2096%20280%20116.5%20305%20151.1z'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20d='M305%20151.1L320%20171.8L335%20151.1C360%20116.5%20400.2%2096%20442.9%2096C516.4%2096%20576%20155.6%20576%20229.1L576%20231.7C576%20343.9%20436.1%20474.2%20363.1%20529.9C350.7%20539.3%20335.5%20544%20320%20544C304.5%20544%20289.2%20539.4%20276.9%20529.9C203.9%20474.2%2064%20343.9%2064%20231.7L64%20229.1C64%20155.6%20123.6%2096%20197.1%2096C239.8%2096%20280%20116.5%20305%20151.1z'/%3e%3c/svg%3e");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}
.slider.impressionen.startseite .backfor .back i {
  transform: rotate(90deg);
}
.slider.impressionen.startseite .backfor .back:hover i {
  transform: rotate(90deg) translateY(4px);
}
.slider.impressionen.startseite .backfor .for i {
  transform: rotate(-90deg);
}
.slider.impressionen.startseite .backfor .for:hover i {
  transform: rotate(-90deg) translateY(4px);
}
.slider.impressionen.startseite .dots {
  position: static;
  color: rgba(0, 0, 0, 0.2);
  margin-top: 0;
  margin-bottom: 0;
  padding: 6px 0;
  transform: none;
}
@media (min-width: 320px) {
  .slider.impressionen.startseite .dots {
    display: block !important;
  }
}
.slider.impressionen.startseite .dots .dot {
  display: inline-block;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20d='M305%20151.1L320%20171.8L335%20151.1C360%20116.5%20400.2%2096%20442.9%2096C516.4%2096%20576%20155.6%20576%20229.1L576%20231.7C576%20343.9%20436.1%20474.2%20363.1%20529.9C350.7%20539.3%20335.5%20544%20320%20544C304.5%20544%20289.2%20539.4%20276.9%20529.9C203.9%20474.2%2064%20343.9%2064%20231.7L64%20229.1C64%20155.6%20123.6%2096%20197.1%2096C239.8%2096%20280%20116.5%20305%20151.1z'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20640'%3e%3cpath%20d='M305%20151.1L320%20171.8L335%20151.1C360%20116.5%20400.2%2096%20442.9%2096C516.4%2096%20576%20155.6%20576%20229.1L576%20231.7C576%20343.9%20436.1%20474.2%20363.1%20529.9C350.7%20539.3%20335.5%20544%20320%20544C304.5%20544%20289.2%20539.4%20276.9%20529.9C203.9%20474.2%2064%20343.9%2064%20231.7L64%20229.1C64%20155.6%20123.6%2096%20197.1%2096C239.8%2096%20280%20116.5%20305%20151.1z'/%3e%3c/svg%3e");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  border: none;
  height: 40px;
  width: 34px;
  margin: 0;
}
@media (min-width: 370px) {
  .slider.impressionen.startseite .dots .dot {
    width: 40px;
  }
}
@media (min-width: 420px) {
  .slider.impressionen.startseite .dots .dot {
    margin: 0 3px;
  }
}
.slider.impressionen.startseite .dots .dot:focus, .slider.impressionen.startseite .dots .dot:hover, .slider.impressionen.startseite .dots .dot:active {
  color: var(--clr-green);
}
.slider.impressionen.startseite .dots .dot.activeImage {
  color: var(--clr-orange);
}
.slider.impressionen.startseite .dots .dot.activeImage:focus, .slider.impressionen.startseite .dots .dot.activeImage:hover, .slider.impressionen.startseite .dots .dot.activeImage:active {
  color: var(--clr-orange);
  cursor: auto;
}

dialog.slider .dots .dot:focus, dialog.slider .dots .dot:hover, dialog.slider .dots .dot:active {
  background-color: white;
  border-color: var(--clr-green);
}
dialog.slider .dots .dot.activeImage {
  background-color: var(--clr-green);
}
dialog.slider .dots .dot.activeImage:focus, dialog.slider .dots .dot.activeImage:hover, dialog.slider .dots .dot.activeImage:active {
  background-color: var(--clr-green);
}

.infobox {
  overflow: hidden;
}
.infobox a {
  display: block;
  background-color: white;
  border-radius: 0;
  padding-bottom: var(--double-dist);
  transition: all 0.9s ease-in-out 0.2s;
}
.infobox a:link, .infobox a:visited {
  color: var(--clr-black);
}
.infobox a:hover, .infobox a:focus, .infobox a:active {
  cursor: url(/media/templates/site/gsb/assets/cursor-termine.png) 50 0, pointer;
  color: var(--clr-green);
}
.infobox .info--wrapper {
  position: relative;
}
.infobox .info--text {
  position: absolute;
  top: calc(-2.5 * var(--rand-dist));
  right: calc(-1 * var(--rand-dist));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  width: 1.1em;
  height: 1.1em;
  background: linear-gradient(to bottom left, rgba(255, 165, 0, 0.8), var(--clr-orange));
  color: white;
  border-radius: 50%;
  font-family: "Poppins", "Poppins Fallback", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 57vw, 600px);
  transition: all 0.3s ease-in-out;
}
.infobox .info--text::before {
  content: "!";
  margin-top: -0.1em;
}
@media (min-width: 1180px) {
  .infobox .info--text {
    right: calc(100px + var(--dist));
  }
}
.infobox a .info--text::before {
  transition: transform 0.71s ease-in-out;
}
.infobox a:hover .info--text::before,
.infobox a:focus .info--text::before,
.infobox a:focus-within .info--text::before,
.infobox a:active .info--text::before {
  transform: rotate(52deg);
}
.infobox .data {
  z-index: 1;
  position: relative;
}
.infobox .data--wrapper {
  margin-inline: auto;
  max-width: max-content;
  overflow: hidden;
  padding: calc(3 * var(--header-font-size)) var(--rand-dist) var(--header-font-size);
}
.infobox table.mod_events_latest_table {
  margin: 0;
}
.infobox table.mod_events_latest_table td {
  font-size: clamp(16px, 8px + 2.5vw, 30px);
  line-height: 1.3;
  padding: 0.5em 0;
}
.infobox .mod_events_latest_date {
  font-size: 0.9em;
}
.infobox .mod_events_latest_content {
  font-family: "Poppins", "Poppins Fallback", sans-serif;
  font-weight: 600;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  text-transform: uppercase;
}
.infobox .mod_events_latest_content::before {
  font-family: "Didact Gothic", "Didact Gothic Fallback", sans-serif;
}
@media (max-width: 400.98px) {
  .infobox .mod_events_latest_content::before {
    content: "\a";
    white-space: pre;
  }
}
@media (min-width: 401px) {
  .infobox .mod_events_latest_content::before {
    content: " | ";
  }
}
.infobox .eventstyle[style*=white] {
  border-color: rgba(162, 198, 20, 0.01) !important;
}
.infobox a .mod_events_latest_date {
  transition: all 0.3s ease-in-out;
}
.infobox a:hover .mod_events_latest_date,
.infobox a:focus .mod_events_latest_date,
.infobox a:active .mod_events_latest_date {
  color: var(--clr-black) !important;
}
.infobox a:hover .mod_events_latest_content,
.infobox a:hover .mod_events_latest_date,
.infobox a:focus .mod_events_latest_content,
.infobox a:focus .mod_events_latest_date,
.infobox a:active .mod_events_latest_content,
.infobox a:active .mod_events_latest_date {
  color: darkgreen;
}

/* @use "pages/home"; */
.kontakt h1 + p {
  padding-left: var(--dist);
  padding-right: var(--dist);
}

.itemid-398 .com-content-article__body h2 {
  border-bottom: 1px solid var(--clr-green);
  margin: 0;
  padding: 16px 0;
}

.category-desc {
  margin-bottom: var(--double-dist);
}
.category-desc.false .category-intro {
  display: none;
}
.category-desc p {
  margin-bottom: var(--double-dist);
}
.category-desc p + ul {
  margin-top: calc(-0.5 * var(--double-dist));
}

@media (min-width: 993px) {
  .blogSpecial.neuigkeiten .category-desc p {
    padding: 0 var(--double-dist);
  }
}
.counter {
  font-size: 0.9em;
  margin: 1.5em 0 var(--dist);
  text-align: right;
}

.blogSpecial.category-desc {
  text-align: center;
}
.blogSpecial .item-content h2 {
  font-size: 1.1em;
  margin-top: 0.4em;
  text-transform: uppercase;
}
.blogSpecial .item-content h2 + h3 {
  font-size: inherit;
  margin-top: 0.5rem;
}
.blogSpecial .item-content a {
  display: inline-block;
  /* margin-bottom: var(--half-dist); */
}
.blogSpecial .item-content .readmore a {
  line-height: 1.5;
  margin-bottom: 0;
}
.blogSpecial .com-content-article img {
  max-height: 400px;
}

.niederdeutsch .category-desc.false h2.h1 {
  font-family: "Poppins", "Poppins Fallback", sans-serif;
  font-weight: 700;
  font-size: 1em;
}

.schulportrait .com-content-article td,
.schulportrait .com-content-article th {
  border: none;
}
.schulportrait .com-content-article__body td {
  vertical-align: top;
}

.suchergebnis .search {
  background-color: white;
  padding: var(--double-dist) var(--dist);
}
.suchergebnis .search h1 {
  text-align: center;
}
.suchergebnis .search .com-finder__form .form-inline .input-group {
  display: flex;
  align-items: center;
  justify-content: center;
}
.suchergebnis .search > * {
  margin-inline: auto;
  max-width: var(--maxLetterWidth);
}
.suchergebnis .search .error {
  color: var(--clr-red);
  margin-top: var(--double-dist);
}
.suchergebnis .search {
  /* Gefundenes Suchwort highlighten
  .highlight { color: white; background-color: var(--clr-green); }
  */
}
.suchergebnis .search .btn-group.w3-left {
  width: calc(100% - 36px - var(--dist));
  max-width: 400px;
}
.suchergebnis .search .btn-group input {
  background-color: white;
  border: 2px solid var(--clr-green);
  color: var(--clr-black);
  font-size: 1rem;
  height: 36px;
  margin-bottom: var(--double-dist);
  padding: 0 var(--dist);
  width: 100%;
}
.suchergebnis .search .btn-group button {
  background-color: transparent;
  color: var(--clr-orange);
  border: 0;
  font-size: var(--btn-open-search-font);
  line-height: 36px;
  padding: 0 0 0 var(--dist);
}
.suchergebnis .search .btn-group button:focus, .suchergebnis .search .btn-group button:hover, .suchergebnis .search .btn-group button:active {
  background-color: white;
  border-color: var(--clr-green);
  color: var(--clr-green);
}
.suchergebnis .btn-toolbar {
  text-align: center;
}
.suchergebnis label.me-2 {
  display: none;
}
.suchergebnis .btn.btn-primary {
  color: var(--clr-orange);
}
.suchergebnis .tooltip-inner,
.suchergebnis .tooltip.fade {
  display: none !important;
}
.suchergebnis .com-finder__search {
  border: 0;
  padding: 0;
  text-align: center;
}

.com-finder__results-list {
  list-style-position: inside;
  list-style-type: decimal;
  margin-top: 2.5em;
}

.result__item > * + * {
  margin-top: 0;
}

.com-finder p.result__title {
  margin-top: 0.3em;
}

.result__item + .result__item {
  margin-top: 1em;
  padding-top: 1em;
  border-top: 1px solid var(--clr-green) !important;
}

.result__title-text {
  font-family: "Poppins", "Poppins Fallback", sans-serif;
  font-weight: 600;
  font-size: 1rem !important;
}

.result__title-link:hover .result__title-text, .result__title-link:focus .result__title-text {
  text-decoration: none !important;
}

.com-finder .pagination__wrapper {
  text-align: center;
}

.com-content-article__body .wissen h1 {
  text-align: center;
  padding-left: 0;
}
.com-content-article__body .wissen div {
  border: 1px solid var(--clr-green);
}
.com-content-article__body .wissen div > div {
  border: none;
}
.com-content-article__body .wissen ul.buchstaben {
  z-index: 1;
  top: var(--header-height);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  gap: min(1.4vw, 10px);
  text-align: center;
  background-color: white;
  padding: var(--double-dist) 0 var(--dist);
  border-bottom: var(--half-dist) solid var(--clr-green);
}
.com-content-article__body .wissen ul.buchstaben li {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1em;
  height: 35px;
  width: 38px;
  background-color: var(--clr-gray-trans);
  margin-bottom: 0 !important;
  border-radius: 50%;
}
.com-content-article__body .wissen ul.buchstaben li a {
  font-family: "Poppins", "Poppins Fallback", sans-serif;
  font-weight: 700;
}
@media (min-width: 320px) {
  .com-content-article__body .wissen ul.buchstaben {
    position: sticky;
  }
}
@media (min-width: 704px) {
  .com-content-article__body .wissen ul.buchstaben li {
    height: 40px;
    width: 40px;
  }
}
@media (min-width: 746px) {
  .com-content-article__body .wissen ul.buchstaben {
    padding: 1em;
  }
}
.com-content-article__body .wissen .jumppoint h2 {
  color: var(--clr-green);
  font-size: 2em;
  margin-top: 0;
}

.veranstaltungen .com-content-article__body > p {
  padding-left: var(--dist);
  padding-right: var(--dist);
}
.veranstaltungen .com-content-article__body > ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  padding-left: var(--triple-dist);
}