@charset "UTF-8";

/* exo-300 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Exo";
    font-style: normal;
    font-weight: 300;
    src: url("../fonts/exo-v20-latin-300.eot");
    /* IE9 Compat Modes */
    src: url("../fonts/exo-v20-latin-300.eot?#iefix") format("embedded-opentype"), url("../fonts/exo-v20-latin-300.woff2") format("woff2"), url("../fonts/exo-v20-latin-300.woff") format("woff"), url("../fonts/exo-v20-latin-300.ttf") format("truetype"), url("../fonts/exo-v20-latin-300.svg#Exo") format("svg");
    /* Legacy iOS */
}

/* exo-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Exo";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/exo-v20-latin-regular.eot");
    /* IE9 Compat Modes */
    src: url("../fonts/exo-v20-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/exo-v20-latin-regular.woff2") format("woff2"), url("../fonts/exo-v20-latin-regular.woff") format("woff"), url("../fonts/exo-v20-latin-regular.ttf") format("truetype"), url("../fonts/exo-v20-latin-regular.svg#Exo") format("svg");
    /* Legacy iOS */
}

/* exo-600 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Exo";
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/exo-v20-latin-600.eot");
    /* IE9 Compat Modes */
    src: url("../fonts/exo-v20-latin-600.eot?#iefix") format("embedded-opentype"), url("../fonts/exo-v20-latin-600.woff2") format("woff2"), url("../fonts/exo-v20-latin-600.woff") format("woff"), url("../fonts/exo-v20-latin-600.ttf") format("truetype"), url("../fonts/exo-v20-latin-600.svg#Exo") format("svg");
    /* Legacy iOS */
}

/* exo-800 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Exo";
    font-style: normal;
    font-weight: 800;
    src: url("../fonts/exo-v20-latin-800.eot");
    /* IE9 Compat Modes */
    src: url("../fonts/exo-v20-latin-800.eot?#iefix") format("embedded-opentype"), url("../fonts/exo-v20-latin-800.woff2") format("woff2"), url("../fonts/exo-v20-latin-800.woff") format("woff"), url("../fonts/exo-v20-latin-800.ttf") format("truetype"), url("../fonts/exo-v20-latin-800.svg#Exo") format("svg");
    /* Legacy iOS */
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Exo", sans-serif;
    accent-color: var(--col-primary);
    scroll-behavior: smooth;
}

:root {
    font-size: 16px;
    --col-white: #f0f0f2;
    --col-white-2: #e3e3e5;
    --col-white-element: #fafafc;
    --col-primary: #f18917;
    --col-gray: #f2f2f2;
    --col-primary-disabled: #b37636;
    -ms-hyphens: auto;
    hyphens: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 120%;
    margin-bottom: 0.2em;
}

h1 {
    font-size: clamp(2rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 3rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 2rem);
}

h4 {
    font-size: clamp(1rem, 2vw, 1.5rem);
}

.parallax {
    position: relative;
    min-height: 400px;
    background-image: url("../images/parallax-home.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
}

@media screen and (min-width: 900px) {
    .parallax {
        background-position-x: -200 !important;
        background-attachment: fixed !important;
    }
}

.rechtlich {
    position: fixed;
    z-index: 99;
    bottom: 0;
    right: 0;
    background: var(--col-primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 1rem;
    padding: 0.5rem 1rem;
}

.rechtlich a {
    color: var(--col-white);
    font-weight: 700;
    cursor: pointer;
}

.read-reviews {
    position: absolute;
    z-index: 10;
    -webkit-box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.1);
    left: 0;
    top: 0;
    padding: 1rem 2rem;
    background-color: var(--col-primary);
    color: var(--col-white);
}

@media screen and (min-width: 768px) {
    .read-reviews {
        top: -2rem;
    }
}

.banner {
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
    background-color: var(--col-primary);
    color: var(--col-white);
}

html body header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    height: 90vh;
}

