:root{
    font-size: 15px;
    --color1: rgb(75,75,75);
    --color2: rgb(137,200,82);
    --color3: rgb(65,65,65);
    --cta: rgb(25,25,25);
    --shadow1: rgba(137,207,82,0.5);
}

*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    scroll-behavior: smooth;
    -webkit-scroll-behavior: smooth;
    -moz-scroll-behavior: smooth;
}

body{
    background-color: rgb(255,255,255);
    overflow-x: hidden;
    margin-inline: auto;
}

#cookie-disclaimer{
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1000000;
    background: rgba(0,0,0,0.5);
    top: 0;
    bottom: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#cookie-disclaimer-box{
    background: white;
    width: 90%;
    max-width: 540px;
    box-sizing: border-box;
    padding: 3rem;
}

#cookie-disclaimer-box p{
    width: 100%;
    max-width: 420px;
    margin-bottom: 1rem;
}

#cookie-disclaimer-box h4{
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color3);
}

#cookie-buttons-box{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
}

#cookie-buttons-box button{
    padding: 0.75rem 3rem;
    -webkit-border: none;
    border: none;
    border-radius: 2rem;
    transition: .2s ease-out;
    cursor: pointer;
}

#cookie-buttons-box button:hover{
    transform: scale(1.05);
    box-shadow: 2px 4px 4px 0 rgba(25,25,25,0.5);
}

#accept-cookies{
    background: var(--color2);
    color: var(--color3);
    font-weight: 500;
}

#decline-cookies{
    background: rgb(245,245,245);
    color: var(--color3);
}

.hidden {
    display: none;
}

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

    #cookie-disclaimer p{
        max-width: 100%;
    }
}

@media screen and (max-width: 440px){
    #cookie-disclaimer-box{
        width: 90%;
    }
    
    #cookie-buttons-box{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.5rem;
    }
    
    #cookie-disclaimer-box{
        padding: 7.5%;
    }
    
    #cookie-disclaimer-box p{
        width: 90%;
        font-size: clamp(0.25rem, 4vw, 1rem);
    }
    #cookie-buttons-box button{
        font-size: clamp(0.25rem, 4vw, 1rem);
        padding: .75rem 1.75rem;
        width: 100%;
    }
}


.testpage #contact-form-container{
    display: none;
}




.section-headline{
    width: 100%;
    text-align: center;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 500;
}

p{
    color: var(--color1);
}

h2{
    font-size: 1.25rem;
    color: var(--color1);
     font-weight: 600;
}

.h2-underline{
    width: 200px;
    background: var(--color2);
    height: 2px;
    margin-inline: auto;
}

#section-headline-contact h2{
    color: white;
}

#section-headline-contact h3{
    color: white;
}

h3{
    font-size: 1.5rem;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: var(--color1);
}

p{
    color: var--(color1);
}

.CTA{
    color: rgb(43, 62, 26);
    background: var(--color2);
    padding: .75rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s ease-out;
    text-align: center;
    border-radius: 2rem;
}

.CTA:hover{
    transform: scale(1.05);
    box-shadow: 2px 4px 4px 0 rgba(25,25,25,0.5);
}

.cta2{
    display: inline-block;
    color: rgb(25,25,25);
    background: rgb(255,255,255);
    padding: .75rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 500;
    transition: 0.4 ease-out;
    text-align: center;
    border-radius: 2rem;
    border: solid 1.5px rgb(25,25,25);
}


/*----end basic--------------*/
.nav{
    width: 100%;
    background: rgb(35,35,35);
    position: fixed;
    top: 0;
    z-index: 10000;
    overflow: hidden;
    box-shadow: 0px 4px 12px 0 rgba(0,0,0,0.2);
}

.navWrapper{
    width: 90%;
    height: 4rem;
    margin: 0 auto;
    position: relative;
    transition: 0.5s ease-out;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.navlogo{
    height: 3rem;
    transition: .4s ease-out;
    opacity: .9;
}

.navlogo:hover{
    transform: scale(1.075);
    opacity: 1;
    filter: brightness(1.1);
}

.navlinks{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}

.navlinks a{
    color: rgb(185,185,185);
    text-decoration: none;
    font-weight: 400;
    padding: 0.5rem 2rem;
    transition: 0.4s ease-out;
}

#nav-small-link{
    display: none;
}

