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}
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

#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}
/*************************************************************/
/*   Design:  AXENITA						     	 	 	 */
/*   File:    screen.css					                 */
/*-----------------------------------------------------------*/
/*   Autor:   Thomas Dürig, www.nuun.ch 	                 */
/*   Datum:   Maerz 2021					                 */
/*   Site: 	  www.axenita.ch 			 					 */
/*************************************************************/
/*  LAYOUT													 */
/*************************************************************/

/*FARBEN*/
/*	

*/

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

html, body {position: relative; height: 100%; width:100%; font: 62.5% "robotolight", Arial, Verdana, Helvetica, sans-serif; letter-spacing:0em;}
body {font-size:24px; font-size:2.4rem; line-height: 3rem; color: #000000; background-color: #fff;}

.invisible {display: none !important;}

.schmal50 {width: 50% !important; margin: 0 auto;}
.schmal75 {width: 75% !important; margin: 0 auto;}

.zentriert {text-align: center;}

.gruen {background: #00A8A6; padding: 20px 20px 10px 20px;}
.grau {background: #F6F6F6; padding: 20px 20px 10px 20px;}
.blau {background: #327FA1;}
.schatten {box-shadow: 0 7px 7px rgba(0,0,0,0.16); padding: 20px 30px 20px 30px;}
.verlauf {background: #327fa1;
background: -moz-linear-gradient(top,  #327fa1 0%, #00a8a6 100%);
background: -webkit-linear-gradient(top,  #327fa1 0%,#00a8a6 100%);
background: linear-gradient(to bottom,  #327fa1 0%,#00a8a6 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#327fa1', endColorstr='#00a8a6',GradientType=0 );
}
.gruen h1, .gruen h2, .gruen h3, .gruen h4, .gruen p {color: #fff;}
.blau h1, .blau h2, .blau h3, .blau h4, .blau p {color: #fff;}
.verlauf h1, .verlauf h2, .verlauf h3, .verlauf h4, .verlauf p {color: #fff;}

/*Backtotop*/
#backtotop {width: 70px; position: fixed; bottom: 45px; right: 20px; cursor: pointer; opacity: 0; z-index: 5000;}
#backtotop img {width: 100%;}

.cookiebar {z-index: 5000;}
.cookiebar__button {background: #84BD00;}

/*  HEADER / NAVIGATION									     */
/*************************************************************/

#header {width: 100%; z-index: 500; height: 200px; position: fixed; top: 0; left: 0; background: #fff; border-bottom: 1px solid #EBEDF3; transition: filter 0.3s ease;}
#header .logo {display: inline-block; margin-top: 40px; float: left; width: 300px; padding-left: 3%;}
#header .navigation {display: inline-block; float: right; margin-right: 20%; margin-top: 115px; transition: margin-top 0.3s ease;}
#header .navigation ul {margin-bottom: 0; text-align: center;}
#header .navigation ul li {position: relative; padding-bottom: 50px; display: inline-block; margin-left: 50px; transition: padding-bottom 0.3s ease;}
#header .navigation ul li a {padding-bottom: 55px; font-size: 1.8rem; line-height: 2rem; color: #000000; text-decoration: none; font-family: 'robotobold'; transition: color 0.3s ease, padding-bottom 0.3s ease, background 0.3s ease;}
#header .navigation ul li a.active,
#header .navigation ul li a.trail,
#header .navigation ul li a:hover {color: #00A8A6;}
#header .navigation ul.level_1 li ul.level_2 {visibility: hidden; opacity: 0; position: absolute; left: 50%; transform: translateX(-50%); padding: 20px 30px 20px 30px; top: 70px; width: auto; background: #fff; -moz-transition: all 0.2s ease; -o-transition: all 0.2s ease; -webkit-transition: all 0.2s ease; transition: all 0.2s ease;}
#header .navigation ul.level_1 li:hover ul.level_2 {visibility: visible; opacity: 1; position: absolute; width: auto; height: auto; left: 50%; transform: translateX(-50%); padding: 20px 30px 20px 30px; top: 59px; background: #fff; filter: drop-shadow(0px 20px 15px rgba(0,0,0,0.15)); -webkit-filter: drop-shadow(0px 20px 15px rgba(0,0,0,0.15));}
#header .navigation ul.level_1 li ul.level_2 li {width: 100%; text-align: left; margin-left: 0; padding-bottom: 7px; background: url(../../files/data/graphics/bg-subnav.svg) center bottom 15px no-repeat;}
#header .navigation ul.level_1 li ul.level_2 li a {padding: 10px 0px; min-width: 170px; display: block; background: none; width: 100%; box-sizing: border-box;}
.noclick {cursor: default;}

#header .navigation ul li a.submenu {padding-right: 30px; background: url(../../files/data/graphics/submenu-down-black.svg) top 8px right no-repeat; transition: background 0.3s ease;}
#header .navigation ul li a.submenu:hover {background: url(../../files/data/graphics/submenu-up-green.svg) top 8px right no-repeat;}
#header .navigation ul li a.submenu.active, #header .navigation ul li a.submenu.trail {background: url(../../files/data/graphics/submenu-down-green.svg) top 8px right no-repeat;}
#header .navigation ul li a.submenu.active:hover, #header .navigation ul li a.submenu.trail:hover {background: url(../../files/data/graphics/submenu-up-green.svg) top 8px right no-repeat;}

#header .headerright {display: inline-block; float: right; padding-right: 3%; margin-top: 40px;}
#header .headerright a {font-size: 1.8rem; line-height: 2rem; color: #000000; text-decoration: none; font-family: 'robotobold'; transition: color 0.3s ease;}
#header .headerright a:hover {color: #00A8A6;}
#header .headerright .demologin a {padding: 5px 30px 5px 0; background: url(../../files/data/graphics/icon-log-in.svg) center right no-repeat;}
#header .headerright .mod_changelanguage li {display: inline-block; margin-right: 5px;}
#header .headerright .mod_changelanguage li.active a {color: #00A8A6;}

#nuunnav .logo {width: 150px; margin-bottom: 20px;}
#nuunnav .mod_changelanguage ul.level_1 li {display: inline-block; margin-right: 5px; width: auto;}
#nuunnav .mod_changelanguage ul.level_1 li a {font-size: 1.8rem; line-height: 2.2rem;}
#nuunnav .mod_changelanguage ul.level_1 li.active a {color: #00A8A6;}
#nuunnav .demologin {margin-bottom: 10px;}
#nuunnav .demologin a {font-size: 1.8rem; line-height: 2.2rem; padding: 5px 30px 5px 0; background: url(../../files/data/graphics/icon-log-in.svg) center right no-repeat;}
#nuunnav .formularbuttons {display: flex; justify-content: space-around; margin-top: 40px;}

/*Formularbuttons / Form*/
#header .formularbuttons {position: fixed; top: 250px; right: 3%;}
#header .formularbuttons img {transition: transform 0.2s ease; cursor: pointer;}
#header .formularbuttons img:hover {transform: scale(1.05);}
#header .formularbuttons .button-form-beratung {margin-bottom: 20px;}

.formpopup-beratung {display: none; z-index: 1000; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;}
.formpopup-praesentation {display: none; z-index: 1000; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;}
.formpopup-modul {display: none; z-index: 1000; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;}

#popups .formpopup-spacer {display: flex; align-items: center; justify-content: center; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;}
#popups .formpopup-overlay {display: block; cursor: pointer; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;}
#popups .formpopup-container {position: relative; box-sizing: border-box; width: 100%; max-width: 400px; max-height: 90%; overflow-y: auto; z-index: 20; background: rgba(255,255,255,0.5); text-align: center; padding: 40px;}
#popups .formpopup-close {position: absolute; top: 10px; right: 20px; cursor: pointer;}
#popups h4 {font-size: 2.2rem; line-height: 2.5rem; font-family: 'robotobold'; color: #000; margin: 0; padding: 15px 0;}

/*  SLIDER 			                                         */
/*************************************************************/
.inhaltslider .slick-container .slick-arrow {cursor: pointer; display: inline-block; float: left; width: 10%; text-align: center;}
.inhaltslider .slick-container .slick-list {display: inline-block; float: left; width: 100%;}
.inhaltslider .slick-container .slick-dots {display: block; width: 100%; clear: both; text-align: center; margin-top:15px;}
.inhaltslider .slick-container .slick-dots li {cursor: pointer; display: inline-block; margin: 0 5px; width: 21px; height: 21px; background: none; border: 1px solid #fff; border-radius: 20px; transition: border 0.3s ease, background 0.3s ease;}
.inhaltslider .slick-container .slick-dots li:hover, .inhaltslider .slick-container .slick-dots li.slick-active {border: 1px solid #fff; background: #fff;} 
.inhaltslider .slick-container .slick-dots li button {display: none;}
#main .inhaltslider .slick-container {display: flex; align-items: center; flex-wrap: wrap;}

.inhaltslidernav .slick-container.slick-slider {display: flex; align-items: center; flex-wrap: wrap; justify-content: initial;}
.inhaltslidernav .slick-container .slick-arrow {cursor: pointer; display: inline-block; float: left; width: 10%; text-align: center;}
.inhaltslidernav .slick-container .slick-list {display: inline-block; float: left; width: 80%;}
.inhaltslidernav .slick-container .slick-dots li:hover, .inhaltslidernav .slick-container .slick-dots li.slick-active {background: #707070;} 
.inhaltslidernav .slick-container .slick-dots {display: block; width: 100%; padding-left: 0; clear: both; text-align: center; margin-top:15px;}
.inhaltslidernav .slick-container .slick-dots li {border:1px solid #707070; cursor: pointer; display: inline-block; margin: 0 10px; width: 26px; height: 26px; background: none; border-radius: 30px; transition: background 0.3s ease;}
.inhaltslidernav .slick-container .slick-dots li button {display: none;}

.slick-container .slick-slide .content-text img {display: initial;}

.slick-slide:focus {outline: none;}

/*  INHALTSELEMENTE                                          */
/*************************************************************/

#container {padding-top: 200px; transition: filter 0.3s ease;}

/*Breadcrumbs*/
body.nobc .mod_breadcrumb {display: none;}
.mod_breadcrumb {border-bottom: 1px solid #EBEDF3; padding: 20px 0;}
.mod_breadcrumb ul {width: 92%; padding: 0 4%; max-width: 1560px; margin: 0 auto;}
.mod_breadcrumb ul li:first-of-type {display: none;}
.mod_breadcrumb ul li {display: inline-block; font-size: 1.6rem; color: #84BD00; font-family: 'robotolight'; letter-spacing: 0.44px;}
.mod_breadcrumb ul li a {color: #84BD00; text-decoration: none;}
body.referenzdetail .mod_breadcrumb ul li:nth-of-type(5) {display: none;}

/*Article*/
.mod_article .inside {width: 92%; padding: 120px 4%; max-width: 1430px; margin: 0 auto;}
.mod_article.lesspadding .inside {padding: 50px 4%;}
.mod_article.schmal .inside {max-width: 980px;}
.mod_article.grau {background: #EDEDED;}

.mod_article.vollbild img {width: 100%; height: auto;}
.mod_article.vollbild .inside {width: 100%; padding: 0; max-width: initial; position: relative;}
.mod_article.vollbild .content-image figure {line-height: 0;}

.mod_article.vertikalzentriert .row > div {display: flex; align-items: center; flex-wrap: wrap;}

.mod_article.topbild, .mod_article.topbild .content-image {height: 27vw; overflow: hidden;}
.mod_article.topbild .content-text {position: absolute; top: 20%; left: 10%;}
.mod_article.topbild h1, .mod_article.topbild h2 {font-size: 2.6vw; line-height: 3vw; padding-bottom: 0;}
.mod_article.topbild h1 img, .mod_article.topbild h2 img {margin-top: 15px; width: 6vw;}
.mod_article.topbild .content-image img, .mod_article.topbild .content-image figure, .mod_article.topbild .content-image picture {width: 100%; height: 100%; object-fit: cover; object-position: top;}

.mod_article.pulltop {margin-top: -200px; position: relative;}

.mod_article.moduletop {background: url(../../files/data/graphics/module-bg-top.png) center right no-repeat;}
body.frpage .mod_article.moduletop {background: url(../../files/data/graphics/module-bg-top_FR.png) center right no-repeat;}

/*Text*/
figure img {max-width: 100%; height: auto;}
#main .content-image figure {margin-bottom: 30px;}
#main .vollbild .content-image figure {margin-bottom: 0px;}

#container .content-text {margin-bottom: 30px;}
#container .content-text .image_container.float_left {width: 48.5%; float: left; margin-right: 3%;}
#container .content-text .image_container.float_right {width: 48.5%; float: right; margin-left: 3%;}
#container .content-text .rte p img {max-width: 100%; height: auto;}
#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;}

#container .content-text hr {border-top: 1px solid #9DA79E; border-left: none; border-right: none; border-bottom: none;}
.content-text strong {font-family: 'robotobold';}
.content-text a {color: #000; text-decoration: none;}

.content-text.box {position: relative; display: flex; align-items: center; justify-content: center; color: #fff; background: #327fa1;
background: -moz-linear-gradient(top,  #327fa1 0%, #00a8a6 100%);
background: -webkit-linear-gradient(top,  #327fa1 0%,#00a8a6 100%);
background: linear-gradient(to bottom,  #327fa1 0%,#00a8a6 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#327fa1', endColorstr='#00a8a6',GradientType=0 );}
.content-text.box h2 {opacity: 1; padding-bottom: 0; font-family: 'robotobold'; font-size: 4.2rem; line-height: 6.4rem; color: #fff; transition: opacity 0.3s ease;}
.content-text.box .rte {opacity: 0; box-sizing: border-box; padding: 20px; position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; transition: opacity 0.3s ease;}
.content-text.box p {color: #fff;}
.content-text.box:hover h2 {opacity: 0;}
.content-text.box:hover .rte {opacity: 1;}

.content-text.servicebox {position: relative; min-height: 270px;}
.content-text.servicebox h4 {font-family: 'robotobold'; font-size: 3.3rem; line-height: 3.5rem; color: #000; margin: 0 auto; display: inline-block; max-width: 300px; min-height: 70px;}
.content-text.servicebox .rte {font-size: 2.2rem; line-height: 2.6rem; color: #fff; opacity: 0; box-sizing: border-box; padding: 20px; position: absolute; top: 0; left: 0; width: 100%; min-height: 100%; z-index: 5; transition: opacity 0.3s ease; background: #327fa1;
background: -moz-linear-gradient(top,  #327fa1 0%, #00a8a6 100%);
background: -webkit-linear-gradient(top,  #327fa1 0%,#00a8a6 100%);
background: linear-gradient(to bottom,  #327fa1 0%,#00a8a6 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#327fa1', endColorstr='#00a8a6',GradientType=0 );}
.content-text.servicebox:hover .rte {opacity: 1;}

h1, h2 {font-size: 5rem; line-height: 5.5rem; padding-bottom: 30px; margin: 0; color: #000; font-family: 'robotolight';}
h3 {font-size: 4.2rem; line-height: 4.8rem; padding-bottom: 30px; margin-bottom: 0; color: #000; font-family: 'robotolight';}
h4 {font-size: 3.6rem; line-height: 4rem; padding-bottom: 15px; margin-bottom: 0; color: #000; font-family: 'robotolight';}
h5 {font-size: 2.6rem; line-height: 3.2rem; padding-bottom: 30px; margin-bottom: 0; color: #000; font-family: 'robotolight';}
h6 {font-size: 2.6rem; line-height: 3.2rem; padding-bottom: 30px; margin-bottom: 0; color: #00A8A6; font-family: 'robotolight';}
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {font-family: 'robotobold'}

.services #container .ce_columns .content-text{margin-bottom: 0;}
.services #container .ce_columns .content-text h3 {padding-bottom: 10px;}

.content-text.counter p.zaehler {font-size: 12rem; line-height: 12.5rem; position: relative; background: #fff; -webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;}
.content-text.counter p {font-size: 3.7rem; line-height: 4.1rem;}
.content-text.counter p.zaehler:after {content: "0"; position: absolute; left: 0; right: 0; margin:0 auto; text-align: center; background: #327fa1;
background: -moz-linear-gradient(right,  #327fa1 0%, #00a8a6 100%);
background: -webkit-linear-gradient(right,  #327fa1 0%,#00a8a6 100%);
background: linear-gradient(to left,  #327fa1 0%,#00a8a6 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;}
.content-text.counterprozent p.zaehler:after {content: "0%";}

.content-text.counter p.zaehler.zaehlen {background: #327fa1;
background: -moz-linear-gradient(right,  #327fa1 0%, #00a8a6 100%);
background: -webkit-linear-gradient(right,  #327fa1 0%,#00a8a6 100%);
background: linear-gradient(to left,  #327fa1 0%,#00a8a6 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;}
.content-text.counter p.zaehler.zaehlen:after {display: none;}
.content-text.counterprozent p.zaehler.zaehlen:after {content: "%"; display: inline-block; position: relative;}

.content-text.ueberunsbox {min-height: 600px;}

/*Hyperlink*/
.content-hyperlink {padding: 20px 0; width: 100%; margin-top: 15px;}
.content-hyperlink a {display: inline-block; padding: 15px 33px; font-family: 'robotobold'; border-radius: 40px; background: #00A8A6; color: #fff; font-size: 1.7rem; line-height: 2.1rem; text-align: center; text-decoration: none; transition: transform 0.3s ease;}
.content-hyperlink a:hover {transform: scale(1.05);}

.gruen .content-hyperlink a {color: #00A8A6; background: #fff;}

/*Gallery*/
#container #main .ce_gallery ul.cols_2 li {width: 48.5%; margin-right: 3%; margin-bottom: 30px; display: inline-block; float: left; line-height: 1;}
#container #main .ce_gallery ul.cols_3 li {width: 31.3%; margin-right: 3%; margin-bottom: 30px; display: inline-block; float: left; line-height: 1;}
#container #main .ce_gallery ul.cols_4 li {width: 22.75%; margin-right: 3%; margin-bottom: 30px; display: inline-block; float: left; line-height: 1;}
#container #main .ce_gallery ul li.col_last {margin-right: 0;}
#container #main .ce_gallery ul li figure {width: 100%; overflow: hidden; line-height: 0;}
#container #main .ce_gallery ul li figure img {width: 100%; height: auto; -webkit-transition: all .5s ease; transition: all .5s ease;}
#container #main .ce_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;}

#container #main .topbild .ce_gallery ul li figure:hover img {-webkit-transform: scale(1); transform: scale(1);}

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

#main .content-text ul li, #main .widget-explanation ul li {vertical-align: middle; list-style: none; padding-left: 20px; background: url(../../files/data/graphics/icon-listbullet.svg) no-repeat top 9px left;}

#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: #84BD00;
    -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; display: inline-block;}
.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%; padding:0 0 0 0; margin:0 0 5px 0; background:#707372;}

.content-download img, .content-downloads img {position:absolute; left:10px; top:7px; z-index:400;}
body #container .content-downloads a, body #container .content-downloads a:link, body #container .content-downloads a:visited, body #container .content-download a, body #container .content-download a:visited, body #container .content-download a:link, body #container .enclosure a:link, body #container .enclosure a:visited {
    position:relative;
    z-index:300;
    text-decoration: none;
    color: #fff;
    background-color: #777777;
    display:block;
    padding:8px 30px 8px 40px;
    margin:0 0 0 0;
    transition: background-color 0.5s ease; -webkit-transition: background-color 0.5s ease; 
    }   

body #container .content-download .ext-pdf a, body #container .content-downloads .ext-pdf a {background-image: url(../../files/data/graphics/icon-pdf.svg); background-position: left 10px top 10px; background-repeat: no-repeat;}
body #container .content-download .ext-doc a, body #container .content-downloads .ext-doc a {background-image: url(../../files/data/graphics/icon-doc.svg); background-position: left 10px top 10px; background-repeat: no-repeat;}
body #container .content-download .ext-xls a, body #container .content-downloads .ext-xls a {background-image: url(../../files/data/graphics/icon-xls.svg); background-position: left 10px top 10px; background-repeat: no-repeat;}
body #container .content-download .ext-zip a, body #container .content-downloads .ext-zip a {background-image: url(../../files/data/graphics/icon-zip.svg); background-position: left 10px top 10px; background-repeat: no-repeat;}
        
body #container .content-downloads a:hover, 
body #container .content-downloads a:active, 
body #container .content-download a:hover, 
body #container .content-download a:active {background-color:#00A8A6;}   

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

.ce_form .formbody ::placeholder {color: #AEAFB2;}
.ce_form .formbody ::-ms-input-placeholder {color: #AEAFB2;}
.ce_form .formbody :focus {outline: none;}

.ce_form {margin-top: 10px; width: 100%; margin-right: auto; margin-left: auto;}
.formbody label {width: 100%; padding-top: 10px; margin-bottom: 8px; display: inline-block; float: left;}
.formbody input {box-sizing: border-box; font-size: 1.7rem; line-height: 2rem; border-radius: 16px; width: 100%; padding:15px; margin-bottom: 20px; border:none; background-color: #fff; color: #000;}
.formbody textarea {box-sizing: border-box; font-size: 1.7rem; line-height: 2rem; border-radius: 16px; width: 100%; padding:15px; border: none; margin-bottom: 20px; background-color: #fff; color: #000;}
.formbody .submit {background-color: #327FA1; font-family: 'robotobold'; font-size: 1.7rem; line-height: 2rem; border-radius: 26px; border:none; cursor: pointer; margin-top: 7px; padding: 15px 0; color: #fff; margin-left: 0; width: 150px;}
.formbody select {box-sizing: border-box; font-size: 1.7rem; line-height: 2rem; border-radius: 16px; width: 100%; padding:15px; margin-bottom: 20px; border:none; background-color: #fff; color: #000;}
.formbody fieldset {margin-bottom: 10px;}

.formbody fieldset span {width:100%; float: left;}
.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;}

/*radio und checkbox templates von scayla*/
.formbody .checkbox_container a {color: #d67500; text-decoration: none;}
.formbody .checkbox_container input {position: absolute; left: 0; opacity: 0;cursor: pointer; /*height: 0;width: 0;*/ background: #dedede;}
.formbody .checkbox_container label {cursor: pointer; margin-right: 15px; position: relative; margin-bottom: 5px; display: block;}
.formbody .checkbox_container span {width: 90px; margin-right: 15px;}
.formbody .checkbox_container span.lname {width: auto; padding-top: 0px; font-size: 1.8rem;}
.formbody .checkbox_container .checkmark {border-radius: 7px; cursor: pointer; position: relative; height: 25px; width: 25px; 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: 25px; height: 25px; background: url(../../files/data/graphics/checkmark.svg) center no-repeat; background-size: 18px;}

.formbody .radio_container a {color: #d67500; text-decoration: none;}
.formbody .radio_container input {position: absolute;opacity: 0;cursor: pointer; /*height: 0;width: 0;*/ background: #dedede;}
.formbody .radio_container label {cursor: pointer; width: 150px; position: relative; margin-bottom: 20px; display: inline-block;}
.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: 30px; width: 30px; background-color: #fff; border:1px solid #E9EBF0; border-radius: 50px;}
.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: 7px; left: 7px; width: 16px; height: 16px; background: #84BD00; position: absolute; border-radius: 50px;}

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

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

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

/*Google Map*/
.dlh_googlemap {width: 100% !important;}

/*Accordion*/
#main .ce_accordion {border-bottom: 3px solid #ECECEC; margin-bottom: 0; position: relative;}
#main .ce_accordion:first-of-type {border-top: 3px solid #ECECEC;}
#main .ce_accordion .inside {width: 92%; padding: 0px 2%; max-width: 1460px; margin: 0 auto;}
#main .ce_accordion .toggler {display: flex; align-items: center; padding: 16px 0; font-size: 4rem; line-height: 5.4rem; cursor: pointer; position: relative;}
.ce_accordion .toggler img {width: 30px; margin-right: 15px; transition: transform 0.3s ease;}
.ce_accordion .toggler.active img {transform:rotate(45deg);}
#main .ce_accordion .toggler:focus {outline: none;}
#main .ce_accordion .ce_hyperlink_acc {display: inline-block !important; position: absolute; top: 26px; right: 20px; z-index: 5; padding: 0; margin: 0; width: auto;}
#main .ce_accordion .ce_hyperlink_acc a {padding: 15px 33px; font-family: 'robotobold'; border-radius: 40px; background: #00A8A6; color: #fff; font-size: 1.7rem; line-height: 2.1rem; text-align: center; text-decoration: none; transition: transform 0.3s ease;}
#main .ce_accordion .ce_hyperlink_acc a:hover {transform: scale(1.05);}
#main .ce_accordion .accordion {padding: 20px 0 30px 0;}

/*Divider*/
.divider {display: block; clear: both; width: 100%; height: 50px; margin: 20px auto; background:url(../../files/data/graphics/icon-divider.svg) center no-repeat;}

/*Linkbox Nr*/
.linkboxnr .box {width: 31.3%; margin-right: 3%; border-radius: 3px; overflow: hidden; margin-top: 0; margin-bottom: 40px; display: inline-block; float: left; transition: box-shadow 0.3s ease, margin-top 0.3s ease;}
.linkboxnr .box:nth-of-type(3n) {margin-right: 0;}
.linkboxnr .box:nth-of-type(3n+1) {clear: left;}
.linkboxnr .box a.boxlink {text-decoration: none; box-sizing: border-box; padding: 40px 50px; display: block;}
.linkboxnr .box .nummer {font-size: 8rem; line-height: 9.6rem; color: #9DA79E; transition: color 0.3s ease;}
.linkboxnr .box p {color: #9DA79E; transition: color 0.3s ease;}
.linkboxnr .box h3 {color: #9DA79E; transition: color 0.3s ease;}
.linkboxnr .box .linkboxarrow {margin-top: 20px;}
.linkboxnr .box .linkboxarrow .Landingpage {fill: #9DA79E; transition: fill 0.3s ease;}
.linkboxnr .box:hover {margin-top: -3px; box-shadow: 0 10px 35px 0 rgba(89,90,89,0.1)}
.linkboxnr .box:hover .nummer {color: #84BD00;}
.linkboxnr .box:hover p {color: #84BD00;}
.linkboxnr .box:hover h3 {color: #84BD00;}
.linkboxnr .box:hover .linkboxarrow .Landingpage {fill: #84BD00;}

.content-text h2.nummer {font-size: 8rem; line-height: 9.6rem; color: #84BD00; margin: 20px 0 0 0; padding: 0;}

/*Linkbox Img*/
.linkboximg {display: flex; justify-content: center; flex-wrap: wrap;}
.linkboximg .box {width: 31.3%; margin-right: 1%; margin-left: 1%; border-radius: 3px; overflow: hidden; margin-top: 0; margin-bottom: 40px; display: inline-block; float: left; transition: box-shadow 0.3s ease, margin-top 0.3s ease;}
/*.linkboximg .box:nth-of-type(3n) {margin-right: 0;}
.linkboximg .box:nth-of-type(3n+1) {clear: left;}*/
.linkboximg .box img {width: 100%; height: auto; filter: grayscale(1); transition: filter 0.6s ease;}
.linkboximg .box a.boxlink {text-decoration: none; box-sizing: border-box; display: block;}
.linkboximg .box .linkboxtext {padding: 20px 40px 50px 40px;}
.linkboximg .box p {color: #9DA79E; transition: color 0.3s ease;}
.linkboximg .box h3 {color: #9DA79E; transition: color 0.3s ease;}
.linkboximg .box .linkboxarrow {margin-top: 20px;}
.linkboximg .box .linkboxarrow .Landingpage {fill: #9DA79E; transition: fill 0.3s ease;}
.linkboximg .box:hover {margin-top: -3px; box-shadow: 0 10px 35px 0 rgba(89,90,89,0.1)}
.linkboximg .box:hover img {filter: grayscale(0);}
.linkboximg .box:hover p {color: #84BD00;}
.linkboximg .box:hover h3 {color: #84BD00;}
.linkboximg .box:hover .linkboxarrow .Landingpage {fill: #84BD00;}

/*Zitatbox*/
.zitatboxinhalt {background: #84BD00; border-radius: 6px; margin: 30px 0; box-sizing: border-box; padding: 0 5%;}
.zitatboxinhalt .inside {padding: 40px 0;}
.zitatboxinhalt h2 {color: #fff; margin: 0; padding: 20px 60px; background: url(../../files/data/graphics/icon-quote-team.svg) left top 33px no-repeat;}
.zitatboxinhalt h4 {color: #C1E0AB; margin: 0; padding: 0 60px 20px 60px;}

/*Partnerbox*/
.partnerboxen .box {position: relative; width: 100%; height: 150px; padding: 20px; box-sizing: border-box; border: 2px solid #c3c3c3;}
.partnerboxen .box .boxlink {position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2;}
.partnerboxen .box .image-container {width: 100%; height: 100%;}
.partnerboxen .box .image-container img {width: 100%; height: 100%; object-fit: scale-down;}

/*  REFERENZEN / TEAM                                        */
/*************************************************************/
#mix_filter {margin-bottom: 30px;}
#mix_filter button {cursor: pointer; color: #9DA79E; padding: 3px 20px; margin-right: 15px; margin-bottom: 15px; border: 1px solid #9DA79E; border-radius: 2px; background: #fff; transition: color 0.3s ease, background 0.3s ease, border 0.3s ease;}
#mix_filter button:hover, #mix_filter button.mixitup-control-active {background: #84BD00; border: 1px solid #84BD00; color: #fff;}
#mix_filter button:focus {outline: none;}

.referenzliste .ctlg_teaser {display: inline-block; width: 100%; position: relative; background: none; background-position: bottom 20px right 20px; border-radius: 3px; margin-bottom: 60px; margin-top: 0; transition: box-shadow 0.3s ease, margin-top 0.3s ease, margin-bottom 0.3s ease, background 0.3s ease;}
.referenzliste .ctlg_teaser .masterlink {position: absolute; display: block; top: 0; left: 0; width: 100%; height: 100%; z-index: 100;}
.referenzliste .ctlg_teaser .image-container {display: inline-block; float: left; width: 44.8%; margin-right: 4%; line-height: 0; border-radius: 3px; overflow: hidden;}
.referenzliste .ctlg_teaser .image-container img {filter: grayscale(1); transition: filter 0.3s ease;}
.referenzliste .ctlg_teaser .projekttext {display: inline-block; float: left; width: 51%; box-sizing: border-box; padding: 50px 50px 40px 0;}
.referenzliste .ctlg_teaser .projekttext h2 {margin: 0; padding-bottom: 20px;}

.referenzliste .ctlg_teaser:hover {margin-top: -3px; margin-bottom: 63px; box-shadow: 0 10px 35px 0 rgba(89,90,89,0.1); background: url(../../files/data/graphics/icon-arrow-right-green.svg) no-repeat; background-position: bottom 20px right 20px;}
.referenzliste .ctlg_teaser:hover .image-container img {filter: grayscale(0);}

.referenzdetail .hauptbild {position: relative; background: #F4F4F4; display: flex; justify-content: center;}
.referenzdetail .hauptbild .inside {width: 92%; padding: 0 4%; max-width: 1560px; margin: 0 auto;}
.referenzdetail .hauptbild .inside .image_container {line-height: 0;}
.referenzdetail .hauptbild .ce_gallery {position: absolute; bottom: -70px; max-width: 1560px;}
#container #main .referenzdetail .hauptbild .ce_gallery ul li {width: 135px; margin: 0; border-top: 15px solid #fff; border-bottom: 15px solid #fff; border-right: 15px solid #fff;}
#container #main .referenzdetail .hauptbild .ce_gallery ul li:first-of-type {border-left: 15px solid #fff;}
#container #main .referenzdetail .hauptbild .ce_gallery ul li img {filter: grayscale(1); transition: filter 0.3s ease, transform 0.3s ease;}
#container #main .referenzdetail .hauptbild .ce_gallery ul li img:hover {filter: grayscale(0);}
.referenzdetail h1 {width: 92%; padding: 0 4%; max-width: 1020px; margin: 100px auto 50px auto;}
.referenzdetail .refinhalt {width: 92%; padding: 0 4%; max-width: 1020px; margin: 0 auto 50px auto;}
.referenzdetail .refinhalt p.gruen {margin: 30px 0; color: #84BD00;}
.referenzdetail .refinhalt .grau {box-sizing: border-box; padding: 0 25px 50px 25px; background: #F4F4F4;}
.referenzdetail .refinhalt .grau .row {padding: 8px 0 0 0; border-bottom: 1px solid #84BD00;}
.referenzdetail .refinhalt .grau .row a {color: #84BD00; text-decoration: none; padding-left: 30px; background: url(../../files/data/graphics/icon-linkbg.svg) center left no-repeat; display: block;}
.referenzdetail .zitatboxinhalt .inside {width: 92%; padding: 50px 4%; max-width: 1560px; margin: 0 auto;}

.teamliste {display: flex; justify-content: space-between; flex-wrap: wrap;}
.teamliste .ctlg_teaser {width: 48%; display: block; margin-bottom: 70px; float: left; margin-top: 0; transition: margin-top 0.3s ease, margin-bottom 0.3s ease, box-shadow 0.3s ease;}
.teamliste .ctlg_teaser:nth-of-type(2n) {margin-right: 0;}
.teamliste .ctlg_teaser:nth-of-type(2n+1) {clear: left;}
.teamliste .ctlg_teaser .image-container {width: 40%; margin-right: 4%; float: left; display: inline-block; position: relative;}
.teamliste .ctlg_teaser .image-container .image_container {line-height: 0;}
.teamliste .ctlg_teaser .image-container .zitatbox {position: absolute; display: flex; justify-content: center; align-items: flex-end; box-sizing: border-box; padding: 25px; top: 0; left: 0; width: 100%; height: 100%; background: rgba(101,178,46,0.9) url(../../files/data/graphics/icon-quote-team.svg) top 30px center no-repeat; opacity: 0; transition: opacity 0.3s ease;}
.teamliste .ctlg_teaser .image-container .zitatbox h3 {color: #fff; margin: 0; padding: 0; text-align: center; hyphens: auto; width: 100%;}
.teamliste .ctlg_teaser .teamtext {width: 56%; display: inline-block; float: left;}
.teamliste .ctlg_teaser .teamtext .funktion {margin-top: 20px;}
.teamliste .ctlg_teaser .teamtext .funktion p span:after {content: ", ";}
.teamliste .ctlg_teaser .teamtext .funktion p span:last-of-type:after {content: "";}
.teamliste .ctlg_teaser .teamtext h2 {color: #707372; margin: 0; padding: 0 0 20px 0;}
.teamliste .ctlg_teaser .teamtext ul {display: table; margin-bottom: 25px;}
.teamliste .ctlg_teaser .teamtext ul li {vertical-align: middle; list-style: none; padding-left: 15px; background: url(../../files/data/graphics/icon-listbullet.svg) no-repeat top 12px left;}
.teamliste .ctlg_teaser .teamtext .telefon {padding-left: 30px; background: url(../../files/data/graphics/icon-team-phone.svg) center left no-repeat;}
.teamliste .ctlg_teaser .teamtext .telefon p {margin-bottom: 5px;}
.teamliste .ctlg_teaser .teamtext .email {padding-left: 30px; background: url(../../files/data/graphics/icon-team-mail.svg) center left no-repeat;}
.teamliste .ctlg_teaser .teamtext .email a {color: #9DA79E; text-decoration: none;}
.teamliste .ctlg_teaser:hover {margin-top: -3px; margin-bottom: 73px; box-shadow: 0 10px 35px 0 rgba(89,90,89,0.1);}
.teamliste .ctlg_teaser:hover .image-container .zitatbox {opacity: 1;}
.teamliste.verwaltungsratactive .ctlg_teaser .image-container .zitatbox {display: none;}
.teamliste.allefilteractive .ctlg_teaser.filter-Verwaltungsrat {position: fixed; bottom: 0; right: 0; opacity: 0; height: 1px; overflow: hidden;}
.teamliste.allefilteractive .ctlg_teaser.filter-Verwaltungsrat.filter-Vermarktung.filter-Beratung {position: relative; opacity: 1; height: auto;}

.teamhome .ctlg_teaser {display: none;}
.teamhome .ctlg_teaser:first-of-type {display: inline-block; background: #fff; width: 100%;}
.teamhome .ctlg_teaser .image-container {width: 33%; height: 285px; margin-right: 6%; float: left; display: inline-block; position: relative; overflow: hidden;}
.teamhome .ctlg_teaser .image-container .image_container {line-height: 0;}
.teamhome .ctlg_teaser .teamtext {width: 60%; display: inline-block; float: left;}
.teamhome .ctlg_teaser .teamtext .funktion {margin-top: 36px;}
.teamhome .ctlg_teaser .teamtext .funktion p span:after {content: ", ";}
.teamhome .ctlg_teaser .teamtext .funktion p span:last-of-type:after {content: "";}
.teamhome .ctlg_teaser .teamtext h2 {color: #707372; margin: 0; padding: 0 0 20px 0;}
.teamhome .ctlg_teaser .teamtext .telefon {padding-left: 30px; background: url(../../files/data/graphics/icon-team-phone.svg) center left no-repeat;}
.teamhome .ctlg_teaser .teamtext .telefon p {margin-bottom: 5px;}
.teamhome .ctlg_teaser .teamtext .email {padding-left: 30px; background: url(../../files/data/graphics/icon-team-mail.svg) center left no-repeat;}
.teamhome .ctlg_teaser .teamtext .email a {color: #9DA79E; text-decoration: none;}
.teamhome .ctlg_teaser .teamtext .telefon a {color: #9DA79E; text-decoration: none;}

/*  NEWS / TERMINE                                           */
/*************************************************************/
.mod_newslist.listhometop .layout_simple {position: relative; width: 100%; box-sizing: border-box; background: #00A8A6 url(../../files/data/graphics/news-simple-arrow.svg) center right 40px no-repeat; padding: 30px 50px 30px 40px; transition: transform 0.3s ease;}
.mod_newslist.listhometop .layout_simple:hover {transform: scale(1.05);}
.mod_newslist.listhometop .layout_simple .boxlink {display: block; position: absolute; top: 0; left: 0; z-index: 10; width: 100%; height: 100%; opacity: 0;}
.mod_newslist.listhometop .layout_simple h3 {font-size: 2.2rem; line-height: 2.6rem; font-family: 'robotobold'; color: #fff; margin: 0; padding: 0;}

.mod_newslist.listhome {margin-bottom: 80px;}
.mod_newslist.listhome .layout_latest {box-shadow: 0 3px 6px rgba(0,0,0,0.16); position: relative; transition: background 0.3s ease;}
.mod_newslist.listhome .layout_latest .newslink {display: block; position: absolute; z-index: 10; width: 100%; height: 100%; opacity: 0;}
.mod_newslist.listhome .layout_latest .image_container {line-height: 0;}
.mod_newslist.listhome .layout_latest .newstext {box-sizing: border-box; padding: 40px 30px 50px 30px; position: relative; min-height: 340px; background: #fff; color: #000; transition: color 0.3s ease, background 0.3s ease;}
.mod_newslist.listhome .layout_latest .newstext h3 {font-size: 3.2rem; line-height: 3.6rem; color: #000; transition: color 0.3s ease; margin: 0 0 8px 0; padding: 0;}
.mod_newslist.listhome .layout_latest .newstext h3 a {font-size: 3.2rem; line-height: 3.6rem; color: #000; text-decoration: none; transition: color 0.3s ease;}
.mod_newslist.listhome .layout_latest .newstext h3.title {margin-bottom: 15px;}
.mod_newslist.listhome .layout_latest .newstext .more {position: absolute; bottom: 20px; right: 20px; font-size: 2rem; line-height: 2.4rem; padding-right: 30px; background: url(../../files/data/graphics/icon-arrow-right-black.svg) center right no-repeat; color: #000; transition: color 0.3s ease, background 0.3s ease;}

.mod_newslist.listhome .layout_latest:hover {background: #327FA1;}
.mod_newslist.listhome .layout_latest .newslink:hover ~ .newstext {background: #327FA1; color: #fff;}
.mod_newslist.listhome .layout_latest .newslink:hover ~ .newstext h3 {color: #fff;}
.mod_newslist.listhome .layout_latest .newslink:hover ~ .newstext h3 a {color: #fff;}
.mod_newslist.listhome .layout_latest .newslink:hover ~ .newstext .more {color: #fff; background: url(../../files/data/graphics/icon-arrow-right-white.svg) center right no-repeat;}

.mod_newslist .pagination {clear: both; display: block; width: 100%; margin-top: 20px; float: left;}
.mod_newslist .pagination p {display: inline-block; float: right;}
.mod_newslist .pagination ul {display: inline-block; float: left;}
.mod_newslist .pagination ul li {width: auto; margin-right: 5px; display: inline-block; margin-bottom: 10px;}
.mod_newslist .pagination ul li a,
.mod_newslist .pagination ul li strong {text-decoration: none; padding:7px 0 5px 0; width: 30px; display: block; text-align: center; background: #ECECEC; color: #327FA1; transition: color 0.3s ease, background 0.3s ease;}
.mod_newslist .pagination ul li a:hover,
.mod_newslist .pagination ul li strong.active {background: #327FA1; color: #ECECEC;}
.mod_newslist .pagination ul li.next a,
.mod_newslist .pagination ul li.last a,
.mod_newslist .pagination ul li.first a,
.mod_newslist .pagination ul li.previous a {width: auto; padding: 7px 7px 5px 7px; text-decoration: none;}

.mod_newsreader .layout_full .newsbild .image_container {line-height: 0; border-top: 15px solid #327FA1; margin-bottom: 10px;}
.mod_newsreader .layout_full .back a {font-size: 1.6rem; padding-left: 20px; background: url(../../files/data/graphics/icon-arrow-left-black.svg) left center no-repeat; color: #000; text-decoration: none;}
.mod_newsreader .layout_full .info {margin: 30px 0; display: block; text-align: center; font-size: 1.6rem;}

/*  FOOTER                                                   */
/*************************************************************/
#footer {height: auto; display: block; position: relative; clear: both; position: relative; background: #777777; padding: 90px 0 70px 0; font-size: 1.6rem; line-height: 2rem; color: #fff; transition: filter 0.3s ease;}
#footer .inside {width: 94%; padding: 0px 3%; max-width: 1450px; margin: 0 auto;}
#footer .inside a {color: #fff; text-decoration: none; transition: color 0.3s ease;}
#footer .inside a:hover {color: #fdd304;}

#footer .footer-ch {position: absolute; top: 0; right: 3%; padding: 17px 0 17px 60px; background: url(../../files/data/graphics/icon-ch-footer.svg) center left no-repeat;}
#footer .footer-ch p {margin-bottom: 0;}
#footer .footertop {margin-left: -90px; margin-bottom: 40px;}

#footer .footer-c {position: absolute; bottom: 30px; right: 3%;}

/*  LIGHTBOX	                                             */
/*************************************************************/
#cboxTitle {display: none !important;} 
#cboxLoadedContent {border: none;} 
#cboxOverlay {background: #fff; opacity: 0 !important;}
#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;} 

/*  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: 1950px) {
	#header .navigation {margin-right: 10%;}
}

@media screen and (max-width: 1750px) {
	#footer .footertop {margin-left: 0;}
	#header .navigation {margin-right: 3%;}
	#header .navigation ul li {margin-left: 20px;}
}

@media screen and (max-width: 1350px) {
	#header .navigation {margin-right: 0;}
	#header .navigation ul li {margin-left: 10px;}
	#header .navigation ul li a {font-size: 1.4rem;}
    .topbild .rte h2 {top: 0; right: 10%; font-size: 4rem; line-height: 4.2rem;}
    .topbild .rte p {top: 40%; right: 30%; width: 155px; height: 155px;}
    body.schulerpfister .topbild .rte h2 {top: 1%;}
	body.schulerpfister .topbild .rte p {width: 125px; height: 125px;}
	body.schulerpfister .topbild .rte a {padding-top: 36%;}
    .linkboxnr .box {width: 48.5%;}
    .linkboxnr .box:nth-of-type(3n) {margin-right: 3%;}
    .linkboxnr .box:nth-of-type(3n+1) {clear: none;}
    .linkboxnr .box:nth-of-type(2n) {margin-right: 0 !important;}
    .linkboxnr .box:nth-of-type(2n+1) {clear: left !important;}
    #container #main .referenzdetail .hauptbild .ce_gallery ul li {width: 8vw; border-top: 7px solid #fff; border-bottom: 7px solid #fff; border-right: 7px solid #fff;}
    #container #main .referenzdetail .hauptbild .ce_gallery ul li:first-of-type {border-left: 7px solid #fff;}
    #main .ce_accordion .toggler .inside {background: url(../../files/data/graphics/icon-accordion-plus.svg) center left 15px no-repeat;}
    #main .ce_accordion .toggler.active .inside {background: url(../../files/data/graphics/icon-accordion-minus.svg) center left 15px no-repeat;}
    .teamliste .ctlg_teaser {width: 100%; margin-right: 0;}
    #topbildhome:after {display: none;}
    .content-text.servicebox h4 {font-size: 2.2rem; line-height: 2.8rem;}
    .content-text.servicebox .rte {font-size: 1.8rem; line-height: 2.5rem;}
}

@media screen and (max-width: 1100px) {
	#header {height: 100px;}
	#header .navigation {display: none;}
	#header .headerright {display: none;}
	#header .logo {margin-top: 20px; width: 150px;}
	#header .formularbuttons {display: none;}
	/*body.home .mod_article.topbild {display: none;}*/
	.mod_article.pulltop {margin-top: 0;}
	.content-text.box h2 {font-size: 4vw; margin: 0;}
	.content-text.box p {font-size: 1.8rem; line-height: 2.6rem;}
	.mod_article.moduletop {background: none;}
	#main .ce_accordion .toggler {font-size: 3rem; line-height: 3.4rem;}
	#main .ce_accordion .ce_hyperlink_acc {top: 17px; right: 0;}
	#main .ce_accordion .ce_hyperlink_acc a {padding: 10px 12px;}
	.content-text.servicebox h4 {font-size: 2.8rem; line-height: 3.6rem;}
	.content-text.servicebox .rte {font-size: 2.2rem; line-height: 2.6rem;}
	.innenabstand .rte {width: 94%; padding: 0 3%;}
	.content-text.servicebox .rte {position: relative; opacity: 1; background: none; color: #000; padding: 20px 0 5px 0;}

    #container .rs-column.-large-col-4-1 {width: 48.5%; margin-right: 3%; margin-top: 0;}
    #container .rs-column.-large-col-4-1:nth-of-type(2n) {margin-right: 0;}
    .linkboxnr .box {width: 100%; margin-right: 0;}
    #header .headertop {display: none;}
    #header .headerbot {height: 80px;}
    #header .headerbot .inside .navigation {display: none;}
    #header .headerbot .inside .logo {width: 130px; padding-top: 13px; margin-top: 0;}
    #container {padding-top: 100px;}
    .linkboximg .box {width: 48%;}
    /*.linkboximg .box:nth-of-type(3n) {margin-right: 3%;}
    .linkboximg .box:nth-of-type(3n+1) {clear: none;}
    .linkboximg .box:nth-of-type(2n) {margin-right: 0 !important;}
    .linkboximg .box:nth-of-type(2n+1) {clear: left !important;}*/
    .referenzliste .ctlg_teaser .image-container {width: 100%;}
    .referenzliste .ctlg_teaser .image-container img {width: 100%;}
    .referenzliste .ctlg_teaser .projekttext {width: 100%; padding: 50px 30px;}
    h1, h2 {font-size: 3rem; line-height: 4rem;}
    #container .ce_form {width: 100%;}
    .topbild .rte h2 {font-size: 4vw; line-height: 4.2vw; background-size: 20%; padding-bottom: 2vw;}
    .mod_article .zitatboxinhalt .inside {padding: 20px 3%;}
    .zitatboxinhalt {padding: 0 2%;}
    .zitatboxinhalt h2 {padding: 10px 10px 10px 50px; background: url(../../files/data/graphics/icon-quote-team.svg) left top 20px no-repeat;}
    .zitatboxinhalt h4 {padding: 0 10px 10px 50px;}
    .mod_article .inside {padding: 60px 4%;}
}

@media screen and (max-width: 750px) {
	.content-text.box .rte {display: none;}
	.content-text.box:hover h2 {opacity: 1;}
	#footer .footer-c {right: initial; left: 3%;}
	.inhaltslider .slick-container .slick-dots li {width: 11px; height: 11px;}
    #container .rs-column.-large-col-2-1 {width: 100%; margin-right: 0; margin-top: 0;}
    #container .rs-column.-large-col-3-1 {width: 100%; margin-right: 0; margin-top: 0;}
    #container .rs-column.-large-col-4-1 {width: 100%; margin-right: 0; margin-top: 0;}
    .schmal75 {width: 100% !important; margin: 0 auto;}
    .schmal50 {width: 100% !important; margin: 0 auto;}
    h1, h2 {font-size: 2.6rem; line-height: 3.2rem; margin-top: 30px; padding-bottom: 20px;}
    h3 {font-size: 2.3rem; line-height: 3rem; margin-top: 30px; padding-bottom: 10px;}
    h4 {font-size: 2.3rem; line-height: 3rem;}
    .linkboximg .box {width: 100%; margin-right: 0; margin-left: 0;}
    .teamliste .ctlg_teaser .image-container {width: 100%; margin-right: 0;}
    .teamliste .ctlg_teaser .teamtext {width: 100%; box-sizing: border-box; padding: 20px;}
    .teamhome .ctlg_teaser .image-container {width: 100%; margin-right: 0; height: auto; text-align: center;}
    .teamhome .ctlg_teaser .teamtext {width: 100%; box-sizing: border-box; padding: 20px;}
    .topbild .rte p {display: none;}
    .mod_article.topbild, .mod_article.topbild .content-image {height: 43vw;}
    .mod_article.topbild .content-text {top: 17%;}
    .mod_article.topbild h1, .mod_article.topbild h2 {font-size: 5.5vw; line-height: 6.5vw; margin: 0; padding: 0;}
    .mod_article.topbild h1 img, .mod_article.topbild h2 img {display: none;}
    body.schulerpfister .topbild .rte p {display: block; bottom: 10%; right: 10%; width: 100px; height: 100px; top: initial;}
    body.schulerpfister .topbild .rte a {font-size: 1.4rem; line-height: 1.8rem;}
    body.schulerpfister .topbild .rte a img {width: 10px;}
    .zitatboxinhalt h2 {font-size: 2.3rem; line-height: 2.8rem; hyphens: all;}
    .divider {background-size: 60px; height: 30px; margin: 10px auto;}
    #container .content-text {margin-bottom: 20px;}
    #main .ce_accordion .toggler {padding-right: 105px;}
    #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%;}
}

@media screen and (max-width: 550px) {
	.inhaltslider {hyphens: auto;}
	.inhaltslidernav {hyphens: auto;}
	.inhaltslider p strong {font-size:1.8rem; line-height: 2.1rem; hyphens: none;}
	.inhaltslidernav p strong {font-size:1.8rem; line-height: 2.1rem; hyphens: none;}
	.mod_article .inside {padding: 30px 4%;}
	.mod_article.lesspadding .inside {padding: 30px 4%;}
}


/*  FONTS                                                    */
/*************************************************************/
@font-face {
    font-family: 'robotoregular';
    src: url('../../files/data/style/Fonts/roboto-regular-webfont.woff2') format('woff2'),
         url('../../files/data/style/Fonts/roboto-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'robotolight';
    src: url('../../files/data/style/Fonts/roboto-light-webfont.woff2') format('woff2'),
         url('../../files/data/style/Fonts/roboto-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'robotoitalic';
    src: url('../../files/data/style/Fonts/roboto-italic-webfont.woff2') format('woff2'),
         url('../../files/data/style/Fonts/roboto-italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'robotomedium';
    src: url('../../files/data/style/Fonts/roboto-medium-webfont.woff2') format('woff2'),
         url('../../files/data/style/Fonts/roboto-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'robotobold';
    src: url('../../files/data/style/Fonts/roboto-bold-webfont.woff2') format('woff2'),
         url('../../files/data/style/Fonts/roboto-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


/*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;}
/* NUUNNAV CSS*/
.nuunnavbutton {display: none; width: 30px; cursor: pointer; position: fixed; z-index: 2500; top: 39px; right: 4%}
.nuunnavbutton .navline {height: 3px; width: 100%; margin-bottom: 6px; border-radius: 0px; background: #000; opacity: 1; transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;}
.nuunnavbutton .navline:last-of-type {margin-bottom: 0; width: 12px;float: right;}

.nuunnavbutton.crossed .navline {background: #000;}
.nuunnavbutton.crossed .navline.top {transform: rotate(-45deg) translateY(6px) translateX(0px);}
.nuunnavbutton.crossed .navline.mid {opacity: 0;}
.nuunnavbutton.crossed .navline.bot {transform: rotate(-135deg) translateY(13px) translateX(7px);}
.nuunnavbutton.crossed .navline:last-of-type {width: 100%; float: none;}

#nuunnav {display: none; padding-top: 11px; font-family: 'robotobold'; font-size: 2.2rem; padding-left: 25px; padding-right: 25px; position: fixed; overflow-y: auto; top: 0; width: 100%; max-width: 500px; background: #fff; /*border:10px solid #fff;*/ height: 100vh; z-index: 2000; box-sizing: border-box; transition:right 0.6s ease, box-shadow 0.3s ease;}
#nuunnav.open {right: 0 !important; box-shadow: -650px 0 0px 650px rgba(233,235,240,0.85);}
#nuunnav .inside {padding-bottom: 150px;}

#nuunnav .navigation {display: inline-block; width: 100%; padding-bottom: 10px; padding-top: 0px; margin-top: 5px;}
#nuunnav li a {color: #45413d; text-decoration: none; transition:color 0.3s ease;}
#nuunnav li a.active {font-family: 'robotobold'; color: #00A8A6;}
#nuunnav li a:hover {color: #00A8A6;}
#nuunnav ul {list-style: none; padding-left: 0; display: inline-block; width: 100%; margin: 0;}
#nuunnav ul.level_1 {margin: 0;}
#nuunnav ul.level_1 > li {display: inline-block; width: 100%;}
#nuunnav ul.level_1 > li > a {display: inline-block; font-size: 3rem; line-height: 4rem; float: left; clear: left; padding: 10px 0 0 0;}
#nuunnav ul.level_1 > li.submenu > a {margin-right: 0px; float: left; clear: left;}
#nuunnav ul li.submenu .subtoggler {width: 50px; height: 28px; margin-top: 10px; position: relative; display: flex; align-items: center; justify-content: center; float: left; cursor: pointer;}
#nuunnav ul.level_2 li.submenu .subtoggler {height: 25px;}
#nuunnav ul li.submenu .subtoggler .subtoggline1 {width: 15px; height: 2px; background: #45413d;}
#nuunnav ul li.submenu .subtoggler .subtoggline2 {width: 15px; height: 2px; background: #45413d; position: absolute; transform: rotate(90deg); transition: transform 0.3s ease;}
#nuunnav ul li.submenu .subtoggler.down .subtoggline2 {transform: rotate(0deg);}

#nuunnav ul.level_2 {display: none; margin:0;}
#nuunnav ul.level_2 > li > a {display: inline-block; font-family: 'robotoregular'; text-transform: none; font-size: 1.8rem; float: left; clear: left; padding: 7px 0 0 15px;}
#nuunnav ul.level_2 li a.active {font-family: 'robotoregular';}
#nuunnav ul.level_2 li a:hover {color: #00A8A6; background: url(../../files/data/graphics/icon-nav-bg.svg) center left 4vw no-repeat;}

#nuunnav ul.level_3 {display: none;}
#nuunnav ul.level_3 > li > a {display: inline-block; font-family: 'robotoregular'; text-transform: none; font-size: 1.8rem; float: left; clear: left; padding: 5px 0 5px 0;}
#nuunnav ul.level_3 li a.active {font-family: 'robotoregular';}
#nuunnav ul.level_3 li a:hover {color: #00A8A6; background: url(../../files/data/graphics/icon-nav-bg.svg) center left 6vw no-repeat;}

@media screen and (max-width: 1100px) {
	.nuunnavbutton {display: block;}
	#nuunnav {display: block;}
}

@media screen and (max-width: 800px) {
	#nuunnav li a.active {font-family: 'robotobold';}
	#nuunnav li a:hover {color: #00A8A6;}
	#nuunnav ul.level_2 li a.active {font-family: 'robotobold';}
	#nuunnav ul.level_2 li a:hover {color: #00A8A6;}
	#nuunnav ul.level_3 li a.active {font-family: 'robotobold';}
	#nuunnav ul.level_3 li a:hover {color: #00A8A6;}
}

/*@media screen and (max-width: 650px) {
	.nuunnavbutton {width: 45px; top: 36px;} 
    .nuunnavbutton .navline {margin-bottom: 8px;}
    .nuunnavbutton.crossed .navline.top {transform: rotate(-45deg) translateY(5px) translateX(-7px);}
    .nuunnavbutton.crossed .navline.bot {transform: rotate(-135deg) translateY(10px) translateX(12px);}
}*/
