html {
  --grid__columns: 12;
  --grid__gutter: 1.875rem;
}
.row {
  display: grid;
  grid-template-columns: repeat(var(--grid__columns), 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;
}

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%}
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}
.cc-head>*:first-child{margin-top:0}.cc-head>*:last-child{margin-bottom:15px}.contao-cookiebar{--ccb-backdrop: rgba(0, 0, 0, .75);--ccb-anim-duration: .5s;--ccb-checked-clr: #399d32;--ccb-checked-bg: #dcf3db;--ccb-unchecked-clr: #9c9b99;--ccb-unchecked-bg: #fff;--ccb-disabled-clr: #c8c7c5;--ccb-disabled-bg: #f4f4f4;--ccb-focus-clr: #00a4f4;position:fixed;inset:0;z-index:9999;display:flex;align-items:var(--ccb-align, center);justify-content:var(--ccb-justify, center);letter-spacing:0;padding:15px;max-height:100dvh;box-sizing:border-box;pointer-events:none;overflow:hidden;color:var(--ccb-clr, #444)}.contao-cookiebar *{box-sizing:border-box}.contao-cookiebar p{color:var(--ccb-text, #868686);line-height:1.4}.contao-cookiebar label{position:relative;display:block;padding:8px 13px 8px 0;line-height:1.2rem}.contao-cookiebar label.group{font-weight:600}.contao-cookiebar input{position:absolute;width:1px;height:1px;outline:0 none;opacity:0}.contao-cookiebar input+label{padding:8px 13px 8px 45px;cursor:pointer}.contao-cookiebar input+label:before,.contao-cookiebar input+label:after{content:"";position:absolute;border-radius:10px}.contao-cookiebar input+label:before{top:7px;left:0;width:35px;height:18px;margin:0;box-sizing:content-box;background:var(--ccb-unchecked-bg);border:1px solid var(--ccb-unchecked-clr);transition:border-color .2s}.contao-cookiebar input+label:after{display:block;top:11px;left:4px;width:12px;height:12px;background:var(--ccb-unchecked-clr);transition:background .2s,margin-left .2s,padding .2s}.contao-cookiebar input+label:active:after{padding-left:5px}.contao-cookiebar input.cc-group-half+label:after{background:linear-gradient(to right, var(--ccb-unchecked-clr) 0%, var(--ccb-unchecked-clr) 50%, var(--ccb-checked-clr) 50%, var(--ccb-checked-clr) 100%)}.contao-cookiebar input:checked+label:after{background:var(--ccb-checked-clr);margin-left:17px}.contao-cookiebar input:checked+label:active:after{margin-left:12px}.contao-cookiebar input:checked+label:before{background:var(--ccb-checked-bg);border-color:var(--ccb-checked-clr)}.contao-cookiebar input:disabled+label{pointer-events:none}.contao-cookiebar input:disabled+label:after{background:var(--ccb-disabled-clr)}.contao-cookiebar input:disabled+label:before{background:var(--ccb-disabled-bg);border-color:var(--ccb-disabled-clr)}.contao-cookiebar input:focus-visible:not(.cc-hide-focus)+label:before{outline:3px dashed var(--ccb-focus-clr);outline-offset:2px}.contao-cookiebar .cc-btn{display:inline-block;cursor:pointer;width:100%;padding:8px 14px;margin-bottom:8px;font-size:15px;outline:0 none;border:1px solid var(--ccb-btn-bdr, #cfcfcf);border-radius:4px;color:var(--ccb-btn-clr, #444);background:var(--ccb-btn-bg, #f5f5f5)}.contao-cookiebar .cc-btn:hover,.contao-cookiebar .cc-btn:focus{background:var(--ccb-btn-bg-hvr, #ececec)}.contao-cookiebar .cc-btn:last-child{margin-bottom:0}.contao-cookiebar .grayscale{--ccb-btn-bg: #f1efef;--ccb-btn-bg-hvr: #ececec}.contao-cookiebar .grayscale .success{--ccb-btn-bg: #fbfbfb;--ccb-btn-bg-hvr: #f7f7f7}.contao-cookiebar .highlight .success{--ccb-btn-bg: #4e9e3e;--ccb-btn-bg-hvr: #4c933f;--ccb-btn-bdr: #3e7830;--ccb-btn-clr: #fff}.cc-focus:not(.cc-hide-focus):focus-visible{outline:3px dashed var(--ccb-focus-clr);outline-offset:-3px}.cc-invisible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;float:left}.cc-inner{display:inline-block;overflow-y:auto;max-height:100%;max-width:100%;padding:23px;border-radius:3px;opacity:0;pointer-events:none;visibility:hidden;font-size:1rem;text-align:left;background:var(--ccb-bg, #fff);box-shadow:var(--ccb-box-shadow, rgba(99, 99, 99, 0.2)) 0 2px 8px 0;animation:var(--ccb-anim, cookiebar-middle-in) var(--ccb-anim-duration) ease-in-out forwards}.cc-group{position:relative;border:1px solid var(--ccb-bdr, #d0d0d0);border-radius:5px;margin-bottom:10px}.cc-cookie-info{font-size:.875rem;background:var(--ccb-info-bg, #fff);border:1px solid var(--ccb-info-bdr, #efefef);padding:10px;border-radius:5px}.cc-cookie-info>div>span{font-weight:600}.cc-cookie-info>div+div{margin-top:5px;word-wrap:break-word}.cc-cookie-info+button.cc-detail-btn-details{margin-top:15px}.cc-cookies{background:var(--ccb-cookies-bg, #fbfbfb);border-radius:0 0 5px 5px}.cc-cookies>p{font-size:.875rem}.cc-cookies>p,.cc-cookies>.cc-cookie{margin:0;padding:15px;border-top:1px solid var(--ccb-cookies-bdr, #fbfbfb)}.cc-cookie label.cookie+*{margin-top:10px}.cc-cookie p{margin:0 0 15px;font-size:.875rem}.cc-cookie-desc p{margin-bottom:0}.cc-footer,.cc-info{text-align:center}.cc-info{margin-top:15px}.cc-info>p{font-size:.875rem}.cc-info>a{display:inline-block;font-size:.813rem;color:var(--ccb-detail-clr, #a2a2a2);text-decoration:none}.cc-info>a:hover{color:var(--ccb-detail-clr-hvr, #717171)}.cc-info>a+a:before{display:inline-block;content:"·";margin-right:5px}.cc-active .cc-inner{opacity:1;pointer-events:auto;visibility:visible}.cc-active.cc-blocked{pointer-events:auto;animation:cookiebar-overlay-in var(--ccb-anim-duration) ease-in-out forwards}.cc-saved.cc-inner{opacity:0;pointer-events:none;visibility:hidden}.cc-saved.cc-blocked{pointer-events:none;animation:cookiebar-overlay-out var(--ccb-anim-duration) ease-in-out forwards}.cc-left{--ccb-justify: flex-start}.cc-right{--ccb-justify: flex-end}.cc-top{--ccb-align: flex-start}.cc-top.cc-active{--ccb-anim: cookiebar-top-in}.cc-top.cc-saved{--ccb-anim: cookiebar-top-out}.cc-middle.cc-active{--ccb-anim: cookiebar-middle-in}.cc-middle.cc-saved{--ccb-anim: cookiebar-middle-out}.cc-bottom{--ccb-align: flex-end}.cc-bottom.cc-active{--ccb-anim: cookiebar-bottom-in}.cc-bottom.cc-saved{--ccb-anim: cookiebar-bottom-out}@media(min-width: 768px){.contao-cookiebar .cc-btn{width:auto;margin-bottom:0}.cc-inner{max-width:var(--ccb-max-width, 750px)}}@media(forced-colors){.contao-cookiebar input+label:after{border:1px solid currentColor}.cc-inner{border:1px solid currentColor}input.cc-group-half+label:after{margin-left:9px}}@media(prefers-reduced-motion){.contao-cookiebar{--ccb-anim-duration: 2s}}@media print{.contao-cookiebar{opacity:0}}@keyframes cookiebar-overlay-in{0%{background:rgba(0,0,0,0)}to{background:var(--ccb-backdrop)}}@keyframes cookiebar-overlay-out{0%{background:var(--ccb-backdrop)}to{background:rgba(0,0,0,0);visibility:hidden}}@keyframes cookiebar-top-in{0%{opacity:0;transform:translateY(-100%)}to{opacity:1;transform:translateY(0)}}@keyframes cookiebar-top-out{0%{opacity:1;visibility:visible;transform:translateY(0)}to{opacity:0;visibility:hidden;transform:translateY(-100%)}}@keyframes cookiebar-middle-in{0%{opacity:0;transform:scale(0)}to{opacity:1;transform:scale(1)}}@keyframes cookiebar-middle-out{0%{opacity:1;visibility:visible;transform:scale(1)}to{opacity:0;visibility:hidden;transform:scale(0)}}@keyframes cookiebar-bottom-in{0%{opacity:0;transform:translateY(100%)}to{opacity:1;transform:translateY(0)}}@keyframes cookiebar-bottom-out{0%{opacity:1;visibility:visible;transform:translateY(0)}to{opacity:0;visibility:hidden;transform:translateY(100%)}}.cc-groups{display:none;padding-top:15px}.cc-group{text-align:left}.cc-group>label{margin:5px 130px 5px 10px}.cc-detail-btn-details{text-decoration:underline;padding:0;margin:0 0 10px;color:var(--ccb-detail-clr, #a2a2a2);border:0 none;outline:0 none;background:rgba(0,0,0,0);font-size:13px;letter-spacing:0;text-transform:initial;cursor:pointer}.cc-detail-btn-details span:nth-child(2){display:none}.cc-detail-btn-details.cc-active span:nth-child(1){display:none}.cc-detail-btn-details.cc-active span:nth-child(2){display:inline}.cc-detail-btn-details:hover{color:var(--ccb-detail-clr-hvr, #717171)}
@font-face {
	font-family: Maison-Neue-Regular;
	font-style: normal;
	font-weight: 400;
	src: url(../../files/needs-people/fonts/MaisonNeueWEB-Book.woff2) format("woff2"), url(../../files/needs-people/fonts/MaisonNeueWEB-Book.woff) format("woff");
	font-display: swap;
}

@font-face {
	font-family: Maison-Neue-Extra-Bold;
	font-style: normal;
	font-weight: 400;
	src: url(../../files/needs-people/fonts/MaisonNeueWEB-ExtraBold.woff2) format("woff2"), url(../../files/needs-people/fonts/MaisonNeueWEB-ExtraBold.woff) format("woff");
	font-display: swap;
}

@font-face {
	font-family: Maison-Neue-Black;
	font-style: normal;
	font-weight: 400;
	src: url(../../files/needs-people/fonts/MaisonNeueWEB-Black.woff2) format("woff2"), url(../../files/needs-people/fonts/MaisonNeueWEB-Black.woff) format("woff");
	font-display: swap;
}

@font-face {
	font-family: Maison-Neue-Mono-Regular;
	font-style: normal;
	font-weight: 400;
	src: url(../../files/needs-people/fonts/MaisonNeueMonoWEB-Regular.woff2) format("woff2"), url(../../files/needs-people/fonts/MaisonNeueMonoWEB-Regular.woff) format("woff");
	font-display: swap;
}

@font-face {
	font-family: Maison-Neue-Mono-Bold;
	font-style: normal;
	font-weight: 400;
	src: url(../../files/needs-people/fonts/MaisonNeueMonoWEB-Bold.woff2) format("woff2"), url(../../files/needs-people/fonts/MaisonNeueMonoWEB-Bold.woff) format("woff");
	font-display: swap;
}

@font-face {
	font-family: Reenie Beanie;
	font-style: normal;
	font-weight: 400;
	src: url('../../files/needs-people/fonts/reenie-beanie-v20-latin-regular.woff2') format('woff2');
	font-display: swap;
}

:where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *)) {
	all: unset;
	display: revert
}

