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}
body,form,figure{margin:0;padding:0}img{border:0}header,footer,nav,section,aside,article,figure,figcaption{display:block}body{font-size:100.01%}select,input,textarea{font-size:99%}#container,.inside{position:relative}#main,#left,#right{float:left;position:relative}#main{width:100%}#left{margin-left:-100%}#right{margin-right:-100%}#footer{clear:both}#main .inside{min-height:1px}.ce_gallery>ul,.content-gallery>ul{margin:0;padding:0;overflow:hidden;list-style:none}.ce_gallery>ul li,.content-gallery>ul li{float:left}.ce_gallery>ul li.col_first,.content-gallery>ul li.col_first{clear:left}.float_left,.media--left>figure{float:left}.float_right,.media--right>figure{float:right}.block{overflow:hidden}.media{display:flow-root}.clear,#clear{height:.1px;font-size:.1px;line-height:.1px;clear:both}.invisible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.custom{display:block}#container:after,.custom:after{content:"";display:table;clear:both}
@media (max-width:767px){#wrapper{margin:0;width:auto}#container{padding-left:0;padding-right:0}#main,#left,#right{float:none;width:auto}#left{right:0;margin-left:0}#right{margin-right:0}}img{max-width:100%;height:auto}.audio_container audio{max-width:100%}.video_container video{max-width:100%;height:auto}.aspect,.responsive{position:relative;height:0}.aspect iframe,.responsive iframe{position:absolute;top:0;left:0;width:100%;height:100%}.aspect--16\:9,.responsive.ratio-169{padding-bottom:56.25%}.aspect--16\:10,.responsive.ratio-1610{padding-bottom:62.5%}.aspect--21\:9,.responsive.ratio-219{padding-bottom:42.8571%}.aspect--4\:3,.responsive.ratio-43{padding-bottom:75%}.aspect--3\:2,.responsive.ratio-32{padding-bottom:66.6666%}
@charset "UTF-8";/*!
 * mmenu.js
 * mmenujs.com
 *
 * Copyright (c) Fred Heusschen
 * frebsite.nl
 *
 * License: CC-BY-NC-4.0
 * http://creativecommons.org/licenses/by-nc/4.0/
 */:root{--mm-lineheight:22px}.mm-hidden{display:none!important}.mm-wrapper{overflow-x:hidden;position:relative}.mm-menu,.mm-menu *,.mm-menu :after,.mm-menu :before{-webkit-transition-property:none;-o-transition-property:none;transition-property:none;-webkit-transition-duration:.4s;-o-transition-duration:.4s;transition-duration:.4s;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease}:root{--mm-blocker-visibility-delay:0.4s;--mm-blocker-opacity-delay:0s}.mm-blocker{display:block;position:absolute;bottom:100%;top:0;right:0;left:0;z-index:3;opacity:0;background:var(--mm-color-background);-webkit-transition:bottom 0s ease var(--mm-blocker-visibility-delay),width .4s ease,opacity .4s ease var(--mm-blocker-opacity-delay),-webkit-transform .4s ease;transition:bottom 0s ease var(--mm-blocker-visibility-delay),width .4s ease,opacity .4s ease var(--mm-blocker-opacity-delay),-webkit-transform .4s ease;-o-transition:bottom 0s ease var(--mm-blocker-visibility-delay),width .4s ease,opacity .4s ease var(--mm-blocker-opacity-delay),transform .4s ease;transition:bottom 0s ease var(--mm-blocker-visibility-delay),width .4s ease,opacity .4s ease var(--mm-blocker-opacity-delay),transform .4s ease;transition:bottom 0s ease var(--mm-blocker-visibility-delay),width .4s ease,opacity .4s ease var(--mm-blocker-opacity-delay),transform .4s ease,-webkit-transform .4s ease}.mm-blocker:focus-visible{opacity:.75}.mm-btn{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:relative;width:50px;padding:0}.mm-btn--next,[dir=rtl] .mm-btn--prev{--mm-btn-rotate:135deg}.mm-btn--prev,[dir=rtl] .mm-btn--next{--mm-btn-rotate:-45deg}.mm-btn--next:after,.mm-btn--prev:before{content:"";display:block;position:absolute;top:0;bottom:0;width:8px;height:8px;margin:auto;-webkit-box-sizing:border-box;box-sizing:border-box;border:2px solid var(--mm-color-icon);border-bottom:none;border-right:none;-webkit-transform:rotate(var(--mm-btn-rotate));-ms-transform:rotate(var(--mm-btn-rotate));transform:rotate(var(--mm-btn-rotate))}.mm-btn--prev:before{inset-inline-start:23px}.mm-btn--next:after{inset-inline-end:23px}.mm-btn--close:before{content:"×";font-size:150%}.mm-btnreset{padding:0;background:0 0;border:none;cursor:pointer}.mm-divider{-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;position:-webkit-sticky;position:sticky;z-index:2;top:0;min-height:var(--mm-lineheight);padding:calc((var(--mm-listitem-size) * .65 - var(--mm-lineheight)) * .5) 20px;font-size:75%;text-transform:uppercase;background:var(--mm-color-background);background-image:-webkit-gradient(linear,left top,left bottom,from(var(--mm-color-background-highlight)),to(var(--mm-color-background-highlight)));background-image:-o-linear-gradient(var(--mm-color-background-highlight),var(--mm-color-background-highlight));background-image:linear-gradient(var(--mm-color-background-highlight),var(--mm-color-background-highlight));opacity:1;-webkit-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity}.mm-navbar:not(.mm-hidden)~.mm-listview .mm-divider{top:var(--mm-navbar-size)}:root{--mm-listitem-size:50px}.mm-listitem{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;position:relative;padding:0;margin:0;color:var(--mm-color-text);border-color:var(--mm-color-border)}.mm-listitem:after{content:"";border-color:inherit;border-bottom-width:1px;border-bottom-style:solid;display:block;position:absolute;inset-inline-start:20px;inset-inline-end:0;bottom:0}.mm-listitem__btn,.mm-listitem__text{padding:calc((var(--mm-listitem-size) - var(--mm-lineheight))/ 2) 0}.mm-listitem__text{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-preferred-size:10%;flex-basis:10%;display:block;padding-left:20px;padding-right:20px;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.mm-listitem__btn{display:block;position:relative;width:auto;-webkit-padding-end:50px;padding-inline-end:50px;border-color:inherit;background:rgba(3,2,1,0)}.mm-listitem__btn:not(.mm-listitem__text){border-left-width:1px;border-left-style:solid}.mm-listitem--selected>.mm-listitem__text{background:var(--mm-color-background-emphasis)}.mm-listitem--opened>.mm-listitem__btn,.mm-listitem--opened>.mm-panel{background:var(--mm-color-background-highlight)}.mm-listview{list-style:none;display:block;padding:0;margin:0}.mm-menu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding:0;margin:0;position:absolute;top:0;right:0;bottom:0;left:0;z-index:0;-ms-scroll-chaining:none;overscroll-behavior:none;background:var(--mm-color-background);border-color:var(--mm-color-border);color:var(--mm-color-text);line-height:var(--mm-lineheight);-webkit-tap-highlight-color:var(--mm-color-background-emphasis);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mm-menu ::-webkit-input-placeholder{color:var(--mm-color-text-dimmed)}.mm-menu ::-moz-placeholder{color:var(--mm-color-text-dimmed)}.mm-menu :-ms-input-placeholder{color:var(--mm-color-text-dimmed)}.mm-menu ::-ms-input-placeholder{color:var(--mm-color-text-dimmed)}.mm-menu ::placeholder{color:var(--mm-color-text-dimmed)}.mm-menu,.mm-menu *{-webkit-box-sizing:border-box;box-sizing:border-box}.mm-menu :focus,.mm-menu :focus-visible,.mm-menu:focus,.mm-menu:focus-visible{outline:0}.mm-menu a,.mm-menu button,.mm-menu label{color:inherit}.mm-menu a:focus,.mm-menu button:focus,.mm-menu label:focus{outline:0}.mm-menu a:focus-visible,.mm-menu button:focus-visible,.mm-menu label:focus-visible{outline:2px solid var(--mm-color-focusring);outline-offset:-5px}.mm-menu input:focus,.mm-menu input:focus-visible,.mm-menu select:focus,.mm-menu select:focus-visible,.mm-menu textarea:focus,.mm-menu textarea:focus-visible{outline:2px solid var(--mm-color-focusring);outline-offset:2px}.mm-menu a,.mm-menu a:active,.mm-menu a:hover,.mm-menu a:link,.mm-menu a:visited{text-decoration:none;color:inherit}:root{--mm-navbar-size:50px}.mm-navbar{display:-webkit-box;display:-ms-flexbox;display:flex;position:-webkit-sticky;position:sticky;top:0;z-index:2;min-height:var(--mm-navbar-size);padding-top:env(safe-area-inset-top);color:var(--mm-color-text-dimmed);text-align:center;opacity:1;background:var(--mm-color-background);border-bottom:1px solid var(--mm-color-border);-webkit-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity}.mm-navbar>*{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-sizing:border-box;box-sizing:border-box}.mm-navbar__btn{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0}.mm-navbar__title{-webkit-box-flex:1;-ms-flex:1 1 50%;flex:1 1 50%;display:-webkit-box;display:-ms-flexbox;display:flex;padding:0 20px;overflow:hidden}.mm-navbar__title[href="#"]{pointer-events:none}.mm-navbar__title>span{-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.mm-btn.mm-hidden+.mm-navbar__title:not(:last-child){-webkit-padding-start:60px;padding-inline-start:60px;-webkit-padding-end:10px;padding-inline-end:10px}.mm-btn:not(.mm-hidden)+.mm-navbar__title:last-child{-webkit-padding-start:10px;padding-inline-start:10px;-webkit-padding-end:60px;padding-inline-end:60px}.mm-panel{--mm-panel-child-offset:100%;--mm-panel-parent-offset:-30%;position:absolute;left:0;right:0;top:0;bottom:0;z-index:1;-webkit-overflow-scrolling:touch;overflow:hidden;overflow-y:auto;-ms-scroll-chaining:none;overscroll-behavior:contain;color:var(--mm-color-text);border-color:var(--mm-color-border);background:var(--mm-color-background);-webkit-transform:translate3d(var(--mm-panel-child-offset),0,0);transform:translate3d(var(--mm-panel-child-offset),0,0);-webkit-transition-property:inset-inline-start,-webkit-transform;transition-property:inset-inline-start,-webkit-transform;-o-transition-property:transform,inset-inline-start;transition-property:transform,inset-inline-start;transition-property:transform,inset-inline-start,-webkit-transform}[dir=rtl] .mm-panel{--mm-panel-child-offset:-100%;--mm-panel-parent-offset:30%}.mm-panel:after{content:"";display:block;height:var(--mm-listitem-size)}.mm-panel:focus{outline:0}.mm-panel--opened{z-index:2;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-transition-delay:0s;-o-transition-delay:0s;transition-delay:0s}.mm-panel--parent{-webkit-transform:translate3d(var(--mm-panel-parent-offset),0,0);transform:translate3d(var(--mm-panel-parent-offset),0,0);z-index:0}.mm-panel--highest{z-index:3}.mm-menu--opened .mm-panel--noanimation{-webkit-transition:none!important;-o-transition:none!important;transition:none!important;-webkit-transition-duration:0s!important;-o-transition-duration:0s!important;transition-duration:0s!important}.mm-panel__content{padding:20px}.mm-panels{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;position:relative;height:100%;overflow:hidden;background:var(--mm-color-background);border-color:var(--mm-color-border);color:var(--mm-color-text)}.mm-panels:focus{outline:0}:root{--mm-toggle-size:34px}.mm-toggle{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-item-align:center;align-self:center;-webkit-box-flex:calc(var(--mm-toggle-size) * 1.75);-ms-flex:calc(var(--mm-toggle-size) * 1.75) 0 0px;flex:calc(var(--mm-toggle-size) * 1.75) 0 0;height:var(--mm-toggle-size);-webkit-margin-end:10px;margin-inline-end:10px;-webkit-appearance:none!important;-moz-appearance:none!important;appearance:none!important;border:none!important;border-radius:var(--mm-toggle-size);border:var(--mm-color-border);background:var(--mm-color-border);cursor:pointer;-webkit-transition-property:background-color;-o-transition-property:background-color;transition-property:background-color}.mm-toggle:before{content:"";aspect-ratio:1;margin:2px;border-radius:100%;background:var(--mm-color-background);-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;-o-transition-property:transform;transition-property:transform;transition-property:transform,-webkit-transform}.mm-toggle:checked{background:#4bd963}.mm-toggle:checked:before{-webkit-transform:translateX(calc(var(--mm-toggle-size) * .75));-ms-transform:translateX(calc(var(--mm-toggle-size) * .75));transform:translateX(calc(var(--mm-toggle-size) * .75))}[dir=rtl] .mm-toggle:checked:before{-webkit-transform:translateX(calc(var(--mm-toggle-size) * -.75));-ms-transform:translateX(calc(var(--mm-toggle-size) * -.75));transform:translateX(calc(var(--mm-toggle-size) * -.75))}.mm-listitem--vertical>.mm-panel{position:static;width:100%;padding:10px 0 10px 20px;-webkit-transform:none!important;-ms-transform:none!important;transform:none!important;-webkit-transition:none!important;-o-transition:none!important;transition:none!important}.mm-listitem--vertical>.mm-panel:after{content:none;display:none}.mm-listitem--vertical:not(.mm-listitem--opened)>.mm-panel{display:none}.mm-listitem--vertical>.mm-listitem__btn{height:var(--mm-listitem-size);bottom:auto}.mm-listitem--vertical .mm-listitem:last-child:after{border-color:transparent}.mm-listitem--opened>.mm-listitem__btn:after{-webkit-transform:rotate(225deg);-ms-transform:rotate(225deg);transform:rotate(225deg);right:19px}:root{--mm-size:80%;--mm-min-size:240px;--mm-max-size:440px}.mm-menu--offcanvas{position:fixed;z-index:0}.mm-page{-webkit-box-sizing:border-box;box-sizing:border-box;min-height:100vh;background:inherit}:where(.mm-slideout){position:relative;z-index:1;width:100%;-webkit-transition-duration:.4s;-o-transition-duration:.4s;transition-duration:.4s;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-property:width,-webkit-transform;transition-property:width,-webkit-transform;-o-transition-property:width,transform;transition-property:width,transform;transition-property:width,transform,-webkit-transform}.mm-wrapper--opened,.mm-wrapper--opened body{overflow:hidden}.mm-wrapper__blocker{background:rgba(0,0,0,.4)}.mm-wrapper--opened .mm-wrapper__blocker{--mm-blocker-visibility-delay:0s;--mm-blocker-opacity-delay:0.4s;bottom:0;opacity:.5}.mm-menu{--mm-translate-horizontal:0;--mm-translate-vertical:0}.mm-menu--position-left,.mm-menu--position-left-front{right:auto}.mm-menu--position-right,.mm-menu--position-right-front{left:auto}.mm-menu--position-left,.mm-menu--position-left-front,.mm-menu--position-right,.mm-menu--position-right-front{width:clamp(var(--mm-min-size),var(--mm-size),var(--mm-max-size))}.mm-menu--position-left-front{--mm-translate-horizontal:-100%}.mm-menu--position-right-front{--mm-translate-horizontal:100%}.mm-menu--position-top{bottom:auto}.mm-menu--position-bottom{top:auto}.mm-menu--position-bottom,.mm-menu--position-top{width:100%;height:clamp(var(--mm-min-size),var(--mm-size),var(--mm-max-size))}.mm-menu--position-top{--mm-translate-vertical:-100%}.mm-menu--position-bottom{--mm-translate-vertical:100%}.mm-menu--position-bottom,.mm-menu--position-left-front,.mm-menu--position-right-front,.mm-menu--position-top{z-index:2;-webkit-transform:translate3d(var(--mm-translate-horizontal),var(--mm-translate-vertical),0);transform:translate3d(var(--mm-translate-horizontal),var(--mm-translate-vertical),0);-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;-o-transition-property:transform;transition-property:transform;transition-property:transform,-webkit-transform}.mm-menu--position-bottom.mm-menu--opened,.mm-menu--position-left-front.mm-menu--opened,.mm-menu--position-right-front.mm-menu--opened,.mm-menu--position-top.mm-menu--opened{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.mm-wrapper--position-left{--mm-translate-horizontal:clamp(
      var(--mm-min-size),
      var(--mm-size),
      var(--mm-max-size)
  )}.mm-wrapper--position-right{--mm-translate-horizontal:clamp(
      calc(-1 * var(--mm-max-size)),
      calc(-1 * var(--mm-size)),
      calc(-1 * var(--mm-min-size))
  )}.mm-wrapper--position-left .mm-slideout,.mm-wrapper--position-right .mm-slideout{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.mm-wrapper--position-left.mm-wrapper--opened .mm-slideout,.mm-wrapper--position-right.mm-wrapper--opened .mm-slideout{-webkit-transform:translate3d(var(--mm-translate-horizontal),0,0);transform:translate3d(var(--mm-translate-horizontal),0,0)}.mm-wrapper--position-bottom .mm-wrapper__blocker,.mm-wrapper--position-left-front .mm-wrapper__blocker,.mm-wrapper--position-right-front .mm-wrapper__blocker,.mm-wrapper--position-top .mm-wrapper__blocker{z-index:1}.mm-menu--theme-light{--mm-color-background:#f3f3f3;--mm-color-border:rgb(0 0 0 / 0.15);--mm-color-icon:rgb(0 0 0 / 0.4);--mm-color-text:rgb(0 0 0 / 0.8);--mm-color-text-dimmed:rgb(0 0 0 / 0.4);--mm-color-background-highlight:rgb(0 0 0 / 0.05);--mm-color-background-emphasis:rgb(255 255 255 / 0.75);--mm-color-focusring:#06c}.mm-menu--theme-light-contrast{--mm-color-background:#f3f3f3;--mm-color-border:rgb(0 0 0 / 0.5);--mm-color-icon:rgb(0 0 0 / 0.5);--mm-color-text:#000;--mm-color-text-dimmed:rgb(0 0 0 / 0.7);--mm-color-background-highlight:rgb(0 0 0 / 0.05);--mm-color-background-emphasis:rgb(255 255 255 / 0.9);--mm-color-focusring:#06c}.mm-menu--theme-dark{--mm-color-background:#333;--mm-color-border:rgb(0, 0, 0, 0.4);--mm-color-icon:rgb(255, 255, 255, 0.4);--mm-color-text:rgb(255, 255, 255, 0.8);--mm-color-text-dimmed:rgb(255, 255, 255, 0.4);--mm-color-background-highlight:rgb(255, 255, 255, 0.08);--mm-color-background-emphasis:rgb(0, 0, 0, 0.1);--mm-color-focusring:#06c}.mm-menu--theme-dark-contrast{--mm-color-background:#333;--mm-color-border:rgb(255 255 255 / 0.5);--mm-color-icon:rgb(255 255 255 / 0.5);--mm-color-text:#fff;--mm-color-text-dimmed:rgb(255 255 255 / 0.7);--mm-color-background-highlight:rgb(255 255 255 / 0.1);--mm-color-background-emphasis:rgb(0 0 0 / 0.3);--mm-color-focusring:#06c}.mm-menu--theme-white{--mm-color-background:#fff;--mm-color-border:rgb(0 0 0 / 0.15);--mm-color-icon:rgb(0 0 0 / 0.3);--mm-color-text:rgb(0 0 0 / 0.8);--mm-color-text-dimmed:rgb(0 0 0 / 0.3);--mm-color-background-highlight:rgb(0 0 0 / 0.06);--mm-color-background-emphasis:rgb(0 0 0 / 0.03);--mm-color-focusring:#06c}.mm-menu--theme-white-contrast{--mm-color-background:#fff;--mm-color-border:rgb(0 0 0 / 0.5);--mm-color-icon:rgb(0 0 0 / 0.5);--mm-color-text:#000;--mm-color-text-dimmed:rgb(0 0 0 / 0.7);--mm-color-background-highlight:rgb(0 0 0 / 0.07);--mm-color-background-emphasis:rgb(0 0 0 / 0.035);--mm-color-focusring:#06c}.mm-menu--theme-black{--mm-color-background:#000;--mm-color-border:rgb(255 255 255 / 0.2);--mm-color-icon:rgb(255 255 255 / 0.4);--mm-color-text:rgb(255 255 255 / 0.7);--mm-color-text-dimmed:rgb(255 255 255 / 0.4);--mm-color-background-highlight:rgb(255 255 255 / 0.1);--mm-color-background-emphasis:rgb(255 255 255 / 0.06);--mm-color-focusring:#06c}.mm-menu--theme-black-contrast{--mm-color-background:#000;--mm-color-border:rgb(255 255 255 / 0.5);--mm-color-icon:rgb(255 255 255 / 0.5);--mm-color-text:#fff;--mm-color-text-dimmed:rgb(255 255 255 / 0.6);--mm-color-background-highlight:rgb(255 255 255 / 0.125);--mm-color-background-emphasis:rgb(255 255 255 / 0.1);--mm-color-focusring:#06c}.mm-counter{display:block;-webkit-padding-start:20px;padding-inline-start:20px;float:right;color:var(--mm-color-text-dimmed)}[dir=rtl] .mm-counter{float:left}:root{--mm-iconbar-size:50px}.mm-menu--iconbar-left .mm-navbars,.mm-menu--iconbar-left .mm-panels{margin-left:var(--mm-iconbar-size)}.mm-menu--iconbar-right .mm-navbars,.mm-menu--iconbar-right .mm-panels{margin-right:var(--mm-iconbar-size)}.mm-iconbar{display:none;position:absolute;top:0;bottom:0;z-index:2;width:var(--mm-iconbar-size);overflow:hidden;-webkit-box-sizing:border-box;box-sizing:border-box;border:0 solid;border-color:var(--mm-color-border);background:var(--mm-color-background);color:var(--mm-color-text-dimmed);text-align:center}.mm-menu--iconbar-left .mm-iconbar,.mm-menu--iconbar-right .mm-iconbar{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.mm-menu--iconbar-left .mm-iconbar{border-right-width:1px;left:0}.mm-menu--iconbar-right .mm-iconbar{border-left-width:1px;right:0}.mm-iconbar__bottom,.mm-iconbar__top{width:100%;-webkit-overflow-scrolling:touch;overflow:hidden;overflow-y:auto;-ms-scroll-chaining:none;overscroll-behavior:contain}.mm-iconbar__bottom>*,.mm-iconbar__top>*{-webkit-box-sizing:border-box;box-sizing:border-box;display:block;padding:calc((var(--mm-iconbar-size) - var(--mm-lineheight))/ 2) 0}.mm-iconbar__bottom a,.mm-iconbar__bottom a:hover,.mm-iconbar__top a,.mm-iconbar__top a:hover{text-decoration:none}.mm-iconbar__tab--selected{background:var(--mm-color-background-emphasis)}:root{--mm-iconpanel-size:50px}.mm-panel--iconpanel-0{inset-inline-start:calc(0 * var(--mm-iconpanel-size))}.mm-panel--iconpanel-1{inset-inline-start:calc(1 * var(--mm-iconpanel-size))}.mm-panel--iconpanel-2{inset-inline-start:calc(2 * var(--mm-iconpanel-size))}.mm-panel--iconpanel-3{inset-inline-start:calc(3 * var(--mm-iconpanel-size))}.mm-panel--iconpanel-4{inset-inline-start:calc(4 * var(--mm-iconpanel-size))}.mm-panel--iconpanel-first~.mm-panel{inset-inline-start:var(--mm-iconpanel-size)}.mm-menu--iconpanel .mm-panel--parent .mm-divider,.mm-menu--iconpanel .mm-panel--parent .mm-navbar{opacity:0}.mm-menu--iconpanel .mm-panels>.mm-panel--parent{overflow-y:hidden;-webkit-transform:unset;-ms-transform:unset;transform:unset}.mm-menu--iconpanel .mm-panels>.mm-panel:not(.mm-panel--iconpanel-first):not(.mm-panel--iconpanel-0){border-inline-start-width:1px;border-inline-start-style:solid}.mm-navbars{-ms-flex-negative:0;flex-shrink:0}.mm-navbars .mm-navbar{position:relative;padding-top:0;border-bottom:none}.mm-navbars--top{border-bottom:1px solid var(--mm-color-border)}.mm-navbars--top .mm-navbar:first-child{padding-top:env(safe-area-inset-top)}.mm-navbars--bottom{border-top:1px solid var(--mm-color-border)}.mm-navbars--bottom .mm-navbar:last-child{padding-bottom:env(safe-area-inset-bottom)}.mm-navbar__breadcrumbs{-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;-webkit-box-flex:1;-ms-flex:1 1 50%;flex:1 1 50%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;padding:0 20px;overflow-x:auto;-webkit-overflow-scrolling:touch}.mm-navbar__breadcrumbs>*{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-padding-end:6px;padding-inline-end:6px}.mm-navbar__breadcrumbs>a{text-decoration:underline}.mm-navbar__breadcrumbs:not(:last-child){-webkit-padding-end:0;padding-inline-end:0}.mm-btn:not(.mm-hidden)+.mm-navbar__breadcrumbs{-webkit-padding-start:0;padding-inline-start:0}.mm-navbar__tab{padding:0 10px;border:1px solid transparent}.mm-navbar__tab--selected{background:var(--mm-color-background)}.mm-navbar__tab--selected:not(:first-child){border-inline-start-color:var(--mm-color-border)}.mm-navbar__tab--selected:not(:last-child){border-inline-end-color:var(--mm-color-border)}.mm-navbars--top.mm-navbars--has-tabs{border-bottom:none}.mm-navbars--top.mm-navbars--has-tabs .mm-navbar{background:var(--mm-color-background-emphasis)}.mm-navbars--top.mm-navbars--has-tabs .mm-navbar--tabs~.mm-navbar{background:var(--mm-color-background)}.mm-navbars--top.mm-navbars--has-tabs .mm-navbar:not(.mm-navbar--tabs):last-child{border-bottom:1px solid var(--mm-color-border)}.mm-navbars--top .mm-navbar__tab{border-bottom-color:var(--mm-color-border)}.mm-navbars--top .mm-navbar__tab--selected{border-top-color:var(--mm-color-border);border-bottom-color:transparent}.mm-navbars--bottom.mm-navbar--has-tabs{border-top:none}.mm-navbars--bottom.mm-navbar--has-tabs .mm-navbar{background:var(--mm-color-background)}.mm-navbars--bottom.mm-navbar--has-tabs .mm-navbar--tabs,.mm-navbars--bottom.mm-navbar--has-tabs .mm-navbar--tabs~.mm-navbar{background:var(--mm-color-background-emphasis)}.mm-navbars--bottom .mm-navbar__tab{border-top-color:var(--mm-color-border)}.mm-navbars--bottom .mm-navbar__tab--selected{border-bottom-color:var(--mm-color-border);border-top-color:transparent}.mm-searchfield{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;height:var(--mm-navbar-size);padding:0;overflow:hidden}.mm-searchfield__input{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;width:100%;max-width:100%;padding:0 10px;-webkit-box-sizing:border-box;box-sizing:border-box}.mm-searchfield__input input{display:block;width:100%;max-width:100%;height:calc(var(--mm-navbar-size) * .7);min-height:auto;max-height:auto;margin:0;padding:0 10px;-webkit-box-sizing:border-box;box-sizing:border-box;border:none;border-radius:4px;line-height:calc(var(--mm-navbar-size) * .7);font:inherit;font-size:inherit}.mm-searchfield__input input,.mm-searchfield__input input:focus,.mm-searchfield__input input:hover{background:var(--mm-color-background-highlight);color:var(--mm-color-text)}.mm-menu[class*=-contrast] .mm-searchfield__input input{border:1px solid var(--mm-color-border)}.mm-searchfield__input input::-ms-clear{display:none}.mm-searchfield__btn{display:none;position:absolute;inset-inline-end:0;top:0;bottom:0}.mm-searchfield--searching .mm-searchfield__btn{display:block}.mm-searchfield__cancel{display:block;position:relative;-webkit-margin-end:-100px;margin-inline-end:-100px;-webkit-padding-start:5px;padding-inline-start:5px;-webkit-padding-end:20px;padding-inline-end:20px;visibility:hidden;line-height:var(--mm-navbar-size);text-decoration:none;-webkit-transition-property:visibility,margin;-o-transition-property:visibility,margin;transition-property:visibility,margin}.mm-searchfield--cancelable .mm-searchfield__cancel{visibility:visible;-webkit-margin-end:0;margin-inline-end:0}.mm-panel--search{left:0!important;right:0!important;width:100%!important;border:none!important}.mm-panel__splash{padding:20px}.mm-panel--searching .mm-panel__splash{display:none}.mm-panel__noresults{display:none;padding:40px 20px;color:var(--mm-color-text-dimmed);text-align:center;font-size:150%;line-height:1.4}.mm-panel--noresults .mm-panel__noresults{display:block}:root{--mm-sectionindexer-size:20px}.mm-sectionindexer{background:inherit;text-align:center;font-size:12px;-webkit-box-sizing:border-box;box-sizing:border-box;width:var(--mm-sectionindexer-size);position:absolute;top:0;bottom:0;inset-inline-end:calc(-1 * var(--mm-sectionindexer-size));z-index:5;-webkit-transition-property:inset-inline-end;-o-transition-property:inset-inline-end;transition-property:inset-inline-end;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly}.mm-sectionindexer a{color:var(--mm-color-text-dimmed);line-height:1;text-decoration:none;display:block}.mm-sectionindexer~.mm-panel{-webkit-padding-end:0;padding-inline-end:0}.mm-sectionindexer--active{right:0}.mm-sectionindexer--active~.mm-panel{-webkit-padding-end:var(--mm-sectionindexer-size);padding-inline-end:var(--mm-sectionindexer-size)}.mm-menu--selected-hover .mm-listitem__btn,.mm-menu--selected-hover .mm-listitem__text,.mm-menu--selected-parent .mm-listitem__btn,.mm-menu--selected-parent .mm-listitem__text{-webkit-transition-property:background-color;-o-transition-property:background-color;transition-property:background-color}@media (hover:hover){.mm-menu--selected-hover .mm-listview:hover>.mm-listitem--selected:not(:hover)>.mm-listitem__text{background:0 0}.mm-menu--selected-hover .mm-listitem__btn:hover,.mm-menu--selected-hover .mm-listitem__text:hover{background:var(--mm-color-background-emphasis)}}.mm-menu--selected-parent .mm-listitem__btn,.mm-menu--selected-parent .mm-listitem__text{-webkit-transition-delay:.2s;-o-transition-delay:.2s;transition-delay:.2s}@media (hover:hover){.mm-menu--selected-parent .mm-listitem__btn:hover,.mm-menu--selected-parent .mm-listitem__text:hover{-webkit-transition-delay:0s;-o-transition-delay:0s;transition-delay:0s}}.mm-menu--selected-parent .mm-panel--parent .mm-listitem:not(.mm-listitem--selected-parent)>.mm-listitem__text{background:0 0}.mm-menu--selected-parent .mm-listitem--selected-parent>.mm-listitem__btn,.mm-menu--selected-parent .mm-listitem--selected-parent>.mm-listitem__text{background:var(--mm-color-background-emphasis)}:root{--mm-sidebar-collapsed-size:50px;--mm-sidebar-expanded-size:var(--mm-max-size)}.mm-wrapper--sidebar-collapsed .mm-slideout{width:calc(100% - var(--mm-sidebar-collapsed-size));-webkit-transform:translate3d(var(--mm-sidebar-collapsed-size),0,0);transform:translate3d(var(--mm-sidebar-collapsed-size),0,0)}[dir=rtl] .mm-wrapper--sidebar-collapsed .mm-slideout{-webkit-transform:none;-ms-transform:none;transform:none}.mm-wrapper--sidebar-collapsed:not(.mm-wrapper--opened) .mm-menu--sidebar-collapsed .mm-divider,.mm-wrapper--sidebar-collapsed:not(.mm-wrapper--opened) .mm-menu--sidebar-collapsed .mm-navbar{opacity:0}.mm-wrapper--sidebar-expanded .mm-menu--sidebar-expanded{width:var(--mm-sidebar-expanded-size);border-right-width:1px;border-right-style:solid}.mm-wrapper--sidebar-expanded.mm-wrapper--opened{overflow:auto}.mm-wrapper--sidebar-expanded.mm-wrapper--opened .mm-wrapper__blocker{display:none}.mm-wrapper--sidebar-expanded.mm-wrapper--opened .mm-slideout{width:calc(100% - var(--mm-sidebar-expanded-size));-webkit-transform:translate3d(var(--mm-sidebar-expanded-size),0,0);transform:translate3d(var(--mm-sidebar-expanded-size),0,0)}[dir=rtl] .mm-wrapper--sidebar-expanded.mm-wrapper--opened .mm-slideout{-webkit-transform:none;-ms-transform:none;transform: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}
:root {  
    --blue: #2A96D4;
    --blue_dark: #2277A8;
    --green: #D7F244;
    --green_dark: #9AA81B;
    --green_light: #EDEFDC;
    --gray_dark: #525252;
    --black: #212121;
    --red: #D00000;
    
/*    --content_width: 1420px;*/
/*    --headerintro_width: 1820px;*/
    --content_width: 1240px;
    --headerintro_width: 1640px;
}

/* poppins-100 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 100;
  src: url('../../files/theme/fonts/poppins-v22-latin-100.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-200 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 200;
  src: url('../../files/theme/fonts/poppins-v22-latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url('../../files/theme/fonts/poppins-v22-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../../files/theme/fonts/poppins-v22-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 400;
  src: url('../../files/theme/fonts/poppins-v22-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('../../files/theme/fonts/poppins-v22-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('../../files/theme/fonts/poppins-v22-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('../../files/theme/fonts/poppins-v22-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  src: url('../../files/theme/fonts/poppins-v22-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 900;
  src: url('../../files/theme/fonts/poppins-v22-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
.tns-outer{padding:0 !important}.tns-outer [hidden]{display:none !important}.tns-outer [aria-controls],.tns-outer [data-action]{cursor:pointer}.tns-slider{-webkit-transition:all 0s;-moz-transition:all 0s;transition:all 0s}.tns-slider>.tns-item{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.tns-horizontal.tns-subpixel{white-space:nowrap}.tns-horizontal.tns-subpixel>.tns-item{display:inline-block;vertical-align:top;white-space:normal}.tns-horizontal.tns-no-subpixel:after{content:'';display:table;clear:both}.tns-horizontal.tns-no-subpixel>.tns-item{float:left}.tns-horizontal.tns-carousel.tns-no-subpixel>.tns-item{margin-right:-100%}.tns-no-calc{position:relative;left:0}.tns-gallery{position:relative;left:0;min-height:1px}.tns-gallery>.tns-item{position:absolute;left:-100%;-webkit-transition:transform 0s, opacity 0s;-moz-transition:transform 0s, opacity 0s;transition:transform 0s, opacity 0s}.tns-gallery>.tns-slide-active{position:relative;left:auto !important}.tns-gallery>.tns-moving{-webkit-transition:all 0.25s;-moz-transition:all 0.25s;transition:all 0.25s}.tns-autowidth{display:inline-block}.tns-lazy-img{-webkit-transition:opacity 0.6s;-moz-transition:opacity 0.6s;transition:opacity 0.6s;opacity:0.6}.tns-lazy-img.tns-complete{opacity:1}.tns-ah{-webkit-transition:height 0s;-moz-transition:height 0s;transition:height 0s}.tns-ovh{overflow:hidden}.tns-visually-hidden{position:absolute;left:-10000em}.tns-transparent{opacity:0;visibility:hidden}.tns-fadeIn{opacity:1;filter:alpha(opacity=100);z-index:0}.tns-normal,.tns-fadeOut{opacity:0;filter:alpha(opacity=0);z-index:-1}.tns-vpfix{white-space:nowrap}.tns-vpfix>div,.tns-vpfix>li{display:inline-block}.tns-t-subp2{margin:0 auto;width:310px;position:relative;height:10px;overflow:hidden}.tns-t-ct{width:2333.3333333%;width:-webkit-calc(100% * 70 / 3);width:-moz-calc(100% * 70 / 3);width:calc(100% * 70 / 3);position:absolute;right:0}.tns-t-ct:after{content:'';display:table;clear:both}.tns-t-ct>div{width:1.4285714%;width:-webkit-calc(100% / 70);width:-moz-calc(100% / 70);width:calc(100% / 70);height:10px;float:left}

/*# sourceMappingURL=sourcemaps/tiny-slider.css.map */

p.pre-header {
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 5px;
}

a.telefon {
    display: inline-block;
    background: url('../../files/theme/img/icons/icon-telefon-green-small.svg') transparent no-repeat left center;
    background-size: 18px auto;
    min-height: 18px;
    padding-left: 27px;
    margin-bottom: 7px;
}

a.fax {
    display: inline-block;
    background: url('../../files/theme/img/icons/icon-fax-green-small.svg') transparent no-repeat left center;
    background-size: 18px auto;
    min-height: 18px;
    padding-left: 27px;
    margin-bottom: 7px;
}

a.email {
    display: inline-block;
    background: url('../../files/theme/img/icons/icon-email-green-small.svg') transparent no-repeat left center;
    background-size: 18px auto;
    min-height: 18px;
    padding-left: 27px;
    margin-bottom: 7px;
}

a.link-fett {
    color: var(--black);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

a.button {
    display: inline-block;
    background: var(--blue);
    font-size: clamp(1rem, 0.8311rem + 0.5405vw, 1.25rem);
    text-transform: uppercase;
    padding: 12px 25px;
}

.content-text a.button {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.content-text a.button:hover {
    background: var(--black);
    color: var(--green);
}
/****************************
 **
 ** STRUKTUR, ALLGEMEIN
 **
*****************************/
.mod_article:not(.full-width):not(.header) .inner,
#header .inside,
#footer .footer-section .inner,
.headerintro-content {
    display: block;
    max-width: var(--content_width);
    float: none;
    margin-right: auto;
    margin-left: auto;
    padding-right: 40px;
    padding-left: 40px;
    box-sizing: border-box;
}

.right-edge:not(.right-edge-imgslider) .inner {
    width: calc(100vw - (100vw - 1230px) / 2);
    margin-left: auto;
    padding-left: 40px;
    box-sizing: border-box;
}

@media screen and (max-width: 549px) {
    .mod_article:not(.full-width):not(.header) .inner,
    #header .inside,
    #footer .footer-section .inner {
        padding-right: 20px;
        padding-left: 20px;
    }
    
    .right-edge .inner {
        padding-left: 20px;
    }
}

@media screen and (max-width: 767px) {
  .row.no-row-gap-md {
    grid-row-gap: 0;
  }
}

@media screen and (max-width: 400px) {
  .row:not(.row-gap-mobile) {
    grid-column-gap: 0;
  }
}

/*** ABSTÄNDE ***/
.mt-0{margin-top:0px!important;}.mb-0{margin-bottom:0px!important;}
.mt-xxl-4{margin-top:200px!important;}.mt-xxl-3{margin-top:160px!important;}.mt-xxl-2{margin-top:130px!important;}.mt-xxl-1{margin-top:100px!important;}.mt-xxl{margin-top:80px!important;}.mt-xl{margin-top:70px!important;}.mt-l{margin-top:60px!important;}.mt-m{margin-top:50px!important;}.mt-s{margin-top:40px!important;}.mt-xs{margin-top:30px!important;}.mt-xxs{margin-top:20px!important;}.mt-xxs-1{margin-top:10px!important;}
.mb-xxl-4{margin-bottom:200px!important;}.mb-xxl-3{margin-bottom:160px!important;}.mb-xxl-2{margin-bottom:130px!important;}.mb-xxl-1{margin-bottom:100px!important;}.mb-xxl{margin-bottom:80px!important;}.mb-xl{margin-bottom:70px!important;}.mb-l{margin-bottom:60px!important;}.mb-m{margin-bottom:50px!important;}.mb-s{margin-bottom:40px!important;}.mb-xs{margin-bottom:30px!important;}.mb-xxs{margin-bottom:20px!important;}.mb-xxs-1{margin-top:10px!important;}
.pt-xxl{padding-top:170px!important;}.pt-xl{padding-top:150px!important;}.pt-l{padding-top:120px!important;}.pt-m{padding-top:100px!important;}.pt-s{padding-top:90px!important;}.pt-xs{padding-top:50px!important;}.pt-xxs{padding-top:30px!important;}
.pb-xxl{padding-bottom:170px!important;}.pb-xl{padding-bottom:150px!important;}.pb-l{padding-bottom:120px!important;}.pb-m{padding-bottom:100px!important;}.pb-s{padding-bottom:90px!important;}.pb-xs{padding-bottom:50px!important;}.pb-xxs{padding-bottom:30px!important;}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
  .mt-xxl-4{margin-top:150px!important;}.mt-xxl-3{margin-top:120px!important;}.mt-xxl-2{margin-top:100px!important;}.mt-xxl-1{margin-top:75px!important;}.mt-xxl{margin-top:60px!important;}.mt-xl{margin-top:50px!important;}.mt-l{margin-top:40px!important;}.mt-m{margin-top:30px!important;}.mt-s{margin-top:25px!important;}.mt-xs{margin-top:25px!important;}.mt-xxs{margin-top:25px!important;}.mt-xxs-1{margin-top:10px!important;}
  .mb-xxl-4{margin-bottom:150px!important;}.mb-xxl-3{margin-bottom:120px!important;}.mb-xxl-2{margin-bottom:100px!important;}.mb-xxl-1{margin-bottom:75px!important;}.mb-xxl{margin-bottom:60px!important;}.mb-xl{margin-bottom:50px!important;}.mb-l{margin-bottom:40px!important;}.mb-m{margin-bottom:30px!important;}.mb-s{margin-bottom:25px!important;}.mb-xs{margin-bottom:25px!important;}.mb-xxs{margin-bottom:25px!important;}.mb-xxs-1{margin-top:10px!important;}
  .pt-xxl{padding-top:130px!important;}.pt-xl{padding-top:110px!important;}.pt-l{padding-top:100px!important;}.pt-m{padding-top:80px!important;}.pt-s{padding-top:70px!important;}.pt-xs{padding-top:40px!important;}.pt-xxs{padding-top:30px!important;}
  .pb-xxl{padding-bottom:130px!important;}.pb-xl{padding-bottom:110px!important;}.pb-l{padding-bottom:100px!important;}.pb-m{padding-bottom:80px!important;}.pb-s{padding-bottom:70px!important;}.pb-xs{padding-bottom:40px!important;}.pb-xxs{padding-bottom:30px!important;}
}

@media only screen and (max-width: 767px) {
  .mt-xxl-4{margin-top:125px!important;}.mt-xxl-3{margin-top:100px!important;}.mt-xxl-2{margin-top:80px!important;}.mt-xxl-1{margin-top:60px!important;}.mt-xxl{margin-top:50px!important;}.mt-xl{margin-top:40px!important;}.mt-l{margin-top:30px!important;}.mt-m{margin-top:25px!important;}.mt-s{margin-top:20px!important;}.mt-xs{margin-top:25px!important;}.mt-xxs{margin-top:25px!important;}.mt-xxs-1{margin-top:10px!important;}
  .mb-xxl-4{margin-bottom:125px!important;}.mb-xxl-3{margin-bottom:100px!important;}.mb-xxl-2{margin-bottom:80px!important;}.mb-xxl-1{margin-bottom:60px!important;}.mb-xxl{margin-bottom:50px!important;}.mb-xl{margin-bottom:40px!important;}.mb-l{margin-bottom:30px!important;}.mb-m{margin-bottom:25px!important;}.mb-s{margin-bottom:20px!important;}.mb-xs{margin-bottom:25px!important;}.mb-xxs{margin-bottom:25px!important;}.mb-xxs-1{margin-top:10px!important;}
  .pt-xxl{padding-top:80px!important;}.pt-xl{padding-top:70px!important;}.pt-l{padding-top:70px!important;}.pt-m{padding-top:60px!important;}.pt-s{padding-top:50px!important;}.pt-xs{padding-top:40px!important;}.pt-xxs{padding-top:30px!important;}
  .pb-xxl{padding-bottom:80px!important;}.pb-xl{padding-bottom:70px!important;}.pb-l{padding-bottom:70px!important;}.pb-m{padding-bottom:60px!important;}.pb-s{padding-bottom:50px!important;}.pb-xs{padding-bottom:40px!important;}.pb-xxs{padding-bottom:30px!important;}
  .mt-xxl-s{margin-top:80px!important;}.mt-xl-s{margin-top:70px!important;}.mt-l-s{margin-top:60px!important;}.mt-m-s{margin-top:45px!important;}.mt-s-s{margin-top:35px!important;}.mt-xs-s{margin-top:25px!important;}.mt-xxs-s{margin-top:20px!important;}.mt-no-s{margin-top:0px!important;}
  .mb-xxl-s{margin-bottom:80px!important;}.mb-xl-s{margin-bottom:70px!important;}.mb-l-s{margin-bottom:60px!important;}.mb-m-s{margin-bottom:45px!important;}.mb-s-s{margin-bottom:35px!important;}.mb-xs-s{margin-bottom:25px!important;}.mb-xxs-s{margin-bottom:20px!important;}.mb-no-s{margin-bottom:0px!important;}
}

/*******************************
 **
 ** TYPO ETC.
 **
********************************/
::-webkit-scrollbar {
  background: #DBDBDB;
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:vertical {
  background-color: var(--blue);
  height: 10px;
}

html {
    font-size: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
/*    font-size: clamp(0.875rem, calc(0.7061rem + 0.5405vw), 1.125rem);*/
    font-size: clamp(0.875rem, 0.7905rem + 0.2703vw, 1rem);;
    font-weight: 400;
    color: var(--black);
    line-height: 1.5;
    background: #fff;
}

@media screen and (min-width: 1100px) {
    body {
        background: url('../../files/theme/img/sievers-v.svg') #fff no-repeat 3vw bottom fixed;
        background-size: auto 75%;
    }
}

p,
.content-text ul,
.content-text ol {
    margin: 0 0 20px;
}

.content-text ul,
.content-text ol {
    list-style: disc outside none;
    padding-left: 20px;
}

.content-text ol {
    list-style-type: decimal
}

.content-text ul li ol,
.content-text ul li ul,
.content-text ol li ul,
.content-text ol li ol {
    margin-bottom: 0;
}

.content-text ul li::marker {
    color: var(--blue);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin: 0 0 30px;
    line-height: 1.2;
}

h1 {
/*    font-size: clamp(1.875rem, calc(0.6081rem + 4.0541vw), 3.75rem);*/
    font-size: clamp(1.875rem, 1.0304rem + 2.7027vw, 3.125rem);
    text-transform: uppercase;
}

h2 {
/*    font-size: clamp(1.5625rem, calc(0.5068rem + 3.3784vw), 3.125rem);*/
    font-size: clamp(1.5625rem, 0.9291rem + 2.027vw, 2.5rem);
}

h3 {
/*    font-size: clamp(1.375rem, calc(0.826rem + 1.7568vw), 2.1875rem);*/
    font-size: clamp(1.375rem, 1.0372rem + 1.0811vw, 1.875rem);
}

h4, h5, h6,
.project-list .layout_latest h2,
.project-list .layout_latest h3,
.content-accordion h2,
.handorgel__content h3 {
/*    font-size: clamp(1.125rem, calc(0.8294rem + 0.9459vw), 1.5625rem);*/
    font-size: clamp(1.125rem, 0.8294rem + 0.9459vw, 1.5625rem);
}

/* LINKS */
a,
.more span {
    color: var(--black);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.content-text a {
    color: var(--blue);
    font-weight: 400;
    text-decoration: underline;
}

.content-text a:hover {
    text-decoration: none;
}

.content-text a.link-fett {
    color: var(--black);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

.content-text a.link-fett:hover {
    color: var(--blue);
}

.more a,
.more span {
    text-transform: uppercase;
    font-weight: 700;
}

.more a:hover {
    color: var(--blue);
}

.arrow-blue a {
    color: var(--blue);
    background: url('../../files/theme/img/icons/icon-pfeil-rechts-blue-small.svg') transparent no-repeat right center;
    background-size: 16px auto;
    padding-right: 27px;
}

.arrow-blue a:hover {
    color: var(--black);
    background-image: url('../../files/theme/img/icons/icon-pfeil-rechts-black-small.svg');
}

.facebook-icon,
.instagram-icon {
    display: inline-block;
    margin-left: 7px;
}

.facebook-icon a,
.instagram-icon a {
    display: block;
    width: 60px;
    height: 60px;
    text-indent: -9999px;
    overflow: hidden;
    background: url('../../files/theme/img/icons/icon-facebook-white.svg') var(--blue) no-repeat center center;
    background-size: 40px auto;
}

.facebook-icon a:hover,
.instagram-icon a:hover {
    background-color: var(--black);
    background-image: url('../../files/theme/img/icons/icon-facebook-green.svg');
}

.instagram-icon a {
    background-image: url('../../files/theme/img/icons/icon-instagram-white.svg');
}

.instagram-icon a:hover {
    background-image: url('../../files/theme/img/icons/icon-instagram-green.svg');
}

/* BUTTONS */
button {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

/* STÖRER */
.stoerer {
    display: flex;
    align-items: center;
    width: clamp(9rem, 18vw, 11.5rem);
    height: clamp(9rem, 18vw, 11.5rem);
    border-radius: 50%;
    transform: rotate(355deg);
    background: var(--red);
    color: #fff;
    font-size: clamp(1.25rem, 0.9544rem + 0.9459vw, 1.6875rem);
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
}

a.stoerer:hover {
    transform: rotate(355deg) scale(1.2);
}

.stoerer-wrapper {
    position: relative;
}

.stoerer-wrapper .stoerer {
    position: absolute;
    top: -75px;
    right: -53px;
    z-index: 9;
}

.mod_article:has(.stoerer-wrapper) {
    overflow: visible;
}

@media screen and (max-width: 1279px) {
    .stoerer-wrapper .stoerer {
        right: -30px;
    }
}

@media screen and (max-width: 549px) {
    .stoerer-wrapper .stoerer {
        top: auto;
        bottom: 15px;
        right: 25px;
    }
}

/* TASTATUR */
*:focus:not(:focus-visible),
.mm-menu a:focus-visible, .mm-menu button:focus-visible, .mm-menu label:focus-visible {
    outline: none;
}

*:focus-visible,
.mm-menu a:focus-visible, .mm-menu button:focus-visible, .mm-menu label:focus-visible,
.checkbox_container input[type="checkbox"]:focus-visible + label {
    outline: 2px dashed currentcolor;
    outline-offset: 2px;
}

.checkbox_container input[type="checkbox"]:focus-visible + label {
    outline-color: var(--black);
}

#metanav ul li a:focus-visible {
    outline-offset: -2px;
}

#menu-mobile a:focus-visible,
.mm-menu a:focus-visible, .mm-menu button:focus-visible, .mm-menu label:focus-visible {
    outline-offset: -5px;
}

.teaserbox a:focus-visible img {
    outline: 2px dashed #000;
    outline-offset: -2px;
}

.swiper-button-prev:focus-visible,
.swiper-button-next:focus-visible {
    outline-color: var(--blue);
}


.invisible:focus-visible {
    margin: 2px 2px 5px;
    height: auto;
    width: auto;
    clip: unset;
}

#skipToMain {
    position: absolute;
    top: 5px;
    left: 40px;
    display: block;
    z-index: 9999;
}

@media screen and (max-width: 767px) {
    #skipToMain {
        left: auto;
        right: 40px;
    }
}

/* BACKGROUND */
.right-edge {
    background: var(--green);
    clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%, 0 80px);
}

@media screen and (min-width: 768px) {
    .right-edge {
        clip-path: none;
        background: url('../../files/theme/img/bg-gruen-schraege.svg') transparent no-repeat center center;
        background-size: auto 100%;
        position: relative;
    }

    .right-edge::after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1;
        background: url('../../files/theme/img/bg-muster.svg') transparent no-repeat center center;
        background-size: cover;
    }

    .right-edge .inner {
        position: relative;
        z-index: 9;
    }
}

/* BG AREA */
.bg-area {
    background: url('../../files/theme/img/bg-muster.svg') #f2f2f2 no-repeat center center;
    clip-path: polygon(100% 0, 100% calc(100% - 80px), calc(100% - 40px) 100%, 0 100%, 0 0);
    padding: 25px 20px 0px;
    border-bottom: 4px solid #2a96d4;
    margin-bottom: 30px;
    font-weight: 500;
}

.bg-area ul li {
    margin-bottom: 10px;
}

.bg-area-green {
    background-color: var(--green);
}

.bg-area-green a.telefon {
    background-image: url('../../files/theme/img/icons/icon-telefon-blue-small.svg')
}
.bg-area-green a.email {
    background-image: url('../../files/theme/img/icons/icon-email-blue-small.svg')
}

@media screen and (min-width: 550px) {
    .bg-area {
        padding: 30px 30px 0px;
    }
    
    .bg-area ul {
        column-count: 2;
        column-gap: 40px;
    }

    .bg-area ul li {
        margin-bottom: 20px;
    }
}

/* GRID */
@media screen and (max-width: 767px) {
    .col-change-md .col-12 {
        order: 2;
    }
    
    .col-change-md .col-12 + .col-12 {
        order: 1;
    }
}

@media screen and (max-width: 549px) {
    .col-change-sm .col-12 {
        order: 2;
    }
    
    .col-change-sm .col-12 + .col-12 {
        order: 1;
    }
}

/* SONSTIGES */
.overflow-visible {
    overflow: visible;
}

/****************************
 **
 ** HEADER
 **
*****************************/
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: 70px;
    background: var(--blue);
    border-bottom: 20px solid var(--green);
}

#header .inside {
    height: 100%;
}

#container {
  padding-top: 70px;
}