@media screen and (min-width: 900px) {
    html body header {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

html body header > div {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}

html body header > div:first-child {
    position: relative;
    display: grid;
    place-items: center;
    padding: 1.8rem;
}

@media screen and (min-width: 800px) {
    html body header > div:first-child {
        padding: 2.5rem;
    }
}

html body header > div:first-child::before {
    position: absolute;
    z-index: 1;
    content: "";
    width: 100%;
    height: 100%;
    background: url("../images/background-pattern.jpeg") left center/cover;
    opacity: 0.15;
}

html body header > div:first-child.colored {
    color: var(--col-white);
}

html body header > div:first-child.colored::after {
    position: absolute;
    z-index: 2;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--col-primary);
    opacity: 0.5;
}

@supports (mix-blend-mode: color-burn) {
    html body header > div:first-child.colored::after {
        mix-blend-mode: color-burn;
        opacity: 1;
    }
}

html body header > div:first-child > div {
    position: relative;
    z-index: 3;
}

html body header > div:last-child {
    background: url("../images/header-bad.jpg") center center/cover;
    min-height: 300px;
}

html body header .button {
    margin-top: 1.5rem;
}

.cta,
.cta-small {
    background: var(--col-primary);
    color: var(--col-white);
}

.cta {
    position: relative;
    text-align: center;
    padding-block: 5%;
}

.cta::before {
    position: absolute;
    z-index: 1;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background: url("../images/background-pattern.jpeg") left center/cover;
    opacity: 0.15;
}

.cta .cta-flex {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}

.cta-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.5rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

@media screen and (min-width: 900px) {
    .cta-flex {
        text-align: left;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 3rem;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.button {
    position: relative;
    display: inline-block;
    background-color: var(--col-primary);
    padding: 0.75em 1.5em;
    color: var(--col-white);
    text-decoration: none;
    border: 2px solid var(--col-primary);
    overflow: hidden;
    z-index: 3;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
}

.button.small {
    padding: 0.25em 0.5em;
}

.button.invert {
    background-color: var(--col-white);
    color: var(--col-primary);
    border: 2px solid var(--col-white);
}

@media screen and (min-width: 768px) {
    .button:hover {
        color: var(--col-primary);
        background-color: var(--col-white);
    }

    .button.invert:hover {
        color: var(--col-white-element);
        background-color: var(--col-primary);
    }
}

.content {
    width: min(90%, 1400px);
    margin-inline: auto;
    padding-block: min(10%, 5rem);
}

.content.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
}

@media screen and (min-width: 1100px) {
    .content.flex {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 3.5rem;
    }
}

.content.flex > * {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    width: 100%;
}

section {
    background: var(--col-white);
}

section:nth-of-type(even) {
    background: var(--col-white-2);
}

.leistungen .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    border-radius: 5px;
}

@media screen and (min-width: 900px) {
    .leistungen .grid {
        gap: 1rem;
    }
}

.grid > div {
    display: grid;
    place-items: center;
    background-color: var(--col-white-element);
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
    padding: 1rem 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    -ms-hyphens: auto;
    hyphens: auto;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
}

@media screen and (min-width: 1100px) {
    .grid > div {
        padding: 1.5rem;
    }
}

@media screen and (min-width: 768px) {
    .grid > div:hover {
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

.grid > div img {
    width: 64px;
    height: auto;
    margin-bottom: 1rem;
}

.splide .splide__slide {
    position: relative;
}

.splide .splide__arrow {
    height: 100%;
    padding-inline: 0.5rem;
    width: unset;
    background: var(--col-primary-disabled);
    opacity: 1;
    -webkit-transition-duration: 150ms;
    transition-duration: 150ms;
}

.splide .splide__arrow:not(:disabled) {
    background: var(--col-primary);
}

.splide .splide__arrow svg {
    fill: var(--col-white-element);
    aspect-ratio: 1/1;
    width: 1.75em;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
}

@media screen and (min-width: 1200px) {
    .splide .splide__arrow svg {
        width: 2.5em;
    }
}

.splide .splide__arrow--prev {
    left: 0;
}

.splide .splide__arrow--next {
    right: 0;
}

.splide .splide__pagination {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-right: 3.75rem;
    bottom: 1rem;
}

.splide .splide__pagination li:first-child .splide__pagination__page {
    border-radius: 5px 0 0 5px;
}

.splide .splide__pagination li:last-child .splide__pagination__page {
    border-radius: 0 5px 5px 0;
}

.splide .splide__pagination__page {
    margin: 0;
    border-radius: 0;
    width: 1.5em;
    height: 0.75rem;
}

@media screen and (min-width: 768px) {
    .splide .splide__pagination__page:hover {
        background: var(--col-primary-disabled);
    }
}
#team .splide__arrows {
    display: none !important;
}

.splide .splide__pagination__page.is-active {
    background: var(--col-primary);
    -webkit-transform: scale(1);
    transform: scale(1);
}

#team .splide {
    position: relative;
}

#team .splide .splide__slide {
    height: 375px;
}

