@charset "UTF-8";
/* VARIABLES */
:root {
  /* CONTENT */
  --width-content: 100vw;
  --max-width-content: calc(100vw - 30px);
  --header-height: 100px;
  --gap: 2rem;
  --logo-width: 180px;
  --padding-content: 2rem;
  --padding-top-second-article: 20rem;
  --transition: all 350ms ease-in-out;
  --font-body: "Raleway", sans-serif;
  --font-size: 1.8rem;
  --slider-gap: 5px;
  --arrow-size: 4rem;
  /* COLORS */
  --color-white: #FFFFFF;
  --color-black: #01040D;
  --color-red: #FF0000;
  --color-gray: #E0E0E0;
  --color-darkgray: #4F4F4F;
  --box-shadow: 0 1px 2px 0 rgba(49, 49, 49, 0.3), 0 1px 3px 1px rgba(10, 10, 10, 0.15);
  --primary-clr: var(--color-white);
  --secondary-clr: var(--color-red);
  --header-clr: var(--color-white);
  --text-clr: var(--color-black);
  --link-clr: var(--color-black);
  --hl-clr: var(--color-black);
  --bg-clr: var(--color-white);
  --footer-clr: var(--primary-clr);
  --select-bg-clr: var(--color-black);
  --select-clr: var(--color-white);
  --scrollbar-foreground: var(--secondary-clr);
  --scrollbar-background: var(--color-white);
}
@media (prefers-reduced-motion) {
  *, *:after, *:before {
    transition: none 0s ease 0s !important;
    animation: 0.01s !important;
  }
}
/* KEYFRAMES */
@keyframes imageOverlay {
  0% {
    transform: rotate(-45deg) scale(0.5);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}
.wow {
  visibility: hidden;
}
/* STYLED SCROLLBARS */
html, body, .styled-scrollbars {
  scrollbar-color: var(--scrollbar-foreground) var(--scrollbar-background);
  scroll-behavior: smooth;
}
body::-webkit-scrollbar, .styled-scrollbars::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
body::-webkit-scrollbar-thumb, .styled-scrollbars::-webkit-scrollbar-thumb {
  background: var(--scrollbar-foreground);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
body::-webkit-scrollbar-track, .styled-scrollbars::-webkit-scrollbar-track {
  background: var(--scrollbar-background);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
/* DEFAULT */
*, *:after, *:before {
  box-sizing: border-box;
  outline: none;
}
#wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#container {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
img {
  display: block;
}
.overflow-unset, .overflow-unset .block {
  overflow: unset;
}
.overflow-visible {
  overflow: visible;
}
.overflow-visible, .overflow-visible .block {
  overflow: visible;
}
/* SELECTION */
::selection {
  background: var(--select-bg-clr);
  color: var(--select-clr);
}
#navigation ::selection, .whiteText ::selection, .articleBgContent ::selection {
  background: var(--select-clr);
  color: var(--select-bg-clr);
}
/* TYPO */
html {
  font-size: 62.5%;
  font-family: var(--font-body);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text-clr);
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  font-variant: lining-nums;
}
body {
  font-size: var(--font-size);
  line-height: 1.5;
  margin: 0;
  padding: 0;
  background-color: var(--bg-clr);
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  --link-clr: var(--hl-clr);
  color: var(--hl-clr);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 1px;
  text-transform: uppercase;
}
h1 {
  font-size: 1.9rem;
  padding: 28px 0;
}
h2 {
  font-size: 1.9rem;
  padding: 28px 0;
}
h3 {
  font-size: 1.7rem;
  padding: 20px 0;
}
h4 {
  font-size: 1.6rem;
  padding: 20px 0;
}
h5 {
  font-size: 1.4rem;
  padding: 20px 0;
}
h6 {
  font-size: 1.3rem;
  padding: 20px 0;
}
b, strong {
  font-weight: 600;
  color: var(--color-black);
}
p {
  margin: 0;
  margin-bottom: 1rem;
}
/* LISTS */
ul, ol {
  font-weight: 400;
}
ul {
  padding-left: 2rem;
}
ul li::marker {
  color: var(--text-clr);
}
ol {
  padding-left: 0;
  margin: 0;
  counter-reset: item;
  list-style-type: none;
}
ol li {
  margin-bottom: 1.5rem;
}
ol li:before {
  content: counters(item, ".") ". ";
  counter-increment: item;
  font-weight: 600;
  color: var(--color-black);
}
ol ol {
  padding-left: 2.5rem;
}
/* LINKS */
a {
  display: inline;
  color: var(--link-clr);
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  background-image: linear-gradient(180deg, transparent 92.5%, var(--link-clr) 0);
  background-size: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.5s ease;
  background-position: center;
  tab-size: 10px;
}
a.invisible:hover, a.invisible:focus-visible {
  background-color: var(--color-black);
  color: var(--color-white) !important;
}
/* nav menu ico burger */
#header .inside a {
  padding: 0px;
}
.content-download a, .download-element a {
  max-width: 200px;
  width: 100%;
  background-size: 0;
}
nav strong, a strong {
  cursor: default;
}
li.active strong {
  color: var(--color-red);
}
a[href*="#skip"].invisible:focus-visible {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.25rem 0.75rem;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  color: var(--color-white);
  background-color: var(--color-black);
  clip: auto;
  transform: translateX(-50%);
  font-size: 2rem;
  font-weight: 500;
  background-size: 0 0;
  z-index: 15;
}
.ce_text p {
  margin-bottom: 1.5rem;
}
/* square style */
#main ul {
  list-style-type: square;
}
.ce_text p:last-child {
  margin-bottom: 0;
}
#main .ce_text ul {
  list-style-type: square;
}
.download {
  position: relative;
  z-index: 100;
}
.foerderung {
  margin-top: 10rem;
}
#link-shape {
  text-decoration: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
