*{
    margin: 0;
    padding: 0;
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    --color1: rgb(152,221,203);
    --color2: rgb(35,35,35);
}

html{
    scroll-behavior: smooth;
    -webkit-scroll-behavior: smooth;
}

body{
    background: rgb(35,35,35);
}

.fade-in {
  opacity: 0; /* Start hidden */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Keyframe animation for fade-in from below */
@keyframes fadeInFromBelow {
  from {
    opacity: 0;
    transform: translateY(40px);
    scale: .9;
  }
  to {
    opacity: 1;
    transform: translateY(0);
      sclae: 1;
  }
}

/* Active animation to apply when element is in the viewport */
.fade-in.in-view {
  animation: fadeInFromBelow 0.6s ease-out forwards;
}

.section{
    position: relative;
}

h1{
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: clamp(1rem, 6vw, 3rem);
}

.cta{
    text-decoration: none;
    color: rgb(255,255,255);
    padding: .75rem 3rem;
    border-radius: 2rem;
    font-weight: 400;
    background: var(--color2);
    display: inline-block;
    cursor: pointer;
    transition: 0.4s ease-out;
    box-shadow: 2px 4px 6px 0 rgba(0,0,0,0.5);
}

.cta:hover{
    transform: scale(1.05);
    background: rgb(45,45,45);
    box-shadow: 2px 4px 8px 0 rgba(0,0,0,0.4);
}

.cta2{
    text-decoration: none;
    color: var(--color2);
    background-color: rgb(245,245,245);
    padding: .75rem 3rem;
    border-radius: 2rem;
    border: solid var(--color2) 1.5px;
    font-weight: 500;
    display: inline-block;
    cursor: pointer;
    transition: 0.4s ease-out;
    box-shadow: 2px 4px 6px 0 rgba(0,0,0,0.5);
}

.cta2:hover{
    transform: scale(1.05);
    background: rgba(0,0,0,0.1);
}




#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: flex-end;
    justify-content: center;
}

#cookie-disclaimer-box{
    background: white;
    width: 100%;
    bottom: 1rem;
    box-sizing: border-box;
    padding: 2rem;
}

#cookie-disclaimer-box p{
    width: 100%;
    max-width: 760px;
    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.25);
}

#accept-cookies{
    background: var(--color2);
    color: white;
    font-weight: 600;
}

#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%;
    }
}




.nav{
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 10000;
    overflow: hidden;
    background: rgb(30,30,30);
}



.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: 1.75rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.navlogo img:nth-child(1){
    height: 100%;
}

.navlogo img:nth-child(2){
    height: 1rem;
    filter: invert(1);
    opacity: .75;
}

.navlogo:hover{
    opacity: 0.75;
    
}

.navlinks{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}

.navlinks a{
    color: rgb(165,165,165);
    text-decoration: none;
    font-weight: 400;
    padding: 0.5rem 2rem;
}

#nav-small-link{
    display: none;
}

.navlinks a:hover {
    color: var(205,205,205);
    text-decoration: underline 2px var(--color1);
}


.nav-open{
    display: none;
}



.nav-close{
    display: none;
}

.nav-close img{
    height: 100%;
}



@media screen and (max-width: 1024px){
    .navWrapper{
        width: 90%;
    }
    
    .navlinks{
        display: none;
    }
    
    .nav-open{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        position: absolute;
        right: 0;
        height: 1.5rem;
        transition: 0.2s ease-out;
        border-radius: .5rem;
        
    }

    .nav-open-line{
        width: 2rem;
        height: 3px;
        background: rgb(205,205,205);
        transition: .4s ease-out;
        border-radius: 3px;
    }
    

    .nav-open:active #nol1{
        transform: rotate(45deg);
    }

    .nav-open:active #nol2{
        transform: rotate(-45deg);
    }

    .nav-open:active #nol3{
        opacity: 0;
    }
}
    


  

