.grid-row {
  position: relative;
  padding: 0 calc( calc( 100% - 1320px ) / 2 );
  margin: 80px 0;
  display: grid;
  grid-template-columns: repeat( 12, minmax(0,1fr) );
  row-gap: 20px;
  column-gap: 40px;
}
.grid-col {
  position: relative;
  box-sizing: content-box;
  display: grid;
  row-gap: 10px;
}

.grid-block {
  position: relative;
  text-overflow: ellipsis;
  overflow: hidden;
}

.grid-col.aligncntnt-start {
  align-content: start;
}
.grid-col.aligncntnt-end {
  align-content: end;
}
.grid-col.aligncntnt-center {
  align-content: center;
}
.grid-col.aligncntnt-stretch {
  align-content: stretch;
}
.grid-col.aligncntnt-space-around {
  align-content: space-around;
}
.grid-col.aligncntnt-space-between {
  align-content: space-between;
}
.grid-col.aligncntnt-space-evenly {
  align-content: space-evenly;
}

.grid-block.align-left, .grid-block.txt-left {
  text-align: left;
}
.grid-block.align-right, .grid-block.txt-right {
  text-align: right;
}
.grid-block.align-center, .grid-block.txt-center {
  text-align: center;
}
.grid-block.align-justify, .grid-block.txt-justify {
  text-align: justify;
}


/** de: Text: Weiß */
/** en: Text: Weiß */
.bax-white-text {
}
.bax-white-text, .bax-white-text a, .bax-white-text a:focus, .bax-white-text a:hover, .bax-white-text a:active,
.bax-white-text .headline1, .bax-white-text .headline2, .bax-white-text .headline3, .bax-white-text .headline4, .bax-white-text .headline5, .bax-white-text .headline6 {
  color: #FFFFFF;
}
.bax-white-text a {
  text-decoration: underline;
}
.bax-white-text a:focus, .bax-white-text a:hover, .bax-white-text a:active {
  text-decoration: none;
}


/** de: Bilder: volle Breite */
/** en: Bilder: volle Breite */
.bax-image-fullwidth {
}
.bax-image-fullwidth img, .bax-image-fullwidth svg {
  width: 100%;
  margin: 0;
}


/** de: Bilder: ohne Abstand */
/** en: Bilder: ohne Abstand */
.bax-image-nomargin {
}
.bax-image-nomargin img, .bax-image-nomargin svg {
  margin: 0;
}

/** de: Bilder: Runde Bilder */
/** en: Bilder: Runde Bilder */
.bax-image-round {
}
.bax-image-round img, .bax-image-round svg {
  border-radius: 10000px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}


/** de: Link-Hover Effekt */
/** en: Link-Hover Effekt */
.cax-hover-rotate {
  transition: 300ms;
}
.cax-hover-rotate:has(a:hover) {
  transform: rotate(2deg) scale(1.1);
}

/** de: Über 2 Zeilen ziehen */
/** en: Über 2 Zeilen ziehen */
.cax-rowspan2 {
  grid-row: span 2;
}



/** de: XS (alle Seiten) */
/** en: XS (alle Seiten) */
.cap-padding-xs {
  padding: clamp( 10px, 1vw, 20px );
}

/** de: S (alle Seiten) */
/** en: S (alle Seiten) */
.cap-padding-s {
  padding: clamp( 20px, 2vw, 40px );
}

/** de: XL (oben/unten) */
/** en: XL (oben/unten) */
.ram-margin-top-bottom-xl {
  margin-top: 140px !important;
  margin-bottom: 140px !important;
}

