/*
Acumin Pro Extra Light
font-family: "acumin-pro", sans-serif;
font-weight: 200;
font-style: normal;
Acumin Pro Light
font-family: "acumin-pro", sans-serif;
font-weight: 300;
font-style: normal;
Acumin Pro Regular
font-family: "acumin-pro", sans-serif;
font-weight: 400;
font-style: normal;
Acumin Pro Medium
font-family: "acumin-pro", sans-serif;
font-weight: 500;
font-style: normal;
Acumin Pro Bold
font-family: "acumin-pro", sans-serif;
font-weight: 700;
font-style: normal;
*/

* {
    font-family: var(--font-family);
    margin: 0;
    padding: auto;
    font-weight: 500;
    font-style: normal;
    box-sizing: border-box;
}

.body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

:root {
    --primary-color: #000000;
    --secondary-color: #272729;
    --creme-white: #f5f5f7;
    --font-color: rgb(255, 255, 255);
    --img-background: rgb(212, 212, 212);
    --font-dezent-color: #626267;
    --font-family: "acumin-pro", sans-serif;
    --button-radius: 3px;
    --footer-link-color: #6c6c6c;
    --button-dark-hover: #00000000;
    --button-light-hover: #ffffff;
    --input-background: rgb(32, 32, 32);
}

h1 {
    font-size: auto;
    font-weight: 510;
    color: var(--font-color);
    font-size: 32px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    font-weight: 700;
}

h2 {
    font-size: auto;
    font-weight: 300;
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 15px;
}

h3 {
    font-size: auto;
    font-weight: 500;
    color: var(--font-dezent-color);
}

h4 {
    font-size: auto;
    font-weight: auto;
    color: rgb(255, 255, 255);
}

h5 {
    font-size: auto;
    font-weight: auto;
    color: rgb(96, 96, 96);
    margin: 5px 0px 10px 0px;
}

h6 {
    font-size: auto;
    font-weight: auto;
    color: purple;
}

p {
    font-family: var(--font-family);
    font-size: auto;
    font-weight: 300;
    color: var(--primary-color);
}

li {
    list-style: none;
    text-decoration: none;
}

a {
    color: var(--font-color);
    transition: ease-in-out 0.1s;
    text-decoration: none;
}

a:hover {
    color: rgb(186, 186, 186);
}

a[href^="tel"] {
    color: inherit;
    text-decoration: none;
}

a[href^="mail"] {
    color: inherit;
    text-decoration: none;
}

.button-dark {
    height: 30px;
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    border-radius: var(--button-radius);
    margin-bottom: 20px;
    color: white;
    transition: all 0.3s;
    padding: 0px 20px 0px 20px;
    cursor: pointer;
}

.button-dark:hover {
    border: 1px solid var(--primary-color);
    background-color: var(--button-dark-hover);
    color: rgb(0, 0, 0);
    transition: all 0.3s;
}

.button-light {
    height: 30px;
    border: 1px solid rgb(255, 255, 255);
    background-color: var(--button-dark-hover);
    border-radius: var(--button-radius);
    margin-bottom: 20px;
    color: white;
    transition: all 0.3s;
    padding: 0px 20px 0px 20px;
    cursor: pointer;
}

.button-light:hover {
    border: 1px solid rgb(255, 255, 255);
    background-color: var(--button-light-hover);
    color: rgb(0, 0, 0);
    transition: all 0.3s;
}

input {
    border-radius: var(--button-radius);
}

.minHeight {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: 0.3s;
    background-color: var(--primary-color);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    background-color: var(--primary-color);
    color: white;
    transition: 0.5s ease;
    z-index: 999;
    padding-bottom: 0px;
    box-shadow: 0px -1px 15px 5px rgba(0, 0, 0, 0.43);
}

.header nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    width: 100%;
}

.header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header nav li {
    margin: 0 15px;
}

.header nav a {
    font-weight: 500;
}

.nav-menu-icon {
    display: none;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 75px;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 999;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.43);
    padding-top: 10px;
    padding-left: 20px;
    overflow: hidden;
}

.mobile-menu h1 {
    color: var(--font-color);
    margin-top: 20px;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding-left: 50px;
}

.mobile-menu ul li {
    margin: 10px 0;
}

.mobile-menu ul li a {
    color: var(--font-color);
    text-decoration: none;
}