.navlinks a:hover {
    text-decoration: underline var(--color2) 1px;
    color: rgb(240,240,240);
    text-shadow: 1px 1px 16px rgba(255,255,255,0.5);
}


.bars{
    display: none;
}

.bars img{
    height: 100%;
    filter: invert(1);
}

.cross{
    display: none;
}

.cross img{
    height: 100%;
    filter: invert(1);
}



@media screen and (max-width: 1024px){
    .navWrapper{
        width: 90%;
    }
    
    .navlinks{
        display: none;
    }
    
    .bars{
        display: block;
        position: absolute;
        right: 0;
        height: 1.25rem;
        opacity: 0.75;
        transition: 0.4s ease-out;
        border-radius: .5rem;
    }
    
    .bars:hover{
        transform: scale(1.05);
        box-shadow: 0px 0px 16px 1px rgba(255,255,255,0.5);
    }
}

@media screen and (max-width: 10240px){
    .nav.responsive{
        width: 100%;
        background: rgb(35,35,35);
    }
    
    .nav.responsive .navWrapper{
        height: 100vh;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .nav.responsive .navlogo{
        top: 0.125rem;
        position: absolute;
    }
    
    .nav.responsive .navlinks{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 10rem;
        position: relative;
        gap: 0;
    }
    
    .nav.responsive .navlinks a{
        text-align: center;
        font-size: 1.25rem;
        position: relative;
        width: 100%;
        box-sizing: border-box;
        padding-block: 1rem;
        border-bottom: solid 1px rgb(55,55,55);
        transition: 0.4s ease-out;
    }

    .nav.responsive .navlinks a:nth-child(5){
        border-bottom: none;
    }
    
    .nav.responsive #nav-small-link{
        display: block;
        background: none;
        font-size: 1rem;
        padding-block: 0rem;
        color: rgb(125,125,125);
        transform: translateY(4rem);
    }
    
    .nav.responsive #nav-small-link:hover{
        color: rgb(195,195,195);
    }
    
    .nav.responsive #navcontact{
        padding-block: 1rem;
    }
    
    .nav.responsive #navcontact:hover{
        box-shadow: none;
    }
    
    .nav.responsive .navlinks a:hover{
        transform: scale(1.075);
    }
    
    
    .nav.responsive .bars{
        display: none;
    }
    
    .nav.responsive .cross{
        display: inline-block;
        height: 2.5rem;
        position: absolute;
        right: -.25rem;
        top: 1rem;
        border-radius: 4rem;
        transition: 0.4s ease-out;
    }
    
    .nav.responsive .cross:hover{
        transform: scale(1.05);
        box-shadow: 0px 0px 16px 1px rgba(255,255,255,0.3);
    }
}



/*-----------end Nav----------------------*/

.hero{
    width: 100%;
    margin-inline: auto;
    z-index: 100;
    margin-top: 4rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    height: 75vh;
    min-height: 280px;
    max-height: 1024px;
    background: rgb(25,25,25);
}

.hero-content{
    width: 90%;
    height: 100%;
    max-width: 1360px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 200;
}


.hero-content h1{
    color: white;
    font-weight: 300;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.25;
    width: 100%;
    margin-bottom: 1rem;
    border-bottom: solid 1px white;
    width: auto;
    padding-bottom: 1rem;
}



.hero-content h2{
    color: white;
    margin-bottom: 2rem;
    font-weight: 400;
}

.cta-container{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}




.cta-container-line{
    width: 2px;
    height: 2.5rem;
    background: rgb(255,255,255);
    opacity: 0.5;
}

.alt-cta-wrapper{
    display: flex;
    flex-direction: column;
    opacity: 0.5;
}

.alt-cta{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: .5rem;
}

.alt-cta-icon{
    height: 1rem;
    filter: invert(1);
}

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




.hero-image-filter{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 150;
    top: 0;
    left: 0;
    background-image: linear-gradient(to right, rgba(5,5,5,.9), rgba(5,5,5,0));
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hero picture{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1.1);
}

