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;
}

header,footer,nav,section,aside,main,article,figure,figcaption{display:block}body,div,h1,h2,h3,h4,h5,h6,p,blockquote,pre,code,ol,ul,li,dl,dt,dd,figure,table,th,td,form,fieldset,legend,input,textarea{margin:0;padding:0}table{border-spacing:0;border-collapse:collapse}caption,th,td{text-align:left;text-align:start;vertical-align:top}abbr,acronym{font-variant:normal;border-bottom:1px dotted #666;cursor:help}blockquote,q{quotes:none}fieldset,img,iframe{border:0}ul{list-style-type:none}sup{vertical-align:text-top}sub{vertical-align:text-bottom}del{text-decoration:line-through}ins{text-decoration:none}body{font:12px/1 "Lucida Grande","Lucida Sans Unicode",Verdana,sans-serif;color:#000}input,button,textarea,select{font-family:inherit;font-size:99%;font-weight:inherit}pre,code{font-family:Monaco,monospace}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:400}h1{font-size:1.8333em}h2{font-size:1.6667em}h3{font-size:1.5em}h4{font-size:1.3333em}table{font-size:inherit}caption,th{font-weight:700}a{color:#00f}h1,h2,h3,h4,h5,h6{margin-top:1em}h1,h2,h3,h4,h5,h6,p,pre,blockquote,table,ol,ul,form{margin-bottom:12px}
/* NUUNNAV CSS*/

.nuunnavbutton {display: none; width: 27px; float: right; background: initial; padding: 5px 0px; height: 25px; margin-left: 15px; box-sizing: border-box; cursor: pointer; position: relative; z-index: 2500; top: 11px; right: 0;}
.nuunnavbutton .navline {height: 2px; width: 27px; box-sizing: border-box; margin-bottom: 3px; border-radius: 5px; background: #3C604D; opacity: 1; transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;}
.nuunnavbutton .navline:last-of-type {margin-bottom: 0;}
.nuunnavbutton .navline.mid {opacity: 1;}
.nuunnavbutton .navline.top {transform: rotate(0); transform-origin: top right;}
.nuunnavbutton .navline.bot {transform: rotate(0); transform-origin: bottom right;}

.nuunnavbutton.crossed .navline {width: 27px;}
.nuunnavbutton.crossed .navline.top {transform: rotate(-45deg) translateY(-8px) translateX(-4px);}
.nuunnavbutton.crossed .navline.mid {opacity: 0;}
.nuunnavbutton.crossed .navline.bot {margin-left: 0; width: 100%; transform: rotate(-135deg) translateY(-7px) translateX(28px);}

#nuunnav {display: none; padding-top: 0px; padding-bottom: 50px; position: fixed; overflow-y: auto; top: -30px; width: 100%; max-width: 500px; background: #fff; height: 100vh; z-index: 2000; box-sizing: border-box; transition:right 0.4s ease, box-shadow 0.3s ease;}
#nuunnav.open {right: 0 !important; box-shadow: 0px 0px 20px rgba(0,0,0,0.1);}
/*#nuunnav .inside {padding: 0 5% 30px 5%;}*/

body #header #nuunnav .mod_navigation {display: block; float: none; margin-top: 30px; margin-bottom: 0px; display: inline-block; width: 100%; position: relative; overflow: hidden;}
body #header #nuunnav li a {font-family: 'TeXGyreHerosBold'; color: #fff; text-decoration: none; padding-bottom: 20px; background-position: bottom left; transition: background 0.3s ease;}
body #header #nuunnav ul.level_1 > li > a.active, body #header #nuunnav ul.level_1 > li > a.trail, body #header #nuunnav ul.level_1 > li > a:hover {background: url(../../files/data/graphics/nav-bg-line.svg) no-repeat; background-position: bottom left;}
body #header #nuunnav li a.active {color: #BB4242; font-family: 'TeXGyreHerosBold'; text-decoration: none;}
body #header #nuunnav li a:hover {color: #BB4242;}
body #header #nuunnav ul {list-style: none; padding-left: 0; margin-bottom: 0; display: block; width: 100%;}
body #header #nuunnav ul.level_1 {margin: 0;}
body #header #nuunnav ul.level_1 > li {display: inline-block; width: 100%;}
body #header #nuunnav ul.level_1 > li > a {display: inline-block; font-size: 2.4rem; float: left; clear: left; margin: 0; padding: 10px 0 10px 0px; width: calc(100% - 42px);}
body #header #nuunnav ul.level_1 > li.submenu > a {margin-right: 0px; float: left; clear: left;}
body #header #nuunnav ul li.submenu .subtoggler {width: 40px; height: 40px; position: relative; top:3px; display: flex; align-items: center; justify-content: center; float: left; cursor: pointer;}
body #header #nuunnav ul.level_2 li.submenu .subtoggler {height: 34px;}
body #header #nuunnav ul li.submenu .subtoggler .subtoggline1 {opacity: 1; width: 18px; height: 2px; background: #4A5054;}
body #header #nuunnav ul li.submenu .subtoggler .subtoggline2 {opacity: 1; width: 18px; height: 2px; background: #4A5054; position: absolute; transform: rotate(90deg); transition: transform 0.3s ease;}
body #header #nuunnav ul li.submenu .subtoggler.down .subtoggline2 {transform: rotate(0deg);}

body #header #nuunnav ul.level_2 {display: none; margin:0;}
body #header #nuunnav ul.level_2 > li > a {font-family: 'TeXGyreHerosBold'; display: inline-block; font-size: 2.4rem; float: left; clear: left; padding: 5px 0 10px 23px; background: url(../../files/data/graphics/nuunnav-subline.svg) top 19px left no-repeat;}
body #header #nuunnav ul.level_2 li a.active {color: #BB4242; font-family: 'TeXGyreHerosBold'; text-decoration: underline;}
body #header #nuunnav ul.level_2 li a:hover {color: #BB4242;}
body #header #nuunnav ul.level_2 li.last {padding-bottom: 15px; display: inline-block; width: 100%;}

body #header #nuunnav ul.level_3 {display: none; visibility: visible;}
body #header #nuunnav ul.level_3 > li > a {font-family: 'TeXGyreHerosBold'; display: inline-block; text-transform: none; font-size: 2rem; float: left; clear: left; padding: 5px 0 5px 20px;}
body #header #nuunnav ul.level_3 li a.active {color: #BB4242; font-family: 'TeXGyreHerosBold'; text-decoration: underline;}
body #header #nuunnav ul.level_3 li a:hover {color: #BB4242;}

body #header #nuunnav ul.level_4 {display: none;}
body #header #nuunnav ul.level_4 > li > a {display: inline-block; text-transform: none; font-size: 1.5rem; float: left; clear: left; padding: 5px 0 5px 15px;}
body #header #nuunnav ul.level_4 li a.active {color: #BB4242; font-family: 'TeXGyreHerosBold'; text-decoration: underline;}
body #header #nuunnav ul.level_4 li a:hover {color: #BB4242;}

@media screen and (max-width: 1100px) {
	.nuunnavbutton {display: inline-block;}
	#nuunnav {display: block;}
}
/*************************************************************/
/*   Design:  mybiogas ag					     	 	 	 */
/*   File:    screen.css					                 */
/*-----------------------------------------------------------*/
/*   Autor:   Thomas Dürig, www.nuun.ch 	                 */
/*   Datum:   Februar 2026					                 */
/*   Site: 	  www.mybiogas.ch             					 */
/*************************************************************/
/*  LAYOUT													 */
/*************************************************************/

/*FARBEN*/
/*	

*/

/*  GLOBAL													 */
/*************************************************************/

html, body {position: relative; height: 100%; width:100%; font: 62.5% "TeXGyreHerosRegular", Arial, Verdana, Helvetica, sans-serif; letter-spacing:0em; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: antialiased; font-smoothing: antialiased;}
body {font-size:25px; font-size:2.5rem; line-height: 4rem; color: #1A1919; background-color: #fff;}

.invisible {display: none !important;}

.schmal50 {width: 50% !important; margin: 0 auto;}
.schmal75 {width: 75% !important; margin: 0 auto;}
.max60 img {max-width: 60%;}

.zentriert {text-align: center;}

strong {font-family: 'TeXGyreHerosBold'; font-weight: normal;}

.row {--grid__gutter: 2.575rem; grid-gap: 0 var(--grid__gutter);}

sub {vertical-align: sub; line-height: normal;}

/*VORSCHAUSEITE*/
body.vorschauseite .mod_article.vollbild .content-text {position: absolute; top: 50%; left: calc((100% - 1410px) / 2); transform: translateY(-50%); padding: 0; z-index: 2;}
body.vorschauseite #header .navigation {display: none;}

/*  HEADER / NAVIGATION									     */
/*************************************************************/
#header {position: fixed; top: 30px; left: 50%; transform: translateX(-50%); width: 90%; padding: 0 5%; z-index: 100; max-width: 1410px;}
#header > .inside {z-index: 2500; height: 80px; position: relative; padding: 0; border-radius: 80px; transition: padding 0.3s ease, background 0.3s ease;}
#header .logo {display: inline-block; width: 270px; height: auto; margin-top: 9px; transition: width 0.3s ease, margin-top 0.3s ease;}
#header .logo .shift {transition: fill 0.3s ease;}
#header .content-image {display: inline-block; float: right; margin-top: 25px; transition: margin-top 0.3s ease;}
#header .navigation {display: inline-block; float: right; margin-right: 20px; margin-top: 17px; transition: margin-top 0.3s ease;}
#header .navigation ul {margin: 0;}
#header .navigation ul li {display: inline; margin: 0 0 0 20px;}
#header .navigation ul li a {font-size: 2rem; line-height: 2.8rem; font-family: 'TeXGyreHerosBold'; color: #fff; text-decoration: none; transition: color 0.3s ease;}
#header .navigation ul li a:hover, #header .navigation ul li a.active, #header .navigation ul li a.trail {color: #BB4242;}

#header.up > .inside {background: rgba(255,255,255,0.8); padding: 0 30px; backdrop-filter: blur(6px);}
#header.up .logo {width: 175px; margin-top: 20px;}
#header.up .logo .shift {fill: #3C604D;}
#header.up .navigation ul li a {color: #3C604D;}
#header.up .navigation ul li a:hover, #header.up .navigation ul li a.active, #header.up .navigation ul li a.trail {color: #BB4242;}

.headeralwaysup #header > .inside {background: rgba(255,255,255,0.8); padding: 0 30px; backdrop-filter: blur(6px);}
.headeralwaysup #header .logo {width: 175px; margin-top: 20px;}
.headeralwaysup #header .logo .shift {fill: #3C604D;}
.headeralwaysup #header .navigation ul li a {color: #3C604D;}
.headeralwaysup #header .navigation ul li a:hover, .headeralwaysup #header .navigation ul li a.active, .headeralwaysup #header .navigation ul li a.trail {color: #BB4242;}

#header #nuunnav {padding-bottom: 0;}
#header #nuunnav .navigation {margin-right: 0;}
#nuunnav .navtop {background: #3C604D url(../../files/data/graphics/nuunnav-flame.svg) bottom right no-repeat; padding-bottom: 60px;}
#nuunnav .navtop .inside {padding: 80px 5% 0px 5%;}
#nuunnav .navbot {background: #fff;}
#nuunnav .navbot .inside {padding: 30px 5%;}
body #wrapper #header #nuunnav a.kontakt {margin-top: 10px; display: inline-block; width: auto; font-size: 2rem; line-height: 2.8rem; color: #3C604D; font-family: 'TeXGyreHerosBold'; text-decoration: none; padding: 7px 60px 9px 30px; background: #fff url(../../files/data/graphics/arrow-right-green.svg) center right 20px no-repeat; border-radius: 60px; transition: background 0.3s ease;}
body #wrapper #header #nuunnav a.kontakt:hover {background: #fff url(../../files/data/graphics/arrow-right-green.svg) center right 12px no-repeat;}
body #wrapper #header #nuunnav .content-text {color: #3C604D; font-size: 1.8rem; line-height: 2.2rem;}
body #wrapper #header #nuunnav .content-hyperlink a {font-size: 1.8rem; line-height: 2rem; padding: 7px 40px 9px 15px; background: #3C604D url(../../files/data/graphics/arrow-right-white.svg) center right 7px no-repeat; background-size: 22px;}

/*  SLIDER                                                   */
/*************************************************************/
.mod_article.vollbild .homeslider {}
.mod_article.vollbild h1, .mod_article.vollbild h2, .mod_article.vollbild h3, .mod_article.vollbild p {color: #fff;}
.mod_article.vollbild .homeslider .swiper-button-next, .mod_article.vollbild .homeslider .swiper-button-prev, .mod_article.vollbild .homeslider .swiper-pagination {display: none;}
.mod_article.vollbild .homeslider .content-text {position: relative; top: 0; left: initial; transform: none; width: auto; padding: 0; opacity: 0; transform: translate3d(0, 15px, 0); transition: all 0.8s ease; transition-delay: 1s;}
.mod_article.vollbild .homeslider .swiper-slide-active .content-text {opacity: 1; transform: none;}
.mod_article.vollbild .homeslider .content-hyperlink {top: 40px; opacity: 0; transform: translate3d(0, 15px, 0); transition: all 0.8s ease; transition-delay: 1.4s;}
.mod_article.vollbild .homeslider .content-hyperlink.weiss a {color: #3C604D; background: #fff url(../../files/data/graphics/arrow-right-green.svg) center right 20px no-repeat; transition: background 0.3s ease;}
.mod_article.vollbild .homeslider .content-hyperlink.weiss a:hover {background: #fff url(../../files/data/graphics/arrow-right-green.svg) center right 12px no-repeat;}
.mod_article.vollbild .homeslider .swiper-slide-active .content-hyperlink {opacity: 1; transform: none;}
body .mod_article.vollbild .homeslider .swiper-slide-next .content-text, body .mod_article.vollbild .homeslider .swiper-slide-prev .content-text {transition-delay: 0.2s;}
body .mod_article.vollbild .homeslider .swiper-slide-next .content-hyperlink, body .mod_article.vollbild .homeslider .swiper-slide-prev .content-hyperlink {transition-delay: 0s;}

/*Parallax*/
body .mod_article.parallaxarticle {background: #3C604D;}
body .mod_article.parallaxarticle .inside {width: 100%; height: 50vw; position: relative; overflow: hidden;}

.parallaxarticle .parallax1 {position: absolute; top: 30%; max-width: 820px; left: calc((100% - 1410px) / 2); z-index: 6;}
.parallaxarticle .parallax2 {position: absolute; bottom: -36vw; left: 0; width: 100%; height: auto; z-index: 5;}
.parallaxarticle .parallax3 {position: absolute; bottom: 2vw; right: -10%; width: 40%; height: auto; z-index: 4;}
.parallaxarticle .parallax4 {position: absolute; bottom: 4vw; right: 40%; width: 10%; height: auto; z-index: 3;}
.parallaxarticle .parallax5 {position: absolute; bottom: 0vw; left: 0; width: 100%; height: auto; z-index: 2;}
.parallaxarticle .parallax6 {position: absolute; top: 0vw; left: 0; width: 100%; height: auto; z-index: 1;}

/*  INHALTSELEMENTE                                          */
/*************************************************************/
.mod_article .inside {position: relative; width: 90%; padding: 80px 5%; max-width: 1410px; margin: 0 auto;}
.mod_article.grau {background: #F7F8F9;}
.mod_article.gruen {background: #3C604D;}
.mod_article.gruen h1, .mod_article.gruen h2, .mod_article.gruen h3, .mod_article.gruen h4, .mod_article.gruen h5, .mod_article.gruen p {color: #fff;}
.mod_article.gruen .content-hyperlink a {color: #3C604D; background: #fff url(../../files/data/graphics/arrow-right-green.svg) center right 20px no-repeat; transition: background 0.3s ease;}
.mod_article.gruen .content-hyperlink a:hover {background: #fff url(../../files/data/graphics/arrow-right-green.svg) center right 12px no-repeat;}
.mod_article.hellgruen {background: #F4FCF8;}

/*Artikel vollbild*/
.mod_article.vollbild {max-width: initial; position: relative;}
.mod_article.vollbild .inside {width: 100%; height: auto; padding: 0; max-width: initial; position: relative;}
.mod_article.vollbild .inside .content-image, .mod_article.vollbild .inside .content-player {width: 100%; height: auto; position: relative; overflow: hidden;}
.mod_article.vollbild .inside .content-image figure {line-height: 0;}
.mod_article.vollbild .inside .content-image img, .mod_article.vollbild .inside .content-player video {width: 100%; height: 100%; object-fit: cover;}
.mod_article.vollbild .content-text {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); max-width: 1410px; width: 90%; padding: 10px 5%;}
.mod_article.vollbild .content-text a {display: inline-block; font-size: 2rem; line-height: 2.8rem; color: #fff; font-family: 'TeXGyreHerosBold'; text-decoration: none; padding: 13px 60px 15px 30px; background: #3C604D url(../../files/data/graphics/arrow-right-white.svg) center right 20px no-repeat; border-radius: 60px; transition: background 0.3s ease;}
.mod_article.vollbild .content-text a:hover {background: #3C604D url(../../files/data/graphics/arrow-right-white.svg) center right 12px no-repeat;}

.mod_article.vollbild.topschmal:after {content: ""; display: block; width: 12vw; height: 12vw; position: absolute; right: 10%; bottom: 0; background: url(../../files/data/graphics/flamme-top-bild.svg) center bottom no-repeat; background-size: contain;}
.mod_article.vollbild img.inhaltvollbild {min-height: 350px;}

.mod_article.halbvollbild .inside {width: 100%; max-width: initial; padding-top: 0px; padding-bottom: 0px; padding-left: 0; padding-right: 0; position: relative;}
.mod_article.halbvollbild figure {line-height: 0;}
.mod_article.halbvollbild .content-image {width: 100%; height: auto;}
.mod_article.halbvollbild .content-image img {width: 100%; height: auto;}
.mod_article.halbvollbild .inside video {object-fit: cover; width: 100%; height: auto;}
.mod_article.halbvollbild.flex .ce_columns {display: flex; align-items: center;}
.mod_article.halbvollbild {--grid__gutter: 0rem;}
.mod_article.halbvollbild .row {--grid__gutter: 0rem;}
.mod_article.halbvollbild .content-text {width: 60%; padding: 0 20%;}
.mod_article.halbvollbild .content-hyperlink {width: 60%; padding: 0 20%; margin-bottom: 40px;}

.mod_article.leistungengrafik .leistungsvgmobile {display: none;}
.mod_article.leistungengrafik svg {width: 100%; height: auto; overflow: visible;}
.mod_article.leistungengrafik .svghover {transition: transform 0.3s ease; transform-origin: center; transform-box: fill-box;}
.mod_article.leistungengrafik .svghover .hoverrect {transition: fill 0.3s ease;}
.mod_article.leistungengrafik .svghover:hover {transform:scale(1.05);}
.mod_article.leistungengrafik .svghover:hover .hoverrect {fill:#5A9174;}

.mod_article.triangleweiss .inside:before {content: ""; display: block; width: 91px; height: 45px; background: url(../../files/data/graphics/triangle-weiss.svg) center top no-repeat; position: absolute; top: 0; left: 50%; transform: translateX(-50%);}
.mod_article.trianglegruen .inside:before {content: ""; display: block; width: 91px; height: 45px; background: url(../../files/data/graphics/triangle-gruen.svg) center top no-repeat; position: absolute; top: 0; left: 50%; transform: translateX(-50%);}
.mod_article.trianglehellgruen .inside:before {content: ""; display: block; width: 91px; height: 45px; background: url(../../files/data/graphics/triangle-hellgruen.svg) center top no-repeat; position: absolute; top: 0; left: 50%; transform: translateX(-50%);}
.mod_article.trianglehellgruendouble .inside:before {content: ""; display: block; width: 91px; height: 88px; background: url(../../files/data/graphics/triangle-hellgruen-double.svg) center top no-repeat; position: absolute; top: 0; left: 50%; transform: translateX(-50%);}
.mod_article.trianglehellgruendouble .inside:after {content: ""; display: block; width: 91px; height: 88px; background: url(../../files/data/graphics/triangle-hellgruen-double.svg) center bottom no-repeat; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);}
.mod_article.triangleweiss .inside, .mod_article.trianglegruen .inside, .mod_article.trianglehellgruen .inside, .mod_article.trianglehellgruendouble .inside {padding: 130px 5%;}

.nummer h2 {margin: 0; font-family: 'TeXGyreHerosBold'; font-size: 24rem; line-height: 18rem;}

h1, h2 {font-size: 8rem; line-height: 8rem; font-family: 'UnnaRegular'; color: #3C604D; margin-top: 20px; margin-bottom: 20px;}
h3 {font-size: 3rem; line-height: 3.5rem; font-family: 'TeXGyreHerosBold'; color: #3C604D; margin-top: 20px;}

/*Text*/
figure img {max-width: 100%; height: auto;}

#container .content-text {margin-bottom: 10px;}
#container .content-text.media--left figure {display: inline-block; width: 42%; margin-right: 3%; vertical-align: top;}
#container .content-text.media--left .rte {display: inline-block; width: 54%; vertical-align: top;}
#container .content-text.media--right:after {content: "."; display: block; height: 0; clear: both; visibility: hidden;}
#container .content-text.media--right figure {display: inline-block; float: right; width: 42%; margin-left: 3%; vertical-align: top;}
#container .content-text.media--right .rte {display: inline-block; width: 54%; vertical-align: top;}
.content-text p a {color: #3C604D; text-decoration: none;}

.row.textboxen > div {border: 1px solid #C1DACD; border-radius: 2px; padding: 0 30px 10px 30px; margin-bottom: 20px;}
.row.textboxen.textboxenrot > div {border-color: #D1AAAA;}
.content-text.textrot h1, .content-text.textrot h2, .content-text.textrot h3, .content-text.textrot p {color: #BB4242;}

/*Gallery*/
.content-gallery.content-gallery--cols-2 ul li {width: 48.5%; margin-right: 3%; margin-bottom: 20px; display: inline-block; float: left; line-height: 1;}
.content-gallery.content-gallery--cols-3 ul li {width: 31.3%; margin-right: 3%; margin-bottom: 20px; display: inline-block; float: left; line-height: 1;}
.content-gallery.content-gallery--cols-4 ul li {width: 22.75%; margin-right: 3%; margin-bottom: 20px; display: inline-block; float: left; line-height: 1;}
.content-gallery.content-gallery--cols-2 ul li:nth-of-type(2n) {margin-right: 0;}
.content-gallery.content-gallery--cols-3 ul li:nth-of-type(3n) {margin-right: 0;}
.content-gallery.content-gallery--cols-4 ul li:nth-of-type(4n) {margin-right: 0;}
body .content-gallery.masonry ul li {width: calc(25% - 15px); margin-right: 0;}
.content-gallery ul li figure {width: 100%; overflow: hidden; line-height: 0;}
.content-gallery ul li figure img {width: 100%; height: auto; border-radius: 4px; -webkit-transition: all .5s ease; transition: all .5s ease;}
.content-gallery ul li figure:hover img {-webkit-transform: scale(1.1); transform: scale(1.1);}
#colorbox #cboxTitle {display: none !important;}
#colorbox #cboxCurrent {font-size: 1.5rem;}
.masonry .image_container img {border:10px solid #fff;}

/*Hyperlink*/
.content-hyperlink {margin: 20px 0;}
.content-hyperlink.inline {display: inline-block; margin-right: 20px;}
.content-hyperlink a {display: inline-block; font-size: 2rem; line-height: 2.8rem; color: #fff; font-family: 'TeXGyreHerosBold'; text-decoration: none; padding: 13px 60px 15px 30px; background: #3C604D url(../../files/data/graphics/arrow-right-white.svg) center right 20px no-repeat; border-radius: 60px; transition: background 0.3s ease;}
.content-hyperlink a:hover {background: #3C604D url(../../files/data/graphics/arrow-right-white.svg) center right 12px no-repeat;}

/*List*/
#main .content-text ul {display: table; margin-bottom: 25px;}

#main .content-text ul li {vertical-align: middle; list-style: none; padding-left: 20px; background: url(../../files/data/graphics/favicon.svg) no-repeat top 17px left 4px; background-size: 6px;}

#main .content-text ol {
    counter-reset:li; /* Initiate a counter */
    margin-left:0; /* Remove the default left margin */
    padding-left:0; /* Remove the default left padding */
}
#main .content-text ol > li {
    position:relative; /* Create a positioning context */
    margin:0 0 0 20px; /* Give each list item a left margin to make room for the numbers */
    list-style:none; /* Disable the normal item numbering */
}
#main .content-text ol > li:before {
    content:counter(li)"."; /* Use the counter as content */
    counter-increment:li; /* Increment the counter by 1 */
    /* Position and style the number */
    position:absolute;
    left: -18px;
    top: 1px;
    font-size: 1.8rem;
    color: #0088C9;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
}

/*Downloads*/
.content-download.sc.last, .content-downloads.sc.last {padding-right: 0;}
.content-download, .content-downloads {position:relative; width:100%; margin:0; padding:0;}
.content-download ul, .content-downloads ul {position:relative; float:left; width:100%; margin:0; padding:0 0 0 0;}
.content-download ul li, .content-downloads ul li {position:relative; width:100%; line-height:21px; padding:0 0 0 0; margin:0 0 5px 0; background:#fff;}

body #container .content-downloads a, body #container .content-download a, body #container .enclosure a {
    position:relative;
    text-decoration: underline;
    text-decoration-color: #DBDBDB;
    color: #222222;
    display:block;
    padding:8px 30px 8px 40px;
    margin:0 0 0 0;
    transition: color 0.5s ease, text-decoration-color 0.3s ease;
    }   

body #container .enclosure a:hover,
body #container .content-downloads a:hover, 
body #container .content-downloads a:active, 
body #container .content-download a:hover, 
body #container .content-download a:active {color: #D8232A; text-decoration-color: #D8232A;}

.download-element a {background: url(../../files/data/graphics/icon-download.svg) top left no-repeat;}
.download-element.ext-pdf a {background: url(../../files/data/graphics/icon-pdf.svg) top left no-repeat;}
.download-element.ext-doc a {background: url(../../files/data/graphics/icon-doc.svg) top left no-repeat;}
.download-element.ext-docx a {background: url(../../files/data/graphics/icon-doc.svg) top left no-repeat;}
.download-element.ext-xls a {background: url(../../files/data/graphics/icon-xls.svg) top left no-repeat;}
.download-element.ext-xlsx a {background: url(../../files/data/graphics/icon-xls.svg) top left no-repeat;}
.download-element.ext-jpg a {background: url(../../files/data/graphics/icon-jpg.svg) top left no-repeat;}
.download-element.ext-jpeg a {background: url(../../files/data/graphics/icon-jpg.svg) top left no-repeat;}
.download-element.ext-png a {background: url(../../files/data/graphics/icon-png.svg) top left no-repeat;}
.download-element.ext-zip a {background: url(../../files/data/graphics/icon-zip.svg) top left no-repeat;}

/*Form*/
.formbody input {-webkit-appearance:none;} 
.formbody button {-webkit-appearance:none;}

.formbody .widget {position: relative; font-size: 2.2rem;}
.formbody label {position: absolute; width: calc(100% - 50px); line-height: 4rem; top: 14px; left: 25px; color: #8A8A8A; transition: font-size 0.3s ease, top 0.3s ease;}
.formbody .widget label.focused {top: 3px; font-size: 12px; outline: none; color: #4A5054;}
.formbody .widget-select label {top: 3px; font-size: 12px; outline: none; color: #4A5054; display: inline-block; width: auto;}
.formbody .widget-upload label {top: 3px; font-size: 12px; outline: none; color: #4A5054;}
.formbody input {box-sizing: border-box; width: 100%; padding:27px 25px 10px 25px; border-radius: 5px; margin-bottom: 25px; border:1px solid #C1DACD; background-color: #F4FCF8;}
.formbody input:focus {outline: none; background: #ffffff;}
.formbody textarea {box-sizing: border-box; width: 100%; padding:27px 25px 10px 25px; border-radius: 5px; border: 1px solid #C1DACD; margin-bottom: 25px; background-color: #F4FCF8;}
.formbody textarea:focus {outline: none; background: #ffffff;}
/*.formbody .submit {background-color:#702181; color:#fff; margin-top: 7px; padding: 5px 0; margin-left: 0; width: 200px;}*/
/*.formbody .submit {border: none; float: right; cursor: pointer; text-decoration: none; display: inline-block; color: #fff; padding: 15px 30px 14px 30px; border-radius: 5px; background: #305EA6; background-position: center left 5px; transition: padding 0.3s ease, background 0.3s ease, color 0.3s ease;}*/
.mod_article.dunkel .formbody .submit {cursor: pointer; float: right; display: inline-block; font-size: 1.8rem; line-height: 3.6rem; color: #fff; font-family: 'RedditSansBold'; text-decoration: none; padding: 3px 40px 2px 23px; background: url(../../files/files/data/graphics/arrow-rechts-klein-weiss.svg) center right 17px no-repeat; border: 2px solid #fff; border-radius: 8px; transition: padding 0.3s ease, background 0.3s ease;}
.mod_article.dunkel .formbody .submit:hover {padding: 3px 30px 2px 33px; background: url(../../files/files/data/graphics/arrow-rechts-klein-weiss.svg) center right 12px no-repeat;}
/*.formbody .submit {cursor: pointer; float: right; display: inline-block; font-size: 1.8rem; line-height: 3.6rem; color: #fff; font-family: 'RedditSansBold'; text-decoration: none; padding: 3px 40px 2px 23px; background: #789620 url(../../files/files/data/graphics/arrow-rechts-klein-weiss.svg) center right 17px no-repeat; border: 2px solid #789620; border-radius: 8px; transition: padding 0.3s ease, background 0.3s ease;}
.formbody .submit:hover {padding: 3px 30px 2px 33px; background: #789620 url(../../files/files/data/graphics/arrow-rechts-klein-weiss.svg) center right 12px no-repeat;}*/
.formbody .submit {border:none; cursor: pointer; float: right; display: inline-block; font-size: 2rem; line-height: 2.8rem; color: #fff; font-family: 'TeXGyreHerosBold'; text-decoration: none; padding: 13px 60px 15px 30px; background: #3C604D url(../../files/data/graphics/arrow-right-white.svg) center right 20px no-repeat; border-radius: 60px; transition: background 0.3s ease;}
.formbody .submit:hover {background: #3C604D url(../../files/data/graphics/arrow-right-white.svg) center right 12px no-repeat;}

.formbody select {color: #4A5054; box-sizing: border-box; width: 100%; height: 64px; -webkit-appearance:none; padding:16px 25px 14px 21px; border-radius: 5px; margin-bottom: 25px; border:1px solid #C1DACD; background-color: #F4FCF8; background-image: url(../../files/data/graphics/selectarrow-down.svg); background-position: center right 15px; background-repeat: no-repeat;}
.formbody select:focus {outline: none; background: #ffffff;}
.formbody fieldset {margin-bottom: 10px;}
/*.formbody fieldset legend {font-size: 1.6rem; margin-bottom: 5px;} */
.formbody fieldset span {width:100%; float: left;}
.formbody fieldset span.mandatory {display: inline; width: auto; float: none;}
.formbody fieldset span input {float: left; width: 5%; height: 26px;}
.formbody fieldset span label {padding-top: 0; width: 95%;}
.formbody .widget-captcha {margin-bottom: 40px;}
.formbody .widget-captcha input {margin-bottom: 5px;}
.formbody .widget-captcha span {width: 100%; float: left;}
.formbody .widget-captcha label span.mandatory {width: auto; float: none;}
.formbody .widget-checkbox input {-webkit-appearance:checkbox;}
.formbody .widget-checkbox legend span {width: auto; float: none;}
.formbody .widget-radio input {-webkit-appearance:radio;}
#container .ce_form .ccanmich {visibility: hidden; height: 0px;}

/*radio und checkbox templates von scayla*/
.formbody .checkbox_container {margin: 0 0 7px 0;}
.formbody .checkbox_container a {color: #000; text-decoration: underline;}
/*.formbody .checkbox_container input {position: absolute;opacity: 0;cursor: pointer;height: 0;width: 0; background: #dedede;}*/
.formbody .checkbox_container input {display: inline-block; float: left; margin-top: 8px; margin-bottom: 12px; width: 40px; margin-right: 10px; accent-color: #3C604D;}
.formbody .checkbox_container label {top: initial; left: initial;color: #4A5054; text-align: left; cursor: pointer; width: calc(100% - 55px); position: relative; margin-bottom: 10px; display: inline-block;}
.mod_article.dunkel .formbody .checkbox_container label {color: #fff;}
/*.formbody .checkbox_container span {width: 90px; margin-right: 15px;}*/
.formbody .checkbox_container span.lname {width: auto; padding-top: 5px;}
.formbody .checkbox_container .checkmark {cursor: pointer; position: relative; height: 38px; width: 38px; background-color: #fff; border:1px solid #E9EBF0;}
.formbody .checkbox_container:hover input ~ .checkmark {background-color: #fff;}
.formbody .checkbox_container input:checked ~ .checkmark {/*background-color: #EE6930;*/}
.formbody .checkbox_container .checkmark:after {content: ""; position: absolute; display: none;}
.formbody .checkbox_container input:checked ~ .checkmark:after {display: block;}
.formbody .checkbox_container .checkmark:after {top: 0px; left: 0px; width: 38px; height: 38px; background: url(../../files/files/files/files/web/data/graphics/checkmark.svg) center no-repeat; background-size: 23px;}

.formbody .radio_container {margin: 0 0 7px 0;}
.formbody .radio_container a {color: #000; text-decoration: underline;}
/*.formbody .radio_container input {position: absolute;opacity: 0;cursor: pointer;height: 0;width: 0; background: #dedede;}*/
.formbody .radio_container input {display: inline-block; float: left; margin-top: 8px; margin-bottom: 12px; width: 40px; margin-right: 10px; accent-color: #3C604D;}
.formbody .radio_container label {top: initial; left: initial;color: #4A5054; text-align: left; cursor: pointer; width: calc(100% - 55px); position: relative; margin-bottom: 10px; display: inline-block;}
.mod_article.dunkel .formbody .radio_container label {color: #fff;}
/*.formbody .radio_container span {width: 90px; margin-right: 15px;}*/
.formbody .radio_container span.lname {width: auto; padding-top: 5px;}
.formbody .radio_container .checkmark {cursor: pointer; position: relative; height: 38px; width: 38px; background-color: #fff; border:1px solid #E9EBF0;}
.formbody .radio_container:hover input ~ .checkmark {background-color: #fff;}
.formbody .radio_container input:checked ~ .checkmark {/*background-color: #EE6930;*/}
.formbody .radio_container .checkmark:after {content: ""; position: absolute; display: none;}
.formbody .radio_container input:checked ~ .checkmark:after {display: block;}
.formbody .radio_container .checkmark:after {top: 0px; left: 0px; width: 38px; height: 38px; background: url(../../files/files/files/files/web/data/graphics/checkmark.svg) center no-repeat; background-size: 23px;}

/*Columns*/
#container .rs-column.-large-col-2-1 {width: 48.5%; margin-right: 3%;}
#container .rs-column.-large-col-2-1.-large-last {margin-right: 0;}
#container .rs-column.-large-col-3-1 {width: 31.3%; margin-right: 3%;}
#container .rs-column.-large-col-3-1.-large-last {margin-right: 0;}
#container .rs-column.-large-col-4-1 {width: 22.75%; margin-right: 3%; margin-top: 0;}
#container .rs-column.-large-col-4-1.-large-last {margin-right: 0;}

/*Player*/
#container .content-player {clear: both;}
#container .content-player embed {max-width: 100%;}
#container .content-player video {max-width: 100%;}
#container .content-player iframe {max-width: 100%;}

#container .content-player .me-plugin {max-width: 100%;}
#container .content-player .mejs-overlay {max-width: 100% !important;}

/*YouTube*/
#container .content-youtube {clear: both;}
#container .content-youtube embed {max-width: 100%;}
#container .content-youtube video {max-width: 100%;}
#container .content-youtube iframe {max-width: 100%;}

#container .content-youtube .me-plugin {max-width: 100%;}
#container .content-youtube .mejs-overlay {max-width: 100% !important;}

/*Google Map*/
.dlh_googlemap {width: 100% !important;}
#map {width: 100%; height: 30vw; min-height: 300px;}

/*Counter*/
.content-text.counter {box-sizing: border-box; border: 1px solid #C1DACD; padding: 35px 20px; border-radius: 2px;}
.content-text.counter h3 {font-size: 9rem; line-height: 9rem; font-family: 'TeXGyreHerosBold'; color: #3C604D; margin-top: 30px;}
.content-text.counter p {font-size: 3rem; line-height: 4.3rem; font-family: 'TeXGyreHerosBold'; color: #1A1919;}

/*Team*/
.content-rsce-team {border: 1px solid #C1DACD; margin-top: 200px;}
.content-rsce-team .bildcontainer {text-align: center; line-height: 0; margin-top: -170px;}
.content-rsce-team .bildcontainer img {width: 340px; max-width: 90%;}
.content-rsce-team .textcontainer {padding: 0 40px 30px 40px;}
.content-rsce-team .textcontainer h3 {text-align: center;}
.content-rsce-team .textcontainer .funktion {margin-bottom: 30px;}
.content-rsce-team .textcontainer a {color: #1A1919; text-decoration: none;}
.content-rsce-team .textcontainer .email p {margin-bottom: 0;}
.content-rsce-team .textcontainer .zitat {margin-top: 30px;}

/*Scrollartikel*/
.mod_article.scrollartikel {background: #3C604D;}
.mod_article.scrollartikel .inside {width: 100%; padding: 0; max-width: initial;}
.mod_article.scrollartikel .scrolllinks {display: inline-block; width: calc(1410px / 100 * 32); padding-left: calc((100% - 1410px) / 2); position: relative; float: left;}
.mod_article.scrollartikel .scrolllinks .rte {position: absolute; top: 30px; right: 0px; box-sizing: border-box; padding-right: 30px; width: calc(1410px / 100 * 32);}
.mod_article.scrollartikel .scrolllinks h2, .mod_article.scrollartikel .scrolllinks h3 {color: #fff;}
.mod_article.scrollartikel .scrollrechts {display: inline-block; width: calc(1410px / 100 * 63); padding-left: calc(1410px / 100 * 5); padding-right: calc((100% - 1410px) / 2); background: #fff; padding-top: 120px; padding-bottom: 80px;}

/*Referenz*/
.content-rsce-referenz {margin-bottom: 30px;}
.content-rsce-referenz .bildcontainer {position: relative;}
.content-rsce-referenz .bildcontainer .image_container {line-height: 0;}
.content-rsce-referenz .bildcontainer .image_container img {width: 100%;}
.content-rsce-referenz .bildcontainer .galink {display: none;}
.content-rsce-referenz .bildcontainer .galink:first-of-type {position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: block; z-index: 2;}
/*.content-rsce-referenz .bildcontainer .content-gallery ul {margin-bottom: 0;}
.content-rsce-referenz .bildcontainer .content-gallery ul li {display: none;}
.content-rsce-referenz .bildcontainer .content-gallery ul li figure a img {display: none;}
.content-rsce-referenz .bildcontainer .content-gallery ul li:first-of-type {display: block; float: none; width: 100%; margin: 0; line-height: 0;}
.content-rsce-referenz .bildcontainer .content-gallery ul li:first-of-type figure a {position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: block; z-index: 2;}*/
.content-rsce-referenz .bildcontainer .galeriedots {position: absolute; z-index: 1; bottom: 10px; left: 0; width: 100%; text-align: center;}
.content-rsce-referenz .bildcontainer .galeriedots .dot {width: 14px; height: 14px; border-radius: 14px; background: #3C604D; display: inline-block; margin: 0 1px;}
.content-rsce-referenz .textcontainer {box-sizing: border-box; background: #3C604D; padding: 30px 50px;}
.content-rsce-referenz .textcontainer h3 {color: #fff; margin-top: 10px; font-size: 3rem; line-height: 3.8rem; margin-bottom: 5px;}
.content-rsce-referenz .textcontainer p {color: #fff; font-size: 2rem; line-height: 3rem; margin-bottom: 0;}
.content-rsce-referenz .textcontainer .dotbar {padding: 3px 0 4px 0; width: 100%; background: url(../../files/data/graphics/referenz-dots.svg) top left repeat-x;}
.content-rsce-referenz .textcontainer .verantwortlich {padding: 10px 0 10px 25px; background: url(../../files/data/graphics/referenz-pin.svg) center left no-repeat; margin-bottom: 15px;}
.content-rsce-referenz .textcontainer ul li {vertical-align: middle; list-style: none; padding-left: 20px; background: url(../../files/data/graphics/icon-listbullet-weiss.svg) no-repeat top 14px left 4px; color: #fff; font-size: 2rem; line-height: 3rem;}
.content-rsce-referenz .textcontainer .leistungen {position: relative; clear: both; width: 100%; box-sizing: border-box; background: #fff; padding: 30px; margin: 20px 0;}
.content-rsce-referenz .textcontainer .leistungen p {color: #3C604D;}
.content-rsce-referenz .textcontainer .leistungen .leistungentitel {display: flex; align-items: center; margin-bottom: 15px;}
.content-rsce-referenz .textcontainer .leistungen .leistungentitel img {width: 125px; height: auto; margin-left: 20px;}
.content-rsce-referenz .content-hyperlink {margin-top: 30px;}
.content-rsce-referenz .content-hyperlink a {color: #3C604D; padding: 13px 30px 15px 60px; background: #fff url(../../files/data/graphics/icon-referenz-pdf.svg) center left 20px no-repeat; transition: transform 0.3s ease;}
.content-rsce-referenz .content-hyperlink a:hover {transform: scale(1.03);}


/*  NEWS / TERMINE                                           */
/*************************************************************/
.pagination {clear: both; display: block; width: 100%;}
.pagination p {display: inline-block; float: right;}
.pagination ul {display: inline-block; float: left;}
.pagination ul li {width: auto; margin-right: 5px; margin-bottom: 10px; display: inline-block;}
.pagination ul li a,
.pagination ul li span {border-radius: 3px; text-decoration: none; padding:1px 0 1px 0; width: 30px; display: block; text-align: center; background: #C32021; color: #fff; transition: color 0.3s ease, background 0.3s ease;}
.pagination ul li a:hover,
.pagination ul li span.active {background: #C32021; color: #2E2E2E;}
.pagination ul li.next a,
.pagination ul li.last a,
.pagination ul li.first a,
.pagination ul li.previous a {width: auto; padding: 1px 7px 1px 7px;}


/*  FOOTER                                                   */
/*************************************************************/
#footer {height: auto; display: block; clear: both; position: relative; background: #3C604D url(../../files/data/graphics/flame-footer.svg) bottom left 20% no-repeat;}
#footer .inside {position: relative; width: 90%; padding: 80px 5%; max-width: 1410px; margin: 0 auto;}
#footer .content-text {margin-top: 20px;}
#footer .content-text p {color: #fff;}
#footer .content-text p a {color: #fff;}
#footer .content-image {margin-top: 20px;}
#footer .content-hyperlink a {color: #3C604D; background: #fff url(../../files/data/graphics/arrow-right-green.svg) center right 20px no-repeat; transition: background 0.3s ease;}
#footer .content-hyperlink a:hover {background: #fff url(../../files/data/graphics/arrow-right-green.svg) center right 12px no-repeat;}

/*  LIGHTBOX	                                             */
/*************************************************************/
#cboxTitle {display: none !important;} 
#cboxLoadedContent {border: none;} 
#cboxNext {background: url("../../files/data/graphics/lightbox-next.svg"); width: 35px; position: absolute; right: 15px; height: 45px; top: 53%; background-position: center; background-repeat: no-repeat; background-size: contain;} 
#cboxPrevious {background: url("../../files/data/graphics/lightbox-prev.svg"); width: 35px; position: absolute; left: 15px; height: 45px; top: 53%; background-position: center; background-repeat: no-repeat; background-size: contain;} 
#cboxClose {background: url("../../files/data/graphics/lightbox-close.svg"); width: 35px; position: absolute; right: 15px; top: 15px; height: 35px; background-position: center; background-repeat: no-repeat; background-size: contain;} 
#cboxCurrent {font-size: 14px; top: -30px;} 
#cboxOverlay {background: #fff; opacity: 0.97;}

#colorbox.svgcbox #cboxLoadedContent {padding: 30px 50px; background: #3C604D;}
#colorbox.svgcbox #cboxContent {background: #3C604D;}
#colorbox.svgcbox #cboxNext {background: url("../../files/data/graphics/cbox-green-next.svg"); width: 50px; height: 50px; background-size: contain; right: -25px; transition: transform 0.3s ease;}
#colorbox.svgcbox #cboxNext:hover {transform: scale(1.05);}
#colorbox.svgcbox #cboxPrevious {background: url("../../files/data/graphics/cbox-green-prev.svg"); width: 50px; height: 50px; background-size: contain; left: -25px; transition: transform 0.3s ease;}
#colorbox.svgcbox #cboxPrevious:hover {transform: scale(1.05);}
#colorbox.svgcbox #cboxClose {background: url("../../files/data/graphics/cbox-green-close.svg");}
#colorbox.svgcbox, #colorbox.svgcbox #cboxWrapper {overflow: visible !important;}
#colorbox.svgcbox h3, #colorbox.svgcbox p {color: #fff;}
#colorbox.svgcbox .content-hyperlink a {color: #3C604D; background: #fff url(../../files/data/graphics/arrow-right-green.svg) center right 20px no-repeat; transition: background 0.3s ease;}
#colorbox.svgcbox .content-hyperlink a:hover {background: #fff url(../../files/data/graphics/arrow-right-green.svg) center right 12px no-repeat;}

/*  FIXES		                                             */
/*************************************************************/
.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.clearfix {display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix {height:0px;}
.clearfix {display: block;}
/* End hide from IE-mac */

/*  MEDIA QUERIES                                            */
/*************************************************************/
@media screen and (max-width: 1600px) {
    body.vorschauseite .mod_article.vollbild .content-text {left: 5%;}
    body.vorschauseite .mod_article.vollbild .content-text p {font-size: 1.7vw; line-height: 2vw;}
    body.vorschauseite .mod_article.vollbild .content-text h1 {font-size: 6vw; line-height: 6vw;}
    .parallaxarticle .parallax1 {left: 5%;}
    .parallaxarticle .parallax1 h1, .parallaxarticle .parallax1 h2 {font-size: 4rem; line-height: 4rem;}
    .parallaxarticle .parallax1 h1 br, .parallaxarticle .parallax1 h2 br {display: none;}
    .parallaxarticle .parallax1 p {font-size: 2rem; line-height: 2.5rem;}
    .mod_article.halbvollbild .content-text {width: 90%; padding: 0 5%;}
    .mod_article.halbvollbild .content-hyperlink {width: 90%; padding: 0 5%;}
    .content-text.counter p {font-size: 2rem; line-height: 3.3rem;}
    .mod_article.scrollartikel .scrolllinks .rte {width: calc(100% - 5vw);}
    .mod_article.scrollartikel .scrolllinks h2 {font-size: 4rem; line-height: 4rem;}
    .mod_article.scrollartikel .scrolllinks h3 {font-size: 2.5rem; line-height: 3.5rem;}
}

@media screen and (max-width: 1425px) {
    .mod_article.scrollartikel .scrolllinks {width: 450px;}
    .mod_article.scrollartikel .scrollrechts {width: calc(90% - 450px); padding-left: 5%; padding-right: 5%;}
}

@media screen and (max-width: 1350px) {
    #header .navigation ul li {margin: 0 0 0 5px;}
}

@media screen and (max-width: 1200px) {
	#header .navigation ul li a {font-size: 1.7rem;}
}

@media screen and (max-width: 1100px) {
    .row {--grid__gutter: 1.875rem;}
    .mod_article.triangleweiss .inside, .mod_article.trianglegruen .inside, .mod_article.trianglehellgruen .inside, .mod_article.trianglehellgruendouble .inside {padding: 80px 5%;}
	body.vorschauseite .mod_article.vollbild .content-text {top: calc(50% + 40px);}
    #header .navigation {display: none;}
    .headeralwaysup #header > .inside, #header > .inside, #header.up > .inside {background: rgba(255,255,255,0.8); padding: 0 20px; height: 45px;}
	.headeralwaysup #header .logo, #header .logo, #header.up .logo {width: 95px; margin-top: 12px;}
	#header .logo .shift {fill: #3C604D;}
	.headeralwaysup #header .content-image, #header .content-image, #header.up .content-image {margin-top: 10px; width: 27px; line-height: 0;}
    .content-hyperlink a {padding: 7px 60px 9px 30px;}
    .mod_article.vollbild .content-text a {padding: 7px 60px 9px 30px;}
    .content-rsce-referenz .content-hyperlink a {padding: 7px 30px 9px 60px;}
    .formbody .submit {padding: 7px 60px 9px 30px;}
    h1, h2 {font-size: 4rem; line-height: 4rem;}
    h3 {font-size: 2.5rem; line-height: 3rem;}
    body {font-size:20px; font-size:2rem; line-height: 2.6rem;}
    .nummer h2 {font-size: 9rem; line-height: 9rem;}
    .mod_article.scrollartikel .scrolllinks {width: 90%; padding-left: 5%; padding-right: 5%; position: relative;}
    .mod_article.scrollartikel .scrolllinks .rte {position: relative; padding: 0; top: 0;}
    .mod_article.scrollartikel .scrollrechts {width: 90%; padding-left: 5%; padding-right: 5%;}
    .muenzen p {display: inline-block; margin-right: 8px;}
    #main .content-text ul li {background: url(../../files/data/graphics/favicon.svg) no-repeat top 8px left 4px; background-size: 6px;}
}

@media screen and (max-width: 940px) {
	body .mod_article.parallaxarticle .inside {height: 500px;}
    .parallaxarticle .parallax2 {width: 110%; left: -5%; bottom: -40vw;}
    .parallaxarticle .parallax5 {width: 110%; left: -5%;}
    .parallaxarticle .parallax6 {height: 100%;}
    body .mod_article.parallaxarticle .inside .parallax6 .content-image {height: 100%; width: 100%;}
    body .mod_article.parallaxarticle .inside .parallax6 figure {height: 100%; width: 100%;}
    body .mod_article.parallaxarticle .inside .parallax6 img {height: 100%; width: 100%;}
    .mod_article .inside {padding: 30px 5%;}
    .mod_article.trianglehellgruendouble .inside {padding: 80px 5%;}
    .content-rsce-referenz .textcontainer h3 {font-size: 2.5rem; line-height: 3.5rem;}
    .formbody .widget {font-size: 1.8rem;}
    .formbody input {padding: 20px 15px 5px 15px; margin-bottom: 15px;}
    .formbody label {top: 13px; left: 15px; line-height: 2.4rem;}
    .formbody textarea {padding: 27px 15px 10px 15px; margin-bottom: 15px;}
    .formbody select {padding: 5px 15px 5px 15px; margin-bottom: 15px; height: 52px;}
    .mod_article.leistungengrafik .leistungsvgdesktop {display: none;}
    .mod_article.leistungengrafik .leistungsvgmobile {display: block;}
}


@media screen and (max-width: 750px) {
    .parallaxarticle .parallax1 {width: 90%; top: 80px;}
    .mod_article.vollbild.topschmal {min-height: 105px;}
    .mod_article.vollbild.topschmal img {width: 100%; min-height: 105px; object-fit: cover;}
    .parallaxarticle .parallax2 {width: 150%; left: -25%; bottom: -55vw;}
    .parallaxarticle .parallax3 {bottom: 5vw;}
    .parallaxarticle .parallax4 {bottom: 8vw;}
    .parallaxarticle .parallax5 {width: 150%; left: -25%; bottom: 3vw;}
    #colorbox.svgcbox h3 {font-size: 2rem; line-height: 3rem;}
    #colorbox.svgcbox p {font-size: 1.8rem; line-height: 2.3rem;}
    .beratungportrait {text-align: center;}
    .beratungportrait img {max-width: 60%;}
    .content-rsce-referenz .textcontainer {padding: 20px;}

	#container .content-text.media--left figure {width: 100%; margin-right: 0%;}
	#container .content-text.media--left .rte {width: 100%;}
	#container .content-text.media--right figure {float: none; width: 100%; margin-left: 0%;}
	#container .content-text.media--right .rte {width: 100%;}
    
    .schmal75 {width: 100% !important; margin: 0 auto;}
    .schmal50 {width: 100% !important; margin: 0 auto;}
}


/*  FONTS                                                    */
/*************************************************************/
@font-face {
    font-family: 'TeXGyreHerosBoldItalic';
    src: url('../../files/data/style/Fonts/TeXGyreHeros-BoldItalic.woff2') format('woff2'),
        url('../../files/data/style/Fonts/TeXGyreHeros-BoldItalic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'TeXGyreHerosBold';
    src: url('../../files/data/style/Fonts/TeXGyreHeros-Bold.woff2') format('woff2'),
        url('../../files/data/style/Fonts/TeXGyreHeros-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TeXGyreHerosItalic';
    src: url('../../files/data/style/Fonts/TeXGyreHeros-Italic.woff2') format('woff2'),
        url('../../files/data/style/Fonts/TeXGyreHeros-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'TeXGyreHerosRegular';
    src: url('../../files/data/style/Fonts/TeXGyreHeros-Regular.woff2') format('woff2'),
        url('../../files/data/style/Fonts/TeXGyreHeros-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'UnnaBoldItalic';
    src: url('../../files/data/style/Fonts/Unna-BoldItalic.woff2') format('woff2'),
        url('../../files/data/style/Fonts/Unna-BoldItalic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'UnnaBold';
    src: url('../../files/data/style/Fonts/Unna-Bold.woff2') format('woff2'),
        url('../../files/data/style/Fonts/Unna-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'UnnaItalic';
    src: url('../../files/data/style/Fonts/Unna-Italic.woff2') format('woff2'),
        url('../../files/data/style/Fonts/Unna-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'UnnaRegular';
    src: url('../../files/data/style/Fonts/Unna-Regular.woff2') format('woff2'),
        url('../../files/data/style/Fonts/Unna-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/*Abstaende*/
.oben0 {margin-top: 0px !important;}
.oben10 {margin-top: 10px !important;}
.oben20 {margin-top: 20px !important;}
.oben30 {margin-top: 30px !important;}
.oben40 {margin-top: 40px !important;}
.oben50 {margin-top: 50px !important;}
.oben60 {margin-top: 60px !important;}
.oben70 {margin-top: 70px !important;}
.oben80 {margin-top: 80px !important;}
.oben90 {margin-top: 90px !important;}
.oben100 {margin-top: 100px !important;}
.oben110 {margin-top: 110px !important;}
.oben120 {margin-top: 120px !important;}
.oben130 {margin-top: 130px !important;}
.oben140 {margin-top: 140px !important;}
.oben150 {margin-top: 150px !important;}

.unten0 {margin-bottom: 0px !important;}
.unten10 {margin-bottom: 10px !important;}
.unten20 {margin-bottom: 20px !important;}
.unten30 {margin-bottom: 30px !important;}
.unten40 {margin-bottom: 40px !important;}
.unten50 {margin-bottom: 50px !important;}
.unten60 {margin-bottom: 60px !important;}
.unten70 {margin-bottom: 70px !important;}
.unten80 {margin-bottom: 80px !important;}
.unten90 {margin-bottom: 90px !important;}
.unten100 {margin-bottom: 100px !important;}
.unten110 {margin-bottom: 110px !important;}
.unten120 {margin-bottom: 120px !important;}
.unten130 {margin-bottom: 130px !important;}
.unten140 {margin-bottom: 140px !important;}
.unten150 {margin-bottom: 150px !important;}
