/* $fontRegular:normal; */
/* $fontMedium:500; */
@-moz-keyframes slideRight {
  0% {
    background-position: 50% center;
  }
  40% {
    background-position: 200% center;
  }
  41% {
    background-position: 200% center;
    visibility: hidden;
  }
  41.1% {
    background-position: -50px center;
    visibility: hidden;
  }
  100% {
    background-position: 50% center;
  }
}
@keyframes slideRight {
  0% {
    background-position: 50% center;
  }
  40% {
    background-position: 200% center;
  }
  41% {
    background-position: 200% center;
    visibility: hidden;
  }
  41.1% {
    background-position: -50px center;
    visibility: hidden;
  }
  100% {
    background-position: 50% center;
  }
}
@-moz-keyframes slideDown {
  0% {
    background-position: center 50%;
  }
  40% {
    background-position: center 200%;
  }
  41% {
    background-position: center 200%;
    visibility: hidden;
  }
  41.1% {
    background-position: center -50px;
    visibility: hidden;
  }
  100% {
    background-position: center 50%;
  }
}
@keyframes slideDown {
  0% {
    background-position: center 50%;
  }
  40% {
    background-position: center 200%;
  }
  41% {
    background-position: center 200%;
    visibility: hidden;
  }
  41.1% {
    background-position: center -50px;
    visibility: hidden;
  }
  100% {
    background-position: center 50%;
  }
}

@font-face {
  font-family: "Fira Sans";
  src: url("/files/theme/styles/webfonts/FiraSans-Bold.eot");
  src: url("/files/theme/styles/webfonts/FiraSans-Bold.eot?#iefix") format("embedded-opentype"),
       url("/files/theme/styles/webfonts/FiraSans-Bold.woff2") format("woff2"),
       url("/files/theme/styles/webfonts/FiraSans-Bold.woff") format("woff"),
       url("/files/theme/styles/webfonts/FiraSans-Bold.ttf") format("truetype"),
       url("/files/theme/styles/webfonts/FiraSans-Bold.svg#FiraSans-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fira Sans";
  src: url("/files/theme/styles/webfonts/FiraSans-SemiBold.eot");
  src: url("/files/theme/styles/webfonts/FiraSans-SemiBold.eot?#iefix") format("embedded-opentype"),
       url("/files/theme/styles/webfonts/FiraSans-SemiBold.woff2") format("woff2"),
       url("/files/theme/styles/webfonts/FiraSans-SemiBold.woff") format("woff"),
       url("/files/theme/styles/webfonts/FiraSans-SemiBold.ttf") format("truetype"),
       url("/files/theme/styles/webfonts/FiraSans-SemiBold.svg#FiraSans-SemiBold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fira Sans";
  src: url("/files/theme/styles/webfonts/FiraSans-Light.eot");
  src: url("/files/theme/styles/webfonts/FiraSans-Light.eot?#iefix") format("embedded-opentype"),
       url("/files/theme/styles/webfonts/FiraSans-Light.woff2") format("woff2"),
       url("/files/theme/styles/webfonts/FiraSans-Light.woff") format("woff"),
       url("/files/theme/styles/webfonts/FiraSans-Light.ttf") format("truetype"),
       url("/files/theme/styles/webfonts/FiraSans-Light.svg#FiraSans-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

.hamburger {
  padding: 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover,
.hamburger.is-active:hover {
  opacity: 1;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #fff;
}
.hamburger-box {
  width: 35px;
  height: 22px;
  display: inline-block;
  position: relative;
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 35px;
  height: 2px;
  background-color: #000;
  border-radius: 0;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}

.hamburger--slider .hamburger-inner {
  top: 1px;
}
.hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 20px;
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5px, -8px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

.hamburger--slider-r .hamburger-inner {
  top: 1px;
}
.hamburger--slider-r .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider-r .hamburger-inner::after {
  top: 20px;
}
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(5px, -8px, 0);
  opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(90deg);
}

.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
body:after {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background: red;
  padding: 0.5em 0.75em;
  color: white;
  font-size: 14px;
  line-height: 1;
  font-weight: bold;
  z-index: 999;
}
/* MEDIA QUERIES */
/* X */
@media (min-width: 1401px) {
  body:after {
    content: "X";
  }
  #header > .inside {
    width: 90%;
  }
  #header .logo {
    top: 20px;
    position: absolute;
    left: -0.5vw;
  }
  .scrolled #header .logo {
    top: 10px;
  }
  #header .logo a {
    width: 225px;
    height: 125px;
  }
  #header .logo a:hover {
    transform: scale(1.06);
  }
  .scrolled #header .logo a {
    transform: scale(0.85);
    transform-origin: top left;
  }
  #header .top-bar {
    height: 45px;
  }
  .scrolled #header .top-bar {
    height: 35px;
  }
  #header .top-bar .quick-navigation a {
    padding: 0 20px;
  }
  #header .top-bar .language-switch {
    padding: 0 0 0 10px;
  }
  #header .top-bar .language-switch strong, #header .top-bar .language-switch a {
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
  }
  #header .bottom-bar .navigation ul strong, #header .bottom-bar .navigation ul a {
    padding: 30px 20px;
    font-size: 16px;
    font-weight: bold;
  }
  .scrolled #header .bottom-bar .navigation ul strong, .scrolled #header .bottom-bar .navigation ul a {
    padding: 18px 20px;
  }
  #footer .top-bar {
    width: 85%;
    padding: 150px 0 125px 0;
    flex-wrap: wrap;
  }
  #footer .bottom-bar {
    width: 85%;
    padding: 25px 0;
  }
  #footer h2 {
    font-size: 26px;
    font-weight: 300;
    margin: 0 0 25px 0;
  }
  #footer h3 {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.2;
  }
  #footer td:first-of-type {
    padding-right: 2em;
  }
  #footer p, #footer td {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
  }
  #footer .cta, #footer .office-hours, #footer .address, #footer .verband, #footer .social-media, #footer .logo {
    padding: 25px 0;
    padding-right: 100px;
  }
  #footer .cta {
    order: 1;
    flex: 1 1 60%;
  }
  #footer .office-hours {
    order: 3;
  }
  #footer .address {
    order: 4;
  }
  #footer .social-media {
    order: 5;
  }
  #footer .verband {
    order: 6;
    flex: 1 1 auto;
  }
  #footer .logo {
    padding-right: 0;
    display: flex;
    justify-content: flex-end;
    order: 2;
    flex: 1 1 40%;
    /* justify-content:flex-end; */
  }
  #footer .logo a {
    width: 180px;
    height: 90px;
  }
  #footer nav ul {
    display: flex;
    flex-wrap: wrap;
  }
  #footer nav li {
    padding: 0 20px;
    border-right: 2px solid #333333;
  }
  #footer nav li:first-of-type {
    padding-left: 0;
  }
  #footer nav li:last-of-type {
    border: 0;
    padding-right: 0;
  }
  #footer nav a, #footer nav strong {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
  }
  #layout-title > .inside {
    width: 85%;
    max-width: 1600px;
    padding: 200px 0 50px 0;
  }
  #layout-title .content-text .text {
    width: 60%;
  }
  #layout-title .content-text .image {
    width: 50%;
    margin-right: -10%;
  }
  #layout-title .scroll-down a {
    width: 80px;
    height: 60px;
    margin-left: -40px;
    background-size: 32px;
  }
  #layout-title h1 {
    margin: 0;
    font-size: 50px;
    font-weight: bold;
    line-height: 1.1;
  }
  #layout-title h2 {
    margin: 0 0 50px 0;
    font-size: 50px;
    font-weight: 300;
    line-height: 1.1;
  }
  #layout-navigation-path > .inside {
    width: 85%;
    max-width: 1600px;
    padding: 25px 0;
  }
  #layout-navigation-path li:before {
    padding: 0 10px;
  }
  #layout-navigation-path a, #layout-navigation-path li {
    font-size: 16px;
    font-weight: 300;
  }
  .button {
    display: inline-block;
    padding: 12px 78px 12px 22px;
    padding-right: 78px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    color: #000000 !important;
    border: 3px solid #000000;
    border-radius: 4px;
    position: relative;
    line-height: 1.3;
    transition: all 400ms;
    box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0);
    margin-top: 15px;
    cursor: pointer;
    background-color: transparent;
    hyphens: none;
  }
  .button:after {
    content: "";
    position: absolute;
    top: 7px;
    bottom: 7px;
    right: 0;
    width: 50px;
    background-image: url("/files/theme/images/icon-arrow-right.svg");
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    border-left: 3px dotted #000000;
  }
  .button:hover {
    background-color: #f6a800;
    transition: all 400ms;
    box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0.3);
    border: 3px solid #f6a800;
  }
  .button:hover:after {
    animation: slideRight 1s;
  }
  .frontpage #layout-title > .inside {
    padding: 200px 0 150px 0;
  }
  .frontpage #layout-title h1 {
    margin: 0 0 30px 0;
    font-size: 80px;
    font-weight: bold;
    line-height: 1.1;
  }
  #main .mod-article {
    padding: 150px 0;
  }
  #main .meta-navigation ul {
    width: 85%;
    max-width: 1600px;
  }
  #main .meta-navigation strong, #main .meta-navigation a {
    width: 100px;
    padding: 20px;
    font-size: 10px;
    font-weight: bold;
    line-height: 1.6;
  }
  #main .meta-navigation strong div:before, #main .meta-navigation a div:before {
    padding-top: 100%;
  }
  #main .meta-navigation strong span, #main .meta-navigation a span {
    padding-top: 10px;
    margin-top: 10px;
    border-top: 2px solid #000000;
  }
  #main .rs-columns:not(.w100) {
    width: 85%;
    max-width: 1600px;
  }
  #main .rs-column {
    flex: 1 1 100%;
    position: relative;
  }
  #main .rs-column.w33 {
    flex-basis: 33.333%;
  }
  #main .rs-column.w30 {
    flex-basis: 30%;
    padding-right: 100px;
  }
  #main .m-top {
    padding: 30px 0 0 0;
  }
  #main .p-top {
    padding: 150px 0 0 0;
  }
  #main .rs-column.gallery.prinzipien {
    margin: -10px;
  }
  #main .rs-column.gallery.prinzipien .content-text {
    padding: 10px;
    flex: 0 1 50%;
  }
  #main .rs-column.gallery.prinzipien .content-text .inside {
    padding: 40px 45px;
  }
  .frontpage #main .mod_newslist {
    margin: 0 -25px;
  }
  .frontpage #main .mod_newslist .layout_frontpage {
    padding: 0 25px;
    width: 33.33%;
  }
  .frontpage #main .mod_newslist h3 a {
    height: 250px;
    padding: 30px 35px;
    font-size: 26px;
    font-weight: bold;
    line-height: 1.4;
  }
  .frontpage #main .mod_newslist h3 a span {
    padding-right: 50px;
  }
  .frontpage #main .mod_newslist h3 a span:after {
    width: 24px;
    height: 24px;
  }
  .frontpage #main .stoerer {
    width: 230px;
    height: 116px;
    top: -58px;
    left: 75px;
    font-size: 30px;
    font-weight: bold;
  }
  .frontpage #main .stoerer:before, .frontpage #main .stoerer:after {
    border: 116px solid transparent;
  }
  .frontpage #main .stoerer:before {
    top: -116px;
    border-bottom: 58px solid #f6a800;
  }
  .frontpage #main .stoerer:after {
    top: 58px;
    border-top: 58px solid #f6a800;
  }
  .frontpage #main .content-text.angebot > .inside {
    padding: 75px;
  }
  .frontpage #main .content-text.angebot > .inside .text {
    width: 35%;
    order: 2;
    text-align: right;
    padding-left: 150px;
  }
  .frontpage #main .content-text.angebot > .inside .text h4 {
    font-size: 26px;
    font-weight: bold;
    line-height: 1.4;
    margin: 0 0 15px 0;
  }
  .frontpage #main .content-text.angebot > .inside .text h3 {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.2;
    margin: 0 0 30px 0;
  }
  .frontpage #main .content-text.angebot > .inside .text p {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.5;
    margin: 0 0 25px 0;
  }
  .frontpage #main .content-text.angebot > .inside .image {
    width: 65%;
    order: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .frontpage #main .content-text.angebot > .inside .image figure img {
    width: auto;
    max-height: 600px;
  }
  .frontpage #main .rs-column.first {
    padding-right: 37.5px;
  }
  .frontpage #main .rs-column.last {
    padding-left: 37.5px;
  }
  .frontpage #main .content-text.hohe-kachel .text {
    height: 700px;
    padding: 75px;
  }
  .frontpage #main .content-text.hohe-kachel .text h4 {
    font-size: 26px;
    font-weight: bold;
    margin: 0 0 0 0;
  }
  .frontpage #main .content-text.hohe-kachel .text h2 {
    font-size: 40px;
    font-weight: bold;
    margin: 0 0 30px 0;
  }
  .frontpage #main .content-text.hohe-kachel .text p {
    bottom: 43.3px;
    left: 75px;
    right: 75px;
    padding: 20px 0 0 0;
    margin: 0;
  }
  .frontpage #main .content-text.hohe-kachel .text p a {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    background-size: 24px;
    padding-right: 40px;
  }
  #main .content-image.w50 figure img {
    width: 50%;
  }
  #main h2 {
    font-size: 35px;
    font-weight: bold;
    line-height: 1.3;
    margin: 60px 0 30px 0;
  }
  #main h2 + h3 {
    margin-top: -1em;
    font-size: 30px;
    font-weight: 300;
    line-height: 1.4;
  }
  #main h3 {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.4;
    margin: 50px 0 25px 0;
  }
  #main h3 + h4 {
    margin-top: -1.125em;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.5;
  }
  #main h4 {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.5;
    margin: 50px 0 25px 0;
  }
  #main h4 + h5 {
    margin-top: -1.25em;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
  }
  #main h5 {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    margin: 40px 0 20px 0;
  }
  #main p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 20px 0;
  }
  #main .intro p, #main .intro {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.5;
    margin: 0 0 25px 0;
  }
  #main .content-text.produkt-kachel .image {
    order: 1;
    flex-grow: 1;
    margin: 35px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  #main .content-text.produkt-kachel .text {
    order: 2;
    padding: 0 35px 25px 35px;
  }
  #main .content-text.produkt-kachel .text p {
    /* @include margin($viewport, 100px, 0, 0, 0); */
    padding: 20px 0 0 0;
  }
  #main .content-text.produkt-kachel .text p a {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    background-size: 24px;
    padding-right: 40px;
  }
  #main .content-text.kachel {
    height: 100%;
  }
  #main .ce_text.kachel {
    height: 100%;
  }
  #main .content-text.kachel .image {
    order: 1;
  }
  #main .ce_text.kachel .image {
    order: 1;
  }
  #main .content-text.kachel .text {
    order: 2;
    flex-grow: 1;
    min-height: 200px;
    padding: 40px 45px 26.6px 45px;
  }
  #main .ce_text.kachel .text {
    order: 2;
    flex-grow: 1;
    min-height: 200px;
    padding: 40px 45px 26.6px 45px;
  }
  #main .ce_text.kachel .rte {
    margin: 100px 0 0 0;
    padding: 20px 0 0 0;
  }
  #main .content-text.kachel .text p {
    margin: 100px 0 0 0;
    padding: 20px 0 0 0;
  }
  #main .ce_text.kachel .rte p {
    margin: 100px 0 0 0;
    padding: 20px 0 0 0;
  }
  #main .content-text.kachel .text p a {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    background-size: 24px;
    padding-right: 40px;
  }
  #main .ce_text.kachel .rte p a {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    background-size: 24px;
    padding-right: 40px;
  }
  #main .rs-column.gallery {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
  }
  #main .rs-column.gallery .content-text {
    /* @include padding($viewport, 10px); */
    width: 50%;
  }
  #main .rs-column.gallery .content-text .inside {
    /* @include padding($viewport, 40px, 45px); */
  }
  #main .rs-column.gallery .produkt-kachel, #main .rs-column.gallery .kachel {
    width: 33.33%;
  }
  #main .content-filter .headline {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
    padding-bottom: 10px;
    margin-bottom: 25px;
    background-size: 1em;
  }
  #main .content-filter .sub-headline {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 5px;
  }
  #main .content-filter ul {
    margin: 0 0 25px 0;
    padding: 0 0 25px 0;
  }
  #main .content-filter ul li {
    margin-bottom: 5px;
  }
  #main .content-filter label {
    padding-left: 40px;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
  }
  #main .content-filter label:before {
    width: 24px;
    height: 24px;
  }
  #main .content-toplink {
    margin: 0 0 20px 0;
  }
  #main .content-text ul, #main .content-text ol {
    margin: 0 0 20px 0;
  }
  #main .content-text ul li, #main .content-text ol li {
    padding-left: 2em;
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
  }
  #main .content-text ul li:before, #main .content-text ol li:before {
    width: 1em;
    height: 1em;
    top: 0.25em;
  }
  #main .content-list {
    margin: 0 0 20px 0;
  }
  #main .content-list li {
    padding: 0 0 20px 44px;
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
  }
  #main .content-list li:before {
    width: 24px;
    height: 24px;
    top: -3px;
  }
  #main .content-gallery ul {
    margin: -4px;
  }
  #main .content-gallery li {
    padding: 4px;
    width: 25%;
  }
  #main .content-gallery li:first-of-type {
    width: 50%;
  }
  #main .content-gallery.produkte li {
    width: 50%;
  }
  #main .specs ul {
    margin: -20px -15px;
  }
  #main .specs li {
    width: 33.33%;
    padding: 20px 15px;
    margin: 0 0 0 0;
  }
  #main .specs li:after {
    left: 15px;
    right: 15px;
  }
  #main .specs h6 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.6;
  }
  #main .specs p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
  }
  #main .content-downloads li, #main .content-download li {
    font-size: 18px;
    font-weight: bold;
    padding: 25px 30px;
    margin: 0 0 8px 0;
  }
  #main .content-downloads a, #main .content-download a {
    padding: 11px 0 11px 47px;
    background-size: 32px auto;
  }
  .formbody .widget-submit button {
    display: inline-block;
    padding: 12px 78px 12px 22px;
    padding-right: 78px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    color: #000000 !important;
    border: 3px solid #000000;
    border-radius: 4px;
    position: relative;
    line-height: 1.3;
    transition: all 400ms;
    box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0);
    margin-top: 15px;
    cursor: pointer;
    background-color: transparent;
    hyphens: none;
  }
  .formbody .widget-submit button:after {
    content: "";
    position: absolute;
    top: 7px;
    bottom: 7px;
    right: 0;
    width: 50px;
    background-image: url("/files/theme/images/icon-arrow-right.svg");
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    border-left: 3px dotted #000000;
  }
  .formbody .widget-submit button:hover {
    background-color: #f6a800;
    transition: all 400ms;
    box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0.3);
    border: 3px solid #f6a800;
  }
  .formbody .widget-submit button:hover:after {
    animation: slideRight 1s;
  }
  .mod_cms_accept_tags form {
    width: 40vw;
    padding: 50px;
  }
  .mod_cms_accept_tags h1 {
    font-size: 35px;
    font-weight: bold;
    line-height: 1.3;
    margin: 0 0 20px 0;
  }
  .mod_cms_accept_tags .widget-checkbox {
    padding: 20px 20px 5px 20px;
    background-color: #f4f4f4;
  }
  .mod_cms_accept_tags .info, .mod_cms_accept_tags p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 30px 0;
  }
  .mod_cms_accept_tags .tags, .mod_cms_accept_tags p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 20px 0;
  }
  .mod_cms_accept_tags .widget-submit {
    margin-bottom: 0 !important;
  }
}
/* L */

  /* Mirror hero styling from #article-2 to #article-109 */
  #article-109 {
    position: static;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
  }

  #article-109 > .content-text.media.media--above {
    margin: 0 auto;
    width: 85%;
    display: grid;
    grid-template-columns: 60% 50%;
    align-items: center;
  }

  #article-109 > .content-text.media.media--above h1 {
    grid-column: 1;
    margin: 0;
  }

  #article-109 > .content-text.media.media--above .rte {
    grid-column: 1;
  }

  #article-109 > .content-text.media.media--above .rte p {
    margin: 0;
  }

  #article-109 > .content-text.media.media--above figure {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin-right: -10%;
    margin-bottom: 0;
  }

  #article-109 > .content-text.media.media--above figure img {
    display: block;
    width: 100%;
    height: auto;
  }

  #article-109 > .scroll-down.content-hyperlink a {
    position: absolute;
    display: block;
    bottom: 0;
    left: 50%;
    background-color: #ececec;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("/files/theme/images/icon-arrow-down.svg");
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    text-indent: -999px;
    animation: slideDown 2s infinite;
  }

  @media (min-width: 1401px) {
    #article-109 > .content-text.media.media--above {
      max-width: 1600px;
      padding: 200px 0 50px 0;
    }

    #article-109 > .scroll-down.content-hyperlink a {
      width: 80px;
      height: 60px;
      margin-left: -40px;
      background-size: 32px;
    }

    #article-109 > .content-text.media.media--above h1 {
      font-size: 50px;
      font-weight: bold;
      line-height: 1.1;
    }

    #article-109 > .content-text.media.media--above .rte h2 {
      margin: 0 0 50px 0;
      font-size: 50px;
      font-weight: 300;
      line-height: 1.1;
    }

    .frontpage #article-109 > .content-text.media.media--above {
      padding: 200px 0 150px 0;
    }

    .frontpage #article-109 > .content-text.media.media--above h1 {
      margin: 0 0 30px 0;
      font-size: 80px;
      font-weight: bold;
      line-height: 1.1;
    }
  }

  @media (min-width: 951px) and (max-width: 1400px) {
    #article-109 > .content-text.media.media--above {
      max-width: 1600px;
      padding: 162.5px 0 40px 0;
    }

    #article-109 > .scroll-down.content-hyperlink a {
      width: 80px;
      height: 60px;
      margin-left: -40px;
      background-size: 32px;
    }

    #article-109 > .content-text.media.media--above h1 {
      font-size: 40.2285714286px;
      font-weight: bold;
      line-height: 1.2;
    }

    #article-109 > .content-text.media.media--above .rte h2 {
      margin: 0 0 40px 0;
      font-size: 40.2285714286px;
      font-weight: 300;
      line-height: 1.2;
    }

    .frontpage #article-109 > .content-text.media.media--above {
      padding: 195px 0 130px 0;
    }

    .frontpage #article-109 > .content-text.media.media--above h1 {
      margin: 0 0 25.5px 0;
      font-size: 60.6714285714px;
      font-weight: bold;
      line-height: 1.1;
    }
  }

  @media (min-width: 641px) and (max-width: 950px) {
    #article-109 > .content-text.media.media--above {
      padding: 162.5px 0 40px 0;
      grid-template-columns: 100%;
    }

    #article-109 > .content-text.media.media--above h1 {
      grid-column: 1;
      order: 2;
      font-size: 40.2285714286px;
      font-weight: bold;
      line-height: 1.2;
    }

    #article-109 > .content-text.media.media--above .rte {
      grid-column: 1;
      order: 3;
      hyphens: auto;
    }

    #article-109 > .content-text.media.media--above .rte h2 {
      margin: 0 0 40px 0;
      font-size: 40.2285714286px;
      font-weight: 300;
      line-height: 1.2;
    }

    #article-109 > .content-text.media.media--above figure {
      grid-column: 1;
      grid-row: auto;
      order: 1;
      width: 100%;
      margin-right: -10%;
      margin-bottom: 56.25px;
    }

    #article-109 > .scroll-down.content-hyperlink a {
      width: 54px;
      height: 40px;
      margin-left: -27px;
      background-size: 40%;
    }

    .frontpage #article-109 > .content-text.media.media--above {
      padding: 162.5px 0 162.5px 0;
    }

    .frontpage #article-109 > .content-text.media.media--above h1 {
      margin: 0 0 25.5px 0;
      font-size: 60.6714285714px;
      font-weight: bold;
      line-height: 1.1;
    }
  }

  @media (min-width: 401px) and (max-width: 640px) {
    #article-109 > .content-text.media.media--above {
      padding: 154.375px 0 35px 0;
      grid-template-columns: 100%;
    }

    #article-109 > .content-text.media.media--above h1 {
      grid-column: 1;
      order: 2;
      font-size: 35.3428571429px;
      font-weight: bold;
      line-height: 1.2;
    }

    #article-109 > .content-text.media.media--above .rte {
      grid-column: 1;
      order: 3;
      hyphens: auto;
    }

    #article-109 > .content-text.media.media--above .rte h2 {
      margin: 0 0 35px 0;
      font-size: 35.3428571429px;
      font-weight: 300;
      line-height: 1.2;
    }

    #article-109 > .content-text.media.media--above figure {
      grid-column: 1;
      grid-row: auto;
      order: 1;
      width: 100%;
      margin-right: -10%;
      margin-bottom: 46.875px;
    }

    #article-109 > .scroll-down.content-hyperlink a {
      width: 54px;
      height: 40px;
      margin-left: -27px;
      background-size: 40%;
    }

    .frontpage #article-109 > .content-text.media.media--above {
      padding: 154.375px 0 118.75px 0;
    }

    .frontpage #article-109 > .content-text.media.media--above h1 {
      margin: 0 0 23.25px 0;
      font-size: 51.0071428571px;
      font-weight: bold;
      line-height: 1.1;
    }
  }

  @media (max-width: 400px) {
    #article-109 > .content-text.media.media--above {
      padding: 135px 0 30px 0;
      grid-template-columns: 100%;
    }

    #article-109 > .content-text.media.media--above h1 {
      grid-column: 1;
      order: 2;
      font-size: 30.4571428571px;
      font-weight: bold;
      line-height: 1.3;
    }

    #article-109 > .content-text.media.media--above .rte {
      grid-column: 1;
      order: 3;
      hyphens: auto;
    }

    #article-109 > .content-text.media.media--above .rte h2 {
      margin: 0 0 30px 0;
      font-size: 30.4571428571px;
      font-weight: 300;
      line-height: 1.3;
    }

    #article-109 > .content-text.media.media--above figure {
      grid-column: 1;
      grid-row: auto;
      order: 1;
      width: 100%;
      margin-right: -10%;
      margin-bottom: 37.5px;
    }

    #article-109 > .scroll-down.content-hyperlink a {
      width: 54px;
      height: 40px;
      margin-left: -27px;
      background-size: 40%;
    }

    .frontpage #article-109 > .content-text.media.media--above {
      padding: 120px 0 75px 0;
    }

    .frontpage #article-109 > .content-text.media.media--above h1 {
      margin: 0 0 21px 0;
      font-size: 41.3428571429px;
      font-weight: bold;
      line-height: 1.2;
    }
  }
