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

@font-face{font-family:brother-1816-medium,sans-serif;font-weight:500;font-style:normal}@font-face{font-family:brother-1816-book,sans-serif;font-weight:300;font-style:normal}@font-face{font-family:brother-1816-bold,sans-serif;font-weight:700;font-style:normal}@font-face{font-family:'11-brother1816-bold';src:url(../../files/zahnarztpraxis-reuschl/assets/fonts/11-brother1816-bold-webfont.woff2) format('woff2'),url(../../files/zahnarztpraxis-reuschl/assets/fonts/11-brother1816-bold-webfont.woff) format('woff');font-weight:400;font-style:normal}@font-face{font-family:'05-brother1816-book';src:url(../../files/zahnarztpraxis-reuschl/assets/fonts/05-brother1816-book-webfont.woff2) format('woff2'),url(../../files/zahnarztpraxis-reuschl/assets/fonts/05-brother1816-book-webfont.woff) format('woff');font-weight:400;font-style:normal}@font-face{font-family:tranquilobold;src:url(../../files/zahnarztpraxis-reuschl/assets/fonts/TranquiloBold.eot);src:url(../../files/zahnarztpraxis-reuschl/assets/fonts/TranquiloBold.eot?#iefix) format('embedded-opentype'),url(../../files/zahnarztpraxis-reuschl/assets/fonts/TranquiloBold.woff2) format('woff2'),url(../../files/zahnarztpraxis-reuschl/assets/fonts/TranquiloBold.woff) format('woff'),url(../../files/zahnarztpraxis-reuschl/assets/fonts/TranquiloBold.ttf) format('truetype'),url(../../files/zahnarztpraxis-reuschl/assets/fonts/TranquiloBold.svg#TranquiloBold) format('svg');font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:tranquiloregular;src:url(../../files/zahnarztpraxis-reuschl/assets/fonts/tranquilo_1-webfont.eot);src:url(../../files/zahnarztpraxis-reuschl/assets/fonts/tranquilo_1-webfont.eot?#iefix) format('embedded-opentype'),url(../../files/zahnarztpraxis-reuschl/assets/fonts/tranquilo_1-webfont.woff2) format('woff2'),url(../../files/zahnarztpraxis-reuschl/assets/tranquilo_1-webfont.woff) format('woff'),url(../../files/zahnarztpraxis-reuschl/assets/fonts/tranquilo_1-webfont.ttf) format('truetype'),url(../../files/zahnarztpraxis-reuschl/assets/fonts/tranquilo_1-webfont.svg#tranquiloregular) format('svg');font-weight:400;font-style:normal}.font_text{font-family:"05-brother1816-book",sans-serif;font-weight:400;font-style:normal}.font_text_bold{font-family:"11-brother1816-bold",sans-serif;font-weight:400;font-style:normal}.flex-container-nowrap{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;scrollbar-width:0}.flex-container-nowrap::-webkit-scrollbar{display:none!important}.flex-container-wrap{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.bg-img-cover{-webkit-background-size:cover;background-size:cover;background-position:center center;background-repeat:no-repeat}.bg-img-contain{-webkit-background-size:contain;background-size:contain;background-position:center center;background-repeat:no-repeat}.justify-space-between{-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.justify-content-center{-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center}.justify-content-flex-end{-webkit-box-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.font-size-12{font-size:12px;line-height:19px}.font-size-16{font-size:16px;line-height:29px}@media screen and (max-width:1600px){.font-size-16{font-size:14px;line-height:27px}}.font-size-17{font-size:17px;line-height:28px}@media screen and (max-width:1600px){.font-size-17{font-size:15px;line-height:26px}}.font-size-20{font-size:20px;line-height:38px}@media screen and (max-width:1600px){.font-size-20{font-size:18px;line-height:36px}}.font-size-23{font-size:23px;line-height:35px}@media screen and (max-width:1600px){.font-size-23{font-size:20px;line-height:32px}}@media screen and (max-width:550px){.font-size-23{font-size:18px;line-height:30px}}.font-size-26{font-size:26px;line-height:38px}@media screen and (max-width:1600px){.font-size-26{font-size:24px;line-height:36px}}.font-size-30{font-size:30px;line-height:38px}@media screen and (max-width:1600px){.font-size-30{font-size:28px;line-height:36px}}@media screen and (max-width:767px){.font-size-30{font-size:24px;line-height:32px}}.font-size-34{font-size:34px;line-height:44px}@media screen and (max-width:1600px){.font-size-34{font-size:32px;line-height:42px}}@media screen and (max-width:767px){.font-size-34{font-size:24px;line-height:32px}}.font-size-42{font-size:42px;line-height:50px}@media screen and (max-width:1600px){.font-size-42{font-size:40px;line-height:48px}}@media screen and (max-width:1199px){.font-size-42{font-size:34px;line-height:42px}}@media screen and (max-width:767px){.font-size-42{font-size:30px;line-height:38px}}@media screen and (max-width:550px){.font-size-42{font-size:28px;line-height:36px}}.font-size-44{font-size:44px;line-height:38px}@media screen and (max-width:1600px){.font-size-44{font-size:42px;line-height:36px}}@media screen and (max-width:767px){.font-size-44{font-size:24px;line-height:32px}}.font-size-50{font-size:50px;line-height:50px}@media screen and (max-width:1600px){.font-size-50{font-size:48px;line-height:48px}}@media screen and (max-width:767px){.font-size-50{font-size:38px;line-height:38px}}h1{color:#000;font-size:42px;line-height:50px;font-family:tranquiloregular,sans-serif;font-weight:400}@media screen and (max-width:1600px){h1{font-size:40px;line-height:48px}}@media screen and (max-width:1199px){h1{font-size:34px;line-height:42px}}@media screen and (max-width:767px){h1{font-size:30px;line-height:38px}}@media screen and (max-width:550px){h1{font-size:28px;line-height:36px}}h1 span{font-size:26px;line-height:38px;font-family:tranquilobold,sans-serif}@media screen and (max-width:1600px){h1 span{font-size:24px;line-height:36px}}h2{color:#000;font-size:42px;line-height:50px;font-family:tranquiloregular,sans-serif;margin-top:0;font-weight:400;margin-bottom:0}@media screen and (max-width:1600px){h2{font-size:40px;line-height:48px}}@media screen and (max-width:1199px){h2{font-size:34px;line-height:42px}}@media screen and (max-width:767px){h2{font-size:30px;line-height:38px}}@media screen and (max-width:550px){h2{font-size:28px;line-height:36px}}h2 span{font-size:23px;line-height:35px;display:block;font-family:tranquilobold,sans-serif}@media screen and (max-width:1600px){h2 span{font-size:20px;line-height:32px}}@media screen and (max-width:550px){h2 span{font-size:18px;line-height:30px}}h3{font-family:"11-brother1816-bold",sans-serif;font-style:normal;font-size:17px;line-height:28px;margin:0;padding:0;font-weight:400}@media screen and (max-width:1600px){h3{font-size:15px;line-height:26px}}h3~p{margin-top:0}h4{font-size:23px;line-height:35px;font-family:tranquilobold,sans-serif;color:#000;margin:0;padding:0;font-weight:400}@media screen and (max-width:1600px){h4{font-size:20px;line-height:32px}}@media screen and (max-width:550px){h4{font-size:18px;line-height:30px}}body,html{width:100%;position:relative;overflow-x:hidden!important;margin:0}body{font-family:"05-brother1816-book",sans-serif;font-weight:400;font-style:normal;color:#766D66;font-size:17px;line-height:28px;overflow-x:hidden;width:100%}@media screen and (max-width:1600px){body{font-size:15px;line-height:26px}}p{margin-top:0;margin-bottom:25px}figure{margin:0;padding:0}.invisible{display:none}.text-center{text-align:center}.shape{overflow:hidden;position:absolute;left:0;width:100%;line-height:0;direction:ltr}.shape svg{display:block;width:calc(100% + 1.3px);position:relative;left:50%;transform:translateX(-50%)}#main{position:relative;z-index:1}#main .mod_article>.inside{max-width:1350px;padding:0 20px;margin:0 auto}@media screen and (max-width:1600px){#main .mod_article>.inside{max-width:1150px}}.highlight{font-size:23px;line-height:35px;font-family:tranquilobold,sans-serif;color:#000}@media screen and (max-width:1600px){.highlight{font-size:20px;line-height:32px}}@media screen and (max-width:550px){.highlight{font-size:18px;line-height:30px}}.center{text-align:center}a{text-decoration:none;color:#D69B6F}.content-player figure{background:url(../../files/zahnarztpraxis-reuschl/assets/img/bg-video.svg) no-repeat;background-size:contain;padding:25px 40px;margin:0}.content-player video{width:100%}.content-player.bg-video-white figure{background:url(../../files/zahnarztpraxis-reuschl/assets/img/bg-video-white.svg) no-repeat}@media screen and (max-width:550px){.content-player figure{padding:20px}}.social-media-icons{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;scrollbar-width:0}.social-media-icons::-webkit-scrollbar{display:none!important}.social-media-icons .social-media-icon{display:inline-block;background-size:contain;text-indent:-9000px;margin-left:40px}.social-media-icons .social-media-icon:first-child{margin-left:0}.social-media-icons .social-media-icon span{display:inline-block}.social-media-icons .social-media-icon.icon-instagram{width:30px;height:30px;background:url(../../files/zahnarztpraxis-reuschl/assets/img/icon-instagram.svg) no-repeat}.social-media-icons .social-media-icon.icon-fb{width:14px;height:27px;background:url(../../files/zahnarztpraxis-reuschl/assets/img/icon-facebook.svg) no-repeat}.social-media-icons .social-media-icon.icon-google{width:92px;height:30px;background:url(../../files/zahnarztpraxis-reuschl/assets/img/icon-google.svg) no-repeat}@media screen and (max-width:1199px){.social-media-icons .social-media-icon{margin-left:25px}}.content-hyperlink{text-transform:uppercase}.content-hyperlink a{font-size:20px;line-height:38px;font-family:tranquilobold,sans-serif;color:#000;position:relative;padding-right:100px;width:199px;height:55px;line-height:24px!important;letter-spacing:2px;display:flex;flex-direction:column;justify-content:end;padding-bottom:40px;-webkit-transition:opacity ease .3s;-moz-transition:opacity ease .3s;-ms-transition:opacity ease .3s;-o-transition:opacity ease .3s;transition:opacity ease .3s}@media screen and (max-width:1600px){.content-hyperlink a{font-size:18px;line-height:36px}}.content-hyperlink a:before{content:"";width:100%;height:100%;background:url(../../files/zahnarztpraxis-reuschl/assets/img/button.svg) no-repeat;display:block;position:absolute;bottom:0;left:0;background-size:contain}.content-hyperlink a:hover{opacity:.7}@media screen and (max-width:1220px){.content-hyperlink a:before{width:250px;bottom:-6px}}.content-hyperlink.link-compact a{display:block;-webkit-transition:opacity ease .3s;-moz-transition:opacity ease .3s;-ms-transition:opacity ease .3s;-o-transition:opacity ease .3s;transition:opacity ease .3s;display:inline-block;font-size:17px;line-height:28px;font-family:tranquilobold,sans-serif;text-transform:uppercase;color:#D69B6F;height:auto;width:auto;text-align:center;letter-spacing:1.7px}@media screen and (max-width:1600px){.content-hyperlink.link-compact a{font-size:15px;line-height:26px}}.content-hyperlink.link-compact a:hover{opacity:.7}.content-hyperlink.link-compact a:before{background-image:url(/files/zahnarztpraxis-reuschl/assets/img/alle-leistungen.svg);width:115px;height:115px;position:relative;margin-bottom:20px}@media screen and (max-width:991px){.content-hyperlink.link-compact a:before{width:95px;height:95px;margin-left:auto;margin-right:auto}}@media screen and (max-width:767px){.content-hyperlink.link-compact a:before{width:77px;height:77px}}.center-link{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;flex-direction:column;justify-content:center;height:100%}.widget-submit button{margin:40px 0;border:0;background-color:transparent;cursor:pointer;font-weight:400!important}.widget-submit button span{font-size:20px;line-height:38px;font-family:tranquilobold,sans-serif;color:#000;position:relative;padding-right:100px;width:199px;height:55px;line-height:24px;letter-spacing:2px;display:flex;flex-direction:column;justify-content:end;padding-bottom:40px;text-align:left;text-transform:uppercase;-webkit-transition:opacity ease .3s;-moz-transition:opacity ease .3s;-ms-transition:opacity ease .3s;-o-transition:opacity ease .3s;transition:opacity ease .3s}@media screen and (max-width:1600px){.widget-submit button span{font-size:18px;line-height:36px}}.widget-submit button span:before{content:"";width:100%;height:100%;background:url(../../files/zahnarztpraxis-reuschl/assets/img/button-2.svg) no-repeat;display:block;position:absolute;bottom:0;left:0;background-size:contain}@media screen and (max-width:1220px){.widget-submit button span:before{width:250px}}.widget-submit button span:hover{opacity:.7}@media screen and (max-width:550px){html{--grid__gutter:20px}}#main-navigation{position:relative}#main-navigation .nav-header{position:absolute;top:0;cursor:pointer;z-index:1;right:0}#main-navigation .nav-content{margin-top:34px;z-index:0;color:#fff;transition:all .2s;opacity:0;display:none}#main-navigation .nav-content ul{padding:0;list-style-type:none;text-align:right}#main-navigation .nav-content ul li{font-size:30px;font-size:26px;line-height:38px;font-family:tranquilobold,sans-serif;border-top:2px solid #fff;display:block}@media screen and (max-width:1600px){#main-navigation .nav-content ul li{font-size:28px;line-height:36px}}@media screen and (max-width:767px){#main-navigation .nav-content ul li{font-size:24px;line-height:32px}}@media screen and (max-width:1600px){#main-navigation .nav-content ul li{font-size:24px;line-height:36px}}#main-navigation .nav-content ul li:first-child{border-top:0}#main-navigation .nav-content ul li a{color:#fff;font-size:26px;line-height:38px;padding:15px 0;display:block}@media screen and (max-width:1600px){#main-navigation .nav-content ul li a{font-size:24px;line-height:36px}}#main-navigation .nav-content .btn-link{border-color:#fff;color:#fff;border-width:2px;margin-top:15px}@media screen and (max-width:1400px){#main-navigation .nav-content ul li a{padding-top:8px;padding-bottom:8px}}@media screen and (max-width:1220px){#main-navigation .nav-content ul li a{padding-top:5px;padding-bottom:5px}}@media screen and (max-width:991px){#main-navigation{position:absolute;top:-17px;right:0}}@media screen and (max-width:991px){#main-navigation .nav-content{position:absolute;height:100vh;width:100vw;right:calc(-100vw - 20px);background-color:#C2B6AB;transition:right .5s;opacity:1;display:block;top:-20px;margin-top:0;padding-top:40px}#main-navigation .nav-content ul{margin-right:20px;margin-left:20px;text-align:center}}@media screen and (max-width:550px){#main-navigation .btn-link{height:35px;line-height:30px}}.open-nav #main-navigation .nav-content{opacity:1;display:block}@media screen and (max-width:991px){.open-nav #main-navigation .nav-content{right:-20px}}.hamburger{font:inherit;display:inline-block;overflow:visible;width:100%;cursor:pointer;transition-timing-function:linear;transition-duration:.15s;transition-property:opacity,filter;text-transform:none;color:inherit;border:0;background-color:transparent}.hamburger .hamburger-inner{top:2px;transition:background-color 0s linear .13s}.hamburger-box{position:relative;display:block;width:33px;height:24px;margin:0 auto}@media screen and (max-width:550px){.hamburger-box{width:30px}.hamburger-box:after{width:30px;height:1px;bottom:-5px}}#main-navigation .hamburger-inner,.hamburger-inner:after,.hamburger-inner:before{position:absolute;width:33px;height:3px;transition-timing-function:ease;transition-duration:.15s;transition-property:transform;background-color:#fff}@media screen and (max-width:550px){#main-navigation .hamburger-inner,.hamburger-inner:after,.hamburger-inner:before{width:30px;height:2px}}.hamburger-inner{top:50%;display:block;margin-top:-2px}.hamburger .hamburger-inner:before{top:10px;transition:top .2s cubic-bezier(.33333,.66667,.66667,1) .2s,transform .13s cubic-bezier(.55,.055,.675,.19)}@media screen and (max-width:550px){.hamburger .hamburger-inner:before{top:9px}}.hamburger-inner:after,.hamburger-inner:before{display:block;content:""}#main-navigation .hamburger .hamburger-inner:after{top:20px;transition:top .2s cubic-bezier(.33333,.66667,.66667,1) .2s,transform .13s cubic-bezier(.55,.055,.675,.19)}@media screen and (max-width:550px){#main-navigation .hamburger .hamburger-inner:after{top:19px}}#main-navigation .hamburger.open .hamburger-inner{transition-delay:.22s;background-color:transparent!important}#main-navigation .hamburger.is-active .hamburger-inner:after,#main-navigation .hamburger.is-active .hamburger-inner:before,#main-navigation .hamburger.open .hamburger-inner{background-color:#000}#main-navigation .hamburger.open .hamburger-inner:before{top:0;transition:top .1s cubic-bezier(.33333,0,.66667,.33333) .15s,transform .13s cubic-bezier(.215,.61,.355,1) .22s;transform:translate3d(0,10px,0) rotate(45deg);background-color:#fff}#main-navigation .hamburger.open .hamburger-inner:after{top:0;transition:top .2s cubic-bezier(.33333,0,.66667,.33333),transform .13s cubic-bezier(.215,.61,.355,1) .22s;transform:translate3d(0,10px,0) rotate(-45deg);background-color:#fff}#header{color:#fff;position:fixed;z-index:11;width:100%}#header:before{height:calc(100% - 30px);width:100%;background-color:#C2B6AB;position:absolute;content:""}#header .inside{max-width:1350px;margin:0 auto;padding:40px 20px 0;display:grid;position:relative;grid-template-columns:25% auto 25%}#header .inside #logo{text-align:center;margin-top:-12px;padding-bottom:12px}#header .inside #logo a{display:block}#header .inside #logo img{width:400px;display:block;margin:0 auto;opacity:1;transition:opacity 5s}#header .inside #logo img.logo-scroll-header{opacity:0;height:0}#header .inside .right{position:relative}#header .inside .phone{font-family:tranquiloregular,sans-serif;font-size:26px;line-height:38px;color:#fff}@media screen and (max-width:1600px){#header .inside .phone{font-size:24px;line-height:36px}}#header .shape{margin-top:-31px;z-index:-1;height:75px}@media screen and (max-width:1600px){#header .inside{max-width:1300px}}@media screen and (max-width:1199px){#header:before{height:calc(100% - 20px)}#header .inside #logo img{width:350px}#header .inside .social-media-icons{-webkit-box-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;margin-right:70px}#header .shape{margin-top:-21px}}@media screen and (max-width:991px){#header:before{height:calc(100% - 10px)}#header .inside .social-media-icons{display:none}#header .inside .phone span{text-indent:-9000px;display:inline-block}#header .inside .phone:before{width:10px;height:30px;content:"";background:url(../../files/zahnarztpraxis-reuschl/assets/img/phone.svg) no-repeat;background-size:contain;width:28px;display:block}#header .shape{height:25px;margin-top:-11px}}@media screen and (max-width:767px){#header .inside #logo img{max-width:300px}}@media screen and (max-width:550px){#header .inside{grid-template-columns:17% auto 17%}#header .inside #logo img{max-width:250px;width:auto;padding:0}}.down #header .inside #logo{margin-top:0;padding-bottom:20px}.down #header .inside #logo img{width:200px}.down #header .inside #logo img.logo-static-header{height:0;opacity:0;transition:opacity 8s}.down #header .inside #logo img.logo-scroll-header{width:70px;height:auto;top:-20px;position:relative;opacity:1}@media screen and (max-width:991px){.down #header .inside #logo img.logo-scroll-header{width:60px;top:0;margin-top:-10px}}@media screen and (max-width:550px){.down #header .inside #logo img.logo-scroll-header{width:60px}}.down #header #header-custom{padding-top:105px}#main-navigation{position:absolute;right:0;top:0}#header-custom{transition:all .2s;padding-top:114px}#header-custom .rsts-crop{width:100vw!important;height:calc(100vh - 140px)!important;min-height:800px;overflow:hidden}#header-custom .rsts-crop .rsts-slide,#header-custom .rsts-crop .rsts-slide>div,#header-custom .rsts-crop .rsts-slides{width:100%!important;height:100%!important}#header-custom .rsts-crop img{object-fit:cover;width:100%!important;height:100%!important}@media screen and (max-width:1199px){#header-custom{padding-top:110px}#header-custom .rsts-crop{height:600px!important}}@media screen and (max-width:991px){#header-custom .rsts-crop{height:500px!important;min-height:auto}}@media screen and (max-width:767px){#header-custom{padding-top:105px}#header-custom .rsts-crop{height:400px!important}}@media screen and (max-width:550px){#header-custom{padding-top:88px}#header-custom .rsts-crop{height:300px!important}}#intro{position:relative}#intro .background{width:100vw;height:calc(100vh - 140px);min-height:800px;position:relative;overflow:hidden}#intro .background .image{width:100%;height:100%;background-repeat:no-repeat;background-position:center center;background-size:cover}#intro .background .video{width:100%;height:100%;display:block;object-fit:cover;position:absolute;top:0;left:0}#intro .text{position:absolute;bottom:120px;text-align:center;width:100%}#intro .text p{font-size:50px;line-height:50px;font-family:tranquiloregular,sans-serif;color:#fff}@media screen and (max-width:1600px){#intro .text p{font-size:48px;line-height:48px}}@media screen and (max-width:767px){#intro .text p{font-size:38px;line-height:38px}}#intro .info{position:fixed;bottom:110px;right:20px;z-index:10}#intro .info a{display:block;width:67px;height:67px;background-size:cover}#intro .info a.btn-email{background:url(../../files/zahnarztpraxis-reuschl/assets/img/icon-mail.svg) no-repeat;position:absolute;bottom:-60px;right:70px}#intro .info a.btn-opening-hours{background:url(../../files/zahnarztpraxis-reuschl/assets/img/icon-oeffungszeiten.svg) no-repeat;position:absolute;right:0;top:-40px}#intro .info a.btn-opening-hours.hidden{display:none}#intro .info a.btn-location{background:url(../../files/zahnarztpraxis-reuschl/assets/img/icon-anfahrt.svg) no-repeat;position:absolute;bottom:-100px;right:0}#intro .info a.btn-online-termin{text-decoration:none;width:212px;height:212px;text-align:center;background:url(../../files/zahnarztpraxis-reuschl/assets/img/btn-online-termin.svg) no-repeat;color:#fff;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center}#intro .info a.btn-online-termin span{-webkit-transform:rotate(-2deg);-moz-transform:rotate(-2deg);-ms-transform:rotate(-2deg);-o-transform:rotate(-2deg);transform:rotate(-2deg)}#intro .info .content-opening-hours{display:none;background-color:#C2B6AB;border:2px solid #fff;border-radius:32px;color:#fff;padding:15px 15px 10px 60px;position:absolute;width:334px;margin-top:-160px;width:180px;right:0}#intro .info .content-opening-hours:before{background:url(../../files/zahnarztpraxis-reuschl/assets/img/icon-clock.svg) no-repeat;width:26px;height:26px;content:"";display:block;position:absolute;left:20px;background-size:contain}#intro .info .content-opening-hours .close{background:url(../../files/zahnarztpraxis-reuschl/assets/img/icon-close.svg) no-repeat;width:26px;height:26px;content:"";display:block;position:absolute;right:0;top:0;background-size:contain;cursor:pointer}#intro .info .content-opening-hours p{margin:0;font-family:tranquilobold,sans-serif;font-size:17px;line-height:28px;width:100%;overflow:hidden}@media screen and (max-width:1600px){#intro .info .content-opening-hours p{font-size:15px;line-height:26px}}#intro .info .content-opening-hours.show{display:block}#intro .info .content-opening-hours .fix-width{display:block;width:85px;text-align:left;float:left}#intro .info .content-opening-hours .align-right{text-align:right;display:inline-block;float:right}#intro .shape{margin-top:-50px}#intro .shape svg{height:114px}@media screen and (max-width:1600px){#intro .info{right:10px}}@media screen and (max-width:1199px){#intro .info{position:absolute;bottom:60px}#intro .background{min-height:600px;height:600px}}@media screen and (max-width:991px){#intro .info{bottom:-60px}#intro .shape svg{height:80px}#intro .background{min-height:500px;height:500px}}@media screen and (max-width:767px){#intro .info{bottom:-30px}#intro .info a{width:50px;height:50px}#intro .info a.btn-online-termin{width:160px;height:160px}#intro .info a.btn-email{bottom:-45px;right:60px}#intro .info a.btn-location{bottom:-65px}#intro .background{min-height:400px;height:400px}}@media screen and (max-width:550px){#intro .shape svg{height:60px}#intro .background{min-height:300px;height:300px}#intro .text{display:none}#intro .info{bottom:-20px}#intro .info a{width:40px;height:40px}#intro .info a.btn-online-termin{width:150px;height:150px;margin-right:-10px}#intro .info a.btn-email{bottom:-34px;right:44px}#intro .info a.btn-location{bottom:-47px}#intro .info a.btn-opening-hours{top:-26px}#intro .info .content-opening-hours{margin-top:-130px}}#news{margin:40px 0}#news h2{text-transform:uppercase;margin:0}#news h2 span{font-size:30px;line-height:38px;text-transform:none}@media screen and (max-width:1600px){#news h2 span{font-size:28px;line-height:36px}}@media screen and (max-width:767px){#news h2 span{font-size:24px;line-height:32px}}.mod_newslist{text-align:center}#zahnlieblinge{padding-bottom:100px}#zahnlieblinge h1{padding-top:120px}#zahnlieblinge h4{font-family:"11-brother1816-bold",sans-serif;font-weight:400;font-style:normal;font-size:17px;line-height:28px;color:#766D66}@media screen and (max-width:1600px){#zahnlieblinge h4{font-size:15px;line-height:26px}}#zahnlieblinge .content-image{position:relative;z-index:1;text-align:right}#zahnlieblinge .content-image figure{margin:0;padding:0;display:inline-block;position:relative;top:0;right:80px}#zahnlieblinge .content-image img{display:block;max-width:281px;height:auto}#zahnlieblinge .shape svg{width:auto}@media screen and (max-width:1400px){#zahnlieblinge .shape svg{width:1500px;height:auto}}@media screen and (max-width:991px){#zahnlieblinge .content-image figure{right:0}#zahnlieblinge .shape svg{width:1500px;left:-190px;transform:none;height:auto}#zahnlieblinge .shape+.row .content-text .rte{width:90vw}}@media screen and (max-width:767px){#zahnlieblinge .highlight{display:block;width:calc(100vw - 60px)}#zahnlieblinge .shape svg{width:1200px;left:-150px;transform:none}#zahnlieblinge .content-image{margin:-20px 0 20px}#zahnlieblinge .content-image img{max-width:200px}}#philosophie{position:relative;height:1300px;background-color:#fff}#philosophie:before{width:3500px;background:url(/files/zahnarztpraxis-reuschl/uploads/Startseite/bg-philosophie.jpg) no-repeat center;height:100%;position:absolute;left:55%;content:"";display:block;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-o-transform:translateX(-50%);transform:translateX(-50%);z-index:0;top:0;background-size:100%;background-position:bottom}#philosophie .shape{top:0}#philosophie .shape svg{height:65px}#philosophie .inside{padding-top:150px!important}#philosophie .inside .content-headline,#philosophie .inside .row{position:relative;z-index:1}#philosophie h2{margin-bottom:25px}#philosophie h4{font-size:30px;line-height:38px;color:#D69B6F}@media screen and (max-width:1600px){#philosophie h4{font-size:28px;line-height:36px}}@media screen and (max-width:767px){#philosophie h4{font-size:24px;line-height:32px}}#philosophie .left-column{position:relative}#philosophie .content-hyperlink{position:absolute;right:0;margin-top:70px}#philosophie .content-hyperlink a:before{background-image:url(../../files/zahnarztpraxis-reuschl/assets/img/button-2.svg)}@media screen and (max-width:1600px){#philosophie{height:1250px}#philosophie .shape svg{width:120%}}@media screen and (max-width:1199px){#philosophie{height:1150px}#philosophie:before{background-size:80%}}@media screen and (max-width:991px){#philosophie .content-hyperlink{position:relative;margin-bottom:50px}#philosophie .shape svg{height:50px}#philosophie h2{margin-bottom:25px}}@media screen and (max-width:939px){#philosophie{height:auto;padding-bottom:550px}#philosophie:before{left:-1000px;transform:none;width:2300px}}@media screen and (max-width:550px){#philosophie{padding-bottom:400px}#philosophie .shape svg{height:40px}#philosophie:before{left:-695px;transform:none;width:1500px}}#video{background-color:#C2B6AB;color:#fff;padding-bottom:30px}#video h3{color:#fff;font-size:34px;line-height:44px;text-align:center;font-family:tranquilobold,sans-serif;margin-bottom:50px}@media screen and (max-width:1600px){#video h3{font-size:32px;line-height:42px}}@media screen and (max-width:767px){#video h3{font-size:24px;line-height:32px}}#video .shape{margin-top:-30px}#video .shape svg{height:101px}#video .shape.shape-bottom{margin-top:30px}#video .shape.shape-bottom svg{height:89px}#video .content-player{max-width:764px;margin:0 auto;padding-top:80px;position:relative;z-index:1}@media screen and (max-width:991px){#video .shape svg{height:90px}#video .shape.shape-bottom svg{height:55px}}@media screen and (max-width:550px){#video .shape svg{height:80px}#video .shape.shape-bottom svg{height:35px}}#leistungen{position:relative;padding:150px 0 100px}#leistungen:before{width:100%;background:url(/files/zahnarztpraxis-reuschl/uploads/Startseite/bg-leistungen.jpg) no-repeat center;height:100%;position:absolute;left:80%;content:"";display:block;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-o-transform:translateX(-50%);transform:translateX(-50%);z-index:-1;bottom:-200px}@media screen and (max-width:1600px){#leistungen:before{left:85%;background-size:1400px;bottom:-230px}}@media screen and (max-width:1400px){#leistungen:before{left:90%;background-size:100%;bottom:-320px}}@media screen and (max-width:1199px){#leistungen:before{left:90%;background-size:1200px}}@media screen and (max-width:991px){#leistungen:before{content:none}}.service-list{list-style:none;padding:0;margin:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;max-width:1100px;margin:95px 0 0 -85px}.service-list h3{font-size:16px;line-height:29px;font-family:tranquilobold,sans-serif;letter-spacing:1.7px;text-transform:uppercase}@media screen and (max-width:1600px){.service-list h3{font-size:14px;line-height:27px}}.service-list .link-all-services span{display:block;font-size:16px;line-height:29px;font-family:tranquilobold,sans-serif;letter-spacing:1.7px;text-transform:uppercase}@media screen and (max-width:1600px){.service-list .link-all-services span{font-size:14px;line-height:27px}}.service-list .link-all-services a{display:block;-webkit-transition:opacity ease .3s;-moz-transition:opacity ease .3s;-ms-transition:opacity ease .3s;-o-transition:opacity ease .3s;transition:opacity ease .3s}.service-list .link-all-services a:hover{opacity:.7}.service-list>li{text-transform:uppercase;width:25%;text-align:center;margin-bottom:80px}.service-list img{width:115px;height:auto;display:inline-block;margin-bottom:10px}.service-list.service-list-content{margin-left:0;max-width:100%;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.service-list>div{width:40%;text-align:center;margin-bottom:200px}.service-list>div h3{margin-bottom:50px}.service-list>div p{text-align:left}@media screen and (max-width:1600px){.service-list{max-width:1000px}}@media screen and (max-width:1199px){.service-list{max-width:800px;margin-left:0}}@media screen and (max-width:991px){.service-list{margin-top:45px}}@media screen and (max-width:767px){.service-list{max-width:100%;margin-left:0}.service-list>li{width:33.3%}.service-list img{width:95px}}@media screen and (max-width:550px){.service-list>li{width:50%}.service-list img{width:77px}}#familientermin{background-color:#C2B6AB;position:relative}#familientermin #img-familientermin{margin-left:-150px;z-index:1;position:absolute;bottom:-80px}#familientermin .shape{margin-top:-102px}#familientermin .shape svg{height:128px}#familientermin .shape.shape-bottom{margin-top:-190px}#familientermin .shape.shape-bottom svg{height:260px}#familientermin .content-text{padding:50px 0 0;z-index:1;position:relative}#familientermin .content-hyperlink{z-index:1;position:relative}@media screen and (max-width:1099px){#familientermin #img-familientermin{margin-left:-60px}#familientermin #img-familientermin img{width:280px}}@media screen and (max-width:991px){#familientermin .shape{margin-top:-90px}#familientermin .shape svg{height:100px}}@media screen and (max-width:767px){#familientermin .center-link{height:auto;padding-bottom:200px}#familientermin #img-familientermin{margin-left:0;bottom:-90px}#familientermin .shape{margin-top:-65px}#familientermin .shape svg{height:70px}#familientermin .shape.shape-bottom{margin-top:-60px}#familientermin .shape.shape-bottom svg{height:140px}}@media screen and (max-width:550px){#familientermin .shape{margin-top:-38px}#familientermin .shape svg{height:40px}#familientermin .shape.shape-bottom{margin-top:-30px}#familientermin .shape.shape-bottom svg{height:100px}}#lieblingsmenschen{min-height:800px;position:relative;padding-top:150px}#lieblingsmenschen h2{margin-bottom:85px}#lieblingsmenschen h3{font-family:tranquilobold,sans-serif;font-size:44px;line-height:38px;color:#C2B6AB;margin-bottom:40px}@media screen and (max-width:1600px){#lieblingsmenschen h3{font-size:42px;line-height:36px}}@media screen and (max-width:767px){#lieblingsmenschen h3{font-size:24px;line-height:32px}}#lieblingsmenschen h4{font-family:"11-brother1816-bold",sans-serif;font-weight:400;font-style:normal;font-size:17px;line-height:28px;color:#766D66}@media screen and (max-width:1600px){#lieblingsmenschen h4{font-size:15px;line-height:26px}}#lieblingsmenschen .content-text p{max-width:536px}#lieblingsmenschen .content-image{position:absolute;top:0;margin-left:615px;z-index:-1;height:100%}#lieblingsmenschen .content-image:before{content:"";width:100%;height:100%;background:url(/files/zahnarztpraxis-reuschl/uploads/Startseite/animation-herz.gif) no-repeat;display:block;position:absolute;background-size:contain}#lieblingsmenschen .content-image figure{margin:0;padding:0;height:100%}#lieblingsmenschen .content-image figure img{height:100%;width:auto}@media screen and (max-width:1220px){#lieblingsmenschen .content-image{top:auto;bottom:0;height:auto;margin-left:554px}#lieblingsmenschen .content-image figure{height:auto}#lieblingsmenschen .content-image figure img{width:1500px;height:auto}}@media screen and (max-width:1099px){#lieblingsmenschen .content-image{margin-left:auto;right:-300px;bottom:-10px}#lieblingsmenschen .content-image figure img{width:1040px}}@media screen and (max-width:991px){#lieblingsmenschen h2{margin-bottom:45px}#lieblingsmenschen .content-image{bottom:-100px;right:-300px}#lieblingsmenschen .content-image figure img{width:1000px}}@media screen and (max-width:767px){#lieblingsmenschen .content-image{right:auto;margin-left:70px}}@media screen and (max-width:550px){#lieblingsmenschen .content-image{margin-left:20px}#lieblingsmenschen .content-image figure img{width:800px}}#team{background-color:#C2B6AB;margin-bottom:150px}#team .shape{margin-top:-40px}#team .shape svg{height:86px}#team .shape:shape-bottom{margin-top:-50px}#team .shape:shape-bottom svg{height:129px}@media screen and (max-width:991px){#team .shape svg{height:80px}}@media screen and (max-width:550px){#team .shape svg{height:60px}#team .shape.shape-bottom svg{height:80px}}.gallery-team{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-top:100px}.gallery-team>div{flex:0 0 33.333333%;text-align:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:80px;color:#fff}.gallery-team>div:nth-child(3n+2){justify-content:center}.gallery-team>div:nth-child(3n){justify-content:flex-end}.gallery-team>div h4{color:#fff;line-height:38px}.gallery-team>div h4 span{font-family:tranquiloregular,sans-serif}.gallery-team>div img{display:block;margin-bottom:30px;max-width:281px;height:auto}@media screen and (max-width:1024px){.gallery-team>div{flex:0 50%;justify-content:center}.gallery-team>div:nth-child(3n){justify-content:center}}@media screen and (max-width:767px){.gallery-team>div img{max-width:250px}}@media screen and (max-width:640px){.gallery-team>div img{max-width:200px}}@media screen and (max-width:550px){.gallery-team>div{flex:100%}.gallery-team>div img{max-width:250px}}.gallery{display:grid;grid-gap:20px;margin-top:100px;margin-bottom:200px;grid-template-columns:repeat(25,minmax(0,1fr))}.gallery figure{margin:0;padding:0;height:100%;width:100%}.gallery figure img{width:100%;height:auto}.gallery .image{overflow:hidden}.gallery .image img{width:100%;height:100%;object-fit:cover;display:block}.gallery .image:nth-child(1){grid-column-end:11;grid-row-end:11;grid-column-start:1;grid-row-start:1}.gallery .image:nth-child(2){grid-column-end:16;grid-row-end:6;grid-column-start:11;grid-row-start:1}.gallery .image:nth-child(3){grid-column-start:11;grid-column-end:16;grid-row-end:11;grid-row-start:6}.gallery .image:nth-child(4){grid-column-end:21;grid-row-end:6;grid-column-start:16;grid-row-start:1}.gallery .image:nth-child(5){grid-column-start:16;grid-column-end:21;grid-row-end:11;grid-row-start:6}.gallery .image:nth-child(6){grid-column-start:21;grid-column-end:26;grid-row-end:8;grid-row-start:1}.gallery .image:nth-child(7){grid-column-start:21;grid-column-end:26;grid-row-end:11;grid-row-start:8}.gallery .image:nth-child(8){grid-column-start:1;grid-column-end:7;grid-row-end:16;grid-row-start:11}.gallery .image:nth-child(9){grid-column-start:7;grid-column-end:14;grid-row-end:16;grid-row-start:11}.gallery .image:nth-child(10){grid-column-start:14;grid-column-end:21;grid-row-end:16;grid-row-start:11}.gallery .image:nth-child(11){grid-column-start:21;grid-column-end:26;grid-row-end:16;grid-row-start:11}@media screen and (max-width:991px){.gallery{grid-gap:10px;margin-top:45px}}@media screen and (max-width:767px){.gallery .image:nth-child(1){grid-column-end:16;grid-row-end:16;grid-column-start:1;grid-row-start:1}.gallery .image:nth-child(2){grid-column-end:26;grid-row-end:8;grid-column-start:16;grid-row-start:1}.gallery .image:nth-child(3){grid-column-start:16;grid-column-end:26;grid-row-end:16;grid-row-start:8}.gallery .image:nth-child(4){grid-column-end:16;grid-row-end:24;grid-column-start:1;grid-row-start:16}.gallery .image:nth-child(5){grid-column-end:16;grid-row-end:32;grid-column-start:1;grid-row-start:24}.gallery .image:nth-child(6){grid-column-start:16;grid-column-end:26;grid-row-end:27;grid-row-start:16}.gallery .image:nth-child(7){grid-column-start:16;grid-column-end:26;grid-row-end:32;grid-row-start:27}.gallery .image:nth-child(8){grid-column-start:1;grid-column-end:13;grid-row-end:40;grid-row-start:32}.gallery .image:nth-child(9){grid-column-start:13;grid-column-end:26;grid-row-end:40;grid-row-start:32}.gallery .image:nth-child(10){grid-column-start:1;grid-column-end:13;grid-row-end:48;grid-row-start:40}.gallery .image:nth-child(11){grid-column-start:13;grid-column-end:26;grid-row-end:48;grid-row-start:40}}@media screen and (max-width:550px){.gallery{grid-gap:5px}}.content-page .intro{padding-top:100px}.content-page-2 #main{padding:300px 0 200px}.leistungen .service-list{margin-top:150px}.leistungen .service-list .image-divider{position:relative;left:-100px}.leistungen .service-list .image-divider img{max-width:577px;height:auto;width:auto}.leistungen .intro{padding-top:100px}.leistungen .intro .content-text{margin-right:185px}@media screen and (max-width:1600px){.leistungen .service-list>div{width:43%}}@media screen and (max-width:1199px){.leistungen .intro .content-text{margin-right:100px}.leistungen .intro .content-image{text-align:center}.leistungen .intro .content-image img{width:100%;height:auto;max-width:500px}}@media screen and (max-width:991px){.leistungen .intro .content-text{margin-right:0}.leistungen .service-list{margin-top:100px}.leistungen .service-list>div{width:100%;margin-bottom:80px}.leistungen .service-list>div:last-child{margin-bottom:150px}.leistungen .service-list .image-divider{margin-bottom:40px}.leistungen .service-list .image-divider img{max-width:400px}.leistungen .service-list .image-divider+.image-divider{left:auto;right:-60px}}@media screen and (max-width:767px){.leistungen .service-list .image-divider img{max-width:300px}}@media screen and (max-width:550px){.leistungen .service-list .image-divider{left:-50px}}.philosophie .intro .inside{position:relative}.philosophie .intro .inside .content-headline{margin-bottom:120px}.philosophie .intro .inside h3{font-size:42px;line-height:50px;font-family:tranquiloregular,sans-serif;margin-bottom:15px}@media screen and (max-width:1600px){.philosophie .intro .inside h3{font-size:40px;line-height:48px}}@media screen and (max-width:1199px){.philosophie .intro .inside h3{font-size:34px;line-height:42px}}@media screen and (max-width:767px){.philosophie .intro .inside h3{font-size:30px;line-height:38px}}@media screen and (max-width:550px){.philosophie .intro .inside h3{font-size:28px;line-height:36px}}.philosophie .intro .inside .highlight{font-size:30px;line-height:38px}@media screen and (max-width:1600px){.philosophie .intro .inside .highlight{font-size:28px;line-height:36px}}@media screen and (max-width:767px){.philosophie .intro .inside .highlight{font-size:24px;line-height:32px}}.philosophie .intro .inside .row:nth-of-type(2) .content-text{padding-right:50px}.philosophie .intro .inside .row:nth-of-type(3){margin-top:155px;margin-bottom:100px}.philosophie .intro .inside .row:nth-of-type(3) .content-wie{margin-left:0}.philosophie .intro .inside .row:nth-of-type(3) .content-was h3{text-align:right}.philosophie .link-compact{margin-bottom:100px}.philosophie #img-philosophie{position:absolute;margin-top:-27px;right:-26px;z-index:-1}.philosophie #img-philosophie img{max-width:1076px;height:auto}@media screen and (max-width:1600px){.philosophie #img-philosophie{margin-top:0;right:-35px}.philosophie #img-philosophie img{max-width:930px}.philosophie .intro .inside .row:nth-of-type(3){margin-top:65px}}@media screen and (max-width:1199px){.philosophie #img-philosophie{margin-top:67px;right:auto;left:300px}.philosophie #img-philosophie img{max-width:850px}.philosophie .intro .inside .row:nth-of-type(3){margin-top:80px}.philosophie .intro .inside .row:nth-of-type(3) .content-was{width:600px}.philosophie .intro .inside .row:nth-of-type(3) .content-wiw{width:300px}}@media screen and (max-width:1130px){.philosophie .intro .inside .row:nth-of-type(3){margin-top:0}}@media screen and (max-width:1099px){.philosophie #img-philosophie{display:none}.philosophie .intro .inside .content-headline{margin-bottom:45px}.philosophie .intro .inside .row:nth-of-type(2) .content-text{padding-right:0}.philosophie .intro .inside .row:nth-of-type(3){margin-top:0}.philosophie .intro .inside .row:nth-of-type(3) .content-was h3{text-align:left}.philosophie .intro .inside .row:nth-of-type(3) .content-was{width:100%}.philosophie .intro .inside .row:nth-of-type(3) .content-wiw{width:100%}}#main #gallery.mod_article>.inside{max-width:100%}#main #gallery.mod_article>.inside .content-headline{max-width:1350px;margin:0 auto}@media screen and (max-width:1600px){#main #gallery.mod_article>.inside .content-headline{max-width:1300px}}#footer{background-color:#F0EDEA;font-size:23px;line-height:35px;font-family:tranquilobold,sans-serif;padding:0}@media screen and (max-width:1600px){#footer{font-size:20px;line-height:32px}}@media screen and (max-width:550px){#footer{font-size:18px;line-height:30px}}#footer .inside{max-width:1350px;padding:0 20px 150px;margin:0 auto}#footer .inside .highlight{font-size:30px;line-height:38px;color:#C2B6AB}@media screen and (max-width:1600px){#footer .inside .highlight{font-size:28px;line-height:36px}}@media screen and (max-width:767px){#footer .inside .highlight{font-size:24px;line-height:32px}}#footer .inside h2{margin-bottom:25px}#footer .inside .opening-hours .fix-width{display:inline-block;width:90px}#footer .inside .opening-hours .align-right{text-align:right;display:inline-block;width:128px}#footer .inside .maps{border:2px solid #C2B6AB;margin:20px 0 90px;display:block;width:100%;height:488px}#footer .inside .maps iframe{width:100%;height:100%}#footer .inside .maps img{width:100%;height:auto;max-width:100%}#footer .inside .shape{margin-top:-30px}#footer .inside .shape svg{height:38px}#footer .inside .shape.shape-line{margin-top:-60px}#footer .inside .shape.shape-line svg{height:auto;width:auto}#footer .inside .shape~.row.first{padding-top:150px}#footer .bottom{background-color:#C2B6AB;padding:0 0 30px;font-family:"05-brother1816-book",sans-serif;font-weight:400;font-style:normal;letter-spacing:1.2px;font-weight:500}#footer .bottom .shape{margin-top:-70px;height:240px}#footer .bottom .inner-content{position:relative;z-index:1;padding-top:50px;padding-bottom:0}#footer .bottom .logo{text-align:center;margin-bottom:30px}#footer .bottom .logo a{display:inline-block}#footer .bottom .logo a img{width:422px;margin-left:8px;max-width:100%}#footer .bottom .social-media-icons{margin-left:70px}@media screen and (max-width:1600px){#footer .bottom .social-media-icons{display:none}}@media screen and (max-width:991px){#footer .bottom .social-media-icons{display:block;text-align:center;margin-bottom:40px;margin-left:0}}#footer .bottom #meta-navigation{display:inline-block}#footer .bottom #meta-navigation ul{margin:0;padding:0}#footer .bottom #meta-navigation ul li{display:inline-block;text-transform:uppercase;font-size:12px;line-height:19px;line-height:100%;color:#fff;border-left:1px solid #fff;margin:0 0 0 15px;padding-left:20px;letter-spacing:1.2px;font-weight:500}#footer .bottom #meta-navigation ul li:first-child{border-left:0}#footer .bottom #meta-navigation ul li a{color:#fff}#footer .bottom .additional-info{margin:0;padding:0;display:inline-block}#footer .bottom .additional-info li{display:inline-block;text-transform:uppercase;font-size:12px;line-height:19px;color:#fff;border-left:1px solid #fff;margin:0 0 0 15px;padding-left:20px;line-height:100%}#footer .bottom .additional-info li a{color:#fff}@media screen and (max-width:1600px){#footer .inside{max-width:1300px}}@media screen and (max-width:1199px){#footer .inside .shape.shape-line{width:1800px;left:-500px}}@media screen and (max-width:991px){#footer .inside .shape.shape-line{width:2000px;left:auto;right:-500px}#footer .inside .shape.shape-line svg{height:90px}#footer .inside h2{margin-bottom:25px}}@media screen and (max-width:939px){#footer .row-form{order:2}#footer .row-map{order:1}#footer .inside .maps{margin-bottom:30px}#footer .bottom .additional-info{display:block}#footer .bottom .additional-info li:first-child{border-left:0;margin-left:0;padding-left:0}#footer .bottom #meta-navigation ul li:first-child{margin-left:0;padding-left:0}#footer .bottom .logo a img{margin-left:0}}@media screen and (max-width:767px){#footer .bottom .additional-info{margin-top:50px;display:block}#footer .bottom .additional-info li{border-left:0;display:block;margin-bottom:10px;margin-left:0;padding-left:0;line-height:20px}#footer .bottom .logo a img{max-width:300px}}@media screen and (max-width:550px){#footer .inside .opening-hours .align-right{width:95px}#footer .inside .shape.shape-line{right:-450px}#footer .bottom .shape{margin-top:-50px}#footer .bottom .additional-info a{display:block}#footer .bottom .logo a img{width:100%}#footer p{font-size:15px;line-height:26px}}.form-confirmation{margin-top:60px}form{margin-top:20px}form .widget{position:relative}form .widget.widget-text label,form .widget.widget-textarea label{font-size:20px;line-height:38px;font-family:"05-brother1816-book",sans-serif;font-weight:400;font-style:normal;line-height:48px;position:absolute;white-space:nowrap;overflow:hidden;top:0;display:inline-block;padding:0 10px;transition:position .2s linear}@media screen and (max-width:1600px){form .widget.widget-text label,form .widget.widget-textarea label{font-size:18px;line-height:36px}}form .widget.widget-text.focused label,form .widget.widget-textarea.focused label{transition:all .2s linear;top:0;font-size:12px;line-height:19px}form input[type=text],form input[type=email],form input[type=tel]{height:28px;margin-bottom:15px}@media screen and (max-width:1600px){form input[type=text],form input[type=email],form input[type=tel]{margin-bottom:10px}}form input[type=text],form input[type=email],form input[type=tel],form textarea{padding:10px;width:calc(100% - 20px);border:0}form textarea{padding-top:20px;height:270px}@media screen and (max-width:1600px){form textarea{height:190px}}form .widget-checkbox{margin-top:10px}form .widget-checkbox fieldset{border:0;margin:0;padding:0;font-size:16px;line-height:29px;font-family:"05-brother1816-book",sans-serif;font-weight:400;font-style:normal}@media screen and (max-width:1600px){form .widget-checkbox fieldset{font-size:14px;line-height:27px}}form .widget-checkbox label{font-size:16px;line-height:29px;font-family:"05-brother1816-book",sans-serif;font-weight:400;font-style:normal}@media screen and (max-width:1600px){form .widget-checkbox label{font-size:14px;line-height:27px}}form .widget-checkbox span{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;scrollbar-width:0;-webkit-box-align:start;-webkit-align-items:start;-ms-flex-align:start;align-items:start}form .widget-checkbox span::-webkit-scrollbar{display:none!important}form .widget-checkbox span input{margin-top:8px;margin-right:10px;flex-shrink:0;min-width:20px}