.hero picture *{
    width: 100%;
    height: 100%;
    object-fit: cover;
}










@media screen and (max-width: 760px){
    
    
    .hero-content h2{
        font-size: clamp(0.5rem, 3vw, 1.25rem);
        margin-bottom: 1rem;
    }
    
    .hero-content h1{
        font-size: clamp(1rem, 8vw, 5rem);
    }
    
    .alt-cta-wrapper{
        opacity: 0.75;
    }
    
    .alt-cta{
        font-size: clamp(0.5rem, 3.25vw, 1rem);
        
    }
    
    .hero-image-filter{
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }
    
}

@media screen and (max-width: 420px){
    
    .hero{
        aspect-ratio: 3/4;
        height: auto;
        max-height: auto;
    }
    
    .hero-content{
        width: 90%;
    }
    
    .cta-container{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .alt-cta-wrapper{
        gap: .5rem;
    }
    
    
    
    .cta-container-line{
        width: 100%;
        height: 2px;
    }
    
}



.services{
    width: 100%;
    margin-inline: auto;
    margin-bottom: 8rem;
    position: relative;
    overflow: hidden;
    position: relative;
    z-index: 100;
}

.services-wrapper{
    width: 90%;
    max-width: 1280px;
    margin-inline: auto;
    padding-block: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}


.services-container{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    position: relative;
    margin-bottom: 2rem;
    z-index: 10;
    transition: 0.5s ease-out;
}

.services-bg-grid{
    width: 12rem;
    position: absolute;
    top: -4rem;
    left: -4rem;
    opacity: .5;
    filter: invert(.25);
}

.services-bg-grid2{
    width: 12rem;
    position: absolute;
    bottom: -4rem;
    right: -4rem;
    opacity: .5;
    filter: invert(.25);
}

.services-container a{
    width: 100%;
    padding-inline: 2rem;
    padding-block: 4rem;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-sizing: border-box;
    gap: 2rem;
    z-index: 100;
    overflow: hidden;
    transition: 0.5s ease-out;
    
}

.service-bg-filter{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
    background-image: linear-gradient(to bottom, rgba(25,25,25,0.25), rgba(25,25,25,.75));
    transition: .4s ease-out;
    backdrop-filter: blur(2px);
    
}

.service-bg-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    filter: saturate(1.25);
    object-fit: cover;
    transition: .6s ease-out;
}


.service-content .service-icon{
    height: 4rem;
    filter: invert(1);
    display: none;
}


.service-content h4{
    width: 100%;
    min-height: clamp(1rem, 6vw, 6rem);
    color: rgb(255,255,255);
    font-size: clamp(1rem, 2.5vw, 2rem);
    font-weight: 400;
}

.service-content p{
    width: 100%;
    max-width: 330px;
    font-weight: 400;
    color: rgb(205,205,205);
}

.link-icon{
    width: 2rem;
    height: 2rem;
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: var(--color3);
    background: rgb(225,225,225);
    
}

#leistungen-link{
    text-align: center;
    color: rgb(105,105,105);
    text-decoration: none;
    display: inline-block;
    transition: .2s ease-out;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: .5rem 1rem;
    border-radius: 2rem;
}

#leistungen-link:hover{
    background: rgba(220,220,215);
}

.services-container a:hover .service-bg-img{
    transform: scale(1.2);
}

.services-container a:hover .service-bg-filter{
    background-image: linear-gradient(to bottom, rgba(25,25,25,0.5), rgba(25,25,25,.9));
    backdrop-filter: blur(0px);
}



.services-container a:hover .service-content p{
    color: rgb(255,255,255);
}