@media (min-width: 951px) and (max-width: 1400px) {
  body:after {
    content: "L";
  }
  #header > .inside {
    width: 90%;
    position: relative;
    /*
		display:flex;
		align-items:center;
		justify-content:space-between;
		*/
  }
  #header .logo {
    top: 25px;
    position: absolute;
    left: -1vw;
  }
  .scrolled #header .logo {
    top: 20px;
  }
  #header .logo a {
    width: 180px;
    height: 90px;
  }
  #header .logo a:hover {
    transform: scale(1.06);
  }
  .scrolled #header .logo a {
    transform: scale(0.85);
    transform-origin: top left;
  }
  #header .top-bar {
    height: 45px;
  }
  .scrolled #header .top-bar {
    height: 35px;
  }
  #header .top-bar .quick-navigation a {
    padding: 0 20px;
  }
  #header .top-bar .language-switch {
    padding: 0 0 0 10px;
  }
  #header .top-bar .language-switch strong, #header .top-bar .language-switch a {
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
  }
  #header .bottom-bar {
    padding: 20px 0;
    height: 31px;
  }
  .scrolled #header .bottom-bar {
    padding: 10px 0;
  }
  #header .bottom-bar .navigation nav {
    background-position: calc((100% - 90%)/2) 25px;
    padding: 150px calc((100% - 90%)/2);
    width: 50%;
  }
  #header .bottom-bar .navigation nav ul strong, #header .bottom-bar .navigation nav ul a {
    padding: 25.5px 0;
    font-size: 15.5057142857px;
    font-weight: bold;
  }
  #footer .top-bar {
    width: 85%;
    padding: 97.5px 0 81.25px 0;
    flex-wrap: wrap;
  }
  #footer .bottom-bar {
    width: 85%;
    padding: 21.25px 0;
  }
  #footer h2 {
    font-size: 22.9485714286px;
    font-weight: 300;
    margin: 0 0 21.25px 0;
  }
  #footer h3 {
    font-size: 33.1285714286px;
    font-weight: bold;
    line-height: 1.3;
  }
  #footer td:first-of-type {
    padding-right: 2em;
  }
  #footer p, #footer td {
    font-size: 15.5057142857px;
    font-weight: 300;
    line-height: 1.6;
  }
  #footer .cta, #footer .office-hours, #footer .address, #footer .verband, #footer .social-media, #footer .logo {
    padding: 21.25px 0;
    padding-right: 70px;
  }
  #footer .cta {
    order: 1;
    flex: 1 1 60%;
  }
  #footer .office-hours {
    order: 3;
  }
  #footer .address {
    order: 4;
  }
  #footer .social-media {
    order: 5;
  }
  #footer .verband {
    order: 6;
    flex: 1 1 auto;
  }
  #footer .logo {
    padding-right: 0;
    display: flex;
    justify-content: flex-end;
    order: 2;
    flex: 1 1 40%;
    /* justify-content:flex-end; */
  }
  #footer .logo a {
    width: 180px;
    height: 90px;
  }
  #footer nav ul {
    display: flex;
    flex-wrap: wrap;
  }
  #footer nav li {
    padding: 0 20px;
    border-right: 2px solid #333333;
  }
  #footer nav li:first-of-type {
    padding-left: 0;
  }
  #footer nav li:last-of-type {
    border: 0;
    padding-right: 0;
  }
  #footer nav a, #footer nav strong {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
  }
  #layout-title > .inside {
    padding: 162.5px 0 40px 0;
  }
  #layout-title .content-text .text {
    width: 60%;
  }
  #layout-title .content-text .image {
    width: 50%;
    margin-right: -10%;
  }
  #layout-title .scroll-down a {
    width: 80px;
    height: 60px;
    margin-left: -40px;
    background-size: 32px;
  }
  #layout-title h1 {
    margin: 0;
    font-size: 40.2285714286px;
    font-weight: bold;
    line-height: 1.2;
  }
  #layout-title h2 {
    margin: 0 0 40px 0;
    font-size: 40.2285714286px;
    font-weight: 300;
    line-height: 1.2;
  }
  #layout-navigation-path > .inside {
    width: 85%;
    max-width: 1600px;
    padding: 21.25px 0;
  }
  #layout-navigation-path li:before {
    padding: 0 10px;
  }
  #layout-navigation-path a, #layout-navigation-path li {
    font-size: 15.5057142857px;
    font-weight: 300;
  }
  .button {
    display: inline-block;
    padding: 12px 58.5px 12px 22px;
    padding-right: 78px;
    font-size: 15.5057142857px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    color: #000000 !important;
    border: 3px solid #000000;
    border-radius: 4px;
    position: relative;
    line-height: 1.3;
    transition: all 400ms;
    box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0);
    margin-top: 15px;
    cursor: pointer;
    background-color: transparent;
    hyphens: none;
  }
  .button:after {
    content: "";
    position: absolute;
    top: 7px;
    bottom: 7px;
    right: 0;
    width: 50px;
    background-image: url("/files/theme/images/icon-arrow-right.svg");
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    border-left: 3px dotted #000000;
  }
  .button:hover {
    background-color: #f6a800;
    transition: all 400ms;
    box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0.3);
    border: 3px solid #f6a800;
  }
  .button:hover:after {
    animation: slideRight 1s;
  }
  .frontpage #layout-title > .inside {
    padding: 195px 0 130px 0;
  }
  .frontpage #layout-title h1 {
    margin: 0 0 25.5px 0;
    font-size: 60.6714285714px;
    font-weight: bold;
    line-height: 1.1;
  }
  #main .mod-article {
    padding: 97.5px 0;
  }
  #main .meta-navigation ul {
    width: 85%;
    max-width: 1600px;
  }
  #main .meta-navigation strong, #main .meta-navigation a {
    width: 100px;
    padding: 20px;
    font-size: 10.9714285714px;
    font-weight: bold;
    line-height: 1.6;
  }
  #main .meta-navigation strong div:before, #main .meta-navigation a div:before {
    padding-top: 100%;
  }
  #main .meta-navigation strong span, #main .meta-navigation a span {
    padding-top: 10px;
    margin-top: 10px;
    border-top: 2px solid #000000;
  }
  #main .rs-columns:not(.w100) {
    width: 85%;
    max-width: 1600px;
  }
  #main .rs-column {
    flex: 1 1 100%;
    position: relative;
  }
  #main .rs-column.w33 {
    flex-basis: 33.333%;
  }
  #main .rs-column.w30 {
    flex-basis: 40%;
    padding-right: 70px;
  }
  #main .m-top {
    padding: 25.5px 0 0 0;
  }
  #main .p-top {
    padding: 97.5px 0 0 0;
  }
  #main .rs-column.gallery.prinzipien {
    margin: -10px;
  }
  #main .rs-column.gallery.prinzipien .content-text {
    padding: 10px;
    flex: 0 1 50%;
  }
  #main .rs-column.gallery.prinzipien .content-text .inside {
    padding: 34px 38.25px;
  }
  .frontpage #main .mod_newslist {
    margin: 0 -21.25px;
  }
  .frontpage #main .mod_newslist .layout_frontpage {
    padding: 0 21.25px;
    width: 50%;
  }
  .frontpage #main .mod_newslist h3 a {
    height: 250px;
    padding: 25.5px 29.75px;
    font-size: 22.9485714286px;
    font-weight: bold;
    line-height: 1.5;
  }
  .frontpage #main .mod_newslist h3 a span {
    padding-right: 40px;
  }
  .frontpage #main .mod_newslist h3 a span:after {
    width: 24px;
    height: 24px;
  }
  .frontpage #main .stoerer {
    width: 176px;
    height: 88px;
    top: -44px;
    left: 56px;
    font-size: 25.89px;
    font-weight: bold;
  }
  .frontpage #main .stoerer:before, .frontpage #main .stoerer:after {
    border: 88px solid transparent;
  }
  .frontpage #main .stoerer:before {
    top: -88px;
    border-bottom: 44px solid #f6a800;
  }
  .frontpage #main .stoerer:after {
    top: 44px;
    border-top: 44px solid #f6a800;
  }
  .frontpage #main .content-text.angebot > .inside {
    padding: 56.25px;
  }
  .frontpage #main .content-text.angebot > .inside .text {
    width: 45%;
    order: 2;
    text-align: right;
    padding-left: 97.5px;
  }
  .frontpage #main .content-text.angebot > .inside .text h4 {
    font-size: 22.95px;
    font-weight: bold;
    line-height: 1.5;
    margin: 0 0 15px 0;
  }
  .frontpage #main .content-text.angebot > .inside .text h3 {
    font-size: 33.13px;
    font-weight: bold;
    line-height: 1.3;
    margin: 0 0 25.5px 0;
  }
  .frontpage #main .content-text.angebot > .inside .text p {
    font-size: 19.99px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 21.25px 0;
  }
  .frontpage #main .content-text.angebot > .inside .image {
    width: 55%;
    order: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .frontpage #main .content-text.angebot > .inside .image figure img {
    width: none;
    max-height: 600px;
  }
  .frontpage #main .rs-column.first {
    padding-right: 31.875px;
  }
  .frontpage #main .rs-column.last {
    padding-left: 31.875px;
  }
  .frontpage #main .content-text.hohe-kachel .text {
    height: 550px;
    padding: 56.25px;
  }
  .frontpage #main .content-text.hohe-kachel .text h4 {
    font-size: 22.95px;
    font-weight: bold;
    margin: 0 0 0 0;
  }
  .frontpage #main .content-text.hohe-kachel .text h2 {
    font-size: 33.13px;
    font-weight: bold;
    margin: 0 0 25.5px 0;
  }
  .frontpage #main .content-text.hohe-kachel .text p {
    bottom: 36.805px;
    left: 56.25px;
    right: 56.25px;
    padding: 20px 0 0 0;
    margin: 0;
  }
  .frontpage #main .content-text.hohe-kachel .text p a {
    font-size: 15.51px;
    font-weight: bold;
    line-height: 1.6;
    background-size: 24px;
    padding-right: 34px;
  }
  .frontpage #main .content-text.kachel {
    height: auto;
  }
  #main .content-image.w50 figure img {
    width: 50%;
  }
  #main h2 {
    font-size: 29.525px;
    font-weight: bold;
    line-height: 1.4;
    margin: 48px 0 25.5px 0;
  }
  #main h2 + h3 {
    margin-top: -1em;
    font-size: 25.89px;
    font-weight: 300;
    line-height: 1.4;
  }
  #main h3 {
    font-size: 25.89px;
    font-weight: bold;
    line-height: 1.4;
    margin: 40px 0 21.25px 0;
  }
  #main h3 + h4 {
    margin-top: -1.125em;
    font-size: 19.99px;
    font-weight: 300;
    line-height: 1.6;
  }
  #main h4 {
    font-size: 19.99px;
    font-weight: bold;
    line-height: 1.6;
    margin: 40px 0 21.25px 0;
  }
  #main h4 + h5 {
    margin-top: -1.25em;
    font-size: 17.0057142857px;
    font-weight: 300;
    line-height: 1.6;
  }
  #main h5 {
    font-size: 17.0057142857px;
    font-weight: 300;
    line-height: 1.6;
    margin: 34px 0 20px 0;
  }
  #main p {
    font-size: 17.0057142857px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 20px 0;
  }
  #main .intro p, #main .intro {
    font-size: 19.9885714286px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 21.25px 0;
  }
  #main .content-text.produkt-kachel .image {
    order: 1;
    flex-grow: 1;
    margin: 29.75px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  #main .content-text.produkt-kachel .text {
    order: 2;
    padding: 0 29.75px 21.25px 29.75px;
  }
  #main .content-text.produkt-kachel .text p {
    /* @include margin($viewport, 100px, 0, 0, 0); */
    padding: 20px 0 0 0;
  }
  #main .content-text.produkt-kachel .text p a {
    font-size: 15.5057142857px;
    font-weight: bold;
    line-height: 1.6;
    background-size: 24px;
    padding-right: 34px;
  }
  #main .content-text.kachel {
    height: 100%;
  }
  #main .ce_text.kachel {
    height: 100%;
  }
  #main .content-text.kachel .image {
    order: 1;
  }
  #main .ce_text.kachel .image {
    order: 1;
  }
  #main .content-text.kachel .text {
    order: 2;
    flex-grow: 1;
    min-height: 200px;
    padding: 34px 38.25px 22.61px 38.25px;
  }
  #main .ce_text.kachel .rte {
    order: 2;
    flex-grow: 1;
    min-height: 200px;
    padding: 34px 38.25px 22.61px 38.25px;
  }
  #main .content-text.kachel .text p {
    margin: 70px 0 0 0;
    padding: 20px 0 0 0;
  }
  #main .ce_text.kachel .rte p {
    margin: 70px 0 0 0;
    padding: 20px 0 0 0;
  }
  #main .content-text.kachel .text p a {
    font-size: 15.5057142857px;
    font-weight: bold;
    line-height: 1.6;
    background-size: 24px;
    padding-right: 34px;
  }
  #main .ce_text.kachel .rte p a {
    font-size: 15.5057142857px;
    font-weight: bold;
    line-height: 1.6;
    background-size: 24px;
    padding-right: 34px;
  }
  #main .rs-column.gallery {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
  }
  #main .rs-column.gallery .content-text {
    /* @include padding($viewport, 10px); */
    width: 50%;
  }
  #main .rs-column.gallery .content-text .inside {
    /* @include padding($viewport, 40px, 45px); */
  }
  #main .rs-column.gallery .produkt-kachel, #main .rs-column.gallery .kachel {
    width: 50%;
  }
  #main .content-filter .headline {
    font-size: 21.4714285714px;
    font-weight: bold;
    line-height: 1.5;
    padding-bottom: 10px;
    margin-bottom: 21.25px;
    background-size: 1em;
  }
  #main .content-filter .sub-headline {
    font-size: 17.0057142857px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 5px;
  }
  #main .content-filter ul {
    margin: 0 0 21.25px 0;
    padding: 0 0 21.25px 0;
  }
  #main .content-filter ul li {
    margin-bottom: 5px;
  }
  #main .content-filter label {
    padding-left: 34px;
    font-size: 17.0057142857px;
    font-weight: 300;
    line-height: 1.6;
  }
  #main .content-filter label:before {
    width: 24px;
    height: 24px;
  }
  #main .content-toplink {
    margin: 0 0 20px 0;
  }
  #main .content-text ul, #main .content-text ol {
    margin: 0 0 20px 0;
  }
  #main .content-text ul li, #main .content-text ol li {
    padding-left: 2em;
    margin: 0 0 10px 0;
    font-size: 17.0057142857px;
    font-weight: 300;
    line-height: 1.6;
  }
  #main .content-text ul li:before, #main .content-text ol li:before {
    width: 1em;
    height: 1em;
    top: 0.25em;
  }
  #main .content-list {
    margin: 0 0 20px 0;
  }
  #main .content-list li {
    padding: 0 0 20px 37.4px;
    margin: 0 0 20px 0;
    font-size: 17.0057142857px;
    font-weight: 300;
    line-height: 1.6;
  }
  #main .content-list li:before {
    width: 24px;
    height: 24px;
    top: -3px;
  }
  #main .content-gallery ul {
    margin: -4px;
  }
  #main .content-gallery li {
    padding: 4px;
    width: 25%;
  }
  #main .content-gallery li:first-of-type {
    width: 50%;
  }
  #main .content-gallery.produkte li {
    width: 50%;
  }
  #main .specs ul {
    margin: -20px -15px;
  }
  #main .specs li {
    width: 33.33%;
    padding: 20px 15px;
    margin: 0 0 0 0;
  }
  #main .specs li:after {
    left: 15px;
    right: 15px;
  }
  #main .specs h6 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.6;
  }
  #main .specs p {
    font-size: 17.0057142857px;
    font-weight: 300;
    line-height: 1.6;
  }
  #main .content-downloads li, #main .content-download li {
    font-size: 17.0057142857px;
    font-weight: bold;
    padding: 21.25px 25.5px;
    margin: 0 0 8px 0;
  }
  #main .content-downloads a, #main .content-download a {
    padding: 11px 0 11px 39.95px;
    background-size: 32px auto;
  }
  .formbody .widget-submit button {
    display: inline-block;
    padding: 12px 58.5px 12px 22px;
    padding-right: 78px;
    font-size: 15.5057142857px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    color: #000000 !important;
    border: 3px solid #000000;
    border-radius: 4px;
    position: relative;
    line-height: 1.3;
    transition: all 400ms;
    box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0);
    margin-top: 15px;
    cursor: pointer;
    background-color: transparent;
    hyphens: none;
  }
  .formbody .widget-submit button:after {
    content: "";
    position: absolute;
    top: 7px;
    bottom: 7px;
    right: 0;
    width: 50px;
    background-image: url("/files/theme/images/icon-arrow-right.svg");
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    border-left: 3px dotted #000000;
  }
  .formbody .widget-submit button:hover {
    background-color: #f6a800;
    transition: all 400ms;
    box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0.3);
    border: 3px solid #f6a800;
  }
  .formbody .widget-submit button:hover:after {
    animation: slideRight 1s;
  }
  .mod_cms_accept_tags form {
    width: 55vw;
    padding: 40px;
  }
  .mod_cms_accept_tags h1 {
    font-size: 29.525px;
    font-weight: bold;
    line-height: 1.4;
    margin: 0 0 20px 0;
  }
  .mod_cms_accept_tags .widget-checkbox {
    padding: 20px 20px 5px 20px;
    background-color: #f4f4f4;
  }
  .mod_cms_accept_tags .info, .mod_cms_accept_tags p {
    font-size: 18.5px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 25.5px 0;
  }
  .mod_cms_accept_tags .tags, .mod_cms_accept_tags p {
    font-size: 15.5057142857px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 20px 0;
  }
  .mod_cms_accept_tags .widget-submit {
    margin-bottom: 0 !important;
  }
}
/* M */
@media (min-width: 641px) and (max-width: 950px) {
  body:after {
    content: "M";
  }
  #header > .inside {
    width: 85%;
    position: relative;
    /*
		display:flex;
		align-items:center;
		justify-content:space-between;
		*/
  }
  #header .logo {
    top: 25px;
    position: absolute;
    left: -1vw;
  }
  .scrolled #header .logo {
    top: 20px;
  }
  #header .logo a {
    width: 180px;
    height: 90px;
  }
  #header .logo a:hover {
    transform: scale(1.06);
  }
  .scrolled #header .logo a {
    transform: scale(0.85);
    transform-origin: top left;
  }
  #header .top-bar {
    height: 45px;
  }
  .scrolled #header .top-bar {
    height: 35px;
  }
  #header .top-bar .quick-navigation a {
    padding: 0 20px;
  }
  #header .top-bar .language-switch {
    padding: 0 0 0 10px;
  }
  #header .top-bar .language-switch strong, #header .top-bar .language-switch a {
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
  }
  #header .bottom-bar {
    padding: 20px 0;
    height: 31px;
  }
  .scrolled #header .bottom-bar {
    padding: 10px 0;
  }
  #header .bottom-bar .navigation nav {
    background-position: calc((100% - 85%)/2) 25px;
    padding: 150px calc((100% - 85%)/2);
    width: 75%;
  }
  #header .bottom-bar .navigation nav ul strong, #header .bottom-bar .navigation nav ul a {
    padding: 25.5px 0;
    font-size: 15.5057142857px;
    font-weight: bold;
  }
  #footer .top-bar {
    width: 85%;
    padding: 97.5px 0 81.25px 0;
    flex-wrap: wrap;
  }
  #footer .bottom-bar {
    width: 85%;
    padding: 21.25px 0;
  }
  #footer h2 {
    font-size: 22.9485714286px;
    font-weight: 300;
    margin: 0 0 21.25px 0;
  }
  #footer h3 {
    font-size: 33.1285714286px;
    font-weight: bold;
    line-height: 1.3;
  }
  #footer td:first-of-type {
    padding-right: 2em;
  }
  #footer p, #footer td {
    font-size: 15.5057142857px;
    font-weight: 300;
    line-height: 1.6;
  }
  #footer .cta, #footer .office-hours, #footer .address, #footer .social-media, #footer .verband, #footer .logo {
    padding: 21.25px 0;
    flex: 1 0 100%;
  }
  #footer .address, #footer .office-hours {
    padding-right: 70px;
  }
  #footer .logo {
    padding-right: 0;
    display: flex;
    flex: 1 0 100%;
  }
  #footer .logo a {
    width: 180px;
    height: 90px;
  }
  #footer nav ul {
    display: flex;
    flex-wrap: wrap;
  }
  #footer nav li {
    padding: 0 20px;
    border-right: 0px solid #333333;
    flex: 1 1 100%;
    padding: 0;
  }
  #footer nav a, #footer nav strong {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
  }
  #layout-title > .inside {
    width: 85%;
    padding: 162.5px 0 40px 0;
  }
  #layout-title .content-text > .inside {
    flex-wrap: wrap;
  }
  #layout-title .content-text .text {
    width: 100%;
    hyphens: auto;
    order: 2;
  }
  #layout-title .content-text .image {
    width: 100%;
    margin-right: -10%;
    order: 1;
    margin-bottom: 56.25px;
  }
  #layout-title .scroll-down a {
    width: 54px;
    height: 40px;
    margin-left: -27px;
    background-size: 40%;
  }
  #layout-title h1 {
    margin: 0;
    font-size: 40.2285714286px;
    font-weight: bold;
    line-height: 1.2;
  }
  #layout-title h2 {
    margin: 0 0 40px 0;
    font-size: 40.2285714286px;
    font-weight: 300;
    line-height: 1.2;
  }
  #layout-navigation-path > .inside {
    width: 85%;
    padding: 21.25px 0;
  }
  #layout-navigation-path li:before {
    padding: 0 10px;
  }
  #layout-navigation-path a, #layout-navigation-path li {
    font-size: 15.5057142857px;
    font-weight: 300;
  }
  .button {
    display: inline-block;
    padding: 12px 58.5px 12px 22px;
    padding-right: 78px;
    font-size: 15.5057142857px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    color: #000000 !important;
    border: 3px solid #000000;
    border-radius: 4px;
    position: relative;
    line-height: 1.3;
    transition: all 400ms;
    box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0);
    margin-top: 15px;
    cursor: pointer;
    background-color: transparent;
    hyphens: none;
  }
  .button:after {
    content: "";
    position: absolute;
    top: 7px;
    bottom: 7px;
    right: 0;
    width: 50px;
    background-image: url("/files/theme/images/icon-arrow-right.svg");
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    border-left: 3px dotted #000000;
  }
  .button:hover {
    background-color: #f6a800;
    transition: all 400ms;
    box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0.3);
    border: 3px solid #f6a800;
  }
  .button:hover:after {
    animation: slideRight 1s;
  }
  .frontpage #layout-title > .inside {
    padding: 162.5px 0 162.5px 0;
  }
  .frontpage #layout-title h1 {
    margin: 0 0 25.5px 0;
    font-size: 60.6714285714px;
    font-weight: bold;
    line-height: 1.1;
  }
  #main .mod-article,
  #main .mod_article {
    padding: 97.5px 0;
  }
  #main .meta-navigation {
    overflow-x: auto;
  }
  #main .meta-navigation ul {
    width: 85%;
  }
  #main .meta-navigation strong, #main .meta-navigation a {
    width: 100px;
    padding: 20px;
    font-size: 10.9714285714px;
    font-weight: bold;
    line-height: 1.6;
  }
  #main .meta-navigation strong div:before, #main .meta-navigation a div:before {
    padding-top: 100%;
  }
  #main .meta-navigation strong span, #main .meta-navigation a span {
    padding-top: 10px;
    margin-top: 10px;
    border-top: 2px solid #000000;
  }
  #main .rs-columns:not(.w100) {
    width: 85%;
    flex-wrap: wrap;
  }
  #main .rs-column {
    flex: 1 1 100%;
    position: relative;
  }
  #main .rs-column.w33 {
    flex-basis: 100%;
  }
  #main .rs-column.w30 {
    flex-basis: 100%;
  }
  #main .m-top {
    padding: 25.5px 0 0 0;
  }
  #main .p-top {
    padding: 97.5px 0 0 0;
  }
  #main .rs-column.gallery.prinzipien {
    margin: -10px;
  }
  #main .rs-column.gallery.prinzipien .content-text {
    padding: 10px;
    flex: 0 1 50%;
  }
  #main .rs-column.gallery.prinzipien .content-text .inside {
    padding: 34px 38.25px;
  }
  .frontpage #main .mod_newslist {
    margin: -21.25px 0;
    flex-wrap: wrap;
  }
  .frontpage #main .mod_newslist .layout_frontpage {
    padding: 21.25px 0;
    width: 100%;
  }
  .frontpage #main .mod_newslist h3 a {
    height: 250px;
    padding: 25.5px 29.75px;
    font-size: 22.9485714286px;
    font-weight: bold;
    line-height: 1.5;
  }
  .frontpage #main .mod_newslist h3 a span {
    padding-right: 40px;
  }
  .frontpage #main .mod_newslist h3 a span:after {
    width: 24px;
    height: 24px;
  }
  .frontpage #main .stoerer {
    width: 176px;
    height: 88px;
    top: -44px;
    left: 56px;
    font-size: 25.89px;
    font-weight: bold;
  }
  .frontpage #main .stoerer:before, .frontpage #main .stoerer:after {
    border: 88px solid transparent;
  }
  .frontpage #main .stoerer:before {
    top: -88px;
    border-bottom: 44px solid #f6a800;
  }
  .frontpage #main .stoerer:after {
    top: 44px;
    border-top: 44px solid #f6a800;
  }
  .frontpage #main .content-text.angebot > .inside {
    padding: 56.25px;
    flex-wrap: wrap;
  }
  .frontpage #main .content-text.angebot > .inside .text {
    order: 2;
  }
  .frontpage #main .content-text.angebot > .inside .text h4 {
    font-size: 22.95px;
    font-weight: bold;
    line-height: 1.5;
    margin: 0 0 15px 0;
  }
  .frontpage #main .content-text.angebot > .inside .text h3 {
    font-size: 33.13px;
    font-weight: bold;
    line-height: 1.3;
    margin: 0 0 25.5px 0;
  }
  .frontpage #main .content-text.angebot > .inside .text p {
    font-size: 19.99px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 21.25px 0;
  }
  .frontpage #main .content-text.angebot > .inside .image {
    order: 1;
    margin-bottom: 40px;
  }
  .frontpage #main .content-text.angebot > .inside .image figure img {
    width: 100%;
  }
  .frontpage #main .rs-column.first {
    padding-bottom: 31.875px;
  }
  .frontpage #main .rs-column.last {
    padding-top: 31.875px;
  }
  .frontpage #main .content-text.hohe-kachel .inside {
    position: relative;
    z-index: 2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
  }
  /* Spezifisch f�r die Maschinen-Kachel */
  .frontpage #main .rs-column.first .content-text.hohe-kachel .inside {
    background-image: url('/files/theme/Startseite/kachel_maschinen.png') !important;
  }
  /* Spezifisch f�r die Werkzeuge-Kachel */
  .frontpage #main .rs-column.last .content-text.hohe-kachel .inside {
    background-image: url('/files/theme/Startseite/kachel_werkzeuge.png') !important;
  }
  .frontpage #main .content-text.hohe-kachel .text {
    height: 550px;
    padding: 56.25px;
  }
  .frontpage #main .content-text.hohe-kachel .text h4 {
    font-size: 22.95px;
    font-weight: bold;
    margin: 0 0 0 0;
  }
  .frontpage #main .content-text.hohe-kachel .text h2 {
    font-size: 33.13px;
    font-weight: bold;
    margin: 0 0 25.5px 0;
  }
  .frontpage #main .content-text.hohe-kachel .text p {
    bottom: 36.805px;
    left: 56.25px;
    right: 56.25px;
    padding: 20px 0 0 0;
    margin: 0;
  }
  .frontpage #main .content-text.hohe-kachel .text p a {
    font-size: 15.51px;
    font-weight: bold;
    line-height: 1.6;
    background-size: 24px;
    padding-right: 34px;
  }
  #main .content-image.w50 figure img {
    width: 50%;
  }
  #main h2 {
    font-size: 29.525px;
    font-weight: bold;
    line-height: 1.4;
    margin: 48px 0 25.5px 0;
  }
  #main h2 + h3 {
    margin-top: -1em;
    font-size: 25.89px;
    font-weight: 300;
    line-height: 1.4;
  }
  #main h3 {
    font-size: 25.89px;
    font-weight: bold;
    line-height: 1.4;
    margin: 40px 0 21.25px 0;
  }
  #main h3 + h4 {
    margin-top: -1.125em;
    font-size: 19.99px;
    font-weight: 300;
    line-height: 1.6;
  }
  #main h4 {
    font-size: 19.99px;
    font-weight: bold;
    line-height: 1.6;
    margin: 40px 0 21.25px 0;
  }
  #main h4 + h5 {
    margin-top: -1.25em;
    font-size: 17.0057142857px;
    font-weight: 300;
    line-height: 1.6;
  }
  #main h5 {
    font-size: 17.0057142857px;
    font-weight: 300;
    line-height: 1.6;
    margin: 34px 0 20px 0;
  }
  #main p {
    font-size: 17.0057142857px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 20px 0;
  }
  #main .intro p, #main .intro {
    font-size: 19.9885714286px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 21.25px 0;
  }
  #main .content-text.produkt-kachel .image {
    order: 1;
    flex-grow: 1;
    margin: 29.75px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  #main .content-text.produkt-kachel .text {
    order: 2;
    padding: 0 29.75px 21.25px 29.75px;
  }
  #main .content-text.produkt-kachel .text p {
    /* @include margin($viewport, 100px, 0, 0, 0); */
    padding: 20px 0 0 0;
  }
  #main .content-text.produkt-kachel .text p a {
    font-size: 15.5057142857px;
    font-weight: bold;
    line-height: 1.6;
    background-size: 24px;
    padding-right: 34px;
  }
  #main .content-text.kachel {
    /* height:100%; */
  }
  #main .content-text.kachel .image {
    order: 1;
  }
  #main .content-text.kachel .text {
    order: 2;
    flex-grow: 1;
    min-height: 150px;
    padding: 34px 38.25px 22.61px 38.25px;
  }
  #main .content-text.kachel .text p {
    margin: 70px 0 0 0;
    padding: 20px 0 0 0;
  }
  #main .content-text.kachel .text p a {
    font-size: 15.5057142857px;
    font-weight: bold;
    line-height: 1.6;
    background-size: 24px;
    padding-right: 34px;
  }
  #main .rs-column.gallery {
    display: flex;
    flex-wrap: wrap;
    padding-top: 29.75px;
    margin: -15px;
  }
  #main .rs-column.gallery .content-text {
    width: 50%;
  }
  #main .rs-column.gallery .content-text .inside {
    /* @include padding($viewport, 40px, 45px); */
  }
  #main .rs-column.gallery .produkt-kachel, #main .rs-column.gallery .kachel {
    width: 50%;
  }
  #main .content-filter .headline {
    font-size: 21.4714285714px;
    font-weight: bold;
    line-height: 1.5;
    padding-bottom: 10px;
    margin-bottom: 21.25px;
    background-size: 1em;
  }
  #main .content-filter .sub-headline {
    font-size: 17.0057142857px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 5px;
  }
  #main .content-filter ul {
    margin: 0 0 21.25px 0;
    padding: 0 0 21.25px 0;
  }
  #main .content-filter ul li {
    margin-bottom: 5px;
  }
  #main .content-filter label {
    padding-left: 34px;
    font-size: 17.0057142857px;
    font-weight: 300;
    line-height: 1.6;
  }
  #main .content-filter label:before {
    width: 24px;
    height: 24px;
  }
  #main .content-toplink {
    margin: 0 0 20px 0;
  }
  #main .content-text ul, #main .content-text ol {
    margin: 0 0 20px 0;
  }
  #main .content-text ul li, #main .content-text ol li {
    padding-left: 2em;
    margin: 0 0 10px 0;
    font-size: 17.0057142857px;
    font-weight: 300;
    line-height: 1.6;
  }
  #main .content-text ul li:before, #main .content-text ol li:before {
    width: 1em;
    height: 1em;
    top: 0.25em;
  }
  #main .content-list {
    margin: 0 0 20px 0;
  }
  #main .content-list li {
    padding: 0 0 20px 37.4px;
    margin: 0 0 20px 0;
    font-size: 17.0057142857px;
    font-weight: 300;
    line-height: 1.6;
  }
  #main .content-list li:before {
    width: 24px;
    height: 24px;
    top: -3px;
  }
  #main .content-gallery ul {
    margin: -4px;
  }
  #main .content-gallery li {
    padding: 4px;
    width: 25%;
  }
  #main .content-gallery li:first-of-type {
    width: 50%;
  }
  #main .content-gallery.produkte li {
    width: 50%;
  }
  #main .specs ul {
    margin: -20px -15px;
  }
  #main .specs li {
    width: 50%;
    padding: 20px 15px;
    margin: 0 0 0 0;
  }
  #main .specs li:after {
    left: 15px;
    right: 15px;
  }
  #main .specs h6 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.6;
  }
  #main .specs p {
    font-size: 17.0057142857px;
    font-weight: 300;
    line-height: 1.6;
  }
  #main .content-downloads li, #main .content-download li {
    font-size: 17.0057142857px;
    font-weight: bold;
    padding: 21.25px 25.5px;
    margin: 0 0 8px 0;
  }
  #main .content-downloads a, #main .content-download a {
    padding: 11px 0 11px 39.95px;
    background-size: 32px auto;
  }
  .formbody .widget-submit button {
    display: inline-block;
    padding: 12px 58.5px 12px 22px;
    padding-right: 78px;
    font-size: 15.5057142857px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    color: #000000 !important;
    border: 3px solid #000000;
    border-radius: 4px;
    position: relative;
    line-height: 1.3;
    transition: all 400ms;
    box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0);
    margin-top: 15px;
    cursor: pointer;
    background-color: transparent;
    hyphens: none;
  }
  .formbody .widget-submit button:after {
    content: "";
    position: absolute;
    top: 7px;
    bottom: 7px;
    right: 0;
    width: 50px;
    background-image: url("/files/theme/images/icon-arrow-right.svg");
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    border-left: 3px dotted #000000;
  }
  .formbody .widget-submit button:hover {
    background-color: #f6a800;
    transition: all 400ms;
    box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0.3);
    border: 3px solid #f6a800;
  }
  .formbody .widget-submit button:hover:after {
    animation: slideRight 1s;
  }
  .mod_cms_accept_tags form {
    width: 70vw;
    padding: 40px;
  }
  .mod_cms_accept_tags h1 {
    font-size: 29.525px;
    font-weight: bold;
    line-height: 1.4;
    margin: 0 0 20px 0;
  }
  .mod_cms_accept_tags .widget-checkbox {
    padding: 20px 20px 5px 20px;
    background-color: #f4f4f4;
  }
  .mod_cms_accept_tags .info, .mod_cms_accept_tags p {
    font-size: 18.5px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 25.5px 0;
  }
  .mod_cms_accept_tags .tags, .mod_cms_accept_tags p {
    font-size: 15.5057142857px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 20px 0;
  }
  .mod_cms_accept_tags .widget-submit {
    margin-bottom: 0 !important;
  }
}
/* S */
@media (min-width: 401px) and (max-width: 640px) {
  body:after {
    content: "S";
  }
  #header > .inside {
    width: 85%;
    position: relative;
    /*
		display:flex;
		align-items:center;
		justify-content:space-between;
		*/
  }
  #header .logo {
    top: 25px;
    position: absolute;
    left: -2vw;
  }
  .scrolled #header .logo {
    top: 25px;
  }
  #header .logo a {
    width: 40vw;
    max-width: 180px;
    height: 20vw;
    max-height: 90px;
  }
  #header .logo a:hover {
    transform: scale(1.06);
  }
  .scrolled #header .logo a {
    transform: scale(0.85);
    transform-origin: top left;
  }
  #header .top-bar {
    height: 45px;
  }
  .scrolled #header .top-bar {
    height: 35px;
  }
  #header .top-bar .quick-navigation a {
    padding: 0 16px;
  }
  #header .top-bar .language-switch {
    padding: 0 0 0 10px;
  }
  #header .top-bar .language-switch strong, #header .top-bar .language-switch a {
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
  }
  #header .bottom-bar {
    padding: 10px 0;
    height: 31px;
  }
  #header .bottom-bar .navigation nav {
    background-position: calc((100% - 85%)/2) 25px;
    padding: 150px calc((100% - 85%)/2);
    width: 100%;
  }
  #header .bottom-bar .navigation nav ul strong, #header .bottom-bar .navigation nav ul a {
    padding: 23.25px 0;
    font-size: 15.2585714286px;
    font-weight: bold;
  }
  #footer .top-bar {
    width: 85%;
    padding: 71.25px 0 59.375px 0;
    flex-wrap: wrap;
  }
  #footer .bottom-bar {
    width: 85%;
    padding: 19.375px 0;
  }
  #footer h2 {
    font-size: 21.4228571429px;
    font-weight: 300;
    margin: 0 0 19.375px 0;
  }
  #footer h3 {
    font-size: 29.6928571429px;
    font-weight: bold;
    line-height: 1.4;
  }
  #footer td:first-of-type {
    padding-right: 2em;
  }
  #footer p, #footer td {
    font-size: 15.2585714286px;
    font-weight: 300;
    line-height: 1.6;
  }
  #footer .cta, #footer .office-hours, #footer .address, #footer .social-media, #footer .verband, #footer .logo {
    padding: 19.375px 0;
    flex: 1 0 100%;
  }
  #footer .cta {
    padding-right: 35px;
  }
  #footer .logo {
    padding-right: 0;
    display: flex;
  }
  #footer .logo a {
    /* justify-content:flex-end; */
    width: 40vw;
    height: 20vw;
  }
  #footer nav ul {
    display: flex;
    flex-wrap: wrap;
  }
  #footer nav li {
    padding: 0 20px;
    border-right: 0px solid #333333;
    flex: 1 1 100%;
    padding: 0;
  }
  #footer nav a, #footer nav strong {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
  }
  #layout-title > .inside {
    width: 85%;
    padding: 154.375px 0 35px 0;
  }
  #layout-title .content-text > .inside {
    flex-wrap: wrap;
  }
  #layout-title .content-text .text {
    width: 100%;
    hyphens: auto;
    order: 2;
  }
  #layout-title .content-text .image {
    width: 100%;
    margin-right: -10%;
    order: 1;
    margin-bottom: 46.875px;
  }
  #layout-title .scroll-down a {
    width: 54px;
    height: 40px;
    margin-left: -27px;
    background-size: 40%;
  }
  #layout-title h1 {
    margin: 0;
    font-size: 35.3428571429px;
    font-weight: bold;
    line-height: 1.2;
  }
  #layout-title h2 {
    margin: 0 0 35px 0;
    font-size: 35.3428571429px;
    font-weight: 300;
    line-height: 1.2;
  }
  #layout-navigation-path > .inside {
    width: 85%;
    padding: 19.375px 0;
  }
  #layout-navigation-path li:before {
    padding: 0 10px;
  }
  #layout-navigation-path a, #layout-navigation-path li {
    font-size: 15.2585714286px;
    font-weight: 300;
  }
  .button {
    display: inline-block;
    padding: 12px 48.75px 12px 22px;
    padding-right: 78px;
    font-size: 15.2585714286px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    color: #000000 !important;
    border: 3px solid #000000;
    border-radius: 4px;
    position: relative;
    line-height: 1.3;
    transition: all 400ms;
    box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0);
    margin-top: 15px;
    cursor: pointer;
    background-color: transparent;
    hyphens: none;
  }
  .button:after {
    content: "";
    position: absolute;
    top: 7px;
    bottom: 7px;
    right: 0;
    width: 50px;
    background-image: url("/files/theme/images/icon-arrow-right.svg");
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    border-left: 3px dotted #000000;
  }
  .button:hover {
    background-color: #f6a800;
    transition: all 400ms;
    box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0.3);
    border: 3px solid #f6a800;
  }
  .button:hover:after {
    animation: slideRight 1s;
  }
  .frontpage #layout-title > .inside {
    padding: 154.375px 0 118.75px 0;
  }
  .frontpage #layout-title h1 {
    margin: 0 0 23.25px 0;
    font-size: 51.0071428571px;
    font-weight: bold;
    line-height: 1.1;
  }
  #main .mod-article {
    padding: 71.25px 0;
  }
  #main .meta-navigation {
    overflow-x: auto;
  }
  #main .meta-navigation ul {
    width: 85%;
  }
  #main .meta-navigation strong, #main .meta-navigation a {
    width: 100px;
    padding: 20px;
    font-size: 11.4571428571px;
    font-weight: bold;
    line-height: 1.6;
  }
  #main .meta-navigation strong div:before, #main .meta-navigation a div:before {
    padding-top: 100%;
  }
  #main .meta-navigation strong span, #main .meta-navigation a span {
    padding-top: 10px;
    margin-top: 10px;
    border-top: 2px solid #000000;
  }
  #main .rs-columns:not(.w100) {
    width: 85%;
    flex-wrap: wrap;
  }
  #main .rs-column {
    flex: 1 1 100%;
    position: relative;
  }
  #main .rs-column.w33 {
    flex-basis: 100%;
  }
  #main .rs-column.w30 {
    flex-basis: 100%;
  }
  #main .m-top {
    padding: 23.25px 0 0 0;
  }
  #main .p-top {
    padding: 71.25px 0 0 0;
  }
  #main .rs-column.gallery.prinzipien {
    margin: -10px;
  }
  #main .rs-column.gallery.prinzipien .content-text {
    padding: 10px;
    flex: 0 1 100%;
  }
  #main .rs-column.gallery.prinzipien .content-text .inside {
    padding: 31px 34.875px;
  }
  .frontpage #main .mod_newslist {
    margin: -19.375px 0;
    flex-wrap: wrap;
  }
  .frontpage #main .mod_newslist .layout_frontpage {
    padding: 19.375px 0;
    width: 100%;
  }
  .frontpage #main .mod_newslist h3 a {
    height: 250px;
    padding: 23.25px 27.125px;
    font-size: 21.4228571429px;
    font-weight: bold;
    line-height: 1.5;
  }
  .frontpage #main .mod_newslist h3 a span {
    padding-right: 35px;
  }
  .frontpage #main .mod_newslist h3 a span:after {
    width: 24px;
    height: 24px;
  }
  .frontpage #main .stoerer {
    width: 146px;
    height: 74px;
    top: -37px;
    left: 47px;
    font-size: 20.8160714286px;
    font-weight: bold;
  }
  .frontpage #main .stoerer:before, .frontpage #main .stoerer:after {
    border: 74px solid transparent;
  }
  .frontpage #main .stoerer:before {
    top: -74px;
    border-bottom: 37px solid #f6a800;
  }
  .frontpage #main .stoerer:after {
    top: 37px;
    border-top: 37px solid #f6a800;
  }
  .frontpage #main .content-text.angebot > .inside {
    padding: 46.875px;
    flex-wrap: wrap;
  }
  .frontpage #main .content-text.angebot > .inside .text {
    order: 2;
  }
  .frontpage #main .content-text.angebot > .inside .text h4 {
    font-size: 21.42px;
    font-weight: bold;
    line-height: 1.5;
    margin: 0 0 15px 0;
  }
  .frontpage #main .content-text.angebot > .inside .text h3 {
    font-size: 29.69px;
    font-weight: bold;
    line-height: 1.4;
    margin: 0 0 23.25px 0;
  }
  .frontpage #main .content-text.angebot > .inside .text p {
    font-size: 18.98px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 19.38px 0;
  }
  .frontpage #main .content-text.angebot > .inside .image {
    order: 1;
    margin-bottom: 35px;
  }
  .frontpage #main .content-text.angebot > .inside .image figure img {
    width: 100%;
  }
  .frontpage #main .rs-column.first {
    padding-bottom: 29.0625px;
  }
  .frontpage #main .rs-column.last {
    padding-top: 29.0625px;
  }
  .frontpage #main .content-text.hohe-kachel .inside {
    position: relative;
    z-index: 2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
  }
  /* Spezifisch f�r die Maschinen-Kachel */
  .frontpage #main .rs-column.first .content-text.hohe-kachel .inside {
    background-image: url('/files/theme/Startseite/kachel_maschinen.png') !important;
  }
  /* Spezifisch f�r die Werkzeuge-Kachel */
  .frontpage #main .rs-column.last .content-text.hohe-kachel .inside {
    background-image: url('/files/theme/Startseite/kachel_werkzeuge.png') !important;
  }
  .frontpage #main .content-text.hohe-kachel .text {
    height: 475px;
    padding: 46.875px;
  }
  .frontpage #main .content-text.hohe-kachel .text h4 {
    font-size: 21.4228571429px;
    font-weight: bold;
    margin: 0 0 0 0;
  }
  .frontpage #main .content-text.hohe-kachel .text h2 {
    font-size: 29.6928571429px;
    font-weight: bold;
    margin: 0 0 23.25px 0;
  }
  .frontpage #main .content-text.hohe-kachel .text p {
    bottom: 33.5575px;
    left: 46.875px;
    right: 46.875px;
    padding: 20px 0 0 0;
    margin: 0;
  }
  .frontpage #main .content-text.hohe-kachel .text p a {
    font-size: 15.2585714286px;
    font-weight: bold;
    line-height: 1.6;
    background-size: 24px;
    padding-right: 31px;
  }
  #main h2 {
    font-size: 26.7875px;
    font-weight: bold;
    line-height: 1.4;
    margin: 42px 0 23.25px 0;
  }
  #main h2 + h3 {
    margin-top: -1em;
    font-size: 23.8285714286px;
    font-weight: 300;
    line-height: 1.5;
  }
  #main h3 {
    font-size: 23.8285714286px;
    font-weight: bold;
    line-height: 1.5;
    margin: 35px 0 19.375px 0;
  }
  #main h3 + h4 {
    margin-top: -1.125em;
    font-size: 18.9828571429px;
    font-weight: 300;
    line-height: 1.6;
  }
  #main h4 {
    font-size: 18.9828571429px;
    font-weight: bold;
    line-height: 1.6;
    margin: 35px 0 19.375px 0;
  }
  #main h4 + h5 {
    margin-top: -1.25em;
    font-size: 16.5085714286px;
    font-weight: 300;
    line-height: 1.6;
  }
  #main h5 {
    font-size: 16.5085714286px;
    font-weight: 300;
    line-height: 1.6;
    margin: 31px 0 20px 0;
  }
  #main p {
    font-size: 16.5085714286px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 20px 0;
  }
  #main .intro p, #main .intro {
    font-size: 18.9828571429px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 19.375px 0;
  }
  #main .content-text.produkt-kachel .image {
    order: 1;
    flex-grow: 1;
    margin: 27.125px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  #main .content-text.produkt-kachel .text {
    order: 2;
    padding: 0 27.125px 19.375px 27.125px;
  }
  #main .content-text.produkt-kachel .text p {
    /* @include margin($viewport, 100px, 0, 0, 0); */
    padding: 20px 0 0 0;
  }
  #main .content-text.produkt-kachel .text p a {
    font-size: 15.2585714286px;
    font-weight: bold;
    line-height: 1.6;
    background-size: 24px;
    padding-right: 31px;
  }
  #main .content-text.kachel {
    /* height:100%; */
  }
  #main .content-text.kachel .image {
    order: 1;
  }
  #main .content-text.kachel .text {
    order: 2;
    flex-grow: 1;
    min-height: 150px;
    padding: 31px 34.875px 20.615px 34.875px;
  }
  #main .content-text.kachel .text p {
    margin: 55px 0 0 0;
    padding: 20px 0 0 0;
  }
  #main .content-text.kachel .text p a {
    font-size: 15.2585714286px;
    font-weight: bold;
    line-height: 1.6;
    background-size: 24px;
    padding-right: 31px;
  }
  #main .rs-column.gallery {
    flex-wrap: wrap;
    padding-top: 27.125px;
    margin: -15px;
  }
  #main .rs-column.gallery .content-text {
    padding: 10px;
    width: 50%;
  }
  #main .rs-column.gallery .content-text .inside {
    /* @include padding($viewport, 40px, 45px); */
  }
  #main .rs-column.gallery .produkt-kachel, #main .rs-column.gallery .kachel {
    width: 100%;
  }
  #main .content-filter .headline {
    font-size: 20.2071428571px;
    font-weight: bold;
    line-height: 1.5;
    padding-bottom: 10px;
    margin-bottom: 19.375px;
    background-size: 1em;
  }
  #main .content-filter .sub-headline {
    font-size: 16.5085714286px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 5px;
  }
  #main .content-filter ul {
    margin: 0 0 19.375px 0;
    padding: 0 0 19.375px 0;
  }
  #main .content-filter ul li {
    margin-bottom: 5px;
  }
  #main .content-filter label {
    padding-left: 31px;
    font-size: 16.5085714286px;
    font-weight: 300;
    line-height: 1.6;
  }
  #main .content-filter label:before {
    width: 24px;
    height: 24px;
  }
  #main .content-toplink {
    margin: 0 0 20px 0;
  }
  #main .content-text ul, #main .content-text ol {
    margin: 0 0 20px 0;
  }
  #main .content-text ul li, #main .content-text ol li {
    padding-left: 2em;
    margin: 0 0 10px 0;
    font-size: 16.5085714286px;
    font-weight: 300;
    line-height: 1.6;
  }
  #main .content-text ul li:before, #main .content-text ol li:before {
    width: 1em;
    height: 1em;
    top: 0.25em;
  }
  #main .content-list {
    margin: 0 0 20px 0;
  }
  #main .content-list li {
    padding: 0 0 20px 34.1px;
    margin: 0 0 20px 0;
    font-size: 16.5085714286px;
    font-weight: 300;
    line-height: 1.6;
  }
  #main .content-list li:before {
    width: 24px;
    height: 24px;
    top: -3px;
  }
  #main .content-gallery ul {
    margin: -4px;
  }
  #main .content-gallery li {
    padding: 4px;
    width: 25%;
  }
  #main .content-gallery li:first-of-type {
    width: 50%;
  }
  #main .content-gallery.produkte li {
    width: 100%;
  }
  #main .specs ul {
    margin: -20px -15px;
  }
  #main .specs li {
    width: 100%;
    padding: 20px 15px;
    margin: 0 0 0 0;
  }
  #main .specs li:after {
    left: 15px;
    right: 15px;
  }
  #main .specs h6 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.6;
  }
  #main .specs p {
    font-size: 16.5085714286px;
    font-weight: 300;
    line-height: 1.6;
  }
  #main .content-downloads li, #main .content-download li {
    font-size: 16.5085714286px;
    font-weight: bold;
    padding: 19.375px 23.25px;
    margin: 0 0 8px 0;
  }
  #main .content-downloads a, #main .content-download a {
    padding: 11px 0 11px 36.425px;
    background-size: 32px auto;
  }
  .formbody .widget-submit button {
    display: inline-block;
    padding: 12px 48.75px 12px 22px;
    padding-right: 78px;
    font-size: 15.2585714286px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    color: #000000 !important;
    border: 3px solid #000000;
    border-radius: 4px;
    position: relative;
    line-height: 1.3;
    transition: all 400ms;
    box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0);
    margin-top: 15px;
    cursor: pointer;
    background-color: transparent;
    hyphens: none;
  }
  .formbody .widget-submit button:after {
    content: "";
    position: absolute;
    top: 7px;
    bottom: 7px;
    right: 0;
    width: 50px;
    background-image: url("/files/theme/images/icon-arrow-right.svg");
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    border-left: 3px dotted #000000;
  }
  .formbody .widget-submit button:hover {
    background-color: #f6a800;
    transition: all 400ms;
    box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0.3);
    border: 3px solid #f6a800;
  }
  .formbody .widget-submit button:hover:after {
    animation: slideRight 1s;
  }
  .mod_cms_accept_tags form {
    width: 90vw;
    padding: 35px;
  }
  .mod_cms_accept_tags h1 {
    font-size: 26.7875px;
    font-weight: bold;
    line-height: 1.4;
    margin: 0 0 20px 0;
  }
  .mod_cms_accept_tags .widget-checkbox {
    padding: 20px 20px 5px 20px;
    background-color: #f4f4f4;
  }
  .mod_cms_accept_tags .info, .mod_cms_accept_tags p {
    font-size: 17.75px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 23.25px 0;
  }
  .mod_cms_accept_tags .tags, .mod_cms_accept_tags p {
    font-size: 15.2585714286px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 20px 0;
  }
  .mod_cms_accept_tags .widget-submit {
    margin-bottom: 0 !important;
  }
}
/* XS */
@media (max-width: 400px) {
  body:after {
    content: "XS";
  }
  #header > .inside {
    width: 85%;
    position: relative;
    /*
		display:flex;
		align-items:center;
		justify-content:space-between;
		*/
  }
  #header .logo {
    top: 25px;
    position: absolute;
    left: -3vw;
  }
  .scrolled #header .logo {
    top: 25px;
  }
  #header .logo a {
    width: 40vw;
    max-width: 180px;
    height: 20vw;
    max-height: 90px;
  }
  #header .logo a:hover {
    transform: scale(1.06);
  }
  .scrolled #header .logo a {
    transform: scale(0.85);
    transform-origin: top left;
  }
  #header .top-bar {
    height: 45px;
  }
  .scrolled #header .top-bar {
    height: 35px;
  }
  #header .top-bar .quick-navigation a {
    padding: 0 12px;
  }
  #header .top-bar .language-switch {
    padding: 0 0 0 10px;
  }
  #header .top-bar .language-switch strong, #header .top-bar .language-switch a {
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
  }
  #header .bottom-bar {
    padding: 10px 0;
    height: 31px;
  }
  #header .bottom-bar .navigation nav {
    background-position: calc((100% - 85%)/2) 25px;
    padding: 150px calc((100% - 85%)/2);
    width: 100%;
  }
  #header .bottom-bar .navigation nav ul strong, #header .bottom-bar .navigation nav ul a {
    padding: 21px 0;
    font-size: 15.0114285714px;
    font-weight: bold;
  }
  #footer .top-bar {
    width: 85%;
    padding: 45px 0 37.5px 0;
    flex-wrap: wrap;
  }
  #footer .bottom-bar {
    width: 85%;
    padding: 17.5px 0;
  }
  #footer h2 {
    font-size: 19.8971428571px;
    font-weight: 300;
    margin: 0 0 17.5px 0;
  }
  #footer h3 {
    font-size: 26.2571428571px;
    font-weight: bold;
    line-height: 1.4;
  }
  #footer td:first-of-type {
    padding-right: 2em;
  }
  #footer p, #footer td {
    font-size: 15.0114285714px;
    font-weight: 300;
    line-height: 1.6;
  }
  #footer .cta, #footer .office-hours, #footer .address, #footer .social-media, #footer .verband, #footer .logo {
    padding: 17.5px 0;
    flex: 1 0 100%;
  }
  #footer .cta {
    padding-right: 30px;
  }
  #footer .logo {
    padding-right: 0;
    display: flex;
  }
  #footer .logo a {
    /* justify-content:flex-end; */
    width: 40vw;
    height: 20vw;
  }
  #footer nav ul {
    display: flex;
    flex-wrap: wrap;
  }
  #footer nav li {
    padding: 0 20px;
    border-right: 0px solid #333333;
    flex: 1 1 100%;
    padding: 0;
  }
  #footer nav a, #footer nav strong {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
  }
  #layout-title > .inside {
    width: 85%;
    padding: 135px 0 30px 0;
  }
  #layout-title .content-text > .inside {
    flex-wrap: wrap;
  }
  #layout-title .content-text .text {
    width: 100%;
    hyphens: auto;
    order: 2;
  }
  #layout-title .content-text .image {
    width: 100%;
    margin-right: -10%;
    order: 1;
    margin-bottom: 37.5px;
  }
  #layout-title .scroll-down a {
    width: 54px;
    height: 40px;
    margin-left: -27px;
    background-size: 40%;
  }
  #layout-title h1 {
    margin: 0;
    font-size: 30.4571428571px;
    font-weight: bold;
    line-height: 1.3;
  }
  #layout-title h2 {
    margin: 0 0 30px 0;
    font-size: 30.4571428571px;
    font-weight: 300;
    line-height: 1.3;
  }
  #layout-navigation-path > .inside {
    width: 85%;
    padding: 17.5px 0;
  }
  #layout-navigation-path li:before {
    padding: 0 10px;
  }
  #layout-navigation-path a, #layout-navigation-path li {
    font-size: 15.0114285714px;
    font-weight: 300;
  }
  .button {
    display: inline-block;
    padding: 12px 39px 12px 22px;
    padding-right: 78px;
    font-size: 15.0114285714px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    color: #000000 !important;
    border: 3px solid #000000;
    border-radius: 4px;
    position: relative;
    line-height: 1.3;
    transition: all 400ms;
    box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0);
    margin-top: 15px;
    cursor: pointer;
    background-color: transparent;
    hyphens: none;
  }
  .button:after {
    content: "";
    position: absolute;
    top: 7px;
    bottom: 7px;
    right: 0;
    width: 50px;
    background-image: url("/files/theme/images/icon-arrow-right.svg");
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    border-left: 3px dotted #000000;
  }
  .button:hover {
    background-color: #f6a800;
    transition: all 400ms;
    box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0.3);
    border: 3px solid #f6a800;
  }
  .button:hover:after {
    animation: slideRight 1s;
  }
  .frontpage #layout-title > .inside {
    padding: 120px 0 75px 0;
  }
  .frontpage #layout-title h1 {
    margin: 0 0 21px 0;
    font-size: 41.3428571429px;
    font-weight: bold;
    line-height: 1.2;
  }
  #main .mod-article {
    padding: 45px 0;
  }
  #main .meta-navigation {
    overflow-x: auto;
  }
  #main .meta-navigation ul {
    width: 85%;
  }
  #main .meta-navigation strong, #main .meta-navigation a {
    width: 100px;
    padding: 20px;
    font-size: 11.9428571429px;
    font-weight: bold;
    line-height: 1.6;
  }
  #main .meta-navigation strong div:before, #main .meta-navigation a div:before {
    padding-top: 100%;
  }
  #main .meta-navigation strong span, #main .meta-navigation a span {
    padding-top: 10px;
    margin-top: 10px;
    border-top: 2px solid #000000;
  }
  #main .rs-columns:not(.w100) {
    width: 85%;
    flex-wrap: wrap;
  }
  #main .rs-column {
    flex: 1 1 100%;
    position: relative;
  }
  #main .rs-column.w33 {
    flex-basis: 100%;
  }
  #main .rs-column.w30 {
    flex-basis: 100%;
  }
  #main .m-top {
    padding: 21px 0 0 0;
  }
  #main .p-top {
    padding: 45px 0 0 0;
  }
  #main .rs-column.gallery.prinzipien {
    margin: -10px;
  }
  #main .rs-column.gallery.prinzipien .content-text {
    padding: 10px;
    flex: 0 1 100%;
  }
  #main .rs-column.gallery.prinzipien .content-text .inside {
    padding: 28px 31.5px;
  }
  .frontpage #main .mod_newslist {
    margin: -17.5px 0;
    flex-wrap: wrap;
  }
  .frontpage #main .mod_newslist .layout_frontpage {
    padding: 17.5px 0;
    width: 100%;
  }
  .frontpage #main .mod_newslist h3 a {
    height: 250px;
    padding: 21px 24.5px;
    font-size: 19.8971428571px;
    font-weight: bold;
    line-height: 1.6;
  }
  .frontpage #main .mod_newslist h3 a span {
    padding-right: 30px;
  }
  .frontpage #main .mod_newslist h3 a span:after {
    width: 24px;
    height: 24px;
  }
  .frontpage #main .stoerer {
    width: 115px;
    height: 58px;
    top: -29px;
    left: 37.5px;
    font-size: 17px;
    font-weight: bold;
  }
  .frontpage #main .stoerer:before, .frontpage #main .stoerer:after {
    border: 58px solid transparent;
  }
  .frontpage #main .stoerer:before {
    top: -58px;
    border-bottom: 29px solid #f6a800;
  }
  .frontpage #main .stoerer:after {
    top: 29px;
    border-top: 29px solid #f6a800;
  }
  .frontpage #main .content-text.angebot > .inside {
    padding: 37.5px;
    flex-wrap: wrap;
  }
  .frontpage #main .content-text.angebot > .inside .text {
    order: 2;
  }
  .frontpage #main .content-text.angebot > .inside .text h4 {
    font-size: 19.9px;
    font-weight: bold;
    line-height: 1.6;
    margin: 0 0 15px 0;
  }
  .frontpage #main .content-text.angebot > .inside .text h3 {
    font-size: 26.26px;
    font-weight: bold;
    line-height: 1.4;
    margin: 0 0 21px 0;
  }
  .frontpage #main .content-text.angebot > .inside .text p {
    font-size: 17.98px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 17.5px 0;
  }
  .frontpage #main .content-text.angebot > .inside .image {
    order: 1;
    margin-bottom: 30px;
  }
  .frontpage #main .content-text.angebot > .inside .image figure img {
    width: 100%;
  }
  .frontpage #main .rs-column.first {
    padding-bottom: 26.25px;
  }
  .frontpage #main .rs-column.last {
    padding-top: 26.25px;
  }
  .frontpage #main .content-text.hohe-kachel .inside {
    background-size: contain;
  }
  .frontpage #main .content-text.hohe-kachel .text {
    height: 100vw;
    padding: 37.5px;
  }
  .frontpage #main .content-text.hohe-kachel .text h4 {
    font-size: 19.8971428571px;
    font-weight: bold;
    margin: 0 0 0 0;
  }
  .frontpage #main .content-text.hohe-kachel .text h2 {
    font-size: 26.2571428571px;
    font-weight: bold;
    margin: 0 0 21px 0;
  }
  .frontpage #main .content-text.hohe-kachel .text p {
    bottom: 30.31px;
    left: 37.5px;
    right: 37.5px;
    padding: 20px 0 0 0;
    margin: 0;
  }
  .frontpage #main .content-text.hohe-kachel .text p a {
    font-size: 15.0114285714px;
    font-weight: bold;
    line-height: 1.6;
    background-size: 24px;
    padding-right: 28px;
  }
  #main h2 {
    font-size: 24.05px;
    font-weight: bold;
    line-height: 1.5;
    margin: 36px 0 21px 0;
  }
  #main h2 + h3 {
    margin-top: -1em;
    font-size: 21.7714285714px;
    font-weight: 300;
    line-height: 1.5;
  }
  #main h3 {
    font-size: 21.7714285714px;
    font-weight: bold;
    line-height: 1.5;
    margin: 30px 0 17.5px 0;
  }
  #main h3 + h4 {
    margin-top: -1.125em;
    font-size: 17.9771428571px;
    font-weight: 300;
    line-height: 1.6;
  }
  #main h4 {
    font-size: 17.9771428571px;
    font-weight: bold;
    line-height: 1.6;
    margin: 30px 0 17.5px 0;
  }
  #main h4 + h5 {
    margin-top: -1.25em;
    font-size: 16.0114285714px;
    font-weight: 300;
    line-height: 1.6;
  }
  #main h5 {
    font-size: 16.0114285714px;
    font-weight: 300;
    line-height: 1.6;
    margin: 28px 0 20px 0;
  }
  #main p {
    font-size: 16.0114285714px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 20px 0;
  }
  #main .intro p, #main .intro {
    font-size: 17.9771428571px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 17.5px 0;
  }
  #main .content-text.produkt-kachel .image {
    order: 1;
    flex-grow: 1;
    margin: 24.5px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  #main .content-text.produkt-kachel .text {
    order: 2;
    padding: 0 24.5px 17.5px 24.5px;
  }
  #main .content-text.produkt-kachel .text p {
    /* @include margin($viewport, 100px, 0, 0, 0); */
    padding: 20px 0 0 0;
  }
  #main .content-text.produkt-kachel .text p a {
    font-size: 15.0114285714px;
    font-weight: bold;
    line-height: 1.6;
    background-size: 24px;
    padding-right: 28px;
  }
  #main .content-text.kachel {
    /* height:100%; */
  }
  #main .content-text.kachel .image {
    order: 1;
  }
  #main .content-text.kachel .text {
    order: 2;
    flex-grow: 1;
    min-height: 150px;
    padding: 28px 31.5px 18.62px 31.5px;
  }
  #main .content-text.kachel .text p {
    margin: 40px 0 0 0;
    padding: 20px 0 0 0;
  }
  #main .content-text.kachel .text p a {
    font-size: 15.0114285714px;
    font-weight: bold;
    line-height: 1.6;
    background-size: 24px;
    padding-right: 28px;
  }
  #main .rs-column.gallery {
    flex-wrap: wrap;
    padding-top: 24.5px;
    margin: -15px;
  }
  #main .rs-column.gallery .content-text {
    padding: 10px;
    width: 50%;
  }
  #main .rs-column.gallery .content-text .inside {
    /* @include padding($viewport, 40px, 45px); */
  }
  #main .rs-column.gallery .produkt-kachel, #main .rs-column.gallery .kachel {
    width: 100%;
  }
  #main .content-filter .headline {
    font-size: 18.9428571429px;
    font-weight: bold;
    line-height: 1.6;
    padding-bottom: 10px;
    margin-bottom: 17.5px;
    background-size: 1em;
  }
  #main .content-filter .sub-headline {
    font-size: 16.0114285714px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 5px;
  }
  #main .content-filter ul {
    margin: 0 0 17.5px 0;
    padding: 0 0 17.5px 0;
  }
  #main .content-filter ul li {
    margin-bottom: 5px;
  }
  #main .content-filter label {
    padding-left: 28px;
    font-size: 16.0114285714px;
    font-weight: 300;
    line-height: 1.6;
  }
  #main .content-filter label:before {
    width: 24px;
    height: 24px;
  }
  #main .content-toplink {
    margin: 0 0 20px 0;
  }
  #main .content-text ul, #main .content-text ol {
    margin: 0 0 20px 0;
  }
  #main .content-text ul li, #main .content-text ol li {
    padding-left: 2em;
    margin: 0 0 10px 0;
    font-size: 16.0114285714px;
    font-weight: 300;
    line-height: 1.6;
  }
  #main .content-text ul li:before, #main .content-text ol li:before {
    width: 1em;
    height: 1em;
    top: 0.25em;
  }
  #main .content-list {
    margin: 0 0 20px 0;
  }
  #main .content-list li {
    padding: 0 0 20px 30.8px;
    margin: 0 0 20px 0;
    font-size: 16.0114285714px;
    font-weight: 300;
    line-height: 1.6;
  }
  #main .content-list li:before {
    width: 24px;
    height: 24px;
    top: -3px;
  }
  #main .content-gallery ul {
    margin: -4px;
  }
  #main .content-gallery li {
    padding: 4px;
    width: 25%;
  }
  #main .content-gallery li:first-of-type {
    width: 50%;
  }
  #main .content-gallery.produkte li {
    width: 100%;
  }
  #main .specs ul {
    margin: -20px -15px;
  }
  #main .specs li {
    width: 100%;
    padding: 20px 15px;
    margin: 0 0 0 0;
  }
  #main .specs li:after {
    left: 15px;
    right: 15px;
  }
  #main .specs h6 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.6;
  }
  #main .specs p {
    font-size: 16.0114285714px;
    font-weight: 300;
    line-height: 1.6;
  }
  #main .content-downloads li, #main .content-download li {
    font-size: 16.0114285714px;
    font-weight: bold;
    padding: 17.5px 21px;
    margin: 0 0 8px 0;
  }
  #main .content-downloads a, #main .content-download a {
    padding: 11px 0 11px 32.9px;
    background-size: 32px auto;
  }
  .formbody .widget-submit button {
    display: inline-block;
    padding: 12px 39px 12px 22px;
    padding-right: 78px;
    font-size: 15.0114285714px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    color: #000000 !important;
    border: 3px solid #000000;
    border-radius: 4px;
    position: relative;
    line-height: 1.3;
    transition: all 400ms;
    box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0);
    margin-top: 15px;
    cursor: pointer;
    background-color: transparent;
    hyphens: none;
  }
  .formbody .widget-submit button:after {
    content: "";
    position: absolute;
    top: 7px;
    bottom: 7px;
    right: 0;
    width: 50px;
    background-image: url("/files/theme/images/icon-arrow-right.svg");
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    border-left: 3px dotted #000000;
  }
  .formbody .widget-submit button:hover {
    background-color: #f6a800;
    transition: all 400ms;
    box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0.3);
    border: 3px solid #f6a800;
  }
  .formbody .widget-submit button:hover:after {
    animation: slideRight 1s;
  }
  .mod_cms_accept_tags form {
    width: 100vw;
    padding: 30px;
  }
  .mod_cms_accept_tags h1 {
    font-size: 24.05px;
    font-weight: bold;
    line-height: 1.5;
    margin: 0 0 20px 0;
  }
  .mod_cms_accept_tags .widget-checkbox {
    padding: 20px 20px 5px 20px;
    background-color: #f4f4f4;
  }
  .mod_cms_accept_tags .info, .mod_cms_accept_tags p {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 21px 0;
  }
  .mod_cms_accept_tags .tags, .mod_cms_accept_tags p {
    font-size: 15.0114285714px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 20px 0;
  }
  .mod_cms_accept_tags .widget-submit {
    margin-bottom: 0 !important;
  }
}
/* Navi Normal */
@media (min-width: 1401px) {
  #header .hamburger {
    display: none;
  }
  #header .top-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-bottom: 2px solid #000000;
    height: 45px;
  }
  #header .top-bar .quick-navigation ul {
    display: flex;
  }
  #header .top-bar .quick-navigation li {
    border-right: 2px dotted #999999;
  }
  #header .top-bar .quick-navigation a {
    display: block;
    width: 20px;
    height: 20px;
    background-position: center;
    background-size: 20px;
    background-repeat: no-repeat;
    overflow: hidden;
    text-indent: -999px;
  }
  #header .top-bar .quick-navigation a.suchen {
    background-image: url("/files/theme/images/icon-search.svg");
  }
  #header .top-bar .quick-navigation a.email {
    background-image: url("/files/theme/images/icon-mail.svg");
  }
  #header .top-bar .quick-navigation a.anrufen {
    background-image: url("/files/theme/images/icon-phone.svg");
  }
  #header .top-bar .language-switch ul {
    display: flex;
  }
  #header .top-bar .language-switch strong, #header .top-bar .language-switch a {
    display: block;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
  }
  #header .top-bar .language-switch strong {
    color: white;
  }
  #header .top-bar .language-switch ul.last li.last a, #header .top-bar .language-switch ul.last li.last strong {
    padding-right: 0;
  }
  #header .bottom-bar {
    display: flex;
    justify-content: flex-end;
  }
  #header .bottom-bar .navigation ul.level_1 {
    display: flex;
  }
  #header .bottom-bar .navigation ul.level_1 > li {
    position: relative;
  }
  #header .bottom-bar .navigation ul.level_1 > li > strong, #header .bottom-bar .navigation ul.level_1 > li > a {
    display: block;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
    transition: all 400ms;
  }
  #header .bottom-bar .navigation ul.level_1 > li > a:hover {
    background: rgba(89, 89, 89, 0.25);
  }
  #header .bottom-bar .navigation ul.level_1 > li > a.trail, #header .bottom-bar .navigation ul.level_1 > li > strong {
    color: white;
  }
  #header .bottom-bar .navigation ul.level_1 > li.clicked > a, #header .bottom-bar .navigation ul.level_1 > li.clicked > strong {
    background: #000000;
    color: white;
  }
  #header .bottom-bar .navigation .clicked ul.level_2 {
    max-height: 500px;
  }
  #header .bottom-bar .navigation ul.level_2 {
    position: absolute;
    min-width: 100%;
    max-height: 0;
    overflow-y: hidden;
    transition: all 400ms;
  }
  #header .bottom-bar .navigation ul.level_2 > li > a, #header .bottom-bar .navigation ul.level_2 > li > strong {
    display: block;
    padding: 6px 30px;
    background: #000000;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    transition: all 400ms;
    min-width: 150px;
  }
  #header .bottom-bar .navigation ul.level_2 > li > a:hover, #header .bottom-bar .navigation ul.level_2 > li > strong:hover {
    color: #f6a800;
  }
  #header .bottom-bar .navigation ul.level_2 > li.first > a, #header .bottom-bar .navigation ul.level_2 > li.first > strong {
    padding-top: 20px;
  }
  #header .bottom-bar .navigation ul.level_2 > li.last > a, #header .bottom-bar .navigation ul.level_2 > li.last > strong {
    padding-bottom: 20px;
  }
}
/* Navi Mobile */
@media (max-width: 1400px) {
  body.locked {
    max-height: 100vh;
    overflow: hidden;
  }
  #header.is-active .bottom-bar nav {
    transform: translateX(0);
  }
  #header .hamburger {