#team .splide::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("../images/background-pattern.jpeg") left center/cover;
    opacity: 0.4;
}

#team .splide img {
    position: absolute;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    -webkit-filter: drop-shadow(-20px 30px 25px rgba(0, 0, 0, 0.3));
    filter: drop-shadow(-20px 30px 25px rgba(0, 0, 0, 0.3));
    z-index: 3;
    height: 275px;
    bottom: 0;
    left: 50%;
}

@media screen and (min-width: 1375px) {
    #team .splide img {
        height: 325px;
        left: 30%;
    }
}

#team .splide .text {
    position: absolute;
    z-index: 2;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    white-space: nowrap;
    top: 9%;
    left: 50%;
    text-align: center;
}

@media screen and (min-width: 1375px) {
    #team .splide .text {
        top: 35%;
        left: 65%;
        text-align: left;
    }
}

#team .splide .text strong {
    display: block;
    font-size: 150%;
}

#team .splide .text span {
    display: block;
}

#team .splide .text .button {
    margin-top: 1rem;
}

#projekte .splide__slide {
    padding-inline: 2rem;
}

#projekte h3 {
    text-align: center;
    margin-bottom: 2rem;
}

#projekte .images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    overflow-y: auto;
    height: 100%;
}

@media screen and (min-width: 600px) {
    #projekte .images {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 900px) {
    #projekte .images {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 250px);
        gap: 1rem;
    }
}

#projekte .images > div {
    cursor: pointer;
    width: 100%;
}

#projekte .images > div:not(:first-child) {
    display: none;
}

@media screen and (min-width: 600px) {
    #projekte .images > div:not(:first-child) {
        display: block;
    }
}

#projekte .images > div img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
#projekte .images img.kleiner {
    width: 100% !important;
    height: auto !important;
}

a {
    font-weight: 600;
    text-decoration: none;
    color: var(--col-primary);
}

footer {
    position: relative;
    background: url("../images/tile-background.jpeg") center center/cover;
    color: var(--col-white);
    z-index: 5;
}

footer::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: #151515;
    opacity: 0.3;
}

footer p:not(:last-of-type) {
    margin-bottom: 1em;
}

footer .dsa-secure-plugin {
    width: 100%;
    min-height: 300px;
}

footer .dsa-secure-plugin .dsa-secure-image {
    min-height: 300px;
}

footer .nested-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
}