*,
:after,
:before {
	box-sizing: border-box;
	margin: 0;
	padding: 0
}

a {
	color: currentColor;
	cursor: url(../../files/needs-people/images/layout/cursor-pointer-black.svg) 0 0, auto;
	text-decoration: none
}

.bg-color-black a {
	color: currentColor;
	cursor: url(../../files/needs-people/images/layout/cursor-pointer-lime.svg) 0 0, auto;
}

menu,
ol,
ul {
	list-style: none;
	margin: 0 0 1rem
}

img {
	max-width: 100%;
	vertical-align: bottom
}

video {
	vertical-align: bottom
}

table {
	border-collapse: collapse
}

textarea {
	white-space: revert
}

:where([hidden]) {
	display: none
}

:where([contenteditable]) {
	-moz-user-modify: read-write;
	-webkit-user-modify: read-write;
	-webkit-line-break: after-white-space;
	overflow-wrap: break-word
}

:where([draggable=true]) {
	-webkit-user-drag: element
}

::selection {
	background: white;
	color: black
}

.bg-color-no-color ::selection,
.bg-color-white ::selection,
.layout-standard ::selection,
.layout-projects ::selection{
	background: black;
	color: white
}

body {
	cursor: url(../../files/needs-people/images/layout/cursor-default-black.svg) 0 0, auto;
	font-size: 1.5rem;
	line-height: 2.5rem;
	transition: background-color .5s ease, color .5s ease
}

.bg-color-black {
	cursor: url(../../files/needs-people/images/layout/cursor-default-lime.svg) 0 0, auto;
}

.mnm-regular,
body {
	font-family: Maison-Neue-Mono-Regular, monospace
}

.mnm-bold {
	font-family: Maison-Neue-Mono-Bold, monospace
}

.mn-regular {
	font-family: Maison-Neue-Regular
}

.mn-extra-bold {
	font-family: Maison-Neue-Extra-Bold
}

.mn-black {
	font-family: Maison-Neue-Black
}

.rb-regular {
	font-family: Reenie Beanie;
}

h1,
h2,
h3,
h4,
h5 {
	margin: 1rem 0
}

.headline-style-1 {
	font-size: 4rem;
	line-height: 5rem
}

.headline-style-2 {
	font-size: 1.5rem
}

.headline-style-2-2 {
	background-image: url(../../files/needs-people/images/layout/headline-lime.svg);
	background-position: center center;
	background-repeat: no-repeat;
	color: black;
}

.bg-color-lime .headline-style-2-2 {
	background-image: url(../../files/needs-people/images/layout/headline-blue.svg);
	color: white;
}

.headline-style-3 {
	font-size: 5rem;
	line-height: 7rem;
	padding: 1rem 0
}

.headline-style-4 {
	font-size: 6rem;
	line-height: 7rem
}

.headline-style-5 {
	background-repeat: no-repeat;
	font-size: 2rem;
	line-height: 3rem
}

.headline-style-5.headline-style-5-3 {
	font-size: 1.5rem;
	line-height: 3rem;
}

.headline-style-5-1,
.headline-style-5-3 {
	background-position: 0;
	padding: 0 0 0 4rem
}

.headline-style-5-2 {
	background-position: 100%;
	display: inline-block;
	padding: 0 4rem 0 0
}

.headline-style-5-1 a {
	color: blue
}

.headline-style-6 {
	font-size: 2rem;
	line-height: 3rem
}

.headline-style-7 {
	font-size: 3rem;
	line-height: 4rem
}

.headline-style-8 {
	font-size: 2rem;
	line-height: 3rem;
}

.layout-standard.meta h3 {
	font-size: 1rem;
	margin-top: 0;
	text-transform: uppercase
}

.color-black {
	color: black
}

.color-white {
	color: white
}

.color-blue {
	color: blue
}

.color-blue20 {
	color: #CCCCFF;
}

.color-lime {
	color: lime
}

.color-yellow {
	color: #ff0
}

.color-magenta {
	color: #f0f
}

.color-cyan {
	color: cyan
}

#wrapper {
	transition: margin-left .5s
}

.layout-standard #container {
	padding: 7rem 0 0 0
}

.layout-standard.job #container {
	padding: 0
}

p {
	margin: 0 0 2.5rem
}

.bg-color-white {
	background-color: white;
	color: black
}

.bg-color-black {
	background-color: black;
	color: white
}

.bg-color-blue,
.col-cards .ce_columns.bg-color-blue {
	background-color: blue;
	color: white
}

.bg-color-blue20 {
	background-color: #CCCCFF;
}

.bg-color-lime,
.col-cards .ce_columns.bg-color-lime {
	background-color: lime
}

.bg-color-yellow {
	background-color: #ff0
}

.bg-color-magenta,
.col-cards .ce_columns.bg-color-magenta {
	background-color: #f0f
}

.bg-color-cyan,
.col-cards .ce_columns.bg-color-cyan {
	background-color: cyan
}

.bg-color-white {
	background-color: white;
	color: black
}

.bg-color-gray {
	background-color: #E5E5E5;
}

.border-top {
	border-top: .125rem solid
}

.border-right {
	border-right: .125rem solid
}

.border-bottom {
	border-bottom: .125rem solid
}

.border-left {
	border-left: .125rem solid
}

.padding-top-normal {
	padding-top: 2rem
}

.padding-top-large {
	padding-top: 6rem
}

.padding-bottom-normal {
	padding-bottom: 2rem
}

.padding-bottom-large {
	padding-bottom: 6rem
}

.ic-random-pizza {
	background-image: url(../../files/needs-people/images/icons/ic-random-pizza-black.svg)
}

.ic-random-money {
	background-image: url(../../files/needs-people/images/icons/ic-random-money-black.svg)
}

.ic-random-heart {
	background-image: url(../../files/needs-people/images/icons/ic-random-heart-black.svg)
}

.ic-random-gift {
	background-image: url(../../files/needs-people/images/icons/ic-random-gift-black.svg)
}

.ic-random-jelly {
	background-image: url(../../files/needs-people/images/icons/ic-random-jelly-lime.svg)
}

.ic-lets-play-pacman-1 {
	background-image: url(../../files/needs-people/images/icons/ic-lets-play-pacman-1-black.svg)
}

.ic-lets-design-2d {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-2d-black.svg)
}

.ic-lets-design-3d {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-3d-black.svg)
}

.ic-lets-design-empathy-map {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-empathy-map-black.svg)
}

.ic-lets-design-interview {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-interview-black.svg)
}

.ic-lets-design-lean-canvas {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-lean-canvas-black.svg)
}

.ic-lets-design-lottie {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-lottie-black.svg)
}

.ic-lets-design-persona {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-persona-black.svg)
}

.ic-lets-design-service-blueprint {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-service-blueprint-black.svg)
}

.ic-lets-design-storyboard {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-storyboard-black.svg)
}

.ic-lets-design-templating {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-templating-black.svg)
}

.ic-lets-design-touch-points-map {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-touch-points-map-black.svg)
}

.ic-lets-design-user-flow {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-user-flow-black.svg)
}

.ic-lets-design-prototyping {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-prototyping-black.svg)
}

.ic-lets-design-vision {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-vision-black.svg)
}

.ic-lets-design-logo {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-vector-2-black.svg)
}

.ic-lets-design-typography {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-typography-black.svg)
}

.ic-lets-design-colors {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-colors-black.svg)
}

.ic-lets-design-visuals {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-visuals-black.svg)
}

.ic-lets-design-grids {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-grids-black.svg)
}

.ic-lets-design-illustrations {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-illustrations-black.svg)
}

.ic-lets-design-strategy {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-strategy-black.svg)
}

.ic-lets-design-marketing {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-marketing-black.svg)
}

.ic-lets-design-concepts {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-concepts-black.svg)
}

.ic-lets-design-icons {
	background-image: url(../../files/needs-people/images/icons/ic-pride-explicit-2-black.svg)
}

.ic-lets-design-agile {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-kanban-black.svg)
}

.ic-lets-design-retro {
	background-image: url(../../files/needs-people/images/icons/ic-powertools-retro-black.svg)
}

.ic-lets-design-method-kit {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-method-kit-black.svg)
}

.ic-lets-design-team-development {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-team-development-black.svg)
}

.ic-lets-design-meeting {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-time-table-black.svg)
}

.ic-lets-design-role-workshop {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-roles-black.svg)
}

.ic-lets-design-power {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-strengthen-black.svg)
}

.ic-lets-design-onboarding {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-onboarding-black.svg)
}

.ic-lets-design-infrastructure {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-infrastructure-black.svg)
}

.ic-lets-design-motion-design {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-motion-design-black.svg)
}

.ic-lets-design-sitemap {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-sitemap-black.svg)
}

.ic-lets-design-ux-ui {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-ux-ui-black.svg)
}

.ic-lets-design-brand-design {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-brand-design-black.svg)
}

.ic-lets-design-progress {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-progress-black.svg)
}

.ic-lets-design-role {
	background-image: url(../../files/needs-people/images/icons/ic-lets-design-role-black.svg)
}

.open #wrapper {
	margin-left: 40%
}

.mod_logo {
	position: fixed;
	right: 2rem;
	top: 2rem;
	transform: translateZ(0);
	width: 100%;
	z-index: 10
}

.mod_logo a {
	background-image: url(../../files/needs-people/images/layout/logo-black.svg);
	background-repeat: no-repeat;
	display: block;
	float: right;
	height: 3rem;
	width: 22.5rem
}

.layout-projects .mod_logo a {
    animation: pulse 1s ease-in-out infinite;
	background-image: url(../../files/needs-people/images/icons/ic-lets-surf-5-black.svg);
	width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.3);
    background-position: center center;
    border-radius: 100%;
}

.bg-color-blue .mod_logo a,
.bg-color-black .mod_logo a {
	background-image: url(../../files/needs-people/images/layout/logo-lime.svg)
}

.mod_back {
	height: 6rem;
	left: 0;
	margin: -3rem 0 0;
	position: fixed;
	top: 50%;
	width: 6rem;
	z-index: 5
}

.mod_back a {
	background-color: #f0f;
	background-image: url(../../files/needs-people/images/icons/ic-basic-left-black.svg);
	background-size: 100%;
	display: block;
	height: 100%;
	width: 100%
}

.layout-projects .mod_back a {
	background-color: black;
	background-image: url(../../files/needs-people/images/icons/ic-basic-left-white.svg);
}