#logo {
  display: block;
  width: 260px;
  height: 101px;
  background: url('../../files/theme/img/sievers-logo.svg') transparent left bottom no-repeat;
  background-size: contain;
  text-indent: -9999px;
  transition: all 0.3s ease-in-out;
  position: absolute;
  left: 40px;
  bottom: -67px;
}

#mainnav {
    position: absolute;
    top: 0;
    right: 40px;
    overflow: visible;
}

#mainnav ul {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0;
}

#mainnav ul li {
  display: inline-block;
  margin: 0 0 0 40px;
  position: relative;
}

#mainnav ul li strong {
    font-weight: 400;
}

#mainnav ul li:first-of-type {
    margin-left: 0;
}

#mainnav ul.level_1 > li > a,
#mainnav ul.level_1 > li > strong {
    color: #fff;
    font-weight: 600;
    line-height: 70px;
}

#mainnav ul.level_1 > li > a::after,
#mainnav ul.level_1 > li > strong::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    margin-top: -17px;
    opacity: 0;
    transition: all 0.3s ease-out;
}

#mainnav ul.level_1 > li > a:hover::after,
#mainnav ul.level_1 > li > strong::after,
#mainnav ul.level_1 > li.trail > a::after {
    opacity: 1;
}

#mainnav .level_2 {
    position: absolute;
    top: 70px;
    left: 0;
    width: 270px;
    padding: 20px 10px 10px 30px;
    margin-left: -30px;
    background: var(--green);
    z-index: 1;
    opacity: 0;
    max-height: 0;
    min-width: 100px;
    overflow: hidden;
    transition: all 0.3s ease-out;
}