@media screen and (min-width: 800px) {
    footer .nested-flex {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

@media screen and (min-width: 1100px) {
    footer .nested-flex {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 2rem;
    }
}

.dsa-buttons a {
    background-color: var(--col-primary);
}

.dsa-buttons a:hover {
    background-color: var(--col-primary-disabled);
}

.tooltiptext {
    background-color: var(--col-primary) !important;
}

div.slider-image-enlarge {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    backdrop-filter: brightness(0.2) saturate(0.3);
    -webkit-backdrop-filter: brightness(0.2) saturate(0.3);
    display: grid;
    place-items: center;
}

div.slider-image-enlarge img {
    max-height: 90%;
    max-width: 90%;
    -o-object-fit: contain;
    object-fit: contain;
}

div.slider-image-enlarge p {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    color: #fff;
    opacity: 0.5;
    font-size: 0.9rem;
}

.grid-cta {
    background-color: var(--col-primary) !important;
    color: #fff;
    display: grid;
    place-items: center;
}

.grid-cta div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
}

.grid-cta .button {
    font-size: 1rem;
}

:is(main, footer) a:hover {
    text-decoration: underline;
}

.landings {
    margin-top: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0.25em 0.75em;
}

/* Utils */
nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99;
    background: transparent;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
    /*&.open {
    .links {
      display: flex;
      flex-direction: column;
      gap: 2rem;

      a {
        display: block;
      }
    }
  }*/
}

nav::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("../images/tile-background.jpeg") center center/cover;
}

nav.mobile-shown {
    background-color: var(--col-primary);
}

nav .mobile {
    position: absolute;
    z-index: -1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
    top: -200%;
    width: 100%;
    padding: 1rem;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

nav .mobile a {
    color: #FFF !important;
    text-decoration: none;
}

nav .mobile.show {
    top: 6rem;
}

@media screen and (min-width: 875px) {
    nav .mobile {
        top: -250% !important;
    }
}

nav.mobile-shown > .mobile {
    background-color: var(--col-primary);
}

nav > div {
    position: relative;
    background-color: transparent;
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: min(95%, 1600px);
    margin-inline: auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

nav > div .logo {
    -webkit-transform: translateY(0.3rem);
    transform: translateY(0.3rem);
    z-index: 100;
    height: 100px;
    -webkit-transition-duration: 0.25s;
    transition-duration: 0.25s;
}

nav > div .logo.hide {
    -webkit-transform: translateY(-8rem);
    transform: translateY(-8rem);
}

nav > div .logo img {
    width: 200px;
    height: 90px;
    -o-object-fit: contain;
    object-fit: contain;
    /*&.scrolled {
    max-height: 75px;

    @media screen and (min-width: $bp-nav) {
      max-height: 85px;
    }
  }*/
}

@media screen and (min-width: 875px) {
    nav > div .logo img {
        max-height: 270px;
    }
}

nav > div .links {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

nav > div .links a {
    display: none;
    color: #FFF;
    text-decoration: none;
}

nav > div .links a.active {
    font-weight: 900;
}

@media screen and (min-width: 875px) {
    nav > div .links {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
        gap: 2rem !important;
    }

    nav > div .links a {
        display: block;
    }
}

nav > div .hamburger {
    padding: 1rem;
    display: inline-block !important;
    cursor: pointer;
}

@media screen and (min-width: 875px) {
    nav > div .hamburger {
        display: none !important;
    }
}

nav > div .hamburger > div {
    position: relative;
    width: 30px;
    height: 3px;
    background: #FFF;
    opacity: 1;
    -webkit-transition-duration: 0.25s;
    transition-duration: 0.25s;
}

nav > div .hamburger > div.open {
    background: transparent;
}

nav > div .hamburger > div.open::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0;
}

nav > div .hamburger > div.open::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: 0;
}

nav > div .hamburger > div::before,
nav > div .hamburger > div::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 3px;
    background: #FFF;
    -webkit-transition-duration: 0.25s;
    transition-duration: 0.25s;
}

nav > div .hamburger > div::before {
    top: -9px;
}

nav > div .hamburger > div::after {
    bottom: -9px;
}

@media screen and (min-width: 875px) {
    nav > div .hamburger > div {
        display: none;
    }
}

nav > div .hamburger.open > div {
    background: transparent;
}

nav > div .hamburger.open > div::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0;
}