/* Final fix: restore legacy p look in article-24 angebot */
#article-24 .angebot.content-text.media.media--above > .rte p,
#article-24 .angebot.content-text.media.media--above > .inside .rte p,
#article-24 .angebot.content-text.media.media--above .inside .text p {
  color: #000 !important;
}

@media (min-width: 1401px) {
  #article-24 .angebot.content-text.media.media--above > .rte p,
  #article-24 .angebot.content-text.media.media--above > .inside .rte p,
  #article-24 .angebot.content-text.media.media--above .inside .text p {
    font-size: 22px !important;
    font-weight: 300 !important;
    line-height: 1.5 !important;
    margin: 0 0 25px 0 !important;
  }
}

/* Final fix: restore legacy h4 look in article-24 angebot */
#article-24 .angebot.content-text.media.media--above > .rte h4,
#article-24 .angebot.content-text.media.media--above .inside .text h4 {
  color: #f6a800 !important;
}

@media (min-width: 1401px) {
  #article-24 .angebot.content-text.media.media--above > .rte h4,
  #article-24 .angebot.content-text.media.media--above .inside .text h4 {
    font-size: 26px !important;
    font-weight: bold !important;
    line-height: 1.4 !important;
    margin: 0 0 15px 0 !important;
  }
}
    position: absolute;
    z-index: 999;
    right: 0;
  }
  #header .hamburger .hamburger-box {
    margin-top: 0.2em;
  }
  #header .top-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-bottom: 2px solid #000000;
    height: 45px;
  }
  #header .top-bar .quick-navigation ul {
    display: flex;
  }
  #header .top-bar .quick-navigation li {
    border-right: 2px dotted #999999;
  }
  #header .top-bar .quick-navigation a {
    display: block;
    width: 20px;
    height: 20px;
    background-position: center;
    background-size: 20px;
    background-repeat: no-repeat;
    overflow: hidden;
    text-indent: -999px;
  }
  #header .top-bar .quick-navigation a.suchen {
    background-image: url("/files/theme/images/icon-search.svg");
  }
  #header .top-bar .quick-navigation a.email {
    background-image: url("/files/theme/images/icon-mail.svg");
  }
  #header .top-bar .quick-navigation a.anrufen {
    background-image: url("/files/theme/images/icon-phone.svg");
  }
  #header .top-bar .language-switch ul {
    display: flex;
  }
  #header .top-bar .language-switch strong, #header .top-bar .language-switch a {
    display: block;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
  }
  #header .top-bar .language-switch strong {
    color: white;
  }
  #header .top-bar .language-switch li.last a, #header .top-bar .language-switch li.last strong {
    padding-right: 0;
  }
  #header .bottom-bar {
    /* display:none; */
  }
  #header .bottom-bar nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    background-size: 160px 80px;
    background-repeat: no-repeat;
    background-image: url("/files/theme/images/cedima.svg");
    box-sizing: border-box;
    transform: translateX(100%);
    transition: all 400ms;
    overflow-y: auto;
  }
  #header .bottom-bar nav .hamburger {
    position: absolute;
    top: 30px;
    right: 75px;
    display: none;
  }
  #header .bottom-bar ul.level_1 > li {
    border-bottom: 2px solid #333333;
  }
  #header .bottom-bar ul.level_1 > li > a, #header .bottom-bar ul.level_1 > li > strong {
    display: block;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    transition: all 400ms;
  }
  #header .bottom-bar ul.level_1 > li > a.trail, #header .bottom-bar ul.level_1 > li > strong {
    color: #f6a800;
  }
  #header .bottom-bar ul.level_1 > li.submenu > a, #header .bottom-bar ul.level_1 > li.submenu > strong {
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 24px;
    background-image: url("/files/theme/images/icon-arrow-down-white.svg");
  }
  #header .bottom-bar ul.level_2 > li > a, #header .bottom-bar ul.level_2 > li > strong {
    display: block;
    padding: 6px 0;
    background: #000000;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    transition: all 400ms;
  }
  #header .bottom-bar ul.level_2 > li > a:hover, #header .bottom-bar ul.level_2 > li > strong:hover {
    color: #f6a800;
  }
  #header .bottom-bar ul.level_2 > li.last > a, #header .bottom-bar ul.level_2 > li.last > strong {
    padding-bottom: 30px;
  }
}
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body, input, textarea, select, button {
  font-family: "Fira Sans", "Arial", sans-serif;
}
.invisible {
  display: none !important;
}
::selection {
  background: #999999;
  color: white;
}
::-moz-selection {
  background: #999999;
  color: white;
}
#header {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
  transition: all 400ms;
}
.scrolled #header {
  background-color: #b3b3b3;
}
#header > .inside {
  margin: 0 auto;
  position: relative;
}
#header .logo {
  transition: all 400ms;
  overflow: visible;
}
#header .logo a {
  display: block;
  overflow: hidden;
  text-indent: -999px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url("/files/theme/images/cedima.svg");
  transition: all 400ms;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.35));
  -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.35));
  overflow: visible;
}
#header .top-bar, #header .bottom-bar {
  transition: all 400ms;
}
#header .top-bar .language-switch {
  display: flex;
}
#header ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer {
  background: #000000;
}
#footer .top-bar {
  margin: 0 auto;
  display: flex;
}
#footer .bottom-bar {
  margin: 0 auto;
  border-top: 2px solid #333333;
}
#footer h2 {
  color: #595959;
}
#footer h3 {
  margin: 0;
}
#footer h3 a {
  color: white;
  text-decoration: none;
  white-space: nowrap;
  transition: all 400ms;
  padding-left: 1.5em;
  display: inline-block;
  background-size: 1.1em;
  background-position: left center;
  background-repeat: no-repeat;
  margin-bottom: 0.25em;
}
#footer h3 a[href^="tel"] {
  background-image: url("/files/theme/images/icon-phone-gelb.svg");
}
#footer h3 a[href^="mailto"] {
  background-image: url("/files/theme/images/icon-mail-gelb.svg");
}
#footer h3 a:hover {
  color: #f6a800;
  transition: all 400ms;
}
#footer h3 a:last-of-type {
  margin-bottom: 0;
}
#footer table {
  border: 0;
  margin: 0;
  padding: 0;
  border-collapse: collapse;
  white-space: nowrap;
}
#footer p, #footer td {
  color: #d9d9d9;
  padding: 0;
}
#footer .cta, #footer .office-hours, #footer .address, #footer .social-media, #footer .verband, #footer .logo {
  box-sizing: border-box;
}
#footer .cta p, #footer .office-hours p, #footer .address p, #footer .social-media p, #footer .verband p, #footer .logo p {
  margin: 0;
}
#footer .logo a {
  display: block;
  overflow: hidden;
  text-indent: -999px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/files/theme/images/cedima.svg");
}
#footer .verband ul, #footer .social-media ul {
  margin: 0 -0.25em;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
