html {
  --grid__columns: 12;
  --grid__gutter: 1.875rem;
}
.row {
  display: grid;
  grid-template-columns: repeat(var(--grid__columns), minmax(0, 1fr));
  grid-gap: var(--grid__gutter);
  grid-auto-columns: 1fr;
}

.row--show {
  position: relative;
  background: #f9f9f9;
  z-index: 0;
  padding-top: 0.9375rem;
}

.row--show:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  background: repeating-linear-gradient(to right, #f0f0f0 0%, #f0f0f0 calc((100% - (1.875rem * 11)) / 12), #f9f9f9 calc((100% - (1.875rem * 11)) / 12), #f9f9f9 calc(((100% - (1.875rem * 11)) / 12) + 1.875rem) );
}


/* ----- */
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
  grid-column: 1 / -1;
}

.row-span-xs-1, .row-span-xs-2, .row-span-xs-3, .row-span-xs-4, .row-span-xs-5, .row-span-xs-6, .row-span-xs-7, .row-span-xs-8, .row-span-xs-9, .row-span-xs-10, .row-span-xs-11, .row-span-xs-12, .row-span-sm-1, .row-span-sm-2, .row-span-sm-3, .row-span-sm-4, .row-span-sm-5, .row-span-sm-6, .row-span-sm-7, .row-span-sm-8, .row-span-sm-9, .row-span-sm-10, .row-span-sm-11, .row-span-sm-12, .row-span-md-1, .row-span-md-2, .row-span-md-3, .row-span-md-4, .row-span-md-5, .row-span-md-6, .row-span-md-7, .row-span-md-8, .row-span-md-9, .row-span-md-10, .row-span-md-11, .row-span-md-12, .row-span-lg-1, .row-span-lg-2, .row-span-lg-3, .row-span-lg-4, .row-span-lg-5, .row-span-lg-6, .row-span-lg-7, .row-span-lg-8, .row-span-lg-9, .row-span-lg-10, .row-span-lg-11, .row-span-lg-12, .row-span-xl-1, .row-span-xl-2, .row-span-xl-3, .row-span-xl-4, .row-span-xl-5, .row-span-xl-6, .row-span-xl-7, .row-span-xl-8, .row-span-xl-9, .row-span-xl-10, .row-span-xl-11, .row-span-xl-12 {
  grid-row: 1;
}

.justify-start {
  justify-self: start;
}

.justify-center {
  justify-self: center;
}

.justify-end {
  justify-self: end;
}

.justify-stretch {
  justify-self: stretch;
}

.align-start {
  align-self: start;
}

.align-center {
  align-self: center;
}

.align-end {
  align-self: end;
}

.align-stretch {
  align-self: stretch;
}

.col-1 {
  grid-column: span 1 / span 1;
}

.col-2 {
  grid-column: span 2 / span 2;
}

.col-3 {
  grid-column: span 3 / span 3;
}

.col-4 {
  grid-column: span 4 / span 4;
}

.col-5 {
  grid-column: span 5 / span 5;
}

.col-6 {
  grid-column: span 6 / span 6;
}

.col-7 {
  grid-column: span 7 / span 7;
}

.col-8 {
  grid-column: span 8 / span 8;
}

.col-9 {
  grid-column: span 9 / span 9;
}

.col-10 {
  grid-column: span 10 / span 10;
}

.col-11 {
  grid-column: span 11 / span 11;
}

.col-12 {
  grid-column: span 12 / span 12;
}

@media screen and (min-width: 0) {
  .col-xs-1 {
    grid-column: span 1 / span 1;
  }

  .col-xs-2 {
    grid-column: span 2 / span 2;
  }

  .col-xs-3 {
    grid-column: span 3 / span 3;
  }

  .col-xs-4 {
    grid-column: span 4 / span 4;
  }

  .col-xs-5 {
    grid-column: span 5 / span 5;
  }

  .col-xs-6 {
    grid-column: span 6 / span 6;
  }

  .col-xs-7 {
    grid-column: span 7 / span 7;
  }

  .col-xs-8 {
    grid-column: span 8 / span 8;
  }

  .col-xs-9 {
    grid-column: span 9 / span 9;
  }

  .col-xs-10 {
    grid-column: span 10 / span 10;
  }

  .col-xs-11 {
    grid-column: span 11 / span 11;
  }

  .col-xs-12 {
    grid-column: span 12 / span 12;
  }
}

@media screen and (min-width: 0) {
  .col-start-xs-1 {
    grid-column-start: 1;
  }

  .row-start-xs-1 {
    grid-row-start: 1;
  }

  .col-start-xs-2 {
    grid-column-start: 2;
  }

  .row-start-xs-2 {
    grid-row-start: 2;
  }

  .col-start-xs-3 {
    grid-column-start: 3;
  }

  .row-start-xs-3 {
    grid-row-start: 3;
  }

  .col-start-xs-4 {
    grid-column-start: 4;
  }

  .row-start-xs-4 {
    grid-row-start: 4;
  }

  .col-start-xs-5 {
    grid-column-start: 5;
  }

  .row-start-xs-5 {
    grid-row-start: 5;
  }

  .col-start-xs-6 {
    grid-column-start: 6;
  }

  .row-start-xs-6 {
    grid-row-start: 6;
  }

  .col-start-xs-7 {
    grid-column-start: 7;
  }

  .row-start-xs-7 {
    grid-row-start: 7;
  }

  .col-start-xs-8 {
    grid-column-start: 8;
  }

  .row-start-xs-8 {
    grid-row-start: 8;
  }

  .col-start-xs-9 {
    grid-column-start: 9;
  }

  .row-start-xs-9 {
    grid-row-start: 9;
  }

  .col-start-xs-10 {
    grid-column-start: 10;
  }
  .row-start-xs-10 {
    grid-row-start: 10;
  }

  .col-start-xs-11 {
    grid-column-start: 11;
  }

  .row-start-xs-11 {
    grid-row-start: 11;
  }

  .col-start-xs-12 {
    grid-column-start: 12;
  }

  .row-start-xs-12 {
    grid-row-start: 12;
  }
}