.mod_back a,
.mod_button {
	cursor: url(../../files/needs-people/images/layout/cursor-pointer-black.svg) 0 0, auto
}

.mod_button {
	background-color: lime;
	height: 6rem;
	left: 0;
	margin: -3rem 0 0 -6rem;
	position: fixed;
	top: 50%;
	transform: translateZ(0);
	transition: background-color 1s ease, margin .5s ease, position .5s ease;
	width: 6rem;
	z-index: 5
}

.bg-color-black .mod_button,
.bg-color-blue .mod_button,
.bg-color-cyan .mod_button,
.bg-color-lime .mod_button,
.bg-color-magenta .mod_button,
.bg-color-white .mod_button,
.bg-color-yellow .mod_button {
	margin: -3rem 0 0
}

.open .mod_button {
	margin: -3rem 0 0 40%
}

.bg-color-lime .mod_button {
	background-color: #ff0
}

.bg-color-cyan .mod_button {
	background-color: #f0f
}

.mod_overlay {
	background: white;
	height: 100%;
	margin: 0 0 0 -40%;
	min-height: 100vh;
	position: fixed;
	top: 0;
	transform: translateZ(0);
	transition: background-color 1s ease, margin .5s ease, opacity .5s ease;
	width: 40%;
	z-index: 15
}

.open .mod_overlay {
	margin: 0
}

.bg-color-no-color .mod_overlay,
.bg-color-white .mod_overlay {
	background-color: blue
}

.bg-color-yellow .mod_overlay {
	background-color: black
}

.mod_onepage_navigation {
	font-family: Maison-Neue-Black;
	font-size: 6rem;
	left: -1rem;
	line-height: 6rem;
	padding: 0 0 1rem;
	position: relative;
	text-transform: uppercase;
	top: -1rem
}

.mod_onepage_navigation li {
	transform: rotate(-8deg)
}

.mod_onepage_navigation a {
	color: black;
	transition: color .25s ease
}

.bg-color-no-color .mod_onepage_navigation a,
.bg-color-white .mod_onepage_navigation a,
.bg-color-yellow .mod_onepage_navigation a {
	color: white
}

.bg-color-blue .mod_onepage_navigation a:hover,
.bg-color-blue .mod_onepage_navigation li.active a,
.bg-color-no-color .mod_onepage_navigation a:hover,
.bg-color-no-color .mod_onepage_navigation li.active a,
.bg-color-white .mod_onepage_navigation a:hover,
.bg-color-white .mod_onepage_navigation li.active a {
	color: lime
}

.bg-color-lime .mod_onepage_navigation a:hover,
.bg-color-lime .mod_onepage_navigation li.active a {
	color: blue
}

.bg-color-yellow .mod_onepage_navigation a:hover,
.bg-color-yellow .mod_onepage_navigation li.active a {
	color: lime
}

.bg-color-cyan .mod_onepage_navigation a:hover,
.bg-color-cyan .mod_onepage_navigation li.active a {
	color: #f0f
}

.mod_customnav {
	font-family: Maison-Neue-Mono-Regular, monospace;
	font-size: 1rem;
	line-height: 1.5rem;
	text-align: center
}

.mod_customnav li {
	display: inline-block;
	margin: 0 3px
}

.mod_customnav a {
	border-bottom: 1px solid black;
	color: black;
	transition: color .5s ease, border-color .5s ease
}

.mod_customnav strong {
	font-family: Maison-Neue-Mono-Normal, monospace;
	font-style: normal;
	font-weight: 400;
}

.bg-color-no-color .mod_customnav a,
.bg-color-white .mod_customnav a,
.bg-color-yellow .mod_customnav a {
	border-color: white;
	color: white
}

.bg-color-no-color .mod_customnav a:hover,
.bg-color-white .mod_customnav a:hover,
.bg-color-yellow .mod_customnav a:hover {
	border-color: lime;
	color: lime
}

.bg-color-lime .mod_customnav a:hover {
	border-color: blue;
	color: blue
}

.bg-color-cyan .mod_customnav a:hover {
	border-color: #f0f;
	color: #f0f
}

.mod_social_media {
	margin: 2rem 0;
	text-align: center
}

.mod_social_media a {
	background-color: black;
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: 1.5rem 1.5rem;
	border-radius: 100%;
	display: inline-block;
	height: 3rem;
	transition: background-color .5s ease, background-image .5s ease;
	width: 3rem
}

.bg-color-no-color .mod_social_media a,
.bg-color-white .mod_social_media a,
.bg-color-yellow .mod_social_media a {
	background-color: white
}

.bg-color-blue .mod_social_media a:hover,
.bg-color-white .mod_social_media a:hover,
.bg-color-yellow .mod_social_media a:hover {
	background-color: lime
}

.bg-color-lime .mod_social_media a:hover {
	background-color: blue
}

.bg-color-cyan .mod_social_media a:hover {
	background-color: #f0f
}

.mod_social_media a.li {
	background-image: url(../../files/needs-people/images/layout/icon-li-white.svg)
}

.bg-color-no-color .mod_social_media a.li,
.bg-color-white .mod_social_media a.li {
	background-image: url(../../files/needs-people/images/layout/icon-li-blue.svg)
}

.bg-color-yellow .mod_social_media a.li {
	background-image: url(../../files/needs-people/images/layout/icon-li-black.svg)
}

.mod_social_media a.ig {
	background-image: url(../../files/needs-people/images/layout/icon-ig-white.svg);
	margin: 0 .5rem
}

.bg-color-no-color .mod_social_media a.ig,
.bg-color-white .mod_social_media a.ig {
	background-image: url(../../files/needs-people/images/layout/icon-ig-blue.svg)
}

.bg-color-yellow .mod_social_media a.ig {
	background-image: url(../../files/needs-people/images/layout/icon-ig-black.svg)
}

.mod_social_media a.gp {
	background-image: url(../../files/needs-people/images/layout/icon-gp-white.svg)
}

.bg-color-no-color .mod_social_media a.gp,
.bg-color-white .mod_social_media a.gp {
	background-image: url(../../files/needs-people/images/layout/icon-gp-blue.svg)
}

.bg-color-yellow .mod_social_media a.gp {
	background-image: url(../../files/needs-people/images/layout/icon-gp-black.svg)
}

.mod_social_media a.lt {
	background-image: url(../../files/needs-people/images/layout/icon-lt-white.svg)
}

.bg-color-no-color .mod_social_media a.lt,
.bg-color-white .mod_social_media a.lt {
	background-image: url(../../files/needs-people/images/layout/icon-lt-blue.svg)
}

.bg-color-yellow .mod_social_media a.lt {
	background-image: url(../../files/needs-people/images/layout/icon-lt-black.svg)
}

.mod_copyright {
	color: black;
	font-family: Maison-Neue-Mono-Regular, monospace;
	font-size: 1rem;
	line-height: 1.5rem;
	text-align: center;
	transition: color 1s ease
}

.bg-color-no-color .mod_copyright,
.bg-color-white .mod_copyright,
.bg-color-yellow .mod_copyright {
	color: white
}

.mod_hello {
	margin: auto;
	width: 100%
}

#hello-name {
	border-bottom: .125rem solid black;
	box-sizing: border-box;
	display: block;
	font-family: Maison-Neue-Extra-Bold, sans-serif;
	font-size: 3rem;
	height: 6rem;
	width: 100%
}

.fieldset {
	position: relative
}

#submit-txt {
	background-image: url(../../files/needs-people/images/icons/ic-random-paper-plane-black.svg);
	cursor: url(../../files/needs-people/images/layout/cursor-pointer-black.svg) 0 0, auto;
	margin: -1.5rem 0 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 50%;
	transition: opacity .25s ease
}

#submit-txt.show-btn {
	opacity: 1
}

.form-top {
	margin: 0 0 4rem
}

.form-bottom {
	margin: 0
}

.form-bottom span {
	display: block
}

#random-name {
	border-bottom: .125rem solid black;
	cursor: url(../../files/needs-people/images/layout/cursor-pointer-black.svg) 0 0, auto;
	display: inline-block;
	margin: 0
}

.txt-name,
.txt-no-name {
	max-width: 32rem
}

.txt-name,
.txt-no-name,
.txt-welcome {
	opacity: 1;
	transition: opacity 1s ease
}

.add-default-txt,
.add-random-txt,
.no-name .change-txt,
.no-name .txt-welcome,
.show-name .change-txt,
.show-name .txt-welcome,
.txt-name,
.txt-no-name {
	display: none;
	opacity: 0
}

.no-name .add-random-txt,
.no-name .txt-no-name,
.show-name .add-default-txt,
.show-name .txt-name {
	display: inline;
	opacity: 1
}

#reel .random-name,
#reel .default-name,
#reel .random-name::after,
#reel .default-name::after {
	color: lime;
}

#reel .rb-regular .random-name,
#reel .rb-regular .default-name,
#reel .rb-regular .random-name::after,
#reel .rb-regular .default-name::after {
	color: white;
}

#reel .random-name::after,
#reel .default-name::after {
	content: "!";
}

#reel .rb-regular .random-name::after,
#reel .rb-regular .default-name::after {
	content: "?";
}

.ic {
	height: 3rem;
	width: 3rem
}

.anchor {
	animation: gelatine 1s infinite;
	background-image: url(../../files/needs-people/images/icons/ic-basic-down-black.svg);
	display: inline-block
}

.anchor.first {
	margin: 2.5rem 0 0;
	opacity: 0;
	transition: opacity .5s ease;
	visibility: hidden
}

.fade-in .anchor.first {
	opacity: 1;
	visibility: visible
}

.mod_animation {
	display: block;
	height: 6rem;
	position: absolute;
	width: 6rem;
	z-index: 10
}

#wave {
	right: 0;
	top: 0
}

#rainbow {
	bottom: 0;
	left: 10%
}

#power {
	left: 0;
	top: 10%
}

@keyframes gelatine {

	0%,
	to {
		transform: scale(1)
	}

	25% {
		transform: scale(.9, 1.1)
	}

	50% {
		transform: scale(1.1, .9)
	}

	75% {
		transform: scale(.95, 1.05)
	}
}

.mod_filter_map {
	text-align: right
}

.mod_filter_map li {
	cursor: url(../../files/needs-people/images/layout/cursor-pointer-black.svg) 0 0, auto;
	margin: 0 0 .5rem;
	transition: margin .25s ease
}

.mod_filter_map li.active {
	text-decoration: line-through
}

.mod_filter_map li.active,
.mod_filter_map li:hover {
	margin: 0 .5rem .5rem 0
}

.mod_filter_map span {
	border: 2px solid;
	border-radius: 100%;
	display: inline-block;
	height: .75rem;
	margin: 0 0 0 .5rem;
	width: .75rem
}

.mod_filter_map .team span {
	border-color: blue
}

.mod_filter_map .network span {
	border-color: #f0f
}

.mod_filter_map .clients span {
	border-color: black
}

.mod_map {
	position: relative
}

.mod_map .add {
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	transition: opacity .25s ease
}