footer {
    width: 100%;
    height: auto;
    color: var(--font-color);
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0px -1px 15px 5px rgba(0, 0, 0, 0.43);
    transition: none;
    padding-top: 40px;
    padding-bottom: 20px;
}

.newsletter {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 20px;
    margin-bottom: 60px;
}

.newsletter input {
    height: 30px;
    width: 280px;
    color: var(--font-color);
    background-color: var(--input-background);
    padding-left: 10px;
    border: rgb(32, 32, 32);
}

.footer-nav {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 10px;
}

.footer-links {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 10px;
}

footer li {
    list-style: none;
    text-decoration: none;
}

footer a {
    padding-left: 10px;
    padding-right: 10px;
    color: var(--font-color);
    transition: ease-in-out 0.1s;
    text-decoration: none;
}

footer a:hover {
    color: rgb(186, 186, 186);
}

.copyright {
    color: var(--footer-link-color);
    margin: 10px;
    font-weight: lighter;
    font-size: 13px;
}

.qanda {
    width: 100%;
    max-width: 800px;
    margin: 50px auto;
}

.faq {
    border-bottom: 0.5px solid #ddd;
    margin-bottom: 10px;
}

.frage {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    cursor: pointer;
    border-bottom: 0.5px solid #ddd;
    color: var(--primary-color);
    font-weight: 300;
}

.frage img {
    transition: transform 0.3s ease-in-out;
}

.antwort {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 0;
    color: var(--primary-color);
    font-weight: lighter;
}

.antwort.visible {
    max-height: 300px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 100px auto;
}

.container h1 {
    color: var(--primary-color);
}

.services-text h1 {
    font-size: 28px;
    margin-bottom: 20px;
    border-bottom: 2px solid;
    padding-bottom: 10px;
}

.impressum-section {
    margin-bottom: 20px;
}

.impressum-section p {
    color: #000000;
}

.impressum-section:last-child {
    margin-bottom: 0;
}

.contact-info,
.bank-info,
.register-info {
    display: flex;
    flex-direction: column;
}

.contact-info p,
.bank-info p,
.register-info p {
    margin-bottom: 5px;
}

.info-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--primary-color);
}