nav > div .hamburger.open > div::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: 0;
}

header {
    padding-top: 2rem;
}

@media screen and (min-width: 800px) {
    header {
        padding-top: 0;
    }
}

/* Subpages */
.page-leistungen section,
.landing section {
    position: relative;
    overflow: hidden;
}

.page-leistungen section .overlay-icon,
.landing section .overlay-icon {
    display: none;
}

@media screen and (min-width: 900px) {

    .page-leistungen section .overlay-icon,
    .landing section .overlay-icon {
        display: inline-block;
        position: absolute;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        top: 50%;
        height: 80%;
        aspect-ratio: 1/1;
        opacity: 0.05;
        right: -3rem;
    }
}

.page-leistungen section .content.flex,
.landing section .content.flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media screen and (min-width: 900px) {

    .page-leistungen section .content.flex,
    .landing section .content.flex {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 3rem;
    }
}

@media screen and (min-width: 1200px) {

    .page-leistungen section .content.flex,
    .landing section .content.flex {
        gap: 6rem;
    }
}

@media screen and (min-width: 1600px) {

    .page-leistungen section .content.flex,
    .landing section .content.flex {
        gap: 10rem;
    }
}

@media screen and (min-width: 900px) {

    .page-leistungen section:nth-of-type(even) .overlay-icon,
    .landing section:nth-of-type(even) .overlay-icon {
        left: -8rem;
    }
}

@media screen and (min-width: 900px) {

    .page-leistungen section:nth-of-type(even) .content.flex,
    .landing section:nth-of-type(even) .content.flex {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        gap: 5rem;
    }
}

.page-leistungen section .section-image,
.landing section .section-image {
    -ms-flex-negative: 2;
    flex-shrink: 2;
    min-height: 200px;
    min-width: 300px;
    aspect-ratio: 1/1;
}

.page-leistungen section .section-image img,
.landing section .section-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.page-erfahrungen {
    /*******************************
  Slider
  *******************************/
    /* Arrows */
    /* Dots */
}

.page-erfahrungen .Bewertungstabelle,
.page-erfahrungen .rating_actions {
    margin: 16px 0;
    width: 100%;
}

.page-erfahrungen form#dsa-rating {
    padding: 0 !important;
}

.page-erfahrungen label {
    color: var(--col-primary);
    margin-top: 15px !important;
    display: block;
    font-weight: 700;
}

.page-erfahrungen input,
.page-erfahrungen #comment {
    width: 100%;
    font-size: 15px;
    border: 2px solid #e6e6e6;
    padding: 0.25rem 0.5rem;
}

.page-erfahrungen #comment {
    margin-bottom: 15px;
}

.page-erfahrungen #dsa-rating .Bewertungstabelle tr td {
    padding: 5px 10px;
}

.page-erfahrungen #dsa-rating .Bewertungstabelle tr td input {
    display: none;
}

.page-erfahrungen #dsa-rating .Bewertungstabelle tr td:first-of-type {
    width: 70%;
    padding: 5px 10px 5px 10px;
}

.page-erfahrungen #dsa-rating .Bewertungstabelle tr td:last-of-type {
    width: 30%;
    text-align: right;
}

.page-erfahrungen #dsa-rating .Bewertungstabelle tr:nth-child(2n) {
    background: var(--col-primary) !important;
    color: #fff;
}

.page-erfahrungen table {
    border-collapse: collapse;
    border-spacing: 0;
}

.page-erfahrungen #dsa-rating h2,
.page-erfahrungen .rating-1 {
    display: none;
}

.page-erfahrungen #dsa-rating .message h2 {
    display: block !important;
    color: var(--col-primary) !important;
    border: none !important;
    padding: 15px 0 !important;
}

.page-erfahrungen .rating_top {
    text-align: center;
}