@media screen and (max-width: 900px){
    
    .services-wrapper{
        width: 90%;
    }
    
    .services-container{
        grid-template-columns: 1fr;
    }
    
    .services-container a{
        padding-block: 2rem;
    }
    
    .service-icon{
        height: 3rem;
    }
    
    .services-container h4{
        min-height: auto;
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

}



    
    
    

.about{
    width: 100%;
    margin-bottom: 8rem;
    position: relative;
    background: white;
    overflow: hidden;
}


.about-wrapper{
    width: 100%;
    margin-inline: auto;
    position: relative;
}

.about-business{
    width: 100%;
    max-width: 1360px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    margin-bottom: 8rem;
    position: relative;
}

.about-business img{
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    box-sizing: border-box;
    border-left: none;
    position: relative;
    z-index: 400;
    filter: saturate(1.5);
}

.about-business-text{
    width: 100%;
    color: var(--color3);
    background: rgba(245,245,245,0.85);
    margin-left: -12.5%;
    z-index: 500;
    box-sizing: border-box;
    padding: 2rem;
    box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.2);
    backdrop-filter: blur(.5rem);
}

.about-business-text h4{
    font-size: clamp(1.25rem, 5vw, 2rem);
    font-weight: 400;
    line-height: 1.25;
    width: 100%;
    max-width: 360px;
    margin-bottom: 1rem;
}

.about-business-text p{
    width: 100%;
    max-width: 480px;
    position: relative;
}

.about-business-text p span{
    font-weight: 500;
}

.about-box-container-wrapper{
    position: relative;
    width: 100%;
    
}

.about-box-container{
    width: 90%;
    margin: 0 auto;
    max-width: 1360px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    position: relative;
    align-items: stretch;
    grid-auto-rows: 1fr;
}
  
.about-box-container a{
    text-decoration: none;
    color: var(--color3);
}

.about-box-container a:hover .about-box{
    background: var(--color2);
}


.about-box{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    background: rgb(245,245,245);
    overflow: hidden;
    transition: .2s ease-out;
}

.about-box-info{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    text-decoration: none;
}

#about-box-name{
    color: var(--color3);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: .5rem;
}

.about-box-info p{
    color: var(--color3);
    text-decoration: none;
}


.about-box-img{
    width: 80%;
    max-width: 12rem;
    position: relative;
    border-radius: 200px;
    position: relative;
}