#footer .verband li, #footer .social-media li {
  margin: 0;
  padding: 0 0.75em;
}
#footer .verband a, #footer .social-media a {
  display: block;
  width: 34px;
  height: 34px;
  overflow: hidden;
  text-indent: -999px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#footer .verband .facebook a, #footer .social-media .facebook a {
  background-image: url("/files/theme/images/icon-facebook.svg");
}
#footer .verband .instagram a, #footer .social-media .instagram a {
  background-image: url("/files/theme/images/icon-instagram.svg");
}
#footer .verband .youtube a, #footer .social-media .youtube a {
  background-image: url("/files/theme/images/icon-youtube.svg");
}
#footer .verband .linkedin a, #footer .social-media .linkedin a {
  background-image: url("/files/theme/images/icon-linkedin.svg");
}
#footer nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer nav li {
  display: block;
}
#footer nav a, #footer nav strong {
  color: #999999;
  text-decoration: none;
  transition: all 400ms;
}
#footer nav a:hover, #footer nav strong:hover {
  color: #f6a800;
  transition: all 400ms;
}
#footer nav strong {
  color: white;
}
#layout-title {
  background-image: url("/files/theme/images/head-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
#layout-title > .inside {
  margin: 0 auto;
  position: relative;
}
#layout-title .content-text .inside {
  display: flex;
}
#layout-title .content-text .text {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#layout-title .content-text figure {
  margin: 0;
  padding: 0;
  display: block;
}
#layout-title .content-text figure img {
  display: block;
  width: 100%;
  height: auto;
}
#layout-title .scroll-down a {
  position: absolute;
  display: block;
  bottom: 0;
  left: 50%;
  background-color: #ececec;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("/files/theme/images/icon-arrow-down.svg");
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  text-indent: -999px;
  animation: slideDown 2s infinite;
}
#layout-title p {
  margin: 0;
}
#layout-navigation-path {
  background: #ececec;
}
#layout-navigation-path > .inside {
  margin: 0 auto;
  border-bottom: 2px solid #d6d6d6;
}
#layout-navigation-path ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
#layout-navigation-path li {
  padding: 0;
  margin: 0;
}
#layout-navigation-path li:before {
  content: "/";
  color: #999999;
}
#layout-navigation-path li.first:before {
  display: none;
}
#layout-navigation-path a, #layout-navigation-path li {
  color: #333333;
  text-decoration: none;
}
#main .mod-article.no-padding,
#main .mod-article.angebote,
#main .mod-article.aktuell,
#main .mod_article.no-padding,
#main .mod_article.angebote,
#main .mod_article.aktuell {
  padding-bottom: 0;
}
#main .content-headline:first-child, #main .content-text h1:first-child, #main .content-text h2:first-child, #main .content-text h3:first-child, #main .content-text h4:first-child, #main .content-text h5:first-child {
  margin-top: 0 !important;
}
#main .c-grey {
  background: #ececec;
}
#main .c-grey .text p:last-child, #main .c-grey .text ul:last-child, #main .c-grey .text ol:last-child, #main .c-grey .text h1:last-child, #main .c-grey .text h2:last-child, #main .c-grey .text h3:last-child, #main .c-grey .text h4:last-child, #main .c-grey .text h5:last-child, #main .c-grey .text h6:last-child, #main .c-grey .text span:last-child, #main .c-grey .text div:last-child {
  margin-bottom: 0 !important;
}
#main .meta-navigation {
  padding: 0;
}
#main .meta-navigation ul {
  display: flex;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
#main .meta-navigation strong, #main .meta-navigation a {
  height: 100%;
  display: block;
  color: #000000;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 400ms;
}
#main .meta-navigation strong div, #main .meta-navigation a div {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#main .meta-navigation strong div:before, #main .meta-navigation a div:before {
  display: block;
  content: "";
}
#main .meta-navigation strong span, #main .meta-navigation a span {
  display: block;
}
#main .meta-navigation a:hover, #main .meta-navigation strong {
  background-color: white;
}
#main .rs-columns:not(.w100) {
  margin: 0 auto;
}
#main .rs-column.gallery.prinzipien .content-text:last-of-type {
  flex: 1 1 auto;
}
.frontpage #main .mod_newslist {
  display: flex;
}
.frontpage #main .mod_newslist .layout_frontpage {
  box-sizing: border-box;
}
.frontpage #main .mod_newslist .inside {
  background-color: #f6a800;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.frontpage #main .mod_newslist .overlay {
  z-index: 1;
  position: relative;
}
.frontpage #main .mod_newslist .overlay a:before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}
.frontpage #main .mod_newslist h3 {
  margin: 0;
}
.frontpage #main .mod_newslist h3 a {
  text-decoration: none;
  color: white;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.frontpage #main .mod_newslist h3 a span {
  position: relative;
  z-index: 2;
}
.frontpage #main .mod_newslist h3 a span:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.2em;
  background-position: center;
  background-size: cover;
  background-image: url("/files/theme/images/icon-arrow-right-white.svg");
  background-repeat: no-repeat;
}
.frontpage #main .stoerer {
  display: flex;
  margin: 0;
  padding: 0;
  justify-content: space-around;
  align-items: center;
  position: absolute;
  color: white;
  z-index: 1;
}
.frontpage #main .stoerer:before, .frontpage #main .stoerer:after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 0;
  height: 0;
  left: 0;
}
.frontpage #main .content-text.angebot {
  background: #ececec;
}
.frontpage #main .content-text.angebot > .inside {
  /*
		&:before{
			content:"";
			position:absolute;
			left:0;
			bottom:0;
			right:0;
			top:100%;
			background:linear-gradient(200deg, rgba(236,236,236,1) 45%, rgba(246,168,0,1) 85%);
			transition:all 400ms;
			background-position:top;
			opacity:0;
		}
		&:hover:before{
			top:0;
			opacity:1;
		}
		*/
  display: flex;
  position: relative;
  z-index: 2;
}
.frontpage #main .content-text.angebot > .inside .text h4 {
  color: #f6a800;
}
.frontpage #main .content-text.angebot > .inside .text h3 {
  color: #000000;
}
.frontpage #main .content-text.angebot > .inside .text p {
  color: #000000;
}
.frontpage #main .content-text.angebot > .inside .text p:last-child, .frontpage #main .content-text.angebot > .inside .text ul:last-child, .frontpage #main .content-text.angebot > .inside .text ol:last-child, .frontpage #main .content-text.angebot > .inside .text h1:last-child, .frontpage #main .content-text.angebot > .inside .text h2:last-child, .frontpage #main .content-text.angebot > .inside .text h3:last-child, .frontpage #main .content-text.angebot > .inside .text h4:last-child, .frontpage #main .content-text.angebot > .inside .text h5:last-child, .frontpage #main .content-text.angebot > .inside .text h6:last-child, .frontpage #main .content-text.angebot > .inside .text span:last-child, .frontpage #main .content-text.angebot > .inside .text div:last-child {
  margin-bottom: 0 !important;
}
.frontpage #main .content-text.angebot > .inside .image figure img {
  max-width: 100%;
}
.frontpage #main .content-text.hohe-kachel {
  box-sizing: border-box;
  transition: all 400ms;
  position: relative;
  background: #ececec;
}
.frontpage #main .content-text.hohe-kachel .inside {
  /*
		&:before{
			content:"";
			position:absolute;
			left:0;
			bottom:0;
			right:0;
			top:100%;
			background:linear-gradient(200deg, rgba(236,236,236,1) 45%, rgba(246,168,0,1) 85%);
			transition:all 400ms;
			background-position:top;
			opacity:0;
		}
		&:hover:before{
			top:0;
			opacity:1;
		}
		*/
  position: relative;
  z-index: 2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.frontpage #main .content-text.hohe-kachel .text {
  position: relative;
}
.frontpage #main .content-text.hohe-kachel .text h4 {
  color: #f6a800;
}
.frontpage #main .content-text.hohe-kachel .text h2 {
  color: #000000;
}
.frontpage #main .content-text.hohe-kachel .text p {
  position: absolute;
  border-top: 2px solid #000000;
}
.frontpage #main .content-text.hohe-kachel .text p a {
  color: #000000;
  display: block;
  text-decoration: none;
  background-image: url("/files/theme/images/icon-arrow-right.svg");
  background-position: center right;
  background-repeat: no-repeat;
}
#main .rs-columns {
  display: flex;
}
#main h2 {
  color: #000000;
  padding: 0;
}
#main h3 {
  color: #000000;
  padding: 0;
}
#main h4 {
  color: #000000;
  padding: 0;
}
/* article-24 angebot h4 override - ensure gold color across all breakpoints */
#article-24 .angebot h4 {
  color: #f6a800 !important;
}
#main h5 {
  color: #000000;
  padding: 0;
}
#main p {
  color: #333333;
}
#main strong {
  font-weight: bold;
}
#main a {
  text-decoration: none;
  color: #f6a800;
}