@media screen and (min-width: 0) {
  .pull-right-xs {
    grid-column-end: -1;
  }

  .pull-left-xs {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}

@media screen and (min-width: 0) {
  .justify-xs-start {
    justify-self: start;
  }

  .justify-xs-center {
    justify-self: center;
  }

  .justify-xs-end {
    justify-self: end;
  }

  .justify-xs-stretch {
    justify-self: stretch;
  }

  .align-xs-start {
    align-self: start;
  }

  .align-xs-center {
    align-self: center;
  }

  .align-xs-end {
    align-self: end;
  }

  .align-xs-stretch {
    align-self: stretch;
  }
}

@media screen and (min-width: 0) {
  .row-span-xs-1 {
    grid-row: span 1 / span 1;
  }

  .row-span-xs-2 {
    grid-row: span 2 / span 2;
  }

  .row-span-xs-3 {
    grid-row: span 3 / span 3;
  }

  .row-span-xs-4 {
    grid-row: span 4 / span 4;
  }

  .row-span-xs-5 {
    grid-row: span 5 / span 5;
  }

  .row-span-xs-6 {
    grid-row: span 6 / span 6;
  }

  .row-span-xs-7 {
    grid-row: span 7 / span 7;
  }

  .row-span-xs-8 {
    grid-row: span 8 / span 8;
  }

  .row-span-xs-9 {
    grid-row: span 9 / span 9;
  }

  .row-span-xs-10 {
    grid-row: span 10 / span 10;
  }

  .row-span-xs-11 {
    grid-row: span 11 / span 11;
  }

  .row-span-xs-12 {
    grid-row: span 12 / span 12;
  }
}

@media screen and (min-width: 34.375em) {
  .col-sm-1 {
    grid-column: span 1 / span 1;
  }

  .col-sm-2 {
    grid-column: span 2 / span 2;
  }

  .col-sm-3 {
    grid-column: span 3 / span 3;
  }

  .col-sm-4 {
    grid-column: span 4 / span 4;
  }

  .col-sm-5 {
    grid-column: span 5 / span 5;
  }

  .col-sm-6 {
    grid-column: span 6 / span 6;
  }

  .col-sm-7 {
    grid-column: span 7 / span 7;
  }

  .col-sm-8 {
    grid-column: span 8 / span 8;
  }

  .col-sm-9 {
    grid-column: span 9 / span 9;
  }

  .col-sm-10 {
    grid-column: span 10 / span 10;
  }

  .col-sm-11 {
    grid-column: span 11 / span 11;
  }

  .col-sm-12 {
    grid-column: span 12 / span 12;
  }
}

@media screen and (min-width: 34.375em) {
  .col-start-sm-1 {
    grid-column-start: 1;
  }

  .row-start-sm-1 {
    grid-row-start: 1;
  }

  .col-start-sm-2 {
    grid-column-start: 2;
  }

  .row-start-sm-2 {
    grid-row-start: 2;
  }

  .col-start-sm-3 {
    grid-column-start: 3;
  }

  .row-start-sm-3 {
    grid-row-start: 3;
  }

  .col-start-sm-4 {
    grid-column-start: 4;
  }

  .row-start-sm-4 {
    grid-row-start: 4;
  }

  .col-start-sm-5 {
    grid-column-start: 5;
  }

  .row-start-sm-5 {
    grid-row-start: 5;
  }

  .col-start-sm-6 {
    grid-column-start: 6;
  }

  .row-start-sm-6 {
    grid-row-start: 6;
  }

  .col-start-sm-7 {
    grid-column-start: 7;
  }

  .row-start-sm-7 {
    grid-row-start: 7;
  }

  .col-start-sm-8 {
    grid-column-start: 8;
  }

  .row-start-sm-8 {
    grid-row-start: 8;
  }

  .col-start-sm-9 {
    grid-column-start: 9;
  }

  .row-start-sm-9 {
    grid-row-start: 9;
  }

  .col-start-sm-10 {
    grid-column-start: 10;
  }

  .row-start-sm-10 {
    grid-row-start: 10;
  }

  .col-start-sm-11 {
    grid-column-start: 11;
  }

  .row-start-sm-11 {
    grid-row-start: 11;
  }

  .col-start-sm-12 {
    grid-column-start: 12;
  }

  .row-start-sm-12 {
    grid-row-start: 12;
  }
}

@media screen and (min-width: 34.375em) {
  .pull-right-sm {
    grid-column-end: -1;
  }

  .pull-left-sm {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}

@media screen and (min-width: 34.375em) {
  .justify-sm-start {
    justify-self: start;
  }

  .justify-sm-center {
    justify-self: center;
  }

  .justify-sm-end {
    justify-self: end;
  }

  .justify-sm-stretch {
    justify-self: stretch;
  }

  .align-sm-start {
    align-self: start;
  }

  .align-sm-center {
    align-self: center;
  }

  .align-sm-end {
    align-self: end;
  }

  .align-sm-stretch {
    align-self: stretch;
  }
}

@media screen and (min-width: 34.375em) {
  .row-span-sm-1 {
    grid-row: span 1 / span 1;
  }

  .row-span-sm-2 {
    grid-row: span 2 / span 2;
  }

  .row-span-sm-3 {
    grid-row: span 3 / span 3;
  }

  .row-span-sm-4 {
    grid-row: span 4 / span 4;
  }

  .row-span-sm-5 {
    grid-row: span 5 / span 5;
  }

  .row-span-sm-6 {
    grid-row: span 6 / span 6;
  }

  .row-span-sm-7 {
    grid-row: span 7 / span 7;
  }

  .row-span-sm-8 {
    grid-row: span 8 / span 8;
  }

  .row-span-sm-9 {
    grid-row: span 9 / span 9;
  }

  .row-span-sm-10 {
    grid-row: span 10 / span 10;
  }

  .row-span-sm-11 {
    grid-row: span 11 / span 11;
  }

  .row-span-sm-12 {
    grid-row: span 12 / span 12;
  }
}


@media screen and (min-width: 48em) {
  .col-md-1 {
    grid-column: span 1 / span 1;
  }

  .col-md-2 {
    grid-column: span 2 / span 2;
  }

  .col-md-3 {
    grid-column: span 3 / span 3;
  }

  .col-md-4 {
    grid-column: span 4 / span 4;
  }

  .col-md-5 {
    grid-column: span 5 / span 5;
  }

  .col-md-6 {
    grid-column: span 6 / span 6;
  }

  .col-md-7 {
    grid-column: span 7 / span 7;
  }

  .col-md-8 {
    grid-column: span 8 / span 8;
  }

  .col-md-9 {
    grid-column: span 9 / span 9;
  }

  .col-md-10 {
    grid-column: span 10 / span 10;
  }

  .col-md-11 {
    grid-column: span 11 / span 11;
  }

  .col-md-12 {
    grid-column: span 12 / span 12;
  }
}

@media screen and (min-width: 48em) {
  .col-start-md-1 {
    grid-column-start: 1;
  }

  .row-start-md-1 {
    grid-row-start: 1;
  }

  .col-start-md-2 {
    grid-column-start: 2;
  }

  .row-start-md-2 {
    grid-row-start: 2;
  }

  .col-start-md-3 {
    grid-column-start: 3;
  }

  .row-start-md-3 {
    grid-row-start: 3;
  }

  .col-start-md-4 {
    grid-column-start: 4;
  }

  .row-start-md-4 {
    grid-row-start: 4;
  }

  .col-start-md-5 {
    grid-column-start: 5;
  }

  .row-start-md-5 {
    grid-row-start: 5;
  }

  .col-start-md-6 {
    grid-column-start: 6;
  }

  .row-start-md-6 {
     grid-row-start: 6;
  }

  .col-start-md-7 {
    grid-column-start: 7;
  }

  .row-start-md-7 {
    grid-row-start: 7;
  }

  .col-start-md-8 {
    grid-column-start: 8;
  }

  .row-start-md-8 {
    grid-row-start: 8;
  }

  .col-start-md-9 {
    grid-column-start: 9;
  }

  .row-start-md-9 {
    grid-row-start: 9;
  }

  .col-start-md-10 {
    grid-column-start: 10;
  }

  .row-start-md-10 {
    grid-row-start: 10;
  }

  .col-start-md-11 {
    grid-column-start: 11;
  }
  
  .row-start-md-11 {
    grid-row-start: 11;
  }
  
  .col-start-md-12 {
    grid-column-start: 12;
  }
  
  .row-start-md-12 {
    grid-row-start: 12;
  }
}

@media screen and (min-width: 48em) {
  .pull-right-md {
    grid-column-end: -1;
  }
  
  .pull-left-md {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}

@media screen and (min-width: 48em) {
  .justify-md-start {
    justify-self: start;
  }

  .justify-md-center {
    justify-self: center;
  }

  .justify-md-end {
    justify-self: end;
  }

  .justify-md-stretch {
    justify-self: stretch;
  }

  .align-md-start {
    align-self: start;
  }

  .align-md-center {
    align-self: center;
  }

  .align-md-end {
    align-self: end;
  }

  .align-md-stretch {
    align-self: stretch;
  }
}

@media screen and (min-width: 48em) {
  .row-span-md-1 {
    grid-row: span 1 / span 1;
  }

  .row-span-md-2 {
    grid-row: span 2 / span 2;
  }

  .row-span-md-3 {
    grid-row: span 3 / span 3;
  }

  .row-span-md-4 {
    grid-row: span 4 / span 4;
  }

  .row-span-md-5 {
    grid-row: span 5 / span 5;
  }

  .row-span-md-6 {
    grid-row: span 6 / span 6;
  }

  .row-span-md-7 {
    grid-row: span 7 / span 7;
  }

  .row-span-md-8 {
    grid-row: span 8 / span 8;
  }

  .row-span-md-9 {
    grid-row: span 9 / span 9;
  }

  .row-span-md-10 {
    grid-row: span 10 / span 10;
  }

  .row-span-md-11 {
    grid-row: span 11 / span 11;
  }

  .row-span-md-12 {
    grid-row: span 12 / span 12;
  }
}

@media screen and (min-width: 58.75em) {
  .col-lg-1 {
    grid-column: span 1 / span 1;
  }
  
  .col-lg-2 {
    grid-column: span 2 / span 2;
  }
  
  .col-lg-3 {
    grid-column: span 3 / span 3;
  }
  
  .col-lg-4 {
    grid-column: span 4 / span 4;
  }
  
  .col-lg-5 {
    grid-column: span 5 / span 5;
  }
  
  .col-lg-6 {
    grid-column: span 6 / span 6;
  }
  
  .col-lg-7 {
    grid-column: span 7 / span 7;
  }
  
  .col-lg-8 {
    grid-column: span 8 / span 8;
  }
  
  .col-lg-9 {
    grid-column: span 9 / span 9;
  }
  
  .col-lg-10 {
    grid-column: span 10 / span 10;
  }
  
  .col-lg-11 {
    grid-column: span 11 / span 11;
  }
  
  .col-lg-12 {
    grid-column: span 12 / span 12;
  }
}

@media screen and (min-width: 58.75em) {
  .col-start-lg-1 {
    grid-column-start: 1;
  }
  
  .row-start-lg-1 {
    grid-row-start: 1;
  }
  
  .col-start-lg-2 {
    grid-column-start: 2;
  }
  
  .row-start-lg-2 {
    grid-row-start: 2;
  }
  
  .col-start-lg-3 {
    grid-column-start: 3;
  }
  
  .row-start-lg-3 {
    grid-row-start: 3;
  }
  
  .col-start-lg-4 {
    grid-column-start: 4;
  }
  
  .row-start-lg-4 {
    grid-row-start: 4;
  }
  
  .col-start-lg-5 {
    grid-column-start: 5;
  }
  
  .row-start-lg-5 {
    grid-row-start: 5;
  }
  
  .col-start-lg-6 {
    grid-column-start: 6;
  }
  
  .row-start-lg-6 {
    grid-row-start: 6;
  }
  
  .col-start-lg-7 {
    grid-column-start: 7;
  }
  
  .row-start-lg-7 {
    grid-row-start: 7;
  }
  
  .col-start-lg-8 {
    grid-column-start: 8;
  }
  
  .row-start-lg-8 {
    grid-row-start: 8;
  }
  
  .col-start-lg-9 {
    grid-column-start: 9;
  }
  
  .row-start-lg-9 {
    grid-row-start: 9;
  }
  
  .col-start-lg-10 {
    grid-column-start: 10;
  }
  
  .row-start-lg-10 {
    grid-row-start: 10;
  }
  
  .col-start-lg-11 {
    grid-column-start: 11;
  }
  
  .row-start-lg-11 {
    grid-row-start: 11;
  }
  
  .col-start-lg-12 {
    grid-column-start: 12;
  }
  
  .row-start-lg-12 {
    grid-row-start: 12;
  }
}

@media screen and (min-width: 58.75em) {
  .pull-right-lg {
    grid-column-end: -1;
  }
  
  .pull-left-lg {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}

@media screen and (min-width: 58.75em) {
  .justify-lg-start {
    justify-self: start;
  }

  .justify-lg-center {
    justify-self: center;
  }

  .justify-lg-end {
    justify-self: end;
  }

  .justify-lg-stretch {
    justify-self: stretch;
  }

  .align-lg-start {
    align-self: start;
  }

  .align-lg-center {
    align-self: center;
  }

  .align-lg-end {
    align-self: end;
  }

  .align-lg-stretch {
    align-self: stretch;
  }
}

@media screen and (min-width: 58.75em) {
  .row-span-lg-1 {
    grid-row: span 1 / span 1;
  }

  .row-span-lg-2 {
    grid-row: span 2 / span 2;
  }

  .row-span-lg-3 {
    grid-row: span 3 / span 3;
  }

  .row-span-lg-4 {
    grid-row: span 4 / span 4;
  }

  .row-span-lg-5 {
    grid-row: span 5 / span 5;
  }

  .row-span-lg-6 {
    grid-row: span 6 / span 6;
  }

  .row-span-lg-7 {
    grid-row: span 7 / span 7;
  }

  .row-span-lg-8 {
    grid-row: span 8 / span 8;
  }

  .row-span-lg-9 {
    grid-row: span 9 / span 9;
  }

  .row-span-lg-10 {
    grid-row: span 10 / span 10;
  }

  .row-span-lg-11 {
    grid-row: span 11 / span 11;
  }

  .row-span-lg-12 {
    grid-row: span 12 / span 12;
  }
}

@media screen and (min-width: 68.75em) {
  .col-xl-1 {
    grid-column: span 1 / span 1;
  }
  
  .col-xl-2 {
    grid-column: span 2 / span 2;
  }
  
  .col-xl-3 {
    grid-column: span 3 / span 3;
  }
  
  .col-xl-4 {
    grid-column: span 4 / span 4;
  }
  
  .col-xl-5 {
    grid-column: span 5 / span 5;
  }
  
  .col-xl-6 {
    grid-column: span 6 / span 6;
  }
  
  .col-xl-7 {
    grid-column: span 7 / span 7;
  }
  
  .col-xl-8 {
    grid-column: span 8 / span 8;
  }
  
  .col-xl-9 {
    grid-column: span 9 / span 9;
  }
  
  .col-xl-10 {
    grid-column: span 10 / span 10;
  }
  
  .col-xl-11 {
    grid-column: span 11 / span 11;
  }
  
  .col-xl-12 {
    grid-column: span 12 / span 12;
  }
}

@media screen and (min-width: 68.75em) {
  .col-start-xl-1 {
     grid-column-start: 1;
  }
  
  .row-start-xl-1 {
    grid-row-start: 1;
  }
  
  .col-start-xl-2 {
    grid-column-start: 2;
  }
  
  .row-start-xl-2 {
    grid-row-start: 2;
  }
  
  .col-start-xl-3 {
    grid-column-start: 3;
  }
  
  .row-start-xl-3 {
    grid-row-start: 3;
  }
  
  .col-start-xl-4 {
    grid-column-start: 4;
  }
  
  .row-start-xl-4 {
    grid-row-start: 4;
  }
  
  .col-start-xl-5 {
    grid-column-start: 5;
  }
  
  .row-start-xl-5 {
    grid-row-start: 5;
  }
  
  .col-start-xl-6 {
    grid-column-start: 6;
  }
  
  .row-start-xl-6 {
    grid-row-start: 6;
  }
  
  .col-start-xl-7 {
    grid-column-start: 7;
  }
  
  .row-start-xl-7 {
    grid-row-start: 7;
  }
  
  .col-start-xl-8 {
    grid-column-start: 8;
  }
  
  .row-start-xl-8 {
    grid-row-start: 8;
  }
  
  .col-start-xl-9 {
    grid-column-start: 9;
  }
  
  .row-start-xl-9 {
    grid-row-start: 9;
  }
  
  .col-start-xl-10 {
    grid-column-start: 10;
  }
  
  .row-start-xl-10 {
    grid-row-start: 10;
  }
  
  .col-start-xl-11 {
    grid-column-start: 11;
  }
  
  .row-start-xl-11 {
    grid-row-start: 11;
  }
  
  .col-start-xl-12 {
    grid-column-start: 12;
  }
  
  .row-start-xl-12 {
    grid-row-start: 12;
  }
}

@media screen and (min-width: 68.75em) {
  .pull-right-xl {
    grid-column-end: -1;
  }
  
  .pull-left-xl {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}

@media screen and (min-width: 68.75em) {
  .justify-xl-start {
    justify-self: start;
  }

  .justify-xl-center {
    justify-self: center;
  }

  .justify-xl-end {
    justify-self: end;
  }

  .justify-xl-stretch {
    justify-self: stretch;
  }

  .align-xl-start {
    align-self: start;
  }

  .align-xl-center {
    align-self: center;
  }

  .align-xl-end {
    align-self: end;
  }

  .align-xl-stretch {
    align-self: stretch;
  }
}

@media screen and (min-width: 68.75em) {
  .row-span-xl-1 {
    grid-row: span 1 / span 1;
  }

  .row-span-xl-2 {
    grid-row: span 2 / span 2;
  }

  .row-span-xl-3 {
    grid-row: span 3 / span 3;
  }

  .row-span-xl-4 {
    grid-row: span 4 / span 4;
  }

  .row-span-xl-5 {
    grid-row: span 5 / span 5;
  }

  .row-span-xl-6 {
    grid-row: span 6 / span 6;
  }

  .row-span-xl-7 {
    grid-row: span 7 / span 7;
  }

  .row-span-xl-8 {
    grid-row: span 8 / span 8;
  }

  .row-span-xl-9 {
    grid-row: span 9 / span 9;
  }

  .row-span-xl-10 {
    grid-row: span 10 / span 10;
  }

  .row-span-xl-11 {
    grid-row: span 11 / span 11;
  }

  .row-span-xl-12 {
    grid-row: span 12 / span 12;
  }
}

.col-start-1 {
  grid-column-start: 1;
}

.row-start-1 {
  grid-row-start: 1;
}

.col-start-2 {
  grid-column-start: 2;
}

.row-start-2 {
  grid-row-start: 2;
}

.col-start-3 {
  grid-column-start: 3;
}

.row-start-3 {
  grid-row-start: 3;
}

.col-start-4 {
  grid-column-start: 4;
}

.row-start-4 {
  grid-row-start: 4;
}

.col-start-5 {
  grid-column-start: 5;
}

.row-start-5 {
  grid-row-start: 5;
}

.col-start-6 {
  grid-column-start: 6;
}

.row-start-6 {
  grid-row-start: 6;
}

.col-start-7 {
  grid-column-start: 7;
}

.row-start-7 {
  grid-row-start: 7;
}

.col-start-8 {
  grid-column-start: 8;
}

.row-start-8 {
  grid-row-start: 8;
}

.col-start-9 {
  grid-column-start: 9;
}

.row-start-9 {
  grid-row-start: 9;
}

.col-start-10 {
  grid-column-start: 10;
}
.row-start-10 {
  grid-row-start: 10;
}

.col-start-11 {
  grid-column-start: 11;
}

.row-start-11 {
  grid-row-start: 11;
}

.col-start-12 {
  grid-column-start: 12;
}

.row-start-12 {
  grid-row-start: 12;
}

.row-span-1 {
  grid-row: span 1 / span 1;
}

.row-span-2 {
  grid-row: span 2 / span 2;
}

.row-span-3 {
  grid-row: span 3 / span 3;
}

.row-span-4 {
  grid-row: span 4 / span 4;
}

.row-span-5 {
  grid-row: span 5 / span 5;
}

.row-span-6 {
  grid-row: span 6 / span 6;
}

.row-span-7 {
  grid-row: span 7 / span 7;
}

.row-span-8 {
  grid-row: span 8 / span 8;
}

.row-span-9 {
  grid-row: span 9 / span 9;
}

.row-span-10 {
  grid-row: span 10 / span 10;
}

.row-span-11 {
  grid-row: span 11 / span 11;
}

.row-span-12 {
  grid-row: span 12 / span 12;
}

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%}.aspect--9\:16,.responsive.ratio-916{padding-bottom:177.7777%}.aspect--1\:1,.responsive.ratio-11{padding-bottom:100%}
#wrapper{width:960px;margin:0 auto}.grid1,.grid2,.grid3,.grid4,.grid5,.grid6,.grid7,.grid8,.grid9,.grid10,.grid11,.grid12{float:left;margin-left:10px;margin-right:10px;display:inline}.mod_article [class^=ce_],.mod_article [class*=" ce_"],.mod_article [class^=content-],.mod_article [class*=" content-"],.mod_article [class^=mod_],.mod_article [class*=" mod_"],.mod_article [class^=module-],.mod_article [class*=" module-"]{margin-left:10px;margin-right:10px}.ce_sliderStart>.content-slider{margin-left:0;margin-right:0}.mod_article .mod_newsreader,.mod_article .mod_eventreader{margin-left:0;margin-right:0}.mod_article [class^=layout_]>*,.mod_article [class*=" layout_"]>*,.mod_article [class^=event_]>*,.mod_article [class*=" event_"]>*{margin-left:10px;margin-right:10px}.mod_article.grid1,.mod_article.grid2,.mod_article.grid3,.mod_article.grid4,.mod_article.grid5,.mod_article.grid6,.mod_article.grid7,.mod_article.grid8,.mod_article.grid9,.mod_article.grid10,.mod_article.grid11,.mod_article.grid12{margin-left:0;margin-right:0}#main .inside{overflow:hidden}.grid1{width:60px}.grid2{width:140px}.grid3{width:220px}.grid4{width:300px}.grid5{width:380px}.grid6{width:460px}.grid7{width:540px}.grid8{width:620px}.grid9{width:700px}.grid10{width:780px}.grid11{width:860px}.grid12{width:940px}.mod_article.grid1{width:80px}.mod_article.grid2{width:160px}.mod_article.grid3{width:240px}.mod_article.grid4{width:320px}.mod_article.grid5{width:400px}.mod_article.grid6{width:480px}.mod_article.grid7{width:560px}.mod_article.grid8{width:640px}.mod_article.grid9{width:720px}.mod_article.grid10{width:800px}.mod_article.grid11{width:880px}.mod_article.grid12{width:960px}.offset1{margin-left:90px!important}.offset2{margin-left:170px!important}.offset3{margin-left:250px!important}.offset4{margin-left:330px!important}.offset5{margin-left:410px!important}.offset6{margin-left:490px!important}.offset7{margin-left:570px!important}.offset8{margin-left:650px!important}.offset9{margin-left:730px!important}.offset10{margin-left:810px!important}.offset11{margin-left:890px!important}.offset12{margin-left:970px!important}.mod_article.offset1{margin-left:80px!important}.mod_article.offset2{margin-left:160px!important}.mod_article.offset3{margin-left:240px!important}.mod_article.offset4{margin-left:320px!important}.mod_article.offset5{margin-left:400px!important}.mod_article.offset6{margin-left:480px!important}.mod_article.offset7{margin-left:560px!important}.mod_article.offset8{margin-left:640px!important}.mod_article.offset9{margin-left:720px!important}.mod_article.offset10{margin-left:800px!important}.mod_article.offset11{margin-left:880px!important}.mod_article.offset12{margin-left:960px!important}@media (min-width:768px) and (max-width:979px){#wrapper{width:744px}.grid1{width:42px}.grid2{width:104px}.grid3{width:166px}.grid4{width:228px}.grid5{width:290px}.grid6{width:352px}.grid7{width:414px}.grid8{width:476px}.grid9{width:538px}.grid10{width:600px}.grid11{width:662px}.grid12{width:724px}.mod_article.grid1{width:62px}.mod_article.grid2{width:124px}.mod_article.grid3{width:186px}.mod_article.grid4{width:248px}.mod_article.grid5{width:310px}.mod_article.grid6{width:372px}.mod_article.grid7{width:434px}.mod_article.grid8{width:496px}.mod_article.grid9{width:558px}.mod_article.grid10{width:620px}.mod_article.grid11{width:682px}.mod_article.grid12{width:744px}.offset1{margin-left:72px!important}.offset2{margin-left:134px!important}.offset3{margin-left:196px!important}.offset4{margin-left:258px!important}.offset5{margin-left:320px!important}.offset6{margin-left:382px!important}.offset7{margin-left:444px!important}.offset8{margin-left:506px!important}.offset9{margin-left:568px!important}.offset10{margin-left:630px!important}.offset11{margin-left:692px!important}.offset12{margin-left:754px!important}.mod_article.offset1{margin-left:62px!important}.mod_article.offset2{margin-left:124px!important}.mod_article.offset3{margin-left:186px!important}.mod_article.offset4{margin-left:248px!important}.mod_article.offset5{margin-left:310px!important}.mod_article.offset6{margin-left:372px!important}.mod_article.offset7{margin-left:434px!important}.mod_article.offset8{margin-left:496px!important}.mod_article.offset9{margin-left:558px!important}.mod_article.offset10{margin-left:620px!important}.mod_article.offset11{margin-left:682px!important}.mod_article.offset12{margin-left:744px!important}}@media (max-width:767px){#wrapper{width:auto}.grid1,.grid2,.grid3,.grid4,.grid5,.grid6,.grid7,.grid8,.grid9,.grid10,.grid11,.grid12{float:none!important;display:block!important;width:auto!important}.offset1,.offset2,.offset3,.offset4,.offset5,.offset6,.offset7,.offset8,.offset9,.offset10,.offset11,.offset12{margin-left:10px!important}}
@charset "UTF-8";
html {
  --grid__gutter: 0;
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local(""), url("../../files/themes/abl-group/fonts/open-sans-v29-latin-300.woff2") format("woff2"), url("../../files/themes/abl-group/fonts/open-sans-v29-latin-300.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local(""), url("../../files/themes/abl-group/fonts/open-sans-v29-latin-regular.woff2") format("woff2"), url("../../files/themes/abl-group/fonts/open-sans-v29-latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local(""), url("../../files/themes/abl-group/fonts/open-sans-v29-latin-500.woff2") format("woff2"), url("../../files/themes/abl-group/fonts/open-sans-v29-latin-500.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
.subHeadline {
  display: block;
  font-size: 1.25em;
  line-height: 1.4;
}
.subHeadline + * {
  margin-top: 1em;
}
.bg-dark .subHeadline {
  color: #FFFFFF;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-style: normal;
  font-weight: 300;
  hyphens: auto;
}

h1 {
  font-size: 2.1875em;
  line-height: 1;
  text-transform: uppercase;
}
h1 + * {
  margin-top: 2em;
}
.bg-dark h1 {
  color: #FFFFFF;
}

h2 {
  font-size: 2.1875em;
  line-height: 1;
  text-transform: uppercase;
}
h2 + * {
  margin-top: 35px;
}
.bg-dark h2 {
  color: #FFFFFF;
}

h3 {
  font-size: 1.944em;
  line-height: 1.4;
}
h3 + * {
  margin-top: 0.2em;
}
.bg-dark h3 {
  color: #FFFFFF;
}

h4 {
  font-size: 1.333em;
  font-weight: 400;
  line-height: 1;
  color: #0064B3;
}
h4 + * {
  margin-top: 1.666em;
}

@media (min-width: 768px) {
  .subHeadline {
    font-size: 1.111em;
  }
  h1 {
    font-size: 2.8125em;
  }
  h1 + * {
    margin-top: 3em;
  }
  h2 {
    font-size: 2.8125em;
  }
  h2 + * {
    margin-top: 2.666em;
  }
  h3 {
    font-size: 1.944em;
  }
}
@media (min-width: 1200px) {
  .subHeadline {
    font-size: 1.333em;
  }
  h1 {
    font-size: 3em;
  }
  h2 {
    font-size: 3em;
  }
  h3 {
    font-size: 1.944em;
  }
}
.ce_text {
  font-size: 0.9375em;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .ce_text {
    font-size: 0.8125em;
  }
}
@media (min-width: 1200px) {
  .ce_text {
    font-size: 0.888em;
  }
}
html {
  --grid__gutter: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .js:not(.noanimations) .fadeOut {
    animation-name: fadeIn;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
  }
  .js:not(.noanimations) .moveLeft {
    animation-name: moveLeftBack;
    animation-duration: 1s;
    animation-fill-mode: forwards;
  }
  .js:not(.noanimations) .pulse {
    animation-name: pulse;
    animation-duration: 2s;
    animation-iteration-count: infinite;
  }
  .js:not(.noanimations) #main .mod_article > .inside > [class^=ce_],
  .js:not(.noanimations) #main .mod_article > .inside > [class^=mod_] {
    opacity: 0;
    pointer-events: none;
  }
  .js:not(.noanimations) #main .mod_article > .inside > [class^=ce_]:not(.fadeIn),
  .js:not(.noanimations) #main .mod_article > .inside > [class^=mod_]:not(.fadeIn) {
    opacity: 1;
    pointer-events: all;
  }
  .js:not(.noanimations) #main .mod_article > .inside > [class^=ce_].fadeIn,
  .js:not(.noanimations) #main .mod_article > .inside > [class^=mod_].fadeIn {
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-fill-mode: forwards;
  }
  .js.navOpen .moveLeft {
    animation-name: moveLeft;
    animation-duration: 1s;
  }
  .js.navOpen .fadeOut {
    animation-name: fadeOut;
    animation-duration: 0.5s;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    pointer-events: all;
    transform: scale(1);
  }
  to {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.9);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    pointer-events: all;
    transform: scale(1);
  }
}
@keyframes fadeOutOpacity {
  from {
    opacity: 1;
    pointer-events: all;
  }
  to {
    opacity: 0;
    pointer-events: none;
  }
}
@keyframes fadeInOpacity {
  from {
    opacity: 0;
    pointer-events: none;
  }
  to {
    opacity: 1;
    pointer-events: all;
  }
}
@keyframes moveLeft {
  from {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
  }
  to {
    transform: translateX(-200%);
    opacity: 0;
    pointer-events: none;
  }
}
@keyframes moveLeftBack {
  from {
    transform: translateX(-200%);
    opacity: 0;
    pointer-events: none;
  }
  to {
    transform: translate(0);
    opacity: 1;
    pointer-events: all;
  }
}
@keyframes pulse {
  0% {
    transform: scale(0.9) translateY(-50%) translateX(-1px);
  }
  50% {
    transform: scale(1.1) translateY(-50%) translateX(-1px);
  }
  100% {
    transform: scale(0.9) translateY(-50%) translateX(-1px);
  }
}
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  --scroll-behavior: smooth;
  scroll-behavior: smooth;
}

/**
 * Standardize some basic elements
 */
body, form, figure {
  margin: 0;
  padding: 0;
}

header, footer, nav, section, aside, article, figure, figcaption {
  display: block;
}

/**
 * Fix some font issues
 */
body {
  font-size: 100.01% !important;
}

select, input, textarea {
  font-size: 99%;
}

/**
 * Fix some positioning issues
 */
#container, #main, .inside {
  position: relative;
}

#wrapper {
  background-color: #FFFFFF;
  width: auto;
}

