@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat/Montserrat-VariableFont_wght.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



:root {
    --primary-color: #0f4ca8;
    --dark-color: #0f4ca8;
    --white: #ffffff;
    --grey: rgba(64, 64, 64, 0.9);

}


* {
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Montserrat;
}

header {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 10;
}

.navbar {
    Width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color: var(--dark-color); */
    margin: 0 auto;
    /* border-radius: 25px; */
    z-index: 11;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem 1rem;
}

.logo_img {
    width: 60px;
    height: 60px;
}


.logo-text {
    font-size: 2em;
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
}

.logo-text a {
    color: var(--white);
    text-decoration: none;
}


.navliste {
    align-items: center;
    padding-right: 1rem;
    display: flex;
    gap: 1.5rem;
    list-style-type: none;

}

.navliste li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    position: relative;


}

.navli a {
    transition: 0.4s;
}

.navli a:hover {
    display: inline-block;
    transform: scale(1.07);
}


.button-contact {
    background-color: var(--primary-color);
    padding: 1em;
    border-radius: 50px;
}

.button-contact:hover {
    background-color: var(--primary-color);
    transition: background-color 0.5s ease;
    padding: 1em;
    border-radius: 50px;

}

.burger {
    color: rgb(255, 255, 255);
    background: transparent;
    border: none;
    cursor: pointer;
    display: none;
    margin-right: 1.5em;
}

.burger-line {
    display: block;
    margin-bottom: 0.4em;
    height: 2px;
    width: 30px;
    border-radius: 25%;
    background-color: white;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger.active .burger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    height: 3px;
}

.burger.active .burger-line:nth-child(2) {
    /* opacity: 0;
    transform: scaleX(0); */
    display: none;
}

.burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg);
    height: 3px;
}


.intro_bereich {
    background-image: url(/images/medium-shot-people-sitting-chairs.jpg);
    background-position: 20% 8%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 1000px;
    width: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
    margin-top: -100px;
}

.intro_bereich::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* Der Schatten geht nur über 60% der Breite */
    height: 100%;
    /* Verlauf von Schwarz (links) zu Transparent (Mitte) */
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.4) 60%,
            rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}


.intro_bereich img {
    width: 100vw;
}





.ueberschrift-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: white;
    font-weight: 650;
    position: relative;
    z-index: 2;
    width: 100%;
}

.intro-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 5vw;
}

h1 {
    font-weight: 650;
    font-size: 3rem;
}

.intro-unterschrift {
    font-size: 1.5rem;
    width: 100%;
    max-width: 90vw;
}