@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: 1rem;
        position: absolute;
        
    }
    
    .nav.responsive .navlogo img:nth-child(2){
        filter: invert(1)  grayscale(1) brightness(4);
    }
    
    .nav.responsive .navlinks{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 6rem;
        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: 2rem;
        color: white;
        border-top: solid 1px rgb(85,85,85);
        border-radius: 0;
        transition: .4s ease-out;
    }
    
    .nav.responsive #nav-small-link{
        display: block;
        background: none;
        font-size: 1rem;
        padding-block: 1rem;
        color: rgb(125,125,125);
        transform: translateY(4rem);
        border-top: 0;
    }
    
    .nav.responsive #nav-small-link:hover{
        background: rgb(45,45,45);
    }
    
    
    .nav.responsive #navcontact:hover{
        box-shadow: none;
    }
    
    .nav.responsive .navlinks a:hover{
        transform: scale(1.05);
        background: rgb(45,45,45);
        text-decoration: none;
    }
    
    
    .nav.responsive .nav-open{
        display: none;
    }
    
    .nav.responsive .nav-close{
        display: inline-block;
        height: 1.75rem;
        position: absolute;
        right: 0;
        top: 1rem;
        border-radius: 4rem;
        transition: 0.2s ease-out;
        filter: invert(1);
    }
    
    .nav.responsive .nav-close:hover{
        opacity: 0.75;
    }
}




.hero{
    width: 100%;
    margin-inline: auto;
    position: relative;
    margin-top: 4rem;
    display: block;
    z-index: 0;
    overflow: visible;
}


.hero-content{
    width: 90%;
    max-width: 1900px;
    height: clamp(300px, 70vh, 720px);
    z-index: 100;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 1rem;
}

.hero-content h1{
    color: rgb(255,255,255);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(1rem, 6vw, 3rem);
    line-height: 1;
    width: 100%;
    text-transform: none;
}

.hero-content-div-line{
    width: 50%;
    max-width: 460px;
    height: 2px;
    background: white;
}

.hero-content h2{
    font-size: 1.125rem;
    font-weight: 500;
    color: rgb(245,245,245);
    max-width: 420px;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.hero .cta{
    display: inline-flex;
    background: rgba(25,25,25,0.75);
    backdrop-filter: blur(4px);
    margin-bottom: 2rem;;
    font-weight: 500;
    box-shadow: -2px -4px 24px 0 rgba(225,225,225,0.2);
}

.hero .cta:hover{
    background: rgba(25,25,25,0.9);
    backdrop-filter: blur(0);
    box-shadow: 0px 0px 32px 0 rgba(225,225,225,0.25);
}


.hero-bg{
    position: sticky;
    top: 0;
    width: 100%;
    height: clamp(300px, 70vh, 800px);
    z-index: 10;
    filter: saturate(3);
}

.hero-bg-filter{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 20;
    background-image: linear-gradient(to top right, rgba(36, 36, 31, 0.4), rgba(0,0,0,0));
}


.hero-bg picture img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 15;
    
}



.services{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    padding-top: 2rem;
    gap: 2rem;
    padding-bottom: 8rem;
    background-color: rgb(35,35,35);
    z-index: 500;
    overflow: hidden;
}

.services-grid{
    width: 90%;
    max-width: 1900px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    position: relative;
    box-sizing: border-box;
    overflow: auto;
}

.service-box{
    position: relative;
    width: 100%;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    box-sizing: border-box;
    padding: 10%;
    overflow: hidden;
    text-decoration: none;
    
}

.service-box h3{
    color: rgb(255,255,255);
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 1rem;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}

.service-box p{
    color: rgb(255,255,255);
    font-weight: 300;
    line-height: 1.25;
}

.service-img-filter{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.75));
    z-index: -1;
    transition: 0.4s ease-out;
    backdrop-filter: blur(0px);
}

.service-box img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: -2;
    transition: 0.6s ease-out;
    filter: saturate(2);
}

.service-box:hover img{
    transform: scale(1.1);
}