#main p {
  color: #333333;
}
#main figure {
  margin: 0;
  display: block;
}
#main figure img {
  width: 100%;
  display: block;
  height: auto;
}
#main .content-text.produkt-kachel .inside, #main .content-text.kachel .inside {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ececec;
  transition: all 400ms;
  /*
			&:hover{
				background:$farbeGelb;
				transition:all 400ms;
			}
			*/
}
#main .content-text.produkt-kachel .text, #main .content-text.kachel .text {
  display: flex;
  flex-wrap: wrap;
}
#main .content-text.produkt-kachel .text h1, #main .content-text.produkt-kachel .text h2, #main .content-text.produkt-kachel .text h3, #main .content-text.produkt-kachel .text h4, #main .content-text.produkt-kachel .text h5, #main .content-text.produkt-kachel .text h6, #main .content-text.produkt-kachel .text p, #main .content-text.kachel .text h1, #main .content-text.kachel .text h2, #main .content-text.kachel .text h3, #main .content-text.kachel .text h4, #main .content-text.kachel .text h5, #main .content-text.kachel .text h6, #main .content-text.kachel .text p {
  width: 100%;
}
#main .content-text.produkt-kachel .text p, #main .content-text.kachel .text p {
  border-top: 2px solid #000000;
  align-self: flex-end;
  margin: 0;
}
#main .content-text.produkt-kachel .text p a, #main .content-text.kachel .text p a {
  color: #000000;
  display: block;
  text-decoration: none;
  background-image: url("/files/theme/images/icon-arrow-right.svg");
  background-position: center right;
  background-repeat: no-repeat;
}
#main .content-text.produkt-kachel .text p em, #main .content-text.kachel .text p em {
  color: #333333;
  font-weight: 300;
  font-style: normal;
}
#main .content-text.produkt-kachel .image:before {
  content: "";
  display: block;
  padding-top: 75%;
}
#main .rs-column.gallery {
  display: flex;
  flex-wrap: wrap;
}
#main .ce_rs_column_start.gallery.rs-column {
  display: flex;
  flex-wrap: wrap;
}
#main .rs-column.gallery .content-text {
  box-sizing: border-box;
  margin-bottom: 0;
}
#main .rs-column.gallery .content-text .inside {
  background: #ececec;
  box-sizing: border-box;
}
#main .rs-column.gallery .content-text .inside .text p:last-child, #main .rs-column.gallery .content-text .inside .text div:last-child, #main .rs-column.gallery .content-text .inside .text ul:last-child, #main .rs-column.gallery .content-text .inside .text ol:last-child, #main .rs-column.gallery .content-text .inside .text h1:last-child, #main .rs-column.gallery .content-text .inside .text h2:last-child, #main .rs-column.gallery .content-text .inside .text h3:last-child, #main .rs-column.gallery .content-text .inside .text h4:last-child, #main .rs-column.gallery .content-text .inside .text h5:last-child, #main .rs-column.gallery .content-text .inside .text h6:last-child {
  margin-bottom: 0;
}
#main .rs-column.gallery .produkt-kachel, #main .rs-column.gallery .kachel {
  box-sizing: border-box;
}
#main .content-filter .headline {
  border-bottom: 2px solid #000000;
  background-image: url("/files/theme/images/icon-filter.svg");
  background-position: top 0.25em right;
  background-repeat: no-repeat;
}
#main .content-filter ul {
  list-style: none;
  border-bottom: 2px solid rgba(153, 153, 153, 0.5);
}

@media (min-width: 641px) and (max-width: 950px) {
  #main .ce_rs_column_start.gallery.rs-column {
    flex-wrap: wrap;
    padding-top: 29.75px;
    margin: -15px;
  }
}

#main .content-filter input[type="radio"] {
  visibility: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
}
#main .content-filter label {
  position: relative;
  cursor: pointer;
}
#main .content-filter label:before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  background-color: rgba(153, 153, 153, 0.5);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 400ms;
}
#main .content-filter input:checked + label:before {
  background-color: #f6a800;
  background-image: url("/files/theme/images/icon-check.svg");
}
#main .content-filter input:hover + label:before {
  background-color: #f6a800;
}
#main .content-toplink {
  text-align: right;
}
#main .content-toplink a {
  display: inline-block;
  padding-right: 1.5em;
  background-size: 16px;
  background-position: center right;
  background-repeat: no-repeat;
  background-image: url("/files/theme/images/icon-arrow-up-gelb.svg");
}
#main .content-text ul, #main .content-text ol {
  padding: 0;
  list-style: none;
}
#main .content-text ul li, #main .content-text ol li {
  border-bottom: 0px solid rgba(153, 153, 153, 0.5);
  position: relative;
}
#main .content-text ul li:before, #main .content-text ol li:before {
  content: "";
  position: absolute;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/files/theme/images/icon-arrow-right.svg");
  background-position: center;
}
#main .content-text {
  padding: 0;
  list-style: none;
}
#main .content-text li {
  border-bottom: 2px solid rgba(153, 153, 153, 0.5);
  position: relative;
}
#main .content-text li:before {
  content: "";
  position: absolute;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/files/theme/images/icon-arrow-right.svg");
  background-position: center;
}

@media (min-width: 641px) and (max-width: 950px) {
  #main .content-text ul li, #main .content-text ol li {
    padding-left: 2em;
    margin: 0 0 10px 0;
    font-size: 17.0057142857px;
    font-weight: 300;
    line-height: 1.6;
  }

  #main .content-text ul li:before, #main .content-text ol li:before {
    width: 1em;
    height: 1em;
    top: 0.25em;
  }
}
#main .content-image.produkte figure {
  background: #ececec;
}
#main .content-gallery ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
#main .content-gallery li {
  box-sizing: border-box;
}
#main .content-gallery figure {
  background: #ececec;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#main .content-slider ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#main .content-slider li {
  margin: 0;
  padding: 0;
  height: 300px;
}
#main .content-slider li a {
  display: block;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
#main .content-thumbnails ul {
  margin: -5px;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}
#main .content-thumbnails li {
  margin: 0;
  width: 10%;
  box-sizing: border-box;
  position: relative;
}
#main .content-thumbnails li:after {
  content: "";
  display: block;
  padding-top: 100%;
}
#main .content-thumbnails li a {
  position: absolute;
  background-color: #ececec;
  top: 5px;
  bottom: 5px;
  left: 5px;
  right: 5px;
  border: 5px solid #ececec;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 400ms;
}
#main .content-thumbnails li a.active {
  border-color: #f6a800;
}
#main .bx-wrapper {
  box-shadow: none;
  margin: 0 0 10px 0;
  padding: 10px;
  /* background:$farbeSchwarz6; */
  border: 0;
}
#main .bx-wrapper .bx-controls-direction a {
  background-color: transparent;
  background-size: 24px;
  background-position: center;
}
#main .bx-wrapper .bx-prev {
  background-image: url("/files/theme/images/icon-arrow-left.svg");
}
#main .bx-wrapper .bx-next {
  background-image: url("/files/theme/images/icon-arrow-right.svg");
}
#main .specs ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
#main .specs li {
  box-sizing: border-box;
  position: relative;
}
#main .specs li:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 2px;
  background: rgba(153, 153, 153, 0.5);
}
#main .specs h6 {
  text-transform: uppercase;
  margin: 0;
}
#main .specs p {
  margin: 0;
}
#main .content-downloads ul, #main .content-download ul,
#main .ce_downloads ul, #main .ce_download ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#main .content-downloads li, #main .content-download li,
#main .ce_downloads li, #main .ce_download li {
  background: #ececec;
}
#main .content-downloads a, #main .content-download a,
#main .ce_downloads a, #main .ce_download a {
  text-decoration: none;
  color: #000000;
  display: block;
  background-image: url("/files/theme/images/icon-file-pdf.svg");
  background-repeat: no-repeat;
  background-position: left center;
}
#main mark {
  background: #f6a800;
  color: #000000;
  display: inline-block;
  padding-left: 0.2em;
  padding-right: 0.2em;
}
.mod_search .even, .mod_search .odd {
  margin-bottom: 1em;
  padding: 1em 1.4em;
  background: #ececec;
}
.mod_search p.context {
  margin-bottom: 0 !important;
}
.mod_search .url {
  display: none;
}
.formbody .widget {
  margin-bottom: 20px;
}
.formbody p.error {
  color: red !important;
}
.formbody .widget-text label, .formbody .widget-textarea label {
  display: block;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  margin: 0 0 3px 0;
  color: #999999;
}
.formbody .widget-text input, .formbody .widget-text textarea, .formbody .widget-textarea input, .formbody .widget-textarea textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background-color: #f4f4f4;
  padding: 0.55em 1em;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  border: 2px solid #f4f4f4;
  transition: all 400ms;
  border-radius: 4px;
  outline: 0;
  background-position: left center;
}
.formbody .widget-text input.error, .formbody .widget-text textarea.error, .formbody .widget-textarea input.error, .formbody .widget-textarea textarea.error {
  border-color: red;
}
.formbody .widget-text input:hover, .formbody .widget-text input:focus, .formbody .widget-text textarea:hover, .formbody .widget-text textarea:focus, .formbody .widget-textarea input:hover, .formbody .widget-textarea input:focus, .formbody .widget-textarea textarea:hover, .formbody .widget-textarea textarea:focus {
  border: 2px solid #f6a800;
}
.formbody .widget-text input:focus, .formbody .widget-text textarea:focus, .formbody .widget-textarea input:focus, .formbody .widget-textarea textarea:focus {
  background-image: url("/files/theme/images/icon-arrow-right.svg");
  background-size: 1em;
  background-position: left 0.85em center;
  background-repeat: no-repeat;
  transition: all 400ms;
  padding-left: 2.5em;
}
.formbody .widget-select label {
  display: block;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  margin: 0 0 3px 0;
  color: #999999;
}
.formbody .widget-select select {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background-color: #f4f4f4;
  padding: 0.55em 1em;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  border: 2px solid #f4f4f4;
  transition: all 400ms;
  border-radius: 4px;
  outline: 0;
  appearance: none;
  background-image: url("/files/theme/images/icon-arrow-down.svg");
  background-repeat: no-repeat;
  background-position: right 0.85em center;
  background-size: 1em;
}
.formbody .widget-select select.error {
  border-color: red;
}
.formbody .widget-select select:hover, .formbody .widget-select select:focus {
  border-color: #f6a800;
}
.formbody .widget-checkbox legend {
  display: block;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  margin: 0 0 3px 0;
  color: #999999;
}
.formbody .widget-checkbox fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}
.formbody .widget-checkbox fieldset span:last-of-type label {
  margin-bottom: 0;
}
.formbody .widget-checkbox input {
  position: absolute;
  visibility: hidden;
}
.formbody .widget-checkbox label {
  display: block;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  position: relative;
  padding-left: 45px;
  cursor: pointer;
  transition: all 400ms;
  margin-bottom: 8px;
}
.formbody .widget-checkbox label:before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 0;
  top: 0;
  left: 0;
  background-color: #f4f4f4;
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 400ms;
  border-radius: 4px;
}
.formbody .widget-checkbox label:hover:before {
  background-color: #f6a800;
}
.formbody .widget-checkbox input:checked + label:before {
  background-image: url("/files/theme/images/icon-check.svg");
  background-color: #f6a800;
}
.formbody .widget-checkbox.error label:before {
  border-color: red;
}
body.cookie-bar-visible {
  height: 100vh;
  overflow-y: hidden;
}
.mod_cms_accept_tags {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(0, 0, 0, 0.4);
  overflow-y: auto;
  z-index: 10100;
}
.mod_cms_accept_tags form {
  margin: auto;
  background: white;
  box-sizing: border-box;
}
.mod_cms_accept_tags form .widget-checkbox label:before {
  background-color: white;
}
.mod_cms_accept_tags form button.all {
  background-color: rgba(0, 128, 0, 0.4);
}

/* Contao 5.3 compatibility mapping (4.13 -> 5.3) */
#main .content-text.angebot > .inside .rte h4 {
  color: #f6a800;
}
#main .content-text.angebot > .inside .rte h3 {
  color: #ffcc00;
  font-weight: 700;
}
#main .content-text.angebot > .inside .rte p {
  color: #000000;
}
#main .content-text.angebot > .inside .rte p:last-child,
#main .content-text.angebot > .inside .rte ul:last-child,
#main .content-text.angebot > .inside .rte ol:last-child,
#main .content-text.angebot > .inside .rte h1:last-child,
#main .content-text.angebot > .inside .rte h2:last-child,
#main .content-text.angebot > .inside .rte h3:last-child,
#main .content-text.angebot > .inside .rte h4:last-child,
#main .content-text.angebot > .inside .rte h5:last-child,
#main .content-text.angebot > .inside .rte h6:last-child,
#main .content-text.angebot > .inside .rte span:last-child,
#main .content-text.angebot > .inside .rte div:last-child {
  margin-bottom: 0 !important;
}
#main .content-text.angebot > .inside figure img {
  max-width: 100%;
}

#main .content-text.hohe-kachel .rte {
  position: relative;
}
#main .content-text.hohe-kachel .rte h4 {
  color: #f6a800;
}
#main .content-text.hohe-kachel .rte h2 {
  color: #000000;
}
#main .content-text.hohe-kachel .rte p {
  position: absolute;
  border-top: 2px solid #000000;
}
#main .content-text.hohe-kachel .rte p a {
  color: #000000;
  display: block;
  text-decoration: none;
  background-image: url("/files/theme/images/icon-arrow-right.svg");
  background-position: center right;
  background-repeat: no-repeat;
}

#main .content-text.produkt-kachel .rte,
#main .content-text.kachel .rte {
  display: flex;
  flex-wrap: wrap;
}
#main .content-text.produkt-kachel .rte h1,
#main .content-text.produkt-kachel .rte h2,
#main .content-text.produkt-kachel .rte h3,
#main .content-text.produkt-kachel .rte h4,
#main .content-text.produkt-kachel .rte h5,
#main .content-text.produkt-kachel .rte h6,
#main .content-text.produkt-kachel .rte p,
#main .content-text.kachel .rte h1,
#main .content-text.kachel .rte h2,
#main .content-text.kachel .rte h3,
#main .content-text.kachel .rte h4,
#main .content-text.kachel .rte h5,
#main .content-text.kachel .rte h6,
#main .content-text.kachel .rte p {
  width: 100%;
}
#main .content-text.produkt-kachel .rte p,
#main .content-text.kachel .rte p {
  border-top: 2px solid #000000;
  align-self: flex-end;
  margin: 0;
}
#main .content-text.produkt-kachel .rte p a,
#main .content-text.kachel .rte p a {
  color: #000000;
  display: block;
  text-decoration: none;
  background-image: url("/files/theme/images/icon-arrow-right.svg");
  background-position: center right;
  background-repeat: no-repeat;
  font-weight: 700;
}
#main .content-text.produkt-kachel .rte p em,
#main .content-text.kachel .rte p em {
  color: #333333;
  font-weight: 300;
  font-style: normal;
}

#main .content-text.produkt-kachel figure {
  order: 1;
  flex-grow: 1;
  margin: 35px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#main .content-text.kachel figure {
  order: 1;
}
#main .content-text.produkt-kachel figure:before {
  content: "";
  display: block;
  padding-top: 75%;
}

#main .rs-column.gallery .content-text .inside .rte p:last-child,
#main .rs-column.gallery .content-text .inside .rte div:last-child,
#main .rs-column.gallery .content-text .inside .rte ul:last-child,
#main .rs-column.gallery .content-text .inside .rte ol:last-child,
#main .rs-column.gallery .content-text .inside .rte h1:last-child,
#main .rs-column.gallery .content-text .inside .rte h2:last-child,
#main .rs-column.gallery .content-text .inside .rte h3:last-child,
#main .rs-column.gallery .content-text .inside .rte h4:last-child,
#main .rs-column.gallery .content-text .inside .rte h5:last-child,
#main .rs-column.gallery .content-text .inside .rte h6:last-child {
  margin-bottom: 0;
}

#main .c-grey .rte p:last-child,
#main .c-grey .rte ul:last-child,
#main .c-grey .rte ol:last-child,
#main .c-grey .rte h1:last-child,
#main .c-grey .rte h2:last-child,
#main .c-grey .rte h3:last-child,
#main .c-grey .rte h4:last-child,
#main .c-grey .rte h5:last-child,
#main .c-grey .rte h6:last-child,
#main .c-grey .rte span:last-child,
#main .c-grey .rte div:last-child {
  margin-bottom: 0;
}

@media (min-width: 951px) {
  .frontpage #main .content-text.angebot > .inside {
    display: flex;
  }
  .frontpage #main .content-text.angebot > .inside figure {
    width: 65%;
    order: 1;
    display: flex;
    justify-content: center;

/* Final fix: keep angebot figure unforced and left-aligned */
#article-24 .angebot.content-text.media.media--above > figure,
#article-24 .angebot.content-text.media.media--above > .inside > figure,
#article-24 .angebot.content-text.media.media--above:not(.ce_text) > figure {
  display: block !important;
  width: auto !important;
  order: initial !important;
  margin: 0 !important;
  text-align: left !important;
  justify-content: normal !important;
  align-items: normal !important;
  flex-direction: row !important;
}

#article-24 .angebot.content-text.media.media--above > figure img,
#article-24 .angebot.content-text.media.media--above > .inside > figure img,
#article-24 .angebot.content-text.media.media--above:not(.ce_text) > figure img {
  display: block !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}
    flex-direction: column;
  }
  .frontpage #main .content-text.angebot > .inside .rte {
    width: 35%;
    order: 2;
    text-align: right;
  }
  .frontpage #main .content-text.angebot > .inside .rte > p:last-child {
    text-align: right;
  }

  .frontpage #main .rs-column.-large-first,
  .frontpage #main .rs-column.-large-first-row {
    padding-right: 37.5px;
  }
  .frontpage #main .rs-column.-large-last {
    padding-left: 37.5px;
  }
}

/* Strong fallback for installations still rendering ce_text in Contao 5 */
#main .ce_text {
  padding: 0;
  list-style: none;
}
#main .ce_text ul, #main .ce_text ol {
  padding: 0;
  list-style: none;
}
#main .ce_text ul li, #main .ce_text ol li {
  border-bottom: 0px solid rgba(153, 153, 153, 0.5);
  position: relative;
}
#main .ce_text ul li:before, #main .ce_text ol li:before {
  content: "";
  position: absolute;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/files/theme/images/icon-arrow-right.svg");
  background-position: center;
}

#main .c-grey .ce_text p:last-child,
#main .c-grey .ce_text ul:last-child,
#main .c-grey .ce_text ol:last-child,
#main .c-grey .ce_text h1:last-child,
#main .c-grey .ce_text h2:last-child,
#main .c-grey .ce_text h3:last-child,
#main .c-grey .ce_text h4:last-child,
#main .c-grey .ce_text h5:last-child,
#main .c-grey .ce_text h6:last-child,
#main .c-grey .ce_text span:last-child,
#main .c-grey .ce_text div:last-child,
#main .c-grey .ce_text .rte p:last-child,
#main .c-grey .ce_text .rte ul:last-child,
#main .c-grey .ce_text .rte ol:last-child,
#main .c-grey .ce_text .rte h1:last-child,
#main .c-grey .ce_text .rte h2:last-child,
#main .c-grey .ce_text .rte h3:last-child,
#main .c-grey .ce_text .rte h4:last-child,
#main .c-grey .ce_text .rte h5:last-child,
#main .c-grey .ce_text .rte h6:last-child,
#main .c-grey .ce_text .rte span:last-child,
#main .c-grey .ce_text .rte div:last-child {
  margin-bottom: 0 !important;
}

#main .ce_text.produkt-kachel .inside, #main .ce_text.kachel .inside {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 400ms;
}
#main .rs-column.gallery .ce_text .inside {
  #main .rs-column.gallery .ce_text .rte {
  }
  #main .rs-column.gallery .ce_text .rte {
    background: #ececec;
  }
  height: 100%;
  box-sizing: border-box;
}
#main .ce_text.produkt-kachel .text, #main .ce_text.kachel .text {
  display: flex;
  flex-wrap: wrap;
}
#main .ce_text.produkt-kachel .rte, #main .ce_text.kachel .rte {
  display: flex;
  flex-wrap: wrap;
  background: #ececec;
}
#main .ce_text.produkt-kachel .rte h1,
#main .ce_text.produkt-kachel .rte h2,
#main .ce_text.produkt-kachel .rte h3,
#main .ce_text.produkt-kachel .rte h4,
#main .ce_text.produkt-kachel .rte h5,
#main .ce_text.produkt-kachel .rte h6,
#main .ce_text.produkt-kachel .rte p,
#main .ce_text.kachel .rte h1,
#main .ce_text.kachel .rte h2,
#main .ce_text.kachel .rte h3,
#main .ce_text.kachel .rte h4,
#main .ce_text.kachel .rte h5,

#main .ce_text.produkt-kachel .text,
#main .ce_text.kachel .text {
  display: flex;
  flex-wrap: wrap;
}

#main .rs-column.gallery .ce_text .inside .text p:last-child,
#main .rs-column.gallery .ce_text .inside .text div:last-child,
#main .rs-column.gallery .ce_text .inside .text ul:last-child,
#main .rs-column.gallery .ce_text .inside .text ol:last-child,
#main .rs-column.gallery .ce_text .inside .text h1:last-child,
#main .rs-column.gallery .ce_text .inside .text h2:last-child,
#main .rs-column.gallery .ce_text .inside .text h3:last-child,
#main .rs-column.gallery .ce_text .inside .text h4:last-child,
#main .rs-column.gallery .ce_text .inside .text h5:last-child,
#main .rs-column.gallery .ce_text .inside .text h6:last-child {
  margin-bottom: 0;
}

#main .ce_text.produkt-kachel .text p,
#main .ce_text.kachel .text p {
  border-top: 2px solid #000000;
  align-self: flex-end;
  margin: 0;
}

#main .ce_text.produkt-kachel .text h1,
#main .ce_text.produkt-kachel .text h2,
#main .ce_text.produkt-kachel .text h3,
#main .ce_text.produkt-kachel .text h4,
#main .ce_text.produkt-kachel .text h5,
#main .ce_text.produkt-kachel .text h6,
#main .ce_text.produkt-kachel .text p,
#main .ce_text.kachel .text h1,
#main .ce_text.kachel .text h2,
#main .ce_text.kachel .text h3,
#main .ce_text.kachel .text h4,
#main .ce_text.kachel .text h5,
#main .ce_text.kachel .text h6,
#main .ce_text.kachel .text p {
  width: 100%;
}

#main .ce_text.produkt-kachel .text p a,
#main .ce_text.kachel .text p a {
  color: #000000;
  display: block;
  text-decoration: none;
  background-image: url("/files/theme/images/icon-arrow-right.svg");
  background-position: center right;
  background-repeat: no-repeat;
}

@media (min-width: 1401px) {
  #main .ce_text.produkt-kachel .text {
    order: 2;
    padding: 0 35px 25px 35px;
  }

  #main .ce_text.produkt-kachel .text p {
    padding: 20px 0 0 0;
  }

  #main .ce_text.produkt-kachel .text p a {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    background-size: 24px;
    padding-right: 40px;
  }

  #main .rs-column.gallery .produkt-kachel,
  #main .rs-column.gallery .kachel {
    width: 33.33%;
  }

  #main .rs-column.gallery .ce_text {
    width: 50%;
  }
}
#main .ce_text.kachel .rte h6,
#main .ce_text.kachel .rte p {
  width: 100%;
}
#main .ce_text.produkt-kachel .rte p,
#main .ce_text.kachel .rte p {
  border-top: 2px solid #000000;
  align-self: flex-end;
  margin: 0;
}
#main .ce_text.produkt-kachel .rte p a,
#main .ce_text.kachel .rte p a {
  color: #000000;
  display: block;
  text-decoration: none;
  background-image: url("/files/theme/images/icon-arrow-right.svg");
  background-position: center right;
  background-repeat: no-repeat;
}
#main .ce_text.produkt-kachel figure {
  order: 1;
  flex-grow: 1;
  margin: 35px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#main .ce_text.produkt-kachel figure:before {
  content: "";
  display: block;
  padding-top: 75%;
}
#main .ce_text.kachel {
  height: 100%;
}
#main .ce_text.kachel figure {
  order: 1;
}
#main .ce_text.kachel .rte {
  order: 2;
  flex-grow: 1;
  min-height: 200px;
  padding: 40px 45px 26.6px 45px;
}

#main .rs-column.gallery .ce_text {
  box-sizing: border-box;
  margin-bottom: 0;
}
#main .rs-column.gallery .ce_text .inside {
  box-sizing: border-box;
}

/* Contao 5.3 legacy mapping: 4.13 ce_* markup -> 5.3 content-* markup */
#main .rs-column .content-downloads ul,
#main .rs-column .content-download ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#main .rs-column .content-downloads li.download-element,
#main .rs-column .content-download li.download-element {
  background: #ececec;
  list-style: none;
  margin-bottom: 8px;
}

#main .rs-column .content-downloads li.download-element > a,
#main .rs-column .content-download li.download-element > a {
  display: block;
  text-decoration: none;
}

#main .ce_rs_column_start.gallery.prinzipien.rs-column > .content-text,
#main .content-rs_column_start.gallery.prinzipien.rs-column > .content-text,
#main .rs-column.gallery.prinzipien > .content-text {
  box-sizing: border-box;
}

@media (min-width: 641px) and (max-width: 950px) {
  #main .rs-column .content-downloads li.download-element,
  #main .rs-column .content-download li.download-element {
    font-weight: bold;
    padding: 21.25px 25.5px;
  }

  #main .ce_rs_column_start.gallery.prinzipien.rs-column > .content-text,
  #main .content-rs_column_start.gallery.prinzipien.rs-column > .content-text,
  #main .rs-column.gallery.prinzipien > .content-text {
    padding: 34px 38.25px !important;
  }
}

/* Bridge new media block markup to legacy kachel/inside behavior. */
#main .kachel.content-text.media.media--above {
  display: flex;
  flex-direction: column;
  transition: all 400ms;
}
#main .kachel.content-text.media.media--above > figure {
  order: 1;
  margin: 0;
}
#main .kachel.content-text.media.media--above > figure img {
  display: block;
  width: 100%;
  height: auto;
}
#main .kachel.content-text.media.media--above > .rte {
  display: flex;
  flex-wrap: wrap;
  order: 2;
  min-height: 200px;
  padding: 40px 45px 26.6px 45px;
  background: #ececec;
}
#main .kachel.content-text.media.media--above > .rte h1,
#main .kachel.content-text.media.media--above > .rte h2,
#main .kachel.content-text.media.media--above > .rte h3,
#main .kachel.content-text.media.media--above > .rte h4,
#main .kachel.content-text.media.media--above > .rte h5,
#main .kachel.content-text.media.media--above > .rte h6,
#main .kachel.content-text.media.media--above > .rte p {
  width: 100%;
}
#main .kachel.content-text.media.media--above > .rte p {
  border-top: 2px solid #000000;
  align-self: flex-end;
  margin: 0;
}
#main .kachel.content-text.media.media--above > .rte p a {
  color: #000000;
  display: block;
  text-decoration: none;
  background-image: url("/files/theme/images/icon-arrow-right.svg");
  background-position: center right;
  background-repeat: no-repeat;
}