.intro-kontakt-button {
    margin-top: 1.25em;
    background-color: var(--dark-color);
    color: white;
    height: 50px;
    width: 400px;
    cursor: pointer;
    font-weight: 600;
    display: block;
    font-size: 1.1rem;
    border-style: none;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

.intro-kontakt-button:hover {
    background-color: #0d3d8a;
    transform: scale(1.02);
}

/* Intro Bereich mit Cards */


.card-section {
    background-color: #ffffff;
    padding-bottom: 50px;
}

.card-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 30px;
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 200px;
    width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.card-middle {
    height: 250px;
}

.card:hover {
    transform: translateY(-5px);
}

.card-content {
    text-align: left;
    max-width: 220px;
    padding-left: 20px;
    color: var(--grey)
}

.card h3 {
    color: #1d4ed8;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.intro_cards_bild {
    height: 80px;
    width: auto;
}


/* .info_bar {
    height: 80px;
    background-color: #0f4ca8;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding-right: 2em;

}

.info_bar_text {
    color: rgb(255, 255, 255);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0px 0px 0px 50px;
} */


.wrapper_kacheln {

    display: flex;
    justify-content: space-evenly;
    padding: 5% 0 5% 0;
    gap: 50px;
    background-color: #ffffff;

}

.kachel_top {
    /* border: solid 2px red; */
    align-items: center;
    justify-content: space-evenly;
    height: min-content;
    width: 300px;
    /* box-shadow: inset 0px 0px 40px 40px #e3e3e3; */
    background-color: var(--white);
    border-top-left-radius: 8%;
    border-top-right-radius: 8%;
    /* box-shadow: 1px 2px 11px 3px #ffffff71; */
    /* border-bottom: 3px solid var(--dark-color); */
    /* position: relative; */

}


.kachel_top::after {

    content: '';
    position: relative;
    display: block;
    height: 3px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    background-color: #0f4ca8;
    transition: 0.3s ease-in-out;
}

.kachel_top:hover::after {
    width: 80%;
    transition: 0.3s ease-in-out;
}




.kachel_top img {
    display: block;
    margin: auto;
    border-top-left-radius: 1%;
    border-top-right-radius: 1%;
}

.kachel_text {
    /* min-width: 200px; */
    color: var(--grey);
    font-size: 1rem;
    font-weight: 400;

    padding: 1em;
}


.trennbalken_wrapper {
    display: flex;
    align-self: center;
    justify-content: center;
}

.trennbalken_1 {
    display: none;
    height: 5px;
    background-color: #437dd4;
    Width: 100%;
    /* border: 5px solid green; */
}



.wrapper_uebermich {
    display: flex;
    align-content: space-between;
    margin-left: 5rem;
    justify-content: center;
    margin-bottom: 5em;

}

.wrapper_ueberschrift_linie {
    display: flex;
    flex-direction: column;

}

h2 {
    font-size: 2.3rem;
    font-weight: 500;
    margin-top: 2em;
    color: var(--grey);
}



.wc1 {
    display: flex;
    flex-direction: column;
    margin-left: 50px;
    justify-content: center;
    align-items: center;
    margin-top: 12em;

}

.wc {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2em;
    margin-right: 2em;
}


.wrapperh1img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.uebermich_text {
    max-width: 800px;
    font-size: 1.25rem;
    min-width: 300px;
    margin-left: 5em;
    color: var(--grey);
    line-height: 1.6;
}

.wrapperuebermichimgshape {
    display: flex;
    justify-content: center;
    margin-bottom: 5em;
}

.uebermich_img {

    border-radius: 40% 60% 48% 52% / 60% 18% 82% 40%;
    display: block;
    height: 400px;
    width: 400px;
    margin-top: 0.75em;
    z-index: 100;
    object-fit: cover;
    position: relative;



}

.uebermichimgshape {
    content: '';
    position: absolute;
    height: 480px;
    width: 500px;
    background-color: #0f4ca8;
    border-radius: 22% 78% 34% 66% / 31% 28% 72% 69%;
    z-index: -1;

}


.button-uebermich {
    font-family: Montserrat;
    font-weight: 500;
    color: var(--dark-color);
    border-radius: 2rem;
    cursor: pointer;
    width: 10rem;
    height: 3rem;
    border: 2px solid var(--dark-color);
    background: transparent;
    transition: all 0.4s ease-in-out;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-uebermich:hover {
    transform: scale(1.08);
    /* Optional: Falls der Link beim Hover eine Farbe bekommen soll */
    background: var(--dark-color);
    color: white;
}



/* Trenn Shape zwischen Übermich und Reviews */


.wave-divider_bottom {
    transform: scaleY(-1);
    transform: scaleX(-1);
}

.wave-divider_top {
    transform: scaleY(-1);
    margin-bottom: -5px;
}

.wave-divider_top,
.wave-divider_bottom {
    width: 100%;
    height: 50px;
}




.teilnehmer_ueberschrift {
    font-size: 2.5rem;
    font-weight: 500;
    text-align: center;
    margin-top: 2em;
    margin-bottom: 2em;
    color: var(--grey);
}


.swiper {
    margin-bottom: 2em;
    width: min(600px, 90vw);
    height: auto;
    margin-bottom: 4em;
}


.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #ffffffcd;
    margin-bottom: 2em;

}



.swiper-slide-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2em;
    height: 100%;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

.swiper-slide-content img {
    border-radius: 50%;
    margin-right: 2em;
}


.swiper-slide-content-text {
    text-align: left;
    margin-left: 1em;
    color: var(--grey);
    font-weight: 400;
}

.ratings-author {
    font-weight: 600;
    font-size: 0.8rem;
    margin-top: 1em;
    margin-bottom: 0.25em;
}

.speech-bubble {
    position: relative;
    background: #dbeaf5;
    border-radius: .4em;
    margin-left: 1em;
    height: min-content;
    padding: 2em;
}

.speech-bubble:after {
    content: '';
    position: absolute;
    left: 0;
    top: 65%;
    width: 0;
    height: 0;
    border: 1em solid transparent;
    border-right-color: #dbeaf5;
    border-left: 0;
    border-top: 0;
    margin-top: -0.5em;
    margin-left: -1em;
}


.wrap-img-stars {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: max-content;
}

.wrap-img-stars img {
    margin: auto;
}

.stars {
    display: flex;
    flex-direction: row;
    gap: 4px;
    margin-bottom: 1em;
}

.rating-star-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('images/star-solid.svg');
    background-repeat: no-repeat;
    background-size: contain;
    color: transparent;
    font-size: 0;
}