.about-contact-details{
    width: 95%;
    margin-inline: auto;
    padding-block: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.about-contact-detail-row{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    gap: .5rem;
    padding: 1rem 3rem;
    border-radius: 2rem;
    background: rgb(242,242,242)
    
}
.about-contact-detail-row img{
    height: 1.25rem;
    opacity: 0.8;
}

.about-contact-detail-row p{
    text-decoration: none;
    color: var(--color3);
    font-size: 1.25rem;
}




@media screen and (max-width: 760px){
    
    .about .section-headline h3{
        width: 90%;
        max-width: 300px;
    }
    
    .about-business{
        grid-template-columns: 100%;
        gap: 0rem;
    }
    
    .about-business img{
        width: 90%;
    }

    .about-business-text{
        width: 95%;
        margin-inline: auto;
        margin-left: 2.5%;
        margin-top: -3rem;
    }
    .about-business-text h5{
        max-width: 260px;
    }
    
    .about-box-container{
            grid-template-columns: 1fr;
    }
    .about-box{
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 2rem;
    }
    
    .about-box-info{
        align-items: flex-start;
        text-align: left;
    }
    
    .about-box-img{
        width: 50%;
    }
}
    
    
   
  


.statistics{
    width: 95%;
    margin-inline: auto;
    overflow: hidden;
    padding-block: 4rem;
    margin-bottom: 6rem;
}

.statistics-wrapper{
    width: 95%;
    margin-inline: auto;
    max-width: 1360px;
    
}

.statistics .section-headline{
    max-width: 760px;
    margin-inline: auto;
    margin-bottom: 4rem;
}

.statistics .section-headline p{
    font-size: clamp(1.25rem, 5vw, 2rem);
    max-width: 760px;
    margin-top: .5rem;
    font-weight: 300;
}



.statistics .statistic-grid{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.statistics .statistic{
    width: 100%;
    min-height: 100px;
    box-sizing: border-box;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 1rem;
    text-align: center;
}

.statistics .statistic p{
    color: rgb(125,125,125,125);
    font-weight: 300;
    max-width: 420px;
}

.statistics .statistic-head{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-bottom: .5rem;
}

.statistics .statistic-head p{
    font-weight: 500;
    color: var(--color1);
    font-size: 1.25rem;
    
}

.statistics .statistic-head img{
    height: 3rem;
}

.statistics .kunden-slider{
    width: 100%;
    height: 3rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.kunden-slider img{
    height: 2rem;
}

@media screen and (max-width: 760px){
        .statistics .statistic-grid{
        width: 100%;
        display: grid;
        grid-template-columns: 1fr ;
        gap: 2rem;
    }
}






.testimonials{
    width: 100%;
    margin-inline: auto;
    padding-block: 6rem;
    background: rgb(242,242,242);
}

.testimonial-container{
    width: 90%;
    max-width: 1360px;
    margin-inline: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 2rem;
}

.testimonial-box{
    width: 100%;
    box-sizing: border-box;
     padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    background: rgb(250,250,250);
}


.testimonial-box #qoute-suffix{
    color: rgb(165,165,165);
    font-size: 0.75rem;
}

.review-stars{
    height: 1rem;
}

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

    .testimonial-container{
        flex-direction: column;
    }
    
    

}




/*---Kontakt---*/

.contact{
    background: rgb(35,35,35);
    width: 100%;
    box-sizing: border-box;
    padding-inline: 2.5%;
    padding-top: 6rem;
}

.contact .section-headline h2{
    color: white;
}

.contact .section-headline h3{
    color: rgba(235,235,235);
    font-weight: 300;
    max-width: 720px;
    line-height: 2;
}


.contact-info{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-sizing: border-box;
    border-radius: 4rem;
    background: rgba(50,50,50);
    padding: 1rem;
    margin-bottom: 1rem;
    width: 90%;
    max-width: 420px;
    margin-inline: auto;
}

.contact-info:nth-child(3){
    margin-bottom: 6rem;
}

.contact-info img{
    filter: invert(1);
    opacity: 0.9;
    height: 1.5rem;
}

.contact-info p{
    color: rgb(225,225,225);
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.address-opening-hours{
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    width: 90%;
    margin-inline: auto;
    padding-bottom: 6rem;
    position: relative;
}



.aoh-info{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

.aoh-info img{
    filter: invert(1);
    opacity: 0.5;
    height: 1.5rem;
    margin-top: .25rem;
}

.aoh-info p{
    color: rgb(145,145,145);
}


#res-sub-element{
    display: none;
}

@media screen and (max-width: 760px){
    
    .address-opening-hours{
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;
        width: 90%;
        margin-inline: auto;
        padding-bottom: 6rem;
        position: relative;
    }
    
}

@media screen and (max-width: 480px){
    .contact .section-headline h3{
        font-size: 1.5rem;
        max-width: 260px;
        line-height: 1.5;
    }
    .contact-info img{
        filter: invert(1);
        opacity: 0.9;
        height: clamp(.25rem, 5vw, 1.25rem);
    }

    .contact-info p{
        color: rgb(225,225,225);
        font-size: clamp(.25rem, 5vw, 1.25rem);
        letter-spacing: 1px;
    }
}


.map-and-form{
    width: 90%;
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-inline: auto;
    padding-bottom: 6rem;
}


#google-maps-container{
   width: 100%;
    margin-inline: auto;
}

#google-maps-iframe{
    width: 100%;
    height: 180px;
    filter: invert(90%) hue-rotate(180deg);
}

.contact-form{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
}

.form-row{
    width: 100%;
    background: rgb(55,55,55);
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}

.form-row label{
    color: white;
    min-width: 6rem;
    padding: 1rem 0rem 1rem 1rem;
}

.form-row input{
    color: white;
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    -webkit-border: none;
    box-sizing: border-box;
    padding: 1rem;
}

.form-row textarea{
    color: white;
    width: 100%;
    min-height: 120px;
    background: transparent;
    border: none;
    -webkit-border: none;
    box-sizing: border-box;
    padding: 1rem;
}

.contact-form p{
    font-size: .75rem;
    color: rgb(125,125,125);
}

.contact-form p a{
    color: rgb(185,185,185);
}

.contact-form button{
    border: none;
    -webkit-border: none;
    cursor: pointer;
}