#mainnav ul > li:hover ul.level_2,
#mainnav ul > li.focus ul.level_2 {
    opacity: 1;
    max-height: 1000px;
}

#mainnav ul.level_2 li {
    display: block;
    margin: 20px 0;
}

#mainnav ul.level_2 li a,
#mainnav ul.level_2 li strong {
    color: var(--black);
    font-weight: 500;
    background: transparent no-repeat center right -20px;
    padding-right: 30px;
}

#mainnav ul.level_2 li a:hover,
#mainnav ul.level_2 li.trail a,
#mainnav ul.level_2 li strong {
    background-image: url('../../files/theme/img/icons/icon-pfeil-rechts-black.svg');
    background-position: center right;
    background-size: auto 16px;
}

/****************************
 **
 ** MMENU
 **
*****************************/
#menu-mobile {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 70px;
    background: var(--blue);
}

#menu-mobile ul {
    display: flex;
    flex-wrap: nowrap;
/*    align-items: center;*/
    margin: 0;
    height: 100%;
}

#menu-mobile ul li {
    width: 25%;
    height: 100%;
}

#menu-mobile ul li a {
    display: block;
    height: 100%;
    color: #fff;
    text-align: center;
    background: url('../../files/theme/img/icons/icon-karriere-white.svg') transparent no-repeat center 10px;
    background-size: auto 30px;
    padding-top: 44px;
    box-sizing: border-box;
}