#footer {
  clear: both;
}

#main .inside {
  min-height: 1px; /* see #4893 */
}

/**
 * Clear floats
 */
.clear, #clear {
  height: 0.1px;
  font-size: 0.1px;
  line-height: 0.1px;
  clear: both;
}

/**
 * Hide invisible elements
 */
.invisible {
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/**
 * Custom layout sections
 */
.custom {
  display: block;
}

#container:after, .custom:after {
  content: "";
  display: table;
  clear: both;
}

/**
 * Reset the body styling
 */
html.js.navOpen {
  pointer-events: none;
}
html.js.navOpen .custom,
html.js.navOpen #container,
html.js.navOpen #footer {
  filter: blur(10px) brightness(0.8) contrast(1.1);
}
html.js.navOpen .mainNav {
  overflow: auto;
}
html.js.navOpen .mainNav,
html.js.navOpen .logo-wrapper,
html.js.navOpen .nav-wrapper {
  pointer-events: all;
}

.custom,
#container,
#footer {
  transition: all 0.3s ease-in-out;
}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.03em;
  color: #707070;
  background-color: #FFFFFF;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

#header .inside,
#footer .inside {
  max-width: 1215px;
  margin: 0 auto;
}

/**
 * Reset the link styling
 */
a,
a:visited {
  color: #96C11F;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
a.no-underline,
a:visited.no-underline {
  text-decoration: none;
}
a.active, a:hover, a:focus,
a:visited.active,
a:visited:hover,
a:visited:focus {
  color: #0064B3;
}
.bg-dark a, .home-title a,
.bg-dark a:visited,
.home-title a:visited {
  color: #FFFFFF;
}
.bg-dark a.active, .bg-dark a:hover, .bg-dark a:focus, .home-title a.active, .home-title a:hover, .home-title a:focus,
.bg-dark a:visited.active,
.bg-dark a:visited:hover,
.bg-dark a:visited:focus,
.home-title a:visited.active,
.home-title a:visited:hover,
.home-title a:visited:focus {
  color: #E2E2E2;
}
label a,
label a:visited {
  color: #707070;
}
a.arrow,
a:visited.arrow {
  position: relative;
  display: inline-block;
  padding-top: 5px;
  padding-right: 30px;
  padding-bottom: 5px;
  color: #323232;
  text-decoration: none;
}
a.arrow::before,
a:visited.arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background-image: url("../../files/themes/abl-group/img/link-arrow-dark.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 25px auto;
  transition: transform 0.3s ease-in-out;
}
.text-align-right a.arrow,
.text-align-right a:visited.arrow {
  padding-right: 0;
  padding-left: 30px;
}
.text-align-right a.arrow::before,
.text-align-right a:visited.arrow::before {
  right: auto;
  left: 0;
  transform: translateY(-50%);
}
a.arrow.active, a.arrow:hover, a.arrow:focus,
a:visited.arrow.active,
a:visited.arrow:hover,
a:visited.arrow:focus {
  text-decoration: underline;
}
a.arrow.active::before, a.arrow:hover::before, a.arrow:focus::before,
a:visited.arrow.active::before,
a:visited.arrow:hover::before,
a:visited.arrow:focus::before {
  transform: translateY(-50%) translateX(5px);
}
.bg-dark a.arrow,
.bg-dark a:visited.arrow {
  color: #FFFFFF;
}
.bg-dark a.arrow::before,
.bg-dark a:visited.arrow::before {
  background-image: url("../../files/themes/abl-group/img/link-arrow-light.svg");
}

strong {
  font-style: normal;
  font-weight: 500;
}

.big-font {
  font-size: 1.555em;
}

.medium-font {
  font-size: 1.3em;
}

.highlighted {
  color: #0064B3;
}
.bg-dark .highlighted {
  color: #0064B3;
}

sup {
  font-size: 0.7em;
}

.no-padding-top {
  padding-top: 0 !important;
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}

.no-margin-top {
  margin-top: 0 !important;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

::-moz-selection,
::selection {
  background-color: #0064B3;
  color: #FFFFFF;
}

.grid-container {
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (min-width: 768px) {
  .text-align-right {
    text-align: right;
  }
}
@media (min-width: 1200px) {
  body {
    font-size: 18px;
  }
}
.grid-container {
  width: 100%;
  max-width: 1215px;
  margin-left: auto;
  margin-right: auto;
}
.grid-container.small {
  max-width: 900px;
}
.grid-container.formContainer {
  max-width: 770px;
}
@media (min-width: 1200px) {
  .grid-container.formContainer {
    max-width: 590px;
  }
}

.grid-container.fluid {
  padding-right: 15px;
  padding-left: 15px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.grid-container.full {
  padding-right: 0;
  padding-left: 0;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.grid-x {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.grid-x.align-top {
  align-items: flex-start;
}
.grid-x.align-middle {
  align-items: center;
}
.grid-x.align-bottom {
  align-items: flex-end;
}
.grid-x.align-center {
  justify-content: center;
}

.cell {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-height: 0px;
  min-width: 0px;
  width: 100%;
}
.cell.align-self-top {
  align-self: start;
}
.cell.align-self-middle {
  align-self: center;
}
.cell.align-self-bottom {
  align-self: end;
}

.cell.auto {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0px;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;
}

.cell.shrink {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.grid-x > .auto {
  width: auto;
}

.grid-x > .shrink {
  width: auto;
}

.grid-x > .small-shrink, .grid-x > .small-full, .grid-x > .small-1, .grid-x > .small-2, .grid-x > .small-3, .grid-x > .small-4, .grid-x > .small-5, .grid-x > .small-6, .grid-x > .small-7, .grid-x > .small-8, .grid-x > .small-9, .grid-x > .small-10, .grid-x > .small-11, .grid-x > .small-12 {
  -webkit-flex-basis: auto;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

@media (min-width: 768px) {
  .grid-x > .medium-shrink, .grid-x > .medium-full, .grid-x > .medium-1, .grid-x > .medium-2, .grid-x > .medium-3, .grid-x > .medium-4, .grid-x > .medium-5, .grid-x > .medium-6, .grid-x > .medium-7, .grid-x > .medium-8, .grid-x > .medium-9, .grid-x > .medium-10, .grid-x > .medium-11, .grid-x > .medium-12 {
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
@media (min-width: 1200px) {
  .grid-x > .large-shrink, .grid-x > .large-full, .grid-x > .large-1, .grid-x > .large-2, .grid-x > .large-3, .grid-x > .large-4, .grid-x > .large-5, .grid-x > .large-6, .grid-x > .large-7, .grid-x > .large-8, .grid-x > .large-9, .grid-x > .large-10, .grid-x > .large-11, .grid-x > .large-12 {
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
.grid-x > .small-1, .grid-x > .small-2, .grid-x > .small-3, .grid-x > .small-4, .grid-x > .small-5, .grid-x > .small-6, .grid-x > .small-7, .grid-x > .small-8, .grid-x > .small-9, .grid-x > .small-10, .grid-x > .small-11, .grid-x > .small-12 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.grid-x > .small-1 {
  width: 8.33333%;
}

.grid-x > .small-2 {
  width: 16.66667%;
}

.grid-x > .small-3 {
  width: 25%;
}

.grid-x > .small-4 {
  width: 33.33333%;
}

.grid-x > .small-5 {
  width: 41.66667%;
}

.grid-x > .small-6 {
  width: 50%;
}

.grid-x > .small-7 {
  width: 58.33333%;
}

.grid-x > .small-8 {
  width: 66.66667%;
}

.grid-x > .small-9 {
  width: 75%;
}

.grid-x > .small-10 {
  width: 83.33333%;
}

.grid-x > .small-11 {
  width: 91.66667%;
}

.grid-x > .small-12 {
  width: 100%;
}

@media (min-width: 768px) {
  .grid-x > .medium-auto {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0px;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .medium-shrink, .grid-x > .medium-1, .grid-x > .medium-2, .grid-x > .medium-3, .grid-x > .medium-4, .grid-x > .medium-5, .grid-x > .medium-6, .grid-x > .medium-7, .grid-x > .medium-8, .grid-x > .medium-9, .grid-x > .medium-10, .grid-x > .medium-11, .grid-x > .medium-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid-x > .medium-shrink {
    width: auto;
  }
  .grid-x > .medium-1 {
    width: 8.33333%;
  }
  .grid-x > .medium-2 {
    width: 16.66667%;
  }
  .grid-x > .medium-3 {
    width: 25%;
  }
  .grid-x > .medium-4 {
    width: 33.33333%;
  }
  .grid-x > .medium-5 {
    width: 41.66667%;
  }
  .grid-x > .medium-6 {
    width: 50%;
  }
  .grid-x > .medium-7 {
    width: 58.33333%;
  }
  .grid-x > .medium-8 {
    width: 66.66667%;
  }
  .grid-x > .medium-9 {
    width: 75%;
  }
  .grid-x > .medium-10 {
    width: 83.33333%;
  }
  .grid-x > .medium-11 {
    width: 91.66667%;
  }
  .grid-x > .medium-12 {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .grid-x > .large-auto {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0px;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .large-shrink, .grid-x > .large-1, .grid-x > .large-2, .grid-x > .large-3, .grid-x > .large-4, .grid-x > .large-5, .grid-x > .large-6, .grid-x > .large-7, .grid-x > .large-8, .grid-x > .large-9, .grid-x > .large-10, .grid-x > .large-11, .grid-x > .large-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid-x > .large-shrink {
    width: auto;
  }
  .grid-x > .large-1 {
    width: 8.33333%;
  }
  .grid-x > .large-2 {
    width: 16.66667%;
  }
  .grid-x > .large-3 {
    width: 25%;
  }
  .grid-x > .large-4 {
    width: 33.33333%;
  }
  .grid-x > .large-5 {
    width: 41.66667%;
  }
  .grid-x > .large-6 {
    width: 50%;
  }
  .grid-x > .large-7 {
    width: 58.33333%;
  }
  .grid-x > .large-8 {
    width: 66.66667%;
  }
  .grid-x > .large-9 {
    width: 75%;
  }
  .grid-x > .large-10 {
    width: 83.33333%;
  }
  .grid-x > .large-11 {
    width: 91.66667%;
  }
  .grid-x > .large-12 {
    width: 100%;
  }
}
.grid-margin-x:not(.grid-x) > .cell {
  width: auto;
}

.grid-margin-y:not(.grid-y) > .cell {
  height: auto;
}

.grid-margin-x {
  margin-right: -15px;
  margin-left: -15px;
}

.grid-margin-x > .cell {
  width: calc(100% - 1.875rem);
  margin-right: 15px;
  margin-left: 15px;
}

.grid-margin-x > .auto {
  width: auto;
}

.grid-margin-x > .shrink {
  width: auto;
}

.grid-margin-x > .small-1 {
  width: calc(8.33333% - 1.875rem);
}

.grid-margin-x > .small-2 {
  width: calc(16.66667% - 1.875rem);
}

.grid-margin-x > .small-3 {
  width: calc(25% - 1.875rem);
}

.grid-margin-x > .small-4 {
  width: calc(33.33333% - 1.875rem);
}

.grid-margin-x > .small-5 {
  width: calc(41.66667% - 1.875rem);
}

.grid-margin-x > .small-6 {
  width: calc(50% - 1.875rem);
}

.grid-margin-x > .small-7 {
  width: calc(58.33333% - 1.875rem);
}

.grid-margin-x > .small-8 {
  width: calc(66.66667% - 1.875rem);
}

.grid-margin-x > .small-9 {
  width: calc(75% - 1.875rem);
}

.grid-margin-x > .small-10 {
  width: calc(83.33333% - 1.875rem);
}

.grid-margin-x > .small-11 {
  width: calc(91.66667% - 1.875rem);
}

.grid-margin-x > .small-12 {
  width: calc(100% - 1.875rem);
}

@media (min-width: 768px) {
  .grid-margin-x > .medium-auto {
    width: auto;
  }
  .grid-margin-x > .medium-shrink {
    width: auto;
  }
  .grid-margin-x > .medium-1 {
    width: calc(8.33333% - 1.875rem);
  }
  .grid-margin-x > .medium-2 {
    width: calc(16.66667% - 1.875rem);
  }
  .grid-margin-x > .medium-3 {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x > .medium-4 {
    width: calc(33.33333% - 1.875rem);
  }
  .grid-margin-x > .medium-5 {
    width: calc(41.66667% - 1.875rem);
  }
  .grid-margin-x > .medium-6 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .medium-7 {
    width: calc(58.33333% - 1.875rem);
  }
  .grid-margin-x > .medium-8 {
    width: calc(66.66667% - 1.875rem);
  }
  .grid-margin-x > .medium-9 {
    width: calc(75% - 1.875rem);
  }
  .grid-margin-x > .medium-10 {
    width: calc(83.33333% - 1.875rem);
  }
  .grid-margin-x > .medium-11 {
    width: calc(91.66667% - 1.875rem);
  }
  .grid-margin-x > .medium-12 {
    width: calc(100% - 1.875rem);
  }
}
@media (min-width: 1200px) {
  .grid-margin-x > .large-auto {
    width: auto;
  }
  .grid-margin-x > .large-shrink {
    width: auto;
  }
  .grid-margin-x > .large-1 {
    width: calc(8.33333% - 1.875rem);
  }
  .grid-margin-x > .large-2 {
    width: calc(16.66667% - 1.875rem);
  }
  .grid-margin-x > .large-3 {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x > .large-4 {
    width: calc(33.33333% - 1.875rem);
  }
  .grid-margin-x > .large-5 {
    width: calc(41.66667% - 1.875rem);
  }
  .grid-margin-x > .large-6 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .large-7 {
    width: calc(58.33333% - 1.875rem);
  }
  .grid-margin-x > .large-8 {
    width: calc(66.66667% - 1.875rem);
  }
  .grid-margin-x > .large-9 {
    width: calc(75% - 1.875rem);
  }
  .grid-margin-x > .large-10 {
    width: calc(83.33333% - 1.875rem);
  }
  .grid-margin-x > .large-11 {
    width: calc(91.66667% - 1.875rem);
  }
  .grid-margin-x > .large-12 {
    width: calc(100% - 1.875rem);
  }
}
.grid-padding-x .grid-padding-x {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .grid-padding-x .grid-padding-x {
    margin-right: -8px;
    margin-left: -8px;
  }
}
@media (min-width: 1200px) {
  .grid-padding-x .grid-padding-x {
    margin-right: -10px;
    margin-left: -10px;
  }
}

/*.grid-container:not(.full) > .grid-padding-x {
  margin-right: -(math.div(map-get($grid-sizes, mobile-x-gap), 2));
  margin-left: -(math.div(map-get($grid-sizes, mobile-x-gap), 2));

  @include breakpoint(medium) {
    margin-right: -(math.div(map-get($grid-sizes, tablet-x-gap), 2));
    margin-left: -(math.div(map-get($grid-sizes, tablet-x-gap), 2));
  }

  @include breakpoint(large) {
    margin-right: -(math.div(map-get($grid-sizes, desktop-x-gap), 2));
    margin-left: -(math.div(map-get($grid-sizes, desktop-x-gap), 2));
  }
}*/
.grid-padding-x > .cell {
  padding-right: 15px;
  padding-left: 15px;
}

.grid-padding-y > .cell {
  padding-top: 17.5px;
  padding-bottom: 17.5px;
}
.twoImages .grid-padding-y:nth-child(1) > .cell {
  padding-bottom: 15px;
}
.twoImages .grid-padding-y:nth-child(2) > .cell {
  padding-top: 15px;
}

.small-up-1 > .cell {
  width: 100%;
}

.small-up-2 > .cell {
  width: 50%;
}

.small-up-3 > .cell {
  width: 33.33333%;
}

.small-up-4 > .cell {
  width: 25%;
}

.small-up-5 > .cell {
  width: 20%;
}

.small-up-6 > .cell {
  width: 16.66667%;
}

.small-up-7 > .cell {
  width: 14.28571%;
}

.small-up-8 > .cell {
  width: 12.5%;
}

@media (min-width: 768px) {
  .grid-padding-x > .cell {
    padding-right: 8px;
    padding-left: 8px;
  }
  .grid-padding-y > .cell {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .twoImages .grid-padding-y:nth-child(1) > .cell {
    padding-bottom: 8px;
  }
  .twoImages .grid-padding-y:nth-child(2) > .cell {
    padding-top: 8px;
  }
  .grid-padding-y-half > .cell {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .grid-padding-y-half > .cell:nth-child(1), .grid-padding-y-half > .cell:nth-child(2) {
    padding-top: 50px;
  }
  .grid-padding-y-half > .cell:nth-last-child(1), .grid-padding-y-half > .cell:nth-last-child(2) {
    padding-bottom: 50px;
  }
  .medium-up-1 > .cell {
    width: 100%;
  }
  .medium-up-2 > .cell {
    width: 50%;
  }
  .medium-up-3 > .cell {
    width: 33.33333%;
  }
  .medium-up-4 > .cell {
    width: 25%;
  }
  .medium-up-5 > .cell {
    width: 20%;
  }
  .medium-up-6 > .cell {
    width: 16.66667%;
  }
  .medium-up-7 > .cell {
    width: 14.28571%;
  }
  .medium-up-8 > .cell {
    width: 12.5%;
  }
}
@media (min-width: 1200px) {
  .grid-padding-x > .cell {
    padding-right: 10px;
    padding-left: 10px;
  }
  .grid-padding-y > .cell {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .twoImages .grid-padding-y:nth-child(1) > .cell {
    padding-bottom: 10px;
  }
  .twoImages .grid-padding-y:nth-child(2) > .cell {
    padding-top: 10px;
  }
  .grid-padding-y-half > .cell {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .grid-padding-y-half > .cell:nth-child(1), .grid-padding-y-half > .cell:nth-child(2) {
    padding-top: 50px;
  }
  .grid-padding-y-half > .cell:nth-last-child(1), .grid-padding-y-half > .cell:nth-last-child(2) {
    padding-bottom: 50px;
  }
  .large-up-1 > .cell {
    width: 100%;
  }
  .large-up-2 > .cell {
    width: 50%;
  }
  .large-up-3 > .cell {
    width: 33.33333%;
  }
  .large-up-4 > .cell {
    width: 25%;
  }
  .large-up-5 > .cell {
    width: 20%;
  }
  .large-up-6 > .cell {
    width: 16.66667%;
  }
  .large-up-7 > .cell {
    width: 14.28571%;
  }
  .large-up-8 > .cell {
    width: 12.5%;
  }
}
.grid-margin-x.small-up-1 > .cell {
  width: calc(100% - 1.875rem);
}

.grid-margin-x.small-up-2 > .cell {
  width: calc(50% - 1.875rem);
}

.grid-margin-x.small-up-3 > .cell {
  width: calc(33.33333% - 1.875rem);
}

.grid-margin-x.small-up-4 > .cell {
  width: calc(25% - 1.875rem);
}

.grid-margin-x.small-up-5 > .cell {
  width: calc(20% - 1.875rem);
}

.grid-margin-x.small-up-6 > .cell {
  width: calc(16.66667% - 1.875rem);
}

.grid-margin-x.small-up-7 > .cell {
  width: calc(14.28571% - 1.875rem);
}

.grid-margin-x.small-up-8 > .cell {
  width: calc(12.5% - 1.875rem);
}

@media (min-width: 768px) {
  .grid-margin-x.medium-up-1 > .cell {
    width: calc(100% - 1.875rem);
  }
  .grid-margin-x.medium-up-2 > .cell {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x.medium-up-3 > .cell {
    width: calc(33.33333% - 1.875rem);
  }
  .grid-margin-x.medium-up-4 > .cell {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x.medium-up-5 > .cell {
    width: calc(20% - 1.875rem);
  }
  .grid-margin-x.medium-up-6 > .cell {
    width: calc(16.66667% - 1.875rem);
  }
  .grid-margin-x.medium-up-7 > .cell {
    width: calc(14.28571% - 1.875rem);
  }
  .grid-margin-x.medium-up-8 > .cell {
    width: calc(12.5% - 1.875rem);
  }
}
@media (min-width: 1200px) {
  .grid-margin-x.large-up-1 > .cell {
    width: calc(100% - 1.875rem);
  }
  .grid-margin-x.large-up-2 > .cell {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x.large-up-3 > .cell {
    width: calc(33.33333% - 1.875rem);
  }
  .grid-margin-x.large-up-4 > .cell {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x.large-up-5 > .cell {
    width: calc(20% - 1.875rem);
  }
  .grid-margin-x.large-up-6 > .cell {
    width: calc(16.66667% - 1.875rem);
  }
  .grid-margin-x.large-up-7 > .cell {
    width: calc(14.28571% - 1.875rem);
  }
  .grid-margin-x.large-up-8 > .cell {
    width: calc(12.5% - 1.875rem);
  }
}
.small-padding-top {
  padding-top: 52.5px !important;
  padding-bottom: 52.5px !important;
}

@media (min-width: 768px) {
  .medium-padding-top {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
}
@media (min-width: 1200px) {
  .large-padding-top {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
}
.small-order-1 {
  order: 1;
}

.small-order-2 {
  order: 2;
}

.small-order-3 {
  order: 3;
}

.small-order-4 {
  order: 4;
}

@media (min-width: 768px) {
  .medium-order-1 {
    order: 1;
  }
  .medium-order-2 {
    order: 2;
  }
  .medium-order-3 {
    order: 3;
  }
  .medium-order-4 {
    order: 4;
  }
}
@media (min-width: 1200px) {
  .large-order-1 {
    order: 1;
  }
  .large-order-2 {
    order: 2;
  }
  .large-order-3 {
    order: 3;
  }
  .large-order-4 {
    order: 4;
  }
}
.bg-dark {
  color: #FFFFFF;
}

.bg-blue {
  background-color: #0064B3;
}

.bg-light-gray {
  background-color: #E2E2E2;
}

.bg-mid-gray {
  background-color: #7E878F;
}

.bg-dark-gray {
  background-color: #323232;
}

.bg-white {
  background-color: #FFFFFF;
}

html {
  --grid__gutter: 0;
}

#header {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  left: 0;
  background-color: #7E878F;
  border-bottom: 2px solid #FFFFFF;
  transition: background-color 0.3s ease-in-out;
}
.js.navOpen #header {
  background-color: transparent;
}
#header .inside {
  padding-top: 17.5px;
  padding-right: 30px;
  padding-bottom: 17.5px;
  padding-left: 30px;
  display: flex;
  justify-content: center;
}
.index #header {
  background-color: rgba(126, 135, 143, 0.85);
}
.index #header .inside {
  padding-top: 35px;
  padding-bottom: 35px;
}
.js.scrolled .index #header {
  background-color: #7E878F;
}
.js.scrolled #header .inside {
  align-items: center;
  padding-top: 17.5px;
  padding-bottom: 17.5px;
}

@media (min-width: 768px) {
  #header {
    border-bottom: none;
  }
  #header .inside {
    padding-top: 25px;
    padding-right: 16px;
    padding-bottom: 25px;
    padding-left: 16px;
  }
  .js.scrolled #header .inside {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .index #header .inside {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
@media (min-width: 1200px) {
  #header .inside {
    padding-top: 25px;
    padding-right: 20px;
    padding-bottom: 25px;
    padding-left: 20px;
  }
  .js.scrolled #header .inside {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .index #header .inside {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
#footer {
  background-color: #7E878F;
  color: #FFFFFF;
}
#footer .inside {
  padding-top: 40px;
  padding-right: 30px;
  padding-bottom: 80px;
  padding-left: 30px;
}

@media (min-width: 768px) {
  #footer .inside {
    padding-top: 30px;
    padding-right: 16px;
    padding-bottom: 50px;
    padding-left: 16px;
  }
}
@media (min-width: 1200px) {
  #footer .inside {
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 20px;
  }
}
#main .mod_article .inside {
  padding-right: 15px;
  padding-left: 15px;
}

#title .mod_article .inside {
  display: flex;
}
#title .ce_title .titleContent {
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  #main .mod_article .inside {
    padding-right: 8px;
    padding-left: 8px;
  }
  #title .ce_title .titleContent {
    padding-right: 8px;
    padding-left: 8px;
  }
}
@media (min-width: 1200px) {
  #main .mod_article .inside {
    padding-right: 10px;
    padding-left: 10px;
  }
  #title .ce_title .titleContent {
    padding-right: 10px;
    padding-left: 10px;
  }
}
nav ul,
nav ol,
nav li {
  list-style: none;
}
nav a,
nav strong {
  display: block;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.mainNav {
  height: 0;
  overflow: hidden;
  z-index: -1;
}
.mainNav a,
.mainNav strong {
  font-style: normal;
  color: #FFFFFF;
}
.mainNav a.active, .mainNav a:hover, .mainNav a:focus,
.mainNav strong.active,
.mainNav strong:hover,
.mainNav strong:focus {
  color: #FFFFFF;
}
.mainNav .main a {
  font-weight: 300;
}
.mainNav .main a:hover, .mainNav .main a.active {
  font-weight: 400;
}
.js .mainNav {
  position: fixed;
  z-index: 99;
  top: 0;
  right: 0;
  left: 0;
  height: auto;
  min-height: 100vh;
  padding-top: 166px;
  padding-bottom: 35px;
  display: flex;
  flex-flow: column;
  justify-content: space-around;
  background-color: rgba(126, 135, 143, 0.5);
  opacity: 0;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.js .mainNav.open {
  opacity: 1;
  transform: translateY(0);
}
.js .mainNav .mod_navigation.main,
.js .mainNav .mod_navigation.additional {
  width: 100%;
  max-width: 1215px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 30px;
  padding-left: 30px;
}
.js .mainNav .mod_navigation {
  text-transform: uppercase;
}
.js .mainNav .mod_navigation.main {
  overflow: auto;
}
.js .mainNav .mod_navigation.main li {
  display: block;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 2.1875em;
  line-height: 1.1;
  font-weight: 300;
  padding-left: 0;
  transition: padding 0.3s ease-in-out;
}
.js .mainNav .mod_navigation.main li .arrow {
  position: absolute;
  top: 9px;
  left: 0;
  padding-right: 30px;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.js .mainNav .mod_navigation.main li .arrow svg {
  width: 45px;
  height: auto;
}
.js .mainNav .mod_navigation.main li.last {
  margin-bottom: 0;
}
.js .mainNav .mod_navigation.main li:hover {
  padding-left: 75px;
  font-weight: 400;
}
.js .mainNav .mod_navigation.main li:hover .arrow {
  opacity: 1;
  transform: translateX(4px);
}
.js .mainNav .mod_navigation.additional li {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 1.25em;
}
.js.mobile .mainNav .mod_navigation.main li:hover {
  padding-left: 0;
}
.js.mobile .mainNav .mod_navigation.main li:hover .arrow {
  opacity: 0;
  transform: translateX(-100%);
}

@media (min-width: 768px) {
  .js .mainNav {
    min-height: auto;
    max-height: 100vh;
    padding-top: 193px;
    padding-bottom: 50px;
  }
  .js .mainNav .mod_navigation.main,
  .js .mainNav .mod_navigation.additional {
    padding-right: 8px;
    padding-left: 8px;
  }
  .js .mainNav .mod_navigation.main li {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 2.5em;
  }
  .js .mainNav .mod_navigation.main li .arrow {
    top: 18px;
    padding-right: 16px;
  }
  .js .mainNav .mod_navigation.main li .arrow svg {
    width: 55px;
  }
  .js .mainNav .mod_navigation.main li:hover {
    padding-left: 71px;
  }
  .js .mainNav .mod_navigation.additional {
    display: flex;
    flex-flow: row;
    justify-content: flex-end;
    align-items: center;
    transform: translateY(-2.5em);
    pointer-events: none;
  }
  .js .mainNav .mod_navigation.additional > * {
    pointer-events: all;
  }
  .js .mainNav .mod_navigation.additional ul {
    display: flex;
    flex-flow: row;
  }
  .js .mainNav .mod_navigation.additional li {
    display: block;
    font-size: 1.111em;
    margin-bottom: 0;
    margin-left: 50px;
  }
}
@media (min-width: 1200px) {
  .js .mainNav {
    padding-top: 235px;
    padding-bottom: 50px;
  }
  .js .mainNav .mod_navigation.main,
  .js .mainNav .mod_navigation.additional {
    padding-right: 10px;
    padding-left: 10px;
  }
  .js .mainNav .mod_navigation.main li {
    padding-top: 25px;
    padding-bottom: 25px;
    font-size: 2.5em;
  }
  .js .mainNav .mod_navigation.main li .arrow {
    top: 23px;
    padding-right: 20px;
  }
  .js .mainNav .mod_navigation.main li .arrow svg {
    width: 55px;
    height: 55px;
  }
  .js .mainNav .mod_navigation.main li:hover {
    padding-left: 75px;
  }
  .js .mainNav .mod_navigation.additional li {
    margin-left: 70px;
  }
  .js.mobile .mainNav .mod_navigation.main li:hover {
    padding-left: 0;
  }
}
.mod_navigation.footer {
  text-align: right;
  text-transform: uppercase;
}
.mod_navigation.footer li {
  display: block;
  margin-bottom: 5px;
  line-height: 1;
}
.mod_navigation.footer a {
  color: #FFFFFF;
}
.mod_navigation.footer a.active, .mod_navigation.footer a:hover, .mod_navigation.footer a:focus {
  color: #E2E2E2;
}

@media (min-width: 768px) {
  .mod_navigation.footer li {
    display: inline-block;
    margin-bottom: 0;
    margin-left: 30px;
  }
}
@media (min-width: 1200px) {
  .mod_navigation.footer li {
    margin-left: 50px;
  }
}
img,
svg {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: top;
}

.comb_gallery {
  position: relative;
  width: 100%;
  height: 350px;
  transform: translateX(25%);
}
.ce_text_image .comb_gallery {
  height: 0;
  padding-bottom: 85%;
  transform: translateX(0);
}
.comb_gallery .image_container {
  background-color: #E2E2E2;
  display: inline-block;
  position: absolute;
  z-index: 2;
  left: 45%;
  bottom: 35px;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  padding: 2px;
}
.comb_gallery .image_container img {
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}
.comb_gallery .image_container:nth-child(2) {
  transform: translate(-79%, -52.7%);
}
.comb_gallery .image_container:nth-child(3) {
  padding: 4px;
  transform: scale(0.48) translate(-136.5%, 54%);
}
.comb_gallery .image_container:nth-child(4) {
  padding: 6px;
  transform: scale(0.34) translate(-50%, -209%);
}
.ce_text_image .comb_gallery .image_container:nth-child(4) {
  padding: 4px;
  transform: scale(0.48) translate(-29%, -162%);
}

@media (min-width: 480px) {
  .ce_text_image .comb_gallery {
    padding-bottom: 75%;
  }
}
@media (min-width: 600px) {
  .ce_text_image .comb_gallery {
    padding-bottom: 65%;
  }
}
@media (min-width: 768px) {
  .comb_gallery {
    transform: translateX(25%);
  }
  .ce_text_image .comb_gallery {
    padding-bottom: 90%;
  }
  .comb_gallery.floatingMedia {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 65% !important;
    height: auto;
  }
  .comb_gallery .image_container {
    left: 45%;
    bottom: 20%;
    padding: 3px;
  }
  .comb_gallery .image_container:nth-child(3) {
    padding: 6px;
  }
  .comb_gallery .image_container:nth-child(4) {
    padding: 9px;
  }
  .ce_text_image .comb_gallery .image_container:nth-child(4) {
    padding: 6px;
  }
}
@media (min-width: 1200px) {
  .ce_text_image .comb_gallery {
    padding-bottom: 85%;
  }
  .comb_gallery .image_container {
    left: 45%;
    bottom: 10%;
    padding: 4px;
  }
  .comb_gallery .image_container:nth-child(3) {
    padding: 8px;
  }
  .comb_gallery .image_container:nth-child(4) {
    padding: 12px;
  }
  .ce_text_image .comb_gallery .image_container:nth-child(4) {
    padding: 8px;
  }
}
@media (min-width: 1500px) {
  .comb_gallery .image_container {
    left: 45%;
    bottom: 5%;
  }
  .ce_text_image .comb_gallery .image_container {
    bottom: 10%;
  }
}
.logo {
  vertical-align: top;
  color: #FFFFFF;
  transition: all 0.3s ease-in-out;
}
#header .logo {
  width: 158px;
  height: 40px;
}
.js.scrolled #header .logo {
  width: 158px;
  height: auto;
}
.index #header .logo {
  width: 235px;
  height: 59px;
}
#footer .logo {
  width: 60px;
  height: 60px;
}

@media (min-width: 768px) {
  #header .logo {
    width: 220px;
    height: 55px;
  }
  .js.scrolled #header .logo {
    width: 220px;
    height: 55px;
  }
  .index #header .logo {
    width: 290px;
    height: 73px;
  }
}
@media (min-width: 1200px) {
  #header .logo {
    width: 297px;
    height: 75px;
  }
  .js.scrolled #header .logo {
    width: 297px;
    height: 75px;
  }
  .index #header .logo {
    width: 458px;
    height: 115px;
  }
  #footer .logo {
    width: 75px;
    height: 75px;
  }
}
.nav-wrapper {
  display: block;
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}