.trennbalken_3 {
    height: 5px;
    background-color: #437dd4;
    width: 92%;
}




.contact-intro {
    text-align: center;
    margin-top: 3em;
    padding-bottom: 3em;
    color: var(--grey);
}

.kontakt_img {
    height: 400px;
    width: 400px;
    border-radius: 54% 46% 25% 75% / 57% 40% 60% 43%;
    position: absolute;
    object-fit: cover;
}

.imgshape-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;

}

.contactimgshape {
    border-radius: 85% 15% 46% 54% / 43% 29% 71% 57%;
    background-color: var(--dark-color);
    height: 500px;
    width: 500px;
    z-index: -1;
    margin-top: 1em;
}


.wrapper_contact {

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2em 5%;
    gap: 5em;
    flex-wrap: wrap;
    padding-bottom: 5em;
}

.contact-section {
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.form-group-container {

    border-radius: 10px;
    background-color: #f2f2f2;
    padding: 2em;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: min(500px, 90vw);
}


.form-input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 6px;
    margin-bottom: 16px;
    width: 100%;
}

.form-group {
    display: flex;
    max-width: 100%;
}



.form-submit {

    /* margin: 3em; */
    background-color: #2d69c2;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    height: 3rem;
    width: 6rem;
    font-weight: 600;
    margin-top: 2em;
    border: none;


}


.form-input {
    background-color: #fefeff;
    color: rgb(0, 0, 0);
    border-radius: 5px;
    width: 100%;
    border: none;

}


.form-textarea {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    box-shadow: none;
    resize: none;
    border: none;
    height: 400px;
    width: 100%;
    padding: 12px;
}



.footerbar {
    height: 100px;
    background-color: #0f4da8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_text {
    color: white;
    font-weight: 600;
}

.footer_text a {
    text-decoration: none;
    color: white;
}


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



.navbar ul li {
         padding: 1em;
         margin-bottom: 1em;
     }


     .navliste {
         background-color: transparent;
         border-bottom-left-radius: 25px;
         border-bottom-right-radius: 25px;
         position: absolute;
         flex-direction: column;
         top: 100%;
         left: 0;
         right: 0;
         width: 100%;
         margin: 0 auto;
         gap: 0;
         list-style-type: none;
         max-height: 0;
         overflow: hidden;
     }




     .burger {
         display: block;
         margin-right: 1em;
     }

     .navliste.active {
         max-height: 300px;
         background-color: rgba(255, 255, 255, 0.16);
         backdrop-filter: blur(10px);
         -webkit-backdrop-filter: blur(10px);
     }

    /* Header Ueberschrift und call to action button */


    h1 {
        font-weight: 650;
        font-size: 2rem;
    }

    .intro-unterschrift {
        font-size: 1.2rem;
        max-width: 90vw;
    }

    .intro-kontakt-button {
        margin-top: 1.25em;
        background-color: var(--dark-color);
        color: white;
        height: 50px;
        max-width: 90vw;
        cursor: pointer;
        font-weight: 600;
        font-size: 1.0rem;
        border-style: none;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
    }


    .card-container {
        display: flex;
        flex-direction: column;
        margin-right: 2em;
        margin-left: 2em;
    }


    .card {
        width: min(500px, 85vw);
    }




    .ueberschrift_uebermich {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 0.25em;
        margin-top: 2em;
        padding: 0;

    }

    .wc1 {
        margin-top: 1em;
        margin-bottom: 2em;
    }

    .wrapper_uebermich {
        display: flex;
        flex-direction: column;
        margin: 0;
        padding: 0;

    }

    .uebermich_img {
        height: 250px;
        width: 250px;
    }

    .uebermichimgshape {
        height: 300px;
        width: 300px;
        margin: auto;
    }

    .uebermich_img {
        top: -12px;
    }

    .wrapperuebermichimgshape {
        margin: auto;
    }

    .uebermich_text {
        max-width: 80vw;
        margin: 0;
        margin-top: 2em;
    }


    /* Review slider responsive */


    .swiper-slide-content {
        display: flex;
        flex-direction: column;
        max-width: 90vw;
    }

    .swiper-pagination {
        max-width: 90vw;
    }

    .speech-bubble {
        max-width: 70vw;
    }

    .wrapper_contact {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .contact-section {
        margin-top: 3em
    }

    .imgshape-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;

    }

    .kontakt_img {
        width: 250px;
        height: 250px;
    }

    .contactimgshape {
        width: 300px;
        height: 300px;
        padding: 0.15em;
        margin: auto;
    }

    .form-textarea {
        height: 40vh;
        width: 100%;
    }
}