#menu-mobile ul li a.icon-karriere {
    
}

#menu-mobile ul li a.icon-telefon {
    background-image: url('../../files/theme/img/icons/icon-telefon-white.svg')
}

#menu-mobile ul li a.icon-email {
    background-image: url('../../files/theme/img/icons/icon-email-white.svg')
}

#menu-mobile ul li a.icon-menu {
    background-image: url('../../files/theme/img/icons/icon-menu-white.svg')
}

body:not(.mm-wrapper--opened) .mm-slideout {
    -webkit-transform: none;
    transform: none;
}

.mm-panel,
.mm-navbar {
    background: var(--blue);
}

.mm-menu a, .mm-menu a:active, .mm-menu a:hover, .mm-menu a:link, .mm-menu a:visited,
.mm-listitem--selected > .mm-listitem__text {
    font-family: 'Raleway', sans-serif;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.mm-menu a:hover,
.mm-listitem--selected > a.mm-listitem__text,
.mm-listitem--selected > span.mm-listitem__text {
    opacity: 1;
    background: var(--green);
    color: var(--black);
}

.mm-menu a.mm-navbar__title {
    color: #fff;
    font-weight: 700;
}

.mm-menu a.mm-navbar__title:hover {
    background: transparent;
    color: #fff;
}

.mm-listitem::after,
.mm-listitem__btn,
.mm-navbar,
.mm-navbars_bottom .mm-navbar:first-child,
.mm-listitem__btn:not(.mm-listitem__text) {
    border-color: rgba(255,255,255,0.2);
}

.mm-listitem__btn:not(.mm-listitem__text) {
    border: 0 none;
}

.mm-btn--next::after, .mm-btn--prev::before {
    border-color: #fff;
}

.mm-btn--next:hover::after, .mm-btn--prev:hover::before,
.mm-listitem--selected .mm-btn--next::after,
.mm-listitem--selected .mm-btn--prev::before {
    border-color: var(--black);
}

@media screen and (max-width: 939px) {
    #logo {
        width: 200px;
        height: 78px;
        bottom: -52px;
    }
}