.service-box:hover .service-img-filter{
    background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.6));
    z-index: -1;
    backdrop-filter: blur(2px);
}


@media screen and (max-width: 760px){
    
    
    .hero-content h1{
        font-weight:600;
        font-size: clamp(.75rem, 8vw, 3rem);
        letter-spacing: -1px;
    }

    .hero-content-div-line{
        width: 50%;
        max-width: 460px;
        height: 2px;
        background: white;
    }

    .hero-content h2{
        font-size: clamp(.5rem, 3.5vw, 1.125rem);
        color: rgb(245,245,245);
    }

    .hero .cta{
        font-weight: 500;
        text-align: center;
    }
    
    .hero-bg-filter{
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        z-index: 20;
        background-image: linear-gradient(to top, rgba(0,0,0,.5), rgba(0,0,0,0));
    }
    
    .services-grid{
        grid-template-columns: 1fr;
    }
    
    .service-box{
        position: relative;
        width: 100%;
        min-height: 180px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        box-sizing: border-box;
        padding: 5%;
    }
}

.intro{
    width: 100%;
    position: relative;
    padding-bottom: 8rem;
    display: block;
    padding-top: 2rem;
}


.intro-grid{
    width: 90%;
    max-width: 1360px;
    margin-inline: auto;
    background-image: linear-gradient(to left, rgb(255,255,255), rgb(219, 240, 241));
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}


@media screen and (max-width: 760px){
    .intro-grid{
        grid-template-columns: 1fr;
    }

}


.intro img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 8rem;
    z-index: 300;
}


.intro-content{
    width: 100%;
    max-width: 460px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    z-index: 400;
    box-sizing: border-box;
    padding: 2rem;
    
}

.intro-content h2{
    font-weight: 500;
    line-height: 1.25;
    font-size: clamp(1rem, 4.25vw, 1.5rem);
}

.intro-content p{
    line-height: 1.75;
}



.slider-section{
    width: 100%;
    padding-block: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}



.slider-section-text{
    width: 90%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 4rem;
    gap: 1rem;
    text-align: center;
}

.slider-section-text h3{
    font-size: clamp(1rem, 4.25vw, 1.5rem);
    font-weight: 500;
    color: rgb(235,235,235);
}

.slider-section-text p{
    max-width: 560px;
    color: rgb(185,185,185);
}

.slider-wrapper{
    width: 90%;
    max-width: 1360px;
    margin-inline: auto;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin-bottom: 4rem;
}



