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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

header,footer,nav,section,aside,main,article,figure,figcaption{display:block}body,div,h1,h2,h3,h4,h5,h6,p,blockquote,pre,code,ol,ul,li,dl,dt,dd,figure,table,th,td,form,fieldset,legend,input,textarea{margin:0;padding:0}table{border-spacing:0;border-collapse:collapse}caption,th,td{text-align:left;text-align:start;vertical-align:top}abbr,acronym{font-variant:normal;border-bottom:1px dotted #666;cursor:help}blockquote,q{quotes:none}fieldset,img,iframe{border:0}ul{list-style-type:none}sup{vertical-align:text-top}sub{vertical-align:text-bottom}del{text-decoration:line-through}ins{text-decoration:none}body{font:12px/1 "Lucida Grande","Lucida Sans Unicode",Verdana,sans-serif;color:#000}input,button,textarea,select{font-family:inherit;font-size:99%;font-weight:inherit}pre,code{font-family:Monaco,monospace}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:400}h1{font-size:1.8333em}h2{font-size:1.6667em}h3{font-size:1.5em}h4{font-size:1.3333em}table{font-size:inherit}caption,th{font-weight:700}a{color:#00f}h1,h2,h3,h4,h5,h6{margin-top:1em}h1,h2,h3,h4,h5,h6,p,pre,blockquote,table,ol,ul,form{margin-bottom:12px}
.glightbox-container{width:100%;height:100%;position:fixed;top:0;left:0;z-index:999999!important;overflow:hidden;-ms-touch-action:none;touch-action:none;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;-ms-text-size-adjust:100%;text-size-adjust:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;outline:0}.glightbox-container.inactive{display:none}.glightbox-container .gcontainer{position:relative;width:100%;height:100%;z-index:9999;overflow:hidden}.glightbox-container .gslider{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;height:100%;left:0;top:0;width:100%;position:relative;overflow:hidden;display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.glightbox-container .gslide{width:100%;position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;opacity:0}.glightbox-container .gslide.current{opacity:1;z-index:99999;position:relative}.glightbox-container .gslide.prev{opacity:1;z-index:9999}.glightbox-container .gslide-inner-content{width:100%}.glightbox-container .ginner-container{position:relative;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;max-width:100%;margin:auto;height:100vh}.glightbox-container .ginner-container.gvideo-container{width:100%}.glightbox-container .ginner-container.desc-bottom,.glightbox-container .ginner-container.desc-top{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.glightbox-container .ginner-container.desc-left,.glightbox-container .ginner-container.desc-right{max-width:100%!important}.gslide iframe,.gslide video{outline:0!important;border:none;min-height:165px;-webkit-overflow-scrolling:touch;-ms-touch-action:auto;touch-action:auto}.gslide:not(.current){pointer-events:none}.gslide-image{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.gslide-image img{max-height:100vh;display:block;padding:0;float:none;outline:0;border:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:100vw;width:auto;height:auto;-o-object-fit:cover;object-fit:cover;-ms-touch-action:none;touch-action:none;margin:auto;min-width:200px}.desc-bottom .gslide-image img,.desc-top .gslide-image img{width:auto}.desc-left .gslide-image img,.desc-right .gslide-image img{width:auto;max-width:100%}.gslide-image img.zoomable{position:relative}.gslide-image img.dragging{cursor:-webkit-grabbing!important;cursor:grabbing!important;-webkit-transition:none;transition:none}.gslide-video{position:relative;max-width:100vh;width:100%!important}.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster{display:none}.gslide-video .gvideo-wrapper{width:100%;margin:auto}.gslide-video::before{content:'';position:absolute;width:100%;height:100%;background:rgba(255,0,0,.34);display:none}.gslide-video.playing::before{display:none}.gslide-video.fullscreen{max-width:100%!important;min-width:100%;height:75vh}.gslide-video.fullscreen video{max-width:100%!important;width:100%!important}.gslide-inline{background:#fff;text-align:left;max-height:calc(100vh - 40px);overflow:auto;max-width:100%;margin:auto}.gslide-inline .ginlined-content{padding:20px;width:100%}.gslide-inline .dragging{cursor:-webkit-grabbing!important;cursor:grabbing!important;-webkit-transition:none;transition:none}.ginlined-content{overflow:auto;display:block!important;opacity:1}.gslide-external{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;min-width:100%;background:#fff;padding:0;overflow:auto;max-height:75vh;height:100%}.gslide-media{display:-webkit-box;display:-ms-flexbox;display:flex;width:auto}.zoomed .gslide-media{-webkit-box-shadow:none!important;box-shadow:none!important}.desc-bottom .gslide-media,.desc-top .gslide-media{margin:0 auto;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.gslide-description{position:relative;-webkit-box-flex:1;-ms-flex:1 0 100%;flex:1 0 100%}.gslide-description.description-left,.gslide-description.description-right{max-width:100%}.gslide-description.description-bottom,.gslide-description.description-top{margin:0 auto;width:100%}.gslide-description p{margin-bottom:12px}.gslide-description p:last-child{margin-bottom:0}.zoomed .gslide-description{display:none}.glightbox-button-hidden{display:none}.glightbox-mobile .glightbox-container .gslide-description{height:auto!important;width:100%;position:absolute;bottom:0;padding:19px 11px;max-width:100vw!important;-webkit-box-ordinal-group:3!important;-ms-flex-order:2!important;order:2!important;max-height:78vh;overflow:auto!important;background:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0)),to(rgba(0,0,0,.75)));background:linear-gradient(to bottom,rgba(0,0,0,0) 0,rgba(0,0,0,.75) 100%);-webkit-transition:opacity .3s linear;transition:opacity .3s linear;padding-bottom:50px}.glightbox-mobile .glightbox-container .gslide-title{color:#fff;font-size:1em}.glightbox-mobile .glightbox-container .gslide-desc{color:#a1a1a1}.glightbox-mobile .glightbox-container .gslide-desc a{color:#fff;font-weight:700}.glightbox-mobile .glightbox-container .gslide-desc *{color:inherit}.glightbox-mobile .glightbox-container .gslide-desc .desc-more{color:#fff;opacity:.4}.gdesc-open .gslide-media{-webkit-transition:opacity .5s ease;transition:opacity .5s ease;opacity:.4}.gdesc-open .gdesc-inner{padding-bottom:30px}.gdesc-closed .gslide-media{-webkit-transition:opacity .5s ease;transition:opacity .5s ease;opacity:1}.greset{-webkit-transition:all .3s ease;transition:all .3s ease}.gabsolute{position:absolute}.grelative{position:relative}.glightbox-desc{display:none!important}.glightbox-open{overflow:hidden}.gloader{height:25px;width:25px;-webkit-animation:lightboxLoader .8s infinite linear;animation:lightboxLoader .8s infinite linear;border:2px solid #fff;border-right-color:transparent;border-radius:50%;position:absolute;display:block;z-index:9999;left:0;right:0;margin:0 auto;top:47%}.goverlay{width:100%;height:calc(100vh + 1px);position:fixed;top:-1px;left:0;background:#000;will-change:opacity}.glightbox-mobile .goverlay{background:#000}.gclose,.gnext,.gprev{z-index:99999;cursor:pointer;width:26px;height:44px;border:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.gclose svg,.gnext svg,.gprev svg{display:block;width:25px;height:auto;margin:0;padding:0}.gclose.disabled,.gnext.disabled,.gprev.disabled{opacity:.1}.gclose .garrow,.gnext .garrow,.gprev .garrow{stroke:#fff}.gbtn.focused{outline:2px solid #0f3d81}iframe.wait-autoplay{opacity:0}.glightbox-closing .gclose,.glightbox-closing .gnext,.glightbox-closing .gprev{opacity:0!important}.glightbox-clean .gslide-description{background:#fff}.glightbox-clean .gdesc-inner{padding:22px 20px}.glightbox-clean .gslide-title{font-size:1em;font-weight:400;font-family:arial;color:#000;margin-bottom:19px;line-height:1.4em}.glightbox-clean .gslide-desc{font-size:.86em;margin-bottom:0;font-family:arial;line-height:1.4em}.glightbox-clean .gslide-video{background:#000}.glightbox-clean .gclose,.glightbox-clean .gnext,.glightbox-clean .gprev{background-color:rgba(0,0,0,.75);border-radius:4px}.glightbox-clean .gclose path,.glightbox-clean .gnext path,.glightbox-clean .gprev path{fill:#fff}.glightbox-clean .gprev{position:absolute;top:-100%;left:30px;width:40px;height:50px}.glightbox-clean .gnext{position:absolute;top:-100%;right:30px;width:40px;height:50px}.glightbox-clean .gclose{width:35px;height:35px;top:15px;right:10px;position:absolute}.glightbox-clean .gclose svg{width:18px;height:auto}.glightbox-clean .gclose:hover{opacity:1}.gfadeIn{-webkit-animation:gfadeIn .5s ease;animation:gfadeIn .5s ease}.gfadeOut{-webkit-animation:gfadeOut .5s ease;animation:gfadeOut .5s ease}.gslideOutLeft{-webkit-animation:gslideOutLeft .3s ease;animation:gslideOutLeft .3s ease}.gslideInLeft{-webkit-animation:gslideInLeft .3s ease;animation:gslideInLeft .3s ease}.gslideOutRight{-webkit-animation:gslideOutRight .3s ease;animation:gslideOutRight .3s ease}.gslideInRight{-webkit-animation:gslideInRight .3s ease;animation:gslideInRight .3s ease}.gzoomIn{-webkit-animation:gzoomIn .5s ease;animation:gzoomIn .5s ease}.gzoomOut{-webkit-animation:gzoomOut .5s ease;animation:gzoomOut .5s ease}@-webkit-keyframes lightboxLoader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes lightboxLoader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes gfadeIn{from{opacity:0}to{opacity:1}}@keyframes gfadeIn{from{opacity:0}to{opacity:1}}@-webkit-keyframes gfadeOut{from{opacity:1}to{opacity:0}}@keyframes gfadeOut{from{opacity:1}to{opacity:0}}@-webkit-keyframes gslideInLeft{from{opacity:0;-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0)}to{visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes gslideInLeft{from{opacity:0;-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0)}to{visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@-webkit-keyframes gslideOutLeft{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0);opacity:0;visibility:hidden}}@keyframes gslideOutLeft{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0);opacity:0;visibility:hidden}}@-webkit-keyframes gslideInRight{from{opacity:0;visibility:visible;-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes gslideInRight{from{opacity:0;visibility:visible;-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@-webkit-keyframes gslideOutRight{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0);opacity:0}}@keyframes gslideOutRight{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0);opacity:0}}@-webkit-keyframes gzoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:1}}@keyframes gzoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:1}}@-webkit-keyframes gzoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes gzoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@media (min-width:769px){.glightbox-container .ginner-container{width:auto;height:auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.glightbox-container .ginner-container.desc-top .gslide-description{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.glightbox-container .ginner-container.desc-top .gslide-image,.glightbox-container .ginner-container.desc-top .gslide-image img{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.glightbox-container .ginner-container.desc-left .gslide-description{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.glightbox-container .ginner-container.desc-left .gslide-image{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.gslide-image img{max-height:97vh;max-width:100%}.gslide-image img.zoomable{cursor:-webkit-zoom-in;cursor:zoom-in}.zoomed .gslide-image img.zoomable{cursor:-webkit-grab;cursor:grab}.gslide-inline{max-height:95vh}.gslide-external{max-height:100vh}.gslide-description.description-left,.gslide-description.description-right{max-width:275px}.glightbox-open{height:auto}.goverlay{background:rgba(0,0,0,.92)}.glightbox-clean .gslide-media{-webkit-box-shadow:1px 2px 9px 0 rgba(0,0,0,.65);box-shadow:1px 2px 9px 0 rgba(0,0,0,.65)}.glightbox-clean .description-left .gdesc-inner,.glightbox-clean .description-right .gdesc-inner{position:absolute;height:100%;overflow-y:auto}.glightbox-clean .gclose,.glightbox-clean .gnext,.glightbox-clean .gprev{background-color:rgba(0,0,0,.32)}.glightbox-clean .gclose:hover,.glightbox-clean .gnext:hover,.glightbox-clean .gprev:hover{background-color:rgba(0,0,0,.7)}.glightbox-clean .gprev{top:45%}.glightbox-clean .gnext{top:45%}}@media (min-width:992px){.glightbox-clean .gclose{opacity:.7;right:20px}}@media screen and (max-height:420px){.goverlay{background:#000}}

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: 64em) {
  .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: 64em) {
  .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: 64em) {
  .pull-right-md {
    grid-column-end: -1;
  }
  
  .pull-left-md {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}

@media screen and (min-width: 64em) {
  .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: 64em) {
  .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: 87.5em) {
  .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: 87.5em) {
  .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: 87.5em) {
  .pull-right-lg {
    grid-column-end: -1;
  }
  
  .pull-left-lg {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}

@media screen and (min-width: 87.5em) {
  .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: 87.5em) {
  .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: 118.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: 118.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: 118.75em) {
  .pull-right-xl {
    grid-column-end: -1;
  }
  
  .pull-left-xl {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}

@media screen and (min-width: 118.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: 118.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;
  }

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




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

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

@charset "UTF-8";@font-face{font-family:slick;src:url(../../files/die-oralchirurgen/assets/js/slick-slider/fonts/slick.eot);src:url(../../files/die-oralchirurgen/assets/js/slick-slider/fonts/slick.eot?#iefix) format("embedded-opentype"),url(../../files/die-oralchirurgen/assets/js/slick-slider/fonts/slick.woff) format("woff"),url(../../files/die-oralchirurgen/assets/js/slick-slider/fonts/slick.ttf) format("truetype"),url(../../files/die-oralchirurgen/assets/js/slick-slider/fonts/slick.svg#slick) format("svg");font-weight:400;font-style:normal}.slick-loading .slick-list{background:#fff url(../../files/die-oralchirurgen/assets/js/slick-slider/ajax-loader.gif) center center no-repeat}.slick-next,.slick-prev{position:absolute;top:50%;display:block;padding:0;height:20px;width:20px;line-height:0;font-size:0;cursor:pointer;background:0 0;color:transparent;border:none;transform:translate(0,-50%)}.slick-next:focus .slick-next-icon,.slick-next:focus .slick-prev-icon,.slick-next:hover .slick-next-icon,.slick-next:hover .slick-prev-icon,.slick-prev:focus .slick-next-icon,.slick-prev:focus .slick-prev-icon,.slick-prev:hover .slick-next-icon,.slick-prev:hover .slick-prev-icon{opacity:1}.slick-next:focus,.slick-prev:focus{top:calc(50% - 1px)}.slick-next:focus .slick-next-icon,.slick-next:focus .slick-prev-icon,.slick-prev:focus .slick-next-icon,.slick-prev:focus .slick-prev-icon{color:orange;font-size:28px;margin-left:-2px}.slick-next.slick-disabled,.slick-prev.slick-disabled{cursor:default}.slick-next.slick-disabled .slick-next-icon,.slick-next.slick-disabled .slick-prev-icon,.slick-prev.slick-disabled .slick-next-icon,.slick-prev.slick-disabled .slick-prev-icon{opacity:.25}.slick-next .slick-next-icon,.slick-next .slick-prev-icon,.slick-prev .slick-next-icon,.slick-prev .slick-prev-icon{display:block;color:#000;opacity:.75;font-family:slick;font-size:24px;line-height:1}.slick-prev{left:-25px}[dir=rtl] .slick-prev{left:auto;right:-25px}.slick-prev .slick-prev-icon:before{content:"←"}[dir=rtl] .slick-prev .slick-prev-icon:before{content:"→"}.slick-next{right:-25px}[dir=rtl] .slick-next{left:-25px;right:auto}.slick-next .slick-next-icon:before{content:"→"}[dir=rtl] .slick-next .slick-next-icon:before{content:"←"}.slick-slider{margin-bottom:30px}.slick-slider.slick-dotted{margin-bottom:60px}.slick-dots{position:absolute;bottom:-30px;display:block;padding:0;margin:0;width:100%;list-style:none;text-align:center}.slick-dots li{position:relative;display:inline-block;margin:0 5px;padding:0}.slick-dots li button{display:block;height:20px;width:20px;margin-top:-4px;margin-left:-4px;line-height:0;font-size:0;color:transparent;border:0;background:0 0;cursor:pointer}.slick-dots li button:focus .slick-dot-icon,.slick-dots li button:hover .slick-dot-icon{opacity:1}.slick-dots li button:focus .slick-dot-icon:before{color:orange}.slick-dots li button .slick-dot-icon{color:#000;opacity:.25}.slick-dots li button .slick-dot-icon:before{position:absolute;top:0;left:0;content:"•";font-family:slick;font-size:12px;line-height:1;text-align:center;transition:all .05s linear}.slick-dots li.slick-active button:focus .slick-dot-icon{color:orange;opacity:1}.slick-dots li.slick-active button .slick-dot-icon{color:#000;opacity:1}.slick-dots li.slick-active button .slick-dot-icon:before{margin-top:-3px;margin-left:-2px;font-size:18px}.slick-sr-only{border:0!important;clip:rect(1px,1px,1px,1px)!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;width:1px!important;white-space:nowrap!important}.slick-autoplay-toggle-button{position:absolute;left:5px;bottom:-32px;z-index:10;opacity:.75;background:0 0;border:0;cursor:pointer;color:#000}.slick-autoplay-toggle-button:focus,.slick-autoplay-toggle-button:hover{opacity:1}.slick-autoplay-toggle-button:focus{color:orange}.slick-autoplay-toggle-button .slick-pause-icon:before{content:"⏸";width:20px;height:20px;font-family:slick;font-size:18px;font-weight:400;line-height:20px;text-align:center}.slick-autoplay-toggle-button .slick-play-icon:before{content:"▶";width:20px;height:20px;font-family:slick;font-size:18px;font-weight:400;line-height:20px;text-align:center}
.slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;overflow:hidden;display:block;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{position:relative;left:0;top:0;display:block;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{content:"";display:table}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{float:left;height:100%;min-height:1px;display:none}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}
@font-face{font-family:BlauerNue-Regular;src:url(/files/die-oralchirurgen/assets/fonts/BlauerNue-Regular.woff2) format('woff2'),url(/files/die-oralchirurgen/assets/fonts/BlauerNue-Regular.woff) format('woff');font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:BlauerNue-SemiBold;src:url(/files/die-oralchirurgen/assets/fonts/BlauerNue-SemiBold.woff2) format('woff2'),url(/files/die-oralchirurgen/assets/fonts/BlauerNue-SemiBold.woff) format('woff');font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:BlauerNue-Light;src:url(/files/die-oralchirurgen/assets/fonts/BlauerNue-Light.woff2) format('woff2'),url(/files/die-oralchirurgen/assets/fonts/BlauerNue-SLight.woff) format('woff');font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:BlauerNue-ExtraBold;src:url(/files/die-oralchirurgen/assets/fonts/BlauerNue-ExtraBold.woff2) format('woff2'),url(/files/die-oralchirurgen/assets/fonts/BlauerNue-ExtraBold.woff) format('woff');font-weight:400;font-style:normal;font-display:swap}.border-radius-image{border-radius:65px}.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}.flex-inline-container-wrap{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.grid-settings{grid-column:none;grid-column-start:2}.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-space-around{-webkit-box-pack:justify;-webkit-justify-content:space-around;-ms-flex-pack:justify;justify-content:space-around}.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}.filter-grey{filter:grayscale(100%);-webkit-filter:grayscale(100%);-moz-filter:grayscale(100%);-ms-filter:grayscale(100%);-o-filter:grayscale(100%);filter:url(../../files/die-oralchirurgen/assets/css/desaturate.svg#greyscale);filter:gray;-webkit-filter:grayscale(1)}.font-size-12{font-size:12px;line-height:14px}.font-size-16{font-size:16px;line-height:26px}.font-size-18{font-size:18px;line-height:22px}@media screen and (max-width:1400px){.font-size-18{font-size:16px;line-height:20px}}.font-size-23{font-size:23px;line-height:28px}@media screen and (max-width:1600px){.font-size-23{font-size:18px;line-height:22px}}@media screen and (max-width:550px){.font-size-23{font-size:16px;line-height:20px}}.font-size-25{font-size:25px;line-height:31px}@media screen and (max-width:1600px){.font-size-25{font-size:22px;line-height:29px}}@media screen and (max-width:1400px){.font-size-25{font-size:18px;line-height:25px}}@media screen and (max-width:1400px){.font-size-25{font-size:16px;line-height:21px}}.font-size-29{font-size:29px;line-height:35px}@media screen and (max-width:1900px){.font-size-29{font-size:22px;line-height:27px}}@media screen and (max-width:1600px){.font-size-29{font-size:20px;line-height:25px}}@media screen and (max-width:1400px){.font-size-29{font-size:18px;line-height:23px}}@media screen and (max-width:550px){.font-size-29{font-size:16px;line-height:21px}}.font-size-33{font-size:33px;line-height:28px}@media screen and (max-width:1400px){.font-size-33{font-size:23px;line-height:18px}}@media screen and (max-width:767px){.font-size-33{font-size:16px;line-height:20px}}@media screen and (max-width:550px){.font-size-33{font-size:18px;line-height:23px}}.font-size-37{font-size:37px;line-height:45px}@media screen and (max-width:1600px){.font-size-37{font-size:30px;line-height:38px}}@media screen and (max-width:991px){.font-size-37{font-size:28px;line-height:28px}}.font-size-41{font-size:41px;line-height:50px}@media screen and (max-width:1900px){.font-size-41{font-size:30px;line-height:36px}}@media screen and (max-width:550px){.font-size-41{font-size:28px;line-height:34px}}.font-size-46{font-size:46px;line-height:100%}@media screen and (max-width:1600px){.font-size-46{font-size:43px;line-height:46px}}@media screen and (max-width:1400px){.font-size-46{font-size:30px;line-height:33px}}@media screen and (max-width:767px){.font-size-46{font-size:36px;line-height:31px}}.font-size-50{font-size:50px;line-height:61px}@media screen and (max-width:1900px){.font-size-50{font-size:40px;line-height:51px}}@media screen and (max-width:1600px){.font-size-50{font-size:35px;line-height:46px}}@media screen and (max-width:550px){.font-size-50{font-size:30px;line-height:41px}}@media screen and (max-width:350px){.font-size-50{font-size:27px;line-height:38px}}.font-size-57{font-size:57px;line-height:69px}@media screen and (max-width:1400px){.font-size-57{font-size:47px;line-height:59px}}@media screen and (max-width:767px){.font-size-57{font-size:35px;line-height:42px}}.font-size-58{font-size:58px;line-height:56px}@media screen and (max-width:1900px){.font-size-58{font-size:48px;line-height:46px}}@media screen and (max-width:1600px){.font-size-58{font-size:42px;line-height:40px}}@media screen and (max-width:1400px){.font-size-58{font-size:32px;line-height:30px}}@media screen and (max-width:767px){.font-size-58{font-size:30px;line-height:26px}}@media screen and (max-width:767px){.font-size-58{font-size:23px;line-height:19px}}.font-size-68{font-size:68px;line-height:82px}@media screen and (max-width:1600px){.font-size-68{font-size:53px;line-height:54px}}@media screen and (max-width:1400px){.font-size-68{font-size:43px;line-height:44px}}.font-size-70{font-size:70px;line-height:61px}@media screen and (max-width:1900px){.font-size-70{font-size:58px;line-height:49px}}@media screen and (max-width:1600px){.font-size-70{font-size:52px;line-height:45px}}@media screen and (max-width:1400px){.font-size-70{font-size:44px;line-height:45px}}.font-size-72{font-size:72px;line-height:63px}@media screen and (max-width:1900px){.font-size-72{font-size:52px;line-height:53px}}@media screen and (max-width:1600px){.font-size-72{font-size:42px;line-height:43px}}@media screen and (max-width:1400px){.font-size-72{font-size:32px;line-height:33px}}@media screen and (max-width:767px){.font-size-72{font-size:52px;line-height:46px}}@media screen and (max-width:550px){.font-size-72{font-size:39px;line-height:47px}}.font-size-92{font-size:90px;line-height:110px}@media screen and (max-width:1900px){.font-size-92{font-size:71px;line-height:100px}}@media screen and (max-width:1600px){.font-size-92{font-size:62px;line-height:90px}}@media screen and (max-width:1290px){.font-size-92{font-size:50px;line-height:53px}}@media screen and (max-width:991px){.font-size-92{font-size:36px;line-height:39px}}@media screen and (max-width:550px){.font-size-92{font-size:32px;line-height:35px}}.font-size-96{font-size:96px;line-height:100%}@media screen and (max-width:1900px){.font-size-96{font-size:70px}}@media screen and (max-width:1600px){.font-size-96{font-size:60px}}@media screen and (max-width:1400px){.font-size-96{font-size:56px;line-height:61px}}@media screen and (max-width:767px){.font-size-96{font-size:51px;line-height:61px}}@media screen and (max-width:550px){.font-size-96{font-size:39px;line-height:41px}}@media screen and (max-width:350px){.font-size-96{font-size:27px;line-height:38px}}.font-size-119{font-size:119px;line-height:104px}@media screen and (max-width:1600px){.font-size-119{font-size:105px;line-height:90px}}@media screen and (max-width:1400px){.font-size-119{font-size:95px;line-height:80px}}@media screen and (max-width:1024px){.font-size-119{font-size:65px;line-height:50px}}@media screen and (max-width:767px){.font-size-119{font-size:44px;line-height:43px}}@media screen and (max-width:350px){.font-size-119{font-size:40px;line-height:39px}}.font-size-130{font-size:130px;line-height:113px}@media screen and (max-width:1900px){.font-size-130{font-size:115px;line-height:98px}}@media screen and (max-width:1600px){.font-size-130{font-size:100px;line-height:83px}}@media screen and (max-width:1400px){.font-size-130{font-size:80px;line-height:63px}}@media screen and (max-width:767px){.font-size-130{font-size:70px;line-height:53px}}@media screen and (max-width:550px){.font-size-130{font-size:32px;line-height:23px}}.font-size-154{font-size:154px;line-height:80%}@media screen and (max-width:1400px){.font-size-154{font-size:145px}}@media screen and (max-width:1220px){.font-size-154{font-size:125px}}@media screen and (max-width:767px){.font-size-154{font-size:101px}}.font-size-157{font-size:157px;line-height:140px}@media screen and (max-width:1900px){.font-size-157{font-size:147px;line-height:130px}}@media screen and (max-width:1600px){.font-size-157{font-size:137px;line-height:120px}}@media screen and (max-width:1400px){.font-size-157{font-size:117px;line-height:100px}}@media screen and (max-width:1220px){.font-size-157{font-size:97px;line-height:80px}}@media screen and (max-width:991px){.font-size-157{font-size:77px;line-height:60px}}@media screen and (max-width:767px){.font-size-157{font-size:57px;line-height:56px}}@media screen and (max-width:550px){.font-size-157{font-size:47px;line-height:56px}}@media screen and (max-width:400px){.font-size-157{font-size:37px;line-height:56px}}.font-size-162{font-size:162px;line-height:141px}@media screen and (max-width:1400px){.font-size-162{font-size:142px;line-height:121px}}@media screen and (max-width:767px){.font-size-162{font-size:92px;line-height:81px}}@media screen and (max-width:550px){.font-size-162{font-size:69px;line-height:59px}}.font-size-192{font-size:192px;line-height:167px}@media screen and (max-width:1900px){.font-size-192{font-size:162px;line-height:137px}}@media screen and (max-width:1600px){.font-size-192{font-size:152px;line-height:127px}}@media screen and (max-width:1400px){.font-size-192{font-size:122px;line-height:97px}}@media screen and (max-width:1220px){.font-size-192{font-size:102px;line-height:77px}}@media screen and (max-width:991px){.font-size-192{font-size:96px;line-height:83px}}@media screen and (max-width:767px){.font-size-192{font-size:50px;line-height:43px}}@media screen and (max-width:550px){.font-size-192{font-size:40px;line-height:33px}}h1,h2,h3,h4{margin:0;padding:0}html{--grid__gutter:0 70px;-webkit-text-size-adjust:none}@media screen and (max-width:1400px){html{--grid__gutter:0 30px}}@media screen and (max-width:550px){html{--grid__gutter:0 0}}body{font-family:BlauerNue-Regular,sans-serif;font-weight:500;font-size:16px;line-height:26px;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;overflow-x:hidden;color:#3d008a}.standard img,.standard video{max-width:100%;width:100%;height:auto}@media screen and (max-width:1024px){.mobile-hidden{display:none}}.mobile-show,.more-link{display:none!important}@media screen and (max-width:1024px){.mobile-show,.more-link{display:block!important}}span.mobile-show{display:none!important}@media screen and (max-width:1024px){span.mobile-show{display:inline-block!important}}@media screen and (max-width:1024px){.more-link{display:block;text-decoration:none;font-family:BlauerNue-SemiBold,sans-serif}.more-link:before{content:">>";display:inline-block;margin-right:5px}.more-text{display:none}}.rte ul li{padding-left:10px;position:relative}.rte ul li:before{content:"-";display:block;position:absolute;left:0;top:0}.yellow-text{color:#FF0}.highlight{font-size:70px;line-height:61px;font-family:BlauerNue-ExtraBold,sans-serif}@media screen and (max-width:1900px){.highlight{font-size:58px;line-height:49px}}@media screen and (max-width:1600px){.highlight{font-size:52px;line-height:45px}}@media screen and (max-width:1400px){.highlight{font-size:44px;line-height:45px}}.highlight.small-text{font-size:41px;line-height:50px;display:block;margin-bottom:0}@media screen and (max-width:1900px){.highlight.small-text{font-size:30px;line-height:36px}}@media screen and (max-width:550px){.highlight.small-text{font-size:28px;line-height:34px}}strong{font-family:BlauerNue-ExtraBold,sans-serif}.invisible{display:none;visibility:hidden}#wrapper{overflow-x:hidden}#footer .mod_article>.inside,.content-page #header .logo,.mod_article>.inside{max-width:1692px;padding:0 16px;margin:0 auto;position:relative;z-index:99}@media screen and (max-width:1900px){#footer .mod_article>.inside,.content-page #header .logo,.mod_article>.inside{max-width:1450px}}@media screen and (max-width:1600px){#footer .mod_article>.inside,.content-page #header .logo,.mod_article>.inside{max-width:1350px}}@media screen and (max-width:1400px){#footer .mod_article>.inside,.content-page #header .logo,.mod_article>.inside{max-width:1150px}}@media screen and (max-width:1220px){#footer .mod_article>.inside,.content-page #header .logo,.mod_article>.inside{max-width:950px}}@media screen and (max-width:1024px){#footer .mod_article>.inside,.content-page #header .logo,.mod_article>.inside{padding:0 25px}}.btn-link-2,.content-hyperlink a{font-family:BlauerNue-SemiBold,sans-serif;font-size:25px;line-height:31px;padding:10px 75px 10px 30px;color:#3d008a;display:inline-block;text-decoration:none;transition:all .2s ease;border:5px solid #3d008a;border-radius:38px;margin-top:-15px;position:relative}@media screen and (max-width:1600px){.btn-link-2,.content-hyperlink a{font-size:22px;line-height:29px}}@media screen and (max-width:1400px){.btn-link-2,.content-hyperlink a{font-size:18px;line-height:25px}}@media screen and (max-width:1400px){.btn-link-2,.content-hyperlink a{font-size:16px;line-height:21px}}.btn-link-2:hover,.content-hyperlink a:hover{background-color:#FF0}.btn-link-2:after,.content-hyperlink a:after{background:url(/files/die-oralchirurgen/assets/img/btn-link-arrow.svg) no-repeat;width:13px;height:20px;background-size:contain;content:"";display:block;position:absolute;right:22px;top:50%;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);-o-transform:translateY(-50%);transform:translateY(-50%)}.btn-link-2.btn-small,.content-hyperlink a.btn-small{font-size:16px;line-height:26px;padding:5px 30px 3px 15px;border:3px solid #3d008a}.btn-link-2.btn-small:after,.content-hyperlink a.btn-small:after{right:10px}@media screen and (max-width:1400px){.btn-link-2,.content-hyperlink a{padding:6px 55px 6px 20px}.btn-link-2.btn-small,.content-hyperlink a.btn-small{border-width:2px}}.bg-blue{background-color:#3d008a;color:#fff}.bg-page-black #container,.bg-page-black #footer-top{background-color:#000;color:#fff}.bg-page-black #header-custom .info a{color:#fff}.bg-page-black #header-custom .info a svg path{fill:#fff}.bg-page-black #header-custom .info a svg circle{fill:transparent}.bg-page-black #header-custom .hamburger .bar{background-color:#fff}.bg-page-black #header-custom .background .media .controls svg path,.bg-page-black #header-custom .background .media .controls svg rect{fill:#fff!important}.bg-page-black #header-custom .background .media .controls .line{background-color:#fff}.bg-page-blue #container,.bg-page-blue #footer-top{background-color:#3d008a;color:#fff}.bg-page-blue #header-custom .info a{color:#fff}.bg-page-blue #header-custom .info a svg path{fill:#fff}.bg-page-blue #header-custom .info a svg circle{fill:transparent}.bg-page-blue #header-custom .hamburger .bar{background-color:#fff}.bg-page-blue #header-custom .background .media .controls svg path,.bg-page-blue #header-custom .background .media .controls svg rect{fill:#fff!important}.bg-page-blue #header-custom .background .media .controls .line{background-color:#fff}.bg-page-blue .content-hyperlink a{border-color:#FF0;color:#FF0}.bg-page-blue .content-hyperlink a:after{background-image:url(/files/die-oralchirurgen/assets/img/btn-link-arrow-yellow.svg)}.bg-page-blue .content-hyperlink a:hover{background-color:#fff;color:#3d008a}.bg-page-blue .content-hyperlink a:hover:after{background-image:url(/files/die-oralchirurgen/assets/img/btn-link-arrow.svg)}a{color:inherit}.justify-end{text-align:right}@media screen and (max-width:767px){.justify-end{justify-self:auto}}.underline{position:relative;display:inline-block}.underline::after{content:'';position:absolute;bottom:0;left:0;background-repeat:no-repeat;background-size:100% auto;transform-origin:left center;transform:scaleX(0);transition:transform 1s ease-out;pointer-events:none;z-index:-1;transition-delay:.5s}.underline.line-lifestyle::after{background-image:url(/files/die-oralchirurgen/assets/img/animiation-lines/line-lifestyle.svg);width:240px;height:43px;bottom:-12px}@media screen and (max-width:1900px){.underline.line-lifestyle::after{width:150px;height:27px}}.underline.line-nicht::after{background-image:url(/files/die-oralchirurgen/assets/img/animiation-lines/line-nicht.svg);width:calc(100% + 10px);height:37px;bottom:-20px;left:-10px}.underline.line-normal::after{background-image:url(/files/die-oralchirurgen/assets/img/animiation-lines/line-normal.svg);width:calc(100% + 10px);height:37px;bottom:-20px;left:-10px}.underline.line-white-656::after{background-image:url(/files/die-oralchirurgen/assets/img/animiation-lines/line-white-656.svg);width:100%;height:18px}@media screen and (max-width:1600px){.underline.line-white-656::after{bottom:-15px}}.underline.underline-intro-1::after{background-image:url(/files/die-oralchirurgen/assets/img/animiation-lines/line-intro-zeile-1.svg);width:100%;height:37px;bottom:-20px}@media screen and (max-width:1600px){.underline.underline-intro-1::after{bottom:-20px}}@media screen and (max-width:550px){.underline.underline-intro-1::after{display:none}}.underline.underline-intro-1.underline-blue:after{background-image:url(/files/die-oralchirurgen/assets/img/animiation-lines/line-intro-zeile-1-blue.svg)}.underline.underline-intro-2::after{background-image:url(/files/die-oralchirurgen/assets/img/animiation-lines/line-intro-zeile-2.svg);width:100%;height:37px;bottom:-25px}@media screen and (max-width:1600px){.underline.underline-intro-2::after{bottom:-30px}}@media screen and (max-width:550px){.underline.underline-intro-2::after{display:none}}.underline.underline-unkompliziert::after{background-image:url(/files/die-oralchirurgen/assets/img/animiation-lines/line-unkompliziert.svg);width:240px;height:56px}.underline.underline-implantologie::after{background-image:url(/files/die-oralchirurgen/assets/img/animiation-lines/line-implantologie.svg);width:100%;height:35px}@media screen and (max-width:1900px){.underline.underline-implantologie::after{bottom:-20px}}.underline.visible::after{transform:scaleX(1)}.mark{position:relative}.mark.mark-circle:before{position:absolute;top:-10px;left:0;width:calc(100% + 10px);height:calc(100% + 10px);pointer-events:none;overflow:visible;content:"";background:url(/files/die-oralchirurgen/assets/img/animiation-lines/marker-circle.svg) no-repeat;background-size:contain;z-index:-1}.mark.mark-circle-2:before{position:absolute;top:-10px;left:-40px;width:calc(100% + 100px);height:calc(100% + 60px);pointer-events:none;overflow:visible;content:"";background:url(/files/die-oralchirurgen/assets/img/animiation-lines/marker-circle-2.svg) no-repeat;background-size:contain;z-index:-1}@media screen and (max-width:1290px){.mark.mark-circle-2:before{left:-10px}}@media screen and (max-width:550px){.mark.mark-circle-2:before{width:calc(100% + 50px)}}.mark.mark-circle-3:before{position:absolute;top:-25px;left:-100px;width:calc(100% + 50px);height:calc(100% + 50px);pointer-events:none;overflow:visible;content:"";background:url(/files/die-oralchirurgen/assets/img/animiation-lines/marker-circle-3.svg) no-repeat;background-size:contain;z-index:-1}@media screen and (max-width:1024px){.mark.mark-circle-3:before{left:-80px;width:calc(100% + 30px);height:calc(100% + 45px)}}@media screen and (max-width:767px){.mark.mark-circle-3:before{left:-60px;width:450px;height:125px}}.mark.mark-circle-4:before{position:absolute;top:-80px;left:-50px;width:395px;height:246px;pointer-events:none;overflow:visible;content:"";background:url(/files/die-oralchirurgen/assets/img/animiation-lines/marker-circle-4.svg) no-repeat;background-size:contain;z-index:-1}@media screen and (max-width:1900px){.mark.mark-circle-4:before{width:337px;height:210px}}@media screen and (max-width:1600px){.mark.mark-circle-4:before{top:-60px;left:-40px;width:274px;height:171px}}@media screen and (max-width:767px){.mark.mark-circle-4:before{width:200px;height:125px;top:-40px;left:-30px}}.mark.mark-square:before{position:absolute;top:0;left:-20px;width:calc(100% + 40px);height:100%;pointer-events:none;overflow:visible;content:"";background:url(/files/die-oralchirurgen/assets/img/animiation-lines/marker-square.svg) no-repeat;background-size:contain;z-index:-1}.mark:before{opacity:0;transform:scale(.95);transition:opacity .2s ease-out,transform .2s ease-out;will-change:opacity,transform}.mark.visible:before{opacity:1;transform:scale(1)}.content-player{position:relative}.content-player button{border:0;background-color:transparent;margin:0;padding:0;cursor:pointer}.content-player .controls{position:relative}.content-player .line{display:inline-block;width:3px;background-color:#fff;height:36px;margin:0 10px;position:relative;top:8px}.content-player .play-button{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);background-color:transparent;color:#fff;cursor:pointer;width:78px;height:78px;text-indent:-9999px;display:block;background:url(/files/die-oralchirurgen/assets/img/play-button.svg) no-repeat;background-size:contain;transition:all .3s}.content-player .play-button:hover{width:60px;height:60px}@media screen and (max-width:1600px){.content-player .play-button{width:78px;height:78px}}@media screen and (max-width:767px){.content-player .btn-pause svg{width:15px}.content-player .btn-play svg{width:12px}.content-player .line{margin:0 5px;height:25px;top:2px}}.content-btn-appointment{text-align:center;font-size:29px;line-height:35px}@media screen and (max-width:1900px){.content-btn-appointment{font-size:22px;line-height:27px}}@media screen and (max-width:1600px){.content-btn-appointment{font-size:20px;line-height:25px}}@media screen and (max-width:1400px){.content-btn-appointment{font-size:18px;line-height:23px}}@media screen and (max-width:550px){.content-btn-appointment{font-size:16px;line-height:21px}}.content-btn-appointment .contact-infos{margin-bottom:50px}.content-btn-appointment .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;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center;gap:15px;margin-bottom:50px}.content-btn-appointment .social-media-icons::-webkit-scrollbar{display:none!important}.content-btn-appointment .social-media-icons .icon-google img,.content-btn-appointment .social-media-icons .icon-google svg{width:62px;height:62px}.content-btn-appointment .social-media-icons .icon-insta img,.content-btn-appointment .social-media-icons .icon-insta svg{width:64px;height:64px}@media screen and (max-width:767px){.content-btn-appointment .contact-infos{margin-bottom:40px}.content-btn-appointment .social-media-icons{margin-bottom:40px}.content-btn-appointment .social-media-icons .icon-google img,.content-btn-appointment .social-media-icons .icon-google svg{width:45px;height:45px}.content-btn-appointment .social-media-icons .icon-insta img,.content-btn-appointment .social-media-icons .icon-insta svg{width:46px;height:46px}}.content-bg-image{position:relative}.content-bg-image .media figure{width:100%;height:1109px}.content-bg-image .media img,.content-bg-image .media video{width:100%;height:100%;object-fit:cover}.content-bg-image .text{color:#FF0;font-size:162px;line-height:141px;position:absolute;top:50%;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);-o-transform:translateY(-50%);transform:translateY(-50%);left:148px}@media screen and (max-width:1400px){.content-bg-image .text{font-size:142px;line-height:121px}}@media screen and (max-width:767px){.content-bg-image .text{font-size:92px;line-height:81px}}@media screen and (max-width:550px){.content-bg-image .text{font-size:69px;line-height:59px}}.content-headline{margin-bottom:85px}.content-headline .first,.content-headline .second{margin:0;padding:0}.content-headline .first{font-size:41px;line-height:50px;font-family:BlauerNue-ExtraBold,sans-serif}@media screen and (max-width:1900px){.content-headline .first{font-size:30px;line-height:36px}}@media screen and (max-width:550px){.content-headline .first{font-size:28px;line-height:34px}}.content-headline .second{font-size:29px;line-height:35px}@media screen and (max-width:1900px){.content-headline .second{font-size:22px;line-height:27px}}@media screen and (max-width:1600px){.content-headline .second{font-size:20px;line-height:25px}}@media screen and (max-width:1400px){.content-headline .second{font-size:18px;line-height:23px}}@media screen and (max-width:550px){.content-headline .second{font-size:16px;line-height:21px}}.content-headline.fontcolor-yellow{color:#FF0}.content-headline.fontcolor-yellow-white .first{color:#fff}.content-headline.fontcolor-yellow-white .second{color:#FF0}.content-headline.layout-next .first{text-transform:uppercase}.content-headline.layout-next .second{margin:0 0 5px 33px;display:inline-block}.content-zitat{padding-left:130px;position:relative;margin-left:70px;font-size:29px;line-height:35px}@media screen and (max-width:1900px){.content-zitat{font-size:22px;line-height:27px}}@media screen and (max-width:1600px){.content-zitat{font-size:20px;line-height:25px}}@media screen and (max-width:1400px){.content-zitat{font-size:18px;line-height:23px}}@media screen and (max-width:550px){.content-zitat{font-size:16px;line-height:21px}}.content-zitat .zitat{font-size:70px;line-height:61px;font-family:BlauerNue-ExtraBold,sans-serif;line-height:93px}@media screen and (max-width:1900px){.content-zitat .zitat{font-size:58px;line-height:49px}}@media screen and (max-width:1600px){.content-zitat .zitat{font-size:52px;line-height:45px}}@media screen and (max-width:1400px){.content-zitat .zitat{font-size:44px;line-height:45px}}@media screen and (max-width:1900px){.content-zitat .zitat{line-height:81px}}@media screen and (max-width:1600px){.content-zitat .zitat{line-height:68px}}@media screen and (max-width:1400px){.content-zitat .zitat{line-height:62px}}.content-zitat h2{font-size:29px;line-height:35px}@media screen and (max-width:1900px){.content-zitat h2{font-size:22px;line-height:27px}}@media screen and (max-width:1600px){.content-zitat h2{font-size:20px;line-height:25px}}@media screen and (max-width:1400px){.content-zitat h2{font-size:18px;line-height:23px}}@media screen and (max-width:550px){.content-zitat h2{font-size:16px;line-height:21px}}.content-zitat:before{content:"";background:url(/files/die-oralchirurgen/assets/img/icon-zitat.svg) no-repeat;width:108px;height:113px;display:block;position:absolute;left:0;top:-42px}@media screen and (max-width:1900px){.content-zitat{padding-left:90px}.content-zitat:before{width:78px;height:82px;background-size:contain;top:-36px}}@media screen and (max-width:991px){.content-zitat:before{width:68px;height:71px}}@media screen and (max-width:550px){.content-zitat{padding-left:70px}.content-zitat .zitat{font-size:34px;line-height:44px}.content-zitat:before{width:53px;height:56px;top:-19px}}.content-icon-list .icon-item{margin-bottom:54px;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;gap:30px}.content-icon-list .icon-item::-webkit-scrollbar{display:none!important}.content-icon-list .icon-item .icon{flex-basis:40%}.content-icon-list .icon-item .icon img{width:100%;height:auto;max-width:auto;display:block;border-radius:40px}.content-icon-list .icon-item .rte{flex-basis:60%;margin:20px 0 0 0}.content-icon-list .icon-item .rte h3{font-size:29px;line-height:35px}@media screen and (max-width:1900px){.content-icon-list .icon-item .rte h3{font-size:22px;line-height:27px}}@media screen and (max-width:1600px){.content-icon-list .icon-item .rte h3{font-size:20px;line-height:25px}}@media screen and (max-width:1400px){.content-icon-list .icon-item .rte h3{font-size:18px;line-height:23px}}@media screen and (max-width:550px){.content-icon-list .icon-item .rte h3{font-size:16px;line-height:21px}}.content-icon-list .icon-item .rte p{font-size:18px;line-height:22px}@media screen and (max-width:1400px){.content-icon-list .icon-item .rte p{font-size:16px;line-height:20px}}@media screen and (max-width:1400px){.content-icon-list .icon-item .icon img{width:130px;height:auto;border-radius:30px}}@media screen and (max-width:1024px){.content-icon-list .icon-item{grid-column:span 6/span 6}.content-icon-list .icon-item .icon{flex-shrink:0;flex-basis:auto}.content-icon-list .icon-item .icon img{width:90px;border-radius:20px}}@media screen and (max-width:767px){.content-icon-list .icon-item{margin-bottom:15px}.content-icon-list .icon-item .rte{margin-top:5px}}.content-circle-list .circle-item{display:inline-block;width:fit-content;margin-bottom:24px;margin-right:24px;perspective:1000px}.content-circle-list .circle-item:nth-child(1){display:block;width:100%;margin-right:0}.content-circle-list .circle{border:0;background-color:#fff;width:360px;height:360px;border-radius:360px;font-size:96px;line-height:100%;font-family:BlauerNue-ExtraBold,sans-serif;text-transform:uppercase;color:#3d008a;transition:transform 1s ease-in-out;transform-style:preserve-3d;transform:rotateY(180deg);cursor:pointer}@media screen and (max-width:1900px){.content-circle-list .circle{font-size:70px}}@media screen and (max-width:1600px){.content-circle-list .circle{font-size:60px}}@media screen and (max-width:1400px){.content-circle-list .circle{font-size:56px;line-height:61px}}@media screen and (max-width:767px){.content-circle-list .circle{font-size:51px;line-height:61px}}@media screen and (max-width:550px){.content-circle-list .circle{font-size:39px;line-height:41px}}@media screen and (max-width:350px){.content-circle-list .circle{font-size:27px;line-height:38px}}.content-circle-list .circle.bg-circle-yellow{background-color:#FF0}.content-circle-list .circle.visible{transform:rotateY(0)}.content-circle-list .layer-text{display:none}@media screen and (max-width:1900px){.content-circle-list .circle{width:300px;height:300px}}@media screen and (max-width:1600px){.content-circle-list .circle{width:280px;height:280px}}@media screen and (max-width:1400px){.content-circle-list .circle{width:230px;height:230px}}@media screen and (max-width:550px){.content-circle-list{width:100vw;margin:0 -25px}.content-circle-list .circle{width:179px;height:179px}.content-circle-list .circle-item{margin-right:11px;margin-bottom:11px}.content-circle-list .circle-item:last-child{margin-right:0}}@media screen and (max-width:350px){.content-circle-list .circle{width:162px;height:162px}}.content-benefits{padding-bottom:275px;position:relative;max-width:1434px}.content-benefits h3{font-size:29px;line-height:35px;margin-bottom:25px}@media screen and (max-width:1900px){.content-benefits h3{font-size:22px;line-height:27px}}@media screen and (max-width:1600px){.content-benefits h3{font-size:20px;line-height:25px}}@media screen and (max-width:1400px){.content-benefits h3{font-size:18px;line-height:23px}}@media screen and (max-width:550px){.content-benefits h3{font-size:16px;line-height:21px}}.content-benefits .headline{display:block;font-family:BlauerNue-ExtraBold,sans-serif}.content-benefits .headline.headline-1{color:#FF0;font-size:162px;line-height:141px;text-transform:uppercase;margin-bottom:60px}@media screen and (max-width:1400px){.content-benefits .headline.headline-1{font-size:142px;line-height:121px}}@media screen and (max-width:767px){.content-benefits .headline.headline-1{font-size:92px;line-height:81px}}@media screen and (max-width:550px){.content-benefits .headline.headline-1{font-size:69px;line-height:59px}}.content-benefits .headline.headline-2{position:relative;font-size:58px;line-height:56px}@media screen and (max-width:1900px){.content-benefits .headline.headline-2{font-size:48px;line-height:46px}}@media screen and (max-width:1600px){.content-benefits .headline.headline-2{font-size:42px;line-height:40px}}@media screen and (max-width:1400px){.content-benefits .headline.headline-2{font-size:32px;line-height:30px}}@media screen and (max-width:767px){.content-benefits .headline.headline-2{font-size:30px;line-height:26px}}@media screen and (max-width:767px){.content-benefits .headline.headline-2{font-size:23px;line-height:19px}}.content-benefits .headline.headline-2:before{content:"";height:10px;width:100%;background-color:#fff;display:block;margin-bottom:30px;margin-top:22px}.content-benefits .line-yellow{margin-top:-358px;position:absolute}.content-benefits .benefits{position:absolute;right:0;top:-180px;width:45%;height:430px}.content-benefits .benefits .list{margin:0;padding:0}.content-benefits .benefits .benefit-item{position:absolute;padding-left:30px;color:#FF0}.content-benefits .benefits .benefit-item:before{content:"";width:22px;height:22px;border-radius:22px;border:7px solid #FF0;background-color:transparent;position:absolute;top:0;left:0;box-sizing:border-box}.content-benefits .benefits .benefit-item:nth-child(1){top:0;left:180px}.content-benefits .benefits .benefit-item:nth-child(2){top:55px;left:50px}.content-benefits .benefits .benefit-item:nth-child(3){top:70px;left:280px}.content-benefits .benefits .benefit-item:nth-child(4){top:120px;left:110px}.content-benefits .benefits .benefit-item:nth-child(5){top:180px;left:380px}.content-benefits .benefits .benefit-item:nth-child(6){top:200px;left:-20px}.content-benefits .benefits .benefit-item:nth-child(7){top:240px;left:220px}.content-benefits .benefits .benefit-item:nth-child(8){top:300px;left:70px}.content-benefits .benefits .benefit-item:nth-child(9){top:320px;left:390px}.content-benefits .benefits .benefit-item:nth-child(10){top:350px;left:390px}.content-benefits .benefits .content-hyperlink{position:absolute;bottom:0;right:0}@media screen and (max-width:1600px){.content-benefits .benefits .content-hyperlink{bottom:5px}}@media screen and (max-width:1400px){.content-benefits .benefits .content-hyperlink{bottom:25px}}@media screen and (max-width:1400px){.content-benefits .line-yellow{margin-top:-266px}.content-benefits .line-yellow svg{width:550px;height:auto}.content-benefits .headline.headline-2:before{height:6px}}@media screen and (max-width:1220px){.content-benefits .line-yellow{margin-top:-216px}.content-benefits .line-yellow svg{width:450px;height:auto}.content-benefits .headline.headline-1{margin-bottom:70px}.content-benefits .benefits .benefit-item:nth-child(1){left:110px}.content-benefits .benefits .benefit-item:nth-child(2){left:-20px}.content-benefits .benefits .benefit-item:nth-child(3){left:220px}.content-benefits .benefits .benefit-item:nth-child(4){left:50px}.content-benefits .benefits .benefit-item:nth-child(5){left:240px}.content-benefits .benefits .benefit-item:nth-child(6){left:-40px}.content-benefits .benefits .benefit-item:nth-child(7){left:160px}.content-benefits .benefits .benefit-item:nth-child(8){left:10px}.content-benefits .benefits .benefit-item:nth-child(9){left:250px}}@media screen and (max-width:991px){.content-benefits .line-yellow{margin-top:0;margin-left:-175px}.content-benefits .line-yellow svg{width:450px;height:auto}.content-benefits .headline.headline-1{margin-bottom:0}.content-benefits .headline.headline-2:before{width:100vw;margin-left:-25px;position:absolute;margin-top:220px}.content-benefits .benefits{height:480px;top:0;width:49%}.content-benefits .benefits .benefit-item:nth-child(3){left:198px;top:50px}.content-benefits .benefits .benefit-item:nth-child(5){left:180px}.content-benefits .benefits .benefit-item:nth-child(9){left:170px;top:330px}}@media screen and (max-width:767px){.content-benefits{margin-bottom:150px}.content-benefits .line-yellow{margin-left:-271px}.content-benefits h3{margin-bottom:10px;max-width:135px}.content-benefits .benefits{top:auto;width:340px;right:auto;left:auto;height:auto;position:static}.content-benefits .benefits .list{position:relative;left:200px;top:-200px}.content-benefits .benefits .benefit-item:nth-child(1){left:80px;top:30px}.content-benefits .benefits .benefit-item:nth-child(2){left:100px;top:-9px}.content-benefits .benefits .benefit-item:nth-child(3){left:40px;top:190px}.content-benefits .benefits .benefit-item:nth-child(4){top:80px;left:80px}.content-benefits .benefits .benefit-item:nth-child(5){left:-20px;top:300px}.content-benefits .benefits .benefit-item:nth-child(6){top:134px;left:55px}.content-benefits .benefits .benefit-item:nth-child(7){left:130px;top:280px}.content-benefits .benefits .benefit-item:nth-child(8){left:10px;top:250px}.content-benefits .benefits .benefit-item:nth-child(9){left:50px;top:356px}.content-benefits .benefits .content-hyperlink{bottom:10px}}@media screen and (max-width:550px){.content-benefits .line-yellow{margin-left:-310px}.content-benefits .benefits{left:130px;width:220px;height:auto;position:static}.content-benefits .benefits .list{position:relative;left:130px;top:-200px}.content-benefits .benefits .benefit-item{line-height:20px;font-size:14px;line-height:15px}.content-benefits .benefits .benefit-item:nth-child(1){left:85px;top:48px}.content-benefits .benefits .benefit-item:nth-child(2){left:60px;top:16px}.content-benefits .benefits .benefit-item:nth-child(3){left:28px;top:176px}.content-benefits .benefits .benefit-item:nth-child(4){top:85px;left:39px}.content-benefits .benefits .benefit-item:nth-child(5){left:30px;top:310px}.content-benefits .benefits .benefit-item:nth-child(6){top:131px;left:55px}.content-benefits .benefits .benefit-item:nth-child(7){left:15px;top:264px}.content-benefits .benefits .benefit-item:nth-child(8){left:60px;top:223px}.content-benefits .benefits .benefit-item:nth-child(9){left:-40px;top:356px}}@media screen and (max-width:350px){.content-benefits .benefits .benefit-item{line-height:20px;font-size:14px;line-height:15px}.content-benefits .benefits .benefit-item:nth-child(1){left:64px;top:48px}.content-benefits .benefits .benefit-item:nth-child(2){left:60px;top:16px}.content-benefits .benefits .benefit-item:nth-child(3){left:19px;top:176px}.content-benefits .benefits .benefit-item:nth-child(4){top:85px;left:27px}.content-benefits .benefits .benefit-item:nth-child(5){left:30px;top:310px}.content-benefits .benefits .benefit-item:nth-child(6){top:131px;left:55px}.content-benefits .benefits .benefit-item:nth-child(7){left:15px;top:264px}.content-benefits .benefits .benefit-item:nth-child(8){left:37px;top:223px}.content-benefits .benefits .benefit-item:nth-child(9){left:-40px;top:356px}}#header-custom{position:relative;z-index:98;font-size:25px;line-height:31px}@media screen and (max-width:1600px){#header-custom{font-size:22px;line-height:29px}}@media screen and (max-width:1400px){#header-custom{font-size:18px;line-height:25px}}@media screen and (max-width:1400px){#header-custom{font-size:16px;line-height:21px}}#header-custom .background{width:100%;position:absolute;height:100%}#header-custom .background .media{width:100%;height:100%;position:relative}#header-custom .background .media img,#header-custom .background .media video{width:100%;height:100%;object-fit:cover}#header-custom .background .media .controls{position:absolute;bottom:0;right:40px;z-index:999}#header-custom .background .media .controls .line{background-color:#bcbcbc}#header-custom .info{position:absolute;top:42px;left:70px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;z-index:99}#header-custom .info .inner{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:47px}#header-custom .info a{color:#3d008a;text-decoration:none}#header-custom .info a.link-home{text-indent:-9000px;width:28px;height:28px;background:url(/files/die-oralchirurgen/assets/img/icon-home.svg) no-repeat;z-index:999}#header-custom .info .buttons{position:relative;z-index:9999}#header-custom .info .buttons a{display:block;width:fit-content}#header-custom .info .buttons a.btn-small{margin-top:5px}@media screen and (max-width:1024px){#header-custom .info{position:static;display:block}#header-custom .info a span{color:#3d008a}#header-custom .info a.link-email{width:60px;height:53px;background:#fff url(/files/die-oralchirurgen/assets/img/icon-mail.svg) no-repeat center 15px;box-shadow:0 3px 6px rgba(0,0,0,.16);position:fixed;bottom:0;left:62px;order:2;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:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end;font-size:9px;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center;padding-bottom:3px;box-sizing:border-box;z-index:999}#header-custom .info a.link-email::-webkit-scrollbar{display:none!important}#header-custom .info a.link-phone{width:60px;height:53px;background:#fff url(/files/die-oralchirurgen/assets/img/icon-phone.svg) no-repeat center 10px;box-shadow:0 3px 6px rgba(0,0,0,.16);position:fixed;bottom:0;left:0;order:1;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:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end;font-size:9px;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center;padding-bottom:3px;box-sizing:border-box;z-index:999}#header-custom .info a.link-phone::-webkit-scrollbar{display:none!important}#header-custom .info a.link-home{position:absolute;top:0;left:70px;top:25px;margin-top:-3px}#header-custom .info .buttons{position:fixed;bottom:0;left:124px;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-direction:row;overflow:visible;order:3;gap:2px}#header-custom .info .buttons::-webkit-scrollbar{display:none!important}#header-custom .info .buttons a{display:block;width:60px;height:53px;box-shadow:0 3px 6px rgba(0,0,0,.16);border:0;padding:0;border-radius:0;margin:0!important;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:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end;font-size:9px;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center;padding-bottom:5px;box-sizing:border-box}#header-custom .info .buttons a::-webkit-scrollbar{display:none!important}#header-custom .info .buttons a:after{content:none}#header-custom .info .buttons a:first-child{order:2;background:#3d008a url(/files/die-oralchirurgen/assets/img/icon-termin.svg) no-repeat center 10px;width:140px;font-size:12px}#header-custom .info .buttons a:first-child span{color:#FF0}#header-custom .info .buttons a.btn-small{order:1;background:#fff url(/files/die-oralchirurgen/assets/img/icon-anamnese.svg) no-repeat center 12px;padding-bottom:3px}#header-custom .info .social-media-icons{order:4;position:absolute;top:25px;right:40px;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;gap:5px}#header-custom .info .social-media-icons::-webkit-scrollbar{display:none!important}}@media screen and (max-width:550px){#header-custom .info .social-media-icons{right:30px}#header-custom .info a.link-phone{left:25px;width:70px;height:55px}#header-custom .info a.link-email{left:97px;width:70px;height:55px}#header-custom .info .buttons{left:169px}#header-custom .info .buttons a{width:70px;height:55px}#header-custom .info .buttons a:first-child{width:105px}}@media screen and (max-width:360px){#header-custom .info .buttons a:first-child{width:70px}}#header-custom .emotjis{position:absolute;right:70px;top:46px}#header-custom .header-content{position:relative;padding-top:177px;padding-left:49px;box-sizing:border-box;width:100%}#header-custom .header-content .grafic{color:#fff;font-size:58px;line-height:56px;position:relative;margin-left:-70px}@media screen and (max-width:1900px){#header-custom .header-content .grafic{font-size:48px;line-height:46px}}@media screen and (max-width:1600px){#header-custom .header-content .grafic{font-size:42px;line-height:40px}}@media screen and (max-width:1400px){#header-custom .header-content .grafic{font-size:32px;line-height:30px}}@media screen and (max-width:767px){#header-custom .header-content .grafic{font-size:30px;line-height:26px}}@media screen and (max-width:767px){#header-custom .header-content .grafic{font-size:23px;line-height:19px}}#header-custom .header-content .grafic .circle-text{position:absolute;font-family:BlauerNue-SemiBold,sans-serif;text-align:center;bottom:100px;left:30px}#header-custom .header-content .grafic img{max-width:913px;height:auto}#header-custom .header-content .img-name{position:absolute;left:400px;top:200px}#header-custom .header-content .text{position:absolute;bottom:30px;right:70px}#header-custom #main-navigation{position:relative}#header-custom .hamburger{position:relative;width:40px;height:24px;display:flex;flex-direction:column;justify-content:space-between;background:0 0;border:none;cursor:pointer;z-index:1001;margin-left:45px;margin-top:4px}#header-custom .hamburger .bar{height:4px;width:100%;background-color:#3d008a;border-radius:4px;transition:.3s ease}#header-custom .hamburger.open .bar{background-color:#fff}#header-custom .hamburger.open .bar:nth-child(1){transform:rotate(45deg) translate(8px,7px)}#header-custom .hamburger.open .bar:nth-child(2){opacity:0}#header-custom .hamburger.open .bar:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}#header-custom .menu{position:absolute;top:-46px;left:10px;width:655px;background-color:#3d008a;transform:translateY(-110%);transition:transform .4s ease;z-index:1000}#header-custom .menu>nav ul{list-style:none;padding:0;margin:415px 31px 165px}#header-custom .menu>nav ul li{margin:1rem 0}#header-custom .menu>nav ul li a{text-decoration:none;color:#fff;font-size:68px;line-height:82px;font-family:BlauerNue-SemiBold,sans-serif}@media screen and (max-width:1600px){#header-custom .menu>nav ul li a{font-size:53px;line-height:54px}}@media screen and (max-width:1400px){#header-custom .menu>nav ul li a{font-size:43px;line-height:44px}}#header-custom .menu>nav ul li a:focus{outline:0}#header-custom .menu>nav ul li a:focus-visible{outline:0;outline-offset:0}#header-custom .menu>nav ul li a.active,#header-custom .menu>nav ul li a:hover{color:#FF0}#header-custom .menu.open{transform:translateY(0)}#header-custom .meta-navigation ul{margin:0 31px 31px}#header-custom .meta-navigation ul li{display:inline-block;margin-right:25px}#header-custom .meta-navigation ul li a{font-size:29px;line-height:35px;font-family:BlauerNue-Regular,sans-serif;color:#fff}@media screen and (max-width:1900px){#header-custom .meta-navigation ul li a{font-size:22px;line-height:27px}}@media screen and (max-width:1600px){#header-custom .meta-navigation ul li a{font-size:20px;line-height:25px}}@media screen and (max-width:1400px){#header-custom .meta-navigation ul li a{font-size:18px;line-height:23px}}@media screen and (max-width:550px){#header-custom .meta-navigation ul li a{font-size:16px;line-height:21px}}@media screen and (max-width:1900px){#header-custom .header-content .grafic img{max-width:700px}}@media screen and (max-width:1600px){#header-custom .header-content .grafic img{max-width:600px}#header-custom .hamburger{margin-top:0;margin-left:0}#header-custom .menu{right:-25px;left:auto}#header-custom .info .inner{margin-right:20px}#header-custom #main-navigation{margin-top:3px}}@media screen and (max-width:1400px){#header-custom #main-navigation{margin-top:-3px}}@media screen and (max-width:1220px){#header-custom .header-content .grafic img{max-width:500px}}@media screen and (max-width:1024px){#header-custom{padding-bottom:100px;z-index:9999}#header-custom #main-navigation{margin-top:25px}#header-custom .menu{left:0;right:auto}#header-custom .hamburger{margin-left:25px}#header-custom .header-content .grafic img{max-width:400px}#header-custom .background .media video{width:120%;height:auto;max-width:none;min-width:1200px;position:relative;left:50%;transform:translateX(-50%)}#header-custom .background .media .controls{bottom:100px}#header-custom .btn-link-2{border-width:3px;padding:6px 35px 6px 20px;line-height:inherit}#header-custom .btn-link-2:after{right:10px}}@media screen and (max-width:767px){#header-custom .background .media video{min-width:auto;max-width:auto;width:auto;height:600px!important}}@media screen and (max-width:550px){#header-custom .background .media .controls{bottom:60px;right:15px}#header-custom .background .media video{height:450px!important}}@media screen and (max-height:1000px){#header-custom .menu>nav ul{margin-top:200px;margin-bottom:80px}}@media screen and (max-width:1600px){.karriere #header-custom .menu,.zuweiser #header-custom .menu{right:auto;left:-25px}}@media screen and (max-width:991px){.karriere #header-custom #main-navigation{position:absolute;top:0}}@media screen and (max-width:767px){.karriere #header-custom .menu,.zuweiser #header-custom .menu{right:auto;left:0}}.content-teaserlinks .row{--grid__gutter:0 20px}.content-teaserlinks a{width:100%;height:719px;display:block;background-size:cover;background-repeat:no-repeat;background-position:center;border-radius:42px;position:relative;overflow:hidden;text-decoration:none}.content-teaserlinks a .bg-image{position:absolute;width:100%;height:100%;left:0;right:0;background-size:cover;transition:all .4s;z-index:-1}.content-teaserlinks a h2{padding:15px 20px;color:#fff;font-family:BlauerNue-SemiBold,sans-serif;font-size:29px;line-height:35px;margin:40px 0 0 30px;padding:0;text-shadow:0 0 20px #000}@media screen and (max-width:1900px){.content-teaserlinks a h2{font-size:22px;line-height:27px}}@media screen and (max-width:1600px){.content-teaserlinks a h2{font-size:20px;line-height:25px}}@media screen and (max-width:1400px){.content-teaserlinks a h2{font-size:18px;line-height:23px}}@media screen and (max-width:550px){.content-teaserlinks a h2{font-size:16px;line-height:21px}}.content-teaserlinks a h2 span{font-family:BlauerNue-Regular,sans-serif;font-size:18px;line-height:22px}@media screen and (max-width:1400px){.content-teaserlinks a h2 span{font-size:16px;line-height:20px}}.content-teaserlinks a .icon-plus{position:absolute;bottom:24px;right:24px;width:65px;height:65px;background-color:#fff;border-radius:65px;transition:all .4s}.content-teaserlinks a .icon-plus:before{width:34px;height:33px;background:url(/files/die-oralchirurgen/assets/img/icon-plus.svg);background-size:contain;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-moz-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);-o-transform:translate(-50%,-50%);transform:translate(-50%,-50%);content:""}.content-teaserlinks a:hover .bg-image{transform:scale(1.1)}.content-teaserlinks a:hover .icon-plus{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.content-teaserlinks.small a{height:396px}@media screen and (max-width:1900px){.content-teaserlinks a{height:619px}.content-teaserlinks.small a{height:350px}}@media screen and (max-width:1600px){.content-teaserlinks a{height:519px}.content-teaserlinks.small a{height:296px}}@media screen and (max-width:1400px){.content-teaserlinks a{height:450px}}@media screen and (max-width:1220px){.content-teaserlinks a{height:350px}}@media screen and (max-width:991px){.content-teaserlinks .row{grid-template-columns:repeat(6,minmax(0,1fr));grid-gap:20px}.content-teaserlinks a{height:380px}}@media screen and (max-width:767px){.content-teaserlinks a h2{font-size:22px;line-height:27px}.content-teaserlinks a .icon-plus{width:50px;height:50px}}@media screen and (max-width:550px){.content-teaserlinks .row{grid-template-columns:repeat(1,minmax(0,1fr))}.content-teaserlinks a{height:420px}.content-teaserlinks a h2{margin-top:25px}.content-teaserlinks a .bg-image{background-position:left -50px}}@media screen and (max-width:450px){.content-teaserlinks a{height:340px}.content-teaserlinks a h2{margin-top:25px}.content-teaserlinks a .bg-image{background-position:left -20px}}.content-full-width-video-image{position:relative}.content-full-width-video-image .media{width:100%;height:720px}.content-full-width-video-image .media figure{width:100%;height:100%}.content-full-width-video-image .media img,.content-full-width-video-image .media video{width:100%;height:100%;object-fit:cover}.content-full-width-video-image .content-text{position:absolute;left:calc((100% - 1692px)/ 2);bottom:40px;color:#fff;font-size:130px;line-height:113px;font-family:BlauerNue-Light,sans-serif;z-index:99}@media screen and (max-width:1900px){.content-full-width-video-image .content-text{font-size:115px;line-height:98px}}@media screen and (max-width:1600px){.content-full-width-video-image .content-text{font-size:100px;line-height:83px}}@media screen and (max-width:1400px){.content-full-width-video-image .content-text{font-size:80px;line-height:63px}}@media screen and (max-width:767px){.content-full-width-video-image .content-text{font-size:70px;line-height:53px}}@media screen and (max-width:550px){.content-full-width-video-image .content-text{font-size:32px;line-height:23px}}.content-full-width-video-image .content-text strong{font-family:BlauerNue-ExtraBold,sans-serif}.content-full-width-video-image .controls{position:absolute;right:calc((100% - 1692px)/ 2);bottom:40px;z-index:99}.content-full-width-video-image .controls svg path,.content-full-width-video-image .controls svg rect{fill:#fff}.content-full-width-video-image.variante-2 .content-text{top:50%;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);-o-transform:translateY(-50%);transform:translateY(-50%);bottom:auto}.content-full-width-video-image.variante-3 .content-text{top:50%;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);-o-transform:translateY(-50%);transform:translateY(-50%);bottom:auto;left:auto;right:calc((100% - 1692px)/ 2)}.content-full-width-video-image.variante-4:before{content:"";width:4px;height:1121px;background-color:#FF0;position:absolute;left:calc(((100% - 1692px)/ 2) + 100px);top:110px}.content-full-width-video-image.variante-4 .content-text{top:100px;bottom:auto;left:calc(((100% - 1692px)/ 2) + 145px)}.content-full-width-video-image.variante-4 .media{height:1002px}@media screen and (max-width:1900px){.content-full-width-video-image .content-text{left:calc((100% - 1450px)/ 2)}.content-full-width-video-image .controls{right:calc((100% - 1450px)/ 2)}}@media screen and (max-width:1600px){.content-full-width-video-image .content-text{left:calc((100% - 1350px)/ 2)}.content-full-width-video-image .controls{right:calc((100% - 1350px)/ 2)}.content-full-width-video-image.variante-3 .content-text{right:auto;left:calc(50% + 100px)}.content-full-width-video-image.variante-4:before{height:900px;left:calc(((100% - 1350px)/ 2) + 100px)}.content-full-width-video-image.variante-4 .content-text{left:calc(((100% - 1350px)/ 2) + 145px)}.content-full-width-video-image.variante-4 .media{height:800px}}@media screen and (max-width:1400px){.content-full-width-video-image .content-text{left:calc((100% - 1150px)/ 2)}.content-full-width-video-image .media{height:600px}.content-full-width-video-image .controls{right:calc((100% - 1150px)/ 2)}.content-full-width-video-image.variante-3 .content-text{right:auto;left:calc(50% + 100px)}.content-full-width-video-image.variante-4:before{height:900px;left:calc(((100% - 1150px)/ 2) + 100px)}.content-full-width-video-image.variante-4 .content-text{left:calc(((100% - 1150px)/ 2) + 145px)}.content-full-width-video-image.variante-4 .media{height:800px}}@media screen and (max-width:1220px){.content-full-width-video-image .content-text{left:calc((100% - 950px)/ 2)}.content-full-width-video-image .media{height:500px}.content-full-width-video-image .controls{right:calc((100% - 950px)/ 2)}.content-full-width-video-image.variante-4:before{height:800px;left:calc(((100% - 950px)/ 2) + 100px)}.content-full-width-video-image.variante-4 .content-text{left:calc(((100% - 950px)/ 2) + 145px)}.content-full-width-video-image.variante-4 .media{height:600px}}@media screen and (max-width:991px){.content-full-width-video-image .content-text{left:15px}.content-full-width-video-image .controls{right:15px}.content-full-width-video-image.variante-4 .media{height:auto}.content-full-width-video-image.variante-4:before{height:650px;left:70px}.content-full-width-video-image.variante-4 .content-text{left:100px;top:50px}}@media screen and (max-width:767px){.content-full-width-video-image .media{height:400px}.content-full-width-video-image .content-text{bottom:30px}.content-full-width-video-image .controls{right:auto;left:15px;bottom:-45px}.content-full-width-video-image .controls svg path,.content-full-width-video-image .controls svg rect{fill:#bcbcbc}.content-full-width-video-image .content-player .line{background-color:#bcbcbc}.content-full-width-video-image.variante-2 .content-text{left:25px}.content-full-width-video-image.variante-4:before{height:450px}}@media screen and (max-width:550px){.content-full-width-video-image.variante-4:before{display:none}.content-full-width-video-image.variante-4 .content-text{left:25px;bottom:auto;top:25px}}.content-doctor{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}.content-doctor::-webkit-scrollbar{display:none!important}.content-doctor .content-media{max-width:275px;margin-right:56px}.content-doctor .content-media image,.content-doctor .content-media video{width:275px;max-width:none;border-radius:43px}.content-doctor .content-media .controls svg path,.content-doctor .content-media .controls svg rect{fill:#fff}.content-doctor .content-text .rte{max-width:300px;font-size:18px;line-height:22px;line-height:27px}@media screen and (max-width:1400px){.content-doctor .content-text .rte{font-size:16px;line-height:20px}}@media screen and (max-width:1400px){.content-doctor .content-text .rte{line-height:25px}}.content-doctor .content-text h3{font-size:72px;line-height:63px;font-family:BlauerNue-ExtraBold,sans-serif;margin-bottom:20px}@media screen and (max-width:1900px){.content-doctor .content-text h3{font-size:52px;line-height:53px}}@media screen and (max-width:1600px){.content-doctor .content-text h3{font-size:42px;line-height:43px}}@media screen and (max-width:1400px){.content-doctor .content-text h3{font-size:32px;line-height:33px}}@media screen and (max-width:767px){.content-doctor .content-text h3{font-size:52px;line-height:46px}}@media screen and (max-width:550px){.content-doctor .content-text h3{font-size:39px;line-height:47px}}@media screen and (max-width:1220px){.content-doctor{flex-direction:column}.content-doctor .content-media{margin-bottom:25px}}.gallery-team{padding-bottom:120px;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}.gallery-team::-webkit-scrollbar{display:none!important}.gallery-team .team{width:290px;height:auto;margin-left:-50px}.gallery-team .team:first-child{margin-left:0}.gallery-team .team img{width:100%;height:auto}.gallery-team .team figure figcaption{text-align:center;font-size:46px;line-height:100%;margin-top:19px}@media screen and (max-width:1600px){.gallery-team .team figure figcaption{font-size:43px;line-height:46px}}@media screen and (max-width:1400px){.gallery-team .team figure figcaption{font-size:30px;line-height:33px}}@media screen and (max-width:767px){.gallery-team .team figure figcaption{font-size:36px;line-height:31px}}.gallery-team .team figure figcaption span{display:block;font-size:23px;line-height:28px;font-family:BlauerNue-ExtraBold,sans-serif}@media screen and (max-width:1600px){.gallery-team .team figure figcaption span{font-size:18px;line-height:22px}}@media screen and (max-width:550px){.gallery-team .team figure figcaption span{font-size:16px;line-height:20px}}.gallery-team .team.job-offer{width:368px;font-size:23px;line-height:28px;font-family:BlauerNue-ExtraBold,sans-serif;color:#FF0}.gallery-team .team.job-offer a{width:368px;height:300px;display:block;background:url(/files/die-oralchirurgen/assets/img/job-offer.svg) no-repeat;text-decoration:none;position:relative;text-align:center}.gallery-team .team.job-offer a span{position:absolute;bottom:80px;left:90px}@media screen and (max-width:1600px){.gallery-team .team.job-offer{font-size:18px;line-height:22px}}@media screen and (max-width:550px){.gallery-team .team.job-offer{font-size:16px;line-height:20px}}@media screen and (max-width:1900px){.gallery-team .team.job-offer a{height:266px;width:326px;background-size:contain}.gallery-team .team.job-offer a span{left:70px}}@media screen and (max-width:1600px){.gallery-team .team.job-offer a{height:255px;width:312px}.gallery-team .team.job-offer a span{left:75px}}@media screen and (max-width:1400px){.gallery-team .team.job-offer a{height:223px;width:280px}.gallery-team .team.job-offer a span{left:75px}}@media screen and (max-width:1220px){.gallery-team{overflow-x:auto;overflow-y:hidden;scroll-behavior:smooth;padding-bottom:100px;padding-left:30px}.gallery-team .team{flex-shrink:0}.gallery-team .team.job-offer a{width:368px;height:300px}.gallery-team .team.job-offer a span{left:90px}}@media screen and (max-width:767px){.gallery-team{padding-bottom:60px}.gallery-team .team{width:228px}.gallery-team .team.job-offer a{width:279px;height:228px}.gallery-team .team.job-offer a span{left:70px}}.gallery-controls{display:none;padding-bottom:100px;text-align:center}.gallery-controls .arrow{width:57px;height:57px;border:none;cursor:pointer;background:0 0;background-repeat:no-repeat;background-position:center;background-size:contain;margin:0 10px;display:inline-block}.gallery-controls .arrow.left{background-image:url(/files/die-oralchirurgen/assets/img/icon-arrow-prev-white.svg)}.gallery-controls .arrow.right{background-image:url(/files/die-oralchirurgen/assets/img/icon-arrow-next-white.svg)}.gallery-controls.blue .arrow.left{background-image:url(/files/die-oralchirurgen/assets/img/icon-arrow-prev.svg)}.gallery-controls.blue .arrow.right{background-image:url(/files/die-oralchirurgen/assets/img/icon-arrow-next.svg)}@media screen and (max-width:1024px){.gallery-controls{display:block}}@media screen and (max-width:767px){.gallery-controls{padding-bottom:80px}}.home #intro,.karriere #intro,.services #intro,.zuweiser #intro{padding-bottom:300px;position:relative}.home #intro #video-intro-animation,.karriere #intro #video-intro-animation,.services #intro #video-intro-animation,.zuweiser #intro #video-intro-animation{position:static}.home #intro #video-intro-animation .inner-container,.karriere #intro #video-intro-animation .inner-container,.services #intro #video-intro-animation .inner-container,.zuweiser #intro #video-intro-animation .inner-container{position:absolute;width:255px;bottom:-100px;left:130px}@media screen and (max-width:1600px){.home #intro #video-intro-animation .inner-container,.karriere #intro #video-intro-animation .inner-container,.services #intro #video-intro-animation .inner-container,.zuweiser #intro #video-intro-animation .inner-container{left:100px}}@media screen and (max-width:1220px){.home #intro #video-intro-animation .inner-container,.karriere #intro #video-intro-animation .inner-container,.services #intro #video-intro-animation .inner-container,.zuweiser #intro #video-intro-animation .inner-container{left:0}}@media screen and (max-width:1024px){.home #intro #video-intro-animation .inner-container,.karriere #intro #video-intro-animation .inner-container,.services #intro #video-intro-animation .inner-container,.zuweiser #intro #video-intro-animation .inner-container{position:relative;bottom:auto;margin-bottom:60px}}.home #intro #video-intro-animation .inner-container .animation-line,.karriere #intro #video-intro-animation .inner-container .animation-line,.services #intro #video-intro-animation .inner-container .animation-line,.zuweiser #intro #video-intro-animation .inner-container .animation-line{position:relative;width:22px;height:1300px;z-index:-1;left:50%;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-o-transform:translateX(-50%);transform:translateX(-50%);display:block;z-index:1;transition:height .2s ease-out;will-change:height}.home #intro #video-intro-animation .inner-container .animation-line:after,.home #intro #video-intro-animation .inner-container .animation-line:before,.karriere #intro #video-intro-animation .inner-container .animation-line:after,.karriere #intro #video-intro-animation .inner-container .animation-line:before,.services #intro #video-intro-animation .inner-container .animation-line:after,.services #intro #video-intro-animation .inner-container .animation-line:before,.zuweiser #intro #video-intro-animation .inner-container .animation-line:after,.zuweiser #intro #video-intro-animation .inner-container .animation-line:before{content:"";display:block;width:22px;height:22px;border-radius:22px;box-sizing:border-box;position:absolute}.home #intro #video-intro-animation .inner-container .animation-line:before,.karriere #intro #video-intro-animation .inner-container .animation-line:before,.services #intro #video-intro-animation .inner-container .animation-line:before,.zuweiser #intro #video-intro-animation .inner-container .animation-line:before{border:3px solid #FF0;background-color:transparent;top:-22px}.home #intro #video-intro-animation .inner-container .animation-line:after,.karriere #intro #video-intro-animation .inner-container .animation-line:after,.services #intro #video-intro-animation .inner-container .animation-line:after,.zuweiser #intro #video-intro-animation .inner-container .animation-line:after{background-color:#FF0;bottom:-22px}.home #intro #video-intro-animation .inner-container .animation-line .inner,.karriere #intro #video-intro-animation .inner-container .animation-line .inner,.services #intro #video-intro-animation .inner-container .animation-line .inner,.zuweiser #intro #video-intro-animation .inner-container .animation-line .inner{height:100%;width:3px;background-color:#FF0;position:absolute;left:50%;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-o-transform:translateX(-50%);transform:translateX(-50%)}@media screen and (max-width:1900px){.home #intro #video-intro-animation .inner-container .animation-line,.karriere #intro #video-intro-animation .inner-container .animation-line,.services #intro #video-intro-animation .inner-container .animation-line,.zuweiser #intro #video-intro-animation .inner-container .animation-line{height:1250px}}@media screen and (max-width:1600px){.home #intro #video-intro-animation .inner-container .animation-line,.karriere #intro #video-intro-animation .inner-container .animation-line,.services #intro #video-intro-animation .inner-container .animation-line,.zuweiser #intro #video-intro-animation .inner-container .animation-line{height:1250px}}@media screen and (max-width:1024px){.home #intro #video-intro-animation .inner-container .animation-line,.karriere #intro #video-intro-animation .inner-container .animation-line,.services #intro #video-intro-animation .inner-container .animation-line,.zuweiser #intro #video-intro-animation .inner-container .animation-line{left:-99999px;position:absolute}}.home #intro #video-intro-animation .inner-container figure,.karriere #intro #video-intro-animation .inner-container figure,.services #intro #video-intro-animation .inner-container figure,.zuweiser #intro #video-intro-animation .inner-container figure{position:absolute;bottom:calc(100% - 80px);z-index:0}@media screen and (max-width:1024px){.home #intro #video-intro-animation .inner-container figure,.karriere #intro #video-intro-animation .inner-container figure,.services #intro #video-intro-animation .inner-container figure,.zuweiser #intro #video-intro-animation .inner-container figure{position:relative;bottom:auto}}.home #intro #video-intro-animation .inner-container video,.karriere #intro #video-intro-animation .inner-container video,.services #intro #video-intro-animation .inner-container video,.zuweiser #intro #video-intro-animation .inner-container video{border-radius:43px}.home #intro #video-intro-animation .inner-container .controls .line,.karriere #intro #video-intro-animation .inner-container .controls .line,.services #intro #video-intro-animation .inner-container .controls .line,.zuweiser #intro #video-intro-animation .inner-container .controls .line{background-color:#bcbcbc}.home #intro #video-intro-animation .inside,.karriere #intro #video-intro-animation .inside,.services #intro #video-intro-animation .inside,.zuweiser #intro #video-intro-animation .inside{max-width:1500px}@media screen and (max-width:1900px){.home #intro #video-intro-animation .inside,.karriere #intro #video-intro-animation .inside,.services #intro #video-intro-animation .inside,.zuweiser #intro #video-intro-animation .inside{max-width:1400px}}@media screen and (max-width:1600px){.home #intro #video-intro-animation .inside,.karriere #intro #video-intro-animation .inside,.services #intro #video-intro-animation .inside,.zuweiser #intro #video-intro-animation .inside{max-width:1350px}.home #intro #video-intro-animation .inside #video-intro-animation .inner-container,.karriere #intro #video-intro-animation .inside #video-intro-animation .inner-container,.services #intro #video-intro-animation .inside #video-intro-animation .inner-container,.zuweiser #intro #video-intro-animation .inside #video-intro-animation .inner-container{left:0}}@media screen and (max-width:1400px){.home #intro #video-intro-animation .inside,.karriere #intro #video-intro-animation .inside,.services #intro #video-intro-animation .inside,.zuweiser #intro #video-intro-animation .inside{max-width:1150px}}@media screen and (max-width:1400px){.home #intro #video-intro-animation .inside,.karriere #intro #video-intro-animation .inside,.services #intro #video-intro-animation .inside,.zuweiser #intro #video-intro-animation .inside{max-width:950px}}.home #intro .highlight,.karriere #intro .highlight,.services #intro .highlight,.zuweiser #intro .highlight{margin:160px 0 0;display:block}@media screen and (max-width:1024px){.home #intro,.karriere #intro,.services #intro,.zuweiser #intro{padding-bottom:100px}}@media screen and (max-width:767px){.home #intro,.karriere #intro,.services #intro,.zuweiser #intro{padding-bottom:50px}}@media screen and (max-width:1024px){.home #intro .justify-end,.services #intro .justify-end{text-align:left;justify-self:start}}.home .content-teaserlinks{margin-bottom:277px}@media screen and (max-width:991px){.home .content-teaserlinks{margin-bottom:113px}}.home #news{font-size:29px;line-height:35px;font-family:BlauerNue-Light,sans-serif;margin:100px 0 440px}@media screen and (max-width:1900px){.home #news{font-size:22px;line-height:27px}}@media screen and (max-width:1600px){.home #news{font-size:20px;line-height:25px}}@media screen and (max-width:1400px){.home #news{font-size:18px;line-height:23px}}@media screen and (max-width:550px){.home #news{font-size:16px;line-height:21px}}@media screen and (max-width:1900px){.home #news{margin-bottom:300px}}@media screen and (max-width:1600px){.home #news{margin-bottom:250px}}@media screen and (max-width:1024px){.home #news{margin-bottom:100px}}@media screen and (max-width:991px){.home #news{margin-top:50px}}.home #news .content-headline{font-family:BlauerNue-ExtraBold,sans-serif;margin-bottom:30px}.home #news p{margin-bottom:35px}.home #news p:last-child{margin-bottom:50px}.home #news p a{font-family:BlauerNue-Regular,sans-serif}.home #news .news{position:relative;font-size:154px;line-height:80%;text-transform:uppercase;font-family:BlauerNue-ExtraBold,sans-serif;margin-left:-140px}@media screen and (max-width:1400px){.home #news .news{font-size:145px}}@media screen and (max-width:1220px){.home #news .news{font-size:125px}}@media screen and (max-width:767px){.home #news .news{font-size:101px}}.home #news .news span{position:absolute;bottom:100%}@media screen and (max-width:1024px){.home #news .news{margin-left:0;margin-top:120px}.home #news .rte{max-width:350px}}@media screen and (max-width:767px){.home #news{margin-bottom:50px}.home #news .content-headline .second{font-size:30px;line-height:36px}.home #news .news{margin-top:92px}.home #news p{margin-bottom:15px}.home #news p:last-child{margin-bottom:15px}}@media screen and (max-width:550px){.home #news .rte{max-width:100%}}.home #philosophie{position:relative;margin-bottom:400px}@media screen and (max-width:1900px){.home #philosophie{margin-bottom:350px}}@media screen and (max-width:1600px){.home #philosophie{margin-bottom:250px}}.home #philosophie .content-image{position:relative;margin-right:-67px;margin-bottom:30px}.home #philosophie .content-image img{max-width:1070px;height:auto;border-radius:65px;width:auto}.home #philosophie .row>.ce_columns{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;-webkit-box-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.home #philosophie .row>.ce_columns .content-text:last-child{margin-top:-10px}.home #philosophie .inside>.content-text{margin-top:20px}.home #philosophie .content-text h3{font-size:157px;line-height:140px;font-family:BlauerNue-SemiBold,sans-serif}@media screen and (max-width:1900px){.home #philosophie .content-text h3{font-size:147px;line-height:130px}}@media screen and (max-width:1600px){.home #philosophie .content-text h3{font-size:137px;line-height:120px}}@media screen and (max-width:1400px){.home #philosophie .content-text h3{font-size:117px;line-height:100px}}@media screen and (max-width:1220px){.home #philosophie .content-text h3{font-size:97px;line-height:80px}}@media screen and (max-width:991px){.home #philosophie .content-text h3{font-size:77px;line-height:60px}}@media screen and (max-width:767px){.home #philosophie .content-text h3{font-size:57px;line-height:56px}}@media screen and (max-width:550px){.home #philosophie .content-text h3{font-size:47px;line-height:56px}}@media screen and (max-width:400px){.home #philosophie .content-text h3{font-size:37px;line-height:56px}}@media screen and (max-width:1600px){.home #philosophie .content-image img{max-width:900px}}@media screen and (max-width:1400px){.home #philosophie .content-image{margin-right:0}.home #philosophie .content-image img{max-width:820px}.home #philosophie .content-text{margin-bottom:20px}.home #philosophie .inside>.content-text{margin-top:-10px}}@media screen and (max-width:1220px){.home #philosophie .content-image img{max-width:720px}}@media screen and (max-width:1024px){.home #philosophie{margin-bottom:200px}.home #philosophie .content-image img{max-width:calc(100% + 75px);margin-right:-75px;position:relative;border-radius:43px}}.home .content-full-width-video-image{margin-bottom:277px}@media screen and (max-width:1600px){.home .content-full-width-video-image{margin-bottom:200px}}@media screen and (max-width:767px){.home .content-full-width-video-image{margin-bottom:0}}.home #services{margin:60px auto 330px}.home #services .inside{padding:0;max-width:1895px}.home #services .content-text{text-transform:uppercase;font-size:90px;line-height:110px}@media screen and (max-width:1900px){.home #services .content-text{font-size:71px;line-height:100px}}@media screen and (max-width:1600px){.home #services .content-text{font-size:62px;line-height:90px}}@media screen and (max-width:1290px){.home #services .content-text{font-size:50px;line-height:53px}}@media screen and (max-width:991px){.home #services .content-text{font-size:36px;line-height:39px}}@media screen and (max-width:550px){.home #services .content-text{font-size:32px;line-height:35px}}.home #services .content-hyperlink{text-align:center;margin-top:22px}.home #services h2{font-size:90px;line-height:110px;color:#FF0;font-family:BlauerNue-ExtraBold,sans-serif;font-weight:400;margin:0}@media screen and (max-width:1900px){.home #services h2{font-size:71px;line-height:100px}}@media screen and (max-width:1600px){.home #services h2{font-size:62px;line-height:90px}}@media screen and (max-width:1290px){.home #services h2{font-size:50px;line-height:53px}}@media screen and (max-width:991px){.home #services h2{font-size:36px;line-height:39px}}@media screen and (max-width:550px){.home #services h2{font-size:32px;line-height:35px}}.home #services h3{font-size:90px;line-height:110px;text-align:justify;text-justify:inter-word;margin:0;display:inline;position:relative}@media screen and (max-width:1900px){.home #services h3{font-size:71px;line-height:100px}}@media screen and (max-width:1600px){.home #services h3{font-size:62px;line-height:90px}}@media screen and (max-width:1290px){.home #services h3{font-size:50px;line-height:53px}}@media screen and (max-width:991px){.home #services h3{font-size:36px;line-height:39px}}@media screen and (max-width:550px){.home #services h3{font-size:32px;line-height:35px}}@media screen and (max-width:1900px){.home #services h3{line-height:66px}}@media screen and (max-width:1600px){.home #services h3{line-height:56px}}.home #services h3:after{content:" | ";display:inline;position:relative;top:-3px}.home #services h3.no-word-spacing{white-space:nowrap}.home #services h3:last-child:after{content:none}.home #services h3 .small-text{font-size:18px;line-height:22px;text-transform:none;width:150px;display:inline;position:absolute;text-align:left;bottom:20px;margin-left:10px}@media screen and (max-width:1400px){.home #services h3 .small-text{font-size:16px;line-height:20px}}@media screen and (max-width:1400px){.home #services h3 .small-text{bottom:5px}}.home #services .content-headline{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:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end;overflow-x:visible;margin-bottom:20px}.home #services .content-headline::-webkit-scrollbar{display:none!important}.home #services .content-headline .first{font-size:192px;line-height:167px;font-family:BlauerNue-ExtraBold,sans-serif;width:min-content;margin-right:40px;text-transform:uppercase}@media screen and (max-width:1900px){.home #services .content-headline .first{font-size:162px;line-height:137px}}@media screen and (max-width:1600px){.home #services .content-headline .first{font-size:152px;line-height:127px}}@media screen and (max-width:1400px){.home #services .content-headline .first{font-size:122px;line-height:97px}}@media screen and (max-width:1220px){.home #services .content-headline .first{font-size:102px;line-height:77px}}@media screen and (max-width:991px){.home #services .content-headline .first{font-size:96px;line-height:83px}}@media screen and (max-width:767px){.home #services .content-headline .first{font-size:50px;line-height:43px}}@media screen and (max-width:550px){.home #services .content-headline .first{font-size:40px;line-height:33px}}.home #services .content-headline .second{font-size:29px;line-height:35px;color:#3d008a;text-transform:none;font-family:BlauerNue-Regular,sans-serif;display:inline-block;margin-bottom:10px}@media screen and (max-width:1900px){.home #services .content-headline .second{font-size:22px;line-height:27px}}@media screen and (max-width:1600px){.home #services .content-headline .second{font-size:20px;line-height:25px}}@media screen and (max-width:1400px){.home #services .content-headline .second{font-size:18px;line-height:23px}}@media screen and (max-width:550px){.home #services .content-headline .second{font-size:16px;line-height:21px}}.home #services .rte{text-align:justify;text-justify:inter-word}@media screen and (max-width:1900px){.home #services{max-width:1485px}}@media screen and (max-width:1600px){.home #services{max-width:1285px}}@media screen and (max-width:1400px){.home #services{max-width:1150px}.home #services h3{font-size:55px}}@media screen and (max-width:1290px){.home #services{max-width:100%;margin-left:25px;margin-right:25px}.home #services h2{font-size:56px;line-height:52px}.home #services h3{display:block;text-align:left}.home #services h3:after{content:none}}@media screen and (max-width:1024px){.home #services .content-headline{flex-direction:column;-webkit-box-align:flex-start;-webkit-align-items:flex-start;-ms-flex-align:flex-start;align-items:flex-start}.home #services .content-headline .first{margin-bottom:10px}}@media screen and (max-width:991px){.home #services{margin-top:100px}}@media screen and (max-width:767px){.home #services{margin-bottom:220px;margin-top:150px}.home #services h3{font-size:29px;line-height:100%;margin-bottom:10px}.home #services h3 .small-text{width:auto}}@media screen and (max-width:550px){.home #services .content-hyperlink{margin-top:40px}.home #services h3 .small-text{position:relative;bottom:auto;display:block;margin-left:0}}.home #doctors .content-headline{padding:130px 0 0 278px;margin-bottom:170px}.home #doctors .content-headline .first{position:relative;font-size:192px;line-height:167px;color:#FF0;margin:0 0 20px;display:block}@media screen and (max-width:1900px){.home #doctors .content-headline .first{font-size:162px;line-height:137px}}@media screen and (max-width:1600px){.home #doctors .content-headline .first{font-size:152px;line-height:127px}}@media screen and (max-width:1400px){.home #doctors .content-headline .first{font-size:122px;line-height:97px}}@media screen and (max-width:1220px){.home #doctors .content-headline .first{font-size:102px;line-height:77px}}@media screen and (max-width:991px){.home #doctors .content-headline .first{font-size:96px;line-height:83px}}@media screen and (max-width:767px){.home #doctors .content-headline .first{font-size:50px;line-height:43px}}@media screen and (max-width:550px){.home #doctors .content-headline .first{font-size:40px;line-height:33px}}.home #doctors .content-headline .first:before{content:"#";width:238px;height:300px;position:absolute;left:-270px;top:0;font-size:430px}@media screen and (max-width:1900px){.home #doctors .content-headline .first:before{width:200px;height:252px;background-size:contain;left:-230px;font-size:330px;top:-10px}}@media screen and (max-width:1600px){.home #doctors .content-headline .first:before{width:180px;height:227px;left:-160px;font-size:230px;top:-10px}}@media screen and (max-width:1220px){.home #doctors .content-headline .first:before{width:140px;height:177px;font-size:180px;left:-120px}}@media screen and (max-width:767px){.home #doctors .content-headline{padding-left:100px;margin-bottom:62px}.home #doctors .content-headline .first:before{width:100px;height:126px;font-size:140px;left:-100px;top:0}.home #doctors .row{display:block}.home #doctors .row .content-doctor{padding:0 20px 50px}}@media screen and (max-width:550px){.home #doctors .content-headline{padding-left:80px}.home #doctors .content-headline .first{font-size:49px;line-height:46px}.home #doctors .content-headline .first:before{width:70px;height:88px;left:-90px;top:0}}@media screen and (max-width:550px){.home #doctors .content-headline .first{font-size:44px;line-height:41px}}.home #team .content-headline{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:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center;vertical-align:bottom;padding:94px 0 0;margin-bottom:154px;overflow-x:visible}.home #team .content-headline::-webkit-scrollbar{display:none!important}.home #team .content-headline .first{font-size:96px;line-height:100%;margin-bottom:-7px;margin-right:45px}@media screen and (max-width:1900px){.home #team .content-headline .first{font-size:70px}}@media screen and (max-width:1600px){.home #team .content-headline .first{font-size:60px}}@media screen and (max-width:1400px){.home #team .content-headline .first{font-size:56px;line-height:61px}}@media screen and (max-width:767px){.home #team .content-headline .first{font-size:51px;line-height:61px}}@media screen and (max-width:550px){.home #team .content-headline .first{font-size:39px;line-height:41px}}@media screen and (max-width:350px){.home #team .content-headline .first{font-size:27px;line-height:38px}}@media screen and (max-width:1220px){.home #team .inside{max-width:100%;padding:0}.home #team .content-headline{padding-left:15px;padding-right:15px}}@media screen and (max-width:767px){.home #team .content-headline{flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;margin-bottom:100px;padding:30px 15px 0}.home #team .content-headline .first{margin-right:0}}.home .content-btn-appointment{margin:218px 0 0}@media screen and (max-width:767px){.home .content-btn-appointment{margin-top:84px}}.home #praxis{margin:149px 0 146px}.home #praxis .content-text{text-align:center}.home #praxis .content-text h2{text-transform:uppercase;font-size:29px;line-height:35px;margin-bottom:45px}@media screen and (max-width:1900px){.home #praxis .content-text h2{font-size:22px;line-height:27px}}@media screen and (max-width:1600px){.home #praxis .content-text h2{font-size:20px;line-height:25px}}@media screen and (max-width:1400px){.home #praxis .content-text h2{font-size:18px;line-height:23px}}@media screen and (max-width:550px){.home #praxis .content-text h2{font-size:16px;line-height:21px}}.home #praxis .content-text .rte{font-size:192px;line-height:167px;font-family:BlauerNue-ExtraBold,sans-serif;text-transform:uppercase}@media screen and (max-width:1900px){.home #praxis .content-text .rte{font-size:162px;line-height:137px}}@media screen and (max-width:1600px){.home #praxis .content-text .rte{font-size:152px;line-height:127px}}@media screen and (max-width:1400px){.home #praxis .content-text .rte{font-size:122px;line-height:97px}}@media screen and (max-width:1220px){.home #praxis .content-text .rte{font-size:102px;line-height:77px}}@media screen and (max-width:991px){.home #praxis .content-text .rte{font-size:96px;line-height:83px}}@media screen and (max-width:767px){.home #praxis .content-text .rte{font-size:50px;line-height:43px}}@media screen and (max-width:550px){.home #praxis .content-text .rte{font-size:40px;line-height:33px}}.home #praxis .content-text .rte p{margin-bottom:0}.home #praxis .content-text.media--above figure{margin-bottom:30px}.home #praxis .content-text.media--above figure img{width:auto}.home #praxis .mod_rocksolid_slider{margin-top:30px}@media screen and (max-width:767px){.home #praxis{margin-top:125px}.home #praxis .content-text h2{margin-bottom:20px}.home #praxis .content-text .rte p{font-size:96px;line-height:83px}.home #praxis .content-text.media--above figure img{max-width:200px}}@media screen and (max-width:1024px){.home #intro .content-headline{margin-bottom:47px}}@media screen and (max-width:767px){.home .content-full-width-video-image .content-text{font-size:60px;line-height:52px}}.services #intro{margin-top:390px}.services #intro #video-intro-animation .inner-container{bottom:-100px}.services #intro #video-intro-animation .inner-container .animation-line{height:650px}@media screen and (max-width:2200px){.services #intro{margin-top:290px}.services #intro #video-intro-animation .inner-container .animation-line{height:600px}}@media screen and (max-width:1900px){.services #intro{margin-top:390px}.services #intro #video-intro-animation .inner-container .animation-line{height:550px}}@media screen and (max-width:1600px){.services #intro #video-intro-animation .inner-container{left:100px}.services #intro #video-intro-animation .inner-container .animation-line{height:600px}}@media screen and (max-width:1400px){.services #intro{margin-top:290px}.services #intro #video-intro-animation .inner-container{left:50px}.services #intro #video-intro-animation .inner-container .animation-line{height:550px}}@media screen and (max-width:1024px){.services #intro{margin-top:80px}.services #intro #video-intro-animation .inner-container{left:auto;bottom:auto}}.services #intro .content-headline .underline.underline-intro-1::after{bottom:-20px}.services #intro .content-zitat{margin-top:130px}.services #intro .content-zitat .mark.mark-circle:before{background-image:url(/files/die-oralchirurgen/assets/img/animiation-lines/marker-circle-5.svg);width:calc(100% + 45px);height:calc(100% + 45px);top:-10px;left:-25px}@media screen and (max-width:1600px){.services #intro .content-zitat{margin-left:130px}}@media screen and (max-width:991px){.services #intro .content-zitat{margin-left:0;margin-top:100px}}.services #service-list{margin-bottom:350px;font-size:72px;line-height:63px;line-height:86px;text-transform:uppercase}@media screen and (max-width:1900px){.services #service-list{font-size:52px;line-height:53px}}@media screen and (max-width:1600px){.services #service-list{font-size:42px;line-height:43px}}@media screen and (max-width:1400px){.services #service-list{font-size:32px;line-height:33px}}@media screen and (max-width:767px){.services #service-list{font-size:52px;line-height:46px}}@media screen and (max-width:550px){.services #service-list{font-size:39px;line-height:47px}}.services #service-list h2{font-size:72px;line-height:63px;line-height:86px;text-transform:uppercase}@media screen and (max-width:1900px){.services #service-list h2{font-size:52px;line-height:53px}}@media screen and (max-width:1600px){.services #service-list h2{font-size:42px;line-height:43px}}@media screen and (max-width:1400px){.services #service-list h2{font-size:32px;line-height:33px}}@media screen and (max-width:767px){.services #service-list h2{font-size:52px;line-height:46px}}@media screen and (max-width:550px){.services #service-list h2{font-size:39px;line-height:47px}}@media screen and (max-width:1900px){.services #service-list h2{line-height:66px}}@media screen and (max-width:1600px){.services #service-list h2{line-height:56px}}@media screen and (max-width:767px){.services #service-list h2{margin-bottom:10px}.services #service-list h2 a{line-height:100%}}.services #service-list h2 a{text-decoration:none;position:relative}.services #service-list h2 a:after{content:"";background-image:url(/files/die-oralchirurgen/assets/img/animiation-lines/line-implantologie.svg);width:100%;height:35px;background-repeat:no-repeat;background-size:100% auto;transform-origin:left center;transform:scaleX(0);transition:transform .5s ease-out;pointer-events:none;position:absolute;bottom:-10px;left:0;z-index:-1}.services #service-list h2 a:hover:after{transform:scaleX(1)}.services #service-list h2 .small-text{font-size:33px;line-height:28px;text-transform:none}@media screen and (max-width:1400px){.services #service-list h2 .small-text{font-size:23px;line-height:18px}}@media screen and (max-width:767px){.services #service-list h2 .small-text{font-size:16px;line-height:20px}}@media screen and (max-width:550px){.services #service-list h2 .small-text{font-size:18px;line-height:23px}}@media screen and (max-width:1400px){.services #service-list h2 a{font-size:42px;line-height:43px}}@media screen and (max-width:1024px){.services #service-list{margin-bottom:250px}}@media screen and (max-width:767px){.services #service-list{margin-bottom:150px}.services #service-list h2{font-size:29px;line-height:34px}.services #service-list h2 a{font-size:29px;line-height:34px}}.services #doc-prinzip{margin-bottom:250px}.services #doc-prinzip .content-headline{max-width:913px}.services #doc-prinzip .content-headline .first{font-size:192px;line-height:167px;margin-bottom:10px;display:block}@media screen and (max-width:1900px){.services #doc-prinzip .content-headline .first{font-size:162px;line-height:137px}}@media screen and (max-width:1600px){.services #doc-prinzip .content-headline .first{font-size:152px;line-height:127px}}@media screen and (max-width:1400px){.services #doc-prinzip .content-headline .first{font-size:122px;line-height:97px}}@media screen and (max-width:1220px){.services #doc-prinzip .content-headline .first{font-size:102px;line-height:77px}}@media screen and (max-width:991px){.services #doc-prinzip .content-headline .first{font-size:96px;line-height:83px}}@media screen and (max-width:767px){.services #doc-prinzip .content-headline .first{font-size:50px;line-height:43px}}@media screen and (max-width:550px){.services #doc-prinzip .content-headline .first{font-size:40px;line-height:33px}}@media screen and (max-width:1024px){.services #doc-prinzip .content-image{overflow-x:auto;overflow-y:hidden;scroll-behavior:smooth}.services #doc-prinzip .content-image img{width:1522px;max-width:none}.services #doc-prinzip .gallery-controls{margin:40px 0 0;padding:0}}@media screen and (max-width:767px){.services #doc-prinzip{margin-bottom:150px}.services #doc-prinzip .content-headline{margin-bottom:30px}}.services #therapiekonzept{font-size:37px;line-height:45px}.services #therapiekonzept .media{height:1200px}@media screen and (max-width:1900px){.services #therapiekonzept .media{height:919px}}@media screen and (max-width:1600px){.services #therapiekonzept .media{height:800px}}@media screen and (max-width:1220px){.services #therapiekonzept .media{height:600px}}@media screen and (max-width:991px){.services #therapiekonzept .media{height:auto}}.services #therapiekonzept video{width:100%;max-width:100%;height:100%}@media screen and (max-width:991px){.services #therapiekonzept video{height:auto}}.services #therapiekonzept .content-full-width-video-image:before{content:none}@media screen and (max-width:1600px){.services #therapiekonzept{font-size:30px;line-height:38px}}@media screen and (max-width:991px){.services #therapiekonzept{font-size:28px;line-height:28px}}.services #therapiekonzept .content-text{max-width:437px}.services .services-list{position:relative;padding:136px 0 125px}.services .services-list#service-list-1{padding-top:136px}.services .services-list#service-list-1:before{top:-50px;height:calc(100% + 50px)}.services .services-list#service-list-3:before{height:calc(100% - 200px)}.services .services-list:before{height:100%;width:3px;background-color:#FF0;position:absolute;left:50%;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-o-transform:translateX(-50%);transform:translateX(-50%);content:"";top:0}.services .services-list .row{--grid__gutter:0 15px;grid-auto-flow:dense}.services .services-list .row>div:nth-child(1){margin-bottom:220px}.services .services-list .row>div:nth-child(2){margin-top:220px}.services .services-list .row>div:nth-child(4){margin-top:220px}.services .services-list .row>div:before{content:"";width:22px;height:22px;display:block;border-radius:22px;position:absolute;background-color:#FF0;left:50%;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-o-transform:translateX(-50%);transform:translateX(-50%);margin-top:20px}.services .services-list h2{font-size:50px;line-height:61px;text-transform:uppercase;font-family:BlauerNue-SemiBold,sans-serif;margin-bottom:40px}@media screen and (max-width:1900px){.services .services-list h2{font-size:40px;line-height:51px}}@media screen and (max-width:1600px){.services .services-list h2{font-size:35px;line-height:46px}}@media screen and (max-width:550px){.services .services-list h2{font-size:30px;line-height:41px}}@media screen and (max-width:350px){.services .services-list h2{font-size:27px;line-height:38px}}@media screen and (max-width:1024px){.services .services-list:before{left:15px}.services .services-list#service-list-1{padding:136px 0 0}.services .services-list .row>div{margin:0 0 80px 15px}.services .services-list .row>div:before{left:5px;margin-top:10px}.services .services-list .row>div:nth-child(1){margin-bottom:80px}.services .services-list .row>div:nth-child(2){margin-top:0}.services .services-list .row>div:nth-child(4){margin-top:0}.services .services-list .row>div.justify-end{text-align:left}}@media screen and (max-width:991px){.services .services-list{padding-bottom:0}.services .services-list .row>div:before{left:15px}}@media screen and (max-width:550px){.services .services-list h2{margin-bottom:20px}}.services .content-full-width-video-image .media{height:1200px}@media screen and (max-width:1600px){.services .content-full-width-video-image .media{height:919px}}@media screen and (max-width:1600px){.services .content-full-width-video-image .media{height:800px}}@media screen and (max-width:1220px){.services .content-full-width-video-image .media{height:600px}}@media screen and (max-width:991px){.services .content-full-width-video-image .media{height:auto}}.services .content-full-width-video-image .content-text{color:#FF0;font-family:BlauerNue-ExtraBold,sans-serif}.services .content-full-width-video-image:before{content:"";height:100%;width:3px;background-color:#FF0;position:absolute;left:50%;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-o-transform:translateX(-50%);transform:translateX(-50%);z-index:99}@media screen and (max-width:1024px){.services .content-full-width-video-image:before{left:15px}}@media screen and (max-width:767px){.services .content-full-width-video-image .controls{left:35px}}.zuweiser #header-custom .info a.btn-link-2{display:none}.zuweiser #header-custom .info .link-home{background-image:url(/files/die-oralchirurgen/assets/img/icon-home-white.svg)}.zuweiser #header-custom .social-media-icons{display:none}.zuweiser #header-custom .background{text-align:right}.zuweiser #header-custom .background video{height:1200px;width:auto}@media screen and (max-width:1600px){.zuweiser #header-custom .background video{height:919px}}@media screen and (max-width:1024px){.zuweiser #header-custom .info a.link-email,.zuweiser #header-custom .info a.link-phone{background-color:#FF0}}.zuweiser #intro{padding-top:300px;padding-bottom:580px}.zuweiser #intro .content-headline{color:#FF0}.zuweiser #intro #video-intro-animation .inner-container{bottom:-350px}.zuweiser #intro #video-intro-animation .inner-container .animation-line{height:690px}@media screen and (max-width:1900px){.zuweiser #intro #video-intro-animation .inner-container .animation-line{height:660px}}@media screen and (max-width:1600px){.zuweiser #intro #video-intro-animation .inner-container{left:100px}.zuweiser #intro #video-intro-animation .inner-container .animation-line{height:640px}}@media screen and (max-width:1400px){.zuweiser #intro #video-intro-animation .inner-container{left:50px}.zuweiser #intro #video-intro-animation .inner-container .animation-line{height:660px}}.zuweiser #intro .content-zitat{margin-top:130px;margin-left:70px;max-width:900px}.zuweiser #intro .content-zitat .mark.mark-circle:before{background-image:url(/files/die-oralchirurgen/assets/img/animiation-lines/marker-circle-4.svg);width:calc(100% + 140px);height:calc(100% + 140px);top:-50px;left:-40px}@media screen and (max-width:1900px){.zuweiser #intro .content-zitat{margin-left:0}}@media screen and (max-width:1400px){.zuweiser #intro .content-zitat{max-width:600px}}@media screen and (max-width:1024px){.zuweiser #intro{padding-bottom:150px}.zuweiser #intro #video-intro-animation .inner-container{left:auto;bottom:auto}}@media screen and (max-width:767px){.zuweiser #intro{padding-top:60px}}.zuweiser #vorteile .content-icon-list{padding-bottom:294px}.zuweiser #vorteile .content-headline{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:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end;overflow-x:visible}.zuweiser #vorteile .content-headline::-webkit-scrollbar{display:none!important}.zuweiser #vorteile .content-headline .first{font-size:192px;line-height:167px;text-transform:uppercase;max-width:994px;display:block}@media screen and (max-width:1900px){.zuweiser #vorteile .content-headline .first{font-size:162px;line-height:137px}}@media screen and (max-width:1600px){.zuweiser #vorteile .content-headline .first{font-size:152px;line-height:127px}}@media screen and (max-width:1400px){.zuweiser #vorteile .content-headline .first{font-size:122px;line-height:97px}}@media screen and (max-width:1220px){.zuweiser #vorteile .content-headline .first{font-size:102px;line-height:77px}}@media screen and (max-width:991px){.zuweiser #vorteile .content-headline .first{font-size:96px;line-height:83px}}@media screen and (max-width:767px){.zuweiser #vorteile .content-headline .first{font-size:50px;line-height:43px}}@media screen and (max-width:550px){.zuweiser #vorteile .content-headline .first{font-size:40px;line-height:33px}}.zuweiser #vorteile .content-headline .second{margin-bottom:10px;margin-left:-160px}@media screen and (max-width:1900px){.zuweiser #vorteile .content-headline .second{margin-left:-260px}}@media screen and (max-width:1900px){.zuweiser #vorteile .content-headline .second{margin-left:-320px}}@media screen and (max-width:1600px){.zuweiser #vorteile .content-headline .second{margin-left:-350px}}@media screen and (max-width:1400px){.zuweiser #vorteile .content-headline .second{margin-left:-160px;margin-bottom:0}}@media screen and (max-width:1400px){.zuweiser #vorteile .content-headline .first{max-width:690px}}@media screen and (max-width:1024px){.zuweiser #vorteile .content-headline{flex-direction:column;-webkit-box-align:flex-start;-webkit-align-items:flex-start;-ms-flex-align:flex-start;align-items:flex-start}.zuweiser #vorteile .content-headline .second{margin-left:0}}@media screen and (max-width:767px){.zuweiser #vorteile .row{display:block}.zuweiser #vorteile .content-icon-list{padding-bottom:150px}}.zuweiser #better-call{padding-bottom:386px}.zuweiser #better-call .content-image figure{height:686px}.zuweiser #better-call .content-image figure img{width:100%;height:100%;max-width:100%;object-fit:cover;border-top-right-radius:50px;border-bottom-right-radius:65px}.zuweiser #better-call .content-text{margin:0 0 70px 60px;max-width:437px}.zuweiser #better-call .content-text h4{color:#FF0;text-transform:uppercase;font-family:BlauerNue-SemiBold,sans-serif;font-size:57px;line-height:69px;margin-bottom:30px}@media screen and (max-width:1400px){.zuweiser #better-call .content-text h4{font-size:47px;line-height:59px}}@media screen and (max-width:767px){.zuweiser #better-call .content-text h4{font-size:35px;line-height:42px}}@media screen and (max-width:1024px){.zuweiser #better-call{padding-bottom:200px}.zuweiser #better-call .content-image{margin-bottom:40px}.zuweiser #better-call .content-image figure{height:600px}.zuweiser #better-call .content-image figure img{margin-left:-30px;border-top-right-radius:43px;border-bottom-right-radius:43px}}@media screen and (max-width:767px){.zuweiser #better-call{padding-bottom:100px}.zuweiser #better-call .content-image figure{height:500px}}@media screen and (max-width:550px){.zuweiser #better-call .content-text{margin:0 25px 0}.zuweiser #better-call .content-image figure{height:300px}}.zuweiser .content-full-width-video-image{padding-bottom:386px}.zuweiser .content-full-width-video-image .content-text{color:#FF0;font-size:192px;line-height:167px;font-family:BlauerNue-ExtraBold,sans-serif}@media screen and (max-width:1900px){.zuweiser .content-full-width-video-image .content-text{font-size:162px;line-height:137px}}@media screen and (max-width:1600px){.zuweiser .content-full-width-video-image .content-text{font-size:152px;line-height:127px}}@media screen and (max-width:1400px){.zuweiser .content-full-width-video-image .content-text{font-size:122px;line-height:97px}}@media screen and (max-width:1220px){.zuweiser .content-full-width-video-image .content-text{font-size:102px;line-height:77px}}@media screen and (max-width:991px){.zuweiser .content-full-width-video-image .content-text{font-size:96px;line-height:83px}}@media screen and (max-width:767px){.zuweiser .content-full-width-video-image .content-text{font-size:50px;line-height:43px}}@media screen and (max-width:550px){.zuweiser .content-full-width-video-image .content-text{font-size:40px;line-height:33px}}@media screen and (max-width:767px){.zuweiser .content-full-width-video-image{padding-bottom:286px}}@media screen and (max-width:550px){.zuweiser .content-full-width-video-image{padding-bottom:60px}}.zuweiser #together{padding-bottom:260px}.zuweiser #together .content-headline{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:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end;overflow-x:visible}.zuweiser #together .content-headline::-webkit-scrollbar{display:none!important}.zuweiser #together .content-headline .first{font-size:119px;line-height:104px;width:min-content;text-transform:uppercase}@media screen and (max-width:1600px){.zuweiser #together .content-headline .first{font-size:105px;line-height:90px}}@media screen and (max-width:1400px){.zuweiser #together .content-headline .first{font-size:95px;line-height:80px}}@media screen and (max-width:1024px){.zuweiser #together .content-headline .first{font-size:65px;line-height:50px}}@media screen and (max-width:767px){.zuweiser #together .content-headline .first{font-size:44px;line-height:43px}}@media screen and (max-width:350px){.zuweiser #together .content-headline .first{font-size:40px;line-height:39px}}.zuweiser #together .content-headline .second{margin:0 0 5px 33px;max-width:355px;color:#fff}.zuweiser #together .text-image{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;width:1022px;-webkit-box-pack:justify;-webkit-justify-content:space-around;-ms-flex-pack:justify;justify-content:space-around;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;padding-top:100px}.zuweiser #together .text-image::-webkit-scrollbar{display:none!important}.zuweiser #together .text-image h4{font-size:29px;line-height:35px}@media screen and (max-width:1900px){.zuweiser #together .text-image h4{font-size:22px;line-height:27px}}@media screen and (max-width:1600px){.zuweiser #together .text-image h4{font-size:20px;line-height:25px}}@media screen and (max-width:1400px){.zuweiser #together .text-image h4{font-size:18px;line-height:23px}}@media screen and (max-width:550px){.zuweiser #together .text-image h4{font-size:16px;line-height:21px}}.zuweiser #together .media--above{text-align:center;position:relative}.zuweiser #together .media--above.item-center{margin-top:-80px}.zuweiser #together .media--above img{max-width:auto;width:auto}.zuweiser #together .content-image{padding-bottom:100px}.zuweiser #together .content-image img{max-width:none;width:auto}.zuweiser #together .content-zitat .small-text{font-size:41px;line-height:50px;display:inline-block}@media screen and (max-width:1900px){.zuweiser #together .content-zitat .small-text{font-size:30px;line-height:36px}}@media screen and (max-width:550px){.zuweiser #together .content-zitat .small-text{font-size:28px;line-height:34px}}.zuweiser #together .row>div:first-child{margin-left:-50px}.zuweiser #together .row>div:nth-child(2) .content-text{margin-top:40px}@media screen and (max-width:1600px){.zuweiser #together .row>div:first-child{margin-left:0}}@media screen and (max-width:1400px){.zuweiser #together .content-image img{max-width:100%}.zuweiser #together .text-image{width:90%}.zuweiser #together .text-image h3{font-size:20px}.zuweiser #together .content-zitat{padding-left:0}.zuweiser #together .content-zitat:before{left:-80px}}@media screen and (max-width:1024px){.zuweiser #together .content-headline{flex-direction:column;-webkit-box-align:flex-start;-webkit-align-items:flex-start;-ms-flex-align:flex-start;align-items:flex-start}.zuweiser #together .content-headline .second{margin:10px 0 0}.zuweiser #together .media--above img{max-width:100px;height:auto}}@media screen and (max-width:767px){.zuweiser #together .content-zitat{padding-left:0}.zuweiser #together .content-zitat:before{left:-70px}}@media screen and (max-width:550px){.zuweiser #together{padding-bottom:150px}.zuweiser #together .text-image-wrapper{overflow-x:auto;overflow-y:hidden;scroll-behavior:smooth}.zuweiser #together .text-image-wrapper .content-image,.zuweiser #together .text-image-wrapper .text-image{width:100%}.zuweiser #together .text-image-wrapper .media--above img{-webkit-transform:scale(.5);-moz-transform:scale(.5);-ms-transform:scale(.5);-o-transform:scale(.5);transform:scale(.5)}.zuweiser #together .text-image-wrapper .media--above.item-center{margin-left:-10px}.zuweiser #together .text-image{padding-top:60px}.zuweiser #together .text-image h3{font-size:14px;line-height:100%}.zuweiser #together .content-zitat .small-text{font-size:24px;line-height:34px}}.zuweiser #form-ueberweisung{padding-bottom:240px}.zuweiser #form-ueberweisung .content-headline{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:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end;overflow-x:visible}.zuweiser #form-ueberweisung .content-headline::-webkit-scrollbar{display:none!important}.zuweiser #form-ueberweisung .content-headline .first{font-size:119px;line-height:104px;width:min-content}@media screen and (max-width:1600px){.zuweiser #form-ueberweisung .content-headline .first{font-size:105px;line-height:90px}}@media screen and (max-width:1400px){.zuweiser #form-ueberweisung .content-headline .first{font-size:95px;line-height:80px}}@media screen and (max-width:1024px){.zuweiser #form-ueberweisung .content-headline .first{font-size:65px;line-height:50px}}@media screen and (max-width:767px){.zuweiser #form-ueberweisung .content-headline .first{font-size:44px;line-height:43px}}@media screen and (max-width:350px){.zuweiser #form-ueberweisung .content-headline .first{font-size:40px;line-height:39px}}.zuweiser #form-ueberweisung .content-headline .second{margin:0 0 5px 33px;max-width:455px;color:#fff}.zuweiser #form-ueberweisung .formbody .row>div.ce_columns:nth-child(2){position:relative}.zuweiser #form-ueberweisung .formbody .row>div .widget-submit{right:0;bottom:10px}.zuweiser #form-ueberweisung .formbody .content-hyperlink{margin-top:57px}.zuweiser #form-ueberweisung .formbody .content-hyperlink a{border-color:#FF0;color:#FF0;font-size:18px;line-height:22px;text-decoration:none;display:block;box-sizing:border-box;height:60px;line-height:50px;padding-top:0;padding-bottom:0}@media screen and (max-width:1400px){.zuweiser #form-ueberweisung .formbody .content-hyperlink a{font-size:16px;line-height:20px}}.zuweiser #form-ueberweisung .formbody .content-hyperlink a:after{background:url(/files/die-oralchirurgen/assets/img/btn-link-arrow-yellow.svg) no-repeat;background-size:contain}.zuweiser #form-ueberweisung .formbody .content-hyperlink a:hover{background-color:#3d008a}@media screen and (max-width:1400px){.zuweiser #form-ueberweisung .formbody .content-hyperlink a{line-height:55px}}@media screen and (max-width:1024px){.zuweiser #form-ueberweisung .content-headline{flex-direction:column;-webkit-box-align:flex-start;-webkit-align-items:flex-start;-ms-flex-align:flex-start;align-items:flex-start}.zuweiser #form-ueberweisung .content-headline .second{margin:10px 0 0}}@media screen and (max-width:991px){.zuweiser #form-ueberweisung .formbody .content-hyperlink a{display:inline-block}}@media screen and (max-width:550px){.zuweiser #form-ueberweisung{padding-bottom:140px}.zuweiser #form-ueberweisung .ce_form .widget{text-align:left}.zuweiser #form-ueberweisung .formbody .content-hyperlink a{font-size:14px}}.zuweiser #footer #footer-anfahrt,.zuweiser #footer #footer-top .row{background-color:#000}.zuweiser .ce_form input[type=email],.zuweiser .ce_form input[type=tel],.zuweiser .ce_form input[type=text],.zuweiser .ce_form textarea{background-color:#000}.karriere #header-custom .info a.btn-link-2{display:none}.karriere #header-custom .info .link-home{background-image:url(/files/die-oralchirurgen/assets/img/icon-home-white.svg)}.karriere #header-custom .social-media-icons{display:none}.karriere #header-custom .header-content{height:1173px}.karriere #header-custom .header-content .text{position:absolute;left:calc(50% - 35px);bottom:150px;right:auto;font-size:96px;line-height:100%;font-family:BlauerNue-ExtraBold,sans-serif}@media screen and (max-width:1900px){.karriere #header-custom .header-content .text{font-size:70px}}@media screen and (max-width:1600px){.karriere #header-custom .header-content .text{font-size:60px}}@media screen and (max-width:1400px){.karriere #header-custom .header-content .text{font-size:56px;line-height:61px}}@media screen and (max-width:767px){.karriere #header-custom .header-content .text{font-size:51px;line-height:61px}}@media screen and (max-width:550px){.karriere #header-custom .header-content .text{font-size:39px;line-height:41px}}@media screen and (max-width:350px){.karriere #header-custom .header-content .text{font-size:27px;line-height:38px}}@media screen and (max-width:1900px){.karriere #header-custom .header-content .text{left:calc(50% - 22px)}}.karriere #header-custom .header-content .grafic img{max-width:652px}@media screen and (max-width:1900px){.karriere #header-custom .header-content{height:1100px}.karriere #header-custom .header-content .grafic img{max-width:572px}}@media screen and (max-width:1600px){.karriere #header-custom .header-content{height:950px}.karriere #header-custom .header-content .grafic img{max-width:500px}}.karriere #header-custom .background .media figure{width:50%;margin-left:auto;height:1173px}.karriere #header-custom .background .media figure img{width:100%;height:100%;object-fit:cover;border-bottom-left-radius:60px}@media screen and (max-width:1900px){.karriere #header-custom .background .media figure{height:1100px}}@media screen and (max-width:1600px){.karriere #header-custom .background .media figure{height:950px;width:49%}}@media screen and (max-width:1024px){.karriere #header-custom .background{position:relative}.karriere #header-custom .background .media figure{width:100%;height:650px}.karriere #header-custom .background .media figure img{border-bottom-left-radius:0}.karriere #header-custom .header-content{margin-top:-150px;padding-top:0;height:auto}.karriere #header-custom .header-content .text{bottom:auto;top:-60px;left:25px}}@media screen and (max-width:767px){.karriere #header-custom .header-content .grafic{margin-left:-50px}.karriere #header-custom .background .media figure{height:550px}}@media screen and (max-width:550px){.karriere #header-custom .background .media figure{height:480px}.karriere #header-custom .header-content{margin-top:-120px}}@media screen and (max-width:350px){.karriere #header-custom .background .media figure{height:400px;width:100%}}.karriere #intro{padding-bottom:260px}.karriere #intro .content-headline{margin-top:63px;margin-bottom:30px}.karriere #intro .content-headline .first{font-size:96px;line-height:100%;text-transform:uppercase}@media screen and (max-width:1900px){.karriere #intro .content-headline .first{font-size:70px}}@media screen and (max-width:1600px){.karriere #intro .content-headline .first{font-size:60px}}@media screen and (max-width:1400px){.karriere #intro .content-headline .first{font-size:56px;line-height:61px}}@media screen and (max-width:767px){.karriere #intro .content-headline .first{font-size:51px;line-height:61px}}@media screen and (max-width:550px){.karriere #intro .content-headline .first{font-size:39px;line-height:41px}}@media screen and (max-width:350px){.karriere #intro .content-headline .first{font-size:27px;line-height:38px}}.karriere #intro .content-headline .second{margin-top:30px}.karriere #intro #video-intro-animation .inner-container{top:auto;bottom:-80px}.karriere #intro #video-intro-animation .inner-container .animation-line{height:720px}.karriere #intro #video-intro-animation figure{bottom:calc(100% - 80px);top:auto}.karriere #intro .content-text p+h2{font-size:29px;line-height:35px}@media screen and (max-width:1900px){.karriere #intro .content-text p+h2{font-size:22px;line-height:27px}}@media screen and (max-width:1600px){.karriere #intro .content-text p+h2{font-size:20px;line-height:25px}}@media screen and (max-width:1400px){.karriere #intro .content-text p+h2{font-size:18px;line-height:23px}}@media screen and (max-width:550px){.karriere #intro .content-text p+h2{font-size:16px;line-height:21px}}.karriere #intro .content-zitat{margin-top:150px;margin-left:0;max-width:800px}@media screen and (max-width:1900px){.karriere #intro #video-intro-animation .inner-container .animation-line{height:630px}.karriere #intro .content-zitat{max-width:700px}}@media screen and (max-width:1600px){.karriere #intro #video-intro-animation .inner-container .animation-line{height:580px}}@media screen and (max-width:1400px){.karriere #intro #video-intro-animation .inner-container .animation-line{height:580px}.karriere #intro .content-zitat{max-width:500px}}@media screen and (max-width:1024px){.karriere #intro .content-headline{margin-top:-300px}}@media screen and (max-width:991px){.karriere #intro{padding-bottom:160px}}@media screen and (max-width:767px){.karriere #intro{padding-bottom:100px}.karriere #intro .content-zitat{margin-top:190px}.karriere #intro .content-headline{margin-top:63px}}.karriere #team-doc{padding-bottom:370px}@media screen and (max-width:1600px){.karriere #team-doc{padding-bottom:250px}}@media screen and (max-width:767px){.karriere #team-doc{padding-bottom:130px}}.karriere #team-doc .content-image figure{position:relative;height:686px}@media screen and (max-width:1600px){.karriere #team-doc .content-image figure{height:600px}}@media screen and (max-width:1600px){.karriere #team-doc .content-image figure{height:550px}}.karriere #team-doc .content-image figure img{width:100%;height:100%;max-width:100%;object-fit:cover;border-top-right-radius:50px;border-bottom-right-radius:50px}.karriere #team-doc .content-image figure figcaption{position:absolute;font-size:96px;line-height:100%;text-transform:uppercase;font-family:BlauerNue-ExtraBold,sans-serif;bottom:100px;left:100px}@media screen and (max-width:1900px){.karriere #team-doc .content-image figure figcaption{font-size:70px}}@media screen and (max-width:1600px){.karriere #team-doc .content-image figure figcaption{font-size:60px}}@media screen and (max-width:1400px){.karriere #team-doc .content-image figure figcaption{font-size:56px;line-height:61px}}@media screen and (max-width:767px){.karriere #team-doc .content-image figure figcaption{font-size:51px;line-height:61px}}@media screen and (max-width:550px){.karriere #team-doc .content-image figure figcaption{font-size:39px;line-height:41px}}@media screen and (max-width:350px){.karriere #team-doc .content-image figure figcaption{font-size:27px;line-height:38px}}.karriere #team-doc .content-text{margin:0 0 70px 60px;max-width:520px;color:#FF0}.karriere #team-doc .content-text h2{color:#FF0;font-family:BlauerNue-SemiBold,sans-serif;font-size:57px;line-height:69px;margin-bottom:30px}@media screen and (max-width:1400px){.karriere #team-doc .content-text h2{font-size:47px;line-height:59px}}@media screen and (max-width:767px){.karriere #team-doc .content-text h2{font-size:35px;line-height:42px}}@media screen and (max-width:1900px){.karriere #team-doc .content-image figure:after{left:68%}}@media screen and (max-width:1600px){.karriere #team-doc .content-text{margin-left:0}.karriere #team-doc .content-image figure:after{left:73%}}@media screen and (max-width:1024px){.karriere #team-doc .content-image{margin-bottom:40px}.karriere #team-doc .content-image figure img{margin-left:-30px;border-top-right-radius:43px;border-bottom-right-radius:43px}.karriere #team-doc .content-image figure figcaption{left:60px}.karriere #team-doc .content-text{margin-left:60px}}@media screen and (max-width:767px){.karriere #team-doc .content-text{margin:0 25px}}@media screen and (max-width:550px){.karriere #team-doc .content-image figure{height:234px}.karriere #team-doc .content-image figure figcaption{left:25px}.karriere #team-doc .content-text{margin:0 25px}}.karriere #philosophie{padding-bottom:375px}.karriere #philosophie .content-headline.layout-next .first{font-size:96px;line-height:100%}@media screen and (max-width:1900px){.karriere #philosophie .content-headline.layout-next .first{font-size:70px}}@media screen and (max-width:1600px){.karriere #philosophie .content-headline.layout-next .first{font-size:60px}}@media screen and (max-width:1400px){.karriere #philosophie .content-headline.layout-next .first{font-size:56px;line-height:61px}}@media screen and (max-width:767px){.karriere #philosophie .content-headline.layout-next .first{font-size:51px;line-height:61px}}@media screen and (max-width:550px){.karriere #philosophie .content-headline.layout-next .first{font-size:39px;line-height:41px}}@media screen and (max-width:350px){.karriere #philosophie .content-headline.layout-next .first{font-size:27px;line-height:38px}}.karriere #philosophie .content-headline.layout-next .second{max-width:546px;text-transform:uppercase}@media screen and (max-width:1900px){.karriere #philosophie .content-headline.layout-next .second{max-width:410px}}@media screen and (max-width:1600px){.karriere #philosophie .content-headline.layout-next .second{max-width:340px}}.karriere #philosophie .content-text{margin-top:180px}.karriere #philosophie .content-text .rte p .highlight{text-transform:uppercase;font-size:72px;line-height:63px;line-height:87px}@media screen and (max-width:1900px){.karriere #philosophie .content-text .rte p .highlight{font-size:52px;line-height:53px}}@media screen and (max-width:1600px){.karriere #philosophie .content-text .rte p .highlight{font-size:42px;line-height:43px}}@media screen and (max-width:1400px){.karriere #philosophie .content-text .rte p .highlight{font-size:32px;line-height:33px}}@media screen and (max-width:767px){.karriere #philosophie .content-text .rte p .highlight{font-size:52px;line-height:46px}}@media screen and (max-width:550px){.karriere #philosophie .content-text .rte p .highlight{font-size:39px;line-height:47px}}.karriere #philosophie .content-text .rte p:last-child{max-width:400px;margin-left:auto;margin-top:50px}@media screen and (max-width:1900px){.karriere #philosophie .content-text{margin-top:100px}}@media screen and (max-width:991px){.karriere #philosophie{padding-bottom:150px}.karriere #philosophie .content-headline{margin-bottom:25px}.karriere #philosophie .content-headline.layout-next .second{margin:10px 0 0;display:block}.karriere #philosophie .content-text{margin-top:10px}}@media screen and (max-width:767px){.karriere #philosophie{padding-bottom:100px}}.karriere #jobs{position:relative;padding-bottom:250px}.karriere #jobs:after{content:"";background:url(/files/die-oralchirurgen/uploads/karriere/bg-jobs.png) no-repeat;width:1140px;height:760px;position:absolute;right:0;top:180px;background-size:contain}.karriere #jobs .content-headline{margin-bottom:160px}.karriere #jobs .content-headline .first{font-size:96px;line-height:100%;white-space:nowrap}@media screen and (max-width:1900px){.karriere #jobs .content-headline .first{font-size:70px}}@media screen and (max-width:1600px){.karriere #jobs .content-headline .first{font-size:60px}}@media screen and (max-width:1400px){.karriere #jobs .content-headline .first{font-size:56px;line-height:61px}}@media screen and (max-width:767px){.karriere #jobs .content-headline .first{font-size:51px;line-height:61px}}@media screen and (max-width:550px){.karriere #jobs .content-headline .first{font-size:39px;line-height:41px}}@media screen and (max-width:350px){.karriere #jobs .content-headline .first{font-size:27px;line-height:38px}}.karriere #jobs .content-headline .second{margin-bottom:10px}.karriere #jobs .job-item{color:#FF0;font-size:29px;line-height:35px;border-bottom:4px solid #FF0;padding-bottom:34px;margin-bottom:75px}@media screen and (max-width:1900px){.karriere #jobs .job-item{font-size:22px;line-height:27px}}@media screen and (max-width:1600px){.karriere #jobs .job-item{font-size:20px;line-height:25px}}@media screen and (max-width:1400px){.karriere #jobs .job-item{font-size:18px;line-height:23px}}@media screen and (max-width:550px){.karriere #jobs .job-item{font-size:16px;line-height:21px}}.karriere #jobs .job-item span{display:block;font-size:72px;line-height:63px;font-family:BlauerNue-ExtraBold,sans-serif;margin-bottom:10px}@media screen and (max-width:1900px){.karriere #jobs .job-item span{font-size:52px;line-height:53px}}@media screen and (max-width:1600px){.karriere #jobs .job-item span{font-size:42px;line-height:43px}}@media screen and (max-width:1400px){.karriere #jobs .job-item span{font-size:32px;line-height:33px}}@media screen and (max-width:767px){.karriere #jobs .job-item span{font-size:52px;line-height:46px}}@media screen and (max-width:550px){.karriere #jobs .job-item span{font-size:39px;line-height:47px}}@media screen and (max-width:1900px){.karriere #jobs:after{width:800px;height:534px;top:280px}}@media screen and (max-width:1400px){.karriere #jobs:after{width:600px;height:400px}}@media screen and (max-width:991px){.karriere #jobs{padding-bottom:150px}.karriere #jobs .content-headline{margin-bottom:40px}.karriere #jobs .content-headline.layout-next .second{margin:10px 0 0;display:block}}@media screen and (max-width:767px){.karriere #jobs:after{content:none}.karriere #jobs .content-headline::after{content:"";background:url(/files/die-oralchirurgen/uploads/karriere/bg-jobs.png) no-repeat;width:100%;height:470px;background-size:contain;display:block}.karriere #jobs .job-item span{font-size:73px;line-height:88px}.karriere #jobs .job-item p{font-size:29px;line-height:35px}}@media screen and (max-width:550px){.karriere #jobs .content-headline{position:relative;padding-bottom:470px}.karriere #jobs .content-headline:after{position:absolute;background-size:cover;width:705px;left:-50%}.karriere #jobs .job-item{grid-column:span 12/span 12}}.karriere #praxis{padding-bottom:250px}@media screen and (max-width:1600px){.karriere #praxis{padding-bottom:200px}}.karriere #praxis .content-headline{margin-bottom:200px}.karriere #praxis .content-headline .first{font-size:96px;line-height:100%}@media screen and (max-width:1900px){.karriere #praxis .content-headline .first{font-size:70px}}@media screen and (max-width:1600px){.karriere #praxis .content-headline .first{font-size:60px}}@media screen and (max-width:1400px){.karriere #praxis .content-headline .first{font-size:56px;line-height:61px}}@media screen and (max-width:767px){.karriere #praxis .content-headline .first{font-size:51px;line-height:61px}}@media screen and (max-width:550px){.karriere #praxis .content-headline .first{font-size:39px;line-height:41px}}@media screen and (max-width:350px){.karriere #praxis .content-headline .first{font-size:27px;line-height:38px}}.karriere #praxis .content-headline .second{margin-bottom:10px}.karriere #praxis .content-text{font-size:33px;line-height:28px;line-height:40px;font-family:BlauerNue-ExtraBold,sans-serif}@media screen and (max-width:1400px){.karriere #praxis .content-text{font-size:23px;line-height:18px}}@media screen and (max-width:767px){.karriere #praxis .content-text{font-size:16px;line-height:20px}}@media screen and (max-width:550px){.karriere #praxis .content-text{font-size:18px;line-height:23px}}@media screen and (max-width:1400px){.karriere #praxis .content-text{font-size:33px;line-height:40px}}@media screen and (max-width:1024px){.karriere #praxis .content-text{max-width:300px}}@media screen and (max-width:991px){.karriere #praxis{padding-bottom:150px}.karriere #praxis .content-headline{margin-bottom:30px}.karriere #praxis .content-headline.layout-next .second{margin:10px 0 0;display:block}}@media screen and (max-width:767px){.karriere #praxis .content-text{max-width:220px}}@media screen and (max-width:767px){.karriere #praxis{padding-bottom:100px}}.karriere #bewerbung{position:relative;padding-bottom:400px;padding-top:250px}@media screen and (max-width:1600px){.karriere #bewerbung{padding-bottom:250px}}.karriere #bewerbung:before{content:"";background:url(/files/die-oralchirurgen/assets/img/arrow.svg);width:365px;height:370px;position:absolute;left:calc(50% - 100px);-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-o-transform:translateX(-50%);transform:translateX(-50%);top:-20px;opacity:0;transition:opacity .2s ease-in}.karriere #bewerbung.visible:before{opacity:1}.karriere #bewerbung .row{--grid__gutter:0 15px}.karriere #bewerbung .content-headline{position:relative}.karriere #bewerbung .content-headline .first{font-size:96px;line-height:100%}@media screen and (max-width:1900px){.karriere #bewerbung .content-headline .first{font-size:70px}}@media screen and (max-width:1600px){.karriere #bewerbung .content-headline .first{font-size:60px}}@media screen and (max-width:1400px){.karriere #bewerbung .content-headline .first{font-size:56px;line-height:61px}}@media screen and (max-width:767px){.karriere #bewerbung .content-headline .first{font-size:51px;line-height:61px}}@media screen and (max-width:550px){.karriere #bewerbung .content-headline .first{font-size:39px;line-height:41px}}@media screen and (max-width:350px){.karriere #bewerbung .content-headline .first{font-size:27px;line-height:38px}}.karriere #bewerbung .content-headline:after{content:"";background:url(/files/die-oralchirurgen/assets/img/sprachblase.svg) no-repeat;width:381px;height:293px;position:absolute;bottom:-154px;left:-15px;z-index:-1}.karriere #bewerbung .ce_form input[type=email],.karriere #bewerbung .ce_form input[type=tel],.karriere #bewerbung .ce_form input[type=text]{height:54px}.karriere #bewerbung .ce_form label{font-size:23px;line-height:28px}@media screen and (max-width:1600px){.karriere #bewerbung .ce_form label{font-size:18px;line-height:22px}}@media screen and (max-width:550px){.karriere #bewerbung .ce_form label{font-size:16px;line-height:20px}}.karriere #bewerbung .ce_form .formbody{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:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end;flex-direction:column}.karriere #bewerbung .ce_form .formbody::-webkit-scrollbar{display:none!important}.karriere #bewerbung .ce_form input[name=name]{width:356px}.karriere #bewerbung .ce_form input[name=email]{width:240px}.karriere #bewerbung .ce_form input[name=job]{width:296px}.karriere #bewerbung .ce_form textarea{width:388px}.karriere #bewerbung .ce_form input[type=checkbox][name=datapolicy]+label{font-size:12px;line-height:14px;margin-right:170px}.karriere #bewerbung .ce_form .widget-submit{bottom:30px}.karriere #bewerbung .ce_form .widget-submit button{font-size:23px;line-height:28px;height:54px;width:164px;padding:0}@media screen and (max-width:1600px){.karriere #bewerbung .ce_form .widget-submit button{font-size:18px;line-height:22px}}@media screen and (max-width:550px){.karriere #bewerbung .ce_form .widget-submit button{font-size:16px;line-height:20px}}@media screen and (max-width:1900px){.karriere #bewerbung .content-headline:after{left:-16px;width:281px;height:219px;background-size:contain;bottom:-120px}.karriere #bewerbung .ce_form{max-width:400px}.karriere #bewerbung .ce_form input[type=checkbox][name=datapolicy]+label{margin-right:0}.karriere #bewerbung .ce_form .widget-submit{position:relative;bottom:auto}}@media screen and (max-width:1600px){.karriere #bewerbung .content-headline:after{left:-40px}}@media screen and (max-width:1400px){.karriere #bewerbung .content-headline:after{width:281px;height:217px;background-size:contain;bottom:-98px;left:-50px}}@media screen and (max-width:1220px){.karriere #bewerbung .content-headline.layout-next .second{position:absolute;margin-top:30px}}@media screen and (max-width:1024px){.karriere #bewerbung{padding-bottom:140px}.karriere #bewerbung .content-headline:after{width:251px;height:194px;bottom:-70px}}@media screen and (max-width:767px){.karriere #bewerbung{padding-top:0}.karriere #bewerbung:before{background-size:contain;top:180px;height:269px;width:265px;left:250px}.karriere #bewerbung .ce_form{max-width:100%}.karriere #bewerbung .ce_form .widget{text-align:right}.karriere #bewerbung .row{display:block}.karriere #bewerbung .row>div{grid-column-start:none;grid-column:none;width:100%}.karriere #bewerbung .row>div:last-child{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-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;grid-column-start:none;grid-column:none}.karriere #bewerbung .row>div:last-child::-webkit-scrollbar{display:none!important}.karriere #bewerbung .content-headline{margin-bottom:230px}.karriere #bewerbung .content-headline:after{width:200px;height:154px;left:-20px}}@media screen and (max-width:550px){.karriere #bewerbung:before{left:0;top:227px;height:203px;width:200px;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}.karriere #bewerbung .ce_form input[type=email],.karriere #bewerbung .ce_form input[type=tel],.karriere #bewerbung .ce_form input[type=text]{height:41px}.karriere #bewerbung .ce_form textarea{width:100%}.karriere #bewerbung .ce_form input[name=name]{width:90%}.karriere #bewerbung .ce_form input[name=job]{width:80%}.karriere #bewerbung .ce_form input[name=email]{width:60%}.karriere #bewerbung .ce_form .widget-submit button{height:41px}.karriere #bewerbung .content-headline:after{bottom:-86px}.karriere #bewerbung .content-headline:layout-next .second{margin-top:18px}.karriere #bewerbung .content-headline .first{font-size:51px;line-height:61px}}.slick-slide img{width:100%;height:auto}@media screen and (max-width:767px){.slick-slide img{height:100%;object-fit:cover}}@media screen and (max-width:767px){.slick-slide>div>div{height:559px}}.mod_rocksolid_slider{position:relative}.slick-autoplay-toggle-button{position:absolute;bottom:25px;left:50%;transform:translateX(-50%);z-index:10;color:#3d008a;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;overflow-x:visible}.slick-autoplay-toggle-button::-webkit-scrollbar{display:none!important}.slick-autoplay-toggle-button:focus{color:#3d008a}.slick-autoplay-toggle-button .slick-pause-icon{display:inline!important;position:relative}.slick-autoplay-toggle-button .slick-pause-icon:before{font-size:23px;content:"";background:url(/files/die-oralchirurgen/assets/img/btn-pause.svg) no-repeat;width:22px;height:20px;display:inline-block;background-size:contain}.slick-autoplay-toggle-button .slick-pause-icon:after{width:3px;height:38px;background-color:#3d008a;content:"|";display:inline-block;margin:0 10px 0;position:relative;top:-18px}.slick-autoplay-toggle-button .slick-play-icon{display:inline!important}.slick-autoplay-toggle-button .slick-play-icon:before{content:"";background:url(/files/die-oralchirurgen/assets/img/btn-play.svg) no-repeat;width:16px;height:19px;display:inline-block;background-size:contain}@media screen and (max-width:767px){.slick-autoplay-toggle-button{bottom:32px}.slick-autoplay-toggle-button .slick-pause-icon:before{width:21px}.slick-autoplay-toggle-button .slick-pause-icon:after{height:25px;top:-10px}}.slick-next,.slick-prev{top:auto!important;left:auto;right:auto;width:57px;height:57px;bottom:30px;position:absolute;z-index:10}.slick-next .slick-next-icon:before,.slick-next .slick-prev-icon:before,.slick-prev .slick-next-icon:before,.slick-prev .slick-prev-icon:before{content:"";width:57px;height:57px;display:inline-block}.slick-prev{right:50%;transform:translateX(-90%)}.slick-prev .slick-prev-icon:before{background:url(/files/die-oralchirurgen/assets/img/icon-arrow-prev.svg) no-repeat}.slick-next{left:50%;transform:translateX(90%)}.slick-next .slick-next-icon:before{background:url(/files/die-oralchirurgen/assets/img/icon-arrow-next.svg) no-repeat}.ce_form .widget{position:relative;margin-bottom:15px}.ce_form .widget.widget-text label,.ce_form .widget.widget-textarea label{position:absolute;white-space:nowrap;overflow:hidden;top:50%;display:inline-block;padding:0;transition:position .2s linear;right:32px;transform:translateY(-50%);font-size:33px;line-height:28px}@media screen and (max-width:1400px){.ce_form .widget.widget-text label,.ce_form .widget.widget-textarea label{font-size:23px;line-height:18px}}@media screen and (max-width:767px){.ce_form .widget.widget-text label,.ce_form .widget.widget-textarea label{font-size:16px;line-height:20px}}@media screen and (max-width:550px){.ce_form .widget.widget-text label,.ce_form .widget.widget-textarea label{font-size:18px;line-height:23px}}.ce_form .widget.widget-text.focused label,.ce_form .widget.widget-textarea.focused label{transition:all .2s linear;top:15px;font-size:11px!important}.ce_form .widget.widget-textarea label{top:40px;transform:translateY(0)}.ce_form input[type=text],.ce_form input[type=email],.ce_form input[type=tel]{height:79px;color:#fff}.ce_form input[type=text],.ce_form input[type=email],.ce_form input[type=tel],.ce_form textarea{border:5px solid #fff;padding:7px 44px 8px;border-radius:43px;background-color:#3d008a;box-sizing:border-box}.ce_form input[name=name]{width:518px}.ce_form input[name=phone]{width:349px}.ce_form input[name=email]{width:431px}.ce_form textarea{height:256px;padding:40px 44px 0;border-radius:43px;width:565px;color:#fff}.ce_form input[type=checkbox]{border-color:#fff;outline:0;background-color:#fff}.ce_form input[type=checkbox][name=datapolicy]+label{font-size:12px;line-height:14px;font-family:BlauerNue-Light,sans-serif;max-width:325px;margin-right:250px}.ce_form .widget-checkbox{margin-top:8px}.ce_form .widget-checkbox fieldset{border:0;margin:0;padding:0}.ce_form .widget-checkbox .checkbox{width:15px;height:15px;min-width:15px}.ce_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}.ce_form .widget-checkbox span::-webkit-scrollbar{display:none!important}.ce_form .widget-checkbox span input{margin-right:15px}.ce_form .widget-submit{margin-bottom:0;position:absolute;bottom:0}.ce_form .widget-submit button{background-color:transparent;cursor:pointer;border-radius:43px;padding:18px 35px 17px;font-weight:400;border:5px solid #FF0;color:#FF0;font-size:33px;line-height:28px}@media screen and (max-width:1400px){.ce_form .widget-submit button{font-size:23px;line-height:18px}}@media screen and (max-width:767px){.ce_form .widget-submit button{font-size:16px;line-height:20px}}@media screen and (max-width:550px){.ce_form .widget-submit button{font-size:18px;line-height:23px}}.ce_form a{text-decoration:underline}@media screen and (max-width:1600px){.ce_form .widget-submit button{margin-top:20px;position:relative}}@media screen and (max-width:1024px){.ce_form{margin-bottom:55px}}.ce_form .form-yellow input[type=email],.ce_form .form-yellow input[type=tel],.ce_form .form-yellow input[type=text],.ce_form .form-yellow textarea{width:100%;box-sizing:border-box;height:68px;background-color:transparent;border-color:#FF0}@media screen and (max-width:550px){.ce_form .form-yellow input[type=email],.ce_form .form-yellow input[type=tel],.ce_form .form-yellow input[type=text],.ce_form .form-yellow textarea{height:42px}}.ce_form .form-yellow textarea{height:418px}@media screen and (max-width:550px){.ce_form .form-yellow textarea{height:235px}}.ce_form .form-yellow .widget.widget-text label{font-size:18px;line-height:22px;right:auto;left:32px}@media screen and (max-width:1400px){.ce_form .form-yellow .widget.widget-text label{font-size:16px;line-height:20px}}.ce_form fieldset{margin-bottom:42px}.ce_form fieldset legend{font-size:25px;line-height:31px;margin-bottom:15px;font-family:BlauerNue-SemiBold,sans-serif}@media screen and (max-width:1600px){.ce_form fieldset legend{font-size:22px;line-height:29px}}@media screen and (max-width:1400px){.ce_form fieldset legend{font-size:18px;line-height:25px}}@media screen and (max-width:1400px){.ce_form fieldset legend{font-size:16px;line-height:21px}}.ce_form .widget-radio input[type=radio]{display:none}.ce_form .widget-radio input[type=radio]:checked+label::before{background:#FF0}.ce_form .widget-radio span{display:block}.ce_form .widget-radio span label{font-size:18px;line-height:22px;position:relative;padding-left:50px;cursor:pointer;display:inline-block;margin:10px 0}@media screen and (max-width:1400px){.ce_form .widget-radio span label{font-size:16px;line-height:20px}}.ce_form .widget-radio span label::before{content:"";position:absolute;left:0;top:50%;transform:translateY(-50%);width:25px;height:25px;border:5px solid #FF0;border-radius:50%;background:0 0;transition:background .2s}@media screen and (max-width:1400px){.ce_form input[name=name]{width:418px}.ce_form input[name=phone]{width:249px}.ce_form input[name=email]{width:331px}.ce_form textarea{height:256px;width:465px}}@media screen and (max-width:550px){.ce_form input[type=email],.ce_form input[type=tel],.ce_form input[type=text]{height:42px}.ce_form button,.ce_form input,.ce_form select,.ce_form textarea{font-size:30%}.ce_form .widget{width:100%;text-align:right}.ce_form .widget.widget-textarea label{top:20px}.ce_form .widget.widget-text label,.ce_form .widget.widget-textarea label{font-size:18px}.ce_form textarea{width:90%;height:135px;padding-top:20px}.ce_form input[name=name]{width:80%}.ce_form input[name=phone]{width:55%}.ce_form input[name=email]{width:70%}.ce_form input[type=checkbox][name=datapolicy]+label{margin-right:0;text-align:left}.ce_form .widget-submit{position:relative}.ce_form .widget-submit button{padding:4px 35px 4px}}#footer{margin:0 0 112px}#footer #footer-anfahrt{padding-top:140px;background-color:#3d008a;color:#fff}#footer #footer-anfahrt .rte~figure{margin-left:300px}#footer #footer-anfahrt .rte~figure img{width:1000px;max-width:none;height:auto;display:block}#footer #footer-anfahrt .highlight{font-size:41px;line-height:50px}@media screen and (max-width:1900px){#footer #footer-anfahrt .highlight{font-size:30px;line-height:36px}}@media screen and (max-width:550px){#footer #footer-anfahrt .highlight{font-size:28px;line-height:34px}}#footer #footer-anfahrt .rte{max-width:500px;position:absolute;margin-top:50px}#footer #footer-anfahrt .rte .icon-barrierefrei,#footer #footer-anfahrt .rte .icon-bushaltestelle,#footer #footer-anfahrt .rte .icon-parken{padding-left:50px;display:inline-block;position:relative;margin-top:20px}#footer #footer-anfahrt .rte .icon-barrierefrei:before,#footer #footer-anfahrt .rte .icon-bushaltestelle:before,#footer #footer-anfahrt .rte .icon-parken:before{content:"";position:absolute;top:0;left:0;background-size:contain}#footer #footer-anfahrt .rte .icon-parken:before{width:30px;height:31px;background:url(/files/die-oralchirurgen/assets/img/icon-parken.svg) no-repeat}#footer #footer-anfahrt .rte .icon-barrierefrei:before{width:30px;height:36px;background:url(/files/die-oralchirurgen/assets/img/icon-barrierefrei.svg) no-repeat;top:-13px}#footer #footer-anfahrt .rte .icon-bushaltestelle:before{width:30px;height:30px;background:url(/files/die-oralchirurgen/assets/img/icon-bushaltestelle.svg) no-repeat}@media screen and (max-width:1900px){#footer #footer-anfahrt .rte~figure{margin-left:300px}#footer #footer-anfahrt .rte~figure img{width:900px}}@media screen and (max-width:1600px){#footer #footer-anfahrt .rte~figure{margin-left:300px}#footer #footer-anfahrt .rte~figure img{width:800px}}@media screen and (max-width:1400px){#footer #footer-anfahrt .rte{left:25px}#footer #footer-anfahrt .rte~figure{margin-left:400px}#footer #footer-anfahrt .rte~figure img{width:800px}}@media screen and (max-width:1220px){#footer #footer-anfahrt .rte{margin-top:0}#footer #footer-anfahrt .rte~figure{margin:0 auto}#footer #footer-anfahrt .rte~figure img{width:800px;margin:0 0 0 auto}}@media screen and (max-width:1024px){#footer #footer-anfahrt .rte{margin-top:0;position:static;margin-left:25px}#footer #footer-anfahrt .rte~figure{margin-top:-50px}#footer #footer-anfahrt .rte~figure img{width:100%}}@media screen and (max-width:767px){#footer #footer-anfahrt{padding-top:60px}#footer #footer-anfahrt .rte{margin-bottom:40px}#footer #footer-anfahrt .rte~figure img{width:150%;margin-left:-180px;position:relative;left:50%;transform:translateX(-50%)}}@media screen and (max-width:550px){#footer #footer-anfahrt .rte{margin-bottom:40px}#footer #footer-anfahrt .rte~figure img{margin-left:-95px}}#footer #footer-top{margin-bottom:112px}#footer #footer-top h2{text-align:center;text-transform:uppercase;font-size:29px;line-height:35px;margin-bottom:20px}@media screen and (max-width:1900px){#footer #footer-top h2{font-size:22px;line-height:27px}}@media screen and (max-width:1600px){#footer #footer-top h2{font-size:20px;line-height:25px}}@media screen and (max-width:1400px){#footer #footer-top h2{font-size:18px;line-height:23px}}@media screen and (max-width:550px){#footer #footer-top h2{font-size:16px;line-height:21px}}#footer #footer-top .row{--grid__gutter:0 18px;background-color:#3d008a;color:#fff}#footer #footer-top .row>div{position:relative}#footer #footer-top .ce_form{margin-top:68px;max-width:900px}#footer #footer-top .ce_form .form-confirmation,#footer #footer-top .ce_form .formbody{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:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end;flex-direction:column;position:relative}#footer #footer-top .ce_form .form-confirmation::-webkit-scrollbar,#footer #footer-top .ce_form .formbody::-webkit-scrollbar{display:none!important}#footer #footer-top .ce_form .form-confirmation{min-height:350px;margin-right:25px}#footer #footer-top .content-text{font-family:BlauerNue-ExtraBold,sans-serif;text-transform:uppercase;font-size:96px;line-height:100%;position:absolute;top:40px;line-height:85px}@media screen and (max-width:1900px){#footer #footer-top .content-text{font-size:70px}}@media screen and (max-width:1600px){#footer #footer-top .content-text{font-size:60px}}@media screen and (max-width:1400px){#footer #footer-top .content-text{font-size:56px;line-height:61px}}@media screen and (max-width:767px){#footer #footer-top .content-text{font-size:51px;line-height:61px}}@media screen and (max-width:550px){#footer #footer-top .content-text{font-size:39px;line-height:41px}}@media screen and (max-width:350px){#footer #footer-top .content-text{font-size:27px;line-height:38px}}#footer #footer-top iframe{display:block}@media screen and (max-width:1900px){#footer #footer-top .ce_form{max-width:auto;margin-right:20px}#footer #footer-top .content-text{line-height:65px}}@media screen and (max-width:1400px){#footer #footer-top .content-text{line-height:55px}}@media screen and (max-width:991px){#footer #footer-top .ce_form{max-width:100%;margin-right:0}#footer #footer-top .ce_form .formbody{margin:0 25px}#footer #footer-top .form-confirmation{display:block;margin:0 25px}#footer #footer-top .content-text{left:25px}}@media screen and (max-width:767px){#footer #footer-top .content-text{position:relative;line-height:40px}}#footer #footer-bottom{font-size:23px;line-height:28px}#footer #footer-bottom .row{--grid__gutter:0 50px}@media screen and (max-width:1600px){#footer #footer-bottom{font-size:18px;line-height:22px}}@media screen and (max-width:550px){#footer #footer-bottom{font-size:16px;line-height:20px}}#footer #footer-bottom a{text-decoration:none}#footer #footer-bottom p,#footer #footer-bottom ul{margin-bottom:30px}#footer #footer-bottom .underline-no-animation:after{content:"";background:url(/files/die-oralchirurgen/assets/img/animiation-lines/line-blue-467.svg) no-repeat;width:468px;height:18px;display:block;margin:0 0 0 -15px}@media screen and (max-width:1900px){#footer #footer-bottom .underline-no-animation:after{width:100%;background-size:contain;height:15px}}#footer #footer-bottom .content-text.media--left{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}#footer #footer-bottom .content-text.media--left::-webkit-scrollbar{display:none!important}#footer #footer-bottom .content-text.media--left figure{margin-right:62px}@media screen and (max-width:1900px){#footer #footer-bottom .content-text.media--left figure{margin-right:58px}}#footer #footer-bottom .metanav-social-container{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}#footer #footer-bottom .metanav-social-container::-webkit-scrollbar{display:none!important}#footer #footer-bottom .metanav-social-container .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;margin-left:80px;gap:15px;margin-bottom:50px}#footer #footer-bottom .metanav-social-container .social-media-icons::-webkit-scrollbar{display:none!important}#footer #footer-bottom .metanav-social-container .social-media-icons .icon-google img,#footer #footer-bottom .metanav-social-container .social-media-icons .icon-google svg{width:49px;height:49px}#footer #footer-bottom .metanav-social-container .social-media-icons .icon-insta img,#footer #footer-bottom .metanav-social-container .social-media-icons .icon-insta svg{width:50px;height:50px}@media screen and (max-width:1400px){#footer #footer-bottom .metanav-social-container{margin-top:50px}}@media screen and (max-width:550px){#footer #footer-bottom .metanav-social-container .social-media-icons{gap:5px}#footer #footer-bottom .metanav-social-container .social-media-icons .icon-google img,#footer #footer-bottom .metanav-social-container .social-media-icons .icon-google svg{width:23px;height:23px}#footer #footer-bottom .metanav-social-container .social-media-icons .icon-insta img,#footer #footer-bottom .metanav-social-container .social-media-icons .icon-insta svg{width:24px;height:24px}}@media screen and (max-width:1220px){#footer{margin-bottom:60px}}@media screen and (max-width:1024px){#footer #footer-bottom .row>div:first-child{margin-bottom:0}#footer #footer-bottom .content-text.media--left{flex-direction:column}#footer #footer-bottom .content-text.media--left figure{margin:0 0 30px}#footer #footer-bottom .content-text.media--left figure img{max-width:150px}#footer #footer-top iframe{height:452px}}@media screen and (max-width:550px){#footer #footer-top{margin-bottom:59px}#footer #footer-bottom .content-text.media--left figure{text-align:center;margin-bottom:65px}#footer #footer-bottom .content-text.media--left figure img{max-width:136px}#footer #footer-bottom .row{--grid__gutter:0 0}#footer #footer-bottom .underline-no-animation:after{width:95%}}.gslide-inline .ginlined-content{height:auto!important}.content-page #header{margin:20px 16px 40px}.content-page #header-custom{margin-bottom:100px}.content-page h2{margin-bottom:10px}.content-page #footer{margin-top:50px}