@media screen and (max-width: 767px) {
    #header {
        height: 35px;
        border-bottom-width: 8px;
    }
    
    #container {
        padding-top: 35px;
    }
    
    #footer {
        padding-bottom: 70px;
    }
    
    #logo {
        width: 154px;
        height: 60px;
        bottom: -40px;
    }
    
    #mainnav {
        display: none;
    }
    
    #menu-mobile {
        display: block;

    }
}

@media screen and (max-width: 549px) {
    #logo {
        left: 20px;
    }
}

/****************************
 **
 ** CONTENT HEADER
 **
*****************************/
.header-img {
    width: 100%;
    max-width: none;
}

.headerintro-wrapper {
    background: url('../../files/theme/img/bg-muster.svg') var(--green) no-repeat center center;
    background-size: cover;
    border-bottom: 30px solid var(--blue);
    margin-left: auto;
    margin-top: -100px;
    position: relative;
    padding-bottom: 30px;
    box-sizing: border-box;
    clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%, 0 80px);
}

.headerintro-headlines p {
    margin-bottom: 0;
}

.headerintro-text-left {
    font-weight: 600;
/*    font-size: clamp(1.4375rem, calc(0.8041rem + 2.027vw), 2.375rem);*/
/*    font-size: clamp(1.375rem, 1.0372rem + 1.0811vw, 1.875rem);*/ /* 22-30 */
    font-size: clamp(1.25rem, 0.9544rem + 0.9459vw, 1.6875rem);
    line-height: 1.3;    
}