.slider-container {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
}

        .slider-container img {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            object-fit: cover;
        }

        .slider-after {
            clip-path: inset(0 50% 0 0);
            transition: clip-path 0.2s ease;
        }

        .slider-handle {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 4px;
            background-color: #fff;
            cursor: ew-resize;
            transition: left 0.2s ease;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .slider-handle img {
            width: 24px; /* Icon width */
            height: 24px; /* Icon height */
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
            border-radius: 50%; /* Make the image circular */
            border: 12px solid #000; /* Optional border */
            background-color: rgba(0,0,0);
            padding: 0.5rem;
            filter: invert(1);
        }

        .slider-container input[type="range"] {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            cursor: ew-resize;
        }

        .slider-container input[type="range"]:focus {
            outline: none;
        }




@media screen and (max-width: 760px){
    .slider-wrapper{
        flex-direction: column;
        gap: 2rem;
    }
}











.benefits{
    width: 100%;
    padding-bottom: 8rem;
    padding-top: 4rem;
    background: rgb(245,245,245);
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: flex-start;
    position: relative;
}



.benefits h4{
    width: 90%;
    margin-inline: auto;
    font-weight: 500;
    font-size: clamp(1rem, 4.25vw, 1.5rem);
    padding-bottom: 4rem;
    text-align: center;
}

.benefits-container{
    width: 90%;
    max-width: 1360px;
    margin-inline: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.benefit{
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.benefit h5{
    font-size: 1rem;
    color: rgb(65,65,75);
}

.benefit p{
    color: rgb(105,105,105);
    font-weight: 300;
}


.benefit-icon{
    width: 50%;
    max-width: 4rem;
}


@media screen and (max-width: 760px){
    .benefits-container{
        width: 90%;
        margin-inline: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 2rem;
        position: relative;
    }
}



.contact{
    width: 100%;
    padding-top: 4rem;
    padding-bottom: 6rem;
    background: var(--color2);
    position: relative;
    z-index: 1000;
}



.contact-grid{
    width: 90%;
    max-width: 1360px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12rem;
}

.contact *{
    color: white;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.contact-content-container{
    width: 100%;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
}

.contact-content-container h3{
    font-weight: 600;
    font-size: clamp(1rem, 6vw, 3rem);
    text-transform: uppercase;
    padding-bottom: 1rem;
}

.contact-content-container p{
    font-weight: 200;
    padding-bottom: 1rem;
    color: rgb(225,225,225);
}

.contact #contact-address{
    line-height: 2;
    color: rgb(225,225,225);
}

.contact-content-container .contact-cta{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: .5rem;
    background: rgb(245,245,245);
    padding: .75rem 2rem;
    border-radius: 2rem;
}

.contact-content-container .contact-cta:nth-child(3){
    margin-bottom: 2rem;
}

.contact-content-container .contact-cta img{
    opacity: .8;
    height: 1.25rem;
}

.contact-content-container .contact-cta a{
    color: rgb(35,35,35);
    width: 100%;
    font-weight: 500;
    letter-spacing: 1px;
}


form{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#googleReCaptcha-disclaimer{
    font-size: .75rem;
    color: rgb(125,125,125);
}

#googleReCaptcha-disclaimer a{
    font-size: .75rem;
    color: rgb(185,185,185);
}

.form-row {
}

.form-row label{
    padding-left: 1rem;
}

.contact input, textarea{
    background: rgb(55,55,55);
    width: 100%;
    box-sizing: border-box;
    padding: 1rem 1rem 1rem 1rem;
    border: none;
    -webkit-border: none;
    margin-top: .25rem;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px rgb(55,55,55) inset !important;
    box-shadow: 0 0 0 30px rgb(55,55,55) inset !important;
    -webkit-text-fill-color: white !important;
    text-fill-color: white !important;
}

input:active, textarea:active{
    background: rgba(255,255,255,0.1);
}



textarea{
    min-height: 6rem;
}



form button{
    background: rgba(255,255,255,0.9);
    color: rgb(35,35,35) !important;
    border-radius: 2rem;
    padding: 1rem 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s ease-in;
}

form button:hover{
    background: var(--color1);
}


@media screen and (max-width: 1024px){
    .contact-grid{
        gap: 6rem;
    }
}

@media screen and (max-width: 720px){
    .contact-grid{
        width: 90%;
        margin-inline: auto;
        display: grid;
        grid-template-columns: 1fr;
    }
}









.footer{
    width: 100%;
    background: rgb(25,25,25) !important;
    padding-block: 2rem;
    z-index: 1000;
}

.footer-container{
    width: 90%;
    margin-inline: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    color: white;
    gap: 1rem;
}

.footer-container *{
    color: white;
    text-decoration: none;
    transition: 0.4s ease-out;
}


.footer-container a:hover{
    color: var(205,205,205);
    text-decoration: underline 2px var(--color1);
}

.footer-social-links{
    padding-right: 2rem;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
}

.footer-social-links a{
    width: 2rem;
    height: 2rem;
    background: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: inline-block;
    overflow: hidden;
    border-radius: 2rem;
    opacity: .5;
    cursor: pointer;
    transition: .4s ease-out;
}

.footer-social-links a:hover{
    opacity: 1;
}

.footer-social-links a img{
    width: 1rem;
    position: relative;
}

@media screen and (max-width: 760px){
    .footer-container{
        width: 90%;
        margin-inline: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        color: white;
        gap: 2rem;
    }

    .footer-container span{
        display: none;
    }

    .footer-social-links{
        padding-right: 0;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 1rem;
    }
}









.leistungen{
    width: 100%;
    position: relative;
    z-index: 100;
    background: rgb(30,30,30);
}

.progress-container {
    width: 100%;
    height: 4px;
    background: rgb(25,25,25);
      position: sticky;
      top: 4rem;
      z-index: 1000;
  }
  
  .progress-bar {
    height: 4px;
    background: rgb(81, 220, 183);
    width: 0%;
  }

.leistungen-container h1{
    width: 100%;
    margin-inline: auto;
    color: rgb(185,185,185);
    font-weight: 400;
    margin-bottom: 6rem;
}


.leistungen-container{
    width: 90%;
    max-width: 1360px;
    padding-top: 8rem;
    margin-inline: auto;
    position: relative;
    z-index: 300;
}


.leistungen-container h3{
    width: 100%;
    margin-inline: auto;
    margin-bottom: 1rem;
    border-bottom: solid 1px rgb(125,125,125);
    color: rgb(125,125,125);
    font-weight: 400;
    font-size: 1rem;
    text-transform: uppercase;
    
}

.leistungen-grid{
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    z-index: 100;
    gap: 4rem;
    align-items: stretch;
    padding-bottom: 6rem;
}


.leistung-box{
    width: 100%;
    position: relative;
    z-index: 150;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: flex-end;
    transition: .4s ease-in-out;
}

.leistung-box-img{
    position: relative;
    aspect-ratio: 3/1;
    width: 100%;
    z-index: 160;
    object-fit: cover; 
    transition: .4s ease-in-out;
}

.leistung-box-bg-filter{
    position: absolute;
    aspect-ratio: 3/1;
    width: 100%;
    z-index: 170;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
}


.leistungen-box-content{
    background: rgba(25,30,30,0.75);
    width: 90%;
    height: 100%;
    margin-inline: auto;
    z-index: 200;
    box-sizing: border-box;
    padding: 2rem;
    margin-top: -6rem;
    box-shadow: 2px 4px 16px 0 rgba(0,0,0,0.4);
    backdrop-filter: blur(6px);
    transition: .4s ease-in-out;
}

.leistung-box h2{
    position: relative;
    color: rgb(225,225,225);
    margin-bottom: 1rem;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 500;
}

.leistung-box p{
    position: relative;
    color: rgb(205,205,205);
    line-height: 1.5;
}


.leistung-box:hover .leistungen-box-content{
    transform: scale(1.025);
    background: rgba(25,25,25,0.9);
    backdrop-filter: blur(12px);
    box-shadow: 2px 4px 24px 0 rgba(0,0,0,0.75);
}

.leistung-box:hover .leistung-box-img{
    box-shadow: 2px 6px 24px 0 rgba(152,221,223,0.25);
}


@media screen and (max-width: 10240px){
    
    .leistung-box-img{
        position: relative;
        aspect-ratio: 2/1;
    }

    .leistung-box-bg-filter{
        position: abso2ute;
        aspect-ratio: 2/1;
    }

}

@media screen and (max-width: 720px){
    
    .leistungen-grid{
        grid-template-columns: 1fr;
    }
    
    .leistung-box-img{
        position: relative;
        aspect-ratio: 2/1;
    }

    .leistung-box-bg-filter{
        position: absolute;
        aspect-ratio: 2/1;
    }

}





.about{
    width: 100%;
    z-index: 100;
    position: relative;
    margin-top: 4rem;
    padding-bottom: 8rem;
    background: rgb(45,45,45);
}

.about-header{
    width: 100%;
    position: relative;
    margin-bottom: 12rem;
}



.about-header-bg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: -2;
    object-fit: cover;
}

.about-header-bg-filter{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
    background-image: linear-gradient(to bottom, rgba(0,10,20,.5), rgba(5,15,25,.5));
}

.about-header-wrapper{
   width: 90%;
    max-width: 1360px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding-block: 3rem;
}

.about-header h1{
    color: rgb(245,245,245);
}


.about-box{
    width: 90%;
    margin-inline: auto;
    max-width: 1024px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgb(65,65,65);
    box-sizing: border-box;
    padding: 2rem 4rem;
    position: relative;
    
}


.about-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-top: -9rem;
    position: relative;
    margin-bottom: 3rem;
}