.page-erfahrungen #rate_button,
.page-erfahrungen .rating_top button,
.page-erfahrungen #dsa-rating-view .btn {
    background: var(--col-primary) !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 35px !important;
    transition: ease 0.8s;
    -o-transition: ease 0.8s;
    -moz-transition: ease 0.8s;
    -webkit-transition: ease 0.8s;
    font-size: 15px;
    font-weight: 600;
}

.page-erfahrungen #rate_button:hover,
.page-erfahrungen .rating_top button:hover,
.page-erfahrungen #dsa-rating-view .btn:hover {
    background: var(--col-gray) !important;
    color: #fff !important;
}

.page-erfahrungen .rating_thumb {
    display: none;
}

.page-erfahrungen .rating_bottom {
    margin-top: 25px;
}

.page-erfahrungen .rating_box,
.page-erfahrungen .rating_overall_all,
.page-erfahrungen .rating_overall_detail {
    background-color: #fafafa;
    color: var(--col-primary);
    padding: 10px 25px 25px 25px;
    margin: 20px 0 0 0;
    font-weight: 300;
}

.page-erfahrungen .questionline {
    text-align: left;
}

.page-erfahrungen .rating_box .questionline:first-child,
.page-erfahrungen .rating_box .questionline:nth-child(3),
.page-erfahrungen .rating_box .questionline:nth-child(5) {
    background: var(--col-gray);
    padding: 5px 15px;
    color: var(--col-primary);
    font-weight: 600;
}

.page-erfahrungen .rating_box .questionline:nth-child(2),
.page-erfahrungen .rating_box .questionline:nth-child(4) {
    padding: 5px 15px;
    font-weight: 600;
    color: var(--col-primary);
}

.page-erfahrungen .subline {
    display: none;
}

.page-erfahrungen .answer {
    width: 45%;
    float: right;
    text-align: right !important;
    color: var(--col-primary) !important;
}

.page-erfahrungen .rating_bottom span {
    font-size: 15px;
}

.page-erfahrungen #dsa-rating-view .slick-initialized .slick-slide {
    padding: 0;
}

.page-erfahrungen #dsa-rating-view h3 {
    margin: 15px 0;
    font-size: 18px;
    font-weight: 600;
}

.page-erfahrungen #dsa-rating-view p {
    line-height: 1.5;
    font-size: 15px;
}

.page-erfahrungen #dsa-rating-view .slick-next,
.page-erfahrungen #dsa-rating-view .slick-prev {
    display: none !important;
}

.page-erfahrungen #dsa-rating-view .slick-dots {
    left: 0;
    bottom: -55px;
}

.page-erfahrungen #dsa-rating-view .slick-dotted.slick-slider {
    margin-bottom: 0;
}

.page-erfahrungen #dsa-rating-view .slick-dots li button::before {
    font-size: 11px;
    color: var(--col-primary);
}

.page-erfahrungen #dsa-rating-view .slick-dots li.slick-active button::before {
    color: var(--col-primary);
}

.page-erfahrungen .slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.page-erfahrungen .slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.page-erfahrungen .slick-list:focus {
    outline: none;
}

.page-erfahrungen .slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.page-erfahrungen .slick-slider .slick-track,
.page-erfahrungen .slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.page-erfahrungen .slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-erfahrungen .slick-track:before,
.page-erfahrungen .slick-track:after {
    display: table;
    content: "";
}

.page-erfahrungen .slick-track:after {
    clear: both;
}

.page-erfahrungen .slick-loading .slick-track {
    visibility: hidden;
}

.page-erfahrungen .slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

.page-erfahrungen [dir=rtl] .slick-slide {
    float: right;
}

.page-erfahrungen .slick-slide img {
    display: block;
    width: 100%;
    height: 110vH;
    -o-object-fit: cover;
    object-fit: cover;
}

.page-erfahrungen .slick-slide.slick-loading img {
    display: none;
}

.page-erfahrungen .slick-slide.dragging img {
    pointer-events: none;
}