.mod_map .add-cities,
.mod_map.clients .add-clients,
.mod_map.collaboration-spaces .add-collaboration-spaces,
.mod_map.network .add-network,
.mod_map.team .add-team,
.mod_map.tools-services .add-tools-services {
	opacity: 1
}

.arrow-left {
	animation: arrow-left 1.25s infinite;
	background-image: url(../../files/needs-people/images/layout/illustration-arrow-left-black.svg);
	bottom: 7%;
	height: 3rem;
	position: absolute;
	transition: transform 1.25s;
	width: 6rem
}

@keyframes arrow-left {

	0%,
	to {
		transform: rotate(-45deg) scaleX(-1)
	}

	25% {
		transform: rotate(-45deg) scale(-.9, 1.1)
	}

	50% {
		transform: rotate(-45deg) scale(-1.1, .9)
	}

	75% {
		transform: rotate(-45deg) scale(-.95, 1.05)
	}
}

.arrow-up {
	animation: arrow-up 1.25s infinite;
	background-image: url(../../files/needs-people/images/layout/illustration-arrow-up-black.svg);
	bottom: 50%;
	cursor: url(../../files/needs-people/images/layout/cursor-pointer-black.svg) 0 0, auto;
	height: 6rem;
	left: 50%;
	margin-bottom: -2rem;
	margin-left: -24rem;
	position: absolute;
	transition: transform 1.25s;
	width: 3rem
}

@keyframes arrow-up {

	0%,
	to {
		transform: rotate(12deg) scale(1)
	}

	25% {
		transform: rotate(12deg) scale(.9, 1.1)
	}

	50% {
		transform: rotate(12deg) scale(1.1, .9)
	}

	75% {
		transform: rotate(12deg) scale(.95, 1.05)
	}
}

.mod_dyli {
	position: absolute;
	right: 0;
	font-size: 3rem;
	line-height: 3rem;
	text-align: center;
	padding-right: 4rem;
}

.no-name .mod_dyli,
.show-name .mod_dyli {
	padding-right: 0;
}

.arrow-up-reverse {
	animation: arrow-up-reverse 1.25s infinite;
	background-image: url(../../files/needs-people/images/layout/illustration-arrow-up-white.svg);
	top: -6rem;
	height: 6rem;
	right: 0;
	position: absolute;
	transition: transform 1.25s;
	width: 3rem
}

@keyframes arrow-up-reverse {

	0%,
	to {
		transform: rotate(-6deg) scale(1) scaleX(-1);
	}

	25% {
		transform: rotate(-6deg) scale(.9, 1.1) scaleX(-1);
	}

	50% {
		transform: rotate(-6deg) scale(1.1, .9) scaleX(-1);
	}

	75% {
		transform: rotate(-6deg) scale(.95, 1.05) scaleX(-1);
	}
}

.arrow-down {
	animation: arrow-down 1.25s infinite;
	background-image: url(../../files/needs-people/images/layout/illustration-arrow-down-black.svg);
	height: 6rem;
	left: 0;
	margin: 5rem 0 0 -5rem;
	position: absolute;
	top: 0;
	transition: transform 1.25s;
	width: 3rem
}

@keyframes arrow-down {

	0%,
	to {
		transform: rotate(30deg) scale(1)
	}

	25% {
		transform: rotate(30deg) scale(.9, 1.1)
	}

	50% {
		transform: rotate(30deg) scale(1.1, .9)
	}

	75% {
		transform: rotate(30deg) scale(.95, 1.05)
	}
}

.mod_needs {
	color: #f0f;
	font-family: Maison-Neue-Extra-Bold, sans-serif;
	font-size: 4rem;
	line-height: 6rem;
	margin: 2rem 0 0
}

.mod_needs span {
	color: black;
	cursor: url(../../files/needs-people/images/layout/cursor-pointer-black.svg) 0 0, auto;
	transition: all .25s ease-in
}

.mod_needs span:hover {
	color: white
}

.bg-color-yellow .mod_needs span:hover {
	color: blue
}

.mod_article.form {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 100vh;
	text-align: center
}

.mod_article.parallax {
	background-attachment: fixed;
	background-image: url(../../files/needs-people/images/people/frieda-und-markus.jpg);
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	display: table;
	min-height: 64rem;
	position: relative;
	width: 100%
}

.mod_article.footer {
	background-color: white;
}

.layer {
	margin: auto;
	max-width: 86rem;
	padding: 0 8rem;
	position: relative
}

.mod_article.parallax .layer {
	display: table-cell;
	vertical-align: middle
}

.open .layer {
	padding: 0 2rem 0 8rem
}

strong {
	font-family: Maison-Neue-Mono-Bold, monospace
}

.txt-intro strong {
	font-family: Maison-Neue-Extra-Bold, sans-serif
}

#what-we-do .txt-intro strong {
	color: blue;
}

#hello .txt-intro strong,
#what-we-do .txt-intro stron {
	font-family: Maison-Neue-Extra-Bold, sans-serif
}

#hello .txt-intro a {
	border: 0;
}

p {
	font-feature-settings: "kern" 1, "liga" 1, "tnum" 1;
	text-rendering: optimizeLegibility
}

.image-mobile {
	display: none
}

.txt-align-center {
	text-align: center
}

.txt-align-right {
	text-align: right
}

.spacing-top-normal {
	margin-top: 3rem
}

.spacing-top-large {
	margin-top: 6rem
}

.spacing-bottom-normal {
	margin-bottom: 3rem
}

.spacing-bottom-large {
	margin-bottom: 6rem
}

.txt-intro {
	font-family: Maison-Neue-Regular;
	font-size: 2rem;
	line-height: 3rem;
	margin: 0 0 1.5rem
}

#reel .txt-intro {
	margin: 0;
}

.txt-normal {
	font-size: 1.5rem;
	line-height: 2.5rem
}

.txt-small {
	font-size: 1rem;
	line-height: 1.5rem
}

.float-left {
	display: inline-block
}

.ic {
	font-size: 1rem;
	line-height: 1.5rem;
	text-align: center
}

.ic .image_container {
	display: inline-block;
	overflow: hidden;
	padding: 1rem
}

.flip-card-container,
.ic .image_container {
	background-color: white;
	border: .125rem solid black;
	box-shadow: .25rem .25rem 0 black;
	margin: 0 0 1rem
}

.flip-card-container {
	cursor: url(../../files/needs-people/images/layout/cursor-pointer-black.svg) 0 0, auto;
	height: 15rem;
	position: relative;
	text-align: center;
	transition: background-color .25s ease, border .25s ease
}

.flip-card-container.flipped {
	background: #ff0
}

.bg-color-yellow .flip-card-container.flipped {
	background: cyan
}

.flip-card div {
	height: auto;
	padding: 1rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%
}

.flip-card-front {
	font-family: Maison-Neue-Extra-Bold, sans-serif;
	font-size: 1.5rem;
	line-height: 2rem
}

.flip-card-front img {
	display: inline-block !important;
	margin: 0 0 1rem;
	width: auto !important
}

.flip-card-back {
	font-size: 1rem;
	line-height: 1.5rem
}

.flip-card-front,
.flipped .flip-card-back {
	opacity: 1
}

.flip-card-back,
.flipped .flip-card-front {
	opacity: 0
}

.ce_text.solid-shadow {
	background-color: white;
	border: .125rem solid black;
	box-shadow: .25rem .25rem 0 black;
	display: table;
	font-family: Maison-Neue-Extra-Bold, sans-serif;
	font-size: 1.5rem;
	height: 15rem;
	line-height: 2rem;
	margin: 0 0 1rem;
	position: relative;
	text-align: center;
	width: 100%
}

.ce_text.solid-shadow .inside {
	display: table-cell;
	vertical-align: middle
}

.ce_text.solid-shadow p {
	margin: 0
}

.ce_text.solid-shadow img {
	display: inline-block !important;
	margin: 0 0 1rem;
	width: auto !important
}

.tooltip-container {
	cursor: url(../../files/needs-people/images/layout/cursor-pointer-black.svg) 0 0, auto;
	opacity: 1;
	overflow: visible;
	position: relative;
	transition: opacity .5s ease
}

.tooltip-container.fade {
	opacity: .2
}

.tooltip {
	left: 50%;
	margin: -13rem 0 0 -12rem;
	min-height: 16rem;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	text-align: center;
	top: 0;
	transition: opacity .5s ease, visibility .5s ease;
	visibility: hidden;
	width: 24rem
}

.tooltip-container.show .tooltip {
	opacity: 1;
	visibility: visible
}

.tooltip-txt {
	background-color: black;
	color: white;
	font-size: 1rem;
	line-height: 1.5rem;
	padding: 1rem;
	position: relative;
	transition: background-color .25s ease, border .25s ease
}

.triangle {
	background-image: url(../../files/needs-people/images/layout/triangle-black.svg);
	height: 1rem;
	margin: auto;
	width: 2rem
}

.tooltip-link {
	bottom: .5rem;
	position: absolute;
	right: .5rem
}

.tooltip-link a {
	background-image: url(../../files/needs-people/images/layout/system-hyperlink-white.svg);
	display: block;
	height: 2rem;
	width: 2rem
}

.tooltip p {
	margin: 0
}

#highlight {
	display: inline;
	position: relative
}

#highlight svg {
	bottom: -1.25rem;
	left: 0;
	position: absolute;
	width: 100%
}

.mod_filter_carousel li {
	border-bottom: 3px solid transparent;
	color: white;
	cursor: url(../../files/needs-people/images/layout/cursor-pointer-black.svg) 0 0, auto;
	display: inline-block;
	margin: 0 3rem 0 0;
	transition: .25s ease
}

.mod_filter_carousel li:hover {
	color: blue;
	outline: none
}

.mod_filter_carousel li.active,
.mod_filter_carousel li.first {
	border-color: blue;
	color: blue
}

.bg-color-white .mod_filter_carousel li {
	color: black
}

.carousel-filter .owl-carousel.owl-loaded {
	display: none;
	opacity: 0;
	transition: opacity .5s ease
}

.carousel-filter .owl-carousel.owl-loaded.first,
.carousel-filter.methods.active .owl-loaded.owl-carousel.carousel-methods,
.carousel-filter.mindset.active .owl-loaded.owl-carousel.carousel-mindset,
.carousel-filter.powertools.active .owl-loaded.owl-carousel.carousel-powertools,
.show {
	display: block;
	opacity: 1
}

.mod_bubble {
	background-color: #f0f;
	background-image: none;
	border-radius: 39% 55% 52% 50%/45% 81% 63% 90%;
	display: table;
	height: auto;
	margin-bottom: 3rem;
	transform: rotate(-8deg);
	width: auto
}

.mod_bubble div {
	color: white;
	display: table-cell;
	padding: 2rem;
	vertical-align: middle
}

.ce_columns {
	position: relative
}

.ce_text a {
	border-bottom: .125rem solid
}

.ce_text .image_container a {
	border: 0;
}

.ce_text ul {
	list-style-type: disc;
	margin: 0 0 1rem 1.25rem
}

.ce_text.txt-intro ul {
	margin: 0 0 1rem 2rem
}

.ce_text.tooltip-container a {
	border-bottom: 0
}