.navToggle {
  position: relative;
  display: none;
  appearance: none;
  background-color: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
  padding: 40px 30px 0 0;
  color: #FFFFFF;
  transition: color 0.3s ease-in-out;
}
.navToggle .title {
  display: block;
  position: absolute;
  bottom: -30px;
  font-size: 0.7em;
  text-transform: uppercase;
  left: 50%;
  transform: translateX(-50%);
}
.js .navToggle {
  display: block;
}
.index .navToggle, .bg-dark .navToggle, .js.scrolled .navToggle {
  color: #FFFFFF;
}
.navToggle span,
.navToggle span:before,
.navToggle span:after {
  height: 3px;
  width: 30px;
  background: currentColor;
  position: absolute;
  top: 8px;
  display: block;
  content: "";
  transition: all 0.3s ease-in-out;
}
.navToggle span:before {
  top: -8px;
}
.navToggle span:after {
  bottom: -8px;
}
.navToggle.open, .navOpen .navToggle {
  color: #FFFFFF;
}
.navToggle.open span {
  background-color: transparent;
}
.navToggle.open span:before {
  top: 2px;
  transform: rotate(45deg);
  background-color: #FFFFFF;
}
.navToggle.open span:after {
  bottom: auto;
  top: 2px;
  transform: rotate(-45deg);
  background-color: #FFFFFF;
}

