html {
  --grid__columns: 12;
  --grid__gutter: 1.875rem;
}
.row {
  display: grid;
  grid-template-columns: repeat(var(--grid__columns), minmax(0, 1fr));
  grid-gap: var(--grid__gutter);
  grid-auto-columns: 1fr;
}

.row--show {
  position: relative;
  background: #f9f9f9;
  z-index: 0;
  padding-top: 0.9375rem;
}

.row--show:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  background: repeating-linear-gradient(to right, #f0f0f0 0%, #f0f0f0 calc((100% - (1.875rem * 11)) / 12), #f9f9f9 calc((100% - (1.875rem * 11)) / 12), #f9f9f9 calc(((100% - (1.875rem * 11)) / 12) + 1.875rem) );
}


/* ----- */
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
  grid-column: 1 / -1;
}

.row-span-xs-1, .row-span-xs-2, .row-span-xs-3, .row-span-xs-4, .row-span-xs-5, .row-span-xs-6, .row-span-xs-7, .row-span-xs-8, .row-span-xs-9, .row-span-xs-10, .row-span-xs-11, .row-span-xs-12, .row-span-sm-1, .row-span-sm-2, .row-span-sm-3, .row-span-sm-4, .row-span-sm-5, .row-span-sm-6, .row-span-sm-7, .row-span-sm-8, .row-span-sm-9, .row-span-sm-10, .row-span-sm-11, .row-span-sm-12, .row-span-md-1, .row-span-md-2, .row-span-md-3, .row-span-md-4, .row-span-md-5, .row-span-md-6, .row-span-md-7, .row-span-md-8, .row-span-md-9, .row-span-md-10, .row-span-md-11, .row-span-md-12, .row-span-lg-1, .row-span-lg-2, .row-span-lg-3, .row-span-lg-4, .row-span-lg-5, .row-span-lg-6, .row-span-lg-7, .row-span-lg-8, .row-span-lg-9, .row-span-lg-10, .row-span-lg-11, .row-span-lg-12, .row-span-xl-1, .row-span-xl-2, .row-span-xl-3, .row-span-xl-4, .row-span-xl-5, .row-span-xl-6, .row-span-xl-7, .row-span-xl-8, .row-span-xl-9, .row-span-xl-10, .row-span-xl-11, .row-span-xl-12 {
  grid-row: 1;
}

.justify-start {
  justify-self: start;
}

.justify-center {
  justify-self: center;
}

.justify-end {
  justify-self: end;
}

.justify-stretch {
  justify-self: stretch;
}

.align-start {
  align-self: start;
}

.align-center {
  align-self: center;
}

.align-end {
  align-self: end;
}

.align-stretch {
  align-self: stretch;
}

.col-1 {
  grid-column: span 1 / span 1;
}

.col-2 {
  grid-column: span 2 / span 2;
}

.col-3 {
  grid-column: span 3 / span 3;
}

.col-4 {
  grid-column: span 4 / span 4;
}

.col-5 {
  grid-column: span 5 / span 5;
}

.col-6 {
  grid-column: span 6 / span 6;
}

.col-7 {
  grid-column: span 7 / span 7;
}

.col-8 {
  grid-column: span 8 / span 8;
}

.col-9 {
  grid-column: span 9 / span 9;
}

.col-10 {
  grid-column: span 10 / span 10;
}

.col-11 {
  grid-column: span 11 / span 11;
}

.col-12 {
  grid-column: span 12 / span 12;
}

@media screen and (min-width: 0) {
  .col-xs-1 {
    grid-column: span 1 / span 1;
  }

  .col-xs-2 {
    grid-column: span 2 / span 2;
  }

  .col-xs-3 {
    grid-column: span 3 / span 3;
  }

  .col-xs-4 {
    grid-column: span 4 / span 4;
  }

  .col-xs-5 {
    grid-column: span 5 / span 5;
  }

  .col-xs-6 {
    grid-column: span 6 / span 6;
  }

  .col-xs-7 {
    grid-column: span 7 / span 7;
  }

  .col-xs-8 {
    grid-column: span 8 / span 8;
  }

  .col-xs-9 {
    grid-column: span 9 / span 9;
  }

  .col-xs-10 {
    grid-column: span 10 / span 10;
  }

  .col-xs-11 {
    grid-column: span 11 / span 11;
  }

  .col-xs-12 {
    grid-column: span 12 / span 12;
  }
}

@media screen and (min-width: 0) {
  .col-start-xs-1 {
    grid-column-start: 1;
  }

  .row-start-xs-1 {
    grid-row-start: 1;
  }

  .col-start-xs-2 {
    grid-column-start: 2;
  }

  .row-start-xs-2 {
    grid-row-start: 2;
  }

  .col-start-xs-3 {
    grid-column-start: 3;
  }

  .row-start-xs-3 {
    grid-row-start: 3;
  }

  .col-start-xs-4 {
    grid-column-start: 4;
  }

  .row-start-xs-4 {
    grid-row-start: 4;
  }

  .col-start-xs-5 {
    grid-column-start: 5;
  }

  .row-start-xs-5 {
    grid-row-start: 5;
  }

  .col-start-xs-6 {
    grid-column-start: 6;
  }

  .row-start-xs-6 {
    grid-row-start: 6;
  }

  .col-start-xs-7 {
    grid-column-start: 7;
  }

  .row-start-xs-7 {
    grid-row-start: 7;
  }

  .col-start-xs-8 {
    grid-column-start: 8;
  }

  .row-start-xs-8 {
    grid-row-start: 8;
  }

  .col-start-xs-9 {
    grid-column-start: 9;
  }

  .row-start-xs-9 {
    grid-row-start: 9;
  }

  .col-start-xs-10 {
    grid-column-start: 10;
  }
  .row-start-xs-10 {
    grid-row-start: 10;
  }

  .col-start-xs-11 {
    grid-column-start: 11;
  }

  .row-start-xs-11 {
    grid-row-start: 11;
  }

  .col-start-xs-12 {
    grid-column-start: 12;
  }

  .row-start-xs-12 {
    grid-row-start: 12;
  }
}