.headerintro-text-left .icon-info {
    font-size: clamp(0.875rem, 0.7905rem + 0.2703vw, 1rem);
    font-weight: 300;
    text-transform: uppercase;
}

@media screen and (min-width: 1640px) {
    .headerintro-wrapper {
        width: calc(100vw - (100vw - var(--headerintro_width)) / 2);
        clip-path: polygon(100% 0, 100% 100%, 0 100%, 200px 0);
        min-height: 500px;
        margin-top: -250px;
    }
    

    .header-small .headerintro-wrapper {
        min-height: 275px;
    }
    
    .headerintro-content {
        margin-left: 200px;
    }
    

    .headerintro-text {
        margin-top: 100px;
    }
}

/****************************
 **
 ** TEASERBOX
 **
*****************************/
.teaserbox figure {
    margin-bottom: 15px;
}

.teaserbox.img-width-140 figure {
    width: 140px;
}

.teaserbox figure picture {
    display: block;
    clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%, 0 80px);
    margin: 0 -20px;
}

.teaserbox-v1 figure picture {
    clip-path: polygon(100% 0, 100% calc(100% - 80px), calc(100% - 40px) 100%, 0 100%, 0 0);
}

.teaserbox .rte a {
    color: var(--black);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

@media screen and (min-width: 550px) {
    .teaserbox figure picture {
        margin: 0 -40px;
    }
}

@media screen and (min-width: 768px) {
    .teaserbox figure {
        position: relative;
        margin-bottom: 60px;
        transition: all 0.3s ease-in-out;
    }

    .teaserbox figure picture {
        clip-path: polygon(100% 0, 100% 71%, 82% 100%, 0 100%, 0 0);
        margin: 0;
        position: relative;
        z-index: 9;
        line-height: 0;
        transition: all 0.3s ease-in-out;
    }

    .teaserbox figure a img {
        transition: all 0.3s ease-in-out;
    }

    .teaserbox figure::after {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 20px;
        left: 20px;
    /*    margin: 20px 0 0 20px;*/
        background: var(--green);
        clip-path: polygon(100% 0, 100% 71%, 82% 100%, 0 100%, 0 0);
        transition: all 0.3s ease-in-out;
    }


    .teaserbox:hover figure {
        margin-bottom: 70px; /* damit es nicht wackelt */
    }

    .teaserbox:hover figure a img {
        margin: -10px 0 0 -10px;
    }

    .teaserbox:hover figure::after {
        background: var(--blue);
        top: 30px;
        left: 30px;
    }

    .teaserbox:hover .rte a {
        color: var(--blue);
    }

    /* TEASERBOX V1 */
    .teaserbox-v1 {
        margin-right: 20%;
    }

    /* TEASERBOX V2 */
    .teaserbox-v2 {
        padding-right: 20px;
    }

    /* TEASERBOX V3 + V4 */
    .teaserbox-v3,
    .teaserbox-v4 {
        margin-top: 20px;
    }

    .teaserbox-v4 {
        margin-left: 20%;
    }

    .teaserbox-v3 figure picture,
    .teaserbox-v4 figure picture {
        clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 0 29%);
    }

    .teaserbox-v3 figure::after,
    .teaserbox-v4 figure::after {
        top: -20px;
        left: -20px;
        clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 0 29%);
    }

    .teaserbox-v3:hover figure a picture,
    .teaserbox-v3:hover figure::after,
    .teaserbox-v4:hover figure a picture,
    .teaserbox-v4:hover figure::after {
        clip-path: polygon(100% 0, 100% 71%, 82% 100%, 0 100%, 0 0);
    }
}