.about-box img{
    width: 50%;
    max-width: 200px;
}

@media screen and (max-width: 760px){
    .about-box{
        padding: 2rem 2rem;
        
    }

    .about-box img{
        width: 50%;
        max-width: 150px;
    }

    .about-info{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        margin-top: -8rem;
        position: relative;
        margin-bottom: 3rem;
    }
}


.about-box h2{
    font-weight: 500;
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    color: rgb(245,245,245);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.about-box p{
    line-height: 1.75;
    color: rgb(195,205,205);
}








.imprint{
    width: 90%;
    margin-inline: auto;
    margin-top: 4rem;
}

.datenschutz{
    width: 90%;
    margin-top: 8rem;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 8rem;
}

.datenschutz *{
    line-height: 1.75;
}

.datenschutz p{
    margin-bottom: 2rem;
}









.location-header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 300px; 
}

.location-header-content{
    width: calc(100% - 5%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 5%;
}

.location-header img{
    width: 100%;
    height: 100%;
    background-color: rgb(240,240,240);
}

.location-info{
    width: 90%;
    margin-inline: auto;
    padding-block: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.location-services{
    padding-block: 4rem;
    width: 90%;
    margin-inline: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
}

.location-service{
    padding-block: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: rgb(240,240,240);
}

.booking{
    width: 98%;
    margin-inline: auto;
    box-sizing: border-box;
    padding-inline: 5%;
    padding-block: 4rem;
    background: rgb(240,240,240);
    border-radius: 2rem;
    position: relative;
    z-index: 100;
    overflow: hidden;
    margin-bottom: 6rem;
}

.booking .bg-filter{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -q150;
    /*background-image: linear-gradient(to bottom, rgba(245,245,245,0.2), rgba(255,255,255,0.5));
    */
    backdrop-filter: blur(4px);
    top: 0;
    left: 0;
}

.booking .bg-img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -200;
    object-fit: cover;
}

.booking #pre-headline{
    color: rgb(85,85,85);
    text-align: center;
    font-size: .9rem;
    position: relative;
    z-index: 200;
}