@media (min-width: 768px) {
  .nav-wrapper {
    left: 16px;
  }
}
@media (min-width: 1200px) {
  .nav-wrapper {
    left: 20px;
  }
  .navToggle {
    padding: 45px 35px 0 0;
    margin-right: 20px;
  }
  .navToggle .title {
    bottom: -35px;
  }
  .navToggle span,
  .navToggle span:before,
  .navToggle span:after {
    width: 35px;
    top: 9px;
  }
  .navToggle span:before {
    top: -9px;
  }
  .navToggle span:after {
    bottom: -9px;
  }
}
.content-headline {
  margin: 50px 0;
}

.content-text {
  padding-bottom: 50px;
  padding-top: 50px;
}

.mod_article {
  overflow: hidden;
}
#title .mod_article {
  background-color: rgba(126, 135, 143, 0.5);
}
#title .mod_article .inside {
  min-height: 100vh;
}
#main .mod_article .inside {
  position: relative;
  padding-top: -10px;
  padding-right: 15px;
  padding-bottom: -10px;
  padding-left: 15px;
}
#main .mod_article:nth-child(1) .inside {
  padding-top: -10px;
}
#main .mod_article:nth-last-child(1) .inside {
  padding-bottom: -10px;
}

@media (min-width: 768px) {
  #main .mod_article .inside {
    padding-top: 50px;
    padding-right: 8px;
    padding-bottom: 50px;
    padding-left: 8px;
  }
  #main .mod_article:nth-child(1) .inside {
    padding-top: 80px;
  }
  #main .mod_article:nth-last-child(1) .inside {
    padding-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  #main .mod_article .inside {
    padding-top: 50px;
    padding-right: 10px;
    padding-bottom: 50px;
    padding-left: 10px;
  }
  #main .mod_article:nth-child(1) .inside {
    padding-top: 100px;
  }
  #main .mod_article:nth-last-child(1) .inside {
    padding-bottom: 100px;
  }
}
.ce_form {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .ce_form {
    margin-top: 50px;
  }
}