.ce_text.border {
	background: white;
	border: .125rem solid black;
	box-shadow: .25rem .25rem 0 black;
	margin: 6rem 0;
	padding: 3rem 3rem .5rem
}

.open .mod_article.parallax .ce_columns:first-of-type {
	order: 2
}

.open .mod_article.parallax .ce_columns:nth-of-type(2) {
	order: 1
}

.ce_hyperlink.btn {
	overflow: visible
}

.ce_hyperlink.dotted-shadow {
	display: inline-block;
	padding: 0 1.5rem 1.5rem 0;
	position: relative;
	width: auto
}

.ce_hyperlink a,
.mod_cookiebarOpener a {
	font-family: Maison-Neue-Mono-Regular, monospace
}

.ce_hyperlink.btn a,
.mod_cookiebarOpener a {
	background-color: white;
	border: .125rem solid black;
	box-shadow: .25rem .25rem 0 black;
	display: inline-block;
	font-size: 1.5rem;
	line-height: 2rem;
	overflow: hidden;
	padding: 1rem;
	text-transform: uppercase
}

.ce_hyperlink.btn a:hover,
.mod_cookiebarOpener a:hover {
	box-shadow: none
}

.ce_hyperlink.txt a {
	background-image: url(../../files/needs-people/images/layout/ui-16-external-black.svg);
	background-position: 100% 0;
	background-repeat: no-repeat;
	display: inline-block;
	line-height: 1.5rem;
	padding: .5rem 1.25rem 0 0
}

.ce_hyperlink.txt span {
	border-bottom: .125rem solid black;
	display: inline-block
}

.ce_hyperlink.dotted-shadow a {
	background: blue;
	color: white;
	display: inline-block;
	font-size: 1.5rem;
	line-height: 1.5rem;
	padding: 1rem 0;
	position: relative;
	text-align: center;
	width: 25rem;
	transition: color 0.25s ease-in, background 0.25s ease;
	z-index: 10
}

.ce_hyperlink.dotted-shadow a:hover {
	background: lime;
	color: black;
}

.dots {
	top: 0;
	transition: margin 0.1s ease-in;
	background: white;
	background: url(../../files/needs-people/images/layout/dotted-shadown-blue.svg);
	height: 3.5rem;
	width: 25rem;
	position: absolute;
	margin-top: 1.5rem;
	margin-left: 1.7rem;
}

.ce_hyperlink.dotted-shadow:hover .dots {
	margin-top: 1rem;
	margin-left: 1.2rem;
}

.ce_hyperlink.pill {
	font-size: 1rem;
	line-height: 1rem;
}

.ce_hyperlink.pill a {
	display: inline-block;
	padding: 1rem 1.5rem;
	border: 0.125rem solid;
	border-radius: 3rem;
	text-align: center;
}

.ce_hyperlink.pill a:hover {
	transition: background 0.25s ease-in, color 0.25s ease-in, border-color 0.25s ease-in;
	background: black;
	color: white;
	border-color: black;
}

.bg-color-white .ce_hyperlink.pill a:hover,
.bg-color-no-color .ce_hyperlink.pill a:hover {
	background: black;
	color: white;
}

.bg-color-black .ce_hyperlink.pill a:hover {
	background: white;
	color: black;
}

.bg-color-yellow .ce_hyperlink.pill a {
	color: white;
	background: blue;
	border-color: blue;
}

.bg-color-yellow .ce_hyperlink.pill a:hover {
	color: black;
	background: lime;
	border-color: lime;
}

.ce_accordion {
	border-bottom: .25rem solid;
	margin: 0;
	padding: 2rem 0
}

.ce_accordion.last {
	border-bottom: 0;
	padding: 2rem 0 0
}

.ce_accordion .box {
	padding: 2rem 0 0
}

.toggler {
	cursor: url(../../files/needs-people/images/layout/cursor-pointer-black.svg) 0 0, auto;
	font-size: 5rem;
	line-height: 7rem;
	padding: 0 4rem 0 0;
	position: relative;
	transition: color .25s ease, padding .25s ease
}

.ui-state-active,
.ui-state-hover,
.bg-color-lime .ui-state-active,
.bg-color-lime .ui-state-hover,
.bg-color-white .ui-state-active,
.bg-color-white .ui-state-hover,
.bg-color-undefined .ui-state-active,
.bg-color-undefined .ui-state-hover {
	color: blue
}

.bg-color-blue .ui-state-active,
.bg-color-blue .ui-state-hover {
	color: lime
}

.ui-state-active.ui-state-hover {
	padding: 0 4rem 0 0
}

.ui-state-hover {
	color: white;
	padding: 0 4rem 0 1rem
}

.ui-accordion-header-icon {
	background: url(../../files/needs-people/images/icons/ic-basic-plus-black.svg) no-repeat 50%;
	background-size: 100%;
	display: block;
	height: 4rem;
	margin-top: -2rem;
	position: absolute;
	right: 0;
	top: 50%;
	transition: transform .25s ease, background .25s ease;
	width: 4rem
}

.bg-color-blue .ui-accordion-header-icon {
	background: url(../../files/needs-people/images/icons/ic-basic-plus-white.svg) no-repeat 50%;
	background-size: 100%
}

.ui-accordion-header-active .ui-accordion-header-icon {
	transform: rotate(45deg)
}

.owl-carousel.owl-grab,
.owl-carousel.owl-grab .ce_image:hover,
.owl-stage {
	cursor: url(../../files/needs-people/images/layout/cursor-grab-black.svg) 0 0, auto !important
}

.owl-carousel.owl-grab.carousel-projects,
.owl-carousel.owl-grab.carousel-projects .ce_image:hover,
.owl-carousel.carousel-projects .owl-stage {
	cursor: url(../../files/needs-people/images/layout/cursor-grab-white.svg) 0 0, auto !important
}

.owl-dots {
	margin-top: 1.5rem;
	text-align: center;
}

.owl-dots span {
	display: block;
	width: 1.5rem;
	height: 1.5rem;
	border: 2px solid black;
	border-radius: 100%;
	background-color: white;
	margin: 0 0.5rem;
	cursor: url(../../files/needs-people/images/layout/cursor-pointer-black.svg) 0 0, auto;
}

.owl-dots .active span {
	background-color: blue;
}

.layout-home .owl-dots .active span {
	background-color: lime;
}

.layout-home.bg-color-lime .owl-dots .active span {
	background-color: yellow;
}

.modal-blank,
.modal-trigger {
	position: relative;
	transition: margin .5s ease, background-color .5s ease
}

.modal-trigger:hover {
	cursor: url(../../files/needs-people/images/layout/cursor-pointer-black.svg) 0 0, auto;
	margin: 2rem 2rem 0 0
}

.modal-blank:hover {
	margin: 2rem 2rem 0 0
}

.modal-blank .caption,
.modal-trigger .caption {
	color: black;
	font-size: 1rem;
	left: 0;
	line-height: 1.5rem;
	opacity: 0;
	padding: 1rem;
	position: absolute;
	top: 0
}

.modal-blank:hover .caption,
.modal-trigger:hover .caption {
	opacity: 1
}

.modal {
	height: 100%;
	left: 0;
	min-height: 100vh;
	position: fixed;
	top: 0;
	transform: translateZ(0);
	transition: visibility .5s ease;
	visibility: hidden;
	width: 100%;
	z-index: 100
}

.modal.active {
	visibility: visible
}

.modal .box {
	background-color: #ff0;
	color: black;
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	transition: opacity .5s ease;
	width: 100%
}

.modal.active .box {
	opacity: 1
}

.modal .inside {
	border: .125rem solid;
	display: block;
	left: 50%;
	margin-left: -22.5rem;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translatey(-50%);
	width: 45rem
}

.modal .close {
	background: url(../../files/needs-people/images/icons/ic-basic-plus-black.svg) no-repeat 50%;
	background-size: 100%;
	cursor: url(../../files/needs-people/images/layout/cursor-pointer-black.svg) 0 0, auto;
	height: 4rem;
	position: absolute;
	right: 1rem;
	top: 1.5rem;
	transform: rotate(45deg);
	width: 4rem;
	z-index: 10
}

.col-cards {
	grid-gap: 0
}

.col-cards .ce_columns.col-img {
	padding: 0
}

.col-cards .ce_columns {
	padding: 2rem
}

.col-cards .col-headline {
	font-size: 1.5rem;
	line-height: 2rem;
	padding: 1rem 2rem
}

.col-cards p,
.col-cards ul {
	margin-bottom: 0
}

.col-cards .ce_columns {
	background-color: yellow;
}

.col-img {
	display: table;
	padding: 0;
	text-align: center
}

.col-img .ce_image,
.col-img img {
	vertical-align: middle
}

.col-img .ce_image {
	display: table-cell
}

.open {
	font-size: 1rem;
	line-height: 1.5rem
}

.open p {
	margin: 0 0 1.5rem
}

.open .txt-normal {
	font-size: 1rem;
	line-height: 1.5rem
}

.open .txt-intro,
.open .headline-style-8 {
	font-size: 1.5rem;
	line-height: 2.5rem
}

.open .headline-style-1 {
	font-size: 2rem;
	line-height: 3rem
}

.open .headline-style-2 {
	font-size: 1rem
}

.open .headline-style-3 {
	font-size: 3rem;
	line-height: 5rem;
	padding: 0
}

.open .headline-style-4 {
	font-size: 4rem;
	line-height: 5rem
}

.open .headline-style-5 {
	background-size: 2rem 2rem;
	font-size: 1.5rem;
	line-height: 2.5rem
}

.open .headline-style-5-1 {
	padding: 0 0 0 3rem
}

.open .headline-style-5-2,
.open .toggler {
	padding: 0 3rem 0 0
}

.open .toggler {
	font-size: 3rem;
	line-height: 5rem
}

.open .ui-state-active.ui-state-hover {
	padding: 0 3rem 0 0
}

.open .ui-state-hover {
	padding: 0 3rem 0 1rem
}

.open .ce_accordion {
	border-bottom: .125rem solid;
	padding: 1rem 0
}

.open .ce_accordion.last {
	border-bottom: 0;
	padding: 1rem 0 0
}

.open .ui-accordion-header-icon {
	height: 3rem;
	margin-top: -1.5rem;
	width: 3rem
}

.open .mod_filter_carousel li {
	border-bottom: .125rem solid transparent
}

.open .mod_filter_carousel li.active {
	border-color: blue
}

.open .ce_text.border {
	padding: 1.5rem 1.5rem .5rem
}

.open .mod_needs {
	font-size: 2rem;
	line-height: 3rem
}

.open .flip-card-front {
	font-size: 1rem;
	line-height: 1.5rem
}

.open .mod_filter_map li {
	margin: 0
}

.open .mod_filter_map li.active,
.open .mod_filter_map li:hover {
	margin: 0 .5rem
}

.carousel-methods .owl-item,
.carousel-mindset .owl-item,
.carousel-powertools .owl-item {
	max-width: 32rem
}

.intro {
	position: relative;
	display: flex;
	justify-content: center;
	max-height: 800px;
	overflow: hidden;
	height: 100vh;
}

.intro-image {
	align-items: center;
}