@media screen and (max-width: 480px){
    .form-row{
        flex-direction: column;
    }

    .form-row label{
        color: white;
        min-width: 6rem;
        padding: 0.5rem 0rem 0rem 1rem;
    }

    .form-row input{
        color: white;
        width: 100%;
        height: 100%;
        background: transparent;
        border: none;
        -webkit-border: none;
        box-sizing: border-box;
        padding: 1rem;
    }

    .form-row textarea{
        color: white;
        width: 100%;
        min-height: 120px;
        background: transparent;
        border: none;
        -webkit-border: none;
        box-sizing: border-box;
        padding: 1rem;
    }
}


.footer{
    width: 100%;
    background: rgb(30,30,30);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding-block: 1rem;
}

.footer a{
    text-decoration: none;
    color: rgb(205,205,205);
    font-weight: 400;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    transition: 0.2s ease-out;
}

.footer a:hover{
    text-shadow: 1px 1px 16px rgba(255,255,255,0.5);
    text-decoration: underline 1px var(--color2);
    color: rgb(255,255,255);
}

@media screen and (max-width: 780px){
    .footer{
        width: 100%;
        background: var(--cta);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding-block: 1rem;
    }
}






/*---------------------------------------------------Leistungen-Seite------------------------------------------------*/


.Leistungen{
    width: 100%;
    margin-inline: 0 auto;
    position: relative;
}

.leistungen-wrapper{
    width: 100%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: flex-start;
    gap: 2rem;
}


.progress-container {
  width: 100%;
  height: 4px;
  background: rgb(225,225,225);
    position: sticky;
    top: 4rem;
    z-index: 1000;
}

.progress-bar {
  height: 4px;
  background: var(--color2);
  width: 0%;
}

.leistungen-headline{
    width: 95%;
    max-width: 1360px;
    margin-inline: auto;
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
}


.leistungen-headline h1{
    color: var(--color3);
    font-size: 2rem;
    font-weight: 300;
}

.paragraph-container{
    width: 90%;
    max-width: 1360px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 8rem;
}



.paragraph-box{
    width: 100%;
    box-sizing: border-box;
    color: var(--color3);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    margin-bottom: 4rem;
    z-index: 100;
}

.paragraph-image{
    width: 90%;
    margin-inline: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    z-index: 110;
}

.paragraph-text{
    z-index: 120;
    width: 100%;
    margin-inline: auto;
    box-sizing: border-box;
    height: 100%;
    padding: 2rem;
    padding-top: 1rem;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(.5rem);
    margin-top: -4rem;
    box-shadow: 1px 2px 12px 0px rgba(0,0,0,0.15);
}

.paragraph-text h4{
    font-size: clamp(1.25rem, 7vw, 1.5rem);
    font-weight: 500;
    margin-bottom: .5rem;
}