#main ul li::marker {
  color: red;
  font-size: 2rem;
}
/* HEADER */
#header {
  width: 100%;
  height: var(--header-height);
  position: fixed;
  top: 0;
  background-color: transparent;
  line-height: 21.6px;
  z-index: 100;
  -webkit-transition: height 0.3s;
  -moz-transition: height 0.3s;
  -ms-transition: height 0.3s;
  -o-transition: height 0.3s;
  transition: height 0.3s;
}
#header.sticky {
  --header-height: 60px;
  background-color: var(--header-clr);
  box-shadow: var(--box-shadow);
}
#header .inside {
  width: var(--width-content);
  max-width: var(--max-width-content);
  height: 100%;
  margin: 0 auto;
  position: sticky;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  z-index: 120;
}
#header.header-nav-open {
  z-index: 105;
}
/* LOGO */
#logo {
  margin-right: auto;
  z-index: 100;
}
#header.sticky #logo {
  height: calc(var(--header-height) - 1rem);
}
#logo a {
  padding: 0;
}
#logo a:hover, #logo a:focus-visible {
  background-size: 0 0;
}
#logo a svg {
  width: var(--logo-width);
}
#logo a:focus-visible svg, #logo-alt a:focus-visible svg {
  width: calc(var(--logo-width) + 4px);
  margin: 2px;
  padding: 4px;
  outline: 2px solid var(--color-black);
}
/* HAMBURGER */
#navigation_icon {
  display: grid;
  grid-auto-flow: column;
  place-items: center;
  background-color: var(--color-red);
  border-radius: 1rem;
  font-size: 15px;
  cursor: pointer;
  z-index: 110;
}
#navigation_icon a#hamburger {
  padding: 1.5rem;
}
#header.sticky #navigation_icon a#hamburger {
  padding: 1rem;
}
#navigation_icon a:focus-visible {
  outline: 2px solid var(--color-black);
  padding: 0.8rem 0.2rem;
}
#navigation_icon.open {
  z-index: 140;
}
#hamburger {
  background-image: none;
  background-size: 0;
}
.hamburger:hover {
  opacity: 1;
}
.hamburger-box {
  height: 18px;
  width: 35px;
  top: 3px;
  left: 0;
}
.hamburger-text {
  margin-right: 5px;
  display: none;
  color: var(--color-black);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 35px;
  height: 3px;
  background-color: var(--color-white);
  border-radius: 20px;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}
/* NAVIGATION */
#navigation {
  opacity: 0;
  visibility: hidden;
  display: block;
  width: 100%;
  height: calc(100vh - var(--header-height));
  margin-left: auto;
  position: absolute;
  top: var(--header-height);
  left: 0;
  box-shadow: 0 0 0 100vmax var(--color-white);
  background-color: var(--color-white);
  z-index: 80;
  transition: 0.3s ease;
}
#navigation.open {
  visibility: visible;
  overflow-y: visible;
  opacity: 1;
  background-color: var(--color-white);
  transition: 0.3s ease;
}
#navigation a.trail {
  display: inline;
  color: var(--color-black);
  background-image: linear-gradient(180deg, transparent 92.5%, var(--color-black) 0);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}