.intro-image .ce_image {
	flex-grow: 1;
}

.intro-image .ce_image.logo {
    position: absolute;
    left: 50%;
    bottom: 128px;
    margin-left: -560px;
}

.intro-image img {
	width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: cover;
    object-position: center; 
}

.intro-color {
	align-items: flex-end;
}

.project-bg-color-guud-better-green {
	background-color: #9BFFBE;
}

.project-bg-color-guud-black,
.carousel-projects-item-3,
.carousel-projects-item-6 {
	background-color: black;
	cursor: url(../../files/needs-people/images/layout/cursor-grab-white.svg) 0 0, auto !important
}

.project-bg-color-swr-data-lab-violet-blue,
.carousel-projects-item-1,
.carousel-projects-item-4 {
	background-color: #1D0B40;
}

.carousel-projects-item-1,
.carousel-projects-item-4 {
	background-image: url("../../files/needs-people/images/layout/swr-data-lab-puls.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 60%;
	cursor: url(../../files/needs-people/images/layout/cursor-grab-white.svg) 0 0, auto !important
}

.project-bg-color-rossmann-mint,
.carousel-projects-item-2,
.carousel-projects-item-5 {
	background-color: #5FAD90;
}

.project-bg-color-rossmann-green {
	background-color: #005245;
}

.project-bg-color-swr-x-lab-purple {
	background-color: #5920C0;
}

.project-color-guud {
	color: #014537;
}

#projects {
	transition: background-color 0.5s ease-in;
}

#projects .ce_headline {
	position: absolute;
	left: 0;
	width: 100%;
	margin-top: 2rem;
	z-index: 99;
}

.owl-nav button {
	position: absolute;
	top: 50%;
	margin-top: -2.5rem;
	z-index: 99;
	cursor: url(../../files/needs-people/images/layout/cursor-pointer-black.svg) 0 0, auto !important;
}

.owl-nav span {
	display: block;
	width: 5rem;
	height: 5rem;
	background-color: #CCCCFF;
	border-radius: 100%;
	transition: background-color 0.25s ease-in;
	user-select: none;
	background-repeat: no-repeat;
	background-position: center center;
	font-size: 0;
	cursor: url(../../files/needs-people/images/layout/cursor-pointer-black.svg) 0 0, auto;
}

.owl-prev {
	left: 2rem;
}

.owl-prev span {
	background-image: url(../../files/needs-people/images/icons/ic-basic-left-black.svg);
}

.owl-next {
	right: 2rem;
}

.owl-next span {
	background-image: url(../../files/needs-people/images/icons/ic-basic-right-black.svg);
}

.owl-nav span:hover {
	background-color: magenta;
}

.carousel-projects .owl-item img {
    width: auto;
    display: inline-block;
}

.carousel-projects .ce_image.preview {
    text-align: center;
    min-height: 960px;
    display: flex;
    align-items: center; 
    justify-content: center;
}

.ce_image.gif img {
    max-height: 400px;
}

.ce_image.preview .caption {
	position: absolute;
	left: 0;
	bottom: 2rem;
	text-align: center;
	width: 100%;
}

.ce_image.preview .caption span {
	font-size: 1rem;
	line-height: 1rem;
	display: inline-block;
	padding: 1rem 1.5rem;
	border-radius: 3rem;
	background-color: #CCCCFF;
}

.bg-color-blue .ce_image.preview .caption span {
	color: black;
}

.layout-projects .ce_image.preview .caption span {
	background-color: white;
}

.layout-projects .images img {
	width: 100%;
}

#postcards {
	height: 27.5rem;
	position: relative;
	text-align: center
}

.postcard {
	cursor: url(../../files/needs-people/images/layout/cursor-pointer-black.svg) 0 0, auto;
	left: 50%;
	margin-left: -20rem;
	position: absolute;
	top: 0
}

.item-1,
.order-5 .item-1 {
	z-index: 5
}

.item-2,
.order-5 .item-2 {
	z-index: 4
}

.item-3,
.order-5 .item-3 {
	z-index: 3
}

.item-4,
.order-5 .item-4 {
	z-index: 2
}

.item-5,
.order-5 .item-5 {
	z-index: 1
}

.order-1 .item-1,
.order-2 .item-1,
.order-3 .item-1,
.order-4 .item-1 {
	z-index: -1
}

.order-2 .item-2,
.order-3 .item-2,
.order-4 .item-2 {
	z-index: -2
}

.order-3 .item-3,
.order-4 .item-3 {
	z-index: -3
}

.order-4 .item-4 {
	z-index: -4
}

.mod_footer {
	background-color: black;
}

.mod_footer .layer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row;
}

.mod_footer .mod_copyright,
.mod_footer .mod_customnav a {
	color: white;
}

.mod_footer .mod_customnav a:hover,
.mod_footer .mod_customnav strong {
	color: magenta;
	border-bottom: 1px solid magenta;
}

.mod_footer .mod_customnav ul {
	margin-bottom: 0;
}

.contao-cookiebar {
	color: black;
	padding: 0;
	width: 100%
}

.contao-cookiebar.cc-bottom .cc-inner {
	vertical-align: top
}

.contao-cookiebar .cc-inner {
	border-radius: 0;
	box-shadow: none;
	max-width: 64rem;
	padding: 4rem
}

.contao-cookiebar .cc-head p {
	color: black;
	font-family: Maison-Neue-Regular;
	font-size: 2rem;
	line-height: 3rem;
	margin-bottom: 2rem
}

.contao-cookiebar .cc-head p a {
	border-bottom: .125rem solid
}

.contao-cookiebar .cc-group {
	border: .125rem solid black;
	border-radius: 0;
	margin-bottom: 2rem
}

.contao-cookiebar .cc-group .cc-detail-btn {
	color: black;
	font-size: .75rem;
	padding: 0
}

.contao-cookiebar .cc-btn {
	background-color: white;
	border: .125rem solid black;
	border-radius: 0;
	box-shadow: .25rem .25rem 0 black;
	color: black;
	cursor: url(../../files/needs-people/images/layout/cursor-pointer-black.svg) 0 0, auto;
	display: inline-block;
	font-size: 1.5rem;
	line-height: 2rem;
	margin: 1rem;
	overflow: hidden;
	padding: 1rem;
	text-transform: uppercase
}

.contao-cookiebar .cc-btn:hover {
	box-shadow: none
}

.contao-cookiebar .cc-btn.success:hover {
	background-color: lime
}

.contao-cookiebar .cc-btn.deny:hover {
	background-color: #f0f
}

.contao-cookiebar .cc-btn.info.cc-active,
.contao-cookiebar .cc-btn.info:hover {
	background-color: #ff0;
	box-shadow: none
}

.contao-cookiebar .cc-btn.save:hover {
	background-color: cyan
}

.contao-cookiebar .cc-groups {
	margin-top: 1rem;
	padding-top: 0
}

.contao-cookiebar .cc-groups .cc-group {
	border: .125rem solid black;
	border-radius: 0;
	margin-bottom: 1rem
}

.contao-cookiebar p {
	color: black
}

.contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-info {
	border-radius: 0;
	padding: 1rem
}

.contao-cookiebar .cc-cookies {
	background-color: white
}

.contao-cookiebar .cc-cookies>.cc-cookie,
.contao-cookiebar .cc-cookies>p {
	border-top: .125rem solid black;
	padding: 2rem
}

.contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-info {
	border: .125rem solid black
}

.contao-cookiebar .cc-groups .cc-group>label {
	margin: 2rem
}

.contao-cookiebar input:disabled+label:before {
	background: white;
	border-color: black
}

.contao-cookiebar input:disabled+label:after {
	background: black
}

.contao-cookiebar input:checked+label:before {
	background: white;
	border-color: black
}

.contao-cookiebar input:checked+label:after {
	background: black
}

input:-webkit-autofill,
input:-webkit-autofill:active,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover {
	-webkit-box-shadow: inset 0 0 0 1000px white !important
}

input:-webkit-autofill {
	-webkit-text-fill-color: black !important
}

@media only screen and (max-width:86em) {
	.intro-image .ce_image.logo {
		left: 128px;
		margin-left: 0;
	}
}

@media only screen and (max-width:80em) {
	.open .mod_footer .layer {
		flex-direction: column;
		gap: 1rem;
	}

	.open .mod_footer .mod_customnav {
		order: 1;
	}

	.open .mod_footer .mod_copyright {
		order: 2;
	}
}

@media only screen and (max-width:85em) {
	.intro {
		height: auto;
	}
}

@media only screen and (max-width:75em) {
	.ce_hyperlink.btn a,
	.mod_cookiebarOpener a,
	body {
		font-size: 1rem;
		line-height: 1.5rem
	}

	p {
		margin: 0 0 1.5rem
	}

	.txt-normal {
		font-size: 1rem;
		line-height: 1.5rem
	}

	.txt-intro,
	.headline-style-8 {
		font-size: 1.5rem;
		line-height: 2.5rem
	}

	.headline-style-1 {
		font-size: 2rem;
		line-height: 3rem
	}

	.headline-style-2 {
		font-size: 1rem
	}

	.headline-style-2-2 {
		background-size: 160px;
	}

	.headline-style-3 {
		font-size: 3rem;
		line-height: 5rem;
		padding: 0
	}

	.headline-style-4 {
		font-size: 4rem;
		line-height: 5rem
	}

	.headline-style-5 {
		background-size: 2rem 2rem;
		font-size: 1.5rem;
		line-height: 2.5rem;
		margin: .5rem 0
	}

	.headline-style-5-1,
	.headline-style-5-3 {
		padding: 0 0 0 3rem
	}

	.headline-style-5-2,
	.toggler {
		padding: 0 3rem 0 0
	}

	.toggler {
		font-size: 3rem;
		line-height: 5rem
	}

	.ui-state-active.ui-state-hover {
		padding: 0 3rem 0 0
	}

	.ui-state-hover {
		padding: 0 3rem 0 1rem
	}

	.ce_accordion {
		border-bottom: .125rem solid;
		padding: 1rem 0
	}

	.ce_accordion.last {
		border-bottom: 0;
		padding: 1rem 0 0
	}

	.ui-accordion-header-icon {
		height: 3rem;
		margin-top: -1.5rem;
		width: 3rem
	}

	.mod_filter_carousel li {
		border-bottom: .125rem solid transparent
	}

	.mod_filter_carousel li.active {
		border-color: blue
	}

	.ce_text.border {
		padding: 1.5rem 1.5rem .5rem
	}

	.mod_needs {
		font-size: 2rem;
		line-height: 3rem
	}

	.headline-style-6 {
		font-size: 1.5rem;
		line-height: 2.5rem
	}

	.col-cards .ce_columns {
		padding: 1.5rem
	}

	.col-cards .col-headline {
		padding: 0 1.5rem
	}

	.modal .close {
		height: 3rem;
		top: .75rem;
		width: 3rem
	}

	.mod_filter_map li {
		margin: 0
	}

	.mod_filter_map li.active,
	.mod_filter_map li:hover {
		margin: 0 .5rem
	}

	.mod_back {
		margin: -2rem 0 0
	}

	.mod_back,
	.mod_button {
		height: 4rem;
		width: 4rem
	}

	.mod_button {
		margin: -2rem 0 0 -4rem
	}

	.bg-color-black .mod_button,
	.bg-color-blue .mod_button,
	.bg-color-cyan .mod_button,
	.bg-color-lime .mod_button,
	.bg-color-magenta .mod_button,
	.bg-color-white .mod_button,
	.bg-color-yellow .mod_button {
		margin: -2rem 0 0
	}

	.open .mod_button {
		margin: -2rem 0 0 40%
	}

	.mod_onepage_navigation {
		font-size: 4rem;
		line-height: 4rem
	}

	.mod_overlay {
		opacity: 0
	}

	.open .mod_overlay {
		opacity: 1
	}

	.layer,
	.open .layer {
		padding: 0 6rem
	}
	
	.intro-image .ce_image.logo {
		left: 96px;
		bottom: 96px;
	}

	#highlight svg {
		bottom: -1rem
	}

	.mod_logo {
		z-index: 20
	}

	.mod_needs {
		text-align: center
	}

	.arrow-down {
		margin: 4rem 0 0 -4rem
	}

	.owl-dots span {
		width: 1rem;
		height: 1rem;
		margin: 0 0.25rem;
	}

	.job h3 {
		line-height: 2rem;
	}

	.job .padding-top-large {
		padding-top: 3rem;
	}

	.job .padding-bottom-large {
		padding-bottom: 3rem;
	}
}