@media (max-width: 600px) {

    .nav-links-big li {
        display: none;
        background-color: red;
    }

    .nav-menu-icon {
        display: block;
    }

    .mobile-menu {
        display: none;
    }

    .mobile-menu.active {
        display: block;
    }

    body.menu-active {
        overflow: hidden;
    }

    .footer-nav {
        display: flex;
        align-items: center;
        justify-content: space-around;
        margin: 0px;
        width: auto;
    }

    footer {
        font-size: 10px;
    }

    .newsletter form {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .newsletter form button {
        margin-top: 15px;
        width: 100%;
    }

    .newsletter form input {
        width: 300px;
    }
}

.cookie-banner {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    color: black;
    background-color: white;
    padding: 20px 20px 40px 20px;
    box-shadow: 0px -1px 10px 5px rgba(0, 0, 0, 0.13);
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    z-index: 2000;
}

.cross_btn {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0px 0px 20px 0px;
}

.cookie-banner p {
    margin-bottom: 20px;
    font-size: 13px;
    color: rgb(44, 44, 44);
}

.cookie-buttons {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.cookie-banner button {
    width: auto;
    height: 40px;
    font-size: 15px;
    margin-right: 20px;
}

.cookie-banner .button-light {
    color: black;
    background-color: #f3f3f3;
    border: 1px solid #f3f3f3;
}

.cookie-banner .button-light:hover {
    color: rgb(84, 84, 84);
    background-color: #ffffff;
    border: 1px solid #f3f3f3;
}

.cookie-links {
    color: black;
    font-size: 13px;
}

.cookie-links a {
    color: black;
    text-decoration: underline;
    margin-right: 10px;
}

@media (max-width: 600px) {
    .cookie-banner {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .cookie-banner p {
        max-width: 400px;
    }

    .cookie-banner button {
        width: 100%;
        height: 40px;
        font-size: 15px;
        max-width: 400px;
        margin-right: 0px;
    }

    .cookie-buttons {
        display: flex;
        align-items: center;
        justify-content: space-around;
        flex-direction: column;
        width: 100%;
    }

    .cookie-links a {
        color: black;
        text-decoration: underline;
        margin-right: 0px;
    }

    .cookie-links {
        max-width: 400px;
        display: flex;
        align-items: space-between;
        justify-content: space-between;
        width: 100%;
    }
}

.suggestions {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
}

.row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 20px;
}

.suggestions a {
    color: black;
    text-decoration: none;
}

.preview {
    height: auto;
    width: 280px;
    border: 0px solid rgba(215, 215, 215, 0);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0px 1px 25px -9px #000000;
    transition: all 0.3s ease-in-out;
}

.preview:hover {
    transform: translateY(-7px);
}

.thumbnail {
    height: 160px;
    width: 100%;
    background-size: auto;
}

.preview-inhalt {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    font-size: 12px;
    padding-left: 25px;
    padding-top: 5px;
    background-color: white;
}

.preview-inhalt img {
    transform: rotate(270deg);
}

.preview-fakten {
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(255, 255, 255);
}

.fakten-tabelle {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    background-color: rgba(240, 248, 255, 0);
    font-family: Arial, sans-serif;
    font-size: 14px;
    text-align: center;
}

.fakten-tabelle td {
    overflow: hidden;
    background-color: rgba(240, 248, 255, 0);
}

.fakten-tabelle th {
    font-weight: normal;
    overflow: hidden;
}

.unit {
    color: rgb(101, 101, 101);
}

.title {
    font-size: 16px;
    margin-top: 5px;
    margin-bottom: 3px;
}

.slider-dots {
    text-align: center;
    margin-top: 10px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background-color: #333;
}

.slider-container {
    width: auto;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 0px 0px 0px;
    margin: 0px 20px 0px 20px;
    box-sizing: border-box;
}

.slider-test {
    position: relative;
    width: 280px;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-item {
    min-width: 280px;
    margin-right: 10px;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    color: black;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.slider-button-prev {
    left: 0;
}

.slider-button-next {
    right: 0;
}

.desktop_suggsestions {
    display: none;
    align-items: center;
    flex-direction: column;
}

.acception {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 30px;
}

.acception input[type="radio"] {
    margin-right: 10px;
    width: auto;
    margin: 0px 10px 0px 0px;
    border: 1px solid #ddd;
    border-radius: 7px;
}

.acception label a {
    color: #797979;
    text-decoration: underline;
}

.ad_view_more {
    font-size: 12px;
    text-decoration: underline;
    color: #797979;
    transition: all 0.1s ease-in-out;
}

.ad_view_more:hover {
    color: rgb(172, 172, 172);
}

#vorschlaege {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
}

.aktuell-gefiltert-nach {
    display: none;
}

.error-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    background: #fff;
    color: #111 !important;
}

.error-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 420px;
}

.error-content h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 12px;
    color: #111 !important;
}

.error-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 12px;
    color: #111 !important;
}

.error-content p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 24px;
    color: #666 !important;
}

.error-content .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #111;
    color: #fff !important;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: .2s;
}

.error-content .btn:hover {
    background: #333;
}

.cookie-page {
    min-height: 100vh;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.cookie-content {
    text-align: center;
}

.cookie-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: #111;
}

.datenschutz p {
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 16px;
}

.datenschutz-section {
    margin-bottom: 20px;
}

.datenschutz-section:last-child {
    margin-bottom: 0;
}

.datenschutz-section .button-light {
    color: black;
    border: 1px solid black;
}

.datenschutz-section .button-light:hover {
    background-color: #ddd;
    color: black;
    border: 1px solid #ddd;
}

.datenschutz-section a {
    color: #5E5E5E;
    font-weight: 300;
    text-decoration: underline;
}

.contact-background {
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    gap: 20px;
    background-image: url(/assets/img/4.jpeg);
    background-size: cover;
    margin-top: 70px;
}

.content-black {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0px 100px 0px;
    box-sizing: border-box;
    gap: 20px;
    background-color: rgba(0, 0, 0, 0.706);
}

.contact-layer {
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 50px 40px 50px;
    box-sizing: border-box;
    gap: 20px;
    background-color: rgb(255, 255, 255);
    box-shadow: inset 0px 8px 12px rgba(0, 0, 0, 0.25),
        inset 0px -8px 12px rgba(0, 0, 0, 0.25);
}