.page-erfahrungen .slick-initialized .slick-slide {
    display: block;
}

.page-erfahrungen .zielgruppen-slider .slick-initialized .slick-slide {
    margin: 0 25px;
}

.page-erfahrungen .slick-loading .slick-slide {
    visibility: hidden;
}

.page-erfahrungen .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.page-erfahrungen .slick-arrow.slick-hidden {
    display: none;
}

.page-erfahrungen .slick-prev,
.page-erfahrungen .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

@media (min-width: 592px) {

    .page-erfahrungen .slick-prev,
    .page-erfahrungen .slick-next {
        width: 50px;
        height: 50px;
        padding: 0;
    }
}

.page-erfahrungen .slick-prev:hover,
.page-erfahrungen .slick-prev:focus,
.page-erfahrungen .slick-next:hover,
.page-erfahrungen .slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
}

.page-erfahrungen .slick-prev:hover:before,
.page-erfahrungen .slick-prev:focus:before,
.page-erfahrungen .slick-next:hover:before,
.page-erfahrungen .slick-next:focus:before {
    opacity: 1;
}

.page-erfahrungen .slick-prev.slick-disabled:before,
.page-erfahrungen .slick-next.slick-disabled:before {
    opacity: 0.25;
}

.page-erfahrungen .slick-prev:before,
.page-erfahrungen .slick-next:before {
    font: normal normal normal 1.5rem/1 FontAwesome;
    opacity: 0.75;
    color: #8F8F8F;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 592px) {

    .page-erfahrungen .slick-prev:before,
    .page-erfahrungen .slick-next:before {
        font: normal normal normal 3rem/1 FontAwesome;
    }
}

.page-erfahrungen .slick-prev {
    left: -25px;
}

.page-erfahrungen [dir=rtl] .slick-prev {
    right: -25px;
    left: auto;
}

.page-erfahrungen .slick-next {
    right: -25px;
}

.page-erfahrungen [dir=rtl] .slick-next {
    right: auto;
    left: -25px;
}

.page-erfahrungen .slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.page-erfahrungen .slick-dots {
    position: absolute;
    bottom: -50px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.page-erfahrungen .slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.page-erfahrungen .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.page-erfahrungen .slick-dots li button:hover,
.page-erfahrungen .slick-dots li button:focus {
    outline: none;
}

.page-erfahrungen .slick-dots li button:hover:before,
.page-erfahrungen .slick-dots li button:focus:before {
    opacity: 1;
}

.page-erfahrungen .slick-dots li button:before {
    font: normal normal normal 20px/20px FontAwesome;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: "â€¢";
    text-align: center;
    opacity: 0.25;
    color: #00517e;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page-erfahrungen .slick-dots li.slick-active button:before {
    opacity: 0.75;
    color: #00517e;
}

@media screen and (max-width: 600px) {

    .page-erfahrungen .zielgruppen-slider .slick-next::before,
    .page-erfahrungen .zielgruppen-slider .slick-prev::before {
        display: none;
    }

    .page-erfahrungen .slick-prev {
        left: 0;
    }

    .page-erfahrungen .slick-next {
        right: 0;
    }
}

@media screen and (max-width: 400px) {
    .page-erfahrungen .zielgruppen-slider .slick-initialized .slick-slide {
        margin: 0 15px;
    }
}

.landing .vorteil {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5rem;
}

.landing .vorteil img {
    width: 64px;
    height: 64px;
}

.landing .noimage {
    text-align: center;
}

.landing .noimage p {
    max-width: 80ch;
    margin-inline: auto;
}

.page-impressum p:not(:last-of-type) {
    margin-bottom: 2rem;
}

.page-impressum .sources {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.page-impressum h3:not(:last-child) {
    margin-top: 2rem;
}

.err-404 header {
    height: 100vh;
}

.err-404 header > div:last-child {
    background: url("../images/raum-leer.png") center center/cover;
    min-height: 300px;
}