@media only screen and (max-width:64em) {

	.mod_logo a,
	.mod_logo.shrink.scroll a {
		animation: pulse 1s ease-in-out infinite;
		background-image: url(../../files/needs-people/images/icons/ic-random-heart-black.svg);
		width: 3rem
	}
	
	.layout-projects .mod_logo a {
		animation: none;
		width: 4rem;
	    height: 4rem;
	}

	.bg-color-blue .mod_logo a,
	.bg-color-black .mod_logo a {
		background-image: url(../../files/needs-people/images/icons/ic-random-heart-lime.svg);
	}

	.mod_logo.shrink a {
		animation: none;
		background-image: url(../../files/needs-people/images/layout/logo-black.svg);
		width: 22.5rem
	}

	.bg-color-blue .mod_logo.shrink a,
	.bg-color-blue .mod_logo.shrink.scroll a,
	.bg-color-black .mod_logo.shrink a,
	.bg-color-black .mod_logo.shrink.scroll a {
		animation: shake .5s ease-in-out infinite;
		background-image: url(../../files/needs-people/images/icons/ic-empowerment-3-lime.svg);
		width: 3rem
	}

	.bg-color-cyan .mod_logo.shrink.scroll a {
		animation: jello .8s infinite;
		background-image: url(../../files/needs-people/images/icons/ic-save-the-planet-nature-8-magenta.svg)
	}


	.bg-color-yellow .mod_logo.shrink.scroll a {
		animation: wobble 1s ease-in-out infinite;
		background-image: url(../../files/needs-people/images/icons/ic-lets-surf-5-lime.svg)
	}

	.bg-color-lime .mod_logo.shrink a {
		animation: bounce 1s ease-in-out infinite;
		background-image: url(../../files/needs-people/images/icons/ic-lets-surf-3-blue.svg);
		width: 3rem
	}

	.open.bg-color-white .mod_logo a {
		background-image: url(../../files/needs-people/images/icons/ic-save-the-planet-nature-6-lime.svg);
		width: 3rem
	}

	.open {
		overflow-y: hidden;
		touch-action: none;
		-ms-touch-action: none
	}

	.open #wrapper {
		margin-left: 0
	}

	.mod_overlay {
		display: table;
		height: 100%;
		margin: 0 0 0 100%;
		position: fixed;
		right: 0;
		top: 0;
		visibility: hidden;
		width: 100%
	}

	.mod_overlay .inside {
		display: table-cell;
		vertical-align: middle
	}

	.open .mod_overlay {
		margin: 0;
		visibility: visible
	}

	.mod_button {
		z-index: 100
	}

	.open .mod_button {
		left: 2rem;
		margin: 0;
		top: 2rem
	}

	.mod_onepage_navigation {
		left: 0;
		padding: 2rem 0;
		text-align: center;
		top: 0
	}

	.flip-card-container,
	#article-26 .ce_text.solid-shadow {
		height: 17rem
	}

	#hello-name {
		font-size: 2rem;
		height: 4rem
	}

	.arrow-left {
		margin-left: -1rem;
		bottom: 5%;
	}

	.arrow-up {
		left: auto;
		margin-left: auto;
		margin-right: -24rem;
		right: 50%
	}

	.open .mod_article.parallax .ce_columns:first-of-type {
		order: 1
	}

	.open .mod_article.parallax .ce_columns:nth-of-type(2) {
		order: 2
	}

	@keyframes pulse {
		0% {
			transform: scale(1)
		}

		50% {
			transform: scale(1.1)
		}

		to {
			transform: scale(1)
		}
	}

	@keyframes shake {

		10%,
		90% {
			transform: translate3d(-1px, 0, 0)
		}

		20%,
		80% {
			transform: translate3d(2px, 0, 0)
		}

		30%,
		50%,
		70% {
			transform: translate3d(-4px, 0, 0)
		}

		40%,
		60% {
			transform: translate3d(4px, 0, 0)
		}
	}

	@keyframes jello {

		0%,
		11.1%,
		to {
			transform: translateZ(0)
		}

		22.2% {
			transform: skewX(-12.5deg) skewY(-12.5deg)
		}

		33.3% {
			transform: skewX(6.25deg) skewY(6.25deg)
		}

		44.4% {
			transform: skewX(-3.125deg) skewY(-3.125deg)
		}

		55.5% {
			transform: skewX(1.5625deg) skewY(1.5625deg)
		}

		66.6% {
			transform: skewX(-.78125deg) skewY(-.78125deg)
		}

		77.7% {
			transform: skewX(.390625deg) skewY(.390625deg)
		}

		88.8% {
			transform: skewX(-.1953125deg) skewY(-.1953125deg)
		}

		to {
			transform: translateZ(0)
		}
	}

	@keyframes wobble {
		0% {
			transform: rotate(0deg)
		}

		25% {
			transform: rotate(-15deg)
		}

		50% {
			transform: rotate(15deg)
		}

		75% {
			transform: rotate(-10deg)
		}

		to {
			transform: rotate(0deg)
		}
	}

	@keyframes bounce {
		0% {
			transform: translateY(2px)
		}

		50% {
			transform: translateY(-2px)
		}

		to {
			transform: translateY(2px)
		}
	}

	@keyframes arrow-up {

		0%,
		to {
			transform: rotate(-12deg) scaleX(-1)
		}

		25% {
			transform: rotate(-12deg) scale(-.9, 1.1)
		}

		50% {
			transform: rotate(-12deg) scale(-1.1, .9)
		}

		75% {
			transform: rotate(-12deg) scale(-.95, 1.05)
		}
	}
}

@media only screen and (max-width:58.75em) {
	#reel .col-lg-8 {
		order: 2;
	}

	#reel .col-lg-4 {
		order: 1;
	}

	.mod_dyli {
		position: relative;
		text-align: right;
	}
}

@media only screen and (max-width:53em) {
	.arrow-left {
		bottom: -10%
	}

	.flip-card-container,
	#article-26 .ce_text.solid-shadow {
		height: 20rem
	}

	.arrow-up {
		margin-right: -23rem
	}

	.ce_text.border {
		margin: 50% 0 4rem;
		width: 80%
	}

	.mod_footer .layer {
		flex-direction: column;
		gap: 1rem;
	}

	.mod_footer .mod_customnav {
		order: 1;
	}

	.mod_footer .mod_copyright {
		order: 2;
	}
}

@media only screen and (max-width:47.938em) {
	.col-img .ce_image {
		padding: 1rem
	}

	#blockquote .col-md-3 {
		order: 2;
	}

	#blockquote .col-md-9 {
		order: 1;
	}

	.owl-nav span {
		background-size: 2rem 2rem;
		width: 3rem;
		height: 3rem;
	}

	.mod_article.footer .ce_columns {
		min-height: 4rem;
	}

	.tooltip {
		margin: -10rem 0 0 -12rem
	}

	.tooltip-txt {
		font-size: .75rem;
		line-height: 1.25rem
	}

	.tooltip-link a {
		background-size: 100%;
		height: 1.5rem;
		width: 1.5rem
	}

	.ic,
	.modal .close,
	.ui-accordion-header-icon {
		background-size: 100%;
		height: 2rem;
		width: 2rem
	}

	#submit-txt {
		margin: -1rem 0 0
	}

	.modal .close {
		right: 1.5rem;
		top: 1.25rem
	}

	.col-img img,
	.flip-card-front img {
		height: 2rem
	}

	.open p,
	p {
		margin: 0 0 1rem
	}

	.mod_back {
		margin: -1.5rem 0 0
	}

	.mod_back,
	.mod_button {
		height: 3rem;
		width: 3rem
	}

	.mod_button {
		margin: -1.5rem 0 0 -3rem
	}

	.layer,
	.open .layer {
		padding: 0 5rem
	}
	
	.intro-image .ce_image.logo {
		left: 80px;
		bottom: 80px;
	}

	.headline-style-3,
	.open .headline-style-3 {
		font-size: 2rem;
		line-height: 3rem
	}

	.headline-style-4,
	.open .headline-style-4 {
		font-size: 3rem;
		line-height: 4rem
	}

	.open .toggler,
	.toggler {
		font-size: 2rem;
		line-height: 3rem
	}

	.open .ui-accordion-header-icon,
	.ui-accordion-header-icon {
		height: 2rem;
		margin-top: -1rem;
		width: 2rem
	}

	.mod_filter_carousel li {
		margin: 0 1rem 0 0
	}

	.modal .inside {
		left: 0;
		margin: 2rem;
		position: relative;
		top: auto;
		transform: none;
		width: auto
	}

	.modal .box {
		overflow: scroll
	}

	.border-right {
		border: 0
	}

	.border-right-mobile {
		border-right: .125rem solid
	}

	.border-top-mobile {
		border-top: .125rem solid
	}

	.col-cards .col-headline {
		font-size: 1rem;
		line-height: 2rem
	}

	.ce_hyperlink.dotted-shadow a {
		font-size: 1rem;
		line-height: 1.5rem;
		width: 12rem
	}

	.dots {
		height: 5rem;
		width: 12rem;
	}

	.mod_article.form .layer {
		padding: 0 2rem
	}

	#hello-name {
		font-size: 1.5rem;
		height: 3rem
	}

	.arrow-left {
		background-size: 100%;
		bottom: auto;
		height: 2rem;
		right: 20%;
		top: -2%;
		width: 4rem
	}

	.arrow-up-reverse {
		top: -4rem;
	}

	.mod_dyli {
		font-size: 2rem;
		line-height: 2rem;
		padding-right: 3rem;
	}

	@keyframes arrow-left {

		0%,
		to {
			transform: rotate(-60deg) scaleX(-1)
		}

		25% {
			transform: rotate(-60deg) scale(-.9, 1.1)
		}

		50% {
			transform: rotate(-60deg) scale(-1.1, .9)
		}

		75% {
			transform: rotate(-60deg) scale(-.95, 1.05)
		}
	}

	.arrow-down,
	.arrow-up,
	.arrow-up-reverse {
		background-size: 100%;
		height: 4rem;
		width: 2rem
	}

	.arrow-up {
		left: auto;
		margin: 0;
		right: 0
	}

	.arrow-down {
		bottom: 0;
		left: 50%;
		margin: 0 0 0 -1rem;
		top: auto
	}

	@keyframes arrow-down {

		0%,
		to {
			transform: rotate(0deg) scale(1)
		}

		25% {
			transform: rotate(0deg) scale(.9, 1.1)
		}

		50% {
			transform: rotate(0deg) scale(1.1, .9)
		}

		75% {
			transform: rotate(0deg) scale(.95, 1.05)
		}
	}

	.postcard {
		left: 0;
		margin: 0;
		padding-right: 4rem
	}

	.spacing-top-bottom-mobile {
		margin-bottom: 2rem;
		margin-top: 2rem
	}

	.owl-carousel.carousel-team .owl-item {
		text-align: center
	}

	.owl-carousel.carousel-team .owl-item img {
		display: inline-block;
		width: auto
	}

	.mod_needs {
		text-align: center
	}

	.contao-cookiebar .cc-btn {
		font-size: 1rem;
		line-height: 1.5rem;
		margin: 1rem .5rem;
		width: auto
	}

	.ce_image.preview .caption {
		position: relative;
		bottom: 0;
		margin-top: 1.5rem;
		margin-bottom: 1.5rem;
	}

	.owl-nav button {
		margin-top: -3.75rem;
	}

	#projects .ce_headline {
		position: relative;
		margin-top: 0;
		margin-bottom: 1.5rem;
	}
	
	.carousel-projects .ce_image.preview {
	    min-height: 600px;
	    padding: 0 4rem;
	}
}

