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}
#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:  KLUSER.CH						     	 	 	 */
/*   File:    screen.css					                 */
/*-----------------------------------------------------------*/
/*   Autor:   Thomas Dürig, www.nuun.ch 	                 */
/*   Datum:   Juli 2020						                 */
/*   Site: 	  www.kluser.ch             					 */
/*************************************************************/
/*  LAYOUT													 */
/*************************************************************/

/*FARBEN*/
/*	

*/

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

html, body {position: relative; height: 100%; width:100%; font: 62.5% "montserratregular", Arial, Verdana, Helvetica, sans-serif; letter-spacing:0em;}
body {font-size:16px; font-size:1.6rem; color: #ffffff; background-color: #FE1006;}

.invisible {display: none !important;}

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

strong {font-family: 'montserratextrabold';}

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

/*  HEADER / NAVIGATION									     */
/*************************************************************/
#header {position: fixed; top: 0; left: 0; height: 140px; width: 100%; background: #FE1006; z-index: 1000;}
#header .inside {width: 94%; padding: 0 3%; max-width: 1400px; margin: 0 auto;}
#header .inside .logo {margin-top: 55px; float: left; display: inline-block;}
#header .inside .headertel {margin-top: 52px; float: right; display: inline-block; margin-right: 50px; padding-right: 20px; margin-left: 20px; border-right: 1px solid #fff;}
#header .inside .headermail {margin-top: 52px; float: right; display: inline-block; padding-right: 20px; padding-left: 20px; border-right: 1px solid #fff; border-left: 1px solid #fff;}

#nuunnav .inside .logo {margin-top: 55px; display: inline-block;}
#nuunnav .inside .mod_customnav {margin-top: 20vh;}

#nuunnav .navsocials {display: block; width: 400px; padding-top: 30px; bottom: 30px; left: 0; right: 0; margin: 0 auto; text-align: center; border-top: 1px solid #fff;}
#nuunnav .navsocials p {font-size: 1.3rem;}
#nuunnav .navsocials p a {color: #fff; text-decoration: none; display: inline-block; margin: 0 15px;}

.mod_customnav ul li a {text-transform: uppercase; color: #fff; text-decoration: none; font-size: 3.6rem; line-height: 4.4rem; display: block; padding-left: 40px; margin-bottom: 25px; background: url(../../files/data/graphics/arrow-right.svg) center left no-repeat; transition: background 0.15s ease;}
.mod_customnav ul li a::before {display: block; content: attr(title); text-align: center; font-family: 'montserratextrabold'; height: 0; overflow: hidden; visibility: hidden;}
.mod_customnav ul li a.active,
.mod_customnav ul li a.trail,
.mod_customnav ul li a:hover {font-family: 'montserratextrabold'; background: url(../../files/data/graphics/arrow-right-hover.svg) center left no-repeat;}

/*  INHALTSELEMENTE                                          */
/*************************************************************/
body.home #container {padding-top: 0;}
#container {padding-top: 200px;}

body.home .mod_article .inside {padding: 200px 3% 0 3%;}
.mod_article .inside {position: relative; width: 94%; padding: 0 3%; max-width: 1400px; margin: 0 auto;}

h1 {font-size: 4.8rem; line-height: 5.2rem; font-family: 'montserratextrabold'; color: #fff; text-transform: uppercase; margin-top: 20px;}
h2 {font-size: 4.8rem; line-height: 5.2rem; font-family: 'montserratregular'; color: #fff; text-transform: uppercase; margin-top: 0;}
h3 {font-size: 2.4rem; line-height: 2.6rem; font-family: 'montserratextrabold'; color: #fff; text-transform: uppercase;}

/*Slides Home*/
#scroll-start h1 {font-size: 7.2rem; line-height: 7.2rem; margin:0 0 5px 0;}
#scroll-start h2 {font-size: 7.2rem; line-height: 7.2rem; margin:0 0 5px 0;}
#scroll-start h3 {font-size: 3.6rem; line-height: 3.6rem; margin:0 0 5px 0;}
#scroll-start .walze {position: absolute; right: 0; bottom: 0;}

.scrollnext {position: absolute; width: 94%; bottom: 50px; text-align: center; z-index: 200;}
.scrollnext img {cursor: pointer;}

#scroll-kontakt .inside {max-width: 100%; padding: 200px 0 0 0; width: 100%;}
#scroll-kontakt .ce_dlh_googlemaps {height: 65vh;}
#scroll-kontakt .ce_dlh_googlemaps .dlh_googlemap {height: 65vh; padding-bottom: 0 !important;}

body.home .pagination {position:fixed; right:20px; top: 50%; transform: translateY(-50%); font-size:1.4em; z-index: 10;}
body.home .pagination a {display:block; height:30px; width: 5px; margin-bottom:5px; color:white; position:relative; padding:4px;}
body.home .pagination a.active:after {width: 5px;}
body.home .pagination a .hover-text {position:absolute; right:15px; top:7px; opacity:0; -webkit-transition: opacity 0.5s ease; transition: opacity 0.5s ease; padding-right: 15px;}
body.home .pagination a:hover .hover-text {opacity: 1;}
body.home .pagination a:after {-webkit-transition:width 0.5s ease; transition:width 0.5s ease; background: #fff; width: 2px; height: 30px; display: block; content:''; position: absolute; margin:auto; top:0; right:4px; bottom:0;}

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

.ce_text a {color: #fff; text-decoration: underline;}

#container .ce_text {margin-bottom: 30px;}
#container .ce_text .image_container.float_left {width: 48.5%; float: left; margin-right: 3%;}
#container .ce_text .image_container.float_right {width: 48.5%; float: right; margin-left: 3%;}

.ce_text.textgross {font-size: 2.4rem; line-height: 2.9rem;}

/*Gallery*/
#container #main .ce_gallery ul 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;}
 
/*List*/
#main .ce_text ul {display: table; margin-bottom: 25px;}

#main .ce_text ul li {vertical-align: middle; list-style: none; padding-left: 25px; background: url(../../files/data/graphics/icon-listbullet.svg) no-repeat top 14px left;}

#main .ce_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 .ce_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 .ce_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: 0px;
    font-size: 1.6rem;
    color: #ffffff;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
}

/*Downloads*/
.ce_download.sc.last, .ce_downloads.sc.last {padding-right: 0;}
.ce_download, .ce_downloads {position:relative; width:100%; margin:0; padding:0;}
.ce_download ul, .ce_downloads ul {position:relative; float:left; width:100%; margin:0; padding:0 0 0 0;}
.ce_download ul li, .ce_downloads ul li {position:relative; width:100%; line-height:21px; padding:0 0 0 0; margin:0 0 8px 0; background:#ffffff;transition: transform 0.5s ease; -webkit-transition: transform 0.5s ease; }

.ce_download img, .ce_downloads img {position:absolute; left:10px; top:7px; z-index:400;}
body #container .ce_downloads a, body #container .ce_downloads a:link, body #container .ce_downloads a:visited, body #container .ce_download a, body #container .ce_download a:visited, body #container .ce_download a:link, body #container .enclosure a:link, body #container .enclosure a:visited {
    position:relative;
    z-index:300;
    text-decoration: none;
    color: #FE1006;
    display:block;
    padding:8px 30px 8px 40px;
    margin:0 0 0 0;
    
    }   
        
body #container .ce_downloads li:hover, 
body #container .ce_downloads li:active, 
body #container .ce_download li:hover, 
body #container .ce_download li:active {transform: scale(1.02);}   

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

#container .ce_form {margin-top: 40px; width: 100%; margin-right: auto; margin-left: auto;}
#container .formbody label {width: 100%; padding-top: 10px; margin-bottom: 5px; display: inline-block; float: left;}
#container .formbody input {box-sizing: border-box; width: 100%; padding:12px; margin-bottom: 5px; border:none; background-color: #fff;}
#container .formbody textarea {box-sizing: border-box; width: 100%; padding:12px; border: none; margin-bottom: 20px; margin-top: 20px; background-color: #fff;}
#container .formbody .submit {cursor: pointer; float: right; color: #fff; font-family: 'montserratbold'; text-align: center; display: block; padding: 10px 25px; border:2px solid #fff; border-top-left-radius: 15px; border-bottom-right-radius: 15px; background: #FE1006; font-size: 1.8rem; line-height: 1.8rem; text-decoration: none; transition: color 0.3s ease, background 0.3s ease;}
#container .formbody .submit:hover {background: #fff; color: #FE1006;}
#container .formbody select {box-sizing: border-box; width: 100%; padding:2%; margin-bottom: 15px; border:none; background-color: #fff;}
#container .formbody fieldset {margin-bottom: 10px;}
#container .formbody fieldset legend {font-size: 1.6rem; margin-bottom: 5px;} 
#container .formbody fieldset span {width:100%; float: left;}
#container .formbody fieldset span input {float: left; width: 5%; height: 26px;}
#container .formbody fieldset span label {padding-top: 0; width: 95%;}
#container .formbody .widget-captcha {margin-bottom: 40px;}
#container .formbody .widget-captcha input {margin-bottom: 5px;}
#container .formbody .widget-captcha span {width: 100%; float: left;}
#container .formbody .widget-captcha label span.mandatory {width: auto; float: none;}
#container .formbody .widget-checkbox input {-webkit-appearance:checkbox;}
#container .formbody .widget-checkbox legend span {width: auto; float: none;}
#container .formbody .widget-radio input {-webkit-appearance:radio;}
#container .formbody ::placeholder {color: #FE1006;}
#container .formbody input.upload {background:none; padding-left: 120px; position: relative;}

/*radio und checkbox templates von scayla*/
#container .formbody .checkbox_container a {color: #d67500; text-decoration: none;}
#container .formbody .checkbox_container input {position: absolute;opacity: 0;cursor: pointer;height: 0;width: 0; background: #dedede;}
#container .formbody .checkbox_container label {cursor: pointer; width: 100%; position: relative; margin-bottom: 40px; display: inline-block;}
#container .formbody .checkbox_container span {width: 90px; margin-right: 15px;}
#container .formbody .checkbox_container span.lname {width: auto; padding-top: 5px;}
#container .formbody .checkbox_container .checkmark {cursor: pointer; position: relative; height: 38px; width: 38px; background-color: #fff; border:1px solid #E9EBF0;}
#container .formbody .checkbox_container:hover input ~ .checkmark {background-color: #fff;}
#container .formbody .checkbox_container input:checked ~ .checkmark {/*background-color: #EE6930;*/}
#container .formbody .checkbox_container .checkmark:after {content: ""; position: absolute; display: none;}
#container .formbody .checkbox_container input:checked ~ .checkmark:after {display: block;}
#container .formbody .checkbox_container .checkmark:after {top: 0px; left: 0px; width: 38px; height: 38px; background: url(../../files/data/graphics/checkmark.svg) center no-repeat; background-size: 23px;}

#container .formbody .radio_container a {color: #d67500; text-decoration: none;}
#container .formbody .radio_container input {position: absolute;opacity: 0;cursor: pointer;height: 0;width: 0; background: #dedede;}
#container .formbody .radio_container label {cursor: pointer; width: 150px; position: relative; margin-bottom: 40px; display: inline-block;}
#container .formbody .radio_container span {width: 90px; margin-right: 15px;}
#container .formbody .radio_container span.lname {width: auto; padding-top: 5px;}
#container .formbody .radio_container .checkmark {cursor: pointer; position: relative; height: 38px; width: 38px; background-color: #fff; border:1px solid #E9EBF0; border-radius: 50px;}
#container .formbody .radio_container:hover input ~ .checkmark {background-color: #fff;}
#container .formbody .radio_container input:checked ~ .checkmark {/*background-color: #EE6930;*/}
#container .formbody .radio_container .checkmark:after {content: ""; position: absolute; display: none;}
#container .formbody .radio_container input:checked ~ .checkmark:after {display: block;}
#container .formbody .radio_container .checkmark:after {top: 9px; left: 9px; width: 21px; height: 21px; background: #104D73; position: absolute; border-radius: 50px;}

#container .formbody .widget-upload input::-webkit-file-upload-button {
  visibility: hidden;
}
#container .formbody .widget-upload input::before {
  content: 'Upload Unterlagen';
  	position: absolute;
  	left: 0; top: 3px;
    cursor: pointer;
    color: #fff;
    font-family: 'montserratbold';
    text-align: center;
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid #fff;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    background: #FE1006;
    font-size: 1.8rem;
    line-height: 1.8rem;
    text-decoration: none;
    transition: color 0.3s ease, background 0.3s ease;
}
#container .formbody .widget-upload input:hover::before {
  background: #fff;
    color: #FE1006;
}
#container .formbody .widget-upload input:active::before {
  background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
}

/*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 .ce_youtube {clear: both;}
#container .ce_youtube embed {width: 100%;}
#container .ce_youtube video {width: 100%;}

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

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

/*Team*/
.team .box {min-height: 455px; box-sizing: border-box; display: inline-block; width: 23.5%; margin-right: 2%; margin-bottom: 40px; float: left; border-bottom: 2px solid #fff; padding-bottom: 20px;}
.team .box:nth-of-type(4n) {margin-right: 0;}
.team .box:nth-of-type(4n+1) {clear: left;}
.team .box h3 {padding-bottom: 15px; margin-bottom: 15px; border-bottom: 5px solid #fff;}
.team .box a {color: #fff; text-decoration: none;}
.team .box .email {overflow: visible; padding: 4px 0 4px 40px; margin-bottom: 4px; background: url(../../files/data/graphics/team-mail.svg) center left no-repeat;}
.team .box .telefon {overflow: visible; padding: 4px 0 4px 40px; margin-bottom: 4px; background: url(../../files/data/graphics/team-phone.svg) center left 3px no-repeat;}
.team .box .pdf_download {overflow: visible; padding: 4px 0 4px 40px; margin-bottom: 4px; background: url(../../files/data/graphics/icon-pdf-weiss.svg) center left 3px no-repeat;}

/*  NEWS / TERMINE                                           */
/*************************************************************/
.mod_newslist.newsteaser .layout_latest {margin-bottom: 20px;}
.mod_newslist .layout_latest {position: relative; display: inline-block; width: 23.5%; margin-right: 2%; margin-bottom: 60px; float: left; background: url(../../files/data/graphics/news-list-line.svg) top left no-repeat; padding-top: 10px;}
.mod_newslist .layout_latest .newsboxlink {position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 10; cursor: pointer;}
.mod_newslist .layout_latest:nth-of-type(4n) {margin-right: 0;}
.mod_newslist .layout_latest:nth-of-type(4n+1) {clear: left;}
.mod_newslist .layout_latest time {font-family: 'montserratextrabold'; font-size: 1rem; line-height: 2.2rem; text-transform: uppercase;}
.mod_newslist .layout_latest .info {margin-bottom: 8px;}
.mod_newslist .layout_latest .image_container {margin-bottom: 20px; overflow: hidden; line-height: 0;}
.mod_newslist .layout_latest .image_container img {transition: transform 0.3s ease;}
.mod_newslist .layout_latest:hover .image_container img {transform: scale(1.1);}
.mod_newslist .layout_latest .subheadline {font-size: 1rem; line-height: 2.2rem; text-transform: uppercase;}
.mod_newslist .layout_latest h3 {margin-top: 20px; min-height: 60px; hyphens: auto; -webkit-hyphens: auto;}
.mod_newslist .layout_latest h3 a {color: #fff; text-decoration: none;}
.mod_newslist .layout_latest .more {display: block; border-bottom: 2px solid #fff; position: absolute; bottom: 0; width: 100%;}
.mod_newslist .layout_latest .more a {display: block; width: 100%; height: 40px; background: url(../../files/data/graphics/arrow-right.svg) center right no-repeat;}
.mod_newslist .layout_latest .newstext {min-height: 285px; position: relative; padding-bottom: 40px;}

.pagination {clear: both;}
.pagination p {display: inline-block; float: right; line-height: 2rem;}
.pagination ul {display: inline-block; list-style: none; padding-left: 0;}
.pagination ul li {display: inline-block; list-style: none; line-height: 2rem; float: left; padding: 0 10px; border-right: 1px solid #ffffff;}
.pagination ul li:last-of-type {border-right: none;}
.pagination ul li a {color: #ffffff; text-decoration: none; transition: color 0.3s ease;}
.pagination ul li a:hover {color: #ffffff;}
.pagination ul li strong {font-family: 'montserratextrabold'; color: #ffffff;}

.layout_full .topbuttons div {display: inline-block; float: right; margin-left: 40px; margin-bottom: 30px;}
.layout_full .topbuttons div a {color: #fff; font-family: 'montserratbold'; text-align: center; display: block; padding: 10px 25px; border:2px solid #fff; border-top-left-radius: 15px; border-bottom-right-radius: 15px; background: #FE1006; font-size: 1.8rem; line-height: 1.8rem; text-decoration: none; transition: color 0.3s ease, background 0.3s ease;}
.layout_full .topbuttons div a:hover {background: #fff; color: #FE1006;}
.layout_full p.info {font-family: 'montserratextrabold'; font-size: 1rem; padding-top: 10px; margin-top: 20px; border-top: 2px solid #fff;}

.mod_newsreader h1 {hyphens: auto; -webkit-hyphens: auto;}
.mod_newsreader p.back {display: none;}


/*  PROJEKTE		                                         */
/*************************************************************/
body.projekte .mod_catalogUniversalView {display: flex; justify-content: space-between; flex-wrap: wrap; padding-top: 30px; position: relative;}
body.projekte .mod_catalogUniversalView.projektefull:before {content: ""; display: block; width: 48%; height: 5px; background: #fff; position: absolute; top: 0; left: 0;}
body.projekte .mod_catalogUniversalView.projektefull:after {content: ""; display: block; width: 48%; height: 5px; background: #fff; position: absolute; top: 0; right: 0;}
body.projekte .ctlg_teaser {width: 48%;}
body.projekte .mod_catalogUniversalView {border-top: none; margin-top: 0px;}
.mod_catalogUniversalView {padding-top: 25px; border-top: 5px solid #fff; margin-top: 30px;}
.ctlg_teaser {display: inline-block; width: 100%; position: relative; padding-bottom: 20px; border-bottom: 2px solid #fff; margin-bottom: 25px; background-position: right bottom 25px; transition: border-bottom 0.3s ease, background 0.3s ease, padding-bottom 0.3s ease;}
.ctlg_teaser:hover {border-bottom: 5px solid #fff; background: url(../../files/data/graphics/arrow-right-hover.svg) right bottom 25px no-repeat; padding-bottom: 17px;}
.ctlg_teaser .masterlink {display: block; z-index: 100; position: absolute; top: 0; left: 0; width: 100%; height: 100%;}
.ctlg_teaser .image-container {display: inline-block; width: 37%; margin-right: 5%; float: left;}
.ctlg_teaser .projekttext {display: inline-block; width: 58%; float: left; box-sizing: border-box; padding-bottom: 20px;}
.ctlg_teaser .projekttext .dienstleistung span {display: inline-block; text-transform: uppercase; padding: 0 6px; border-right: 1px solid #fff;}
.ctlg_teaser .projekttext .dienstleistung span:first-of-type {padding-left: 0;}
.ctlg_teaser .projekttext .dienstleistung span:last-of-type {padding-right: 0; border-right: none;}
.ctlg_teaser .projekttext h3 {margin-top: 6px; hyphens: auto; -webkit-hyphens: auto;}
.ctlg_teaser .projekttext h3 a {color: #fff; text-decoration: none;}
.ctlg_teaser .projekttext .textbot {position: absolute; left: 42%; bottom: 25px; transition: bottom 0.3s ease;}
.ctlg_teaser:hover .projekttext .textbot {bottom: 22px;}

body.projekte #container .mixfiltercontainer .ce_text {margin-bottom: 0;}
body.projekte .mod_catalogUniversalView.projektefilter {padding-top: 0; margin-top: 0;}
body.projekte .mod_catalogUniversalView.projektefilter button,
body.projekte .mixitup-sandbox_menu-item {cursor: pointer; width: 100%; margin-bottom: 10px; margin-top: 10px; box-sizing: border-box; padding-left: 20px; border: none; background: none; color: #fff; font-family: 'montserratregular'; font-size: 1.6rem; text-align: left; text-transform: uppercase;}
body.projekte .mod_catalogUniversalView.projektefilter button.mixitup-control-active {font-family: 'montserratextrabold';}
body.projekte .mod_catalogUniversalView.projektefilter button:focus,
body.projekte .mixitup-sandbox_menu-item:focus {outline: none;}
body.projekte #container .mixfiltercontainer .borderoben {border-top: 5px solid #fff; padding-top: 20px;}
body.projekte #container .mixfiltercontainer .borderunten {border-bottom: 2px solid #fff; padding-bottom: 10px; margin-bottom: 20px;}
body.projekte #container .mixfiltercontainer .filterslider .ce_text {cursor: pointer;}
body.projekte #container .mixfiltercontainer .filterslider.closed .projektefilter {display: none;}
body.projekte #container .mobilefilterbutton {display: none;}
body.projekte #container .mobilefilterbutton p {color: #fff; float: right; display: inline-block; font-family: 'montserratbold'; text-align: center; padding: 5px 15px; border:2px solid #fff; border-top-left-radius: 15px; border-bottom-right-radius: 15px; background: #FE1006; font-size: 1.5rem; line-height: 1.8rem; text-decoration: none; transition: color 0.3s ease, background 0.3s ease;}
body.projekte #container .mobilefilterbutton p:hover {background: #fff; color: #FE1006;}
body.projekte #container .mobilefilterbutton p {margin-bottom: 0;}
body.projekte #container .mixfiltercontainer .mobilefilterclose {display: none;}
body.projekte #container .mixfiltercontainer .filterlogo {display: none;}

.mod_catalogMasterView .dienstleistung span {display: inline-block; text-transform: uppercase; padding: 0 10px; border-right: 3px solid #fff;}
.mod_catalogMasterView .dienstleistung span:first-of-type {padding-left: 0;}
.mod_catalogMasterView .dienstleistung span:last-of-type {padding-right: 0; border-right: none;}

.mod_catalogMasterView .topbuttons div {display: inline-block; float: right; margin-left: 40px;}
.mod_catalogMasterView .topbuttons div a {color: #fff; font-family: 'montserratbold'; text-align: center; display: block; padding: 10px 25px; border:2px solid #fff; border-top-left-radius: 15px; border-bottom-right-radius: 15px; background: #FE1006; font-size: 1.8rem; line-height: 1.8rem; text-decoration: none; transition: color 0.3s ease, background 0.3s ease;}
.mod_catalogMasterView .topbuttons div a:hover {background: #fff; color: #FE1006;}

.mod_catalogMasterView .maincontainer {clear: both; margin-top: 30px; line-height: 2.2rem;}
.mod_catalogMasterView .toptitel {hyphens: auto; -webkit-hyphens: auto;}
.mod_catalogMasterView .beschreibung {font-family: 'montserratlight'; font-size: 1.8rem; line-height: 2.4rem; margin-bottom: 20px;}
.mod_catalogMasterView .borderoben {border-top: 5px solid #fff; padding-top: 20px;}
.mod_catalogMasterView .borderunten {border-bottom: 2px solid #fff; padding-bottom: 10px; margin-bottom: 20px;}
.mod_catalogMasterView .maincontainer .dienstleistung {padding-bottom: 24px;}
.mod_catalogMasterView .maincontainer .dienstleistung p {margin-bottom: 0;}
.mod_catalogMasterView .maincontainer .dienstleistung p strong {margin-bottom: 12px; display: block;}
.mod_catalogMasterView .maincontainer table,
.mod_catalogMasterView .maincontainer table td {border: none !important;}
.mod_catalogMasterView .maincontainer p a {color: #fff; text-decoration: none;}
#container #main .mod_catalogMasterView .maincontainer .ce_gallery ul {margin-bottom: 0; border-bottom: 2px solid #fff; /*display: flex; justify-content: space-between; flex-wrap: wrap;*/}
#container #main .mod_catalogMasterView .maincontainer .ce_gallery ul li.row_first.col_first {width: 100%; height: auto;}
#container #main .mod_catalogMasterView .maincontainer .ce_gallery ul li {width: 14.66665%; height: auto; margin-right: 2.4%; margin-bottom: 20px;}
#container #main .mod_catalogMasterView .maincontainer .ce_gallery ul li:nth-of-type(6n+1) {margin-right: 0;}

/*  FOOTER                                                   */
/*************************************************************/
#footer {height: auto; display: block; clear: both; position: relative; margin-top: 60px;}
#footer .inside {width: 94%; padding: 0 3%; max-width: 1400px; margin: 0 auto;}
#footer a {color: #fff; text-decoration: none;}
#footer .rechts {margin-top: 110px;}
#footer .rechts a {margin-left: 30px; display: inline-block;}

body.home #footer {display: none;}
#footerhome {height: auto; display: block; clear: both; position: relative;}
#footerhome .spacer {width: 94%; padding: 60px 3% 0 3%; max-width: 1400px; margin: 0 auto;}
#footerhome a {color: #fff; text-decoration: none;}
#footerhome .rechts {margin-top: 110px;}
#footerhome .rechts a {margin-left: 30px; display: inline-block;}

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

/*  FIXES		                                             */
/*************************************************************/
body.home .clearfix:after {display: none;}
body #nuunnav .navsocials .clearfix:after {display: none;}
.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: 1100px) {
    #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;}
	h1 {font-size: 4rem; line-height: 4.6rem;}
	h2 {font-size: 4rem; line-height: 4.6rem;}
	#scroll-start h1 {font-size: 4rem; line-height: 4.6rem; margin:0 0 5px 0;}
	#scroll-start h2 {font-size: 4rem; line-height: 4.6rem; margin:0 0 5px 0;}
	#scroll-start h3 {font-size: 2.4rem; line-height: 2.6rem; margin:0 0 5px 0;}
	.scrollnext {display: none;}
	.mod_newslist .layout_latest {display: inline-block; width: 48.5%; margin-right: 3%; margin-bottom: 60px; float: left; background: url(../../files/data/graphics/news-list-line.svg) top left no-repeat; padding-top: 10px;}
	.mod_newslist .layout_latest:nth-of-type(2n) {margin-right: 0;}
	.mod_newslist .layout_latest:nth-of-type(2n+1) {clear: left;}
	.team .box {display: inline-block; width: 48.5%; margin-right: 3%; margin-bottom: 60px; float: left; background: url(../../files/data/graphics/news-list-line.svg) top left no-repeat; padding-top: 10px;}
	.team .box:nth-of-type(2n) {margin-right: 0;}
	.team .box:nth-of-type(2n+1) {clear: left;}
	#scroll-kontakt .ce_dlh_googlemaps {height: 65vw;}
	#scroll-kontakt .ce_dlh_googlemaps .dlh_googlemap {height: 65vw; padding-bottom: 0 !important;}
	#footerhome .rechts {margin-top: 0;}
	#footerhome .rechts p {text-align: left !important;}
	.mod_customnav ul li a {font-size: 2.5rem; line-height: 3.2rem; margin-bottom: 15px;}
    #nuunnav {padding-bottom: 40px;}
	#nuunnav .inside .mod_customnav {margin-top: 0;}
	#nuunnav .inside .mod_customnav.customnav1 {margin-top: 30px; border-top: 5px solid #fff; padding-top: 20px; padding-bottom: 5px; border-bottom: 2px solid #fff;}
	#nuunnav .inside .mod_customnav.customnav2 {padding-bottom: 5px; border-bottom: 2px solid #fff;}
	#nuunnav .navsocials {border-top: 2px solid #fff;}
	body.projekte #container .mobilefilterbutton {display: inline-block; float: right; margin-top: 25px; cursor: pointer;}
	body.projekte #container .toptitel {display: inline-block;}
	body.projekte #container .mixfiltercontainer {padding-left: 25px; padding-right: 25px; background: #FE1006; box-shadow: 0 0 10px #3d3d3d; opacity: 1; position: fixed; overflow-y: auto; top: 0; left: -510px; width: 94%; max-width: 500px; height: 100vh; z-index: 2000; box-sizing: border-box; transition:left 0.6s ease, box-shadow 0.3s ease;}
	body.projekte #container .mixfiltercontainer.open {left: 0;}
	body.projekte #container .mixfiltercontainer .mobilefilterclose {display: block; text-align: center; border-top: 2px solid #fff; margin-top: 20px;}
	body.projekte #container .mixfiltercontainer .filterlogo {display: block; margin: 30px 0;}
	body.projekte #container .mixfiltercontainer .mobilefilterclose p {display: inline-block; margin-top: 20px; cursor: pointer; color: #fff; font-family: 'montserratbold'; text-align: center; padding: 10px 25px; border:2px solid #fff; border-top-left-radius: 15px; border-bottom-right-radius: 15px; background: #FE1006; font-size: 1.8rem; line-height: 1.8rem; text-decoration: none; transition: color 0.3s ease, background 0.3s ease;}
	body.projekte #container .mixfiltercontainer .mobilefilterclose p:hover {background: #fff; color: #FE1006;}
	body.projekte #container .mixfiltercontainer .filterslider.closed .ce_text {background:url(../../files/data/graphics/arrow-right.svg) center right no-repeat; background-size: 13px; transition: background 0.3s ease;}
	body.projekte #container .mixfiltercontainer .filterslider .ce_text {background:url(../../files/data/graphics/arrow-down.svg) center right no-repeat; background-size: 25px; transition: background 0.3s ease;}
    #header {height: 80px;}
    #container {padding-top: 140px;}
    #header .inside .logo {margin-top: 25px;}
    body .nuunnavbutton-open {margin-top: 25px;}
    #header .inside .headertel {margin-top: 22px;}
    #header .inside .headermail {margin-top: 22px;}
}

@media screen and (max-height: 1150px) {
    .scrollnext {display: none;}
}

@media screen and (max-width: 800px) {
	body.projekte .ctlg_teaser {width: 100%;}
	body.projekte .mod_catalogUniversalView.projektefull:after {display: none;}
	body.projekte .mod_catalogUniversalView.projektefull:before {width: 100%;}
	.layout_full .topbuttons div {float: left; margin-left: 0;}
	.mod_catalogMasterView .topbuttons div {float: left; margin-left: 0; margin-right: 40px;}
	body.projekte #container .mobilefilterbutton {display: inline-block; width: 100%; margin-top: 0; float: none;}
}

@media screen and (max-width: 550px) {
    #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;}
    .mod_newslist .layout_latest {width: 100%; margin-right: 0;}
    .team .box {width: 100%; margin-right: 0;}
    #footer .rechts {margin-top: 0;}
    #footer .rechts p {text-align: left !important;}
    #footer .rechts a {display: block; margin-left: 0; margin-bottom: 5px;}
	#footerhome .rechts {margin-top: 0;}
	#footerhome .rechts p {text-align: left !important;}
	#footerhome .rechts a {display: block; margin-left: 0; margin-bottom: 5px;}
    #header .inside .logo {width: 100px;}
    #header .inside .headertel {width: 36px; margin-right: 25px;}
    #header .inside .headermail {width: 40px;}
    body .nuunnavbutton-open {background-size: contain; height: 30px;}
    #nuunnav .navsocials {width: auto;}
    #nuunnav .navsocials p a {display: block; margin: 5px 0 0 0; text-align: left;}
    .mod_catalogMasterView .topbuttons div {margin-bottom: 10px;}
}


/*  FONTS                                                    */
/*************************************************************/
/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on September 8, 2017 */
@font-face {
    font-family: 'montserratbold';
    src: url('../../files/data/style/Fonts/montserrat-bold-webfont.woff2') format('woff2'),
         url('../../files/data/style/Fonts/montserrat-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

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

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

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

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

}
@font-face {
    font-family: 'montserratregular';
    src: url('../../files/data/style/Fonts/montserrat-regular.woff2') format('woff2'),
         url('../../files/data/style/Fonts/montserrat-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;

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

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

}
@font-face {
    font-family: 'montserratextrabold';
    src: url('../../files/data/style/Fonts/montserrat-extrabold.woff2') format('woff2'),
         url('../../files/data/style/Fonts/montserrat-extrabold.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-open {display: inline-block; width: 40px; height: 34px; cursor: pointer; position: relative; float: right; z-index: 2500; margin-top: 55px; background:url(../../files/data/graphics/navbutton-open.svg) center no-repeat;}
.nuunnavbutton-close {display: inline-block; width: 40px; height: 34px; cursor: pointer; position: relative; float: right; z-index: 2500; margin-top: 55px; background:url(../../files/data/graphics/navbutton-close.svg) center no-repeat;}
/*.nuunnavbutton .navline {height: 3px; width: 100%; margin-bottom: 9px; border-radius: 0; background: #54706a; opacity: 1; transition: transform 0.3s ease, opacity 0.3s ease;}
body.inspektionen .nuunnavbutton .navline {background:#fff;}
.nuunnavbutton .navline:last-of-type {margin-bottom: 0;}

.nuunnavbutton.crossed .navline.top {transform: rotate(-45deg) translateY(9px) translateX(-9px);}
.nuunnavbutton.crossed .navline.mid {opacity: 0;}
.nuunnavbutton.crossed .navline.bot {transform: rotate(-135deg) translateY(8px) translateX(8px);}*/

#nuunnav {display: none; padding-top: 0px; font-family: 'montserratregular'; font-size: 2.8rem; padding-left: 0px; padding-right: 0px; position: fixed; overflow-y: auto; top: 0; left: 0; width: 100%; background-color: #FE1006; /*border:10px solid #fff;*/ height: 100vh; z-index: 2500; box-sizing: border-box;}
#nuunnav .inside {width: 94%; padding: 0 3%; max-width: 1400px; margin: 0 auto;}

#nuunnav .navigation {padding-bottom: 100px;}
/*#nuunnav li a {color: #677A7B; text-decoration: none; transition:color 0.3s ease;}
#nuunnav li a.active {font-family: 'montserratregular';}
#nuunnav li a:hover {color: #FF8035;}
#nuunnav ul {list-style: none; padding-left: 0; display: block; width: 100%;}
#nuunnav ul.level_1 {margin: 0;}
#nuunnav ul.level_1 > li {}
#nuunnav ul.level_1 > li > a {display: inline-block; text-transform: uppercase; font-size: 2.8rem; float: left; clear: left; padding: 23px 0 23px 0;}
#nuunnav ul.level_1 > li.submenu > a {margin-right: 0px; float: left; clear: left;}
#nuunnav ul li.submenu .subtoggler {width: 50px; height: 78px; 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: #FF8035;}
#nuunnav ul li.submenu .subtoggler .subtoggline2 {width: 15px; height: 2px; background: #FF8035; 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;}
#nuunnav ul.level_2 > li > a {display: inline-block; text-transform: uppercase; font-size: 1.5rem; float: left; clear: left; padding: 5px 0 5px 0;}
#nuunnav ul.level_2 li a.active {font-family: 'montserratregular';}
#nuunnav ul.level_2 li a:hover {color: #FF8035; 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; text-transform: none; font-size: 1.5rem; float: left; clear: left; padding: 5px 0 5px 0;}
#nuunnav ul.level_3 li a.active {font-family: 'montserratregular';}
#nuunnav ul.level_3 li a:hover {color: #FF8035; background: url(../../files/data/graphics/icon-nav-bg.svg) center left 6vw no-repeat;}

#nuunnav ul.level_4 {display: none;}
#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;}
#nuunnav ul.level_4 li a.active {font-family: 'montserratregular';}
#nuunnav ul.level_4 li a:hover {color: #FF8035; background: url(../../files/data/graphics/icon-nav-bg.svg) center left 6vw no-repeat;}
*/

/*@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);}
}*/
@media screen and (max-width: 1100px) {
	#nuunnav {padding-left: 25px; padding-right: 25px; opacity: 1; position: fixed; overflow-y: auto; top: 0; left: initial; width: 94%; max-width: 500px; /*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: 0 0 10px #3d3d3d;}
}