.btn,
.btn:visited,
button.submit {
  display: inline-block;
  position: relative;
  z-index: 5;
  cursor: pointer;
  margin-top: 35px;
  text-decoration: none;
  color: #707070;
}
.btn::before,
.btn:visited::before,
button.submit::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translate(5px, 5px);
  background-color: #0064B3;
  background: linear-gradient(180deg, #0064B3 0%, #96C11F 100%);
  transition: transform 0.3s ease-in-out;
}
.btn .title,
.btn:visited .title,
button.submit .title {
  display: block;
  background-color: #E2E2E2;
  padding: 20px 35px;
  font-size: 1.25em;
  line-height: 1;
  text-transform: uppercase;
}
.btn:hover,
.btn:visited:hover,
button.submit:hover {
  color: #707070;
}
.btn:hover::before,
.btn:visited:hover::before,
button.submit:hover::before {
  transform: translate(3px, 3px);
}
.btn:active::before,
.btn:visited:active::before,
button.submit:active::before {
  transform: translate(0, 0);
}
.bg-light-gray .btn,
.bg-light-gray .btn:visited,
.bg-light-gray button.submit {
  color: #707070;
}
.bg-light-gray .btn .title,
.bg-light-gray .btn:visited .title,
.bg-light-gray button.submit .title {
  background-color: #FFFFFF;
  color: #707070;
}

fieldset {
  border: none;
  outline: none;
}

.widget {
  position: relative;
  padding: 3px;
}
.widget-explanation {
  margin-bottom: 35px;
}
.widget-submit {
  text-align: center;
}
.widget p.error {
  display: block;
  width: 100%;
  position: absolute;
  top: -1.2em;
  left: 0;
  font-size: 0.7em;
  color: #E54B4B;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

label {
  display: none;
}
.radio_container label, .checkbox_container label {
  position: relative;
  display: inline-block;
  font-size: 0.8em;
  padding-left: 32px;
  padding-right: 30px;
}
.radio_container label::before, .radio_container label::after, .checkbox_container label::before, .checkbox_container label::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  display: inline-block;
  width: 25px;
  height: 25px;
  background-color: #E2E2E2;
}
.bg-light-gray .radio_container label::before, .bg-light-gray .radio_container label::after, .bg-light-gray .checkbox_container label::before, .bg-light-gray .checkbox_container label::after {
  background-color: #FFFFFF;
}
.radio_container label::after, .checkbox_container label::after {
  z-index: 4;
  top: 2px;
  left: 2px;
  width: 21px;
  height: 21px;
  border-color: transparent;
  background-color: #96C11F;
  transform: scale(0);
  transition: transform 0.3s ease-in-out;
}
.bg-light-gray .radio_container label::after, .bg-light-gray .checkbox_container label::after {
  background-color: #96C11F;
}
.radio_container :checked + label::after, .checkbox_container :checked + label::after {
  transform: scale(1);
}

button,
input,
select,
textarea {
  appearance: none;
  border: none;
  border-radius: 0;
  outline: none;
  background-color: transparent;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 1em;
  line-height: 1;
}

input.text,
select {
  display: block;
  width: 100%;
  height: 52px;
  padding: 5px 15px;
  background-color: #E2E2E2;
}
.bg-light-gray input.text,
.bg-light-gray select {
  background-color: #FFFFFF;
}

.checkbox_container > span,
.radio_container > span {
  position: relative;
  display: inline-block;
}
.checkbox_container > span > input,
.radio_container > span > input {
  position: absolute;
  width: 0;
  height: 0;
}