@media only screen and (max-width:40em) {
	.mod_logo {
		right: 1rem;
		top: 1rem
	}

	.open .mod_button {
		left: 1rem;
		top: 1rem
	}

	.owl-next {
		right: 1rem;
	}

	.owl-prev {
		left: 1rem;
	}

	.spacing-top-mobile {
		margin-top: 2rem
	}

	.arrow-up {
		right: -3rem
	}

	.arrow-up-reverse {
		top: -3rem;
	}

	#postcards {
		height: 18rem
	}

	.postcard {
		padding-right: 0
	}

	.ce_accordion .box {
		padding: 1rem 0 0
	}

	.open .txt-intro,
	.txt-intro {
		font-size: 1.25rem;
		line-height: 2rem;
		margin: 0
	}

	.col-cards.row {
		grid-gap: 0
	}

	.row {
		grid-gap: 1rem
	}

	.spacing-bottom-normal {
		margin-bottom: 1rem
	}

	.spacing-top-normal {
		margin-top: 1rem
	}
	
	.mod_article.footer .spacing-top-bottom-mobile {
		margin-top: 1rem;
		margin-bottom: 1rem;
	}
}

@media only screen and (max-width:37.5em) {

	.headline-style-1 {
		font-size: 1.5rem;
		line-height: 2rem;
		hyphens: manual;
	}
	
	.mod_article.footer .ce_columns {
		min-height: 2rem;
	}
	
	.ce_hyperlink.dotted-shadow a,
	.ce_hyperlink.pill,
	.slide-item .caption span,
	.ce_image.preview .caption span {
		font-size: .75rem;
		line-height: 1rem
	}

	.ce_hyperlink.pill a,
	.slide-item .caption span,
	.ce_image.preview .caption span {
		padding: 0.5rem 1rem;
	}

}

@media only screen and (max-width:36em) {
	body {
		hyphenate-limit-chars: auto 5;
		hyphenate-limit-lines: 2;
		hyphens: auto
	}

	.mod_article.form {
		display: block
	}

	.mod_hello {
		margin: 2rem auto 0
	}

	.mod_animation {
		position: relative
	}

	#wave {
		margin-top: 7rem
	}

	#rainbow {
		left: 70%
	}

	.spacing-top-normal {
		margin-top: 1rem
	}

	.spacing-top-large {
		margin-top: 3rem
	}

	.spacing-bottom-normal {
		margin-bottom: 1rem
	}

	.spacing-bottom-large {
		margin-bottom: 3rem
	}

	.col-cards {
		gap: 0
	}

	.modal .inside {
		margin: 1rem
	}

	.arrow-left {
		margin: 0;
		right: 10%
	}

	.image-mobile {
		display: block;
		position: absolute
	}

	.mod_article.parallax {
		background-image: none;
		display: block;
		min-height: auto
	}

	.mod_article.parallax .layer {
		display: block
	}

	.ce_text.border {
		bottom: 0;
		margin: 60% 0 0;
		width: 100%
	}

	.bg-color-lime .mod_article.parallax {
		background-color: white
	}
	
	.carousel-projects .ce_image.preview {
		min-height: 480px;
	}
}

@media only screen and (max-width:30em) {
	.intro-image .ce_image.logo {
		left: 64px;
		bottom: 64px;
	}
	
	.ui-state-hover {
		padding: 0 3rem 0 0
	}

	.layer,
	.mod_article.form .layer,
	.open .layer {
		padding: 0 4rem
	}

	.mod_onepage_navigation {
		font-size: 3rem;
		line-height: 3rem
	}

	.mod_social_media a {
		background-size: 1rem 1rem;
		height: 2rem;
		width: 2rem
	}

	.mod_social_media a.ig {
		margin: 0
	}

	.mod_filter_map {
		margin-top: 1rem
	}

	.flip-card-front {
		font-size: 1.25rem;
		line-height: 1.5rem
	}

	#random-name {
		display: inline
	}

	.headline-style-6 {
		font-size: 1.25rem;
		line-height: 2rem;
		padding-right: 4rem
	}

	#highlight {
		display: inline
	}

	#highlight svg {
		bottom: -.75rem
	}

	.headline-style-4,
	.open .headline-style-4 {
		font-size: 2rem;
		line-height: 3rem
	}

	.ce_text ul {
		margin: 0 0 0 1.25rem
	}

	.modal .close {
		top: 1rem
	}

	.arrow-left {
		right: 15%
	}

	.arrow-up {
		right: -2.5rem
	}

	#info {
		margin-bottom: 1rem
	}

	.form-bottom .txt-small {
		font-size: .75rem;
		line-height: 1rem
	}

	.tooltip {
		margin: -14rem 0 0 -7rem;
		width: 14rem
	}

	.contao-cookiebar .cc-head p {
		font-size: 1.25rem;
		line-height: 1.75rem
	}

	.ce_text.border {
		margin: 100% 0 0
	}
	
	.padding-top-large {
		padding-top: 3rem;
	}
	
	.padding-bottom-large {
		padding-bottom: 3rem;
	}
}

@media only screen and (max-width:24.5rem) {
	.mod_logo a {
		background-size: 100%;
		height: 2rem
	}
	
	.layout-projects .mod_logo a {
		width: 3rem;
		height: 3rem;
		background-size: 2rem 2rem;
	}

	.mod_logo a,
	.mod_logo.shrink.scroll a {
		width: 2rem
	}

	.mod_logo.shrink a {
		height: 2rem;
		width: 15rem
	}

	.bg-color-blue .mod_logo.shrink a,
	.bg-color-blue .mod_logo.shrink.scroll a {
		width: 2rem
	}
}

@media only screen and (max-width:24em) {
	body {
		font-size: .75rem;
		line-height: 1.25rem
	}

	.job h3 {
		line-height: 1.5rem;
	}

	.form-bottom .txt-small {
		font-size: .5rem;
		line-height: .75rem
	}

	#info {
		margin-bottom: .5rem
	}

	#random-name {
		border-bottom: 1px solid black
	}

	h1,
	h2,
	h3,
	h4,
	h5 {
		margin: .5rem 0
	}

	.open .txt-intro,
	.txt-intro {
		font-size: 1rem;
		line-height: 1.5rem
	}

	.txt-normal,
	.txt-small {
		font-size: .75rem;
		line-height: 1.25rem
	}

	.headline-style-1 {
		font-size: 1.5rem;
		line-height: 2rem
	}

	.headline-style-2 {
		font-size: .75rem
	}

	.headline-style-3,
	.headline-style-4,
	.open .headline-style-3,
	.open .headline-style-4 {
		font-size: 1.5rem;
		line-height: 2rem
	}

	.headline-style-5,
	.headline-style-5.headline-style-5-3 {
		font-size: 1.25rem;
		line-height: 1.5rem
	}

	.headline-style-5-1,
	.headline-style-5-3 {
		padding: .25rem 0 .25rem 2.75rem
	}

	.headline-style-5-2 {
		padding: .25rem 2.75rem .25rem 0
	}

	.layout-projects .headline-style-7 {
		font-size: 2rem;
		line-height: 3rem;
	}

	.open .toggler,
	.toggler {
		font-size: 1.5rem;
		line-height: 2rem
	}

	.ce_accordion {
		padding: .5rem 0
	}

	.ce_accordion .box {
		padding: .5rem 0 0
	}

	.mod_filter_carousel li {
		margin: 0 0 .25rem
	}

	.mod_filter_carousel li.powertools {
		margin: 0
	}

	.flip-card-back {
		font-size: .75rem;
		line-height: 1rem
	}

	.mod_needs {
		font-size: 1.5rem;
		line-height: 2rem
	}

	.mod_bubble div {
		padding: 1rem
	}

	.flip-card-container,
	#article-26 .ce_text.solid-shadow {
		height: 15rem
	}

	.dots {
		height: 3rem
	}

	.row {
		grid-gap: .5rem
	}

	.col-cards .ce_columns.col-headline {
		padding: 0 1rem
	}

	.modal .close {
		right: .5rem;
		top: .5rem
	}

	.col-cards .ce_columns {
		padding: 1rem
	}
}

@media only screen and (min-device-width:768px) and (max-device-width:1024px) {
	.image-mobile {
		display: block;
		position: absolute
	}

	.mod_article.parallax {
		background-image: none;
		display: block;
		min-height: auto
	}

	.mod_article.parallax .layer,
	.mod_article.parallax .row {
		display: block
	}

	.ce_text.border {
		bottom: 1rem;
		font-size: 1rem;
		line-height: 1.5rem;
		margin: 6rem 0 0;
		position: relative;
		width: 40%
	}
}

@media only screen and (min-width:112em) {
	.open #wrapper {
		margin-left: 50%
	}

	.mod_overlay {
		display: table;
		margin: 0 0 0 -50%;
		width: 50%
	}

	.mod_overlay .inside {
		display: table-cell;
		vertical-align: middle
	}

	.mod_onepage_navigation {
		font-size: 7rem;
		line-height: 7rem;
		padding: 2rem 0;
		text-align: center
	}

	.open .mod_button {
		margin: -3rem 0 0 50%
	}

	.ce_text.border {
		max-width: 48rem
	}

	.mod_article.parallax {
		min-height: 82rem
	}
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(../../files/needs-people/css/owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