@media (max-width: 640px) {
  #main .kachel.content-text.media.media--above > figure {
    width: 100%;
    aspect-ratio: 800 / 528;
    overflow: hidden;
  }
  #main .kachel.content-text.media.media--above > figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #main .kachel.content-text.media.media--above > .rte {
    flex-grow: 0;
  }
}

@media (min-width: 641px) and (max-width: 950px) {
  #main .kachel.content-text.media.media--above > .rte {
    flex-grow: 1;
    min-height: 150px;
    padding: 34px 38.25px 22.61px 38.25px;
  }
}

.frontpage #main .ce_text.angebot {
  background: #ececec;
}
.frontpage #main .ce_text.angebot > .inside {
  display: flex;
  position: relative;
  z-index: 2;
}
.frontpage #main .ce_text.angebot > .inside .rte h4 {
  color: #f6a800;
}
.frontpage #main .ce_text.angebot > .inside .rte h3 {
  color: #ffcc00;
  font-weight: 700;
}
.frontpage #main .ce_text.angebot > .inside .rte p {
  color: #000000;
}
.frontpage #main .ce_text.angebot > .inside figure img {
  max-width: 100%;
}

.frontpage #main .ce_text.hohe-kachel {
  box-sizing: border-box;
  transition: all 400ms;
  position: relative;
  background: #ececec;
}
.frontpage #main .ce_text.hohe-kachel .inside {
  position: relative;
  z-index: 2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.frontpage #main .ce_text.hohe-kachel .rte {
  position: relative;
}
.frontpage #main .ce_text.hohe-kachel .rte h4 {
  color: #f6a800;
}
.frontpage #main .ce_text.hohe-kachel .rte h2 {
  color: #000000;
}
.frontpage #main .ce_text.hohe-kachel .rte p {
  position: absolute;
  border-top: 2px solid #000000;
}
.frontpage #main .ce_text.hohe-kachel .rte p a {
  color: #000000;
  display: block;
  text-decoration: none;
  background-image: url("/files/theme/images/icon-arrow-right.svg");
  background-position: center right;
  background-repeat: no-repeat;
}

@media (min-width: 641px) and (max-width: 950px) {
  #main .ce_text ul li, #main .ce_text ol li {
    padding-left: 2em;
    margin: 0 0 10px 0;
    font-size: 17.0057142857px;
    font-weight: 300;
    line-height: 1.6;
  }
}

@media (min-width: 951px) {
  .frontpage #main .ce_text.angebot > .inside figure {
    width: 65%;
    order: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .frontpage #main .ce_text.angebot > .inside .rte {
    width: 35%;
    order: 2;
    text-align: right;
  }
  .frontpage #main .ce_text.angebot > .inside .rte > p:last-child {
    text-align: right;
  }
}

#article-2 {
  position: static;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
#article-2 > .content-text.media.media--above {
  margin: 0 auto;
  width: 85%;
  display: grid;
  grid-template-columns: 60% 50%;
  align-items: center;
}
#article-2 > .content-text.media.media--above h1 {
  grid-column: 1;
  margin: 0;
}
#article-2 > .content-text.media.media--above .rte {
  grid-column: 1;
}
#article-2 > .content-text.media.media--above .rte p {
  margin: 0;
}
#article-2 > .content-text.media.media--above figure {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin-right: -10%;
  margin-bottom: 0;
}
#article-2 > .content-text.media.media--above figure img {
  display: block;
  width: 100%;
  height: auto;
}
#article-2 > .scroll-down.content-hyperlink a {
  position: absolute;
  display: block;
  bottom: 0;
  left: 50%;
  background-color: #ececec;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("/files/theme/images/icon-arrow-down.svg");
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  text-indent: -999px;
  animation: slideDown 2s infinite;
}

@media (min-width: 1401px) {
  #article-2 > .content-text.media.media--above {
    max-width: 1600px;
    padding: 200px 0 50px 0;
  }
  #article-2 > .scroll-down.content-hyperlink a {
    width: 80px;
    height: 60px;
    margin-left: -40px;
    background-size: 32px;
  }
  #article-2 > .content-text.media.media--above h1 {
    font-size: 50px;
    font-weight: bold;
    line-height: 1.1;
  }
  #article-2 > .content-text.media.media--above .rte h2 {
    margin: 0 0 50px 0;
    font-size: 50px;
    font-weight: 300;
    line-height: 1.1;
  }
  .frontpage #article-2 > .content-text.media.media--above {
    padding: 200px 0 150px 0;
  }
  .frontpage #article-2 > .content-text.media.media--above h1 {
    margin: 0 0 30px 0;
    font-size: 80px;
    font-weight: bold;
    line-height: 1.1;
  }
}

@media (min-width: 951px) and (max-width: 1400px) {
  #article-2 > .content-text.media.media--above {
    max-width: 1600px;
    padding: 162.5px 0 40px 0;
  }
  #article-2 > .scroll-down.content-hyperlink a {
    width: 80px;
    height: 60px;
    margin-left: -40px;
    background-size: 32px;
  }
  #article-2 > .content-text.media.media--above h1 {
    font-size: 40.2285714286px;
    font-weight: bold;
    line-height: 1.2;
  }
  #article-2 > .content-text.media.media--above .rte h2 {
    margin: 0 0 40px 0;
    font-size: 40.2285714286px;
    font-weight: 300;
    line-height: 1.2;
  }
  .frontpage #article-2 > .content-text.media.media--above {
    padding: 195px 0 130px 0;
  }
  .frontpage #article-2 > .content-text.media.media--above h1 {
    margin: 0 0 25.5px 0;
    font-size: 60.6714285714px;
    font-weight: bold;
    line-height: 1.1;
  }
}

@media (min-width: 641px) and (max-width: 950px) {
  #article-2 > .content-text.media.media--above {
    padding: 162.5px 0 40px 0;
    grid-template-columns: 100%;
  }
  #article-2 > .content-text.media.media--above h1 {
    grid-column: 1;
    order: 2;
    font-size: 40.2285714286px;
    font-weight: bold;
    line-height: 1.2;
  }
  #article-2 > .content-text.media.media--above .rte {
    grid-column: 1;
    order: 3;
    hyphens: auto;
  }
  #article-2 > .content-text.media.media--above .rte h2 {
    margin: 0 0 40px 0;
    font-size: 40.2285714286px;
    font-weight: 300;
    line-height: 1.2;
  }
  #article-2 > .content-text.media.media--above figure {
    grid-column: 1;
    grid-row: auto;
    order: 1;
    width: 100%;
    margin-right: -10%;
    margin-bottom: 56.25px;
  }
  #article-2 > .scroll-down.content-hyperlink a {
    width: 54px;
    height: 40px;
    margin-left: -27px;
    background-size: 40%;
  }
  .frontpage #article-2 > .content-text.media.media--above {
    padding: 162.5px 0 162.5px 0;
  }
  .frontpage #article-2 > .content-text.media.media--above h1 {
    margin: 0 0 25.5px 0;
    font-size: 60.6714285714px;
    font-weight: bold;
    line-height: 1.1;
  }
}

@media (min-width: 401px) and (max-width: 640px) {
  #article-2 > .content-text.media.media--above {
    padding: 154.375px 0 35px 0;
    grid-template-columns: 100%;
  }
  #article-2 > .content-text.media.media--above h1 {
    grid-column: 1;
    order: 2;
    font-size: 35.3428571429px;
    font-weight: bold;
    line-height: 1.2;
  }
  #article-2 > .content-text.media.media--above .rte {
    grid-column: 1;
    order: 3;
    hyphens: auto;
  }
  #article-2 > .content-text.media.media--above .rte h2 {
    margin: 0 0 35px 0;
    font-size: 35.3428571429px;
    font-weight: 300;
    line-height: 1.2;
  }
  #article-2 > .content-text.media.media--above figure {
    grid-column: 1;
    grid-row: auto;
    order: 1;
    width: 100%;
    margin-right: -10%;
    margin-bottom: 46.875px;
  }
  #article-2 > .scroll-down.content-hyperlink a {
    width: 54px;
    height: 40px;
    margin-left: -27px;
    background-size: 40%;
  }
  .frontpage #article-2 > .content-text.media.media--above {
    padding: 154.375px 0 118.75px 0;
  }
  .frontpage #article-2 > .content-text.media.media--above h1 {
    margin: 0 0 23.25px 0;
    font-size: 51.0071428571px;
    font-weight: bold;
    line-height: 1.1;
  }
}

@media (max-width: 400px) {
  #article-2 > .content-text.media.media--above {
    padding: 135px 0 30px 0;
    grid-template-columns: 100%;
  }
  #article-2 > .content-text.media.media--above h1 {
    grid-column: 1;
    order: 2;
    font-size: 30.4571428571px;
    font-weight: bold;
    line-height: 1.3;
  }
  #article-2 > .content-text.media.media--above .rte {
    grid-column: 1;
    order: 3;
    hyphens: auto;
  }
  #article-2 > .content-text.media.media--above .rte h2 {
    margin: 0 0 30px 0;
    font-size: 30.4571428571px;
    font-weight: 300;
    line-height: 1.3;
  }
  #article-2 > .content-text.media.media--above figure {
    grid-column: 1;
    grid-row: auto;
    order: 1;
    width: 100%;
    margin-right: -10%;
    margin-bottom: 37.5px;
  }
  #article-2 > .scroll-down.content-hyperlink a {
    width: 54px;
    height: 40px;
    margin-left: -27px;
    background-size: 40%;
  }
  .frontpage #article-2 > .content-text.media.media--above {
    padding: 120px 0 75px 0;
  }
  .frontpage #article-2 > .content-text.media.media--above h1 {
    margin: 0 0 21px 0;
    font-size: 41.3428571429px;
    font-weight: bold;
    line-height: 1.2;
  }
}

#article-8 .mod_newslist {
  display: flex;
}
#article-8 .mod_newslist .layout_frontpage {
  box-sizing: border-box;
}
#article-8 .mod_newslist .inside {
  background-color: #f6a800;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#article-8 .mod_newslist .overlay {
  z-index: 1;
  position: relative;
}
#article-8 .mod_newslist .overlay a:before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}
#article-8 .mod_newslist h3 {
  margin: 0;
}
#article-8 .mod_newslist h3 a {
  text-decoration: none;
  color: white;
  display: flex;
  align-items: flex-end;
  position: relative;
}
#article-8 .mod_newslist h3 a span {
  position: relative;
  z-index: 2;
}
#article-8 .mod_newslist h3 a span:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.2em;
  background-position: center;
  background-size: cover;
  background-image: url("/files/theme/images/icon-arrow-right-white.svg");
  background-repeat: no-repeat;
}

#article-24 {
  position: relative;
}
#article-24 > .content-headline.stoerer,
#article-24 .content-headline.stoerer {
  display: flex;
  margin: 0;
  padding: 0;
  justify-content: space-around;
  align-items: center;
  position: absolute;
  color: white;
  z-index: 3;
}
#article-24 > .content-headline.stoerer:before,
#article-24 > .content-headline.stoerer:after,
#article-24 .content-headline.stoerer:before,
#article-24 .content-headline.stoerer:after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 0;
  height: 0;
  left: 0;
}

#article-24 > .angebot.content-text.media.media--above {
  background: #ececec;
}

/* Ensure headline badge overlays angebot in current RS column DOM */
#article-24 .ce_rs_column_start {
  position: relative;
}

#article-24 .ce_rs_column_start > .angebot.content-text.media.media--above {
  position: relative;
  z-index: 1;
}

#article-24 .ce_rs_column_start > .content-headline.stoerer {
  z-index: 5;
}

#article-24 > .angebot.content-text.media.media--above > .inside {
  display: flex;
  position: relative;
  z-index: 2;
}
#article-24 > .angebot.content-text.media.media--above > .inside .rte {
  width: 35%;
  order: 2;
  text-align: right;
  padding-left: 150px;
}
#article-24 > .angebot.content-text.media.media--above > .inside .rte h4 {
  color: #f6a800;
}
#article-24 > .angebot.content-text.media.media--above > .inside .rte h3 {
  color: #ffcc00;
  font-weight: bold;
}
#article-24 > .angebot.content-text.media.media--above > .inside .rte p {
  color: #000000;
}
#article-24 > .angebot.content-text.media.media--above > .inside .rte p:last-child,
#article-24 > .angebot.content-text.media.media--above > .inside .rte ul:last-child,
#article-24 > .angebot.content-text.media.media--above > .inside .rte ol:last-child,
#article-24 > .angebot.content-text.media.media--above > .inside .rte h1:last-child,
#article-24 > .angebot.content-text.media.media--above > .inside .rte h2:last-child,
#article-24 > .angebot.content-text.media.media--above > .inside .rte h3:last-child,
#article-24 > .angebot.content-text.media.media--above > .inside .rte h4:last-child,
#article-24 > .angebot.content-text.media.media--above > .inside .rte h5:last-child,
#article-24 > .angebot.content-text.media.media--above > .inside .rte h6:last-child,
#article-24 > .angebot.content-text.media.media--above > .inside .rte span:last-child,
#article-24 > .angebot.content-text.media.media--above > .inside .rte div:last-child {
  margin-bottom: 0 !important;
}
#article-24 > .angebot.content-text.media.media--above > .inside figure {
  width: 65%;
  order: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0;
}
#article-24 > .angebot.content-text.media.media--above > .inside figure img {
  max-width: 100%;
  width: auto;
  max-height: 600px;
}

/* Fallback for wrapperless angebot figure (old container behavior) */
#article-24 .angebot.content-text.media.media--above > figure {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#article-24 .angebot.content-text.media.media--above > figure img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

#article-24 .rs-column.-large-first.-large-last {
  padding-right: 0;
  padding-left: 0;
}

/* article-24 angebot (NEW STRUCTURE without .inside wrapper) */
@media (min-width: 1401px) {
  #article-24 .angebot.content-text.media.media--above:not(.ce_text) {
    display: flex;
    position: relative;
    z-index: 2;
    padding: 75px;
    background: #ececec;
  }
  #article-24 .angebot.content-text.media.media--above:not(.ce_text) > figure {
    width: 65%;
    order: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0;
  }
  #article-24 .angebot.content-text.media.media--above:not(.ce_text) > figure img {
    max-width: 100%;
    width: auto;
    max-height: 600px;
  }
  #article-24 .angebot.content-text.media.media--above:not(.ce_text) > .rte {
    width: 35%;
    order: 2;
    text-align: right;
    padding-left: 150px;
  }
  #article-24 .angebot.content-text.media.media--above:not(.ce_text) > .rte h4 {
    color: #f6a800;
  }
  #article-24 .angebot.content-text.media.media--above:not(.ce_text) > .rte h3 {
    color: #ffcc00;
    font-weight: bold;
  }
  #article-24 .angebot.content-text.media.media--above:not(.ce_text) > .rte p {
    color: #000000;
  }
}

/* article-24 angebot (NEW STRUCTURE without .inside) - 951�1400px */
@media (min-width: 951px) and (max-width: 1400px) {
  #article-24 .angebot.content-text.media.media--above:not(.ce_text) {
    display: flex;
    position: relative;
    z-index: 2;
    padding: 56.25px;
    background: #ececec;
  }
  #article-24 .angebot.content-text.media.media--above:not(.ce_text) > figure {
    width: 55%;
    order: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0;
  }
  #article-24 .angebot.content-text.media.media--above:not(.ce_text) > figure img {
    max-width: 100%;
    width: auto;
    max-height: 500px;
  }
  #article-24 .angebot.content-text.media.media--above:not(.ce_text) > .rte {
    width: 45%;
    order: 2;
    text-align: right;
    padding-left: 97.5px;
  }
  #article-24 .angebot.content-text.media.media--above:not(.ce_text) > .rte h4 {
    color: #f6a800;
  }
}

/* article-24 angebot (NEW STRUCTURE without .inside) - 641�950px */
@media (min-width: 641px) and (max-width: 950px) {
  #article-24 .angebot.content-text.media.media--above:not(.ce_text) {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    padding: 56.25px;
    background: #ececec;
  }
  #article-24 .angebot.content-text.media.media--above:not(.ce_text) > figure {
    width: 100%;
    order: 1;
    margin-bottom: 40px;
  }
  #article-24 .angebot.content-text.media.media--above:not(.ce_text) > figure img {
    width: 100%;
    max-height: none;
  }
  #article-24 .angebot.content-text.media.media--above:not(.ce_text) > .rte {
    width: 100%;
    order: 2;
    text-align: left;
    padding-left: 0;
  }
  #article-24 .angebot.content-text.media.media--above:not(.ce_text) > .rte h4 {
    color: #f6a800;
  }
}

/* article-24 angebot (NEW STRUCTURE without .inside) - 401�640px */
@media (min-width: 401px) and (max-width: 640px) {
  #article-24 .angebot.content-text.media.media--above:not(.ce_text) {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    padding: 46.875px;
    background: #ececec;
  }
  #article-24 .angebot.content-text.media.media--above:not(.ce_text) > figure {
    width: 100%;
    order: 1;
    margin-bottom: 35px;
  }
  #article-24 .angebot.content-text.media.media--above:not(.ce_text) > figure img {
    width: 100%;
    max-height: none;
  }
  #article-24 .angebot.content-text.media.media--above:not(.ce_text) > .rte {
    width: 100%;
    order: 2;
    text-align: left;
    padding-left: 0;
  }
  #article-24 .angebot.content-text.media.media--above:not(.ce_text) > .rte h4 {
    color: #f6a800;
  }
}

/* article-24 angebot (NEW STRUCTURE without .inside) - =400px */
@media (max-width: 400px) {
  #article-24 .angebot.content-text.media.media--above:not(.ce_text) {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    padding: 37.5px;
    background: #ececec;
  }
  #article-24 .angebot.content-text.media.media--above:not(.ce_text) > figure {
    width: 100%;
    order: 1;
    margin-bottom: 30px;
  }
  #article-24 .angebot.content-text.media.media--above:not(.ce_text) > figure img {
    width: 100%;
    max-height: none;
  }
  #article-24 .angebot.content-text.media.media--above:not(.ce_text) > .rte {
    width: 100%;
    order: 2;
    text-align: left;
    padding-left: 0;
  }
  #article-24 .angebot.content-text.media.media--above:not(.ce_text) > .rte h4 {
    color: #f6a800;
  }
}

#article-24 .rs-column.-medium-first.-medium-last {
  padding-right: 0;
  padding-left: 0;
}

#article-24 .rs-column.-small-first.-small-last {
  padding-right: 0;
  padding-left: 0;
}

#article-24 .ce_text.hohe-kachel {
  box-sizing: border-box;
  transition: all 400ms;
  position: relative;
  background: #ececec;
}
#article-24 .ce_text.hohe-kachel > .inside {
  position: relative;
  z-index: 2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#article-24 .rs-column.first .ce_text.hohe-kachel > .inside {
  background-image: url('/files/theme/Startseite/kachel_maschinen.png');
}
#article-24 .rs-column.last .ce_text.hohe-kachel > .inside {
  background-image: url('/files/theme/Startseite/kachel_werkzeuge.png');
}
#article-24 .ce_text.hohe-kachel > .inside .rte {
  position: relative;
}
#article-24 .ce_text.hohe-kachel > .inside .rte h4 {
  color: #f6a800;
}
#article-24 .ce_text.hohe-kachel > .inside .rte h2 {
  color: #000000;
}
#article-24 .ce_text.hohe-kachel > .inside .rte p.button {
  position: absolute;
  border-top: 2px solid #000000;
  padding: 20px 0 0 0;
  margin: 0;
}
#article-24 .ce_text.hohe-kachel > .inside .rte p.button a {
  color: #000000;
  display: block;
  text-decoration: none;
  background-position: center right;
  background-size: cover;
  background-image: url("/files/theme/images/icon-arrow-right.svg");
  background-repeat: no-repeat;
}

@media (min-width: 1401px) {
  #article-8 .mod_newslist {
    margin: 0 -25px;
  }
  #article-8 .mod_newslist .layout_frontpage {
    padding: 0 25px;
    width: 33.33%;
  }
  #article-8 .mod_newslist h3 a {
    height: 250px;
    padding: 30px 35px;
    font-size: 26px;
    font-weight: bold;
    line-height: 1.4;
  }
  #article-8 .mod_newslist h3 a span {
    padding-right: 50px;
  }
  #article-8 .mod_newslist h3 a span:after {
    width: 24px;
    height: 24px;
  }
  #article-8 .rs-column.-large-first,
  #article-8 .rs-column.-large-first-row {
    padding-right: 37.5px;
  }
  #article-8 .rs-column.-large-last {
    padding-left: 37.5px;
  }

  #article-24 > .content-headline.stoerer {
    width: 230px;
    height: 116px;
    top: -58px;
    left: 75px;
    font-size: 30px;
    font-weight: bold;
  }
  #article-24 > .content-headline.stoerer:before,
  #article-24 > .content-headline.stoerer:after {
    border: 116px solid transparent;
  }
  #article-24 > .content-headline.stoerer:before {
    top: -116px;
    border-bottom: 58px solid #f6a800;
  }
  #article-24 > .content-headline.stoerer:after {
    top: 58px;
    border-top: 58px solid #f6a800;
  }
  #article-24 > .angebot.content-text.media.media--above > .inside {
    padding: 75px;
  }
  #article-24 > .angebot.content-text.media.media--above > .inside .rte h4 {
    font-size: 26px;
    font-weight: bold;
    line-height: 1.4;
    margin: 0 0 15px 0;
  }
  #article-24 > .angebot.content-text.media.media--above > .inside .rte h3 {
    font-size: 40px;
    line-height: 1.2;
    margin: 0 0 30px 0;
  }
  #article-24 > .angebot.content-text.media.media--above > .inside .rte p {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.5;
    margin: 0 0 25px 0;
  }
  #article-24 .rs-column.-large-first,
  #article-24 .rs-column.-large-first-row {
    padding-right: 37.5px;
  }
  #article-24 .rs-column.-large-last {
    padding-left: 37.5px;
  }
  #article-24 .rs-column.first .ce_text.hohe-kachel > .inside {
    background-image: url('/files/theme/Startseite/kachel_maschinen.png');
  }
  #article-24 .rs-column.last .ce_text.hohe-kachel > .inside {
    background-image: url('/files/theme/Startseite/kachel_werkzeuge.png');
  }
  #article-24 .ce_text.hohe-kachel > .inside .rte {
    height: 700px;
    padding: 75px;
  }
  #article-24 .ce_text.hohe-kachel > .inside .rte h4 {
    font-size: 26px;
    font-weight: bold;
    margin: 0;
  }
  #article-24 .ce_text.hohe-kachel > .inside .rte h2 {
    font-size: 40px;
    font-weight: bold;
    margin: 0 0 30px 0;
  }
  #article-24 .ce_text.hohe-kachel > .inside .rte p.button {
    bottom: 43.3px;
    left: 75px;
    right: 75px;
  }
  #article-24 .ce_text.hohe-kachel > .inside .rte p.button a {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    background-size: 24px;
    padding-right: 40px;
  }
}

@media (min-width: 951px) and (max-width: 1400px) {
  #article-8 .mod_newslist {
    margin: 0 -21.25px;
  }
  #article-8 .mod_newslist .layout_frontpage {
    padding: 0 21.25px;
    width: 50%;
  }
  #article-8 .mod_newslist h3 a {
    height: 250px;
    padding: 25.5px 29.75px;
    font-size: 22.9485714286px;
    font-weight: bold;
    line-height: 1.5;
  }
  #article-8 .mod_newslist h3 a span {
    padding-right: 40px;
  }
  #article-8 .mod_newslist h3 a span:after {
    width: 24px;
    height: 24px;
  }
  #article-8 .rs-column.-large-first,
  #article-8 .rs-column.-large-first-row {
    padding-right: 31.875px;
  }
  #article-8 .rs-column.-large-last {
    padding-left: 31.875px;
  }

  #article-24 > .content-headline.stoerer {
    width: 176px;
    height: 88px;
    top: -44px;
    left: 56px;
    font-size: 25.89px;
    font-weight: bold;
  }
  #article-24 > .content-headline.stoerer:before,
  #article-24 > .content-headline.stoerer:after {
    border: 88px solid transparent;
  }
  #article-24 > .content-headline.stoerer:before {
    top: -88px;
    border-bottom: 44px solid #f6a800;
  }
  #article-24 > .content-headline.stoerer:after {
    top: 44px;
    border-top: 44px solid #f6a800;
  }
  #article-24 > .angebot.content-text.media.media--above > .inside {
    padding: 56.25px;
  }
  #article-24 > .angebot.content-text.media.media--above > .inside .rte {
    width: 45%;
    padding-left: 97.5px;
  }
  #article-24 > .angebot.content-text.media.media--above > .inside figure {
    width: 55%;
  }
  #article-24 > .angebot.content-text.media.media--above > .inside .rte h4 {
    font-size: 22.95px;
    font-weight: bold;
    line-height: 1.5;
    margin: 0 0 15px 0;
  }
  #article-24 > .angebot.content-text.media.media--above > .inside .rte h3 {
    font-size: 33.13px;
    line-height: 1.3;
    margin: 0 0 25.5px 0;
  }
  #article-24 > .angebot.content-text.media.media--above > .inside .rte p {
    font-size: 19.99px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 21.25px 0;
  }
  #article-24 .rs-column.-large-first,
  #article-24 .rs-column.-large-first-row {
    padding-right: 31.875px;
  }
  #article-24 .rs-column.-large-last {
    padding-left: 31.875px;
  }
  #article-24 .ce_text.hohe-kachel > .inside .rte {
    height: 550px;
    padding: 56.25px;
  }
  #article-24 .ce_text.hohe-kachel > .inside .rte h4 {
    font-size: 22.95px;
    font-weight: bold;
    margin: 0;
  }
  #article-24 .ce_text.hohe-kachel > .inside .rte h2 {
    font-size: 33.13px;
    font-weight: bold;
    margin: 0 0 25.5px 0;
  }
  #article-24 .ce_text.hohe-kachel > .inside .rte p.button {
    bottom: 36.805px;
    left: 56.25px;
    right: 56.25px;
  }
  #article-24 .ce_text.hohe-kachel > .inside .rte p.button a {
    font-size: 15.51px;
    font-weight: bold;
    line-height: 1.6;
    background-size: 24px;
    padding-right: 34px;
  }
}