/****************************
 **
 ** PROJECTS / SLIDER
 **
*****************************/
.tns-ovh,
.project-slider,
.project-list .layout_latest {
    overflow: visible;
}

.project-list .layout_latest .news-item-inner {
    background: #fff;
    border: 1px solid var(--green);
    border-bottom: 30px solid var(--blue);
/*    margin-right: 40px;*/
}

.project-list .layout_latest .news-content {
    padding: 20px;
}

.project-list .layout_latest .news-item-inner {
    position: relative;
    transition: all 0.2s ease-in-out;
}

.project-list .layout_latest .news-item-inner:hover .more span {
    color: var(--blue);
}

.project-list .layout_latest a::before {
   content: '';
   position: absolute;
   inset: 0;
   z-index: 1;
}

.pagination {
    margin-top: 50px;
}

.pagination ul li {
    display: inline-block;
    margin-right: 10px;
}

.tns-controls {
    margin-top: 50px;
}

.tns-controls button,
.swiper-button-next,
.swiper-button-prev {
    background: url('../../files/theme/img/icons/icon-pfeil-links-green.svg') var(--black) no-repeat center center;
    background-size: 40px auto;
    border: 0 none;
    margin-right: 15px;
    height: 60px;
    width: 60px;
    text-indent: -9999px;
    overflow: hidden;
}

.swiper .swiper-button-prev {
    margin-left: 15px;
}

.swiper-button-next svg,
.swiper-button-prev svg {
    display: none;
}

.tns-controls button[data-controls="next"] {
    background-image: url('../../files/theme/img/icons/icon-pfeil-rechts-green.svg')
}

.swiper-button-next, .swiper-button-prev {
    background-color: var(--green);
    background-image: url('../../files/theme/img/icons/icon-pfeil-links-black.svg');
}

.swiper-button-next {
    background-image: url('../../files/theme/img/icons/icon-pfeil-rechts-black.svg')
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: var(--black);
    background-image: url('../../files/theme/img/icons/icon-pfeil-links-green.svg')
}

.swiper-button-next:hover {
    background-image: url('../../files/theme/img/icons/icon-pfeil-rechts-green.svg')
}

.swiper-pagination-bullet {
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--green);
    opacity: 1;
}

@media screen and (min-width: 768px) {
    .tns-controls button {
        background-color: var(--green);
        background-image: url('../../files/theme/img/icons/icon-pfeil-links-black.svg');
    }
    
    .tns-controls button[data-controls="next"] {
        background-image: url('../../files/theme/img/icons/icon-pfeil-rechts-black.svg')
    }

    .tns-controls button:hover {
        background-color: var(--black);
        background-image: url('../../files/theme/img/icons/icon-pfeil-links-green.svg')
    }

    .tns-controls button[data-controls="next"]:hover {
        background-image: url('../../files/theme/img/icons/icon-pfeil-rechts-green.svg')
    }
    
    .project-list .layout_latest .news-item-inner:hover {
        margin-top: -20px;
    }
}

@media screen and (min-width: 1100px) {
    .project-list .layout_latest .news-content {
        padding: 30px;
    }
}

/****************************
 **
 ** QUICKLINKS
 **
*****************************/
#quicklinks {
    display: none;
}

@media screen and (min-width: 768px) {
    #quicklinks {
        display: block;
        position: fixed;
        bottom: 5%;
        right: 0;
        z-index: 99;
    }

    #quicklinks li {
        width: 70px;
        height: 60px;
        margin-bottom: 10px;
    }

    #quicklinks li.quicklink-bewerben {
        height: 150px;
        margin-bottom: 20vh;
    }

    #quicklinks li a {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 60px;
        height: 60px;
        margin-left: auto;
        background: var(--black);
        color: #fff;
        font-size: 0.75rem;
        text-align: center;
    }

    #quicklinks li.quicklink-bewerben a {
        transform: rotate(-90deg) translate(-100%, 0);
        transform-origin: top left;
        width: 150px;
        height: 70px;
        margin-left: 10px;
        flex-direction: row;
        padding: 20px 10px 0;
        align-items: flex-start;
        font-size: 0.875rem;
    }

    #quicklinks li a::before {
        content: '';
        display: block;
        width: 20px;
        height: 21px;
        background: url('../../files/theme/img/icons/icon-email-white.svg') transparent no-repeat center center;
        background-size: contain;
        margin-bottom: 2px;
    }

    #quicklinks li.quicklink-telefon a::before {
        background-image: url('../../files/theme/img/icons/icon-telefon-white.svg');
    }

    #quicklinks li.quicklink-bewerben a::before {
        background-image: url('../../files/theme/img/icons/icon-karriere-white.svg');
        margin-right: 7px;
    }

    #quicklinks li a:hover {
        padding-right: 10px;
        color: var(--green);
    }

    #quicklinks li.quicklink-bewerben a:hover {
        margin-left: 0px;
        padding: 20px 10px 0;
    }

    #quicklinks li a:hover::before {
        background-image: url('../../files/theme/img/icons/icon-email-green.svg');
    }

    #quicklinks li.quicklink-telefon a:hover::before {
        background-image: url('../../files/theme/img/icons/icon-telefon-green.svg');
    }

    #quicklinks li.quicklink-bewerben a:hover::before {
        background-image: url('../../files/theme/img/icons/icon-karriere-green.svg');
    }
}

/****************************
 **
 ** STANDORTE
 **
*****************************/
#standorte-map-wrapper {
    position: relative;
    line-height: 0;
    margin: 0 -20px;
    clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%, 0 80px);
}

#standorte-map {
    width: 100%;
    position: relative;
}

.standort-label:focus-visible {
    outline: 2px dashed var(--black);
    outline-offset: 2px;
}