.booking h2{
    text-align: center;
    font-weight: 800;
    color: rgb(65,65,65);
    font-size: 1.5rem;
    margin-bottom: .25rem;
    position: relative;
    z-index: 200;
}

.booking form{
    width: 95%;
    max-width: 720px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 200;
    background-image: linear-gradient(to bottom, rgba(255,255,255,0.35), rgba(255,255,255,0.5));
    border: solid 1px rgba(225,225,225,.2);
    backdrop-filter: blur(12px);
    border-radius: 1.5rem;
    box-sizing: border-box;
    padding: 1.5rem;
    box-shadow: 2px 4px 12px 0 rgba(0,0,0,0.2);
}

.booking form .form-row{
    width: 100%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: .25rem;

}

.booking form .form-row:nth-child(3){
    flex-direction: row;
    gap: 1rem;
}

.booking form .form-row-column{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: .5rem;
}

.booking form .form-row-column:nth-child(1){
    max-width: 70%;
}

.booking form .form-row-column:nth-child(2){
    max-width: 30%;
    
}

.booking form label{
    color: rgb(65,65,65);
}

.booking form input{
    width: 100%;
    box-sizing: border-box;
    padding: 1rem;
    border: none;
    border-radius: 1rem;
}

.booking form button{
    background: var(--color1);
    border: none;
    width: 100%;
}

.booking #booking-disclaimer{
    color: rgb(85,85,85);
    font-size: .9rem;
    width: 95%;
    
}