@media (min-width: 641px) and (max-width: 950px) {
  #article-8 .mod_newslist {
    margin: -21.25px 0;
    flex-wrap: wrap;
  }
  #article-8 .mod_newslist .layout_frontpage {
    padding: 21.25px 0;
    width: 100%;
  }
  #article-8 .mod_newslist h3 a {
    height: 250px;
    padding: 25.5px 29.75px;
    font-size: 22.9485714286px;
    font-weight: bold;
    line-height: 1.5;
  }
  #article-8 .mod_newslist h3 a span {
    padding-right: 40px;
  }
  #article-8 .mod_newslist h3 a span:after {
    width: 24px;
    height: 24px;
  }
  #article-8 .rs-column.-medium-first,
  #article-8 .rs-column.-medium-first-row {
    padding-bottom: 31.875px;
  }
  #article-8 .rs-column.-medium-last {
    padding-top: 31.875px;
  }

  #article-24 > .content-headline.stoerer {
    width: 176px;
    height: 88px;
    top: -44px;
    left: 56px;
    font-size: 25.89px;
    font-weight: bold;
  }
  #article-24 > .content-headline.stoerer:before,
  #article-24 > .content-headline.stoerer:after {
    border: 88px solid transparent;
  }
  #article-24 > .content-headline.stoerer:before {
    top: -88px;
    border-bottom: 44px solid #f6a800;
  }
  #article-24 > .content-headline.stoerer:after {
    top: 44px;
    border-top: 44px solid #f6a800;
  }
  #article-24 > .angebot.content-text.media.media--above > .inside {
    padding: 56.25px;
    flex-wrap: wrap;
  }
  #article-24 > .angebot.content-text.media.media--above > .inside .rte {
    width: 100%;
    text-align: left;
    padding-left: 0;
    order: 2;
  }
  #article-24 > .angebot.content-text.media.media--above > .inside figure {
    width: 100%;
    order: 1;
    margin-bottom: 40px;
  }
  #article-24 > .angebot.content-text.media.media--above > .inside figure img {
    width: 100%;
    max-height: none;
  }
  #article-24 > .angebot.content-text.media.media--above > .inside .rte h4 {
    color: #f6a800;
    font-size: 22.95px;
    font-weight: bold;
    line-height: 1.5;
    margin: 0 0 15px 0;
  }
  #article-24 > .angebot.content-text.media.media--above > .inside .rte h3 {
    font-size: 33.13px;
    line-height: 1.3;
    margin: 0 0 25.5px 0;
  }
  #article-24 > .angebot.content-text.media.media--above > .inside .rte p {
    font-size: 19.99px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 21.25px 0;
  }
  #article-24 .rs-column.-medium-first,
  #article-24 .rs-column.-medium-first-row {
    padding-bottom: 31.875px;
  }
  #article-24 .rs-column.-medium-last {
    padding-top: 31.875px;
  }
  #article-24 .ce_text.hohe-kachel > .inside {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  #article-24 .rs-column.first .ce_text.hohe-kachel > .inside {
    background-image: url('/files/theme/Startseite/kachel_maschinen.png');
  }
  #article-24 .rs-column.last .ce_text.hohe-kachel > .inside {
    background-image: url('/files/theme/Startseite/kachel_werkzeuge.png');
  }
  #article-24 .ce_text.hohe-kachel > .inside .rte {
    height: 550px;
    padding: 56.25px;
  }
  #article-24 .ce_text.hohe-kachel > .inside .rte h4 {
    font-size: 22.95px;
    font-weight: bold;
    margin: 0;
  }
  #article-24 .ce_text.hohe-kachel > .inside .rte h2 {
    font-size: 33.13px;
    font-weight: bold;
    margin: 0 0 25.5px 0;
  }
  #article-24 .ce_text.hohe-kachel > .inside .rte p.button {
    bottom: 36.805px;
    left: 56.25px;
    right: 56.25px;
  }
  #article-24 .ce_text.hohe-kachel > .inside .rte p.button a {
    font-size: 15.51px;
    font-weight: bold;
    line-height: 1.6;
    background-size: 24px;
    padding-right: 34px;
  }
}

@media (min-width: 401px) and (max-width: 640px) {
  #article-8 .mod_newslist {
    margin: -19.375px 0;
    flex-wrap: wrap;
  }
  #article-8 .mod_newslist .layout_frontpage {
    padding: 19.375px 0;
    width: 100%;
  }
  #article-8 .mod_newslist h3 a {
    height: 250px;
    padding: 23.25px 27.125px;
    font-size: 21.4228571429px;
    font-weight: bold;
    line-height: 1.5;
  }
  #article-8 .mod_newslist h3 a span {
    padding-right: 35px;
  }
  #article-8 .mod_newslist h3 a span:after {
    width: 24px;
    height: 24px;
  }
  #article-8 .rs-column.-small-first,
  #article-8 .rs-column.-small-first-row {
    padding-bottom: 29.0625px;
  }
  #article-8 .rs-column.-small-last {
    padding-top: 29.0625px;
  }

  #article-24 > .content-headline.stoerer {
    width: 146px;
    height: 74px;
    top: -37px;
    left: 47px;
    font-size: 20.8160714286px;
    font-weight: bold;
  }
  #article-24 > .content-headline.stoerer:before,
  #article-24 > .content-headline.stoerer:after {
    border: 74px solid transparent;
  }
  #article-24 > .content-headline.stoerer:before {
    top: -74px;
    border-bottom: 37px solid #f6a800;
  }
  #article-24 > .content-headline.stoerer:after {
    top: 37px;
    border-top: 37px solid #f6a800;
  }
  #article-24 > .angebot.content-text.media.media--above > .inside {
    padding: 46.875px;
    flex-wrap: wrap;
  }
  #article-24 > .angebot.content-text.media.media--above > .inside .rte {
    width: 100%;
    text-align: left;
    padding-left: 0;
    order: 2;
  }
  #article-24 > .angebot.content-text.media.media--above > .inside figure {
    width: 100%;
    order: 1;
    margin-bottom: 35px;
  }
  #article-24 > .angebot.content-text.media.media--above > .inside figure img {
    width: 100%;
    max-height: none;
  }
  #article-24 > .angebot.content-text.media.media--above > .inside .rte h4 {
    color: #f6a800;
    font-size: 21.42px;
    font-weight: bold;
    line-height: 1.5;
    margin: 0 0 15px 0;
  }
  #article-24 > .angebot.content-text.media.media--above > .inside .rte h3 {
    font-size: 29.69px;
    line-height: 1.4;
    margin: 0 0 23.25px 0;
  }
  #article-24 > .angebot.content-text.media.media--above > .inside .rte p {
    font-size: 18.98px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 19.38px 0;
  }
  #article-24 .rs-column.-small-first,
  #article-24 .rs-column.-small-first-row {
    padding-bottom: 29.0625px;
  }
  #article-24 .rs-column.-small-last {
    padding-top: 29.0625px;
  }
  #article-24 .ce_text.hohe-kachel > .inside {
    background-size: contain;
  }
  #article-24 .ce_text.hohe-kachel > .inside .rte {
    height: 475px;
    padding: 46.875px;
  }
  #article-24 .ce_text.hohe-kachel > .inside .rte h4 {
    font-size: 21.4228571429px;
    font-weight: bold;
    margin: 0;
  }
  #article-24 .ce_text.hohe-kachel > .inside .rte h2 {
    font-size: 29.6928571429px;
    font-weight: bold;
    margin: 0 0 23.25px 0;
  }
  #article-24 .ce_text.hohe-kachel > .inside .rte p.button {
    bottom: 33.5575px;
    left: 46.875px;
    right: 46.875px;
  }
  #article-24 .ce_text.hohe-kachel > .inside .rte p.button a {
    font-size: 15.2585714286px;
    font-weight: bold;
    line-height: 1.6;
    background-size: 24px;
    padding-right: 31px;
  }
}

@media (max-width: 400px) {
  #article-8 .mod_newslist {
    margin: -17.5px 0;
    flex-wrap: wrap;
  }
  #article-8 .mod_newslist .layout_frontpage {
    padding: 17.5px 0;
    width: 100%;
  }
  #article-8 .mod_newslist h3 a {
    height: 250px;
    padding: 21px 24.5px;
    font-size: 19.8971428571px;
    font-weight: bold;
    line-height: 1.6;
  }
  #article-8 .mod_newslist h3 a span {
    padding-right: 30px;
  }
  #article-8 .mod_newslist h3 a span:after {
    width: 24px;
    height: 24px;
  }
  #article-8 .rs-column.-small-first,
  #article-8 .rs-column.-small-first-row {
    padding-bottom: 26.25px;
  }
  #article-8 .rs-column.-small-last {
    padding-top: 26.25px;
  }

  #article-24 > .content-headline.stoerer {
    width: 115px;
    height: 58px;
    top: -29px;
    left: 37.5px;
    font-size: 17px;
    font-weight: bold;
  }
  #article-24 > .content-headline.stoerer:before,
  #article-24 > .content-headline.stoerer:after {
    border: 58px solid transparent;
  }
  #article-24 > .content-headline.stoerer:before {
    top: -58px;
    border-bottom: 29px solid #f6a800;
  }
  #article-24 > .content-headline.stoerer:after {
    top: 29px;
    border-top: 29px solid #f6a800;
  }
  #article-24 > .angebot.content-text.media.media--above > .inside {
    padding: 37.5px;
    flex-wrap: wrap;
  }
  #article-24 > .angebot.content-text.media.media--above > .inside .rte {
    width: 100%;
    text-align: left;
    padding-left: 0;
    order: 2;
  }
  #article-24 > .angebot.content-text.media.media--above > .inside figure {
    width: 100%;
    order: 1;
    margin-bottom: 30px;
  }
  #article-24 > .angebot.content-text.media.media--above > .inside figure img {
    width: 100%;
    max-height: none;
  }
  #article-24 > .angebot.content-text.media.media--above > .inside .rte h4 {
    color: #f6a800;
    font-size: 19.9px;
    font-weight: bold;
    line-height: 1.6;
    margin: 0 0 15px 0;
  }
  #article-24 > .angebot.content-text.media.media--above > .inside .rte h3 {
    font-size: 26.26px;
    line-height: 1.4;
    margin: 0 0 21px 0;
  }
  #article-24 > .angebot.content-text.media.media--above > .inside .rte p {
    font-size: 17.98px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 17.5px 0;
  }
  #article-24 .rs-column.-small-first,
  #article-24 .rs-column.-small-first-row {
    padding-bottom: 26.25px;
  }
  #article-24 .rs-column.-small-last {
    padding-top: 26.25px;
  }
  #article-24 .ce_text.hohe-kachel > .inside {
    background-size: contain;
  }
  #article-24 .ce_text.hohe-kachel > .inside .rte {
    height: 100vw;
    padding: 37.5px;
  }
  #article-24 .ce_text.hohe-kachel > .inside .rte h4 {
    font-size: 19.8971428571px;
    font-weight: bold;
    margin: 0;
  }
  #article-24 .ce_text.hohe-kachel > .inside .rte h2 {
    font-size: 26.2571428571px;
    font-weight: bold;
    margin: 0 0 21px 0;
  }
  #article-24 .ce_text.hohe-kachel > .inside .rte p.button {
    bottom: 30.31px;
    left: 37.5px;
    right: 37.5px;
  }
  #article-24 .ce_text.hohe-kachel > .inside .rte p.button a {
    font-size: 15.0114285714px;
    font-weight: bold;
    line-height: 1.6;
    background-size: 24px;
    padding-right: 28px;
  }
}

/* article-24: descendant selector fix for RS Columns nesting */
#article-24 .content-headline.stoerer {
  display: flex;
  margin: 0;
  padding: 0;
  justify-content: space-around;
  align-items: center;
  position: absolute;
  color: white;
  z-index: 1;
}
#article-24 .content-headline.stoerer:before,
#article-24 .content-headline.stoerer:after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 0;
  height: 0;
  left: 0;
}

#article-24 .angebot.content-text.media.media--above {
  background: #ececec;
}
#article-24 .angebot.content-text.media.media--above > .inside {
  display: flex;
  position: relative;
  z-index: 2;
}
#article-24 .angebot.content-text.media.media--above > .inside .rte {
  order: 2;
  text-align: right;
}
#article-24 .angebot.content-text.media.media--above > .inside .rte h4 {
  color: #f6a800;
}
#article-24 .angebot.content-text.media.media--above > .inside .rte h3 {
  color: #ffcc00;
  font-weight: bold;
}
#article-24 .angebot.content-text.media.media--above > .inside .rte p {
  color: #000000;
}
#article-24 .angebot.content-text.media.media--above > .inside figure {
  order: 1;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#article-24 .angebot.content-text.media.media--above > .inside figure img {
  max-width: 100%;
}

@media (min-width: 1401px) {
  #article-24 .content-headline.stoerer {
    width: 230px;
    height: 116px;
    top: -58px;
    left: 75px;
    font-size: 30px;
    font-weight: bold;
  }
  #article-24 .content-headline.stoerer:before,
  #article-24 .content-headline.stoerer:after {
    border: 116px solid transparent;
  }
  #article-24 .content-headline.stoerer:before {
    top: -116px;
    border-bottom: 58px solid #f6a800;
  }
  #article-24 .content-headline.stoerer:after {
    top: 58px;
    border-top: 58px solid #f6a800;
  }
  #article-24 .angebot.content-text.media.media--above > .inside {
    padding: 75px;
  }
  #article-24 .angebot.content-text.media.media--above > .inside .rte {
    width: 35%;
    padding-left: 150px;
  }
  #article-24 .angebot.content-text.media.media--above > .inside figure {
    width: 65%;
  }
}

@media (min-width: 951px) and (max-width: 1400px) {
  #article-24 .content-headline.stoerer {
    width: 176px;
    height: 88px;
    top: -44px;
    left: 56px;
    font-size: 25.8857142857px;
    font-weight: bold;
  }
  #article-24 .content-headline.stoerer:before,
  #article-24 .content-headline.stoerer:after {
    border: 88px solid transparent;
  }
  #article-24 .content-headline.stoerer:before {
    top: -88px;
    border-bottom: 44px solid #f6a800;
  }
  #article-24 .content-headline.stoerer:after {
    top: 44px;
    border-top: 44px solid #f6a800;
  }
  #article-24 .angebot.content-text.media.media--above > .inside {
    padding: 56.25px;
  }
  #article-24 .angebot.content-text.media.media--above > .inside .rte {
    width: 45%;
    padding-left: 97.5px;
  }
  #article-24 .angebot.content-text.media.media--above > .inside figure {
    width: 55%;
  }
}

@media (min-width: 641px) and (max-width: 950px) {
  #article-24 .content-headline.stoerer {
    width: 176px;
    height: 88px;
    top: -44px;
    left: 56px;
    font-size: 25.8857142857px;
    font-weight: bold;
  }
  #article-24 .content-headline.stoerer:before,
  #article-24 .content-headline.stoerer:after {
    border: 88px solid transparent;
  }
  #article-24 .content-headline.stoerer:before {
    top: -88px;
    border-bottom: 44px solid #f6a800;
  }
  #article-24 .content-headline.stoerer:after {
    top: 44px;
    border-top: 44px solid #f6a800;
  }
  #article-24 .angebot.content-text.media.media--above > .inside {
    padding: 56.25px;
    flex-wrap: wrap;
  }
  #article-24 .angebot.content-text.media.media--above > .inside .rte {
    width: 100%;
    text-align: left;
    padding-left: 0;
  }
  #article-24 .angebot.content-text.media.media--above > .inside figure {
    width: 100%;
    margin-bottom: 40px;
  }
  #article-24 .angebot.content-text.media.media--above > .inside figure img {
    width: 100%;
  }
}

@media (min-width: 401px) and (max-width: 640px) {
  #article-24 .content-headline.stoerer {
    width: 146px;
    height: 74px;
    top: -37px;
    left: 47px;
    font-size: 20.8160714286px;
    font-weight: bold;
  }
  #article-24 .content-headline.stoerer:before,
  #article-24 .content-headline.stoerer:after {
    border: 74px solid transparent;
  }
  #article-24 .content-headline.stoerer:before {
    top: -74px;
    border-bottom: 37px solid #f6a800;
  }
  #article-24 .content-headline.stoerer:after {
    top: 37px;
    border-top: 37px solid #f6a800;
  }
  #article-24 .angebot.content-text.media.media--above > .inside {
    padding: 46.875px;
    flex-wrap: wrap;
  }
  #article-24 .angebot.content-text.media.media--above > .inside .rte {
    width: 100%;
    text-align: left;
    padding-left: 0;
  }
  #article-24 .angebot.content-text.media.media--above > .inside figure {
    width: 100%;
    margin-bottom: 35px;
  }
  #article-24 .angebot.content-text.media.media--above > .inside figure img {
    width: 100%;
  }
}

@media (max-width: 400px) {
  #article-24 .content-headline.stoerer {
    width: 115px;
    height: 58px;
    top: -29px;
    left: 37.5px;
    font-size: 17px;
    font-weight: bold;
  }
  #article-24 .content-headline.stoerer:before,
  #article-24 .content-headline.stoerer:after {
    border: 58px solid transparent;
  }
  #article-24 .content-headline.stoerer:before {
    top: -58px;
    border-bottom: 29px solid #f6a800;
  }
  #article-24 .content-headline.stoerer:after {
    top: 29px;
    border-top: 29px solid #f6a800;
  }
  #article-24 .angebot.content-text.media.media--above > .inside {
    padding: 37.5px;
    flex-wrap: wrap;
  }
  #article-24 .angebot.content-text.media.media--above > .inside .rte {
    width: 100%;
    text-align: left;
    padding-left: 0;
  }
  #article-24 .angebot.content-text.media.media--above > .inside figure {
    width: 100%;
    margin-bottom: 30px;
  }
  #article-24 .angebot.content-text.media.media--above > .inside figure img {
    width: 100%;
  }
}

/* article-24 final angebot fix (wrapper-agnostic) */
@media (min-width: 951px) {
  #article-24 .angebot.content-text.media.media--above,
  #article-24 .angebot.content-text.media.media--above > .inside {
    display: flex;
    align-items: stretch;
  }

  #article-24 .angebot.content-text.media.media--above > .rte,
  #article-24 .angebot.content-text.media.media--above > .inside > .rte {
    order: 2;
    text-align: right;
    margin-top: 0;
  }

  #article-24 .angebot.content-text.media.media--above > figure,
  #article-24 .angebot.content-text.media.media--above > .inside > figure {
    order: 1;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}

@media (min-width: 1401px) {
  #article-24 .angebot.content-text.media.media--above > .rte,
  #article-24 .angebot.content-text.media.media--above > .inside > .rte {
    width: 35%;
    padding-left: 150px;
  }

  #article-24 .angebot.content-text.media.media--above > figure,
  #article-24 .angebot.content-text.media.media--above > .inside > figure {
    width: 65%;
  }
}

@media (min-width: 951px) and (max-width: 1400px) {
  #article-24 .angebot.content-text.media.media--above > .rte,
  #article-24 .angebot.content-text.media.media--above > .inside > .rte {
    width: 45%;
    padding-left: 97.5px;
  }

  #article-24 .angebot.content-text.media.media--above > figure,
  #article-24 .angebot.content-text.media.media--above > .inside > figure {
    width: 55%;
  }

  #article-24 .angebot.content-text.media.media--above > .rte h4,
  #article-24 .angebot.content-text.media.media--above > .inside > .rte h4 {
    color: #f6a800;
    font-size: 22.9485714286px;
    font-weight: bold;
    line-height: 1.5;
    margin: 0 0 15px 0;
  }

  /* Also cover legacy .inside > .text h4 structure with maximal specificity */
  #article-24 .angebot.content-text.media.media--above .inside .text h4 {
    color: #f6a800;
    font-size: 22.9485714286px;
    font-weight: bold;
    line-height: 1.5;
    margin: 0 0 15px 0;
  }
}

/* Fallback: Explicit padding for article-24 angebot blocks */
@media (min-width: 1401px) {
  #article-24 .angebot.content-text.media.media--above {
    padding: 75px !important;
  }
}

@media (min-width: 951px) and (max-width: 1400px) {
  #article-24 .angebot.content-text.media.media--above {
    padding: 56.25px !important;
  }
}

@media (min-width: 641px) and (max-width: 950px) {
  #article-24 .angebot.content-text.media.media--above {
    padding: 56.25px !important;
  }
}

@media (min-width: 401px) and (max-width: 640px) {
  #article-24 .angebot.content-text.media.media--above {
    padding: 46.875px !important;
  }
}

@media (max-width: 400px) {
  #article-24 .angebot.content-text.media.media--above {
    padding: 37.5px !important;
  }
}

/* Final fix: restore legacy h3 look in article-24 angebot */
#article-24 .angebot.content-text.media.media--above > .rte h3,
#article-24 .angebot.content-text.media.media--above .inside .text h3 {
  color: #000 !important;
}

@media (min-width: 1401px) {
  #article-24 .angebot.content-text.media.media--above > .rte h3,
  #article-24 .angebot.content-text.media.media--above .inside .text h3 {
    font-size: 40px !important;
    font-weight: bold !important;
    line-height: 1.2 !important;
    margin: 0 0 30px 0 !important;
  }
}

/* Simplified list styling for CE text elements */
#main .ce_text ul,
#main .ce_text ol {
  margin: 0 0 20px 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

#main .ce_text ul li,
#main .ce_text ol li {
  border-bottom: 0px solid rgba(153, 153, 153, 0.5) !important;
  position: relative;
  padding-left: 2em !important;
  margin: 0 0 10px 0 !important;
  font-size: 17.0057142857px;
  font-weight: 300;
  line-height: 1.6;
  background: none !important;
}

#main .ce_text li {
  border-bottom: 2px solid rgba(153, 153, 153, 0.5) !important;
  position: relative;
}

#main .ce_text ul li:before,
#main .ce_text ol li:before,
#main .ce_text li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../../files/files/theme/images/icon-arrow-right.svg");
  background-position: center;
}

#main .ce_text li a {
  display: block;
  text-decoration: none;
}

@media (min-width: 641px) and (max-width: 950px) {
  #main .ce_text ul li,
  #main .ce_text ol li {
    padding-left: 2em !important;
    margin: 0 0 10px 0 !important;
    font-size: 17.0057142857px;
    font-weight: 300;
    line-height: 1.6;
  }

  #main .ce_text ul li:before,
  #main .ce_text ol li:before,
  #main .ce_text li:before {
    left: 0;
    top: 0.25em;
    width: 1em;
    height: 1em;
  }
}


/* 1. Basis-Styles fuer die CE-Text-Variante */
#main .rs-column.gallery .ce_text .inside {
  background: #ececec;
  height: 100%;
  box-sizing: border-box;
}

/* 2. Padding fuer die mittlere Bildschirmgroesse (641px - 950px) */
@media (min-width: 641px) and (max-width: 950px) {
  #main .rs-column.gallery.prinzipien .ce_text .inside,
  #main .rs-column.gallery.prinzipien .content-text {
    padding: 34px 38.25px !important;
  }

  /* Sicherstellen, dass das Element selbst die richtige Breite hat */
  #main .rs-column.gallery .content-text {
    flex: 0 1 50%;
    width: 50%;
  }
}

/* 3. Luecken-Ansatz mit transparentem Border fuer .content-text */
#main .rs-column.gallery .content-text {
  /* Wir simulieren die Luecke durch einen transparenten Border */
  border: 10px solid transparent;
  background-color: #ececec;

  /* Hintergrund nur innerhalb des Inhaltsbereichs zeichnen */
  background-clip: padding-box;

  box-sizing: border-box;
}

/* Innenabstand fuer den Text im grauen Kasten */
#main .rs-column.gallery .content-text .rte,
#main .rs-column.gallery .content-text h4 {
  padding: 20px;
}

/* 4. Text-Layout fuer Kachel-Elemente */
#main .ce_text.produkt-kachel .text,
#main .ce_text.kachel .text {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 641px) and (max-width: 950px) {
  #main .ce_text.produkt-kachel .text {
    order: 2;
    padding: 0 29.75px 21.25px 29.75px;
  }
}

/* 5. Typography and spacing for product tile text */
#main .rs-column.gallery .ce_text .inside .text p:last-child,
#main .rs-column.gallery .ce_text .inside .text div:last-child,
#main .rs-column.gallery .ce_text .inside .text ul:last-child,
#main .rs-column.gallery .ce_text .inside .text ol:last-child,
#main .rs-column.gallery .ce_text .inside .text h1:last-child,
#main .rs-column.gallery .ce_text .inside .text h2:last-child,
#main .rs-column.gallery .ce_text .inside .text h3:last-child,
#main .rs-column.gallery .ce_text .inside .text h4:last-child,
#main .rs-column.gallery .ce_text .inside .text h5:last-child,
#main .rs-column.gallery .ce_text .inside .text h6:last-child {
  margin-bottom: 0;
}

#main .ce_text.produkt-kachel .text p,
#main .ce_text.kachel .text p {
  border-top: 2px solid #000000;
  align-self: flex-end;
  margin: 0;
}

#main .ce_text.produkt-kachel .text h1,
#main .ce_text.produkt-kachel .text h2,
#main .ce_text.produkt-kachel .text h3,
#main .ce_text.produkt-kachel .text h4,
#main .ce_text.produkt-kachel .text h5,
#main .ce_text.produkt-kachel .text h6,
#main .ce_text.produkt-kachel .text p,
#main .ce_text.kachel .text h1,
#main .ce_text.kachel .text h2,
#main .ce_text.kachel .text h3,
#main .ce_text.kachel .text h4,
#main .ce_text.kachel .text h5,
#main .ce_text.kachel .text h6,
#main .ce_text.kachel .text p {
  width: 100%;
}

@media (min-width: 641px) and (max-width: 950px) {
  #main .ce_text.produkt-kachel .text p {
    padding: 20px 0 0 0;
  }
}

@media (min-width: 641px) and (max-width: 950px) {
  #main .rs-column.gallery .produkt-kachel,
  #main .rs-column.gallery .kachel,
  #main .rs-column.gallery .content-text.kachel {
    padding: 0 !important;
  }
}

/* Desktop spacing override for all article mod_article blocks */
@media (min-width: 1401px) {
  #main #cedima.mod_article {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
  }

  #main .mod_article[id^="article-"] {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
  }
}

@media (min-width: 951px) and (max-width: 1400px) {
  #main #cedima.mod_article {
    padding-top: 97.5px !important;
    padding-bottom: 97.5px !important;
  }

  #main .mod_article[id^="article-"] {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
  }
}

@media (min-width: 641px) and (max-width: 950px) {
  #main #cedima.mod_article {
    padding-top: 97.5px !important;
    padding-bottom: 97.5px !important;
  }

  #main .mod_article[id^="article-"] {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
  }
}

@media (max-width: 640px) {
  #main .mod_article[id^="article-"] {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
  }
}

/* Final ce_text overrides to ensure kachel link/text behavior */
#main .ce_text.produkt-kachel .text,
#main .ce_text.kachel .text {
  display: flex;
  flex-wrap: wrap;
}

#main .rs-column.gallery .ce_text .inside .text p:last-child,
#main .rs-column.gallery .ce_text .inside .text div:last-child,
#main .rs-column.gallery .ce_text .inside .text ul:last-child,
#main .rs-column.gallery .ce_text .inside .text ol:last-child,
#main .rs-column.gallery .ce_text .inside .text h1:last-child,
#main .rs-column.gallery .ce_text .inside .text h2:last-child,
#main .rs-column.gallery .ce_text .inside .text h3:last-child,
#main .rs-column.gallery .ce_text .inside .text h4:last-child,
#main .rs-column.gallery .ce_text .inside .text h5:last-child,
#main .rs-column.gallery .ce_text .inside .text h6:last-child {
  margin-bottom: 0;
}

#main .ce_text.produkt-kachel .text p,
#main .ce_text.kachel .text p {
  border-top: 2px solid #000000;
  align-self: flex-end;
  margin: 0;
}

#main .ce_text.produkt-kachel .text h1,
#main .ce_text.produkt-kachel .text h2,
#main .ce_text.produkt-kachel .text h3,
#main .ce_text.produkt-kachel .text h4,
#main .ce_text.produkt-kachel .text h5,
#main .ce_text.produkt-kachel .text h6,
#main .ce_text.produkt-kachel .text p,
#main .ce_text.kachel .text h1,
#main .ce_text.kachel .text h2,
#main .ce_text.kachel .text h3,
#main .ce_text.kachel .text h4,
#main .ce_text.kachel .text h5,
#main .ce_text.kachel .text h6,
#main .ce_text.kachel .text p {
  width: 100%;
}

#main .ce_text.produkt-kachel .text p a,
#main .ce_text.kachel .text p a {
  color: #000000;
  display: block;
  text-decoration: none;
  background-image: url(/files/theme/images/icon-arrow-right.svg);
  background-position: center right;
  background-repeat: no-repeat;
}

#main .ce_text.produkt-kachel .text p em,
#main .ce_text.kachel .text p em {
  color: #333333;
  font-weight: 300;
  font-style: normal;
}

#main .ce_text.produkt-kachel .image:before {
  content: "";
  display: block;
  padding-top: 75%;
}

#main .rs-column.gallery .produkt-kachel,
#main .rs-column.gallery .kachel {
  box-sizing: border-box;
}

#main .rs-column.gallery .ce_text {
  box-sizing: border-box;
  margin-bottom: 0;
}

#main .rs-column.gallery .ce_text .inside {
  background: #ececec;
  height: 100%;
  box-sizing: border-box;
}

#main .ce_text.produkt-kachel .inside,
#main .ce_text.kachel .inside {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ececec;
  transition: all 400ms;
}

#main .ce_slider li a {
  display: block;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#main a {
  text-decoration: none;
  color: #f6a800;
}

#main p {
  color: #333333;
}

#main .ce_downloads li,
#main .ce_download li {
  background: #ececec;
}

#main .ce_downloads a,
#main .ce_download a {
  text-decoration: none;
  color: #000000;
  display: block;
  background-image: url(/files/theme/images/icon-file-pdf.svg);
  background-repeat: no-repeat;
  background-position: left center;
}