@media screen and (max-width: 1080px){
    .paragraph-container{
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 760px){
    .paragraph-container{
        grid-template-columns: 1fr;
    }
}






/*---------------------------------------------------About-Seite------------------------------------------------*/

.about-page-head{
    width: 100%;
    margin-inline: auto;
    position: relative;
    margin-top: 4rem;
    background-image: linear-gradient(to top, rgb(245,245,245), rgb(235,235,235));
    overflow: hidden;
    margin-bottom: 4rem;
}

.about-page-head-container{
    width: 90%;
    max-width: 1024px;
    margin-inline: auto;
    box-sizing: border-box;
    padding-block: 6rem;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    z-index: 200;
}

.about-page-head-info{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

.about-page-head-container h1{
    font-size: 1rem;
    color: var(--color3);
}

.sep-line{
    width: 150px;
    height: 2px;
    background: var(--color2);
    margin-block: .5rem;
}


.about-page-head-container h3{
    font-weight: 500;
    max-width: 580px;
    font-size: 1.5rem;
    line-height: 1.25;
}

.about-page-head-container p{
    width: 100%;
    max-width: 420px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: .25px;
}



.about-page-head-image{
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    box-sizing: border-box;
    transition: .4s ease-out;
    filter: saturate(1.5);
}






@media screen and (max-width: 1024px){
    .about-page-head-container{
        display: flex;
        flex-direction: column-reverse;
        gap: 2rem;
        padding-block: 4rem;
    }
    
    .about-page-head-container h3{
        margin-bottom: 0;
    }

    .about-page-head-container p{
        width: 100%;
    }
    
    .about-page-head-image{
        aspect-ratio: 3/1;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        margin-left: -15%;
    }
    
}

@media screen and (max-width: 760px){
   
    .about-page-head-image{
        aspect-ratio: 2/1;
    }
}

.profile-grid{
    width: 90%;
    max-width: 1024px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.profile-box{
    width: 100%;
    box-sizing: border-box;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: .5rem;
    background: rgb(245,245,245);
}

.profile-box img{
    width: 80%;
    aspect-ratio: 1/1;
    max-width: 10rem;
    border-radius: 10rem;
    background: gray;
}

.profile-box p{
    text-align: center;
}

#profile-name{
    font-weight: 600;
}

@media screen and (max-width: 580px){
    .profile-grid{
        grid-template-columns: 1fr ;
    }
    
    .about-page-head-image{
        aspect-ratio: 2/1;
    }
}

.profile-row{
    width: 100%;
    margin-inline: auto;
    box-sizing: border-box;
    padding: 2rem 1rem;
    background: rgb(245,245,245);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.application-row{
    background: none;
    align-items: center;
    width: 100%;
    margin-inline: auto;
    box-sizing: border-box;
    padding: 2rem 0rem 0rem 0rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.application-row p{
    margin-bottom: 1rem;
    text-align: center;
}


/*---------------------------------------------------Karriere-Seite------------------------------------------------*/


.application-head{
    width: 100%;
    box-sizing: border-box;
    position: relative;
    margin-top: 4rem;
}

.application-head-wrapper{
    width: 90%;
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 4rem;
    padding-bottom: 12rem;
    box-sizing: border-box;
    gap: 2rem;
    z-index: 100;
}

.about-head-bg-filter{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -5;
    background-image: linear-gradient(to bottom, rgb(25,25,25,0.5), rgb(25,25,25,0.9));
}

.about-head-bg-img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
    object-fit: cover;
}


.ahb-headlines{
    color: white;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: flex-start;
}

.ahb-headlines h1{
    font-size: 2.5rem;
    font-weight: 300;
    color: rgb(255,255,255);
    line-height: 1.25;
}

.ahb-headlines h2{
    font-size: 1rem;
    color: rgb(255,255,255);
    font-weight: 1900;
    line-height: 1;
}


.stellenangebote{
    width: 100%;
    max-width: 720px;
    position: relative;
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    gap: 1rem;
    
}

.stelle{
    width: 100%;
    background: rgba(255,255,255,0.75);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-sizing: border-box;
    padding: 2rem;
    backdrop-filter: blur(4px);
}

.stelle-title{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 1rem;
}

.stelle img{
    height: 2.5rem;
    margin-bottom: 0.25rem;
}

.stelle h3{
    line-height: 1.25;
    font-size: 1rem;
    font-weight: 600;
}

.stelle h3 span{
    font-weight: 300;
}

.stelle p{
    font-weight: 300;
    font-size: .5rem;
}


.radio-spot{
    width: 90%;
    max-width: 420px;
    left: 0;
    position: absolute;
    bottom: -2rem;
    
    
}

.radio-spot h4{
    font-size: clamp(1rem, 5vw, 1.25rem);
    width: 100%;
    max-width: 580px;
    color: rgb(145,145,145);
    font-weight: 500;
    margin-bottom: 1rem;
    font-weight: 400;
}

.radio-box{
    width: 100%;
}

.radio-box audio{
    box-sizing: border-box;
    width: 100%;
    border: solid 2px rgba(255,255,255);
    -webkit-border: solid 2px rgba(255,255,255);
    box-shadow: 2px 5px 8px 0 rgba(25,25,25,0.25);
    -webkit-box-shadow: 2px 5px 8px 0 rgba(25,25,25,0.25);
    border-radius: 2rem;
    -webkit-border-radius: 2rem;
    box-sizing: border-box;
}

.radio-box audio::-webkit-media-controls-panel{
    -webkit-background-color: var(--color2);
    background-color: var(--color2);
    
}
.application-box-wrapper{
    width: 90%;
    max-width: 1024px;
    margin-inline: auto;
    padding-block: 8rem;
}

.application-box-wrapper h4{
    font-size: clamp(1.25rem, 7vw, 1.5rem);
    width: 100%;
    max-width: 580px;
    color: var(--color3);
    font-weight: 500;
    margin-bottom: 1rem;
}

.application-box-wrapper p{
    width: 100%;
    max-width: 650px;
}

.application-box *{
    color: var(--color3);
}


.application-box-container{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.application-box{
    width: 100%;
    background: rgba(242,242,242,1);
    box-sizing: border-box;
    padding: 1rem;
    border-radius: 1rem;
}


.application-box ul{
    width: 95%;
    margin-left: 2rem;
}






.application-form-container{
    width: 95%;
    max-width: 1088px;
    margin-inline: auto;
    background: rgb(240,240,235);
    box-sizing: border-box;
    padding: 0rem 2rem 4rem 2rem;
    overflow: hidden;
    margin-bottom: 6rem;
}

.contact-form-jobs{
    width: 100%;
    margin-inline: auto;
    max-width: 1024px;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
}

.contact-form-jobs h3{
    font-size: 2rem;
    font-weight: 300;
    color: var(--color3);
}


.form-jobs-row *{
    color: rgb(35,35,35);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.form-jobs-row{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    border-bottom: solid 1px rgb(125,125,125);
    box-sizing: border-box;
    background: rgb(255,255,255);
}

.form-jobs-row label{
    min-width: 100px;
    box-sizing: border-box;
    font-weight: 600;
    color: var(--color3);
    padding: .5rem 0rem 0rem 0.5rem;
}

.contact-form-jobs input:not(.contact-form-jobs-selection-options input){
    width: 100%;
    border: none;
    background: transparent;
    box-sizing: border-box;
    padding: 0.5rem 1rem 0.5rem 1.5rem;
}

.contact-form-jobs-selections{
    width: 100%;
    box-sizing: border-box;
    padding: 1rem .5rem;
}

.contact-form-jobs-selections p{
    font-weight: 600;
    padding-bottom: .5rem;
}

.contact-form-jobs-selection-options {
    height: 2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.contact-form-jobs textarea{
    width: 100%;
    border: none;
    min-height: 6rem;
    background: transparent;
    box-sizing: border-box;
    padding: 0.5rem 1rem 0.5rem 1.5rem;
}

.contact-form-jobs button{
    display: inline-block;
    background: var(--color2);
    border: none;
    -webkit-border: none;
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
    padding: .5rem 1rem;
    border-radius: 0;
    -webkit-border-radius: 0;
    font-weight: 400;
    transition: .2s ease-out;
    cursor: pointer;
}

#reCapthcaText{
    font-size: .8rem;
}

.contact-form-jobs button:hover{
    transform: scale(1.05);
    box-shadow: 2px 4px 8px 0 rgba(0,0,0,0.2);
}





/*---------------------------------------------------Imprint------------------------------------------------*/

.imprint{
    width: 90%;
    margin-inline: auto;
    max-width: 1024px;
}

.imprint h1{
    font-size: clamp(1.75rem, 4.5vw, 3rem);
    font-weight: 500;
}

.imprint h2{
    font-size: clamp(1.25rem, 3.5vw, 2rem);
}

.imprint h3{
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 500;
}


.datenschutz{
    width: 90%;
    margin-inline: auto;
    max-width: 1024px;
}

.datenschutz div{
    margin-bottom: 4rem;
}

.datenschutz h1{
    font-size: clamp(1.75rem, 4.5vw, 3rem);
    font-weight: 500;
}

.datenschutz h2{
    font-size: clamp(1.25rem, 3.5vw, 2rem);
}

.datenschutz h3{
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 500;
    margin-bottom: .5rem;
}

.datenschutz p{
    
    padding-bottom: 2rem;
}

.datenschutz ul{
    width: 95%;
    margin-left: 5%;
    margin-bottom: 2rem;
}

