#standorte-tooltips-wrapper .content-text {
    position: absolute;
    background: #fff;
    padding: 15px 20px 0;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.05);
    visibility: hidden;
    z-index: 10;
    line-height: 1.5;
}

#standorte-tooltips-wrapper .content-text a {
    color: var(--black);
}

#standorte-tooltips-wrapper .content-text a.telefon {
    background-image: url('../../files/theme/img/icons/icon-telefon-blue-small.svg')
}
#standorte-tooltips-wrapper .content-text a.fax {
    background-image: url('../../files/theme/img/icons/icon-fax-blue-small.svg')
}
#standorte-tooltips-wrapper .content-text a.email {
    background-image: url('../../files/theme/img/icons/icon-email-blue-small.svg')
}

@media screen and (max-width: 768px) {
    #standorte-tooltips-wrapper .content-text {
        top: 15px !important;
        left: 15px !important;
    }
}

@media screen and (min-width: 550px) {
    #standorte-map-wrapper {
        margin: 0 -40px;
    }
}

@media screen and (min-width: 769px) {
    #standorte-map-wrapper {
        margin: 0;
        clip-path: none;
    }

    #standorte-map-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: -192px;
        width: 192px;
        height: 100%;
        background: var(--blue);
        clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    }
}

/****************************
 **
 ** JOBS
 **
*****************************/
.module-plenta-jobs-basic-offer-list .layout_default {
    border-bottom: 2px solid var(--blue);
    padding: 25px 0;
}

.module-plenta-jobs-basic-offer-list .layout_default:first-of-type {
    border-top: 2px solid var(--blue);
}

.module-plenta-jobs-basic-offer-list .layout_default .title {
    font-size: clamp(1.125rem, 0.9561rem + 0.5405vw, 1.375rem);
    font-weight: 600;
    margin-bottom: 7px;
}

.module-plenta-jobs-basic-offer-list .layout_default ul {
    margin: 0;
}

.module-plenta-jobs-basic-offer-list .layout_default ul li {
    display: inline-block;
    margin-right: 30px;
}

.icon-info {
    background: url('../../files/theme/img/icons/icon-ort.svg') transparent no-repeat left center;
    background-size: 20px auto;
    padding-left: 25px;
}

.employment-type {
    background-image: url('../../files/theme/img/icons/icon-uhr.svg');
}

.module-plenta-jobs-basic-offer-list .layout_default p.more {
    margin-bottom: 0;
}

.job-description h2 {
    margin: 40px 0 20px;
}

p.back {
    margin-top: 50px;
}

/* FILTER */
.module-plenta-jobs-basic-filter .checkbox_container {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 4px;
}

.module-plenta-jobs-basic-filter .checkbox_container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
}

.module-plenta-jobs-basic-filter .checkbox_container label {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 6px 15px;
    background: var(--black);
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    text-align: center;
    user-select: none;
    transition: all 0.3s ease;
}

.module-plenta-jobs-basic-filter .checkbox_container label:hover {
    color: var(--green);
}

.module-plenta-jobs-basic-filter .checkbox_container input[type="checkbox"]:checked + label {
    color: var(--green);
}

@media screen and (min-width: 1100px) {
    .module-plenta-jobs-basic-filter:not(.filter-align-left) .checkbox_container {
        justify-content: space-between;
    }

    .module-plenta-jobs-basic-filter:not(.filter-align-left) .checkbox_container span {
        flex-grow: 1;
        min-width: min-content;
    }
    
    
}

/* READER */
.module-plenta-jobs-basic-offer-reader {
    border-top: 2px solid var(--blue);
    padding-top: 25px;
}

/****************************
 **
 ** TIMELINE
 **
*****************************/
.timeline {
  position: relative;
  margin: 0 auto;
}

.timeline-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.timeline-svg path {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 calc(100%));
}

.timeline .content-text {
  padding: 10px 40px;
  position: relative;
  background-color: transparent;
  width: 50%;
  box-sizing: border-box;
  min-height: 300px;
}

.timeline .content-text:nth-child(odd) {
  left: 0;
}

.timeline .content-text:nth-child(even) {
  left: 50%;
}

.timeline .text-wrapper {
  position: relative;
  padding: 0 50px;
}

@media screen and (max-width: 980px) {
    .timeline .text-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
}

@media screen and (max-width: 767px) {
  .timeline .content-text {
    width: 100%;
    padding-left: 80px;
    padding-right: 5px;
  }
    
  .timeline .content-text:nth-child(even) {
    left: 0%;
  }
}

/****************************
 **
 ** GALLERY
 **
*****************************/
.content-gallery ul {
    display: flex;
    flex-wrap: wrap;
}

.content-gallery ul li {
    padding: 7px;
    box-sizing: border-box;
}

.content-gallery ul li figure {
    line-height: 0;
}

.content-gallery--cols-2 ul li {
    width: 50%;
}

.content-gallery--cols-3 ul li {
    width: 33.33%;
}

#cboxPrevious,
#cboxNext,
#cboxClose {
    width: 50px;
    height: 50px;
    background: url('../../files/theme/img/icons/icon-pfeil-rechts-black.svg') var(--green) no-repeat center center;
    background-size: 33px auto;
}

#cboxPrevious {
    background-image: url('../../files/theme/img/icons/icon-pfeil-links-black.svg');
}

#cboxClose {
    background-image: url('../../files/theme/img/icons/icon-close-black.svg');
}

#cboxPrevious:hover,
#cboxNext:hover,
#cboxClose:hover {
    background-position: center center;
    background-color: var(--black);
    background-image: url('../../files/theme/img/icons/icon-pfeil-rechts-green.svg');
}

#cboxPrevious:hover {
    background-image: url('../../files/theme/img/icons/icon-pfeil-links-green.svg');
}

#cboxClose:hover {
    background-image: url('../../files/theme/img/icons/icon-close-green.svg');
}

@media screen and (max-width: 939px) {
    .content-gallery--cols-3 ul li {
        width: 50%;
        padding: 4px;
    }
}

/****************************
 **
 ** AKKORDEON
 **
*****************************/
.content-accordion {
    border-top: 2px solid var(--blue);
    border-bottom: 0 none;
    background: #fff;
}

.accordion-container {
    border-bottom: 2px solid var(--blue);
}

.handorgel__header__button {
    border: 0 none;
    background: transparent;
    position: relative;
    padding-left: 50px;
}

.handorgel__header__button::before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 5px;
    background: url('../../files/theme/img/icons/icon-pfeil-rechts-black.svg') transparent no-repeat center center;
    background-size: 38px auto;
    border: 0 none;
    height: 38px;
    width: 38px;
    transition: all 0.3s ease-in-out;
}

.handorgel__header--open .handorgel__header__button::before {
    transform: rotate(90deg);
}

.handorgel__header__button:hover {
    background: var(--green);
}

.handorgel__content {
    border: 0 none;
    background: transparent;
}

.handorgel__content .handorgel__content__inner {
    padding: 20px 0 30px 50px;
}

.handorgel__content .handorgel__content__inner .content-text {
    max-width: 800px;
}

@media screen and (max-width: 1100px) {
    .handorgel__header__button,
    .handorgel__content .handorgel__content__inner{
        padding-left: 45px;
    }
    
    .handorgel__header__button::before {
        background-size: 30px auto;
        height: 30px;
        width: 30px;
    }
}

@media screen and (max-width: 768px) {
    .handorgel__header__button,
    .handorgel__content .handorgel__content__inner{
        padding-left: 40px;
    }
    
    .handorgel__header__button::before {
        background-size: 25px auto;
        height: 25px;
        width: 25px;
    }
}

/****************************
 **
 ** FORM
 **
*****************************/
form .widget {
    margin-bottom: 10px;
}

form label {
    display: block;
}

form input.text,
form textarea,
form select {
    padding: 10px 12px;
    width: 100%;
    box-sizing: border-box;
    background: #e5e5e5;
    border: 1px solid rgba(0, 0, 0, 0);
}

form input:focus-visible,
form textarea:focus-visible,
form select:focus-visible {
    outline: 0;
    outline-offset: 0;
    border: 1px solid rgba(0, 0, 0, 0.7);
}

input:user-invalid,
select:user-invalid,
textarea:user-invalid,
form input:focus-visible:user-invalid,
form textarea:focus-visible:user-invalid,
form select:focus-visible:user-invalid {
    border: 1px solid #ff0000;
}

form button {
    display: inline-block;
    background: var(--blue);
    font-size: clamp(1rem, 0.8311rem + 0.5405vw, 1.25rem);
    text-transform: uppercase;
    padding: 12px 25px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border: 0 none;
}

form button:hover {
    background: var(--black);
    color: var(--green);
}

/****************************
 **
 ** FOOTER
 **
*****************************/
#footer {
    font-weight: 300;
    margin-top: 80px;
}

.footer-contact {
    background: var(--gray_dark);
    color: #fff;
}

.footer-contact .inner {
    background: url('../../files/theme/img/baueme.svg') transparent no-repeat right bottom;
    background-size: auto 50%;
}

.footer-contact strong {
    display: inline-block;
    font-size: clamp(1.125rem, 0.9561rem + 0.5405vw, 1.375rem);
    margin-bottom: 15px;
}

.footer-contact a {
    color: #fff;
}

.footer-contact a:hover {
    text-decoration: none;
}

.footer-bottom {
    background: var(--green);
    padding: 20px 0;
}

#metanav ul {
    margin: 0;
}

#metanav ul li {
    display: inline-block;
    margin-right: 15px;
}

#metanav ul li a {
    color: var(--black);
    text-decoration: underline;
    display: inline-block;
    padding: 4px;
}

#metanav ul li a:hover,
#metanav ul li strong {
    text-decoration: none;
}

@media screen and (max-width: 1279px) {
    .footer-contact .inner {
        background-position: right 40px bottom;
    }
}

@media screen and (max-width: 767px) {
    .footer-contact .inner {
        background-position: 40px bottom;
        background-size: auto 37%;
    }
    
    .footer-contact .row .ce_columns:first-of-type {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 549px) {
    .footer-contact .inner {
        background-position: 20px bottom;
    }
}