.contact-content {
    width: 30%;
    height: auto;
    background-color: rgb(255, 255, 255);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    overflow: hidden;
}

.contact-content p {
    text-align: justify;
}

.contact-informations {
    width: auto;
    height: auto;
    background-color: rgb(255, 255, 255);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    overflow: hidden;
    padding: 0px 50px 0px 50px;
    box-sizing: border-box;
}

.contact-informations h3 {
    margin: 0px 0px 5px 0px;

}

.contact-informations p {
    margin: 0px 0px 2px 0px;
}

.contact-formular {
    width: 30%;
    height: auto;
    background-color: rgb(255, 255, 255);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    overflow: hidden;
    box-sizing: border-box;
}

.contact-layer h2 {
    font-weight: 300;
    font-size: 27px;
    margin: 0px 0px 5px 0px;
}

.contact-layer h3 {
    font-weight: 600;
    font-size: 15px;
    margin: 0px 0px 5px 0px;
}

.contact-layer p {
    font-weight: 100;
    font-size: 15px;
    margin: 0px 0px 5px 0px;
}

.contact-form {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    box-sizing: border-box;
}

.contact-formular input {
    height: auto;
    width: 290px;
    margin-top: 10px;
    padding: 7px 0px 7px 10px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 7px;
}

.acception input {
    width: auto;
    margin: 2px 10px 0px 0px;
}

.acception {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.contact-formular #nachricht {
    height: 60px;
    white-space: pre-wrap;
}

.contact-form label {
    font-size: 10px;
}

.contact-form button {
    margin-top: 10px;
}

@media (max-width: 600px) {
    .contact-background {
        width: 100%;
        padding: 0px;
    }

    .contact-black {
        width: 100%;
        padding: 0px;
    }

    .contact-layer {
        width: 100%;
        flex-direction: column;
        padding: 20px;
    }

    .contact-content {
        width: 100%;
    }

    .contact-informations {
        width: 100%;
        padding: 20px 0px 20px 0px;
        align-items: center;
    }

    .contact-formular {
        width: 100%;
        align-items: flex-start;
        padding: 0px;
    }

    .contact-form {
        width: 100%;
    }

    .contact-formular input {
        width: 100%;
        margin-top: 10px;
    }

    .contact-form button {
        margin-top: 20px;
    }

    .acception input {
        width: auto;
        margin: 2px 10px 0px 0px;
    }
}

.services-container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 75px;
    padding: 50px 10px 50px 10px;
    box-sizing: border-box;
}

.services-left {
    height: auto;
    width: 400px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    background-color: rgb(255, 255, 255);
    padding: 10px;
    box-sizing: border-box;
}

.services-left p {
    text-align: justify;
}

.services {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-title {
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 20px;
}

.service {
    height: 160px;
    width: 280px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 0px 20px 0px 20px;
}

.border {
    border-right: 1px solid #ddd;
}

.service p {
    text-align: justify;
    font-size: 12px;
}

.service-title img {
    height: 32px;
    margin-right: 5px;
}

.individual-services {
    height: 300px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(/assets/img/4.jpeg);
    background-size: cover;
    text-align: center;
    box-shadow: inset 0px 8px 12px rgba(0, 0, 0, 0.25),
        inset 0px -8px 12px rgba(0, 0, 0, 0.25);
}

.individual-sevices-dark-layer {
    height: 100%;
    width: 100%;
    background-color: #ffffff99;
    display: flex;
    justify-content: center;
    align-items: center;
}

.individual-services h2 {
    font-size: 16pt;
}

@media (max-width: 900px) {

    .services-container {
        flex-direction: column;
        width: 100%;
    }

    .services-left {
        width: 550px;
    }
}

@media (max-width: 600px) {

    .services-container {
        flex-direction: column;
        width: 100%;
    }

    .services-left {
        width: auto;
    }

    .service {
        height: auto;
        padding: 10px;
        width: auto;
        box-sizing: border-box;
    }

    .individual-services h2 {
        font-size: 12pt;
    }

    .grid-container {
        grid-template-columns: 1fr;
        padding: 0px;
    }

    .border {
        border-right: none;
    }
}

.video-container {
    position: relative;
    height: 65vh;
}

.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 65vh;
    object-fit: cover;
    z-index: -2;
}