/** de: kein Abstand (oben/unten) */
/** en: kein Abstand (oben/unten) */
.ram-margin-0-top-bottom {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/** de: kein Abstand (oben) */
/** en: kein Abstand (oben) */
.ram-margin-0-top {
  margin-top: 0 !important;
}

/** de: kein Abstand (unten) */
/** en: kein Abstand (unten) */
.ram-margin-0-bottom {
  margin-bottom: 0 !important;
}

/** de: kein Abstand (unten) */
/** en: kein Abstand (unten) */
.rap-padding-0-bottom {
  padding-bottom: 0 !important;
}

/** de: kein Abstand (alle Seiten) */
/** en: kein Abstand (alle Seiten) */
.rap-padding-0 {
  padding: 0 !important;
}



/** de: Animation: Fade-In unten/oben */
/** en: Animation: Fade-In unten/oben */
.rax-fadein-bottom-top {
}
@media all and (min-width: 800px) {
  .rax-fadein-bottom-top div.grid-col {
    opacity: 0;
  }
  .rax-fadein-bottom-top.inview div.grid-col {
    animation: rax-fadein-bottom-top 1s forwards;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(1) {
    animation-delay: 0ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(2) {
    animation-delay: 250ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(3) {
    animation-delay: 500ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(4) {
    animation-delay: 750ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(5) {
    animation-delay: 1000ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(6) {
    animation-delay: 1250ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(7) {
    animation-delay: 1500ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(8) {
    animation-delay: 1750ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(9) {
    animation-delay: 2000ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(10) {
    animation-delay: 2250ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(11) {
    animation-delay: 2500ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(12) {
    animation-delay: 2750ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(13) {
    animation-delay: 3000ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(14) {
    animation-delay: 3250ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(15) {
    animation-delay: 3500ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(16) {
    animation-delay: 3750ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(17) {
    animation-delay: 4000ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(18) {
    animation-delay: 4250ms;
  }
  .rax-fadein-bottom-top.inview div.grid-col:nth-child(19) {
    animation-delay: 4500ms;
  }
  @keyframes rax-fadein-bottom-top {
    from {
      opacity: 0;
      transform: translate(0,100px);
    }
    to {
      opacity: 1;
      transform: translate(0,0);
    }
  }
}
.grid-row.row-colored-3 {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #F3F3F3;
}
.grid-col.col-inbackground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  grid-column: unset;
}
.grid-col.col-inbackground.col-1 {
  width: calc( 100% / 12 * 1 );
}
.grid-col.col-inbackground.col-2 {
  width: calc( 100% / 12 * 2 );
}
.grid-col.col-inbackground.col-3 {
  width: calc( 100% / 12 * 3 );
}
.grid-col.col-inbackground.col-4 {
  width: calc( 100% / 12 * 4 );
}
.grid-col.col-inbackground.col-5 {
  width: calc( 100% / 12 * 5 );
}
.grid-col.col-inbackground.col-6 {
  width: calc( 100% / 12 * 6 );
}
.grid-col.col-inbackground.col-7 {
  width: calc( 100% / 12 * 7 );
}
.grid-col.col-inbackground.col-8 {
  width: calc( 100% / 12 * 8 );
}
.grid-col.col-inbackground.col-9 {
  width: calc( 100% / 12 * 9 );
}
.grid-col.col-inbackground.col-10 {
  width: calc( 100% / 12 * 10 );
}
.grid-col.col-inbackground.col-11 {
  width: calc( 100% / 12 * 11 );
}.grid-col.col-colored-4 {
  border-radius: 12px;
  background: #ee1d24;
  align-self: start;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}.grid-col.col-colored-5 {
  border-radius: 12px;
  background: #204f2c;
  align-self: start;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}.grid-col.col-imageslider {
  background: #FFFFFF;
}
.grid-col.col-imageslider img, .grid-col.col-imageslider > a {
  margin: 0;
  width: 100%;
}
.grid-col.col-imageslider > .grid-block .grideditor-edit-button {
  display: none;
}
.grid-col.col-imageslider > .grid-block {
  display: none;
}
.grid-col.col-imageslider.slick-slider > .grid-block {
  display: block;
}
.grid-col.col-imageslider > .grid-block:first-child {
  display: block;
}

.grid-col.col-imageslider .slick-arrow {
  position: absolute;
  top: auto;
  bottom: 0.8rem;
  width: 2rem;
  height: 2rem;
  left: 0.8rem;
  border: 1px solid #000000;
  background: #FFFFFF;
  border: 0;
  outline: 0;
  overflow: hidden;
  color: transparent;
  cursor: pointer;
  transition: 300ms;
  z-index: 100;
}
.grid-col.col-imageslider .slick-arrow::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 63%;
  height: 50%;
  transform: translate(-50%,-50%) rotate(135deg);
  width: 0.75rem;
  height: 0.75rem;
  box-shadow: 1px 1px 0px 0 #000000;
  content: '';
}
.grid-col.col-imageslider .slick-arrow:hover::after {
  box-shadow: 1px 1px 0px 0 #FFFFFF;
}
.grid-col.col-imageslider .slick-next {
  left: auto;
  right: 13px;
}
.grid-col.col-imageslider .slick-next::after {
  left: 41%;
  transform: translate(-50%,-50%) rotate(-45deg);
}
.grid-col.col-imageslider .slick-arrow:hover, .slick-arrow:focus {
  background: #1c1d1b;
}
.grid-col.col-colored-2 {
  border-radius: 12px;
  background: #FFFFFF;
  align-self: start;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}.grid-col.col-colored-3 {
  border-radius: 12px;
  background: #009a65;
  align-self: start;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}.grid-block.textarea-links-as-buttons1 > a:not([class]) {
  position: relative;
  display: inline-block;
  color: #000000;
  padding: 0.3em 1em;
  border: 1px solid currentColor;
  border-radius: 10px;
  font-size: 0.8em;
  font-weight: 400;
  text-decoration: none;
  vertical-align: middle;
}
.grid-block.textarea-links-as-buttons1 > a:not([class]):hover {
  color: #FFFFFF;
  background: #000000;
}
.grid-block.textarea-links-as-buttons1 > a:not([class])::after {
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 1px solid transparent;
  border-left-color: currentColor;
  border-top-color: currentColor;
  content: '';
  transition: 300ms;
  transform: rotate(135deg);
}.grid-block.textarea-links-as-buttons2 > a:not([class]) {
  position: relative;
  display: inline-block;
  color: #000000;
  padding: 0.3em;
  border: 0;
  border-bottom: 1px solid transparent;
  font-size: 0.8em;
  font-weight: 400;
  text-decoration: none;
  vertical-align: middle;
}
.grid-block.textarea-links-as-buttons2 > a:not([class]):hover {
  border-bottom-color: #000000;
}
.grid-block.textarea-links-as-buttons2 > a:not([class])::after {
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 1px solid transparent;
  border-left-color: currentColor;
  border-top-color: currentColor;
  content: '';
  transition: 300ms;
  transform: rotate(135deg);
}.grid-block.textline-hero1 {
  color: #FFFFFF;
  font-size: clamp( 36px, 3.5vw, 70px);
  font-weight: 900;
  padding: 0.1em 1em;
  line-height: 120%;
  text-shadow: 5px 5px 10px rgba(0,0,0,0.7);
  text-transform: uppercase;
}.grid-block.textline-hero2 {
  color: #FFFFFF;
  font-size: clamp( 24px, 2vw, 40px);
  font-weight: 400;
  padding: 0.1em 1em;
  line-height: 120%;
  letter-spacing: clamp(5px,1vw,20px);
  text-shadow: 6px 6px 6px rgba(0,0,0,0.5);
  text-transform: uppercase;
}.grid-block.image-cover, .grid-block.image-cover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.grid-block.image-cover img {
  object-fit: cover;
  margin: 0;
}@media all and (min-width: 1101px) {
  .hide-default { display: none; }
  .col-1 { grid-column: span 1; }
  .col-2 { grid-column: span 2; }
  .col-3 { grid-column: span 3; }
  .col-4 { grid-column: span 4; }
  .col-5 { grid-column: span 5; }
  .col-6 { grid-column: span 6; }
  .col-7 { grid-column: span 7; }
  .col-8 { grid-column: span 8; }
  .col-9 { grid-column: span 9; }
  .col-10 { grid-column: span 10; }
  .col-11 { grid-column: span 11; }
  .col-12 { grid-column: span 12; }
}

@media all and (max-width: 1600px) {
  .grid-row { margin-top: 60px; margin-bottom: 60px; padding-left: 40px; padding-right: 40px; }
}

@media all and (min-width: 601px) and (max-width: 1100px) {
  .hide-tablet { display: none; }
  .col-t-1 { grid-column: span 1; }
  .col-t-2 { grid-column: span 2; }
  .col-t-3 { grid-column: span 3; }
  .col-t-4 { grid-column: span 4; }
  .col-t-5 { grid-column: span 5; }
  .col-t-6 { grid-column: span 6; }
  .col-t-7 { grid-column: span 7; }
  .col-t-8 { grid-column: span 8; }
  .col-t-9 { grid-column: span 9; }
  .col-t-10 { grid-column: span 10; }
  .col-t-11 { grid-column: span 11; }
  .col-t-12 { grid-column: span 12; }
}

@media all and (max-width: 600px) {
  .grid-row { column-gap: 20px; row-gap: 50px; margin-top: 40px; margin-bottom: 40px; padding-left: 20px; padding-right: 20px; }
  .hide-mobile { display: none; }
  .col-m-1 { grid-column: span 1; }
  .col-m-2 { grid-column: span 2; }
  .col-m-3 { grid-column: span 3; }
  .col-m-4 { grid-column: span 4; }
  .col-m-5 { grid-column: span 5; }
  .col-m-6 { grid-column: span 6; }
  .col-m-7 { grid-column: span 7; }
  .col-m-8 { grid-column: span 8; }
  .col-m-9 { grid-column: span 9; }
  .col-m-10 { grid-column: span 10; }
  .col-m-11 { grid-column: span 11; }
  .col-m-12 { grid-column: span 12; }
}