@media screen and (min-width: 0) {
  .pull-right-xs {
    grid-column-end: -1;
  }

  .pull-left-xs {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}

@media screen and (min-width: 0) {
  .justify-xs-start {
    justify-self: start;
  }

  .justify-xs-center {
    justify-self: center;
  }

  .justify-xs-end {
    justify-self: end;
  }

  .justify-xs-stretch {
    justify-self: stretch;
  }

  .align-xs-start {
    align-self: start;
  }

  .align-xs-center {
    align-self: center;
  }

  .align-xs-end {
    align-self: end;
  }

  .align-xs-stretch {
    align-self: stretch;
  }
}

@media screen and (min-width: 0) {
  .row-span-xs-1 {
    grid-row: span 1 / span 1;
  }

  .row-span-xs-2 {
    grid-row: span 2 / span 2;
  }

  .row-span-xs-3 {
    grid-row: span 3 / span 3;
  }

  .row-span-xs-4 {
    grid-row: span 4 / span 4;
  }

  .row-span-xs-5 {
    grid-row: span 5 / span 5;
  }

  .row-span-xs-6 {
    grid-row: span 6 / span 6;
  }

  .row-span-xs-7 {
    grid-row: span 7 / span 7;
  }

  .row-span-xs-8 {
    grid-row: span 8 / span 8;
  }

  .row-span-xs-9 {
    grid-row: span 9 / span 9;
  }

  .row-span-xs-10 {
    grid-row: span 10 / span 10;
  }

  .row-span-xs-11 {
    grid-row: span 11 / span 11;
  }

  .row-span-xs-12 {
    grid-row: span 12 / span 12;
  }
}

@media screen and (min-width: 34.375em) {
  .col-sm-1 {
    grid-column: span 1 / span 1;
  }

  .col-sm-2 {
    grid-column: span 2 / span 2;
  }

  .col-sm-3 {
    grid-column: span 3 / span 3;
  }

  .col-sm-4 {
    grid-column: span 4 / span 4;
  }

  .col-sm-5 {
    grid-column: span 5 / span 5;
  }

  .col-sm-6 {
    grid-column: span 6 / span 6;
  }

  .col-sm-7 {
    grid-column: span 7 / span 7;
  }

  .col-sm-8 {
    grid-column: span 8 / span 8;
  }

  .col-sm-9 {
    grid-column: span 9 / span 9;
  }

  .col-sm-10 {
    grid-column: span 10 / span 10;
  }

  .col-sm-11 {
    grid-column: span 11 / span 11;
  }

  .col-sm-12 {
    grid-column: span 12 / span 12;
  }
}

@media screen and (min-width: 34.375em) {
  .col-start-sm-1 {
    grid-column-start: 1;
  }

  .row-start-sm-1 {
    grid-row-start: 1;
  }

  .col-start-sm-2 {
    grid-column-start: 2;
  }

  .row-start-sm-2 {
    grid-row-start: 2;
  }

  .col-start-sm-3 {
    grid-column-start: 3;
  }

  .row-start-sm-3 {
    grid-row-start: 3;
  }

  .col-start-sm-4 {
    grid-column-start: 4;
  }

  .row-start-sm-4 {
    grid-row-start: 4;
  }

  .col-start-sm-5 {
    grid-column-start: 5;
  }

  .row-start-sm-5 {
    grid-row-start: 5;
  }

  .col-start-sm-6 {
    grid-column-start: 6;
  }

  .row-start-sm-6 {
    grid-row-start: 6;
  }

  .col-start-sm-7 {
    grid-column-start: 7;
  }

  .row-start-sm-7 {
    grid-row-start: 7;
  }

  .col-start-sm-8 {
    grid-column-start: 8;
  }

  .row-start-sm-8 {
    grid-row-start: 8;
  }

  .col-start-sm-9 {
    grid-column-start: 9;
  }

  .row-start-sm-9 {
    grid-row-start: 9;
  }

  .col-start-sm-10 {
    grid-column-start: 10;
  }

  .row-start-sm-10 {
    grid-row-start: 10;
  }

  .col-start-sm-11 {
    grid-column-start: 11;
  }

  .row-start-sm-11 {
    grid-row-start: 11;
  }

  .col-start-sm-12 {
    grid-column-start: 12;
  }

  .row-start-sm-12 {
    grid-row-start: 12;
  }
}

@media screen and (min-width: 34.375em) {
  .pull-right-sm {
    grid-column-end: -1;
  }

  .pull-left-sm {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}

@media screen and (min-width: 34.375em) {
  .justify-sm-start {
    justify-self: start;
  }

  .justify-sm-center {
    justify-self: center;
  }

  .justify-sm-end {
    justify-self: end;
  }

  .justify-sm-stretch {
    justify-self: stretch;
  }

  .align-sm-start {
    align-self: start;
  }

  .align-sm-center {
    align-self: center;
  }

  .align-sm-end {
    align-self: end;
  }

  .align-sm-stretch {
    align-self: stretch;
  }
}

@media screen and (min-width: 34.375em) {
  .row-span-sm-1 {
    grid-row: span 1 / span 1;
  }

  .row-span-sm-2 {
    grid-row: span 2 / span 2;
  }

  .row-span-sm-3 {
    grid-row: span 3 / span 3;
  }

  .row-span-sm-4 {
    grid-row: span 4 / span 4;
  }

  .row-span-sm-5 {
    grid-row: span 5 / span 5;
  }

  .row-span-sm-6 {
    grid-row: span 6 / span 6;
  }

  .row-span-sm-7 {
    grid-row: span 7 / span 7;
  }

  .row-span-sm-8 {
    grid-row: span 8 / span 8;
  }

  .row-span-sm-9 {
    grid-row: span 9 / span 9;
  }

  .row-span-sm-10 {
    grid-row: span 10 / span 10;
  }

  .row-span-sm-11 {
    grid-row: span 11 / span 11;
  }

  .row-span-sm-12 {
    grid-row: span 12 / span 12;
  }
}


@media screen and (min-width: 48em) {
  .col-md-1 {
    grid-column: span 1 / span 1;
  }

  .col-md-2 {
    grid-column: span 2 / span 2;
  }

  .col-md-3 {
    grid-column: span 3 / span 3;
  }

  .col-md-4 {
    grid-column: span 4 / span 4;
  }

  .col-md-5 {
    grid-column: span 5 / span 5;
  }

  .col-md-6 {
    grid-column: span 6 / span 6;
  }

  .col-md-7 {
    grid-column: span 7 / span 7;
  }

  .col-md-8 {
    grid-column: span 8 / span 8;
  }

  .col-md-9 {
    grid-column: span 9 / span 9;
  }

  .col-md-10 {
    grid-column: span 10 / span 10;
  }

  .col-md-11 {
    grid-column: span 11 / span 11;
  }

  .col-md-12 {
    grid-column: span 12 / span 12;
  }
}

@media screen and (min-width: 48em) {
  .col-start-md-1 {
    grid-column-start: 1;
  }

  .row-start-md-1 {
    grid-row-start: 1;
  }

  .col-start-md-2 {
    grid-column-start: 2;
  }

  .row-start-md-2 {
    grid-row-start: 2;
  }

  .col-start-md-3 {
    grid-column-start: 3;
  }

  .row-start-md-3 {
    grid-row-start: 3;
  }

  .col-start-md-4 {
    grid-column-start: 4;
  }

  .row-start-md-4 {
    grid-row-start: 4;
  }

  .col-start-md-5 {
    grid-column-start: 5;
  }

  .row-start-md-5 {
    grid-row-start: 5;
  }

  .col-start-md-6 {
    grid-column-start: 6;
  }

  .row-start-md-6 {
     grid-row-start: 6;
  }

  .col-start-md-7 {
    grid-column-start: 7;
  }

  .row-start-md-7 {
    grid-row-start: 7;
  }

  .col-start-md-8 {
    grid-column-start: 8;
  }

  .row-start-md-8 {
    grid-row-start: 8;
  }

  .col-start-md-9 {
    grid-column-start: 9;
  }

  .row-start-md-9 {
    grid-row-start: 9;
  }

  .col-start-md-10 {
    grid-column-start: 10;
  }

  .row-start-md-10 {
    grid-row-start: 10;
  }

  .col-start-md-11 {
    grid-column-start: 11;
  }
  
  .row-start-md-11 {
    grid-row-start: 11;
  }
  
  .col-start-md-12 {
    grid-column-start: 12;
  }
  
  .row-start-md-12 {
    grid-row-start: 12;
  }
}

@media screen and (min-width: 48em) {
  .pull-right-md {
    grid-column-end: -1;
  }
  
  .pull-left-md {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}

@media screen and (min-width: 48em) {
  .justify-md-start {
    justify-self: start;
  }

  .justify-md-center {
    justify-self: center;
  }

  .justify-md-end {
    justify-self: end;
  }

  .justify-md-stretch {
    justify-self: stretch;
  }

  .align-md-start {
    align-self: start;
  }

  .align-md-center {
    align-self: center;
  }

  .align-md-end {
    align-self: end;
  }

  .align-md-stretch {
    align-self: stretch;
  }
}

@media screen and (min-width: 48em) {
  .row-span-md-1 {
    grid-row: span 1 / span 1;
  }

  .row-span-md-2 {
    grid-row: span 2 / span 2;
  }

  .row-span-md-3 {
    grid-row: span 3 / span 3;
  }

  .row-span-md-4 {
    grid-row: span 4 / span 4;
  }

  .row-span-md-5 {
    grid-row: span 5 / span 5;
  }

  .row-span-md-6 {
    grid-row: span 6 / span 6;
  }

  .row-span-md-7 {
    grid-row: span 7 / span 7;
  }

  .row-span-md-8 {
    grid-row: span 8 / span 8;
  }

  .row-span-md-9 {
    grid-row: span 9 / span 9;
  }

  .row-span-md-10 {
    grid-row: span 10 / span 10;
  }

  .row-span-md-11 {
    grid-row: span 11 / span 11;
  }

  .row-span-md-12 {
    grid-row: span 12 / span 12;
  }
}

@media screen and (min-width: 58.75em) {
  .col-lg-1 {
    grid-column: span 1 / span 1;
  }
  
  .col-lg-2 {
    grid-column: span 2 / span 2;
  }
  
  .col-lg-3 {
    grid-column: span 3 / span 3;
  }
  
  .col-lg-4 {
    grid-column: span 4 / span 4;
  }
  
  .col-lg-5 {
    grid-column: span 5 / span 5;
  }
  
  .col-lg-6 {
    grid-column: span 6 / span 6;
  }
  
  .col-lg-7 {
    grid-column: span 7 / span 7;
  }
  
  .col-lg-8 {
    grid-column: span 8 / span 8;
  }
  
  .col-lg-9 {
    grid-column: span 9 / span 9;
  }
  
  .col-lg-10 {
    grid-column: span 10 / span 10;
  }
  
  .col-lg-11 {
    grid-column: span 11 / span 11;
  }
  
  .col-lg-12 {
    grid-column: span 12 / span 12;
  }
}

@media screen and (min-width: 58.75em) {
  .col-start-lg-1 {
    grid-column-start: 1;
  }
  
  .row-start-lg-1 {
    grid-row-start: 1;
  }
  
  .col-start-lg-2 {
    grid-column-start: 2;
  }
  
  .row-start-lg-2 {
    grid-row-start: 2;
  }
  
  .col-start-lg-3 {
    grid-column-start: 3;
  }
  
  .row-start-lg-3 {
    grid-row-start: 3;
  }
  
  .col-start-lg-4 {
    grid-column-start: 4;
  }
  
  .row-start-lg-4 {
    grid-row-start: 4;
  }
  
  .col-start-lg-5 {
    grid-column-start: 5;
  }
  
  .row-start-lg-5 {
    grid-row-start: 5;
  }
  
  .col-start-lg-6 {
    grid-column-start: 6;
  }
  
  .row-start-lg-6 {
    grid-row-start: 6;
  }
  
  .col-start-lg-7 {
    grid-column-start: 7;
  }
  
  .row-start-lg-7 {
    grid-row-start: 7;
  }
  
  .col-start-lg-8 {
    grid-column-start: 8;
  }
  
  .row-start-lg-8 {
    grid-row-start: 8;
  }
  
  .col-start-lg-9 {
    grid-column-start: 9;
  }
  
  .row-start-lg-9 {
    grid-row-start: 9;
  }
  
  .col-start-lg-10 {
    grid-column-start: 10;
  }
  
  .row-start-lg-10 {
    grid-row-start: 10;
  }
  
  .col-start-lg-11 {
    grid-column-start: 11;
  }
  
  .row-start-lg-11 {
    grid-row-start: 11;
  }
  
  .col-start-lg-12 {
    grid-column-start: 12;
  }
  
  .row-start-lg-12 {
    grid-row-start: 12;
  }
}

@media screen and (min-width: 58.75em) {
  .pull-right-lg {
    grid-column-end: -1;
  }
  
  .pull-left-lg {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}

@media screen and (min-width: 58.75em) {
  .justify-lg-start {
    justify-self: start;
  }

  .justify-lg-center {
    justify-self: center;
  }

  .justify-lg-end {
    justify-self: end;
  }

  .justify-lg-stretch {
    justify-self: stretch;
  }

  .align-lg-start {
    align-self: start;
  }

  .align-lg-center {
    align-self: center;
  }

  .align-lg-end {
    align-self: end;
  }

  .align-lg-stretch {
    align-self: stretch;
  }
}

@media screen and (min-width: 58.75em) {
  .row-span-lg-1 {
    grid-row: span 1 / span 1;
  }

  .row-span-lg-2 {
    grid-row: span 2 / span 2;
  }

  .row-span-lg-3 {
    grid-row: span 3 / span 3;
  }

  .row-span-lg-4 {
    grid-row: span 4 / span 4;
  }

  .row-span-lg-5 {
    grid-row: span 5 / span 5;
  }

  .row-span-lg-6 {
    grid-row: span 6 / span 6;
  }

  .row-span-lg-7 {
    grid-row: span 7 / span 7;
  }

  .row-span-lg-8 {
    grid-row: span 8 / span 8;
  }

  .row-span-lg-9 {
    grid-row: span 9 / span 9;
  }

  .row-span-lg-10 {
    grid-row: span 10 / span 10;
  }

  .row-span-lg-11 {
    grid-row: span 11 / span 11;
  }

  .row-span-lg-12 {
    grid-row: span 12 / span 12;
  }
}

@media screen and (min-width: 68.75em) {
  .col-xl-1 {
    grid-column: span 1 / span 1;
  }
  
  .col-xl-2 {
    grid-column: span 2 / span 2;
  }
  
  .col-xl-3 {
    grid-column: span 3 / span 3;
  }
  
  .col-xl-4 {
    grid-column: span 4 / span 4;
  }
  
  .col-xl-5 {
    grid-column: span 5 / span 5;
  }
  
  .col-xl-6 {
    grid-column: span 6 / span 6;
  }
  
  .col-xl-7 {
    grid-column: span 7 / span 7;
  }
  
  .col-xl-8 {
    grid-column: span 8 / span 8;
  }
  
  .col-xl-9 {
    grid-column: span 9 / span 9;
  }
  
  .col-xl-10 {
    grid-column: span 10 / span 10;
  }
  
  .col-xl-11 {
    grid-column: span 11 / span 11;
  }
  
  .col-xl-12 {
    grid-column: span 12 / span 12;
  }
}

@media screen and (min-width: 68.75em) {
  .col-start-xl-1 {
     grid-column-start: 1;
  }
  
  .row-start-xl-1 {
    grid-row-start: 1;
  }
  
  .col-start-xl-2 {
    grid-column-start: 2;
  }
  
  .row-start-xl-2 {
    grid-row-start: 2;
  }
  
  .col-start-xl-3 {
    grid-column-start: 3;
  }
  
  .row-start-xl-3 {
    grid-row-start: 3;
  }
  
  .col-start-xl-4 {
    grid-column-start: 4;
  }
  
  .row-start-xl-4 {
    grid-row-start: 4;
  }
  
  .col-start-xl-5 {
    grid-column-start: 5;
  }
  
  .row-start-xl-5 {
    grid-row-start: 5;
  }
  
  .col-start-xl-6 {
    grid-column-start: 6;
  }
  
  .row-start-xl-6 {
    grid-row-start: 6;
  }
  
  .col-start-xl-7 {
    grid-column-start: 7;
  }
  
  .row-start-xl-7 {
    grid-row-start: 7;
  }
  
  .col-start-xl-8 {
    grid-column-start: 8;
  }
  
  .row-start-xl-8 {
    grid-row-start: 8;
  }
  
  .col-start-xl-9 {
    grid-column-start: 9;
  }
  
  .row-start-xl-9 {
    grid-row-start: 9;
  }
  
  .col-start-xl-10 {
    grid-column-start: 10;
  }
  
  .row-start-xl-10 {
    grid-row-start: 10;
  }
  
  .col-start-xl-11 {
    grid-column-start: 11;
  }
  
  .row-start-xl-11 {
    grid-row-start: 11;
  }
  
  .col-start-xl-12 {
    grid-column-start: 12;
  }
  
  .row-start-xl-12 {
    grid-row-start: 12;
  }
}

@media screen and (min-width: 68.75em) {
  .pull-right-xl {
    grid-column-end: -1;
  }
  
  .pull-left-xl {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}

@media screen and (min-width: 68.75em) {
  .justify-xl-start {
    justify-self: start;
  }

  .justify-xl-center {
    justify-self: center;
  }

  .justify-xl-end {
    justify-self: end;
  }

  .justify-xl-stretch {
    justify-self: stretch;
  }

  .align-xl-start {
    align-self: start;
  }

  .align-xl-center {
    align-self: center;
  }

  .align-xl-end {
    align-self: end;
  }

  .align-xl-stretch {
    align-self: stretch;
  }
}

@media screen and (min-width: 68.75em) {
  .row-span-xl-1 {
    grid-row: span 1 / span 1;
  }

  .row-span-xl-2 {
    grid-row: span 2 / span 2;
  }

  .row-span-xl-3 {
    grid-row: span 3 / span 3;
  }

  .row-span-xl-4 {
    grid-row: span 4 / span 4;
  }

  .row-span-xl-5 {
    grid-row: span 5 / span 5;
  }

  .row-span-xl-6 {
    grid-row: span 6 / span 6;
  }

  .row-span-xl-7 {
    grid-row: span 7 / span 7;
  }

  .row-span-xl-8 {
    grid-row: span 8 / span 8;
  }

  .row-span-xl-9 {
    grid-row: span 9 / span 9;
  }

  .row-span-xl-10 {
    grid-row: span 10 / span 10;
  }

  .row-span-xl-11 {
    grid-row: span 11 / span 11;
  }

  .row-span-xl-12 {
    grid-row: span 12 / span 12;
  }
}

.col-start-1 {
  grid-column-start: 1;
}

.row-start-1 {
  grid-row-start: 1;
}

.col-start-2 {
  grid-column-start: 2;
}

.row-start-2 {
  grid-row-start: 2;
}

.col-start-3 {
  grid-column-start: 3;
}

.row-start-3 {
  grid-row-start: 3;
}

.col-start-4 {
  grid-column-start: 4;
}

.row-start-4 {
  grid-row-start: 4;
}

.col-start-5 {
  grid-column-start: 5;
}

.row-start-5 {
  grid-row-start: 5;
}

.col-start-6 {
  grid-column-start: 6;
}

.row-start-6 {
  grid-row-start: 6;
}

.col-start-7 {
  grid-column-start: 7;
}

.row-start-7 {
  grid-row-start: 7;
}

.col-start-8 {
  grid-column-start: 8;
}

.row-start-8 {
  grid-row-start: 8;
}

.col-start-9 {
  grid-column-start: 9;
}

.row-start-9 {
  grid-row-start: 9;
}

.col-start-10 {
  grid-column-start: 10;
}
.row-start-10 {
  grid-row-start: 10;
}

.col-start-11 {
  grid-column-start: 11;
}

.row-start-11 {
  grid-row-start: 11;
}

.col-start-12 {
  grid-column-start: 12;
}

.row-start-12 {
  grid-row-start: 12;
}

.row-span-1 {
  grid-row: span 1 / span 1;
}

.row-span-2 {
  grid-row: span 2 / span 2;
}

.row-span-3 {
  grid-row: span 3 / span 3;
}

.row-span-4 {
  grid-row: span 4 / span 4;
}

.row-span-5 {
  grid-row: span 5 / span 5;
}

.row-span-6 {
  grid-row: span 6 / span 6;
}

.row-span-7 {
  grid-row: span 7 / span 7;
}

.row-span-8 {
  grid-row: span 8 / span 8;
}

.row-span-9 {
  grid-row: span 9 / span 9;
}

.row-span-10 {
  grid-row: span 10 / span 10;
}

.row-span-11 {
  grid-row: span 11 / span 11;
}

.row-span-12 {
  grid-row: span 12 / span 12;
}

.download-element a{padding:3px 6px 3px 22px;background:url(../../assets/contao/images/iconPLAIN.svg) left center no-repeat}ul.enclosure{padding-left:0}li.download-element{list-style-type:none}.ext-xl a{background-image:url(../../assets/contao/images/iconXL.svg)}.ext-xls a{background-image:url(../../assets/contao/images/iconXLS.svg)}.ext-xlsx a{background-image:url(../../assets/contao/images/iconXLSX.svg)}.ext-hqx a{background-image:url(../../assets/contao/images/iconHQX.svg)}.ext-cpt a{background-image:url(../../assets/contao/images/iconCPT.svg)}.ext-bin a{background-image:url(../../assets/contao/images/iconBIN.svg)}.ext-doc a{background-image:url(../../assets/contao/images/iconDOC.svg)}.ext-docx a{background-image:url(../../assets/contao/images/iconDOCX.svg)}.ext-word a{background-image:url(../../assets/contao/images/iconWORD.svg)}.ext-cto a{background-image:url(../../assets/contao/images/iconCTO.svg)}.ext-dms a{background-image:url(../../assets/contao/images/iconDMS.svg)}.ext-lha a{background-image:url(../../assets/contao/images/iconLHA.svg)}.ext-lzh a{background-image:url(../../assets/contao/images/iconLZH.svg)}.ext-exe a{background-image:url(../../assets/contao/images/iconEXE.svg)}.ext-class a{background-image:url(../../assets/contao/images/iconCLASS.svg)}.ext-so a{background-image:url(../../assets/contao/images/iconSO.svg)}.ext-sea a{background-image:url(../../assets/contao/images/iconSEA.svg)}.ext-dll a{background-image:url(../../assets/contao/images/iconDLL.svg)}.ext-oda a{background-image:url(../../assets/contao/images/iconODA.svg)}.ext-pdf a{background-image:url(../../assets/contao/images/iconPDF.svg)}.ext-ai a{background-image:url(../../assets/contao/images/iconAI.svg)}.ext-eps a{background-image:url(../../assets/contao/images/iconEPS.svg)}.ext-ps a{background-image:url(../../assets/contao/images/iconPS.svg)}.ext-pps a{background-image:url(../../assets/contao/images/iconPPS.svg)}.ext-ppt a{background-image:url(../../assets/contao/images/iconPPT.svg)}.ext-pptx a{background-image:url(../../assets/contao/images/iconPPTX.svg)}.ext-smi a{background-image:url(../../assets/contao/images/iconSMI.svg)}.ext-smil a{background-image:url(../../assets/contao/images/iconSMIL.svg)}.ext-mif a{background-image:url(../../assets/contao/images/iconMIF.svg)}.ext-odc a{background-image:url(../../assets/contao/images/iconODC.svg)}.ext-odf a{background-image:url(../../assets/contao/images/iconODF.svg)}.ext-odg a{background-image:url(../../assets/contao/images/iconODG.svg)}.ext-odi a{background-image:url(../../assets/contao/images/iconODI.svg)}.ext-odp a{background-image:url(../../assets/contao/images/iconODP.svg)}.ext-ods a{background-image:url(../../assets/contao/images/iconODS.svg)}.ext-odt a{background-image:url(../../assets/contao/images/iconODT.svg)}.ext-wbxml a{background-image:url(../../assets/contao/images/iconWBXML.svg)}.ext-wmlc a{background-image:url(../../assets/contao/images/iconWMLC.svg)}.ext-dmg a{background-image:url(../../assets/contao/images/iconDMG.svg)}.ext-dcr a{background-image:url(../../assets/contao/images/iconDCR.svg)}.ext-dir a{background-image:url(../../assets/contao/images/iconDIR.svg)}.ext-dxr a{background-image:url(../../assets/contao/images/iconDXR.svg)}.ext-dvi a{background-image:url(../../assets/contao/images/iconDVI.svg)}.ext-gtar a{background-image:url(../../assets/contao/images/iconGTAR.svg)}.ext-inc a{background-image:url(../../assets/contao/images/iconINC.svg)}.ext-php a{background-image:url(../../assets/contao/images/iconPHP.svg)}.ext-php3 a{background-image:url(../../assets/contao/images/iconPHP3.svg)}.ext-php4 a{background-image:url(../../assets/contao/images/iconPHP4.svg)}.ext-php5 a{background-image:url(../../assets/contao/images/iconPHP5.svg)}.ext-phtml a{background-image:url(../../assets/contao/images/iconPHTML.svg)}.ext-phps a{background-image:url(../../assets/contao/images/iconPHPS.svg)}.ext-js a{background-image:url(../../assets/contao/images/iconJS.svg)}.ext-psd a{background-image:url(../../assets/contao/images/iconPSD.svg)}.ext-rar a{background-image:url(../../assets/contao/images/iconRAR.svg)}.ext-fla a{background-image:url(../../assets/contao/images/iconFLA.svg)}.ext-swf a{background-image:url(../../assets/contao/images/iconSWF.svg)}.ext-sit a{background-image:url(../../assets/contao/images/iconSIT.svg)}.ext-tar a{background-image:url(../../assets/contao/images/iconTAR.svg)}.ext-tgz a{background-image:url(../../assets/contao/images/iconTGZ.svg)}.ext-xhtml a{background-image:url(../../assets/contao/images/iconXHTML.svg)}.ext-xht a{background-image:url(../../assets/contao/images/iconXHT.svg)}.ext-zip a{background-image:url(../../assets/contao/images/iconZIP.svg)}.ext-m4a a{background-image:url(../../assets/contao/images/iconM4A.svg)}.ext-mp3 a{background-image:url(../../assets/contao/images/iconMP3.svg)}.ext-wma a{background-image:url(../../assets/contao/images/iconWMA.svg)}.ext-mpeg a{background-image:url(../../assets/contao/images/iconMPEG.svg)}.ext-wav a{background-image:url(../../assets/contao/images/iconWAV.svg)}.ext-ogg a{background-image:url(../../assets/contao/images/iconOGG.svg)}.ext-mid a{background-image:url(../../assets/contao/images/iconMID.svg)}.ext-midi a{background-image:url(../../assets/contao/images/iconMIDI.svg)}.ext-aif a{background-image:url(../../assets/contao/images/iconAIF.svg)}.ext-aiff a{background-image:url(../../assets/contao/images/iconAIFF.svg)}.ext-aifc a{background-image:url(../../assets/contao/images/iconAIFC.svg)}.ext-ram a{background-image:url(../../assets/contao/images/iconRAM.svg)}.ext-rm a{background-image:url(../../assets/contao/images/iconRM.svg)}.ext-rpm a{background-image:url(../../assets/contao/images/iconRPM.svg)}.ext-ra a{background-image:url(../../assets/contao/images/iconRA.svg)}.ext-bmp a{background-image:url(../../assets/contao/images/iconBMP.svg)}.ext-gif a{background-image:url(../../assets/contao/images/iconGIF.svg)}.ext-jpeg a{background-image:url(../../assets/contao/images/iconJPEG.svg)}.ext-jpg a{background-image:url(../../assets/contao/images/iconJPG.svg)}.ext-jpe a{background-image:url(../../assets/contao/images/iconJPE.svg)}.ext-png a{background-image:url(../../assets/contao/images/iconPNG.svg)}.ext-tiff a{background-image:url(../../assets/contao/images/iconTIFF.svg)}.ext-tif a{background-image:url(../../assets/contao/images/iconTIF.svg)}.ext-svg a{background-image:url(../../assets/contao/images/iconSVG.svg)}.ext-svgz a{background-image:url(../../assets/contao/images/iconSVGZ.svg)}.ext-webp a{background-image:url(../../assets/contao/images/iconWEBP.svg)}.ext-avif a{background-image:url(../../assets/contao/images/iconAVIF.svg)}.ext-heic a{background-image:url(../../assets/contao/images/iconHEIC.svg)}.ext-jxl a{background-image:url(../../assets/contao/images/iconJXL.svg)}.ext-eml a{background-image:url(../../assets/contao/images/iconEML.svg)}.ext-asp a{background-image:url(../../assets/contao/images/iconASP.svg)}.ext-css a{background-image:url(../../assets/contao/images/iconCSS.svg)}.ext-scss a{background-image:url(../../assets/contao/images/iconSCSS.svg)}.ext-less a{background-image:url(../../assets/contao/images/iconLESS.svg)}.ext-html a{background-image:url(../../assets/contao/images/iconHTML.svg)}.ext-htm a{background-image:url(../../assets/contao/images/iconHTM.svg)}.ext-md a{background-image:url(../../assets/contao/images/iconMD.svg)}.ext-shtml a{background-image:url(../../assets/contao/images/iconSHTML.svg)}.ext-txt a{background-image:url(../../assets/contao/images/iconTXT.svg)}.ext-text a{background-image:url(../../assets/contao/images/iconTEXT.svg)}.ext-log a{background-image:url(../../assets/contao/images/iconLOG.svg)}.ext-rtx a{background-image:url(../../assets/contao/images/iconRTX.svg)}.ext-rtf a{background-image:url(../../assets/contao/images/iconRTF.svg)}.ext-xml a{background-image:url(../../assets/contao/images/iconXML.svg)}.ext-xsl a{background-image:url(../../assets/contao/images/iconXSL.svg)}.ext-mp4 a{background-image:url(../../assets/contao/images/iconMP4.svg)}.ext-m4v a{background-image:url(../../assets/contao/images/iconM4V.svg)}.ext-mov a{background-image:url(../../assets/contao/images/iconMOV.svg)}.ext-wmv a{background-image:url(../../assets/contao/images/iconWMV.svg)}.ext-webm a{background-image:url(../../assets/contao/images/iconWEBM.svg)}.ext-qt a{background-image:url(../../assets/contao/images/iconQT.svg)}.ext-rv a{background-image:url(../../assets/contao/images/iconRV.svg)}.ext-avi a{background-image:url(../../assets/contao/images/iconAVI.svg)}.ext-ogv a{background-image:url(../../assets/contao/images/iconOGV.svg)}.ext-movie a{background-image:url(../../assets/contao/images/iconMOVIE.svg)}
html{--cta_image_width: 40px;--cta_image_height: 40px}@media(max-width: 1023px){html{--cta_image_width: 40px;--cta_image_height: 40px}}.cta_wrapper>.inside{position:fixed;top:40vh;z-index:9}.cta_wrapper>.inside.left{left:0}.cta_wrapper>.inside.right{right:0}.cta_wrapper>.inside a{display:block}.cta_wrapper>.inside a img{width:var(--cta_image_width);height:var(--cta_image_height);object-fit:contain;object-position:center;margin:auto}
#colorbox,#cboxOverlay,#cboxWrapper{position:absolute;top:0;left:0;z-index:9999;overflow:hidden;-webkit-transform:translate3d(0,0,0)}#cboxWrapper{max-width:none}#cboxOverlay{position:fixed;width:100%;height:100%}#cboxMiddleLeft,#cboxBottomLeft{clear:left}#cboxContent{position:relative}#cboxLoadedContent{overflow:auto;-webkit-overflow-scrolling:touch}#cboxTitle{margin:0}#cboxLoadingOverlay,#cboxLoadingGraphic{position:absolute;top:0;left:0;width:100%;height:100%}#cboxPrevious,#cboxNext,#cboxClose,#cboxSlideshow{cursor:pointer}.cboxPhoto{float:left;margin:auto;border:0;display:block;max-width:none;-ms-interpolation-mode:bicubic}.cboxIframe{width:100%;height:100%;display:block;border:0;padding:0;margin:0}#colorbox,#cboxContent,#cboxLoadedContent{box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box}#cboxOverlay{background:#000;opacity:.9;filter:alpha(opacity = 90)}#colorbox{outline:0}#cboxContent{margin-top:20px;background:#000}.cboxIframe{background:#fff}#cboxError{padding:50px;border:1px solid #ccc}#cboxLoadedContent{border:5px solid #000;background:#fff}#cboxTitle{position:absolute;top:-20px;left:0;color:#ccc}#cboxCurrent{position:absolute;top:-20px;right:0;color:#ccc}#cboxLoadingGraphic{background:url(../../assets/colorbox/images/loading.gif) no-repeat center center}#cboxPrevious,#cboxNext,#cboxSlideshow,#cboxClose{border:0;padding:0;margin:0;overflow:visible;width:auto;background:0 0}#cboxPrevious:active,#cboxNext:active,#cboxSlideshow:active,#cboxClose:active{outline:0}#cboxSlideshow{position:absolute;top:-20px;right:90px;color:#fff}#cboxPrevious{position:absolute;top:50%;left:5px;margin-top:-32px;background:url(../../assets/colorbox/images/controls.png) no-repeat top left;width:28px;height:65px;text-indent:-9999px}#cboxPrevious:hover{background-position:bottom left}#cboxNext{position:absolute;top:50%;right:5px;margin-top:-32px;background:url(../../assets/colorbox/images/controls.png) no-repeat top right;width:28px;height:65px;text-indent:-9999px}#cboxNext:hover{background-position:bottom right}#cboxClose{position:absolute;top:5px;right:5px;display:block;background:url(../../assets/colorbox/images/controls.png) no-repeat top center;width:38px;height:19px;text-indent:-9999px}#cboxClose:hover{background-position:bottom center}
table.sortable thead th{background-image:url(../../assets/tablesorter/images/default.svg);background-repeat:no-repeat;background-position:center right}table.sortable thead th.tablesorter-headerAsc{background-image:url(../../assets/tablesorter/images/asc.svg)}table.sortable thead th.tablesorter-headerDesc{background-image:url(../../assets/tablesorter/images/desc.svg)}
.content-slider{overflow:hidden;visibility:hidden;position:relative}.slider-wrapper{overflow:hidden;position:relative}.slider-wrapper>*{float:left;width:100%;position:relative}.slider-control{height:30px;position:relative}.slider-control a,.slider-control .slider-menu{position:absolute;top:9px;display:inline-block}.slider-control .slider-prev{left:0}.slider-control .slider-next{right:0}.slider-control .slider-menu{top:0;width:50%;left:50%;margin-left:-25%;font-size:27px;text-align:center}.slider-control .slider-menu b{color:#bbb;cursor:pointer}.slider-control .slider-menu b.active{color:#666}
.pt--10{padding-top:1rem !important}.pt--20{padding-top:2rem !important}.pt--30{padding-top:3rem !important}.pt--40{padding-top:4rem !important}.pt--50{padding-top:5rem !important}.pb--10{padding-bottom:1rem !important}.pb--20{padding-bottom:2rem !important}.pb--30{padding-bottom:3rem !important}.pb--40{padding-bottom:4rem !important}.pb--50{padding-bottom:5rem !important}.mt--10{margin-top:1rem !important}.mt--20{margin-top:2rem !important}.mt--30{margin-top:3rem !important}.mt--40{margin-top:4rem !important}.mt--50{margin-top:5rem !important}.mb--10{margin-bottom:1rem !important}.mb--20{margin-bottom:2rem !important}.mb--30{margin-bottom:3rem !important}.mb--40{margin-bottom:4rem !important}.mb--50{margin-bottom:5rem !important}.card--green-light{background-color:#e2e4c0;padding-inline:2rem;padding-block:2rem}.card--blue-light{background-color:#dbf1f3;padding-inline:2rem;padding-block:2rem}.card--blue-light .button-primary,form .card--blue-light .submit,.card--blue-light form .submit{background:#4684bf}.head1 h1,h1.head1{font-size:1rem;font-weight:400;color:#7e8288;margin-bottom:.5rem}.dts--table{border:none}.dts--table table{border:none}.dts--table tbody{border:none}.dts--table table{background:inherit}.dts--table tr{border-top:2px solid #7e8288;display:grid;grid-template-columns:50% auto;align-items:center}.dts--table td{border:none;background:inherit;grid-template-columns:100%}.dts--table tr:nth-child(even):not([class*=week_]) td{background:inherit}@media only screen and (max-width: 39.999rem){.dts--table td:first-child{padding-block-start:inherit}}.centered{text-align:center}.hero--header{background-color:#b9c300}.hero--header .hero__content{display:grid;grid-template-columns:repeat(var(--grid__columns), minmax(0, 1fr));grid-gap:var(--grid__gutter);grid-auto-columns:1fr;align-items:center;margin:0 auto;max-width:103rem;padding-inline:3rem;padding-block:1rem 0}@media screen and (min-width: 0){.hero--header .hero__content .hero__text{grid-column:span 12/span 12}}@media screen and (min-width: 48em){.hero--header .hero__content .hero__text{grid-column:span 8/span 8}}@media screen and (min-width: 0){.hero--header .hero__content .hero__image{grid-column:span 12/span 12}}@media screen and (min-width: 48em){.hero--header .hero__content .hero__image{grid-column:span 4/span 4}}.hero--header .hero__content p,.hero--header .hero__content li,.hero--header .hero__content span{font-size:150%}.hero--header .hero__content .hero__links{display:inline-flex;justify-content:center;align-items:center;gap:.5rem;border:.0625rem solid rgba(0,0,0,0);font-weight:600;white-space:nowrap;text-decoration:none;background:#fff;transition:background .2s ease-in-out;border:.0625rem solid rgba(0,0,0,0);color:#b9c300;padding:.8125rem .6875rem;font-size:1rem;line-height:1.25rem;margin:1rem 0}@media only screen and (min-width: 48rem){.hero--header .hero__content .hero__links{padding:.9375rem 1.1875rem}}@media only screen and (min-width: 75rem){.hero--header .hero__content .hero__links{padding:1.1875rem 1.4375rem;font-size:1.25rem;line-height:1.5rem}}.hero--header .hero__content .hero__links a{color:#3d444c;text-decoration:none}.hero--header .hero__content .hero__links a:hover{color:#b9c300}/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:rgba(0,0,0,0)}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}.invisible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;float:left}.divider--top{position:relative}.divider--top:before{position:absolute;height:.0625rem;left:0;right:0;top:calc(-1*(2.5rem - .5*0.0625rem));background:#dde1e4;content:""}.background--gray-light,.prefooter{background:#f4f5f6}.box--white{padding:1rem;background:#fff;border:.0625rem solid #dde1e4;border-radius:.5rem}.box--gray-light,.module-feed-reader section,.rss_default,.rss_items_only,.layout_short,.layout_latest,form p.error{padding:1.5rem;background:#f4f5f6;border:.0625rem solid #dde1e4;border-radius:.5rem}@media only screen and (min-width: 48rem){.box--gray-light,.module-feed-reader section,.rss_default,.rss_items_only,.layout_short,.layout_latest,form p.error{padding:2rem}}.box--blue{padding:2rem;background:#3d444c;border:.0625rem solid #3d444c;border-radius:.5rem;color:#afb8c0}.box--blue h2,.box--blue h3,.box--blue h4{color:#fff}.my-code-element{display:inline-block;min-width:20rem}.grid-column--full-width{grid-column:1/-1}.grid-box{display:flex;flex-direction:column;gap:2rem 1rem}.grid-box h2,.grid-box h3{margin-block-end:1rem}.content-text+.grid-box{margin-block-start:2rem}[class*=col-] .grid-box{flex-grow:1}@media only screen and (min-width: 64rem){.col--center.col-6{grid-column:3/11}}@media only screen and (min-width: 64rem){.col--center.col-8{grid-column:2/12}}.message-error,.message-info,.info.recurring,.confirm{font-size:.875rem;line-height:1.5;padding:1rem;background:#f4f5f6;border:.125rem solid #68b7de;border-radius:.25rem;color:#363e45}.message-error strong:first-child,.message-info strong:first-child,.info.recurring strong:first-child,.confirm strong:first-child{font-size:1rem;line-height:1.5;font-weight:700}.message-info,.info.recurring,.confirm{padding-inline-start:calc(1rem + 1.5rem + 0.5rem);background:#eef7fb url("../../files/dts/theme/src/img/icons/info--blue.svg") 1rem 1rem no-repeat;border-color:#68b7de;color:#164a64}.message-error{padding-inline-start:calc(1rem + 1.5rem + 0.5rem);background:#fdeeed url("../../files/dts/theme/src/img/icons/warning-red.svg") 1rem 1rem no-repeat;border-color:#ff7a70;color:#a30b00}.confirm{font-size:1rem;line-height:1.5;font-weight:700}.aspect--3\:2{aspect-ratio:3/2}.aspect--4\:3{aspect-ratio:4/3}.aspect--16\:9{aspect-ratio:16/9}.aspect--16\:10{aspect-ratio:16/10}.aspect--21\:9{aspect-ratio:21/9}strong[class*=nav-icon-],a[class*=nav-icon-]{display:flex;align-items:center;gap:0 .25rem;background-position:center center;background-repeat:no-repeat}strong[class*=nav-icon-]:before,a[class*=nav-icon-]:before{display:block;width:1.5rem;height:1.5rem;content:""}strong.nav-icon--rss:before,a.nav-icon--rss:before{background-image:url("../../files/dts/theme/src/img/icons/rss.svg")}strong.nav-icon--github:before,a.nav-icon--github:before{background-image:url("../../files/dts/theme/src/img/icons/github--white.svg")}.mod_newsmenu ul,nav ul{list-style:none;margin:0;padding:0}[id=footer],[id=header],.layout--1-column-12-12 [id=container],.layout--1-column-10-12 [id=container],.layout--2-column [id=container],.layout--1-column-8-12 [id=container],.layout--1-column .mod_article,[id=sub-header],[id=header-img]{display:flex;flex-wrap:wrap;justify-content:center;padding-inline:1.5rem}[id=footer] .inside,[id=header] .inside,.layout--1-column-12-12 [id=container],.layout--1-column-10-12 [id=container],.layout--2-column [id=container],.layout--1-column-8-12 [id=container],.layout--1-column .mod_article__inner,[id=sub-header] .inside{width:100%;max-width:61.25rem}.prevent-scrolling{position:fixed;overflow:hidden}@media only screen and (max-width: 39.999rem){.mod_listing{position:relative;overflow-x:scroll}}.img--width-auto{width:auto}.img--full-width{max-width:none;width:100%}*,*:before,*:after{box-sizing:border-box}html{font-size:16px;scroll-behavior:smooth}::selection{background:#b9c300;color:#fff;text-shadow:none}body{font-size:1rem;line-height:1.5;background:#fdfeed;font-family:MySansRegular,Helvetica Neue,Arial,sans-serif,"times";color:#3d444c;letter-spacing:-0.01em;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;overflow-y:auto}[id=wrapper]{margin:0 auto;max-width:2560px}[id=container]{padding-block:1rem 1rem}@media only screen and (min-width: 64rem){[id=container]{padding-block-end:4rem}}.layout--1-column-8-12 [id=container]{display:grid;grid-template-columns:repeat(12, 1fr);grid-gap:0 1.5rem;margin:0 auto;max-width:64.25rem}@media only screen and (min-width: 40rem){.layout--1-column-8-12 [id=container]{grid-gap:0 2rem}}.layout--1-column-8-12 [id=container] [id=main]{grid-column:1/-1;grid-row:1/-1}@media only screen and (min-width: 48rem){.layout--1-column-8-12 [id=container] [id=main]{grid-column:2/12}}@media only screen and (min-width: 64rem){.layout--1-column-8-12 [id=container] [id=main]{grid-column:3/11}}.layout--2-column [id=container]{display:grid;grid-template-columns:repeat(12, 1fr);grid-gap:0 1.5rem;margin:0 auto;max-width:64.25rem}@media only screen and (min-width: 40rem){.layout--2-column [id=container]{grid-gap:0 2rem}}.layout--2-column [id=main]{grid-column:1/-1;grid-row:1/-1}@media only screen and (min-width: 64rem){.layout--2-column [id=main]{grid-column:5/13}}@media only screen and (max-width: 63.999rem){.layout--2-column [id=left]{display:none}}@media only screen and (min-width: 64rem){.layout--2-column [id=left]{grid-column:1/5;margin-block:4rem 8rem}}@media only screen and (min-width: 75rem){.layout--2-column [id=left]{grid-column:1/4}}.layout--1-column-10-12 [id=container]{display:grid;grid-template-columns:repeat(12, 1fr);grid-gap:0 1.5rem;margin:0 auto;max-width:64.25rem}@media only screen and (min-width: 40rem){.layout--1-column-10-12 [id=container]{grid-gap:0 2rem}}.layout--1-column-10-12 [id=container] [id=main]{grid-column:1/-1;grid-row:1/-1}@media only screen and (min-width: 48rem){.layout--1-column-10-12 [id=container] [id=main]{grid-column:2/12}}@media only screen and (min-width: 64rem){.layout--1-column-10-12 [id=container] [id=main]{grid-column:2/12}}.layout--1-column-12-12 [id=container]{display:grid;grid-template-columns:repeat(12, 1fr);grid-gap:0 1.5rem;margin:0 auto;max-width:64.25rem}@media only screen and (min-width: 40rem){.layout--1-column-12-12 [id=container]{grid-gap:0 2rem}}.layout--1-column-12-12 [id=container] [id=main]{grid-column:1/-1;grid-row:1/-1}@media only screen and (min-width: 48rem){.layout--1-column-12-12 [id=container] [id=main]{grid-column:1/-1}}@media only screen and (min-width: 64rem){.layout--1-column-12-12 [id=container] [id=main]{grid-column:1/-1}}[id=header]{background:#e2e4c0;border-bottom:.0625rem solid #e2e4c0;border-top:2px solid #b9c300}[id=header] .inside{justify-content:space-between;gap:1rem 1rem;display:grid;grid-template-columns:234px auto;padding-bottom:.5rem}@media only screen and (min-width: 30rem){[id=header] .inside{display:grid;grid-template-columns:234px auto}}@media only screen and (min-width: 40rem){[id=header] .inside{padding-bottom:1rem}}#header-navigation{grid-area:header-navigation;border-bottom:1px solid #e2e4c0;grid-column-start:1;grid-column-end:13}#header-navigation .inside{max-width:61.25rem;margin-inline:auto;position:relative;z-index:10;padding-inline:2rem}@media only screen and (min-width: 64rem){#header-navigation .inside{padding-inline:0rem}}.header-top-bar{display:block;grid-area:metabar}.header-top-bar .inner{display:flex;gap:1rem 2rem;flex-wrap:wrap;justify-content:flex-end;align-items:center}@media only screen and (max-width: 29.999rem){.header-top-bar{display:none}}.logo{grid-area:logo;display:grid;align-items:center;grid-column-start:1;grid-column-end:7;grid-row-start:2;grid-row-end:3;max-width:7.25rem;padding-top:1rem}@media only screen and (min-width: 30rem){.logo{max-width:11rem;grid-row-start:2;grid-row-end:3}}@media only screen and (min-width: 48rem){.logo{max-width:14.625rem;grid-row-start:1;grid-row-end:2}}.logo img{display:block}.header-termin-container{grid-area:header-termin-container;display:grid;grid-template-columns:1fr 1fr;grid-template-rows:auto auto;grid-column-start:1;grid-column-end:6;grid-row-start:1;grid-row-end:2}@media only screen and (min-width: 30rem){.header-termin-container{grid-column-start:1;grid-column-end:6;grid-row-start:1;grid-row-end:2}}@media only screen and (min-width: 48rem){.header-termin-container{grid-template-columns:auto;grid-column-start:7;grid-column-end:13;grid-row-start:1;grid-row-end:2}}@media only screen and (min-width: 64rem){.header-termin-container{grid-template-columns:auto;grid-column-start:7;grid-column-end:13;grid-row-start:1;grid-row-end:2}}.header-termin-koenigsstrasse{font-size:13px;color:#3d444c;letter-spacing:.05em;padding-left:20px;padding-top:10px;border-left:1px solid #b9c300;display:grid;grid-template-columns:60px auto;align-items:center}.header-termin-koenigsstrasse .icn-phone{display:inline-block;margin-right:1rem}.header-termin-koenigsstrasse a:hover{color:#7e8501 !important}.header-termin-geisseestrasse{font-size:13px;color:#3d444c;letter-spacing:.05em;padding-left:20px;padding-top:10px;border-left:1px solid #b9c300;display:grid;align-items:center;grid-template-columns:60px auto}.header-termin-geisseestrasse .icn-phone{display:inline-block;margin-right:1rem}.header-termin-geisseestrasse a:hover{color:#4684bf !important}[id=header-img]{padding-inline:0}[id=footer]{padding-block:5rem;background:#b9c300;color:#3d444c}[id=footer] .inside{display:flex;flex-wrap:wrap;justify-content:start;gap:2.5rem 2rem}[id=footer] a:is(:hover,:focus){color:#3d444c}[id=footer] :is(a.trail,strong){color:#3d444c}[id=footer] a:not([class]){color:#3d444c}[id=footer] a:not([class]):hover,[id=footer] a:not([class]):focus-visible{color:#fff;text-decoration-color:#fff}[id=footer] h1,[id=footer] h2,[id=footer] h3,[id=footer] h4,[id=footer] h5,[id=footer] h6{color:#3d444c}.footer-first-row{display:grid;grid-template-columns:repeat(12, 1fr);grid-gap:3rem 1.5rem;margin:0 auto;width:100%;max-width:64.25rem;justify-content:start}@media only screen and (min-width: 40rem){.footer-first-row{grid-gap:3rem 2rem}}.footer-first-row>*{grid-column:1/-1}@media only screen and (min-width: 48rem){.footer-first-row>*{grid-column:3/9}}@media only screen and (min-width: 75rem){.footer-first-row>*{grid-column:5/9}}.footer-first-row *:nth-child(1){grid-column:1/-1}@media only screen and (min-width: 48rem){.footer-first-row *:nth-child(1){grid-column:1/7}}@media only screen and (min-width: 64rem){.footer-first-row *:nth-child(1){grid-column:1/6}}@media only screen and (min-width: 87.5rem){.footer-first-row *:nth-child(1){grid-column:1/6}}.footer-first-row *:nth-child(2){grid-column:1/-1}@media only screen and (min-width: 48rem){.footer-first-row *:nth-child(2){grid-column:8/13}}@media only screen and (min-width: 48rem){.footer-first-row *:nth-child(2){grid-column:1/-1}}@media only screen and (min-width: 87.5rem){.footer-first-row *:nth-child(2){grid-column:6/13}}.logo--footer{margin-block-end:2.5rem}@media only screen and (max-width: 29.999rem){.logo--footer{max-width:11rem}}.footer-content{display:grid;grid-template-columns:repeat(12, 1fr);grid-gap:3rem 1.5rem;margin:0 auto;width:100%;max-width:64.25rem}@media only screen and (min-width: 40rem){.footer-content{grid-gap:3rem 2rem}}.footer-content>*{grid-column:1/-1}@media only screen and (min-width: 48rem){.footer-content>*{grid-column:3/9}}@media only screen and (min-width: 75rem){.footer-content>*{grid-column:5/9}}.footer-content *:nth-child(1){grid-column:1/-1}@media only screen and (min-width: 48rem){.footer-content *:nth-child(1){grid-column:1/6}}@media only screen and (min-width: 64rem){.footer-content *:nth-child(1){grid-column:1/5}}@media only screen and (min-width: 87.5rem){.footer-content *:nth-child(1){grid-column:1/5}}.footer-content *:nth-child(2){grid-column:1/-1}@media only screen and (min-width: 48rem){.footer-content *:nth-child(2){grid-column:8/13}}@media only screen and (min-width: 64rem){.footer-content *:nth-child(2){grid-column:6/10}}@media only screen and (min-width: 87.5rem){.footer-content *:nth-child(2){grid-column:6/10}}.prefooter{padding-block:.5rem;border-top:.0625rem solid #dde1e4}.prefooter .mod_newslist h2,.prefooter .mod_eventlist h2{margin-block-start:0}.footer-claim{font-size:1.25rem;line-height:1.5;display:block;color:#3d444c;text-align:left}.footer-claim a:not([class]){font-weight:800;text-decoration:none}.footer-claim a:hover,.footer-claim strong{text-decoration:underline #b9c300 .0625rem;text-underline-offset:.4em}.footer-table table{border:inherit}.footer-table table th,.footer-table table td,.footer-table table tr:nth-child(even):not([class*=week_]) td{background:inherit;border:inherit;padding:.25rem 0rem}.mod_article__inner{display:grid;grid-template-columns:repeat(12, 1fr);grid-gap:0 1.5rem;width:100%;padding-block:calc(.5*(8rem - 5rem))}@media only screen and (min-width: 40rem){.mod_article__inner{grid-gap:0 2rem}}.mod_article__inner>*.spacer--bottom-2{margin-block-end:2rem}.mod_article__inner>*.spacer--bottom-2+*{margin-block-start:0}.mod_article__inner>*:not([class*=sibling-space--]){margin-block:calc(.5*5rem)}.mod_article__inner>*.sibling-space--1,.mod_article__inner>*.sibling-space--2{margin-block-start:calc(.5*5rem)}.mod_article__inner>*.sibling-space--1+*,.mod_article__inner>*.sibling-space--2+*{margin-block-end:calc(.5*5rem)}.mod_article__inner>*.sibling-space--1{margin-block-end:.5rem}.mod_article__inner>*.sibling-space--1+*{margin-block-start:.5rem}.mod_article__inner>*.sibling-space--2{margin-block-end:1rem}.mod_article__inner>*.sibling-space--2+*{margin-block-start:1rem}.mod_article__inner>*:not([class*=col-]){grid-column:1/-1}.mod_article__inner>*:not([class*=col-]):first-child{margin-block-start:0}.mod_article__inner>*:not([class*=col-]):last-child{margin-block-end:0}.mod_article:first-child .mod_article__inner{padding-block-start:calc(.5*3rem)}@media only screen and (min-width: 64rem){.mod_article:first-child .mod_article__inner{padding-block-start:calc(.5*8rem)}}.mod_article:last-child .mod_article__inner{padding-block-end:calc(.5*3rem)}@media only screen and (min-width: 64rem){.mod_article:last-child .mod_article__inner{padding-block-end:calc(.5*8rem)}}.content-text{margin-bottom:2rem}.button-start,.button-secondary,.box--gray-light .more a,.module-feed-reader section .more a,.rss_default .more a,.rss_items_only .more a,.layout_short .more a,.layout_latest .more a,form p.error .more a,.button-primary,form .submit{display:inline-flex;justify-content:center;align-items:center;gap:.5rem;border:.0625rem solid rgba(0,0,0,0);font-weight:600;text-decoration:none;white-space:nowrap;text-decoration:none}.button-start:hover,.button-secondary:hover,.box--gray-light .more a:hover,.module-feed-reader section .more a:hover,.rss_default .more a:hover,.rss_items_only .more a:hover,.layout_short .more a:hover,.layout_latest .more a:hover,form p.error .more a:hover,.button-primary:hover,form .submit:hover,.button-start:focus,.button-secondary:focus,.box--gray-light .more a:focus,.module-feed-reader section .more a:focus,.rss_default .more a:focus,.rss_items_only .more a:focus,.layout_short .more a:focus,.layout_latest .more a:focus,form p.error .more a:focus,.button-primary:focus,form .submit:focus{cursor:pointer;text-decoration:none}.button-start:disabled,.button-secondary:disabled,.box--gray-light .more a:disabled,.module-feed-reader section .more a:disabled,.rss_default .more a:disabled,.rss_items_only .more a:disabled,.layout_short .more a:disabled,.layout_latest .more a:disabled,form p.error .more a:disabled,.button-primary:disabled,form .submit:disabled,[disabled].button-start,[disabled].button-secondary,.box--gray-light .more a[disabled],.module-feed-reader section .more a[disabled],.rss_default .more a[disabled],.rss_items_only .more a[disabled],.layout_short .more a[disabled],.layout_latest .more a[disabled],form p.error .more a[disabled],[disabled].button-primary,form [disabled].submit{cursor:not-allowed}.button-primary,form .submit{background:#b9c300;transition:background .2s ease-in-out;border:.0625rem solid rgba(0,0,0,0);color:#fff}.button-primary:hover,form .submit:hover,.button-primary:focus,form .submit:focus{background:#3d444c}.button-primary:disabled,form .submit:disabled,.button-primary[disabled],form [disabled].submit{background:#dde1e4;color:#6c7c89}.button-secondary,.box--gray-light .more a,.module-feed-reader section .more a,.rss_default .more a,.rss_items_only .more a,.layout_short .more a,.layout_latest .more a,form p.error .more a{background:#fff;transition:background .2s ease-in-out,border-color .2s ease-in-out,color .2s ease-in-out;border:.0625rem solid #dde1e4;color:#3d444c}.button-secondary:hover,.box--gray-light .more a:hover,.module-feed-reader section .more a:hover,.rss_default .more a:hover,.rss_items_only .more a:hover,.layout_short .more a:hover,.layout_latest .more a:hover,form p.error .more a:hover,.button-secondary:focus,.box--gray-light .more a:focus,.module-feed-reader section .more a:focus,.rss_default .more a:focus,.rss_items_only .more a:focus,.layout_short .more a:focus,.layout_latest .more a:focus,form p.error .more a:focus{background:#fff;border-color:#b9c300;color:#b9c300}.button-secondary:hover>h3,.box--gray-light .more a:hover>h3,.module-feed-reader section .more a:hover>h3,.rss_default .more a:hover>h3,.rss_items_only .more a:hover>h3,.layout_short .more a:hover>h3,.layout_latest .more a:hover>h3,form p.error .more a:hover>h3,.button-secondary:focus>h3,.box--gray-light .more a:focus>h3,.module-feed-reader section .more a:focus>h3,.rss_default .more a:focus>h3,.rss_items_only .more a:focus>h3,.layout_short .more a:focus>h3,.layout_latest .more a:focus>h3,form p.error .more a:focus>h3{color:#b9c300}.button-secondary:disabled,.box--gray-light .more a:disabled,.module-feed-reader section .more a:disabled,.rss_default .more a:disabled,.rss_items_only .more a:disabled,.layout_short .more a:disabled,.layout_latest .more a:disabled,form p.error .more a:disabled,.button-secondary[disabled],.box--gray-light .more a[disabled],.module-feed-reader section .more a[disabled],.rss_default .more a[disabled],.rss_items_only .more a[disabled],.layout_short .more a[disabled],.layout_latest .more a[disabled],form p.error .more a[disabled]{background:#dde1e4;color:#98a4ae}.button-start{display:grid;grid-template-columns:auto 100px;justify-content:space-between;column-gap:.75rem;white-space:wrap;hyphens:auto;background:#fff;transition:background .2s ease-in-out,border-color .2s ease-in-out,color .2s ease-in-out;border:.0625rem solid #dde1e4;color:#3d444c}.button-start h3{font-size:1.25rem}.button-start:hover,.button-start:focus{background:#fff;border-color:#b9c300;color:#b9c300}.button-start:hover>h3,.button-start:focus>h3{color:#b9c300}.button-start:disabled,.button-start[disabled]{background:#dde1e4;color:#98a4ae}.button--lg,form .submit{padding:calc(.875rem - 0.0625rem) calc(.75rem - 0.0625rem);border-radius:0;font-size:1rem;line-height:1.25rem}@media only screen and (min-width: 48rem){.button--lg,form .submit{padding:calc(1rem - 0.0625rem) calc(1.25rem - 0.0625rem)}}@media only screen and (min-width: 75rem){.button--lg,form .submit{padding:calc(1.25rem - 0.0625rem) calc(1.5rem - 0.0625rem);font-size:1.25rem;line-height:1.5rem}}.button--md,.box--gray-light .more a,.module-feed-reader section .more a,.rss_default .more a,.rss_items_only .more a,.layout_short .more a,.layout_latest .more a,form p.error .more a{padding:calc(1.25rem - 0.0625rem) calc(1.5rem - 0.0625rem);border-radius:0rem;font-size:.875rem;line-height:1rem}@media only screen and (min-width: 48rem){.button--md,.box--gray-light .more a,.module-feed-reader section .more a,.rss_default .more a,.rss_items_only .more a,.layout_short .more a,.layout_latest .more a,form p.error .more a{padding:calc(1rem - 0.0625rem) calc(1.5rem - 0.0625rem)}}@media only screen and (min-width: 75rem){.button--md,.box--gray-light .more a,.module-feed-reader section .more a,.rss_default .more a,.rss_items_only .more a,.layout_short .more a,.layout_latest .more a,form p.error .more a{padding:calc(1rem - 0.0625rem) calc(1.5rem - 0.0625rem);font-size:1rem;line-height:1.25rem}}.button--sm{padding:calc(.5rem - 0.0625rem) calc(.75rem - 0.0625rem);border-radius:0;font-size:.75rem;line-height:.875rem}@media only screen and (min-width: 48rem){.button--sm{padding:calc(.625rem - 0.0625rem) calc(.875rem - 0.0625rem)}}@media only screen and (min-width: 75rem){.button--sm{padding:calc(.75rem - 0.0625rem) calc(1rem - 0.0625rem);font-size:.875rem;line-height:1rem}}.button-group{display:flex;margin-block:2rem;gap:1rem}.cta_wrapper .link_wrapper{display:flex;justify-content:flex-end}.cta_wrapper .link_wrapper .inside{overflow:hidden;width:54px;transition:width 1s ease;background:#fff;border-radius:27px 27px 27px 27px;margin-bottom:1rem;box-shadow:rgba(0,0,0,.19) 0px 10px 20px,rgba(0,0,0,.23) 0px 6px 6px;position:relative;right:1rem}.cta_wrapper .link_wrapper .inside a{display:flex;align-items:center;white-space:nowrap}.cta_wrapper .link_wrapper .inside a img{display:block;flex-shrink:0;width:54px;height:auto}.cta_wrapper .link_wrapper .inside a p{margin:0 0 0 .5em;transform:translateX(100%)}.cta_wrapper .link_wrapper .inside:hover{width:auto;border-radius:27px 0 0 27px;padding-right:2rem;right:0}.cta_wrapper .link_wrapper .inside:hover a p{transform:translateX(0);font-weight:700}.icn-phone{width:30px;height:30px}.display-title{letter-spacing:-0.02em}.display-title-1,.slider-wrapper .content-text .title{font-size:1.5rem;line-height:1.2}@media only screen and (min-width: 40rem){.display-title-1,.slider-wrapper .content-text .title{font-size:1.875rem;line-height:1.2}}@media only screen and (min-width: 48rem){.display-title-1,.slider-wrapper .content-text .title{font-size:2rem;line-height:1.2}}@media only screen and (min-width: 75rem){.display-title-1,.slider-wrapper .content-text .title{font-size:2.5rem;line-height:1.2}}.display-title-2{font-size:1.375rem;line-height:1.2}@media only screen and (min-width: 40rem){.display-title-2{font-size:1.5rem;line-height:1.2}}@media only screen and (min-width: 75rem){.display-title-2{font-size:2rem;line-height:1.2}}.title-1,h1,.title-2,h2,.title-2--regular,.title-3,.module-feed-reader section h1,.module-feed-reader section h2,.module-feed-reader section h3,.rss_default h1,.rss_default h2,.rss_default h3,.rss_items_only h1,.rss_items_only h2,.rss_items_only h3,.layout_short h2,.layout_latest h2,h3,.title-3--regular,.title-4,h4,.title-4--regular,.title-5,form legend,h5,.title-5--regular,.title-6,h6,.title-6--regular{margin-block-end:2rem;font-weight:400;color:#3d444c}.title-1:first-child,h1:first-child,.title-2:first-child,h2:first-child,.title-2--regular:first-child,.title-3:first-child,.module-feed-reader section h1:first-child,.module-feed-reader section h2:first-child,.module-feed-reader section h3:first-child,h3:first-child,.title-3--regular:first-child,.title-4:first-child,h4:first-child,.title-4--regular:first-child,.title-5:first-child,form legend:first-child,h5:first-child,.title-5--regular:first-child,.title-6:first-child,h6:first-child,.title-6--regular:first-child{margin-block-start:0}.title-1,h1{font-size:1.5rem;line-height:1.2;font-weight:400;letter-spacing:-0.02em}@media only screen and (min-width: 40rem){.title-1,h1{font-size:1.875rem;line-height:1.2}}@media only screen and (min-width: 48rem){.title-1,h1{font-size:2rem;line-height:1.2}}@media only screen and (min-width: 75rem){.title-1,h1{font-size:2.5rem;line-height:1.2}}.title-2,h2,.title-2--regular{font-size:1.5rem;line-height:1.2;letter-spacing:-0.02em}@media only screen and (min-width: 40rem){.title-2,h2,.title-2--regular{font-size:1.875rem;line-height:1.2}}@media only screen and (min-width: 48rem){.title-2,h2,.title-2--regular{font-size:2rem;line-height:1.2}}@media only screen and (min-width: 75rem){.title-2,h2,.title-2--regular{font-size:2rem;line-height:1.2}}.title-2--regular{font-weight:400}.title-3,.module-feed-reader section h1,.module-feed-reader section h2,.module-feed-reader section h3,.rss_default h1,.rss_default h2,.rss_default h3,.rss_items_only h1,.rss_items_only h2,.rss_items_only h3,.layout_short h2,.layout_latest h2,h3,.title-3--regular{font-size:1.875rem;line-height:1.2;margin-block-end:1rem;letter-spacing:-0.01em}@media only screen and (min-width: 40rem){.title-3,.module-feed-reader section h1,.module-feed-reader section h2,.module-feed-reader section h3,.rss_default h1,.rss_default h2,.rss_default h3,.rss_items_only h1,.rss_items_only h2,.rss_items_only h3,.layout_short h2,.layout_latest h2,h3,.title-3--regular{font-size:1.875rem;line-height:1.2}}@media only screen and (min-width: 48rem){.title-3,.module-feed-reader section h1,.module-feed-reader section h2,.module-feed-reader section h3,.rss_default h1,.rss_default h2,.rss_default h3,.rss_items_only h1,.rss_items_only h2,.rss_items_only h3,.layout_short h2,.layout_latest h2,h3,.title-3--regular{font-size:1.875rem;line-height:1.2}}@media only screen and (min-width: 75rem){.title-3,.module-feed-reader section h1,.module-feed-reader section h2,.module-feed-reader section h3,.rss_default h1,.rss_default h2,.rss_default h3,.rss_items_only h1,.rss_items_only h2,.rss_items_only h3,.layout_short h2,.layout_latest h2,h3,.title-3--regular{font-size:1.875rem;line-height:1.2}}.title-3--regular{font-weight:400}.title-4,h4,.title-4--regular{color:#b9c300;font-size:1.625rem;line-height:1.2}@media only screen and (min-width: 40rem){.title-4,h4,.title-4--regular{font-size:1.625rem;line-height:1.2}}@media only screen and (min-width: 48rem){.title-4,h4,.title-4--regular{font-size:1.75rem;line-height:1.2}}@media only screen and (min-width: 75rem){.title-4,h4,.title-4--regular{font-size:1.75rem;line-height:1.2}}.title-4--regular{font-weight:400}.title-5,form legend,h5,.title-5--regular{font-size:1.625rem;line-height:1.2}@media only screen and (min-width: 40rem){.title-5,form legend,h5,.title-5--regular{font-size:1.625rem;line-height:1.2}}@media only screen and (min-width: 48rem){.title-5,form legend,h5,.title-5--regular{font-size:1.75rem;line-height:1.2}}@media only screen and (min-width: 75rem){.title-5,form legend,h5,.title-5--regular{font-size:1.75rem;line-height:1.2}}.title-5--regular{font-weight:400}.title-6,h6,.title-6--regular{font-size:1.375rem;line-height:1.2;margin-block-end:1rem;letter-spacing:-0.02em}.title-6--regular{font-weight:400}h1:first-child,h2:first-child,h3:first-child,h4:first-child,h5:first-child,h6:first-child{margin-block-start:0}.text--xs{font-size:.75rem;line-height:1.5;letter-spacing:.01em}.text--sm{font-size:.875rem;line-height:1.5}.text--md{font-size:1rem;line-height:1.5;letter-spacing:-0.01em}.text--lg,.mod_eventreader .info time{font-size:1.25rem;line-height:1.5;letter-spacing:-0.01em}figure{margin:0}figure.float_left{margin:0 0 2rem 0}@media only screen and (max-width: 29.999rem){figure.float_left{margin-block-end:2rem}}figure.float_right{margin:0 0 2rem 0}@media only screen and (max-width: 29.999rem){figure.float_right{margin-block-sstart:2rem}}figure.float_above{margin-block-end:2rem}figure.float_below{margin-block-start:2rem}img{display:block;max-width:100%;height:auto}figcaption{font-size:.875rem;line-height:1.5;margin-block-start:1rem;font-style:italic}a{display:flex;align-items:center;gap:0 .25rem}.link,.mod_sitemap a,.pagination a,.hyperlink_txt,.external-link,a:not([class]){display:inline-flex;color:#3d444c;transition:color .2s ease-in-out,text-decoration .2s ease-in-out;text-decoration:underline currentColor .0625rem;text-underline-offset:.4em}.link:hover,.mod_sitemap a:hover,.pagination a:hover,.link:focus,.mod_sitemap a:focus,.pagination a:focus,.hyperlink_txt:hover,.hyperlink_txt:focus,.external-link:hover,.external-link:focus,a:not([class]):hover,a:not([class]):focus{color:#b9c300}.content-hyperlink a{display:inherit;color:inherit;transition:inherit;text-decoration:inherit;text-underline-offset:inherit}.content-hyperlink a:hover,.content-hyperlink a:focus{color:inherit}p,ul,ol{margin:1rem 0}p:first-child,ul:first-child,ol:first-child{margin-block-start:0}p:last-child,ul:last-child,ol:last-child{margin-block-end:0}ul,ol{padding-left:1.5rem}blockquote{margin:2rem 0;padding-inline-start:1rem;border-left:.0625rem solid #dde1e4;font-style:italic}dl{margin-block:0}dd{margin-inline-start:0;padding-inline-start:1rem;border-left:.0625rem solid #dde1e4}.mod_article__inner .content-headline+*{margin-block-start:0}.content-text h1:first-child,.content-text h2:first-child,.content-text h3:first-child,.content-text h4:first-child,.content-text h5:first-child,.content-text h6:first-child{margin-block-start:0}.hljs{padding:2rem !important;border-radius:.5rem;background:#3d444c !important;color:#fff !important}.hljs-string,.hljs-regexp{background:rgba(0,0,0,0) !important;color:#b9c300 !important}.hg-weiss{background:#fff}.hg-blau{background:#eff7f8}.img-round{border-radius:50%;border:2px solid #b9c300;margin-inline:auto;margin-bottom:1rem}@media screen and (max-width: 767px){:is(a.trail,strong){color:inherit !important}}form .widget-text label,form .widget-textarea label,form .widget-select label,form .widget-upload label,form .widget-password label,form .widget-captcha label{font-size:.875rem;line-height:1.5}form .text,form .textarea,form .captcha,form select{font-size:1rem;line-height:1.5;width:100%;padding:1rem;border:.0625rem solid #afb8c0;border-radius:0;background:#fff;transition:border-color ease-in-out .2s;color:#98a4ae;font-weight:400}form .text:hover,form .textarea:hover,form .captcha:hover,form select:hover{border-color:#6c7c89;box-shadow:none;outline:none}form .text:focus-visible,form .textarea:focus-visible,form .captcha:focus-visible,form select:focus-visible{border-color:#b9c300;box-shadow:none;color:#142533;font-weight:400}form .text.error:valid,form .textarea.error:valid,form .captcha.error:valid,form select.error:valid{border-color:#afb8c0;background:none;font-weight:400;color:#48535b}form .text:disabled,form .textarea:disabled,form .captcha:disabled,form select:disabled{border-color:#afb8c0;background-color:#dde1e4}form .text.error,form .textarea.error,form .captcha.error,form select.error{padding-right:3rem;border-color:#ff7a70;background:#fdeeed url("../../files/dts/theme/src/img/o-warning-red.svg") no-repeat calc(100% - 1rem) center;color:#a30b00}form .formbody,form .fields{display:grid;gap:1.5rem;max-width:48rem}form .formbody>fieldset,form .fields>fieldset{margin-inline:0;width:100%}form legend{margin-block-end:.5rem}form fieldset{display:grid;gap:1.5rem;margin:0;padding:0;border:none}form fieldset+fieldset{margin-top:1rem}form .widget-text,form .widget-textarea,form .widget-select,form .widget-upload,form .widget-password,form .widget-captcha{width:100%;max-width:30rem;display:grid;gap:.25rem}form .widget-text label .mandatory,form .widget-textarea label .mandatory,form .widget-select label .mandatory,form .widget-upload label .mandatory,form .widget-password label .mandatory,form .widget-captcha label .mandatory{display:inline-block;margin-inline-start:.24rem}form .widget-textarea{max-width:40.5rem}form :is(.checkbox_container,.radio_container){position:relative}form .text:focus-visible,form .textarea:focus-visible,form .captcha:focus-visible,form select:focus-visible{outline:none}form select{padding-inline-end:3.5rem;background-image:url("../../files/dts/theme/src/img/icons/chevron-down.svg");background-position:calc(100% - 1rem) center;background-repeat:no-repeat;-moz-appearance:none;-webkit-appearance:none;appearance:none}form .radio_container{display:flex;flex-direction:column;gap:1rem 2rem}form input:focus-visible+label:before{outline:3px dashed #b9c300;outline-offset:2px}form input.checkbox:checked,form input.checkbox:not(:checked),form input.radio:checked,form input.radio:not(:checked){position:absolute;top:50%;left:.75rem;z-index:-1;width:0;height:0;border:0;margin:0;padding:0;opacity:0;line-height:0}form input.checkbox:checked+label,form input.checkbox:not(:checked)+label,form input.radio:checked+label,form input.radio:not(:checked)+label{position:relative;display:flex;gap:.5rem}form input.checkbox:checked+label:before,form input.checkbox:not(:checked)+label:before,form input.radio:checked+label:before,form input.radio:not(:checked)+label:before{transition:border-color .2s ease-in-out;display:block;flex-shrink:0;width:1.5rem;height:1.5rem;border:.0625rem solid #afb8c0;background:#fff;content:""}form input.checkbox:checked+label:after,form input.checkbox:not(:checked)+label:after,form input.radio:checked+label:after,form input.radio:not(:checked)+label:after{position:absolute;top:.4375rem;left:calc(.5*(1.5rem - 0.625rem));z-index:5;display:block;background:rgba(0,0,0,0);transition:background-color .2s ease-in-out;width:.625rem;height:.625rem;content:""}form input.checkbox:checked+label:hover,form input.checkbox:checked+label:focus,form input.checkbox:not(:checked)+label:hover,form input.checkbox:not(:checked)+label:focus,form input.radio:checked+label:hover,form input.radio:checked+label:focus,form input.radio:not(:checked)+label:hover,form input.radio:not(:checked)+label:focus{cursor:pointer}form input.checkbox:checked+label:hover:before,form input.checkbox:checked+label:focus:before,form input.checkbox:not(:checked)+label:hover:before,form input.checkbox:not(:checked)+label:focus:before,form input.radio:checked+label:hover:before,form input.radio:checked+label:focus:before,form input.radio:not(:checked)+label:hover:before,form input.radio:not(:checked)+label:focus:before{border-color:#6c7c89}form input.checkbox:checked+label:hover:after,form input.checkbox:checked+label:focus:after,form input.checkbox:not(:checked)+label:hover:after,form input.checkbox:not(:checked)+label:focus:after,form input.radio:checked+label:hover:after,form input.radio:checked+label:focus:after,form input.radio:not(:checked)+label:hover:after,form input.radio:not(:checked)+label:focus:after{background-color:#afb8c0}form input.checkbox:checked+label:before,form input.radio:checked+label:before{border-color:#b9c300}form input.checkbox:checked+label:after,form input.radio:checked+label:after{background-color:#3d444c}form input.checkbox:checked+label:hover:before,form input.checkbox:checked+label:focus:before,form input.radio:checked+label:hover:before,form input.radio:checked+label:focus:before{border-color:#6c7c89}form input.checkbox:checked+label:hover:after,form input.checkbox:checked+label:focus:after,form input.radio:checked+label:hover:after,form input.radio:checked+label:focus:after{background-color:#3d444c}form input.radio+label:before,form input.radio+label:after{border-radius:5rem}form p.error{font-size:.875rem;line-height:1.5;margin:0;padding:1rem;background:#fff;color:#a30b00;order:9}form p.error~.widget-submit{order:10}table{width:100%;border-collapse:collapse}table caption{font-size:.875rem;line-height:1.5;width:100%;margin-bottom:.5rem;text-align:left}th,td{padding:1rem 1.25rem;text-align:left;vertical-align:top;border:.0625rem solid #dde1e4}th{border-bottom-color:#6c7c89;background:#f4f5f6;font-weight:600;color:#3d444c}@media only screen and (max-width: 39.999rem){th{display:none}}td{background:#fff}@media only screen and (max-width: 39.999rem){td{display:grid}}@media only screen and (max-width: 39.999rem){td:not(:first-child){border-top:none}}@media only screen and (max-width: 39.999rem){td:first-child{padding-block-start:2rem}}@media only screen and (max-width: 39.999rem){td:last-child{padding-block-end:2rem}}@media only screen and (max-width: 39.999rem){td::before{font-weight:600}}tr:nth-child(even):not([class*=week_]) td{background:#f9fafb}.searchbar .formbody{position:relative;display:flex;flex-wrap:wrap;align-items:center}.searchbar .text{border-radius:5rem;padding-inline:1.5rem 3.5rem}.searchbar .text:focus{outline:none}@media only screen and (max-width: 63.999rem){.searchbar .text{padding-block:.75rem}}.searchbar .widget-text{position:relative}.searchbar .widget-text label{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;float:left}.searchbar .widget-radio{width:100%}.searchbar .widget-submit{position:absolute;right:0;top:0;bottom:0;width:3.5rem;border-radius:0 5rem 5rem 0}.searchbar .submit{position:relative;height:100%;width:100%;text-indent:-9999px;background:rgba(0,0,0,0) url("../../files/dts/theme/src/img/icons/search.svg") 7px center no-repeat !important;border-radius:0 5rem 5rem 0}.searchbar .submit:hover{cursor:pointer}@media only screen and (max-width: 29.999rem){.searchbar--simple{display:none}}@media only screen and (max-width: 47.999rem){.searchbar--simple,.searchbar--simple .widget-text{max-width:100%;width:100%}}.searchbar--extended .widget-text{max-width:32rem}.searchbar--extended .widget-submit{bottom:initial;height:58px}@media only screen and (min-width: 35rem){.searchbar--extended .widget-submit{right:calc(100% - 32rem)}}@media only screen and (max-width: 63.999rem){.searchbar--extended .widget-submit{height:50px}}.searchbar--extended .radio_container{flex-direction:row}.searchbar--extended .header{margin-top:2.5rem}.searchbar--extended .header~div{margin-bottom:2rem}.slider-control{display:flex;justify-content:space-between;align-items:center;gap:1rem;margin-block-start:1rem;height:3rem}@media only screen and (max-width: 63.999rem){.header-image .slider-control{padding-inline:1.5rem}}.slider-control .slider-menu,.slider-control a{position:static;top:0}.slider-control .slider-menu{left:auto;display:flex;justify-content:center;gap:.5rem;height:1rem;width:auto;margin:0;font-size:0}.slider-control .slider-menu b{display:block;width:1rem;height:1rem;background:#afb8c0;border-radius:3rem;transition:background ease-in-out .2s}.slider-control .slider-menu b:hover,.slider-control .slider-menu b:focus-visible{background:#6c7c89}.slider-control .slider-menu b.active{background:#3d444c}.slider-control .slider-prev,.slider-control .slider-next{display:flex;gap:1rem;width:3rem;height:3rem;overflow:hidden}.slider-control .slider-prev:before,.slider-control .slider-next:before{display:block;flex-shrink:0;width:3rem;height:3rem;border-radius:.25rem;background:#3d444c url("../../files/dts/theme/src/img/icons/caret-left--white.svg") center center no-repeat;transition:background ease-in-out .2s;content:""}.slider-control .slider-prev:hover:before,.slider-control .slider-prev:focus:before,.slider-control .slider-next:hover:before,.slider-control .slider-next:focus:before{background-color:#b9c300}.slider-control .slider-next:before{background-image:url("../../files/dts/theme/src/img/icons/caret-right--white.svg")}.slider-wrapper{display:flex;position:relative;background:#f4f5f6}.slider-wrapper>*{float:none}.slider-wrapper .content-text{display:flex;overflow:hidden}@media only screen and (max-width: 63.999rem){.slider-wrapper .content-text{flex-direction:column}}@media only screen and (min-width: 64rem){.slider-wrapper .content-text figure,.slider-wrapper .content-text .text-wrapper{flex:1 1 50%}}.slider-wrapper .content-text figure{aspect-ratio:5/3}@media only screen and (min-width: 64rem){.slider-wrapper .content-text figure{order:1}}.slider-wrapper .content-text img{height:100%;object-fit:cover;object-position:center center}.slider-wrapper .content-text .text-wrapper{font-size:1rem;line-height:1.5;padding:2rem}@media only screen and (min-width: 48rem){.slider-wrapper .content-text .text-wrapper{font-size:1.25rem;line-height:1.5;display:flex;flex-direction:column;justify-content:center}}.slider-wrapper .content-text .title{margin-block:0 3rem;font-weight:300}.slider-wrapper figure{margin:0}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:#b9c300}.content-gallery ul{display:grid;grid-template-columns:repeat(12, 1fr);grid-gap:1.5rem;list-style:none;margin:0;padding:0}@media only screen and (min-width: 40rem){.content-gallery ul{grid-gap:2rem}}.content-gallery li{grid-column:span 12}@media only screen and (min-width: 30rem){.content-gallery li{grid-column:span 6}}.content-gallery figure{transition:border-color .2s ease-in-out;padding:.25rem;background:#fff;border:1px solid #dde1e4}.content-gallery figure:hover,.content-gallery figure:focus{border-color:#b9c300}@media only screen and (min-width: 64rem){.content-gallery--cols-3 li{grid-column:span 4}}.content-gallery--cols-4 li{grid-column:span 3}.content-gallery--cols-6 li{grid-column:span 2}.content-youtube figure,.content-vimeo figure{margin:0}.content-youtube figure.aspect,.content-vimeo figure.aspect{position:relative;width:100%}.content-youtube figure.aspect iframe,.content-vimeo figure.aspect iframe{position:absolute;inset:0;z-index:5;width:100% !important;height:100% !important}.content-youtube figure.aspect figcaption,.content-vimeo figure.aspect figcaption{position:absolute;inset:auto 2px 2px;z-index:5;padding:2px;background:linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);color:#fff;text-align:center}video{max-width:100%}.back{margin-block-start:2.5rem}@media only screen and (min-width: 75rem){.mod_article__inner>.mod_newsarchive:not([class*=col-]),.mod_article__inner>.mod_newslist:not([class*=col-]),.mod_article__inner>.mod_eventlist:not([class*=col-]){grid-column:1/10}}.mod_newsreader{display:flex;flex-direction:column}.mod_newsreader:first-child{margin-block-start:0}.mod_newsreader>*:not(.content-headline){margin-block:calc(.5*5rem)}.mod_newsreader>*.spacer--bottom-2{margin-block-end:2rem}.mod_newsreader>*.spacer--bottom-2+*{margin-block-start:0}.mod_newsreader .layout_full{margin-block:0}.mod_newsreader .back{margin-block-start:2.5rem}.mod_eventreader .info time{font-weight:600}.layout_simple,.layout_upcoming{display:flex;flex-direction:column;gap:.25rem .5rem;padding:1rem 0}.layout_simple a,.layout_upcoming a{text-decoration:none}.layout_simple time,.layout_upcoming time{font-size:.875rem;line-height:1.5}.layout_short,.layout_latest{display:flex;flex-direction:column}.layout_short h2,.layout_latest h2{margin-block:0 1rem}.layout_short h2 a,.layout_latest h2 a{text-decoration:none}.layout_short+.layout_short,.layout_short+.layout_latest,.layout_latest+.layout_short,.layout_latest+.layout_latest{margin-top:4rem}.layout_latest figure{order:-2;margin-block-end:2rem}.layout_upcoming+.layout_upcoming{border-top:.0625rem solid #dde1e4}.layout_simple+.layout_simple{border-top:.0625rem solid #dde1e4}.layout_full h1{margin-block-end:1rem}.layout_full .info{position:relative;margin-bottom:5rem}.layout_full .info:after{position:absolute;left:0;right:0;bottom:calc(-1*(2.5rem + 0.0625rem));z-index:5;height:.0625rem;background:#dde1e4;content:""}.layout_full .enclosure{margin-block-start:2rem;padding:0;list-style:none}.info{font-size:.875rem;line-height:1.5;font-style:italic}.info time{font-style:normal}.info.recurring{font-size:1rem;line-height:1.5;margin-block-start:1.5rem;margin-block-end:2.5rem;font-weight:700;font-style:normal}.info.recurring:after{content:none}.syndication{display:flex;justify-content:flex-start;align-items:center;gap:1rem 2rem;margin-block-end:0}.syndication img{display:none}.syndication a{position:relative;width:1.5rem;aspect-ratio:1/1;border-radius:50%}.syndication a:before{position:absolute;inset:0;content:""}.syndication .print:before{background:rgba(0,0,0,0) url("../../files/dts/theme/src/img/icons/printer.svg") center center no-repeat}.syndication .facebook:before{background:rgba(0,0,0,0) url("../../files/dts/theme/src/img/icons/facebook.svg") center center no-repeat}.syndication .twitter:before{background:rgba(0,0,0,0) url("../../files/dts/theme/src/img/icons/twitter-circle.svg") center center no-repeat}.mod_rssReader{display:flex;flex-direction:column}@media only screen and (min-width: 75rem){.mod_article__inner>.mod_rssReader:not([class*=col-]){grid-column:1/10}}.rss_default_header a{text-decoration:none}.rss_default h1,.rss_default h2,.rss_default h3,.rss_items_only h1,.rss_items_only h2,.rss_items_only h3{margin-block-end:1rem}.rss_default h1 a,.rss_default h2 a,.rss_default h3 a,.rss_items_only h1 a,.rss_items_only h2 a,.rss_items_only h3 a{text-decoration:none}.rss_items_only+.rss_items_only,.rss_default+.rss_default{margin-block-start:4rem}@media only screen and (min-width: 75rem){.mod_article__inner>.module-feed-reader:not([class*=col-]){grid-column:1/10}}.module-feed-reader header a{text-decoration:none}.module-feed-reader section h1,.module-feed-reader section h2,.module-feed-reader section h3{margin-block-end:1rem}.module-feed-reader section h1 a,.module-feed-reader section h2 a,.module-feed-reader section h3 a{text-decoration:none}.module-feed-reader section+section{margin-block-start:4rem}#cboxOverlay{background:#121517}#cboxWrapper,#colorbox{overflow:visible}#colorbox [id=cboxLoadedContent]{background:#121517;border:none}#colorbox [id=cboxTitle],#colorbox [id=cboxCurrent]{font-size:.875rem;line-height:1.5;top:-2.25rem;color:#afb8c0}#colorbox [id=cboxClose],#colorbox [id=cboxPrevious],#colorbox [id=cboxNext]{width:2.25rem;height:2.25rem;transition:background ease-in-out .2s}#colorbox [id=cboxClose]:hover,#colorbox [id=cboxClose]:focus-visible,#colorbox [id=cboxPrevious]:hover,#colorbox [id=cboxPrevious]:focus-visible,#colorbox [id=cboxNext]:hover,#colorbox [id=cboxNext]:focus-visible{background-color:#b9c300}@media only screen and (min-width: 64rem){#colorbox [id=cboxClose],#colorbox [id=cboxPrevious],#colorbox [id=cboxNext]{width:3rem;height:3rem}}#colorbox [id=cboxPrevious],#colorbox [id=cboxNext]{margin-block-start:0;transform:translateY(-50%)}#colorbox [id=cboxClose]{top:0;right:0;background:#142533 url("../../files/dts/theme/src/img/icons/close-x.svg") center center no-repeat}#colorbox [id=cboxPrevious]{left:0;background:#142533 url("../../files/dts/theme/src/img/icons/caret-left--white.svg") center center no-repeat;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}#colorbox [id=cboxNext]{right:0;background:#142533 url("../../files/dts/theme/src/img/icons/caret-right--white.svg") center center no-repeat;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.hero_slider{max-width:61.25rem;margin-inline:auto}.hero_slider .hero__content{position:absolute;bottom:10%;left:10%}.hero_slider h1,.hero_slider h2,.hero_slider h3{font-size:clamp(2rem,1.2873rem + .2227vw,3.47rem);color:#fff;text-shadow:0px 0px 5px #000}.swiper-button-next,.swiper-button-prev{color:#b9c300;background:inherit;border:none;text-shadow:3px 3px 5px #000}.breadcrumb{display:flex;width:100%;margin:.5rem auto 1rem 0}@media(min-width: 1670px){.breadcrumb{margin:.5rem auto 1rem 0rem}}@media only screen and (max-width: 39.999rem){.breadcrumb{display:none}}.breadcrumb a{transition:color .2s ease-in-out,text-decoration .2s ease-in-out;color:#3d444c;font-weight:400;text-decoration:none;text-decoration:underline rgba(0,0,0,0) .0625rem;text-underline-offset:.4em}.breadcrumb a:hover,.breadcrumb a:focus{color:#b9c300;text-decoration-color:currentColor}.breadcrumb ul{max-width:61.25rem;font-size:.875rem;line-height:1.5;display:flex;flex-wrap:wrap;gap:.5rem 1.5rem;margin:0;padding:.5rem 1rem .5rem 0rem;list-style:none}.breadcrumb li{display:flex;align-items:center;gap:.5rem;font-weight:600;color:#48535b}.breadcrumb li+li:before{display:block;width:1rem;height:1rem;margin-inline-start:-1.25rem;background:rgba(0,0,0,0) url("../../files/dts/theme/src/img/icons/caret-right--gray.svg") center center no-repeat;content:""}.breadcrumb li:first-child a,.breadcrumb li:first-child strong{display:inline-block;width:16px;height:16px;background:url(../../files/dts/media/graphics/home.png) no-repeat center center;background-size:contain;text-indent:-9999px;overflow:hidden;white-space:nowrap;margin-right:.5rem}.nav-main{--nav-text-decoration: underline;--nav-text-decoration-dicke: .125rem;--nav-text-decoration-clr: transparent;--nav-underline-offset: 0.95rem;--toggle-nav-groesse: 44px;--clr-nav-bg-main-mobile: #ffffff;margin-left:auto;padding-top:.5rem}.nav-main .nav-main ul{padding:0;margin:0;list-style:none;width:100%}.nav-main .nav-main :is(a,strong){font-size:1rem;line-height:1.5;letter-spacing:0;position:relative;display:block;transition:color .2s ease-in-out;color:#3d444c;font-weight:400;-webkit-text-decoration:var(--nav-text-decoration);text-decoration:var(--nav-text-decoration);text-decoration-thickness:var(--nav-text-decoration-dicke);-webkit-text-decoration-color:var(--nav-text-decoration-clr);text-decoration-color:var(--nav-text-decoration-clr);text-underline-offset:calc(var(--nav-underline-offset)/3)}.nav-main a:is(:hover,:focus){color:#98a001}.nav-main :is(a.trail,strong){color:#98a001}@media screen and (min-width: 768px){li.klick-deaktiviert>a{pointer-events:none}.nav-main{display:block}.nav-main li>.level_3{top:-50%;left:100%;min-width:200px}.nav-main li.nav-expanded>ul{display:flex}.nav-main li.nav-expanded>.btn-toggle-submenu:after{height:2px}.nav-main .level_1{gap:0 2rem;justify-content:flex-start;align-items:baseline}.nav-main .level_1>li:first-child a,.nav-main .level_1>li:first-child strong{display:inline-block;width:16px;height:16px;background:url("../../files/dts/media/graphics/home.png") no-repeat center center;background-size:contain;text-indent:-9999px;overflow:hidden;white-space:nowrap;margin-top:.65rem}.nav-main .level_1 ul{flex-direction:column}.nav-main .level_1>li>a,.nav-main .level_1>li>strong{font-size:1rem;line-height:1.5;padding-bottom:.5rem}.nav-main .level_1 ul{transform:scaleY(0);transform-origin:top;opacity:0;height:auto;transition:transform .3s cubic-bezier(0.4, 0, 0.2, 1),opacity .3s ease}.nav-main ul.level_3{transform:translateX(-20%);transform-origin:left;opacity:0;transition:transform .3s cubic-bezier(0.4, 0, 0.2, 1),opacity .3s ease}.nav-main .level_1 .submenu.nav-expanded>ul.level_2,.nav-main .level_1 .submenu:hover>ul.level_2{transform:scaleY(1);opacity:1}.nav-main .level_2 .submenu.nav-expanded>ul.level_3,.nav-main .level_2 .submenu:hover>ul.level_3{transform:translateX(0);transform-origin:left;opacity:1}.nav-main li.L2-rechts>ul.level_2{right:0}.nav-main li.nav-expanded.L2-rechts>ul.level_2{right:0}.nav-main .level_2 .L3-rechts>ul.level_3{transform:translateX(20%);transform-origin:right;right:100%;left:auto}.nav-main .level_2 .nav-expanded.L3-rechts>ul.level_3{transform-origin:right;left:-100%}}@media screen and (min-width: 768px){.nav-main a{color:#3d444c;-webkit-text-decoration-color:var(--nav-text-decoration-clr);text-decoration-color:var(--nav-text-decoration-clr)}.nav-main a:is(:hover,:focus){color:#98a001;-webkit-text-decoration:var(--nav-text-decoration);text-decoration:var(--nav-text-decoration);text-decoration-color:#b9c300;text-underline-offset:var(--nav-underline-offset)}.nav-main :is(a.trail,strong){color:#98a001;-webkit-text-decoration:var(--nav-text-decoration);text-decoration:var(--nav-text-decoration);text-decoration-color:#b9c300;text-underline-offset:var(--nav-underline-offset)}.nav-main ul{display:flex;flex-wrap:wrap;width:revert}.nav-main ul ul{position:absolute;top:2rem;padding:15px 0;min-width:270px;background:var(--clr-nav-bg-main-l2, #fff);box-shadow:1px 2px 15px rgba(0,0,0,.1);gap:1rem;z-index:1}.nav-main ul ul li{padding:0 15px}.nav-main ul ul .btn-toggle-submenu{right:15px}.nav-main .level_2 a:is(:hover,:focus),.nav-main .level_2 :is(a.trail,strong){text-underline-offset:calc(var(--nav-underline-offset)/3)}.nav-main li.submenu{position:relative}}.btn-toggle-submenu{all:revert;position:absolute;top:3px;right:0;width:var(--toggle-nav-groesse);height:var(--toggle-nav-groesse);border:none;background:none !important;color:currentColor !important;cursor:pointer;z-index:1}.btn-toggle-submenu:before,.btn-toggle-submenu:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);background:var(--btn-toggle-clr, currentColor)}.btn-toggle-submenu:before{height:2px;width:50%}.btn-toggle-submenu:after{height:50%;width:2px;transition:height .3s cubic-bezier(0.2, 0.6, 0.3, 1.1)}@media screen and (min-width: 768px){.btn-toggle-submenu{margin:auto;padding:0;position:absolute;top:0;bottom:0;right:0;width:1em;height:1em}.btn-toggle-submenu:before{width:75%}.btn-toggle-submenu:after{height:75%}}@media screen and (max-width: 767px){.nav-main{position:fixed;top:7rem;bottom:0;left:-100%;z-index:50;display:flex;-webkit-margin-start:auto;margin-inline-start:auto;width:100%;background:var(--clr-nav-bg-main-mobile);transition:left .2s ease-in-out}.show-nav-mobile .nav-main{left:0;overflow-y:auto}.nav-main :is(a,strong){display:inline-block}.nav-main li{display:flex;flex-direction:column;align-items:flex-start;width:100%;min-height:30px}.nav-main li ul{flex-direction:column;display:flex}.nav-main li:not(:last-child){border-bottom:1px solid rgba(0,0,0,.1)}.nav-main li>:is(a,strong){padding:10px 0;width:calc(100% - var(--toggle-nav-groesse));text-decoration:none}a:is(:hover,:focus){color:#98a001}:is(a.trail,strong){color:#98a001}.nav-main li.submenu{position:relative}.nav-main li.submenu li:first-child{border-top:1px solid rgba(0,0,0,.1)}.nav-main li.nav-expanded>.btn-toggle-submenu:after{height:2px}.nav-main .level_1{gap:0 2rem;display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start;overflow-y:auto;padding:1.5rem}.nav-main .level_2 li{padding:0 10px}.nav-main .level_2,.nav-main .level_3{position:relative;display:flex;height:0;overflow:hidden;top:0;transform:scaleY(0);transition:all ease-in-out 500ms;transform-origin:top}.nav-main .level_1 .submenu.nav-expanded>ul.level_2,.nav-main .level_2 .submenu.nav-expanded>ul.level_3{transform:scaleY(1);transform-origin:top;transition:all ease-in-out 500ms;opacity:1;height:auto}}@media(forced-colors){.btn-toggle-submenu:before,.btn-toggle-submenu:after{border:1px solid currentColor}}@media screen and (min-width: 768px)and (forced-colors){.nav-main .level_2{border:1px solid currentColor}}.nav-meta ul{display:flex;flex-wrap:wrap}.nav-meta li{display:flex;align-items:center}.nav-meta a,.nav-meta strong{text-decoration:underline rgba(0,0,0,0) .0625rem;text-underline-offset:.4em;font-weight:400;transition:color ease-in-out .2s,text-decoration ease-in-out .2s}.nav-meta a:hover,.nav-meta a:focus-visible{color:#3d444c;text-decoration-color:#3d444c}.nav-meta strong{color:#3d444c;text-decoration-color:#3d444c}@media only screen and (max-width: 47.999rem){.nav-meta--header{display:none}}.nav-meta--header ul{gap:1rem 2rem}.nav-meta--header a{text-underline-offset:.3em}.nav-meta--footer{display:flex;justify-content:left;width:100%}.nav-meta--footer ul{display:flex;justify-content:left;gap:1rem 4rem}.nav-meta--footer li{display:flex}.nav-meta--footer a,.nav-meta--footer strong{font-size:1.25rem;line-height:1.5;gap:0 .375rem}.nav-sidebar a,.nav-sidebar strong{display:flex;align-items:center;gap:0 .25rem;flex-shrink:0;padding:1rem 1.5rem;background:#fff;border-bottom:.0625rem solid #f4f5f6;color:#3d444c;transition:color .2s ease-in-out,text-decoration .2s ease-in-out,border-color .2s ease-in-out;font-weight:600;text-decoration:none}.nav-sidebar a:after{display:block;width:1.5rem;height:1.5rem;margin-left:auto;transition:opacity .2s ease-in-out;background:rgba(0,0,0,0) url("../../files/dts/theme/src/img/icons/arrow-right--orange.svg") center center no-repeat;opacity:0;content:""}.nav-sidebar a:hover,.nav-sidebar a:focus{color:#b9c300;border-bottom-color:#b9c300}.nav-sidebar a:hover:after,.nav-sidebar a:focus:after{opacity:1}.nav-sidebar a[class*=nav-icon-]:before,.nav-sidebar strong[class*=nav-icon-]:before{content:none}.nav-sidebar a.trail,.nav-sidebar strong{background:#3d444c;border-bottom-color:#3d444c;color:#fff;text-decoration:underline #b9c300 .0625rem;text-decoration-thickness:.125em;text-underline-offset:.4em}.pagination{display:flex;gap:.5rem 2rem;margin-block-start:1.5rem}.pagination p{margin:0}.pagination ul{display:flex;justify-content:flex-start;gap:.5rem}.pagination strong{display:inline-flex;color:#3d444c;transition:color .2s ease-in-out,text-decoration .2s ease-in-out;text-decoration:underline #b9c300 .0625rem;text-underline-offset:.4em}.mod_articlelist ul{display:flex;align-items:center;gap:.5rem;margin:0;padding:0;list-style:none}.mod_booknav ul{display:flex;align-items:center;gap:.5rem;margin:0;padding:0;list-style:none}.mod_sitemap ul{margin:0;padding:0;width:100%;list-style:none}.mod_sitemap ul ul{padding-inline-start:1.5rem;border-left:.0625rem dotted #98a4ae}.mod_sitemap li{display:flex;flex-wrap:wrap}.mod_sitemap a{position:relative;display:flex;padding-inline-start:1.5rem}.mod_sitemap a:before{position:absolute;top:0;left:0;width:1rem;height:100%;border-left:.0625rem dotted #98a4ae;border-bottom:.0625rem dotted #98a4ae;content:""}.mod_sitemap .level_1>li:first-child a:before{border-left:rgba(0,0,0,0)}.sliding-bar{position:fixed;top:calc(50% - 2rem);right:1%;z-index:1000}.sliding-bar .cta-right a{display:flex;flex-direction:column;padding:1rem;margin-bottom:10px;background-color:#b9c300;text-decoration:none;border-radius:50%;box-shadow:0 2px 5px rgba(0,0,0,.2);width:60px;height:60px;transition:.3s}.sliding-bar .cta-right a:hover{background-color:#3d444c;width:60px;height:60px}.nav-toggle{padding:0;border:none;background:rgba(0,0,0,0)}@media only screen and (max-width: 63.999rem){.nav-toggle{font-size:1.25rem;line-height:1.5;display:flex;justify-content:flex-start;align-items:center;gap:.5rem;font-weight:600;color:#3d444c}}@media only screen and (max-width: 29.999rem){.nav-toggle{font-size:1rem;line-height:1.5}}.nav-toggle__box{display:none}@media only screen and (max-width: 47.999rem){.nav-toggle__box{display:flex;justify-content:flex-end;align-items:center;grid-area:mainbar}}.nav-toggle__icon{position:relative;width:3rem;height:3rem;color:#b9c300}@media only screen and (max-width: 29.999rem){.nav-toggle__icon{width:calc(3rem*.5);height:calc(3rem*.5)}}.nav-toggle .icon-line{top:50%;z-index:1;transform:translateY(-50%);transition:background-color .2s ease-in-out}.nav-toggle .icon-line,.nav-toggle .icon-line:before,.nav-toggle .icon-line:after{position:absolute;left:50%;height:.25rem;width:2.25rem;background:#b9c300;border-radius:3rem;transform:translateX(-50%)}@media only screen and (max-width: 29.999rem){.nav-toggle .icon-line,.nav-toggle .icon-line:before,.nav-toggle .icon-line:after{height:calc(0.25rem*.5);width:calc(2.25rem*.5)}}.nav-toggle .icon-line:before,.nav-toggle .icon-line:after{z-index:2;transition:transform .2s ease-in-out,top .2s ease-in-out,bottom .2s ease-in-out;content:""}.nav-toggle .icon-line:before{top:calc(-1*(0.25rem + 0.375rem))}@media only screen and (max-width: 29.999rem){.nav-toggle .icon-line:before{top:calc(-1*(0.25rem + 0.375rem*.5))}}.nav-toggle .icon-line:after{bottom:calc(-1*(0.25rem + 0.375rem))}@media only screen and (max-width: 29.999rem){.nav-toggle .icon-line:after{bottom:calc(-1*(0.25rem + 0.375rem*.5))}}.nav-toggle.is-active .icon-line{background:rgba(0,0,0,0)}.nav-toggle.is-active .icon-line:before{top:0;transform:translateX(-50%) rotate(45deg)}.nav-toggle.is-active .icon-line:after{bottom:0;transform:translateX(-50%) rotate(-45deg)}.nav-toggle:hover{cursor:pointer}@media(forced-colors){.nav-toggle__icon{color:currentColor}.nav-toggle .icon-line,.nav-toggle .icon-line:before,.nav-toggle .icon-line:after{height:0;border:1px rgba(0,0,0,0) solid}.nav-toggle.is-active .icon-line{border:0 none}.nav-toggle.is-active .icon-line:after{bottom:-1px}}