.video-overlay-dark {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 65vh;
    background-color: rgba(0, 0, 0, 0.351);
    z-index: -1;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.grey {
    display: flex;
    width: auto;
    color: white;
    background-color: rgba(42, 42, 42, 0.648);
    border-radius: 5px;
    overflow: hidden;
    margin-top: 15px;
    box-sizing: border-box;
}

.grey form {
    display: flex;
}

.input-suche {
    width: 320px;
    height: 35px;
    background-color: white;
    border: white;
    border-radius: 0px;
    padding-left: 15px;
    font-size: 14px;
    box-sizing: border-box;
}

.button-suche {
    height: 35px;
    margin: 0px;
    border-radius: 0px;
}

.button-suche:hover {
    height: 35px;
    margin: 0px;
    border-radius: 0px;
    color: rgb(0, 0, 0);
    background-color: #cdcdcd;
    border: 1px solid #cdcdcd;
}

.content-section {
    height: auto;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.content {
    height: auto;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.leistungen-unten {
    transform: translateY(-10px);
    z-index: 4;
}

#leistungen {
    height: 350px;
    width: 1000px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    background-color: var(--primary-color);
    transform: translateY(-40px);
}

.services {
    display: flex;
    align-items: center;
    justify-content: center;
}

.box {
    height: 150px;
    width: 250px;
    color: white;
    background-color: var(--secondary-color);
    margin-left: 50px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    border-radius: 5px 5px 0px 0px;
    font-size: 12px;
    padding: 10px;
    transform: translateY(-50px);
}

.box a {
    margin-top: 10px;
    text-decoration: underline;
    color: #dfdfdf;
}

.box p {
    color: var(--creme-white);
    font-weight: 100;
}

.box p.titel {
    font-weight: 400;
}

.services-text {
    color: white;
    text-align: center;
    transform: translateY(-50px);
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.services-text p {
    color: #ddd;
    font-weight: 100;
}

#about {
    box-sizing: border-box;
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.uberuns-oben {
    height: 500px;
    width: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.uberuns-links {
    height: 100%;
    width: 60%;
    background-color: rgb(255, 255, 255);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding-left: 0px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s ease, transform 0.5s ease;
    padding: 10px;
    box-sizing: border-box;
}

.uberuns-links.visible {
    opacity: 1;
    transform: translateY(0);
}

.uberuns-rechts {
    height: 100%;
    width: 40%;
    background-color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.uberuns-rechts-bild {
    height: 100%;
    width: auto;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
}

.uberuns-unten {
    height: auto;
    width: auto;
    background-color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.makler-spruch {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
    width: 600px;
}

@media (max-width: 600px) {

    .grey {
        width: 340px;
    }

    .input-suche {
        width: 260px;
        background-color: white;
        border: white;
        border-radius: 0px;
    }

    .button-suche {
        width: auto;
        border: 1px solid var(--primary-color);
        margin: 0px;
        color: white;
        background-color: var(--primary-color);
        border-radius: 0px;
    }

    #leistungen {
        width: auto;
        height: auto;
        transform: translateY(-0px);
        padding: 0px;
        margin: 0px;
        background-color: rgb(255, 255, 255);
    }

    .leistungen-unten {
        height: auto;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .content {
        width: auto;
        padding: 0px 0px 0px 0px;
        margin: 0px 0px 0px 0px;
    }

    .services {
        width: auto;
        height: auto;
        flex-direction: column;
        padding: 0px;
        margin: 0px;
        padding-top: 10px;
    }

    .box {
        width: 90%;
        height: auto;
        transform: translateY(-0px);
        margin-left: 0px;
        margin-bottom: 15px;
        border-radius: 4px;
        color: black;
        align-items: flex-start;
        justify-content: center;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
        padding: 5px 0px 10px 10px;
    }

    .box a {
        color: rgb(91, 91, 91);
    }

    .services-text {
        width: auto;
        height: auto;
        transform: translateY(-0px);
        font-size: 13px;
        color: black;
        padding: 20px 20px 20px 20px;
        text-align: justify;
        background-color: var(--primary-color);
    }

    .services-text h1 {
        text-align: left;
    }

    .uberuns-oben {
        width: auto;
        height: auto;
        flex-direction: column;
        padding: 30px 10px 0px 10px;
    }

    .uberuns-links {
        width: auto;
    }

    .uberuns-rechts {
        width: 100%;
    }

    .uberuns-unten {
        width: 100%;
    }

    .makler-spruch {
        width: auto;
        padding: 20px 10px 20px 10px;
    }
}

.content-section.content-section-light p {
    max-width: 1000px;
    padding: 10px;
    font-size: 12px;
    margin: 0px 0px 50px 0px;
    color: #888;
    text-align: justify;
}

.gesamt {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgb(255, 255, 255);
    padding: 10px 0px 10px 0px;
    box-sizing: border-box;
    margin-top: 70px;
}

#input_Object_Id {
    width: 100px;
    padding: 5px;
    background-color: white;
    font-size: 10px;
    color: #333;
    border: 1px solid #ccc;
    outline: none;
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
    appearance: menulist;
}

.filter-container {
    height: auto;
    width: 840px;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    margin: 20px 0px 20px 0px;
}

.oben {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 10px;
}

.filter-container input,
.filter-container select {
    height: 30px;
    width: auto;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-sizing: border-box;
    display: block;
    padding: 10px;
}

.filter-container button {
    margin-bottom: 0px;
}

.filtertKeywords {
    display: flex;
    justify-content: center;
    align-items: center;
}

.filteredKeyword {
    box-sizing: border-box;
    padding: 0px 20px 0px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.keyword {
    height: auto;
    width: auto;
    padding: 2px 10px 2px 10px;
    box-sizing: border-box;
    background-color: #ffffff;
    border-radius: 10px;
    margin: 10px 10px 0px 0px;
    border: 1px solid #ddd;
}

#xKeyword {
    margin-left: 5px;
}

#mobile-filter {
    width: 100%;
    height: 300px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-around;
    padding: 20px;
    border: 1px solid #000;
    position: relative;
    box-sizing: border-box;
    border: none;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-filter-button {
    display: none;
}

#closeBtn {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
}

.results {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    margin: 0px 0px 50px 0px;
}

.pagination {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0px 10px 0px;
}

.mittigzentriert {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination span {
    margin: 0px 10px 0px 10px;
}

.mittigzentriert button {
    background-color: rgb(255, 255, 255);
    border: 1px solid #eeeeee;
    border-radius: 7px;
    color: black;
    background-color: #f1f1f1;
    font-size: 13px;
    transition: all 0.3s;
    cursor: pointer;
    margin: 0px 20px 0px 20px;
}

.button-pegination:hover {
    background-color: white;
    border: 1px solid #f1f1f1;
    color: f1f1f1;
}

.ad {
    width: 800px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    border-radius: 7px 0px 0px 7px;
    margin-bottom: 25px;
    max-width: 850px;
}

.ad-img {
    width: 330px;
    height: 100%;
    border-radius: 7px 0px 0px 7px;
    background-size: cover;
    background-color: var(--img-background);
}

.ad-content {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    padding: 0px 0px 0px 10px;
    box-sizing: border-box;
}

.ad-content p {
    max-height: 68px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ad table {
    width: 100%;
    color: black;
    text-align: left;
    margin-top: 10px;
}

.ad table th {
    font-weight: normal;
    overflow: hidden;
    color: black;
}

.ad table td {
    overflow: hidden;
    color: rgb(101, 101, 101);
}

@media (max-width: 850px) {
    .results {
        width: 100%;
        box-sizing: border-box;
        padding: auto;
    }

    #result_container {
        width: 100%;
    }

    .output {
        width: 100%;
        box-sizing: border-box;
        padding: 0px;
    }

    .ad {
        height: auto;
        width: 100%;
        flex-direction: column;
        border-radius: 7px 7px 7px 7px;
        overflow: hidden;
        box-sizing: border-box;
        box-shadow: 0px 1px 25px -9px #00000053;
    }

    .ad-img {
        height: 300px;
        width: 100%;
        box-sizing: border-box;
        border-radius: 0;
    }

    .ad-content {
        padding: 15px 10px 15px 10px;
    }

    .ad-content p {
        max-height: 70px;
    }
}

@media (max-width: 880px) {
    .gesamt {
        background-color: white;
        width: 100%;
    }

    .filter-container {
        width: 100%;
    }

    .filter-container input,
    .filter-container select {
        display: none;
    }

    .filter-icon-button {
        display: block;
    }

    #mobile-filter {
        margin-top: 20px;
    }

    .mobile-filter-button {
        display: block;
    }
}

#filter-mobile-button {
    display: none;
}

.filter-mobile-menu {
    height: 100px;
    width: 100px;
    background-color: red;
    display: none;
}

.filter-mobile-menu.active {
    display: block;
}

.anzeige1 {
    margin-top: 100px;
    height: auto;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.parent {
    height: auto;
    width: auto;
    display: grid;
    grid-template-columns: repeat(7, 170px);
    grid-template-rows: repeat(5, 130px);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-color: #ddd;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.div1 {
    grid-area: 1 / 1 / 4 / 4;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
    background-color: white;
}

.one {
    grid-area: 1 / 1 / 4 / 4;
}

.two {
    grid-area: 1 / 4 / 4 / 7;
}

.three {
    grid-area: 4 / 1 / 6 / 4;
    align-items: flex-start;
    justify-content: flex-start;
}

.four {
    grid-area: 4 / 4 / 6 / 7;
    align-items: flex-start;
    justify-content: flex-start;
}

.five {
    grid-area: 1 / 7 / 6 / 8;
    justify-content: space-between;
    align-items: center;
    background-color: #171719;
    padding: 50px 0px 20px 0px;
}

.one img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
}

.overlay.active {
    display: flex;
}

.overlay img.main {
    max-width: 80%;
    max-height: 70vh;
    object-fit: contain;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    cursor: pointer;
    user-select: none;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.2s;
}

.arrow:hover {
    background: rgba(255, 255, 255, 0.1);
}

.arrow.left {
    left: 30px;
}

.arrow.right {
    right: 30px;
}

.thumbs {
    position: absolute;
    bottom: 20px;
    display: flex;
    gap: 10px;
}

.thumbs img {
    width: 70px;
    height: 50px;
    object-fit: cover;
    opacity: 0.5;
    cursor: pointer;
}

.thumbs img.active {
    opacity: 1;
    border: 2px solid white;
}

.immobilien-body {
    padding: 5px;
    text-align: justify;
}

.two table,
.three {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.two th,
.two td {
    border: none;
    padding: 8px 10px 0px 5px;
    text-align: left;
}

.two th {
    background-color: #f4f4f4;
}

.karte {
    height: 100%;
    width: 100%;
    border: none;
    background-color: #ddd;
}

#notify {
    height: 100%;
    width: 100%;
    border: none;
    background-color: #ddd;
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

#notify a {
    color: black;
}

#notify a:hover {
    color: #666666;
}

#map {
    display: none;
}

.anzeige1-makler-infos {
    font-size: 9px;
    width: auto;
}

.anzeige-makler-infos p {
    font-size: 12px;
}

.anzeige-ansprechpartner-kontaktinfos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.anzeige-ansprechpartner-kontaktinfos p {
    line-height: 25px;
    font-weight: 100;
    font-family: var(--font-family);
}

.anzeige-ansprechpartner-name {
    font-size: 15px;
    font-weight: bold;
    color: white;
}

.anzeige-ansprechpartner-titel {
    font-size: 12px;
    font-weight: bold;
    color: white;
}

.anzeige-ansprechpartner-tel {
    font-size: 11px;
    font-weight: bold;
    color: white;
}

.anzeige-ansprechpartner-mail {
    font-size: 11px;
    font-weight: bold;
    color: white;
}

.anzeige-ansprechpartner-socials {
    width: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1100px) {

    .parent {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, auto);
    }

    .one {
        grid-area: 1 / 1 / 4 / 4;
        padding: 0;
        cursor: pointer;
    }

    .one img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: .35s;
    }

    .two {
        grid-area: 1 / 2 / 2 / 3;
        min-height: 350px;
    }

    .three {
        grid-area: 2 / 1 / 3 / 2;
        min-height: 220px;
    }

    .four {
        grid-area: 2 / 2 / 3 / 3;
        min-height: 220px;
    }

    .five {
        grid-area: 3 / 1 / 4 / 3;

        flex-direction: row;
        padding: 30px;
    }
}

@media (max-width: 768px) {

    .anzeige1 {
        margin-top: 70px;
    }

    .parent {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .one,
    .two,
    .three,
    .four,
    .five {
        grid-area: auto;
        min-height: 220px;
    }

    .one {
        min-height: 300px;
    }

    .five {
        padding: 20px;
    }

}