#navigation a {
  --link-clr: var(--color-black);
}
#navigation ul {
  list-style-type: none;
}
#navigation ul.level_1 {
  padding: 0;
  font-size: 2.2rem;
  font-weight: 500;
}
#navigation ul.level_1 li {
  position: relative;
  padding: 0.5rem 0;
}
#navigation ul.level_1 > li {
  padding-bottom: 2rem;
}
#navigation ul.level_1 > li > a, #navigation ul.level_1 > li > strong, #navigation ul.level_1 > li > span {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.5;
}
#navigation ul.level_1 > li > span {
  color: var(--color-white);
}
#navigation ul.level_1 > li > span.trail {
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(180deg, transparent 95%, var(--color-white) 0);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
#navigation ul.level_2 > li > a, #navigation ul.level_2 > li > strong {
  font-size: 2rem;
  text-transform: unset;
}
#navigation ul.level_1 > li > a:hover, #navigation ul.level_1 > li > a:focus-visible {
  background-size: 100% 100%;
}
#navigation ul.level_2 > li > a:hover, #navigation ul.level_2 > li > a:focus-visible {
  background-size: 100% 100%;
}
#navigation .active > .nav-toggler, #navigation .trail > .nav-toggler {
  color: var(--text-clr);
}
#navigation .nav-toggler i {
  transition: all 0.33s ease;
}
#navigation .nav-toggler.toggled i {
  transform: rotate(180deg);
}
#navigation ul.level_2 {
  padding-left: 0;
  text-transform: none;
}
#navigation ul.level_2 > li > a {
  background-image: linear-gradient(180deg, transparent 95%, var(--link-clr) 0);
}
/* MAIN */
#main .mod_article {
  position: relative;
  overflow: visible;
  z-index: 100;
}
#main .mod_article:nth-of-type(2):not(:has(.mod_newsreader)) {
  padding-top: var(--padding-top-second-article);
}
#main .mod_article:last-child {
  padding-bottom: var(--padding-content);
}
#main .mod_article:not(:nth-of-type(2), .nopad, .bgImage, #slider_start) {
  padding: var(--padding-content) 0;
}
#main .mod_article:not(.fullwidth) > *, #main .mod_breadcrumb, #main .mod_article > *.maxwidth {
  width: var(--width-content);
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 2rem 0;
}
#main .mod_article.whiteText *:not(a) {
  color: var(--color-white);
}
#main .mod_article.whiteText a {
  --link-clr: var(--color-white);
  font-weight: 700;
}
#main .mod_article .articleImage {
  padding: 0;
}
#main #start .articleImage img {
  max-height: calc(100vh - var(--header-height));
}
#main #start .ce_headline, #main #start .ce_text {
  color: var(--color-white);
}
#main #start .articleBgContent {
  position: unset;
  margin-top: var(--header-height);
  margin-bottom: 2rem;
  transform: unset;
}
#main p > a, #main li:not(.download-element) > a {
  text-decoration: underline;
}
#main p > a::after, #main li:not(.download-element) > a::after {
  padding-left: 5px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
}
#main p > a:is(:hover::after, focus-visible::after), #main li > a:is(:hover::after, :focus-visible::after), #main li > a {
  padding-left: 8px;
}
#main .mod_article.zindex15 {
  z-index: 15;
}
/* CUSTOM CLASSES */
.nomargin * {
  margin: 0;
}
.cnc_bearbeitung_flex {
  margin-top: 20px;
  display: grid;
}
.cnc_bearbeitung_flex1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.gap-2collumn > div {
  gap: 40px;
}
.gap-2collumn > div > div {
  max-width: 550px;
}
.top-bild-position > div {
  position: absolute;
}
.spalten-gap > div {
  gap: 4rem;
}
.spalten-gap > div div {
  padding: 30px;
  background-color: var(--bg-clr);
  border: 1px solid #ffffff63;
  border-radius: 15px;
}
.flex_container {
  display: flex;
  flex-wrap: wrap;
}
.flex_container > * {
  margin-right: 1.5rem;
  margin-bottom: 0.5rem;
}
.flex_container > *:last-child {
  margin-right: 0;
}
.flex_container ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
}
/* Article Background */
.articleBgContent {
  position: relative;
  left: 0;
  right: 0;
}
.articleBgContent.bottom {
  bottom: 7.5%;
}
#main .unternehmer .articleBgContent {
  position: relative;
}
.bgImage:not(.mod_article:first-child) img:not(.content-download img, .download-element img) {
  position: absolute;
  object-fit: cover;
  top: 25%;
  left: 0;
  transform: translate(0, -25%);
  width: 100%;
  height: 100%;
  opacity: 0.3;
  z-index: -1;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, white 25%, white 75%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, white 25%, white 75%, transparent 100%);
}
.event .info_container {
  display: flex;
  flex-wrap: wrap;
}
.event .subheadline {
  display: block;
  margin-bottom: 1rem;
  font-size: 2.4rem;
  line-height: 1.1;
}
.mod_eventreader .back, .mod_newsreader .back {
  margin-top: 2rem;
}
.event .image_wrapper {
  margin-bottom: 2rem;
}
.back a {
  background-position: right;
}
.back a::before {
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  line-height: 1;
  font-size: 2.5rem;
  color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  vertical-align: text-bottom;
  margin-right: 5px;
  text-transform: uppercase;
}
.mod_newsreader .layout_full {
  overflow: visible;
}
.mod_newsreader h1 {
  hyphens: auto;
}
.event.bygone, .mod_eventmenu li.bygone {
  display: none;
}
.image_news_container {
  position: relative;
}
.news_type_icon {
  position: absolute;
  bottom: 10px;
  right: 5px;
}
.news_type_icon i {
  font-size: 30px;
  color: var(--color-white);
}
.news_addImage {
  margin-bottom: 2rem;
}
/*NEWS ARCHIVE*/
.mod_newsarchive {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 4rem;
}
.mod_newsarchive .news_image_container {
  border-radius: 1.6rem;
  overflow: hidden;
}
.mod_newsarchive img:not(.mod_newsarchive span img) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}
.mod_newsarchive .news_image_container {
  height: 250px;
}
.mod_newsarchive p {
  display: none;
}
.mod_newsarchive p:first-child {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  max-height: 12rem;
  margin-top: 20px;
  font-weight: 500;
  max-width: 95%;
}
/* Ansprechpartner */
.contacts > div {
  gap: 3rem;
}
.contacts .content-text.media--left figure {
  margin-right: 2rem;
}
/* ARTICLE IMAGE */
#main .mod_article .articleImage:not(.bgImage:not(.mod_article:first-child) > div) {
  height: 100vh;
  width: 100%;
  max-width: unset;
  background-size: cover;
  -webkit-mask-image: linear-gradient(to top, transparent 25%, black 75%);
  mask-image: linear-gradient(to top, transparent 25%, black 75%);
}
.articleImage.parallax {
  background-position-x: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.parallax.centerImg {
  background-position-y: center;
}
.parallax.bottomImg {
  background-position-y: bottom;
}
.topImg img {
  width: 100%;
}
.centerImg img {
  object-position: center;
  width: 100vw;
  object-fit: contain;
}
.bottomImg img {
  object-position: bottom;
}
#main .mod_article .articleImage.darken::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
}
/* LINK BUTTON */
.mod_article .ce_text a {
  text-decoration: underline;
  font-size: 1.8rem;
  padding: 0;
}
.link_button {
  overflow: visible;
}
.link_button a, .ce_cookiebarOpener a, .link_button button {
  --link-clr: var(--color-white);
  padding: 1.1rem 4rem;
  margin: 1rem 1.5rem 1rem 0;
  display: inline-block;
  background-color: var(--secondary-clr);
  background-size: 0 0;
  border: 2px solid var(--secondary-clr);
  border-radius: 4rem;
  color: var(--link-clr);
  font-weight: 600;
  text-align: center;
  outline: 2px solid transparent;
  outline-offset: 0.5rem;
  transition: var(--transition);
}
.link_button button {
  cursor: pointer;
}
.link_button a i {
  font-size: 3rem;
  vertical-align: sub;
}
.ce_hyperlink a, .link_button button {
  font-size: 16px;
  display: flex;
  align-items: center;
  max-width: fit-content;
  gap: 12px;
}
.startbild .ce_hyperlink {
  padding-top: 20px;
}
#main .mod_article .link_button a:hover, .job_accordion_body a:hover, .content-download > a:hover, .download-element > a:hover, .content-download > a:focus-visible, .download-element > a:focus-visible, #main .mod_article .link_button a:focus-visible, #main .mod_article .ce_cookiebarOpener a:hover, #main .mod_article .ce_cookiebarOpener a:focus-visible, #main .mod_article .link_button button:hover, #main .mod_article .link_button button:focus-visible {
  outline-color: var(--secondary-clr);
}
.link_button.centered {
  text-align: center;
}
#main .ce_cookiebarOpener {
  --link-clr: var(--color-white);
  margin: 0.75rem 0.75rem 0.75rem 0;
  padding: 0.7rem 3rem;
  display: inline-block;
  background-color: var(--secondary-clr);
  background-size: 0 0;
  border: 2px solid var(--secondary-clr);
  border-radius: 1rem;
  color: var(--link-clr);
  font-weight: 600;
  text-align: center;
  outline: 2px solid transparent;
  outline-offset: 0.5rem;
  transition: var(--transition);
}
#main .unternehmer .link_button button {
  cursor: pointer;
}
#main .unternehmer .link_button a i {
  font-size: 3rem;
  vertical-align: sub;
}
#main .unternehmer .link_button:hover a, #main .unternehmer .link_button:focus-visible a, #main .unternehmer .ce_cookiebarOpener:hover a, #main .unternehmer .ce_cookiebarOpener:focus-visible a, #main .unternehmer .link_button:hover button, #main .unternehmer .link_button:focus-visible button {
  outline-color: var(--secondary-clr);
}
.ce_cp_column_start.hidden {
  display: none;
}
.hidden-text {
  display: none;
}
.hidden-text.show-text {
  display: block;
}
td {
  padding-right: 20px !important;
}
.job_accordion_body a {
  --link-clr: var(--color-white);
  margin: 0.75rem 0.75rem 0.75rem 0;
  padding: 0.9rem 1.5rem !important;
  text-decoration: none !important;
  background-color: var(--secondary-clr);
  background-size: 0 0;
  border: 2px solid var(--secondary-clr);
  border-radius: 1rem;
  color: var(--link-clr);
  font-weight: 600;
  text-align: center;
  outline: 2px solid transparent;
  outline-offset: 0.5rem;
  transition: var(--transition);
}
.unternehmer .articleBgContent {
  z-index: 2;
}
.download-flex_container {
  display: flex;
  align-items: flex-end;
}
/* TABLES */
#main .mod_article .ce_table {
  margin-bottom: 2rem;
  overflow-x: auto;
}
.ce_table thead th {
  text-align: left;
}
.ce_table table {
  border-spacing: 0.25rem;
  width: 100%;
}
.ce_table th {
  background-color: var(--primary-clr);
  color: var(--color-white);
  padding: 0.25rem 0.5rem;
  font-size: 2rem;
}
.ce_table td {
  background-color: var(--secondary-clr);
  padding: 0.25rem 0.5rem;
  color: var(--color-white);
}
/*FOOTER*/
#footer {
  box-shadow: var(--box-shadow);
}
#footer .active strong {
  background-image: none;
}
#footer a {
  padding: 0;
}
#footer a:hover, #footer a:focus-visible {
  background-size: 100% 100%;
}
/* GRID OVERFLOW FIX */
.ce_cp_grid_start, .grid_start {
  overflow: visible;
}
.ce_text.nogap p:last-child {
  margin-bottom: 0;
}
.ce_cp_grid_start, .grid_start {
  z-index: 1;
}
/* PAGINATION */
.pagination {
  margin: 4rem 0;
}
.pagination p {
  margin-bottom: 0.5rem;
  text-align: center;
}
.pagination ul {
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: center;
  margin: 0;
}
.pagination ul li a, .pagination ul li strong {
  display: grid;
  place-items: center;
  background-color: var(--color-white);
  gap: 0.5rem;
  width: 4rem;
  height: 4rem;
  font-weight: 500;
  transition: 0.33s ease;
  color: var(--color-black);
  border: 2px solid var(--primary-clr);
  background-size: 0;
  border-radius: 100%;
  margin: 0 0.33rem;
}
.pagination ul li strong {
  background-color: var(--primary-clr);
  color: var(--color-black);
}
.pagination ul li a:hover, .pagination ul li a:focus-visible {
  background-color: var(--primary-clr);
  color: var(--color-black);
  text-decoration: none;
  text-decoration-color: transparent;
}
.pagination_text {
  display: none;
}
::-webkit-input-placeholder, ::placeholder {
  color: var(--text-clr);
}
/* GALERIE */
.ce_gallery > ul {
  display: grid;
  gap: var(--gap);
  justify-content: center;
  align-items: start;
}
.ce_gallery img {
  margin: 0 auto;
  height: 100%;
  object-fit: cover;
}
.cols_1, .cols_2, .cols_3, .cols_4, .cols_5, .cols_6, .cols_7, .cols_8, .cols_9, .cols_10, .cols_11, .cols_12 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.cols_1 {
  grid-template-columns: 1fr;
}
.cols_2, .cols_4 {
  grid-template-columns: repeat(2, 1fr);
}
.ce_gallery .image_wrapper {
  display: block;
}
.ce_gallery figcaption {
  font-size: 2rem;
}
.masonry_gallery.ce_gallery li:nth-child(3n+1) {
  grid-column: span 2;
}
/* IMAGES */
.caption {
  font-size: 1.8rem;
  text-align: center;
  margin-top: 0.5rem;
}
.ce_image.taken .image_outer_container::before {
  content: "vergriffen";
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background-color: var(--color-white);
  color: var(--primary-clr);
  padding: 0.5rem 1rem;
  font-weight: 500;
  z-index: 10;
}
/* IMAGE OVERLAY */
.top-bild-position > div {
  z-index: -2;
}
.image_container {
  position: relative;
  overflow: hidden;
}
.img_overlay {
  content: "";
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}
.img_overlay i {
  --overlay-size: 6rem;
  width: var(--overlay-size);
  height: var(--overlay-size);
  position: absolute;
  top: calc(50% - calc(var(--overlay-size) / 2));
  left: calc(50% - calc(var(--overlay-size) / 2));
  background-color: #0000007a;
  line-height: var(--overlay-size);
  font-size: calc(var(--overlay-size) / 1.75);
  font-style: normal;
  font-weight: 900;
  text-align: center;
  color: var(--color-white);
  border-radius: 50%;
}
.image_wrapper a:hover .img_overlay, .image_wrapper a:focus-visible .img_overlay {
  transform: scale(1);
  opacity: 1;
}
.image_wrapper a:hover .img_overlay i, .image_wrapper a:focus-visible .img_overlay i {
  animation: imageOverlay 0.33s 1;
  opacity: 1;
}
a img {
  transition: var(--transition);
}
.image_wrapper a:hover img, .image_wrapper a:focus-visible img {
  transform: scale(1.1);
}
.ce_image, .image_wrapper {
  position: relative;
}
.image_wrapper {
  overflow: visible;
  display: block;
}
.image_wrapper.left {
  text-align: left;
}
.image_wrapper.center {
  text-align: center;
}
.image_wrapper.right {
  text-align: right;
}
.image_outer_container {
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  position: relative;
}
.no_scale .image_wrapper a:hover img, .no_scale .image_wrapper a:focus-visible img {
  transform: none;
}
.no_bg .img_overlay {
  background-color: transparent;
}
/* FORMS */
.widget-upload {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0.5rem 1rem;
  color: var(--color-black);
  background-color: var(--color-white);
  border: 1px solid var(--text-clr);
  border-radius: 5px;
  transition: all 0.5s ease;
}
.widget-upload i {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 5rem;
}
.widget-upload input {
  font-size: 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  max-width: 70%;
  height: 5rem;
  color: var(--color-black);
  background-color: var(--color-white);
}
.ce_form {
  overflow: visible;
}
form {
  accent-color: var(--primary-clr);
}
.send-form {
  padding: 24px 20px 30px 0px;
  border-radius: 24px;
}
.send-form > div {
  gap: 30px;
}
form label {
  margin-bottom: 1rem;
}
form select, form button, form input, form textarea, form fieldset {
  font: 2rem var(--font-body);
  font-variant: lining-nums;
  cursor: pointer;
  background-color: unset;
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  width: 100%;
  border: none;
  line-height: 1.5;
  color: var(--color-black);
  background-color: var(--color-white);
  font-weight: 500;
  font-variant: lining-nums;
}
form textarea {
  min-height: 5rem;
  resize: vertical;
  padding: 0.5rem 1rem;
  transition: background-color 0.5s ease;
  border: 1px solid var(--text-clr);
  border-radius: 5px;
}
form .widget {
  margin-top: 1rem;
}
form fieldset {
  border: none;
  padding: 0;
  margin: 0;
  line-height: 1;
  margin-bottom: 2rem;
  cursor: auto;
}
form fieldset legend {
  margin-bottom: 1.5rem;
}
form fieldset span {
  display: block;
  margin-bottom: 1rem;
}
form input.checkbox {
  min-width: unset;
}
form .checkbox_container label {
  cursor: pointer;
}
form input, form select {
  padding: 0.5rem 1rem;
  transition: all 0.5s ease;
  border: 1px solid var(--text-clr);
  border-radius: 5px;
  margin-bottom: 1rem;
}
form select {
  color: var(--text-clr);
  font-weight: 400;
}
form select.LV_valid_field {
  color: var(--color-darkgray);
  font-weight: 500;
}
form .widget-radio input {
  appearance: auto;
  width: unset;
  cursor: auto;
  margin-bottom: 1rem;
}
form .widget-radio label {
  cursor: pointer;
}
form .widget-select {
  position: relative;
  margin-bottom: 0.5rem;
}
form .widget-select::after {
  content: "";
  position: absolute;
  top: 2.5rem;
  right: 0.75rem;
  font-family: "Line Awesome Free";
  font-size: 1.25em;
  line-height: 1;
  color: var(--text-clr);
  -webkit-font-smoothing: antialiased;
  opacity: 1;
  transition: opacity 0.3s ease 0s;
}
form .widget-calendar .calendar-wrapper {
  position: relative;
}
form .widget-calendar .calendar-wrapper .input-button {
  position: absolute;
  top: 2.5rem;
  right: 0;
  background-size: 0 0;
}
.mod_article.whiteText form *::selection {
  background-color: var(--color-white);
  color: var(--primary-clr);
}
.mod_article.whiteText form select option {
  color: var(--text-clr);
}
form select select option {
  opacity: 0.5;
}
.mod_article.whiteText form select:not(.LV_valid_field) {
  color: var(--color-white-light);
}
.mod_registration form select:not(.LV_valid_field) {
  color: var(--color-darkgray);
}
.mod_article.articlecolor p {
  color: var(--color-black);
}
form .checkbox_container > span {
  display: flex;
  align-items: flex-start;
}
form input.checkbox {
  appearance: auto;
  min-width: unset;
  width: 2.2rem;
  height: 2.2rem;
  margin: 0;
  margin-top: 0rem;
  margin-right: 1rem;
  margin-left: 1px;
}
form input.checkbox:focus-visible {
  outline: 1px solid var(--color-black);
}
.form-items-center > * {
  align-items: center;
}
form .widget-submit {
  overflow: visible;
  margin-top: 2rem;
}
form button {
  display: inline-block;
  width: unset;
  font-weight: 400;
  color: var(--color-white);
  border: 2px solid var(--primary-clr);
  text-align: center;
  transition: var(--transition);
  padding: 1rem 2rem;
  line-height: 1.2;
  border-radius: 10rem;
  outline: 2px solid transparent;
  outline-offset: 4px;
}
form button:hover, form button:focus-visible {
  outline-color: var(--primary-clr);
}
form div.longfield, form section.longfield {
  margin-top: 2rem;
}
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
  transition: background-color 50000s;
  -webkit-text-fill-color: var(--color-darkgray) !important;
  caret-color: var(--color-darkgray);
}
form p.error {
  margin: 0;
  color: var(--red);
  font-weight: 600;
}
form .ce_cp_grid_start {
  margin-bottom: 0;
}
form .ce_cp_grid_start .widget-checkbox, form .ce_cp_grid_start fieldset {
  margin-bottom: 0;
}
form span.mandatory {
  font-size: 2.6rem;
  line-height: 1;
  color: var(--secondary-clr);
}
form .widget-explanation {
  margin-bottom: 2rem;
}
form [class*="grid_"] {
  row-gap: 0;
}
/* COOKIEBAR */
.cc-inner {
  font-size: 2rem;
  border-radius: 2rem;
  overflow: hidden;
}
.cc-cookie-info, .cc-cookie p {
  font-size: 1.8rem;
}
.cc-info > a {
  font-size: 2rem;
  text-decoration: underline;
}
.map_confirm {
  display: inline-block;
  color: var(--color-white);
  border-radius: 10rem;
  font-weight: 400;
  font-size: 2rem;
  padding: 1rem 2rem;
  margin: 1rem 0 2rem 0;
  background-color: var(--primary-clr);
  border: none;
  border: 2px solid var(--primary-clr);
  transition: var(--transition);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  outline: 2px solid transparent;
  outline-offset: 4px;
}
.cc-head p {
  text-align: center;
}
.map_confirm:hover, .map_confirm:focus-visible {
  outline-color: var(--primary-clr);
}
.static-map-container {
  padding: 0 !important;
}
.static-map img {
  margin: 0 auto;
}
/* IFRAME */
.ce_youtube iframe {
  border: none;
}
.aspect--21\:9, .responsive.ratio-219 {
  padding-bottom: 75%;
}
.ccb-element-blocker {
  font-size: 2rem;
}
/* COLORBOX */
#cboxLoadedContent {
  border: 0;
}
#cboxNext, #cboxClose, #cboxPrevious {
  background: var(--primary-clr);
  width: 3rem;
  height: 3rem;
  position: absolute;
  display: block;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  text-indent: unset;
  min-width: unset;
  border-radius: 50%;
}
#cboxNext {
  right: 5px;
}
#cboxClose {
  top: 5px;
  right: 5px;
}
#cboxPrevious {
  left: 5px;
}
#cboxNext::before, #cboxPrevious::before, #cboxClose::before {
  font-family: "Line Awesome Free";
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  color: var(--color-black);
  -webkit-font-smoothing: antialiased;
}
#cboxNext::before {
  content: "";
}
#cboxPrevious::before {
  content: "";
}
#cboxClose::before {
  content: "";
}
#cboxContent {
  margin-top: 3rem;
}
#cboxCurrent {
  top: -3rem;
}
#cboxTitle {
  top: -3rem;
}
/* DOWNLOAD */
.pdf_gal > .image_wrapper:not(:first-child) {
  display: none;
}
.ce_download {
  overflow: visible;
}
.content-download.no-text p {
  display: none;
}
.content-downloads ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0;
  margin: 0;
}
.content-downloads ul li {
  list-style: none;
}
.ce_download .size {
  display: none;
}
.content-download figure, .download-element figure, .download-element img, .content-download img {
  min-width: 150px;
  max-width: 200px;
}
.content-download p, .download-element p {
  max-width: 140px;
  font-size: 1.8rem;
}
.image_container > a > img {
  border-radius: 8px;
}
.content-download > a, .download-element > a {
  font-size: 16px;
  padding: 10px;
  color: #ffffff;
  border: 1px solid #5e5e5e;
  font-size: 16px;
  border-radius: 8px;
  white-space: nowrap;
  background-image: none;
  --link-clr: var(--color-black);
  display: inline-block;
  background-size: 0 0;
  color: var(--link-clr);
  text-align: center;
  outline: 2px solid transparent;
  outline-offset: 0.5rem;
  transition: var(--transition);
}
.ce_download p:not(.content-download, .download-element) {
  position: relative;
  top: -20px;
  left: 20px;
}
.ce_download a, .ce_downloads a {
  padding: 5px 20px;
  margin-left: 3px;
  margin-top: 5px;
  font-size: 14px;
}
.ce_download a:hover, .ce_downloads a:hover, .ce_download a:focus-visible, .ce_downloads a:focus-visible {
  outline-color: var(--color-darkgray);
}
.ce_download .content-download, .ce_download .download-element {
  margin-top: 1rem;
}
.ce_download .content-download, .ce_download .download-element i {
  padding-right: 0.5rem;
  color: var(--color-black);
}
.ce_text .la-file-pdf {
  font-size: 6rem;
}
.ce_downloads > ul {
  text-decoration: none;
  list-style: none;
  padding: 0;
}
.jobs > ul {
  list-style-type: none;
}
.lmf_jobs_wrapper {
  display: grid;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.lmf_jobs_job {
  padding: min(3em, 8%);
  border-radius: 15px;
  border: 1px solid var(--color-darkgray);
  background-color: var(--bg-clr);
  list-style: none;
}
.lmf_jobs_job ul {
  list-style-type: square;
}
li.lmf_jobs_job {
  list-style: none;
  list-style-type: none;
}
.lmf_jobs_job ul li::marker {
  color: var(--color-red);
}
.lmf_jobs_job h3 {
  margin: 0 !important;
}
.lmf_jobs_job h2 {
  padding-top: 1rem;
}
.lmf_jobs_job .accordion-toggle:after {
  display: none;
}
.lmf_jobs_job_details_wrapper {
  padding-top: 2rem;
}
.teaser {
  max-height: 100px;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  line-height: 1.2em;
}
.teaser.expanded {
  max-height: 1000px;
}
.slick-container {
  overflow: visible;
}
.layout_latest {
  overflow: visible;
}
#fragen-img {
  border-radius: 24px;
}
/* FOOTER */
#mail_link {
  text-decoration: underline !important;
  font-size: 16px;
}
#footer {
  background-color: var(--color-gray);
  color: var(--color-white);
  border-top: 1px solid var(--color-white);
}
#footer * {
  color: var(--color-black);
}
#footer .inside {
  display: grid;
  gap: 1rem;
  width: var(--width-content);
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 5rem 0 5rem 0;
}
#footer .footer_container .mod_customnav li {
  margin: 0;
}
#footer .social a {
  background-size: 0;
}
#footer .social i {
  font-size: 4rem;
  transition: var(--transition);
}
#footer .social a:hover i, #footer .social a:focus-visible i {
  transform: scale(1.2);
}
#footer .mod_customnav ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
#footer a, #footer strong {
  font-weight: 600;
  hyphens: auto;
  background-image: linear-gradient(180deg, transparent 95%, var(--color-black) 0);
}
#footer .mod_customnav .last {
  margin-bottom: 0;
}
#footer .inside a {
  font-size: 16px;
}
#footer {
  font-size: 1.8rem;
}
.swiper-slide.special-slide {
  width: 300px;
}
/* PHONE */
@media only screen and (min-width: 350px) {
  /*fonts*/
  /* blocks positionen*/
  h1 {
    font-size: 2.9rem;
  }
  h2 {
    font-size: 2.6rem;
  }
  h3 {
    font-size: 2.4rem;
  }
  h4 {
    font-size: 1.5rem;
  }
  h5 {
    font-size: 1.6rem;
    font-weight: 400;
  }
  h6 {
    font-size: 1.4rem;
    font-weight: 400;
  }
}
@media only screen and (min-width: 400px) {
  .content-download p, .download-element p {
    max-width: 200px;
  }
  .lmf_jobs_job {
    padding: 2rem !important;
  }
  .lmf_jobs_job h3 {
    font-size: 2.2rem;
  }
  .mod_newsarchive .news_image_container {
    height: 350px;
  }
  .widget-upload input {
    font-size: 1.3rem;
    background-color: var(--color-white);
    color: var(--color-black);
    max-width: 50%;
  }
}
@media only screen and (min-width: 576px) {
  /*fonts*/
  /* NEWS */
  /* PAGINATION */
  /* IFRAME */
  /* FOOTER */
  /* jobs */
  /*NEWS ARCHIVE*/
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 2.4rem;
  }
  h4 {
    font-size: 2rem;
  }
  h5 {
    font-size: 1.6rem;
    font-weight: 400;
  }
  h6 {
    font-size: 1.4rem;
    font-weight: 400;
  }
  .pagination {
    grid-column: span 2;
  }
  .aspect--21\:9, .responsive.ratio-219 {
    padding-bottom: 56.25%;
  }
  #footer .inside {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  .lmf_jobs_job {
    padding: 2rem 3rem !important;
  }
  .lmf_jobs_job h2 {
    font-size: 3rem;
  }
  .mod_newsarchive .news_image_container {
    height: 400px;
  }
}
/* TABLET */
@media only screen and (min-width: 768px) {
  /* Navigation */
  /*
    #navigation .level_1 {
        display: flex;
        flex-direction: column; 
        flex-wrap: wrap; 
        column-gap: 5rem;
        max-height: 250px;
    }
    */
  /*Main*/
  /* HAMBURGER */
  /* NEWS */
  /* BACK TO TOP */
  /* SUBNAVIGATION */
  /* IFRAME */
  /* FOOTER */
  /* Accordion */
  /*IMAGES*/
  /*NEWS ARCHIVE*/
  /* Form */
  :root {
    --width-content: calc(100vw - 4rem);
    --slider-gap: 10px;
  }
  h1 {
    font-size: 4.8rem;
  }
  h2 {
    font-size: 4.2rem;
  }
  h3 {
    font-size: 2.4rem;
  }
  h4 {
    font-size: 2rem;
  }
  h5 {
    font-size: 1.6rem;
    font-weight: 400;
  }
  h6 {
    font-size: 1.4rem;
    font-weight: 400;
  }
  #navigation {
    width: auto;
    max-width: fit-content;
    height: auto;
    margin-left: auto;
    position: absolute;
    top: -500px;
    right: 80px;
    padding: 3rem 3rem 1rem;
    z-index: 80;
    box-shadow: var(--box-shadow);
  }
  #navigation.open {
    background-color: var(--color-white);
    top: 0;
  }
  .top-bild-position > div {
    max-height: 70vh !important;
  }
  .social_feed_container.masonry.columns2 .social_feed_element {
    width: 50%;
  }
  .social_feed_container.masonry.columns3 .social_feed_element {
    width: 50%;
  }
  .ce_cp_column_start.hidden {
    display: block;
  }
  #toTopContainer {
    bottom: 2rem;
    right: 2rem;
  }
  .aspect--21\:9, .responsive.ratio-219 {
    padding-bottom: 42.8571%;
  }
  #footer .inside {
    grid-template-columns: repeat(2, 1fr);
  }
  .ce_download a, .ce_downloads a {
    padding: 5px 20px;
  }
  .startbild > div {
    height: 800px;
  }
  .mod_newsarchive {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .mod_newsarchive .news_image_container {
    border-radius: 1.6rem;
    overflow: hidden;
  }
  .mod_newsarchive img:not(.mod_newsarchive span img) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
  }
  .mod_newsarchive .news_image_container {
    min-height: 300px;
  }
  .mod_newsarchive p {
    display: none;
  }
  .mod_newsarchive p:first-child {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    max-height: 12rem;
    margin-top: 20px;
    font-weight: 500;
    max-width: 95%;
  }
  .send-form > div {
    gap: 40px;
  }
}
/* DESKTOP */
@media only screen and (min-width: 1024px) {
  /* MAIN */
  /* COSTOM CLASSES */
  /* GALERY */
  /* TEXT COLUMNS */
  /* PAGINATION */
  /* FOOTER */
  /*IMAGES*/
  /* button */
  /*NEWS ARCHIVE*/
  :root {
    --width-content: calc(100vw - 60px);
    --max-width-content: 1400px;
    --padding-content: 8rem;
    --header-height: 120px;
    --slider-gap: 20px;
    --font-size: 2rem;
  }
  h1 {
    font-size: 6.4rem;
    margin-top: 50px !important;
  }
  h2 {
    font-size: 5.2rem;
  }
  h3 {
    font-size: 3.8rem;
  }
  h4 {
    font-size: 2.5rem;
  }
  h5 {
    font-size: 2rem;
  }
  h6 {
    font-size: 1.4rem;
  }
  ul {
    padding-left: 3.5rem;
  }
  #main ul li::marker {
    color: red;
    font-size: 2.8rem;
  }
  #main ul li::marker {
    color: red;
    font-size: 2.8rem;
  }
  #main #start .articleBgContent {
    position: absolute;
    transform: translateY(-50%);
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 12rem;
  }
  .articleBgContent {
    position: relative;
  }
  .cnc_bearbeitung_flex1, .cnc_bearbeitung_flex {
    width: 50%;
  }
  .cnc_bearbeitung_wrapper {
    display: flex;
  }
  .halfwidth {
    --max-width-content: 1200px;
  }
  .toggler {
    font-size: 2.4rem;
  }
  #slider-leistungen {
    overflow: visible;
  }
  #slider-leistungen .swiper-container {
    max-width: 530px;
  }
  .cols_1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .cols_2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .cols_3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .cols_4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .cols_5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .cols_6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .cols_7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .cols_8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .cols_9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .cols_10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .cols_11 {
    grid-template-columns: repeat(11, 1fr);
  }
  .cols_12 {
    grid-template-columns: repeat(12, 1fr);
  }
  .widget-upload input {
    font-size: 1.5rem;
  }
  .text_col_2 {
    column-count: 2;
    column-gap: 4rem;
  }
  .pagination {
    grid-column: span 3;
  }
  #footer .inside {
    grid-template-columns: repeat(4, 1fr);
  }
  .ce_hyperlink a, .link_button button {
    font-size: 20px;
    margin-top: 0;
  }
  .top-bild-position > div {
    max-height: 90vh !important;
  }
  .cnc_bearbeitung_flex1, .cnc_bearbeitung_flex {
    max-width: 570px;
  }
  .mod_newsarchive {
    gap: 4rem;
  }
  .mod_newsarchive .news_image_container {
    height: 500px;
  }
}
/* LARGE DESKTOP */
@media only screen and (min-width: 1180px) {
  #slider_start {
    padding-top: 0 !important;
  }
  .top-bild-position > div {
    max-height: 100vh !important;
  }
  .widget-upload {
    max-width: 50%;
  }
}
@media only screen and (min-width: 1250px) {
  /* HEADER */
  #header {
    --header-height: 60px;
    background-color: var(--header-clr);
    box-shadow: var(--box-shadow);
  }
  #header #logo {
    height: calc(var(--header-height) - 1rem);
  }
  #navigation {
    position: relative;
    top: 0;
    left: 0;
    opacity: 1;
    visibility: visible;
    overflow: visible;
    box-shadow: none;
    background-color: #ffffff00;
    padding: 0;
  }
  #navigation_icon {
    display: none;
  }
  #header .inside {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }
  #navigation ul.level_1 {
    margin: 0;
    gap: 2rem;
    display: flex;
  }
  #navigation ul.level_1 > li {
    padding: 2rem 0;
  }
  #navigation ul.level_1 > li.submenu {
    padding-right: 2rem;
  }
  #navigation ul.level_1 > li.submenu::after {
    content: "";
    position: absolute;
    top: 40%;
    display: inline-block;
    margin-left: 0.5rem;
    width: 0.8rem;
    height: 0.8rem;
    border-left: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: translate(5px, 0) rotate(-45deg);
  }
  #navigation ul.level_1 > li > :is(a, strong, span) {
    text-transform: uppercase;
    font-size: 1.8rem;
    font-weight: 800;
  }
  #navigation ul.level_2 {
    position: absolute;
    top: 63px;
    max-height: 0;
    padding: 1rem 5rem 1rem 1rem;
    text-transform: none;
    background-color: var(--color-white);
    border-top: 3px solid var(--color-red);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
    transition: max-height 0.4s ease, 0.3s opacity ease;
    opacity: 0;
    overflow: hidden;
  }
  #navigation ul.level_1 li.submenu:is(:hover, :has(ul.level_2 a:focus-visible)) ul.level_2, #navigation ul.level_1 li.submenu a:is(:hover, :focus-visible) + ul.level_2, #navigation ul.level_1 li.submenu ul.level_2:hover {
    display: block;
    max-height: 300px;
    opacity: 1;
  }
  #navigation ul.level_1 li.submenu:is(:hover, a:hover)::after {
    transform: translate(5px, 30%) rotate(-225deg);
  }
  #navigation ul.level_2 > li > a {
    white-space: nowrap;
    background-image: linear-gradient(180deg, transparent 95%, var(--link-clr) 0);
  }
}
/* LARGE DESKTOP */
@media only screen and (min-width: 1400px) {
  /* Navigation **/
  /* MAIN */
  /* EVENTS */
  :root {
    --font-size: 2.4rem;
    --padding-top-second-article: 40rem;
  }
  #navigation ul.level_1 > li > :is(a, strong, span) {
    font-size: 2rem;
  }
  #navigation ul.level_2 {
    position: absolute;
    top: 65px;
  }
  #main .mod_article:nth-of-type(2):not(:has(.mod_newsreader)) {
    padding-top: var(--padding-top-second-article);
  }
  .slick-container {
    padding-bottom: 0;
  }
  .slick-next, .slick-prev {
    top: calc(50% - var(--arrow-size));
  }
}
/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22sources%22%3A%5B%22var%2Fwww%2Fclients%2Fclient1%2Fweb173%2Fweb%2Ffiles%2Fvoigt%2Fcss%2Fdefault.scss%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA0CA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA5CJ%3BAAmDA%3BAACI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAA3DA%3BAAgEA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAhFA%3BAAuFA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAnHA%3BAAyHA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAA7HA%3BAAqIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAA%2FLA%3BAAqMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAA9NA%3BAAmOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAAA%3BAAhPA%3BAAsPA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAkBA%3BAAAA%3BAAAA%3BAAzRA%3BAA8RA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAArTA%3BAA2TA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAzVA%3BAA8VA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2FWA%3BAAwXA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAhbA%3BAAqbA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAgBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAArhBA%3BAA0hBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAzlBA%3BAA8lBA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAvoBA%3BAA8oBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAA%2FtBA%3BAAouBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAzvBA%3BAAuwBA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAA1wBA%3BAA%2BwBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA7yBA%3BAAwzBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAkBA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAgBA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAgBA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAr7BA%3BAA27BA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA58BA%3BAAm9BA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAA59BA%3BAAm%2BBA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAA7%2BBA%3BAAk%2FBA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAgBA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAA9hCA%3BAAoiCA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAhkCA%3BAAqkCA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA1kCA%3BAAulCA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAgBA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAArqCA%3BAA0qCA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAoBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAh6CA%3BAAq6CA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAkBA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAA98CA%3BAAm9CA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAA19CA%3BAAg%2BCA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAeA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAArhDA%3BAA2hDA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAmBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAA%2FqDA%3BAAorDA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAjvDA%3BAAsvDA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAACI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAA%2F1DJ%3BAAq2DA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAAA%3BAAeH%3BAAAA%3BAAAA%3BAAUG%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcA%3BAAAA%3BAAAA%3BAAAA%3BAAr%2FDJ%3BAAigEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAA7pEJ%3BAAmqEA%3BAACI%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAGM%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWD%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAnwEJ%3BAA0wEA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%22%7D */