select {
  padding-right: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.widget-application select {
  height: auto;
  padding-left: 0;
  padding-right: 20px;
  font-size: 1.2em;
  line-height: 1;
  font-style: normal;
  color: #0064B3;
}

textarea {
  width: 100%;
  min-height: 193px;
  resize: vertical;
  padding: 15px;
  background-color: #E2E2E2;
}
.bg-light-gray textarea {
  background-color: #FFFFFF;
}

input::-webkit-input-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder,
input:-moz-placeholder,
input::placeholder,
input:placeholder-shown {
  color: #707070;
}

@media (min-width: 768px) {
  .btn,
  .btn:visited,
  button.submit {
    margin-top: 50px;
  }
  .btn .title,
  .btn:visited .title,
  button.submit .title {
    padding: 30px 50px;
    font-size: 1.4em;
  }
  .widget-explanation {
    margin-bottom: 50px;
  }
  .radio_container label, .checkbox_container label {
    padding-left: 20px;
    padding-right: 40px;
  }
  .radio_container label::before, .checkbox_container label::before {
    top: 1px;
    width: 13px;
    height: 13px;
  }
  .radio_container label::after, .checkbox_container label::after {
    top: 4px;
    left: 3px;
    width: 7px;
    height: 7px;
  }
  textarea {
    min-height: 154px;
    padding: 10px 15px;
  }
  input.text,
  select {
    height: 36px;
  }
  select {
    padding-right: 25px;
  }
}
@media (min-width: 1200px) {
  .btn,
  .btn:visited,
  button.submit {
    margin-top: 50px;
  }
  .btn .title,
  .btn:visited .title,
  button.submit .title {
    padding: 30px 55px;
    font-size: 1.333em;
  }
  .widget-explanation {
    margin-bottom: 50px;
  }
  .radio_container label, .checkbox_container label {
    font-size: 0.7em;
    padding-left: 20px;
    padding-right: 40px;
  }
  .radio_container label::before, .checkbox_container label::before {
    width: 13px;
    height: 13px;
  }
  .radio_container label::after, .checkbox_container label::after {
    left: 3px;
    width: 7px;
    height: 7px;
  }
  input.text,
  select {
    height: 36px;
  }
  select {
    padding-right: 20px;
  }
}
.ce_margin.small {
  height: 15px;
}
.ce_margin.medium {
  height: 30px;
}
.ce_margin.large {
  height: 60px;
}

@media (min-width: 768px) {
  .ce_margin.small {
    height: 25px;
  }
  .ce_margin.medium {
    height: 50px;
  }
  .ce_margin.large {
    height: 100px;
  }
}
@media (min-width: 1200px) {
  .ce_margin.small {
    height: 35px;
  }
  .ce_margin.medium {
    height: 70px;
  }
  .ce_margin.large {
    height: 150px;
  }
}
.ce_title {
  width: 100%;
  display: flex;
  flex-flow: column;
  align-self: stretch;
  justify-content: space-between;
  min-height: 100%;
  padding-top: 77px;
}
@media (max-width: 767px) {
  .ce_title.mobile {
    display: block;
  }
}
@media (min-width: 768px) {
  .ce_title.mobile {
    display: none;
  }
}
@media (max-width: 767px) {
  .ce_title.desktop {
    display: none;
  }
}
@media (min-width: 768px) {
  .ce_title.desktop {
    display: block;
  }
}
.ce_title .nextArticle {
  display: none;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  height: 35px;
  text-align: center;
  margin-bottom: 35px;
}
.ce_title .nextArticle a {
  color: #FFFFFF;
}
.ce_title .nextArticle a:hover {
  color: #E2E2E2;
}
.ce_title .nextArticle span.title {
  display: inline-block;
  text-indent: -9999px;
}
.ce_title .nextArticle svg {
  width: auto;
  max-height: 100%;
  transition: color 0.3s ease-in-out;
}
.ce_title > .floatingMedia {
  width: 100%;
  order: 2;
}
.ce_title > .fullScreenMedia {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.ce_title > .fullScreenMedia::before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #707070;
  opacity: 0.6;
  z-index: 2;
}
.ce_title > .fullScreenMedia > .image_container,
.ce_title > .fullScreenMedia > .video_container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ce_title > .fullScreenMedia img,
.ce_title > .fullScreenMedia video {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: none;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
}
.ce_title .titleContent {
  order: 1;
}
.ce_title.isHomePage {
  padding-top: 0;
}
.ce_title.isHomePage .titleContent {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  padding-top: 77px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.ce_title.isHomePage .nextArticle {
  display: block;
}
.ce_title.isHomePage .nextArticle a {
  color: #707070;
}
.ce_title.isHomePage .titleContent {
  padding-top: 131px;
}

@media (min-width: 768px) {
  .ce_title .nextArticle {
    display: block;
    margin-bottom: 50px;
    height: 40px;
  }
  .ce_title .titleContent {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    padding-top: 77px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .ce_title > .floatingMedia {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    width: 50%;
  }
  .ce_title .titleContent {
    justify-content: center;
    align-items: center;
    padding-top: 105px;
  }
  .ce_title.isHomePage .titleContent {
    text-align: left;
    padding-top: 143px;
  }
}
@media (min-width: 1200px) {
  .ce_title .nextArticle {
    margin-bottom: 50px;
  }
  .ce_title .titleContent {
    padding-top: 125px;
  }
  .ce_title.isHomePage .titleContent {
    padding-top: 185px;
  }
}
.ce_text ul, .ce_list ul,
.ce_text ol,
.ce_list ol {
  list-style: none;
}
.ce_text ul + *, .ce_list ul + *,
.ce_text ol + *,
.ce_list ol + * {
  margin-top: 1em;
}
.ce_text ul li, .ce_list ul li,
.ce_text ol li,
.ce_list ol li {
  position: relative;
  margin: 3px 0;
}
.ce_text ul li::before, .ce_list ul li::before,
.ce_text ol li::before,
.ce_list ol li::before {
  position: absolute;
  top: 0;
  left: 0;
}

.ce_text ul, .ce_list ul {
  list-style: none;
}
.ce_text ul li, .ce_list ul li {
  padding-left: 15px;
  margin: 5px 0;
}
.ce_text ul li::before, .ce_list ul li::before {
  content: "-";
}

.ce_text ol, .ce_list ol {
  counter-reset: orderedList;
}
.ce_text ol li, .ce_list ol li {
  padding-left: 20px;
}
.ce_text ol li::before, .ce_list ol li::before {
  counter-increment: orderedList;
  content: counters(orderedList, ".") ".";
}

@media (min-width: 768px) {
  .ce_text ul li, .ce_list ul li,
  .ce_text ol li,
  .ce_list ol li {
    padding-left: 15px;
  }
}
@media (min-width: 1200px) {
  .ce_text ul + *, .ce_list ul + *,
  .ce_text ol + *,
  .ce_list ol + * {
    margin-top: 2em;
  }
  .ce_text ul li, .ce_list ul li,
  .ce_text ol li,
  .ce_list ol li {
    padding-left: 20px;
  }
  .ce_text ol li, .ce_list ol li {
    padding-left: 25px;
  }
}
.contao-cookiebar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
  padding: 15px;
  max-height: 100vh;
  box-sizing: border-box;
  pointer-events: none;
  overflow: hidden;
}
.contao-cookiebar * {
  box-sizing: border-box;
}
.contao-cookiebar:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.contao-cookiebar .cc-inner {
  display: inline-block;
  overflow-y: auto;
  max-height: 100%;
  max-width: 100%;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  font-size: 1rem;
  text-align: left;
}
.contao-cookiebar.cc-top .cc-inner {
  vertical-align: top;
}
.contao-cookiebar.cc-top.cc-active .cc-inner {
  animation: cookiebar-top-in 0.5s ease-in-out forwards;
}
.contao-cookiebar.cc-top.cc-saved .cc-inner {
  animation: cookiebar-top-out 0.5s ease-in-out forwards;
}
.contao-cookiebar.cc-bottom .cc-inner {
  vertical-align: bottom;
}
.contao-cookiebar.cc-bottom.cc-active .cc-inner {
  animation: cookiebar-bottom-in 0.5s ease-in-out forwards;
}
.contao-cookiebar.cc-bottom.cc-saved .cc-inner {
  animation: cookiebar-bottom-out 0.5s ease-in-out forwards;
}
.contao-cookiebar.cc-middle .cc-inner {
  vertical-align: middle;
}
.contao-cookiebar.cc-middle.cc-active .cc-inner {
  animation: cookiebar-middle-in 0.5s ease-in-out forwards;
}
.contao-cookiebar.cc-middle.cc-saved .cc-inner {
  animation: cookiebar-middle-out 0.5s ease-in-out forwards;
}
.contao-cookiebar.cc-left {
  text-align: left;
}
.contao-cookiebar.cc-right {
  text-align: right;
}
.contao-cookiebar .cc-head h1:first-child, .contao-cookiebar .cc-head h2:first-child, .contao-cookiebar .cc-head h3:first-child, .contao-cookiebar .cc-head h4:first-child, .contao-cookiebar .cc-head h5:first-child, .contao-cookiebar .cc-head h6:first-child {
  margin-top: 0;
}
.contao-cookiebar .cc-head p {
  margin-bottom: 15px;
}
.contao-cookiebar .cc-btn {
  display: inline-block;
  cursor: pointer;
  width: 100%;
  padding: 8px 14px;
  margin-bottom: 8px;
  font-size: 15px;
  outline: 0 none;
  color: #323232;
  background: #E2E2E2;
}
.contao-cookiebar .cc-btn:hover {
  color: #FFFFFF;
  background: #E2E2E2;
}
.contao-cookiebar .cc-btn.success {
  background: #0064B3;
  color: #FFFFFF;
}
.contao-cookiebar .cc-btn.success:hover {
  background: #0064B3;
}
.contao-cookiebar .cc-btn:last-child {
  margin-bottom: 0;
}
.contao-cookiebar label {
  position: relative;
  display: block;
  padding: 8px 13px 8px 0;
  line-height: 1.2rem;
  color: #707070;
}
.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 50px;
  cursor: pointer;
}
.contao-cookiebar input + label:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 35px;
  height: 18px;
  margin: 0;
  box-sizing: content-box;
  background: #fff;
  border: 2px solid #E2E2E2;
  transition: border-color 0.2s;
}
.contao-cookiebar input + label:after {
  display: block;
  content: "";
  position: absolute;
  top: 10px;
  left: 4px;
  width: 14px;
  height: 14px;
  background: #E2E2E2;
  transition: background 0.2s, margin-left 0.2s, padding 0.2s;
}
.contao-cookiebar input + label:active:after {
  padding-left: 5px;
}
.contao-cookiebar input.cc-group-half + label:after {
  background: linear-gradient(to right, #E2E2E2 0%, #E2E2E2 50%, #0064B3 50%, #0064B3 100%);
}
.contao-cookiebar input:checked + label:after {
  background: #0064B3;
  margin-left: 17px;
}
.contao-cookiebar input:checked + label:active:after {
  margin-left: 12px;
}
.contao-cookiebar input:checked + label:before {
  background: rgb(179, 221.4581005587, 255);
  border-color: #0064B3;
}
.contao-cookiebar input:disabled + label {
  pointer-events: none;
}
.contao-cookiebar input:disabled + label:after {
  background: #E2E2E2;
}
.contao-cookiebar input:disabled + label:before {
  background: white;
  border-color: #E2E2E2;
}
.contao-cookiebar.cc-active .cc-inner {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.contao-cookiebar.cc-active.cc-blocked {
  pointer-events: auto;
  animation: cookiebar-overlay-in 0.5s ease-in-out forwards;
}
.contao-cookiebar.cc-saved.cc-inner {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.contao-cookiebar.cc-saved.cc-blocked {
  pointer-events: none;
  animation: cookiebar-overlay-out 0.5s ease-in-out forwards;
}

@media (min-width: 768px) {
  .contao-cookiebar .cc-btn {
    width: auto;
    margin-bottom: 0;
  }
  .contao-cookiebar .cc-inner {
    max-width: 750px;
  }
}
@keyframes cookiebar-overlay-in {
  0% {
    background: rgba(0, 100, 179, 0);
  }
  100% {
    background: rgba(126, 135, 143, 0.6);
  }
}
@keyframes cookiebar-overlay-out {
  0% {
    background: rgba(126, 135, 143, 0.6);
  }
  100% {
    background: rgba(0, 100, 179, 0);
    visibility: hidden;
  }
}
@keyframes cookiebar-top-in {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes cookiebar-top-out {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
  }
}
@keyframes cookiebar-middle-in {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes cookiebar-middle-out {
  0% {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
  }
}
@keyframes cookiebar-bottom-in {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes cookiebar-bottom-out {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
  }
}
.cookiebar_default {
  color: #707070;
}
.cookiebar_default p {
  color: #707070;
  line-height: 1.4;
}
.cookiebar_default .cc-inner {
  padding: 25px;
  -webkit-box-shadow: 0 15px 50px 0 rgba(0, 100, 179, 0.8);
  box-shadow: 0 15px 50px 0 rgba(0, 100, 179, 0.8);
  background: #fff;
}
.cookiebar_default .cc-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: center;
  position: relative;
  border: 1px solid #E2E2E2;
  margin-bottom: 10px;
}
.cookiebar_default .cc-group > label {
  flex-grow: 1;
  margin: 5px 0 5px 10px;
}
.cookiebar_default .cc-group .cc-detail-btn {
  border: 0 none;
  outline: 0 none;
  background: transparent;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: initial;
  cursor: pointer;
  color: #707070;
  padding: 8px 10px;
  line-height: 1.2rem;
}
.cookiebar_default .cc-group .cc-detail-btn span:nth-child(2) {
  display: none;
}
.cookiebar_default .cc-group .cc-detail-btn.cc-active span:nth-child(1) {
  display: none;
}
.cookiebar_default .cc-group .cc-detail-btn.cc-active span:nth-child(2) {
  display: inline;
}
.cookiebar_default .cc-group .cc-detail-btn:hover {
  color: #323232;
}
.cookiebar_default .cc-group .cc-detail-btn-details {
  display: inline-block;
  border: 0 none;
  outline: 0 none;
  background: transparent;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: initial;
  cursor: pointer;
  color: #323232;
  text-decoration: underline;
  padding: 0;
  margin: 0 0 10px;
}
.cookiebar_default .cc-group .cc-detail-btn-details span:nth-child(2) {
  display: none;
}
.cookiebar_default .cc-group .cc-detail-btn-details.cc-active span:nth-child(1) {
  display: none;
}
.cookiebar_default .cc-group .cc-detail-btn-details.cc-active span:nth-child(2) {
  display: inline;
}
.cookiebar_default .cc-group .cc-detail-btn-details:hover {
  color: #323232;
}
.cookiebar_default .cc-cookies {
  display: none;
  width: 100%;
  background: #fbfbfb;
}
.cookiebar_default .cc-cookies > p {
  font-size: 0.875rem;
}
.cookiebar_default .cc-cookies > p, .cookiebar_default .cc-cookies > .cc-cookie {
  margin: 0;
  padding: 15px;
  border-top: 1px solid #E2E2E2;
}
.cookiebar_default .cc-cookies .cc-cookie .cc-cookie-info {
  font-size: 0.875rem;
  background: #fff;
  padding: 10px;
  border: 1px solid #E2E2E2;
}
.cookiebar_default .cc-cookies .cc-cookie .cc-cookie-info > div + div {
  margin-top: 5px;
}
.cookiebar_default .cc-cookies .cc-cookie .cc-cookie-info + button.cc-detail-btn-details {
  margin-top: 15px;
}
.cookiebar_default .cc-cookies .cc-cookie .cc-cookie-desc > p {
  margin-bottom: 0;
}
.cookiebar_default .cc-cookies .cc-cookie label.cookie + p, .cookiebar_default .cc-cookies .cc-cookie label.cookie + .cc-cookie-info, .cookiebar_default .cc-cookies .cc-cookie label.cookie + button.cc-detail-btn-details {
  margin-top: 10px;
}
.cookiebar_default .cc-cookies .cc-cookie p {
  margin: 0 0 15px;
  font-size: 0.875rem;
}
.cookiebar_default .cc-footer, .cookiebar_default .cc-info {
  text-align: center;
}
.cookiebar_default .cc-info {
  margin-top: 15px;
}
.cookiebar_default .cc-info > p {
  font-size: 0.875rem;
}
.cookiebar_default .cc-info > a {
  display: inline-block;
  font-size: 0.813rem;
  color: #323232;
  text-decoration: none;
}
.cookiebar_default .cc-info > a:hover {
  color: #E2E2E2;
}
.cookiebar_default .cc-info > a + a:before {
  display: inline-block;
  content: "·";
  margin-right: 5px;
}

.ce_player {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.ce_player video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.playPause {
  position: absolute;
  display: block;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 100%;
  z-index: 110;
  bottom: 15px;
  right: 15px;
  text-indent: -9999px;
}
.playPause::before {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  left: 5px;
  background-color: #96C11F;
  background-image: url("../../files/themes/abl-group/img/icon-play.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 28px;
  border-radius: 100%;
  opacity: 1;
  z-index: 1;
}
.playPause.paused::before {
  background-image: url("../../files/themes/abl-group/img/icon-pause.svg");
}

.ce_contact {
  text-align: center;
}
.ce_contact .image_container {
  background-color: #E2E2E2;
  display: inline-block;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  padding: 2px;
}
.ce_contact .image_container img {
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}
.ce_contact .contact-details {
  margin-top: 20px;
}
.ce_contact .contact-details .contact-name {
  font-size: 1.25em;
}
.ce_contact .contact-details .contact-position {
  font-size: 0.722em;
}

@media (min-width: 768px) {
  .ce_contact .image_container {
    padding: 3px;
  }
  .ce_contact .contact-details {
    margin-top: 30px;
  }
  .ce_contact .contact-details .contact-name {
    font-size: 1.1875em;
  }
  .ce_contact .contact-details .contact-position {
    font-size: 0.9375em;
  }
}
@media (min-width: 1200px) {
  .ce_contact .image_container {
    padding: 4px;
  }
  .ce_contact .contact-details {
    margin-top: 35px;
  }
  .ce_contact .contact-details .contact-name {
    font-size: 1.333em;
  }
  .ce_contact .contact-details .contact-position {
    font-size: 0.888em;
  }
}
.mod_service_list .btn {
  margin-top: 0;
}

.serviceSmall {
  text-align: center;
  margin-top: 25px;
  margin-bottom: 25px;
}
.serviceSmall .serviceIcon {
  display: block;
  max-width: 80px;
  margin: 0 auto 20px;
}
.serviceSmall .serviceTitle {
  font-size: 0.875em;
  line-height: 1.2;
  color: #0064B3;
  font-weight: 400;
}

.serviceLink {
  display: block;
  position: relative;
  font-size: 1.25em;
  margin-bottom: 10px;
}
.serviceLink .arrow {
  display: block;
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 0;
  width: 15px;
  transform: translateY(-50%);
  transition: transform 0.3s ease-in-out;
}
.serviceLink a {
  display: inline-block;
  padding-left: 25px;
  color: #707070;
}
.serviceLink a:hover {
  color: #0064B3;
}
.serviceLink a:hover .arrow {
  transform: translateX(3px) translateY(-50%);
}

.serviceItem {
  border-top: 1px solid #E2E2E2;
  border-bottom: 1px solid #E2E2E2;
  padding-top: 50px;
  padding-bottom: 50px;
}
.serviceItem.first {
  border-top: none;
}
.serviceItem.last {
  border-bottom: none;
}
.serviceItem .serviceImage {
  position: relative;
}
.serviceItem .serviceIcon {
  position: absolute;
  display: block;
  width: 102px;
  height: 89px;
  background-color: #0064B3;
  background: linear-gradient(180deg, #0064B3 0%, #96C11F 100%);
  text-align: center;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  padding: 20px 30px;
}
.serviceItem .serviceIcon svg {
  max-height: 100%;
}
.serviceItem:nth-of-type(2n+1) .serviceImage {
  margin-top: 44.5px;
}
.serviceItem:nth-of-type(2n+1) .serviceIcon {
  top: 0;
  left: 0;
  transform: translateY(-50%);
}
.serviceItem:nth-of-type(2n+2) .serviceImage {
  margin-bottom: 44.5px;
}
.serviceItem:nth-of-type(2n+2) .serviceIcon {
  right: 0;
  bottom: 0;
  transform: translateY(50%);
}

@media (min-width: 768px) {
  .serviceSmall {
    margin-top: 45px;
    margin-bottom: 45px;
  }
  .serviceSmall .serviceTitle {
    font-size: 0.8125em;
  }
  .serviceLink {
    margin-bottom: 15px;
  }
  .serviceLink .arrow {
    width: 16px;
  }
  .serviceLink a {
    padding-left: 26px;
  }
  .serviceItem {
    padding-top: 85px;
    padding-bottom: 85px;
  }
  .serviceItem > * {
    align-items: center;
  }
  .serviceItem.first {
    padding-top: 0;
  }
  .serviceItem.last {
    padding-bottom: 0;
  }
  .serviceItem h2 {
    font-size: 1.5em;
    font-weight: 500;
  }
  .serviceItem h2 + * {
    margin-top: 30px;
  }
  .serviceItem .serviceIcon {
    width: 188px;
    height: 163px;
    padding: 20px 30px;
  }
  .serviceItem:nth-of-type(2n+1) .serviceImage {
    margin-top: 0;
  }
  .serviceItem:nth-of-type(2n+1) .serviceIcon {
    top: auto;
    left: auto;
    transform: translateY(0);
  }
  .serviceItem:nth-of-type(2n+2) .serviceImage {
    margin-bottom: 0;
  }
  .serviceItem:nth-of-type(2n+2) .serviceIcon {
    right: auto;
    bottom: auto;
    transform: translateY(0);
  }
  .serviceItem:nth-of-type(4n+1) > * {
    padding-bottom: 81.5px;
  }
  .serviceItem:nth-of-type(4n+1) .serviceImage {
    margin-right: 0;
    margin-left: 94px;
  }
  .serviceItem:nth-of-type(4n+1) .serviceIcon {
    bottom: 0;
    left: 0;
    transform: translate(-50%, 50%);
  }
  .serviceItem:nth-of-type(4n+2) > * {
    padding-top: 81.5px;
  }
  .serviceItem:nth-of-type(4n+2) .serviceImage {
    margin-right: 94px;
    margin-left: 0;
  }
  .serviceItem:nth-of-type(4n+2) .serviceIcon {
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
  }
  .serviceItem:nth-of-type(4n+3) > * {
    padding-top: 81.5px;
  }
  .serviceItem:nth-of-type(4n+3) .serviceImage {
    margin-right: 0;
    margin-left: 94px;
  }
  .serviceItem:nth-of-type(4n+3) .serviceIcon {
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
  }
  .serviceItem:nth-of-type(4n+4) > * {
    padding-bottom: 81.5px;
  }
  .serviceItem:nth-of-type(4n+4) .serviceImage {
    margin-right: 94px;
    margin-left: 0;
  }
  .serviceItem:nth-of-type(4n+4) .serviceIcon {
    bottom: 0;
    right: 0;
    transform: translate(50%, 50%);
  }
}
@media (min-width: 1200px) {
  .serviceSmall {
    margin-top: 45px;
    margin-bottom: 45px;
  }
  .serviceSmall .serviceTitle {
    font-size: 0.777em;
  }
  .serviceLink .arrow {
    width: 17px;
  }
  .serviceLink a {
    padding-left: 27px;
  }
  .serviceItem .serviceIcon {
    width: 188px;
    height: 163px;
    padding: 40px 50px;
  }
  .serviceItem:nth-of-type(4n+1) > * {
    padding-bottom: 81.5px;
  }
  .serviceItem:nth-of-type(4n+1) .serviceImage {
    margin-left: 94px;
  }
  .serviceItem:nth-of-type(4n+2) > * {
    padding-top: 81.5px;
  }
  .serviceItem:nth-of-type(4n+2) .serviceImage {
    margin-right: 94px;
  }
  .serviceItem:nth-of-type(4n+3) > * {
    padding-top: 81.5px;
  }
  .serviceItem:nth-of-type(4n+3) .serviceImage {
    margin-left: 94px;
  }
  .serviceItem:nth-of-type(4n+4) > * {
    padding-bottom: 81.5px;
  }
  .serviceItem:nth-of-type(4n+4) .serviceImage {
    margin-right: 94px;
  }
}
.referencePreviewImage {
  position: relative;
  cursor: pointer;
}
.referencePreviewImage img {
  width: 100%;
  height: auto;
}
.referencePreviewImage .referencePreviewTitle {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px 15px;
  background-color: #7E878F;
  font-size: 1.25em;
  color: #FFFFFF;
}
.referencePreviewImage .referencePreviewTitle .arrow {
  display: block;
  width: 35px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease-in-out;
}
.referencePreviewImage.isOpen .referencePreviewTitle {
  background-color: #96C11F;
}
.referencePreviewImage.isOpen .referencePreviewTitle .arrow {
  transform: rotate(180deg) translateY(50%);
}

.referenceTitle {
  display: none;
  position: relative;
  text-transform: none;
}
.referenceTitle .closeReferenceButton {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  font-size: 13px !important;
  color: #96C11F;
  text-transform: none;
}
.referenceTitle .closeReferenceButton .arrow {
  margin-left: 10px;
  display: inline-block;
  width: 30px;
  transform: rotate(180deg);
}

.referenceDetailItem {
  max-height: 0;
  overflow: hidden;
  position: relative;
  transition: max-height 0.3s ease-in-out;
}
.referenceDetailItem::before, .referenceDetailItem::after {
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  right: 0;
  left: 0;
  background-color: #96C11F;
}
.referenceDetailItem::before {
  top: -1px;
}
.referenceDetailItem::after {
  bottom: -1px;
}
.referenceDetailItem .referenceDetails {
  font-size: 1em;
}
.referenceDetailItem .referenceGallery {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  row-gap: 16px;
  column-gap: 9px;
}
.referenceDetailItem .referenceGallery .referenceGalleryImage {
  flex: 0 0 31.2%;
}

@media (min-width: 600px) {
  .referenceDetailItem .referenceGallery .referenceGalleryImage {
    flex: 0 0 32.2%;
  }
}
@media (min-width: 768px) {
  .referencePreviewImage .referencePreviewTitle {
    padding: 25px 15px;
  }
  .referencePreviewImage .referencePreviewTitle .arrow {
    width: 27px;
  }
  .referenceTitle {
    display: block;
    font-size: 1.25em;
  }
  .referenceTitle + * {
    margin-top: 1.875em;
  }
  .referenceDetailItem .referenceDetails {
    font-size: 0.8125em;
  }
  .referenceDetailItem .referenceGallery {
    row-gap: 18px;
    column-gap: 12px;
  }
  .referenceDetailItem .referenceGallery .referenceGalleryImage {
    flex: 0 0 31.1%;
  }
}
@media (min-width: 1200px) {
  .referencePreviewImage .referencePreviewTitle {
    padding: 30px 15px;
    font-size: 1.111em;
  }
  .referencePreviewImage .referencePreviewTitle .arrow {
    width: 35px;
  }
  .referenceTitle {
    font-size: 1.333em;
  }
  .referenceTitle + * {
    margin-top: 1.666em;
  }
  .referenceTitle .closeReferenceButton {
    font-size: 20px;
  }
  .referenceDetailItem .referenceDetails {
    font-size: 0.888em;
  }
  .referenceDetailItem .referenceGallery {
    row-gap: 22px;
    column-gap: 16px;
  }
  .referenceDetailItem .referenceGallery .referenceGalleryImage {
    flex: 0 0 31.4%;
  }
}
.arrowLinkIntro {
  font-size: 1.25em;
}

.arrowLinkWrapper {
  padding-left: 45px;
  margin-bottom: 40px;
  font-size: 1.25em;
}
.arrowLinkWrapper:nth-of-type(1) {
  margin-top: 70px;
}
.arrowLinkWrapper:nth-last-of-type(1) + * {
  margin-bottom: 60px;
}
.arrowLinkWrapper .arrowLinkGreen,
.arrowLinkWrapper .arrowLinkBlue {
  display: block;
  position: relative;
  font-size: 1em;
}
.arrowLinkWrapper .arrowLinkGreen::before,
.arrowLinkWrapper .arrowLinkBlue::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -45px;
  width: 25px;
  height: 100%;
  background-image: url("../../files/themes/abl-group/img/arrow-right.svg");
  background-size: 100% auto;
  background-position: left center;
  background-repeat: no-repeat;
}
.arrowLinkWrapper .arrowLinkGreen {
  color: #96C11F;
}
.arrowLinkWrapper .arrowLinkGreen::before {
  background-image: url("../../files/themes/abl-group/img/arrow-right-green.svg");
}
.arrowLinkWrapper .arrowLinkBlue {
  color: #0064B3;
}
.arrowLinkWrapper .arrowLinkBlue::before {
  background-image: url("../../files/themes/abl-group/img/arrow-right-blue.svg");
}
.arrowLinkWrapper .arrowLinkSub {
  font-size: 0.75em;
}

@media (min-width: 768px) {
  .arrowLinkIntro {
    font-size: 1.111em;
  }
  .arrowLinkWrapper {
    padding-left: 80px;
    margin-bottom: 50px;
    font-size: 1.111em;
  }
  .arrowLinkWrapper:nth-of-type(1) {
    margin-top: 130px;
  }
  .arrowLinkWrapper:nth-last-of-type(1) + * {
    margin-top: 80px;
  }
  .arrowLinkWrapper .arrowLinkGreen,
  .arrowLinkWrapper .arrowLinkBlue {
    font-size: 2.25em;
  }
  .arrowLinkWrapper .arrowLinkGreen::before,
  .arrowLinkWrapper .arrowLinkBlue::before {
    left: -80px;
    width: 50px;
  }
  .arrowLinkWrapper .arrowLinkSub {
    font-size: 0.65em;
  }
}
@media (min-width: 1200px) {
  .arrowLinkIntro {
    font-size: 1.333em;
  }
  .arrowLinkWrapper {
    margin-bottom: 30px;
    font-size: 1.333em;
  }
  .arrowLinkWrapper:nth-of-type(1) {
    margin-top: 110px;
  }
  .arrowLinkWrapper:nth-last-of-type(1) + * {
    margin-top: 70px;
  }
  .arrowLinkWrapper .arrowLinkGreen,
  .arrowLinkWrapper .arrowLinkBlue {
    font-size: 2em;
  }
  .arrowLinkWrapper .arrowLinkSub {
    font-size: 1em;
  }
}
.remus {
  position: relative;
  display: flex;
  max-width: 100%;
  width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -ms-user-select: none;
  -webkit-user-drag: none;
  -moz-user-drag: none;
  user-drag: none;
  -ms-user-drag: none;
}

.remus > * {
  width: 100%;
}

.remus .remus-element {
  width: 100%;
  overflow: hidden;
  display: inline-block;
  border-right: 2px solid #FFFFFF;
}

.remus .remus-element > * {
  position: relative;
  max-width: none;
}

.remus > :first-child {
  position: relative;
}

.remus :not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
}

.remus-handle {
  border-radius: 100%;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.5);
  top: 50%;
  transform: translateY(-50%) translateX(-1px);
  z-index: 110;
  animation-name: pulse;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  transform-origin: center top;
}
.remus-handle::before {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  left: 5px;
  background-color: #96C11F;
  background-image: url("../../files/themes/abl-group/img/icon-image-comparison.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 28px;
  border-radius: 100%;
  opacity: 1;
  z-index: 1;
}
.image-count-5 .remus-handle.handle-0 {
  top: 20%;
}
.image-count-5 .remus-handle.handle-1 {
  top: 40%;
}
.image-count-5 .remus-handle.handle-2 {
  top: 60%;
}
.image-count-5 .remus-handle.handle-3 {
  top: 80%;
}
.image-count-4 .remus-handle.handle-0 {
  top: 25%;
}
.image-count-4 .remus-handle.handle-1 {
  top: 50%;
}
.image-count-4 .remus-handle.handle-2 {
  top: 75%;
}
.image-count-3 .remus-handle.handle-0 {
  top: 33.3333333333%;
}
.image-count-3 .remus-handle.handle-1 {
  top: 66.6666666667%;
}
.image-count-2 .remus-handle.handle-0 {
  top: 50%;
}

/*# sourceMappingURL=styles.css.map */