#main .ce_filter .headline {
  border-bottom: 2px solid #000000;
  background-image: url(/files/theme/images/icon-filter.svg);
  background-position: top 0.25em right;
  background-repeat: no-repeat;
}

#main .ce_filter label {
  position: relative;
  cursor: pointer;
}

#main .ce_filter input[type="radio"] {
  visibility: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
}

#main .ce_filter label:before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  background-color: rgba(153, 153, 153, 0.5);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 400ms;
}

#main .ce_filter input:checked + label:before {
  background-color: #f6a800;
  background-image: url(/files/theme/images/icon-check.svg);
}

@media (min-width: 951px) and (max-width: 1400px) {
  #main .ce_downloads li,
  #main .ce_download li {
    font-size: 17.0057142857px;
    font-weight: bold;
    padding: 21.25px 25.5px;
    margin: 0 0 8px 0;
  }

  #main .ce_downloads a,
  #main .ce_download a {
    padding: 11px 0 11px 42px;
    background-size: 28px auto;
  }

  #main .rs-column.gallery .produkt-kachel,
  #main .rs-column.gallery .kachel {
    width: 50%;
  }

  #main .rs-column.gallery .ce_text {
    width: 50%;
  }

  #main .ce_text.produkt-kachel .text {
    order: 2;
    padding: 0 29.75px 21.25px 29.75px;
  }

  #main .ce_text.produkt-kachel .image {
    order: 1;
    flex-grow: 1;
    margin: 29.75px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }

  #main .ce_text.produkt-kachel .text p {
    padding: 20px 0 0 0;
  }

  #main .ce_text.produkt-kachel .text p a {
    font-size: 15.5057142857px;
    font-weight: bold;
    line-height: 1.6;
    background-size: 24px;
    padding-right: 34px;
  }

  #main p {
    font-size: 17.0057142857px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 20px 0;
  }

  #main .ce_filter .headline {
    font-size: 21.4714285714px;
    font-weight: bold;
    line-height: 1.5;
    padding-bottom: 10px;
    margin-bottom: 21.25px;
    background-size: 1em;
  }

  #main .ce_filter .sub-headline {
    font-size: 17.0057142857px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 5px;
  }

  #main .ce_filter label {
    padding-left: 34px;
    font-size: 17.0057142857px;
    font-weight: 300;
    line-height: 1.6;
  }

  #main .ce_filter label:before {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 950px) {
  #main .ce_downloads li,
  #main .ce_download li {
    font-size: 16px;
    font-weight: bold;
    padding: 16px 18px;
    margin: 0 0 8px 0;
  }

  #main .ce_downloads a,
  #main .ce_download a {
    padding: 9px 0 9px 36px;
    background-size: 24px auto;
  }

  #main .rs-column.gallery .produkt-kachel,
  #main .rs-column.gallery .kachel,
  #main .rs-column.gallery .content-text.kachel {
    width: 100% !important;
    padding: 15px;
  }

  #main .rs-column.gallery .ce_text {
    width: 100% !important;
  }

  #main .ce_text.produkt-kachel .image,
  #main .ce_text.kachel .image {
    order: 1;
    margin: 20px 20px 0 20px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }

  #main .ce_text.produkt-kachel .text,
  #main .ce_text.kachel .text {
    order: 2;
    padding: 0 20px 20px 20px;
  }

  #main .ce_text.produkt-kachel .text p,
  #main .ce_text.kachel .text p {
    padding: 20px 0 0 0;
  }

  #main .ce_text.produkt-kachel .text p a,
  #main .ce_text.kachel .text p a {
    font-size: 15.5px;
    font-weight: bold;
    line-height: 1.6;
    background-size: 24px;
    padding-right: 34px;
  }

  #main p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 20px 0;
  }

  #main .ce_filter .headline {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    padding-bottom: 10px;
    margin-bottom: 20px;
    background-size: 1em;
  }

  #main .ce_filter .sub-headline {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 5px;
  }

  #main .ce_filter label {
    padding-left: 34px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
  }

  #main .ce_filter label:before {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 640px) {
  #main .ce_downloads li,
  #main .ce_download li {
    font-size: 15px;
    padding: 14px 15px;
  }

  #main .ce_downloads a,
  #main .ce_download a {
    padding: 8px 0 8px 32px;
    background-size: 21px auto;
  }

  #main .ce_text.produkt-kachel .image,
  #main .ce_text.kachel .image {
    margin: 15px 15px 0 15px;
  }

  #main .ce_text.produkt-kachel .text,
  #main .ce_text.kachel .text {
    padding: 0 15px 15px 15px;
  }
}

@media (min-width: 1401px) {
  #main .ce_downloads li,
  #main .ce_download li {
    font-size: 18px;
    font-weight: bold;
    padding: 25px 30px;
    margin: 0 0 8px 0;
  }

  #main .ce_downloads a,
  #main .ce_download a {
    padding: 11px 0 11px 47px;
    background-size: 32px auto;
  }

  #main .ce_text.produkt-kachel .image {
    order: 1;
    flex-grow: 1;
    margin: 35px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }

  #main .ce_text.produkt-kachel .text {
    order: 2;
    padding: 0 35px 25px 35px;
  }

  #main .ce_text.produkt-kachel .text p {
    padding: 20px 0 0 0;
  }

  #main .ce_text.produkt-kachel .text p a {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    background-size: 24px;
    padding-right: 40px;
  }

  #main .rs-column.gallery .produkt-kachel,
  #main .rs-column.gallery .kachel {
    width: 33.33%;
    padding: 15px;
  }

  #main .ce_filter .headline {
    font-size: 21.4714285714px;
    font-weight: bold;
    line-height: 1.5;
    padding-bottom: 10px;
    margin-bottom: 21.25px;
    background-size: 1em;
  }

  #main .ce_filter .sub-headline {
    font-size: 17.0057142857px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 5px;
  }

  #main .ce_filter label {
    padding-left: 34px;
    font-size: 17.0057142857px;
    font-weight: 300;
    line-height: 1.6;
  }

  #main .ce_filter label:before {
    width: 24px;
    height: 24px;
  }


}




/* article-112 final override (keep at EOF for cascade priority) */
#article-112 {
  position: relative;
}
#article-112 .ce_rs_column_start {
  position: relative;
}
#article-112 .content-headline.stoerer {
  display: flex;
  margin: 0;
  padding: 0;
  justify-content: space-around;
  align-items: center;
  position: absolute;
  color: #fff;
  z-index: 5;
}
#article-112 .content-headline.stoerer:before,
#article-112 .content-headline.stoerer:after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 0;
  height: 0;
  left: 0;
}
#article-112 .angebot.content-text.media.media--above {
  position: relative;
  z-index: 1;
  background: #ececec;
}
#article-112 .angebot.content-text.media.media--above:not(.ce_text) {
  display: flex;
  position: relative;
  z-index: 2;
  background: #ececec;
}
#article-112 .angebot.content-text.media.media--above:not(.ce_text) > figure {
  order: 1;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#article-112 .angebot.content-text.media.media--above:not(.ce_text) > figure img {
  max-width: 100%;
  width: auto;
  height: auto;
}
#article-112 .angebot.content-text.media.media--above:not(.ce_text) > .rte {
  order: 2;
}
#article-112 .angebot.content-text.media.media--above:not(.ce_text) > .rte h4 {
  color: #f6a800;
}
#article-112 .angebot.content-text.media.media--above:not(.ce_text) > .rte h3 {
  color: #ffcc00;
  font-weight: 700;
}
#article-112 .angebot.content-text.media.media--above:not(.ce_text) > .rte p {
  color: #000;
}
#article-112 .rs-column.-large-first.-large-last,
#article-112 .rs-column.-medium-first.-medium-last,
#article-112 .rs-column.-small-first.-small-last {
  padding-right: 0;
  padding-left: 0;
}
#article-112 .ce_text.hohe-kachel {
  box-sizing: border-box;
  transition: all 400ms;
  position: relative;
  background: #ececec;
}
#article-112 .ce_text.hohe-kachel > .inside {
  position: relative;
  z-index: 2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#article-112 .rs-column.first .ce_text.hohe-kachel > .inside {
  background-image: url('/files/theme/Startseite/kachel_maschinen.png');
}
#article-112 .rs-column.last .ce_text.hohe-kachel > .inside {
  background-image: url('/files/theme/Startseite/kachel_werkzeuge.png');
}
#article-112 .ce_text.hohe-kachel > .inside .text h4,
#article-112 .ce_text.hohe-kachel > .inside .rte h4 {
  color: #f6a800;
}
#article-112 .ce_text.hohe-kachel > .inside .text h2,
#article-112 .ce_text.hohe-kachel > .inside .rte h2 {
  color: #000;
}
@media (min-width: 1401px) {
  #article-112 .content-headline.stoerer {
    width: 230px;
    height: 116px;
    top: -58px;
    left: 75px;
    font-size: 30px;
    font-weight: 700;
  }
  #article-112 .content-headline.stoerer:before,
  #article-112 .content-headline.stoerer:after {
    border: 116px solid transparent;
  }
  #article-112 .content-headline.stoerer:before {
    top: -116px;
    border-bottom: 58px solid #f6a800;
  }
  #article-112 .content-headline.stoerer:after {
    top: 58px;
    border-top: 58px solid #f6a800;
  }
  #article-112 .angebot.content-text.media.media--above:not(.ce_text) {
    padding: 75px;
  }
  #article-112 .angebot.content-text.media.media--above:not(.ce_text) > figure {
    width: 65%;
  }
  #article-112 .angebot.content-text.media.media--above:not(.ce_text) > .rte {
    width: 35%;
    text-align: right;
    padding-left: 150px;
  }
  #article-112 .ce_text.hohe-kachel > .inside {
    min-height: 700px;
    padding: 75px;
  }
}
@media (min-width: 951px) and (max-width: 1400px) {
  #article-112 .content-headline.stoerer {
    width: 176px;
    height: 88px;
    top: -44px;
    left: 56px;
    font-size: 25.89px;
    font-weight: 700;
  }
  #article-112 .content-headline.stoerer:before,
  #article-112 .content-headline.stoerer:after {
    border: 88px solid transparent;
  }
  #article-112 .content-headline.stoerer:before {
    top: -88px;
    border-bottom: 44px solid #f6a800;
  }
  #article-112 .content-headline.stoerer:after {
    top: 44px;
    border-top: 44px solid #f6a800;
  }
  #article-112 .angebot.content-text.media.media--above:not(.ce_text) {
    padding: 56.25px;
  }
  #article-112 .angebot.content-text.media.media--above:not(.ce_text) > figure {
    width: 55%;
  }
  #article-112 .angebot.content-text.media.media--above:not(.ce_text) > .rte {
    width: 45%;
    text-align: right;
    padding-left: 97.5px;
  }
  #article-112 .ce_text.hohe-kachel > .inside {
    min-height: 550px;
    padding: 56.25px;
  }
}
@media (min-width: 641px) and (max-width: 950px) {
  #article-112 .content-headline.stoerer {
    width: 176px;
    height: 88px;
    top: -44px;
    left: 56px;
    font-size: 25.89px;
    font-weight: 700;
  }
  #article-112 .content-headline.stoerer:before,
  #article-112 .content-headline.stoerer:after {
    border: 88px solid transparent;
  }
  #article-112 .content-headline.stoerer:before {
    top: -88px;
    border-bottom: 44px solid #f6a800;
  }
  #article-112 .content-headline.stoerer:after {
    top: 44px;
    border-top: 44px solid #f6a800;
  }
  #article-112 .angebot.content-text.media.media--above:not(.ce_text) {
    padding: 56.25px;
    flex-wrap: wrap;
  }
  #article-112 .angebot.content-text.media.media--above:not(.ce_text) > figure {
    width: 100%;
    margin-bottom: 40px;
  }
  #article-112 .angebot.content-text.media.media--above:not(.ce_text) > figure img {
    width: 100%;
    max-height: none;
  }
  #article-112 .angebot.content-text.media.media--above:not(.ce_text) > .rte {
    width: 100%;
    text-align: left;
    padding-left: 0;
  }
  #article-112 .ce_text.hohe-kachel > .inside {
    min-height: 550px;
    padding: 56.25px;
  }
}
@media (min-width: 401px) and (max-width: 640px) {
  #article-112 .content-headline.stoerer {
    width: 146px;
    height: 74px;
    top: -37px;
    left: 47px;
    font-size: 20.8160714286px;
    font-weight: 700;
  }
  #article-112 .content-headline.stoerer:before,
  #article-112 .content-headline.stoerer:after {
    border: 74px solid transparent;
  }
  #article-112 .content-headline.stoerer:before {
    top: -74px;
    border-bottom: 37px solid #f6a800;
  }
  #article-112 .content-headline.stoerer:after {
    top: 37px;
    border-top: 37px solid #f6a800;
  }
  #article-112 .angebot.content-text.media.media--above:not(.ce_text) {
    padding: 46.875px;
    flex-wrap: wrap;
  }
  #article-112 .angebot.content-text.media.media--above:not(.ce_text) > figure {
    width: 100%;
    margin-bottom: 35px;
  }
  #article-112 .angebot.content-text.media.media--above:not(.ce_text) > figure img {
    width: 100%;
    max-height: none;
  }
  #article-112 .angebot.content-text.media.media--above:not(.ce_text) > .rte {
    width: 100%;
    text-align: left;
    padding-left: 0;
  }
  #article-112 .ce_text.hohe-kachel > .inside {
    min-height: 475px;
    padding: 46.875px;
    background-size: contain;
  }
}
@media (max-width: 400px) {
  #article-112 .content-headline.stoerer {
    width: 115px;
    height: 58px;
    top: -29px;
    left: 37.5px;
    font-size: 17px;
    font-weight: 700;
  }
  #article-112 .content-headline.stoerer:before,
  #article-112 .content-headline.stoerer:after {
    border: 58px solid transparent;
  }
  #article-112 .content-headline.stoerer:before {
    top: -58px;
    border-bottom: 29px solid #f6a800;
  }
  #article-112 .content-headline.stoerer:after {
    top: 29px;
    border-top: 29px solid #f6a800;
  }
  #article-112 .angebot.content-text.media.media--above:not(.ce_text) {
    padding: 37.5px;
    flex-wrap: wrap;
  }
  #article-112 .angebot.content-text.media.media--above:not(.ce_text) > figure {
    width: 100%;
    margin-bottom: 30px;
  }
  #article-112 .angebot.content-text.media.media--above:not(.ce_text) > figure img {
    width: 100%;
    max-height: none;
  }
  #article-112 .angebot.content-text.media.media--above:not(.ce_text) > .rte {
    width: 100%;
    text-align: left;
    padding-left: 0;
  }
  #article-112 .ce_text.hohe-kachel > .inside {
    min-height: 100vw;
    padding: 37.5px;
    background-size: contain;
  }
}

/* article-112 true 1:1 mirror of article-24 final offered overrides */
#article-112 .content-headline.stoerer {
  display: flex;
  margin: 0;
  padding: 0;
  justify-content: space-around;
  align-items: center;
  position: absolute;
  color: white;
  z-index: 1;
}
#article-112 .content-headline.stoerer:before,
#article-112 .content-headline.stoerer:after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 0;
  height: 0;
  left: 0;
}

#article-112 .angebot.content-text.media.media--above {
  background: #ececec;
}
#article-112 .angebot.content-text.media.media--above > .inside {
  display: flex;
  position: relative;
  z-index: 2;
}
#article-112 .angebot.content-text.media.media--above > .inside .rte {
  order: 2;
  text-align: right;
}
#article-112 .angebot.content-text.media.media--above > .inside .rte h4 {
  color: #f6a800;
}
#article-112 .angebot.content-text.media.media--above > .inside .rte h3 {
  color: #ffcc00;
  font-weight: bold;
}
#article-112 .angebot.content-text.media.media--above > .inside .rte p {
  color: #000000;
}
#article-112 .angebot.content-text.media.media--above > .inside figure {
  order: 1;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#article-112 .angebot.content-text.media.media--above > .inside figure img {
  max-width: 100%;
}

@media (min-width: 1401px) {
  #article-112 .content-headline.stoerer {
    width: 230px;
    height: 116px;
    top: -58px;
    left: 75px;
    font-size: 30px;
    font-weight: bold;
  }
  #article-112 .content-headline.stoerer:before,
  #article-112 .content-headline.stoerer:after {
    border: 116px solid transparent;
  }
  #article-112 .content-headline.stoerer:before {
    top: -116px;
    border-bottom: 58px solid #f6a800;
  }
  #article-112 .content-headline.stoerer:after {
    top: 58px;
    border-top: 58px solid #f6a800;
  }
  #article-112 .angebot.content-text.media.media--above > .inside {
    padding: 75px;
  }
  #article-112 .angebot.content-text.media.media--above > .inside .rte {
    width: 35%;
    padding-left: 150px;
  }
  #article-112 .angebot.content-text.media.media--above > .inside figure {
    width: 65%;
  }
}

@media (min-width: 951px) and (max-width: 1400px) {
  #article-112 .content-headline.stoerer {
    width: 176px;
    height: 88px;
    top: -44px;
    left: 56px;
    font-size: 25.8857142857px;
    font-weight: bold;
  }
  #article-112 .content-headline.stoerer:before,
  #article-112 .content-headline.stoerer:after {
    border: 88px solid transparent;
  }
  #article-112 .content-headline.stoerer:before {
    top: -88px;
    border-bottom: 44px solid #f6a800;
  }
  #article-112 .content-headline.stoerer:after {
    top: 44px;
    border-top: 44px solid #f6a800;
  }
  #article-112 .angebot.content-text.media.media--above > .inside {
    padding: 56.25px;
  }
  #article-112 .angebot.content-text.media.media--above > .inside .rte {
    width: 45%;
    padding-left: 97.5px;
  }
  #article-112 .angebot.content-text.media.media--above > .inside figure {
    width: 55%;
  }
}

@media (min-width: 641px) and (max-width: 950px) {
  #article-112 .content-headline.stoerer {
    width: 176px;
    height: 88px;
    top: -44px;
    left: 56px;
    font-size: 25.8857142857px;
    font-weight: bold;
  }
  #article-112 .content-headline.stoerer:before,
  #article-112 .content-headline.stoerer:after {
    border: 88px solid transparent;
  }
  #article-112 .content-headline.stoerer:before {
    top: -88px;
    border-bottom: 44px solid #f6a800;
  }
  #article-112 .content-headline.stoerer:after {
    top: 44px;
    border-top: 44px solid #f6a800;
  }
  #article-112 .angebot.content-text.media.media--above > .inside {
    padding: 56.25px;
    flex-wrap: wrap;
  }
  #article-112 .angebot.content-text.media.media--above > .inside .rte {
    width: 100%;
    text-align: left;
    padding-left: 0;
  }
  #article-112 .angebot.content-text.media.media--above > .inside figure {
    width: 100%;
    margin-bottom: 40px;
  }
  #article-112 .angebot.content-text.media.media--above > .inside figure img {
    width: 100%;
  }
}

@media (min-width: 401px) and (max-width: 640px) {
  #article-112 .content-headline.stoerer {
    width: 146px;
    height: 74px;
    top: -37px;
    left: 47px;
    font-size: 20.8160714286px;
    font-weight: bold;
  }
  #article-112 .content-headline.stoerer:before,
  #article-112 .content-headline.stoerer:after {
    border: 74px solid transparent;
  }
  #article-112 .content-headline.stoerer:before {
    top: -74px;
    border-bottom: 37px solid #f6a800;
  }
  #article-112 .content-headline.stoerer:after {
    top: 37px;
    border-top: 37px solid #f6a800;
  }
  #article-112 .angebot.content-text.media.media--above > .inside {
    padding: 46.875px;
    flex-wrap: wrap;
  }
  #article-112 .angebot.content-text.media.media--above > .inside .rte {
    width: 100%;
    text-align: left;
    padding-left: 0;
  }
  #article-112 .angebot.content-text.media.media--above > .inside figure {
    width: 100%;
    margin-bottom: 35px;
  }
  #article-112 .angebot.content-text.media.media--above > .inside figure img {
    width: 100%;
  }
}

@media (max-width: 400px) {
  #article-112 .content-headline.stoerer {
    width: 115px;
    height: 58px;
    top: -29px;
    left: 37.5px;
    font-size: 17px;
    font-weight: bold;
  }
  #article-112 .content-headline.stoerer:before,
  #article-112 .content-headline.stoerer:after {
    border: 58px solid transparent;
  }
  #article-112 .content-headline.stoerer:before {
    top: -58px;
    border-bottom: 29px solid #f6a800;
  }
  #article-112 .content-headline.stoerer:after {
    top: 29px;
    border-top: 29px solid #f6a800;
  }
  #article-112 .angebot.content-text.media.media--above > .inside {
    padding: 37.5px;
    flex-wrap: wrap;
  }
  #article-112 .angebot.content-text.media.media--above > .inside .rte {
    width: 100%;
    text-align: left;
    padding-left: 0;
  }
  #article-112 .angebot.content-text.media.media--above > .inside figure {
    width: 100%;
    margin-bottom: 30px;
  }
  #article-112 .angebot.content-text.media.media--above > .inside figure img {
    width: 100%;
  }
}

/* article-112 final angebot fix (wrapper-agnostic) */
@media (min-width: 951px) {
  #article-112 .angebot.content-text.media.media--above,
  #article-112 .angebot.content-text.media.media--above > .inside {
    display: flex;
    align-items: stretch;
  }

  #article-112 .angebot.content-text.media.media--above > .rte,
  #article-112 .angebot.content-text.media.media--above > .inside > .rte {
    order: 2;
    text-align: right;
    margin-top: 0;
  }

  #article-112 .angebot.content-text.media.media--above > figure,
  #article-112 .angebot.content-text.media.media--above > .inside > figure {
    order: 1;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}

@media (min-width: 1401px) {
  #article-112 .angebot.content-text.media.media--above > .rte,
  #article-112 .angebot.content-text.media.media--above > .inside > .rte {
    width: 35%;
    padding-left: 150px;
  }

  #article-112 .angebot.content-text.media.media--above > figure,
  #article-112 .angebot.content-text.media.media--above > .inside > figure {
    width: 65%;
  }
}

@media (min-width: 951px) and (max-width: 1400px) {
  #article-112 .angebot.content-text.media.media--above > .rte,
  #article-112 .angebot.content-text.media.media--above > .inside > .rte {
    width: 45%;
    padding-left: 97.5px;
  }

  #article-112 .angebot.content-text.media.media--above > figure,
  #article-112 .angebot.content-text.media.media--above > .inside > figure {
    width: 55%;
  }

  #article-112 .angebot.content-text.media.media--above > .rte h4,
  #article-112 .angebot.content-text.media.media--above > .inside > .rte h4 {
    color: #f6a800;
    font-size: 22.9485714286px;
    font-weight: bold;
    line-height: 1.5;
    margin: 0 0 15px 0;
  }

  #article-112 .angebot.content-text.media.media--above .inside .text h4 {
    color: #f6a800;
    font-size: 22.9485714286px;
    font-weight: bold;
    line-height: 1.5;
    margin: 0 0 15px 0;
  }
}

/* Fallback: Explicit padding for article-112 angebot blocks */
@media (min-width: 1401px) {
  #article-112 .angebot.content-text.media.media--above {
    padding: 75px !important;
  }
}

@media (min-width: 951px) and (max-width: 1400px) {
  #article-112 .angebot.content-text.media.media--above {
    padding: 56.25px !important;
  }
}

@media (min-width: 641px) and (max-width: 950px) {
  #article-112 .angebot.content-text.media.media--above {
    padding: 56.25px !important;
  }
}

@media (min-width: 401px) and (max-width: 640px) {
  #article-112 .angebot.content-text.media.media--above {
    padding: 46.875px !important;
  }
}

@media (max-width: 400px) {
  #article-112 .angebot.content-text.media.media--above {
    padding: 37.5px !important;
  }
}

/* Final fix: restore legacy h3 look in article-112 angebot */
#article-112 .angebot.content-text.media.media--above > .rte h3,
#article-112 .angebot.content-text.media.media--above .inside .text h3 {
  color: #000 !important;
}

@media (min-width: 1401px) {
  #article-112 .angebot.content-text.media.media--above > .rte h3,
  #article-112 .angebot.content-text.media.media--above .inside .text h3 {
    font-size: 40px !important;
    font-weight: bold !important;
    line-height: 1.2 !important;
    margin: 0 0 30px 0 !important;
  }
}

/* article-112 missing parity: stoerer stacking + hohe-kachel .text structure */
#article-112 .ce_rs_column_start > .angebot.content-text.media.media--above {
  position: relative;
  z-index: 1;
}

#article-112 .ce_rs_column_start > .content-headline.stoerer {
  z-index: 5;
}

/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22sources%22%3A%5B%22homepages%2F40%2Fd396673977%2Fhtdocs%2Fwww-cedima-com%2Ffiles%2Ftheme%2Fstyles%2Fstyle.scss%22%2C%22homepages%2F40%2Fd396673977%2Fhtdocs%2Fwww-cedima-com%2Ffiles%2Ftheme%2Fstyles%2Fbase.inc.scss%22%2C%22homepages%2F40%2Fd396673977%2Fhtdocs%2Fwww-cedima-com%2Ffiles%2Ftheme%2Fstyles%2Fmediaqueries.inc.scss%22%2C%22homepages%2F40%2Fd396673977%2Fhtdocs%2Fwww-cedima-com%2Ffiles%2Ftheme%2Fstyles%2F01-x.inc.scss%22%2C%22homepages%2F40%2Fd396673977%2Fhtdocs%2Fwww-cedima-com%2Ffiles%2Ftheme%2Fstyles%2F02-l.inc.scss%22%2C%22homepages%2F40%2Fd396673977%2Fhtdocs%2Fwww-cedima-com%2Ffiles%2Ftheme%2Fstyles%2F03-m.inc.scss%22%2C%22homepages%2F40%2Fd396673977%2Fhtdocs%2Fwww-cedima-com%2Ffiles%2Ftheme%2Fstyles%2F04-s.inc.scss%22%2C%22homepages%2F40%2Fd396673977%2Fhtdocs%2Fwww-cedima-com%2Ffiles%2Ftheme%2Fstyles%2F05-xs.inc.scss%22%2C%22homepages%2F40%2Fd396673977%2Fhtdocs%2Fwww-cedima-com%2Ffiles%2Ftheme%2Fstyles%2Fnavi-01.inc.scss%22%2C%22homepages%2F40%2Fd396673977%2Fhtdocs%2Fwww-cedima-com%2Ffiles%2Ftheme%2Fstyles%2Fnavi-02.inc.scss%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22AAAA%3BAAAA%3BAC6OA%3BAACC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAACC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAACC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAACC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAD9TD%3BAAAA%3BAEGA%3BACGC%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAWJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAFYC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAEzBD%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUF%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAASJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAOH%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaD%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASH%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASH%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAASF%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASD%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAF3YD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAEgYD%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAH3nBD%3BAEQA%3BAEFC%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHFC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAGXD%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUF%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAASJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAOH%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQH%3BAAAA%3BAAAA%3BAAOE%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASH%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASH%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAASF%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASD%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH3ZD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAGgZD%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAJ3oBD%3BAEaA%3BAGRC%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJgBC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAI7BD%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUF%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAASJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAMH%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaD%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASH%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAASF%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASD%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJvYD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAI4XD%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BALvnBD%3BAEkBA%3BAIbC%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BALkBC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAK%2FBD%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUF%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAASJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAMH%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASH%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAASF%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASD%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAL7XD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAKkXD%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAN7mBD%3BAEwBA%3BAKnBC%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BANkBC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAM%2FBD%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUF%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAASJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAMH%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASH%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAASF%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASD%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAN7XD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAMkXD%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAP7mBD%3BAE%2BBA%3BAM9BC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOE%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUC%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAR1HN%3BAEqCA%3BAOrCA%3BAAAA%3BAAAA%3BAAAA%3BAAOE%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOE%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAMH%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASC%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BATrIL%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcD%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%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%3BAAGA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAgBD%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAQC%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAAAA%3BAAAA%3BAASD%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAgBJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUD%3BAAAA%3BAAAA%3BAAoBC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAMH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAuBC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcH%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAMH%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcD%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUD%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYF%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaD%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYC%3BAAAA%3BAAAA%3BAAOH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiBC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAgBD%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMG%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%22%7D */

