
*{
    box-sizing: border-box;
    margin: 0;
    padding:0;
    font-family: 'Inter', sans-serif;
}
body{
    background-color: black;
}

html{
    scroll-behavior: smooth;
}

h1{
    font-size: clamp(3rem, 3vw, 7rem); 
    background-image: linear-gradient(to right, #FFFFFF, #999999);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    font-weight: 500;
    padding-bottom: clamp(5px,2vw,70px);
}
h2{
    font-size: 2rem; 
    color: white;
    font-weight: 50;
}
h3{
    font-size: clamp(1rem, 2vw, 2rem);
    color: white;
    font-weight: 50;
}

/*navbar*/

.navbar{
    background-color: black;
    display: flex;
    
    justify-content: center;
    align-items: center;
    font-size: clamp(0.1rem, 1.3vw, 2rem); 
    position: sticky;
    top:0;
    z-index: 999;
}



.navbar_container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    z-index: 1;
    width: 100%;
   
    margin: 0, auto;
    padding: 0 clamp(5px,1.5vw,50px);
    

}
.navbar a{
    font-size: clamp(15pt, 2.5vw, 30pt);
}


.navbar-menu{
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
    height: 7vh;
    z-index: 999;
    
    
    

}

.navbar_items{
    
    height: 100%;
    margin-left: 50px;
    
    
}

.navbar_links{
    color:white;
    display:flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    
    height: 100%;
    white-space: nowrap;
    
    
    

}
.navbar img{
    width: 30%;
    z-index: 2000;
    
    
}

.navbar_btn{
    display:flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    width: 100%;
    background: linear-gradient(to bottom, #10C6FF,#067699);
    margin-left:clamp(8px,1.5vw,100px) ;
}

.button{
    display:flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: clamp(5px, 1.5vw, 7px) clamp(10px, 1.5vw, 20px);
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    color:white;   
}

.hamburger{
    display: none;
    cursor: pointer;
    margin-right: 10px;

}

.bar{
    display: block;
    width: 25px;
    height:3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #0BC4FF;
}

.navbar_links:hover{
    color: #0BC4FF;
}
.navbar .aktiv{
    color: #0BC4FF;
}

@media(max-width: 768px){
    .hamburger{
        display: block;
    }
    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }
    .navbar-menu{
        position: fixed;
        left: -105%;
        top:5vh;
        gap:0;
        flex-direction: column;
        background-color: black;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        height: 50vh;
    }

    .navbar_items{
        margin: 16px 0;
    }

    .navbar-menu.active{
        left:0;
    }


}

/*main*/

.main{
    position: relative;
    display:flex;
    justify-content: flex-start;
    align-items: center;
    height: 70vh;
    width:100%;
    
    
    
}
.main::before{
   content: '';
   position: absolute;
   width: 100%;
   height:100%;
   background-image: url("images/web.jpg");
   background-size: cover ;
   filter: brightness(50%);
   z-index: -1;
}
.main_container{
    margin-left: clamp(50px,20vw,300px);
    width: 27%;
    margin-bottom: clamp(50px,20vw,300px);
    margin-top:  clamp(50px,20vw,300px) ;
   
   
}

.main h2{
    margin-bottom: clamp(20px,2vw,50px);
    
}

.main .button_header{
    position: absolute;
    
    color: #FFFFFF;
    text-decoration: none;
    font-size: clamp(0.8rem, 1.5vw, 2rem); 
    padding: 0.5em 0.8em;
    margin: 0 auto;
    border: none;
    outline: none;
    border-radius: 6px;
  
    background: linear-gradient(to bottom, #10C6FF,#067699);
    
    top: clamp(65%, 50vw, 78%);
    
   
    
}

@media(max-width: 768px){
    .main{
        align-items: center;
        justify-content: center;
    }
    .main_container{
        text-align: center;
        margin-left: 0;
        width: 70%;
        
    }
    .main .button_header{
        margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    bottom: 19%;
    width: 20%;
    top: auto;
    }
}

/*Über uns*/

.Über_uns{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background:linear-gradient(to bottom, #0C0E17,black);
    width: 100%;
    padding-bottom: clamp(100px, 15vw,300px);
    border-bottom: 2px solid #3C3A3A;
    
}
.Über_uns_container{
    display: flex;
    align-items: center;
    width: 100%;
    padding: 3em 3em;
    gap: clamp(50px,20vw,300px);
    
    

}

.Über_uns h1{
    padding: 4rem 0;
}

.Über_uns_container img{
    width:40%;
    
}

.Über_uns_container div{
    justify-content: center;
    align-items: center;
   
    width: 40%;
    
    max-height: auto;
}

.Weiterleitung{
    padding-bottom: clamp(5px,2vw,50px) ;
    padding-top: 3em;
}

@media only screen and (max-width: 770px){
    .Über_uns_container{
        flex-direction: column;
        width: 100%;
    }
    .Über_uns_container{
        padding: 0;
        gap:40px;
    }
    .Über_uns_container img{
        width: 100%;
        
    }
    .Über_uns_container div{
        width:70%;
        text-align: center;
    }
}

/*Leistungen*/
.Leistungen {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    padding-bottom: clamp(100px, 15vw, 300px);
    
}

.Titel_Leistungen_container {
    padding: 4rem 0;
}

.Leistungen::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(farthest-side, #0099CA 0, black 100%) clamp(-3rem, 10vw, -19rem) -200px / 2500px 2500px;
    background-repeat: no-repeat;
    z-index: -5;
    filter: blur(50px);
    filter: brightness(70%);
}

.Leistungen_container {
    display: flex;
    
    align-items: center;
    padding-top: clamp(1rem, 2vw,4rem);
    justify-content: center;
    gap: clamp(20px, 2vw, 50px);
    width: 90%; /* Adjust width for smaller screens */
     /* Allow cards to wrap to the next line if needed */
}

.Leistungen_container .child {
    flex-basis: 100%; 
    min-width: clamp(150px, 10vw, 300px);
    height: auto; 
    align-self: stretch;
    border: clamp(1px, 0.3vw, 5px) solid #0BC4FF;
    border-radius: 20px;
    background-image: linear-gradient(to bottom right, #3C3A3A, #000000);
    overflow: hidden;
    
    

}

.Leistungen h3{
    font-size: clamp(1rem, 1.3vw, 1.25rem);
    color: white;
    font-weight: 50;
}

.Leistungen_container .child img {
    width: 100%;
    height: auto;
    border-bottom-left-radius: 20px;
    padding-top: 20px;
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.child:nth-child(3) {
    border: none;
    background-image: none;
    display: flex;
    flex-direction: column;
    overflow: visible;
    height: 100%;
    gap: 1em;
}

.grandchild {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    align-self: center;
    border: clamp(1px, 0.3vw, 5px) solid #0BC4FF;
    border-radius: 20px;
    background-image: linear-gradient(to bottom right, #3C3A3A, #000000);
   
   
    align-content: center;
 
}

.grandchild h3 {
    padding-left: 5px;
    padding-bottom: clamp(10px, 1.5vw, 50px);
}



.grandchild h2 {
    padding-top: clamp(10px, 1vw, 50px);
}

.Leistungen .child h2 {
    font-size: clamp(1.2rem, 1.8vw, 2rem);
    font-weight: 500;
    margin: 0 0.5em;
    background-image: linear-gradient(to right, #04D2FF, #037E99);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    padding-top: 10px;
}

.Leistungen .child h3 {
    font-size: clamp(1rem, 1.3vw, 1.25rem);
    color: white;
    font-weight: 50;
    margin: 0 1em;
}

.Leistungen .child h3 {
    padding-top: clamp(1px, 2vw, 50px);
}

.Weitere_Leistungen {
    padding-bottom: clamp(5px, 2vw, 50px);
    padding-top: clamp(5px, 2vw, 50px);
}

.Weitere_Leistungen h3{
    font-size: clamp(1rem, 2vw, 2rem);
}



@media only screen and (max-width: 770px){

    
    .Leistungen .child:nth-child(3){
      justify-content: space-between;
        gap: 4em;
      
        
    }
    .Leistungen_container{
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 4em;
     
      
       
    }
    .Leistungen .child{
        width: 70%;
        justify-content: center;
        margin: auto;
        text-align: center;
        
        
    }
    
}


/*Preise*/

.Preise{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: clamp(100px, 15vw,300px);
    border-bottom: 2px solid #3C3A3A;
    
}
.Preise h1{
    padding: 4rem 0;
}

.Preise_container{
    display: flex;
    justify-content: space-between;
    padding-top: clamp(1rem, 2vw,4rem);
    gap: 4em;
    
    align-items: stretch;
    width:70%;
    

}


.Preise i{
    font-size: clamp(0.8rem, 1.3vw, 1.25rem);
    color: white;
    margin-right:clamp(10px,2vw,30px);  
}

.Preise .row{
    display:flex;
    padding-bottom: clamp(10px,2vw,50px);

    
    
}
.Preise .Titel{
    padding: clamp(10px,2vw,50px);
    width: 100%;
    border-bottom:clamp(1px, 0.3vw, 5px) solid #0BC4FF;
    text-align: center;
    background-image: linear-gradient(to right, #04D2FF, #037E99);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    
    
}
.Preise a{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    text-decoration: none;
}





.Preise .Standart{
    display: flex;
    flex-direction: column;
    align-items: center;
    border:clamp(1px, 0.3vw, 5px) solid #0BC4FF;
    border-radius: 20px;
    flex-basis: 100%;
    background-image: linear-gradient(to bottom right, #3C3A3A,#000000);
    transition: 0.35s;
    cursor: pointer;
}

.Preise .Standart:hover,
.Preise .Individuell:hover{
    padding:20px;
}

.Preise .Individuell{
    display: flex;
    flex-direction: column;
    align-items: center;
    border:clamp(1px, 0.3vw, 5px) solid #0BC4FF;
    border-radius: 20px;
    flex-basis: 100%;
    background-image: linear-gradient(to bottom right, #3C3A3A,#000000);
    cursor: pointer;
}
.Preise .Beschreibung{
    display: flex;
    flex-direction: column;
    width: 50%;
    padding-top: clamp(5px,2vw,50px);   
}

.Preise a #button_Preise{
    background-image: linear-gradient(to right, #04D2FF, #037E99);
    width: auto;
    text-align: center;
    align-self: center;
    margin: auto;
    padding: 1em 3em;
    border-radius: 20px;
    margin: 2em 0;
    white-space: nowrap;
}
@media only screen and (max-width: 770px){
    .Preise_container{
        flex-direction: column;
        width:80%;
    }


}

/*Ablauf*/
.Ablauf{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: clamp(100px, 15vw,200px);
    border-bottom: 2px solid #3C3A3A;
    
    
    
}

.Ablauf_container{
    display: flex;
    padding-top: clamp(1rem, 2vw,4rem);
    align-items: stretch;
    width: 50%;
    gap: clamp(20px,2vw,100px);
    

}

.Ablauf h1{
    padding: 4rem 0;
    text-align: center;
    width: 80%;
}
.Ablauf .child{
    flex-basis: 100%;
    padding-bottom:clamp(5px,2vw,50px);
    border-bottom: 1px solid white;
    margin-bottom: clamp(5rem, 10vw, 100rem);
    padding: 1em;
    padding-bottom: 2em;
}
.Ablauf .child h2{
    font-size: clamp(1rem, 1.3vw, 2rem);  
    padding-bottom: clamp(5px,2vw,50px);
    background-image: linear-gradient(to right, #04D2FF, #037E99);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}






.Ablauf .button_header{
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    text-decoration: none;
    font-size: clamp(0.5rem, 1.3vw, 1.25rem); 
    padding: clamp(2px,1vw,15px);
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 6px;
    
    background: linear-gradient(to bottom, #10C6FF,#067699);
    
    
}

.Ablauf .child h3{
    padding-bottom: clamp(10px,2.5vw,50px);
} 

.Ablauf .child:nth-child(1){
    border:clamp(1px, 0.3vw, 5px) solid #0BC4FF;
    border-radius: 20px;
    
    background-image: linear-gradient(to bottom right, #3C3A3A,#000000);
}

@media only screen and (max-width: 770px){
    .Ablauf_container{
        flex-direction: column;
        width: 100%;
    }
    .Ablauf_container .child{
        width: 80%;
        margin: auto;
    }

}

/*Über uns Seite*/

.Ueber_uns{
    display: flex;
    flex-direction: column;
    align-items: center;
    align-items: stretch;
    gap: clamp(20px, 4vw, 100px);
    position: relative;
   
    
    
}
.Ueber_uns::before{
    content: '';
   position: absolute;
   width: 100%;
   height:100%;
   
   background: radial-gradient(farthest-side,#0099CA 0, black 100%) clamp(-40px,30vw,-700px) clamp(-50px, 30vw, -700px)/clamp(30px, 50vw, 1000px) clamp(30px, 50vw, 1000px),
   radial-gradient(farthest-side,#0099CA 0, black 100%) clamp(150px, 50vw, 1200px) clamp(100px, 30vw, 800px)/clamp(30px, 50vw, 1000px) clamp(30px, 50vw, 1000px);
   
   background-repeat: no-repeat; 
   z-index: -1;
   filter: blur(50px);
   filter: brightness(90%);
   
   
   
}

.Ueber_uns h1{
    padding: 4rem 0;
}


.Ueber_uns .child{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;

    
}

.Ueber_uns .child div{
    width: 40%;

}

.Ueber_uns .child img{
    width: 48%;
    
}


.Ueber_uns .child:nth-child(1) div{
    margin-left: clamp(3em, 7vw, 7em);
}

.Ueber_uns .child:nth-child(2){
    padding-bottom: clamp(100px, 15vw,300px); 
    border-bottom:2px solid #3C3A3A;
}

@media only screen and (max-width: 770px){
    
    .Ueber_uns .child:nth-child(1){
        flex-direction: column-reverse;
        width: 100%;
        gap: clamp(20px, 4vw, 100px);

    }

   
    .Ueber_uns .child img{
        width: 100%;
    }
    .Ueber_uns .child:nth-child(1) div{
        width: 90%;
        text-align: center;
        margin: 0;
        
        
    }
    .Ueber_uns::before{
        background: none;
    }
    .Ueber_uns .child:nth-child(2){
        flex-direction: column;
        width: 100%;
        gap: clamp(20px, 4vw, 100px);
    }
    .Ueber_uns .child:nth-child(2) div{
        width: 90%;
        text-align: center;
        margin: 0;
    }


}


/*Unsere Werte*/
.Unsere_Werte{
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-bottom: clamp(100px, 15vw,300px);
 
   
}
.Unsere_Werte h1{
    padding: 4rem 0;
}

.Unsere_Werte .container {
    
    display: flex;
    align-items: stretch;
   justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 4em;
    
    width: 60%;
    
    
    
    
    
}
.Unsere_Werte .child{
    position: relative;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    align-items: center;
    text-align: center;
    border:clamp(1px, 0.3vw, 5px) solid #0BC4FF;
    border-radius: 20px;
    margin: 0 auto;
    flex: 0 0 33%;
    margin-bottom: 50px;
    background-image: linear-gradient(to bottom right, #3C3A3A,#000000);
    padding: 0 clamp(5px, 1vw, 20px);
    
    
   
}

.Unsere_Werte img{
    width: 40%;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    top:0;

    
}

.Unsere_Werte .child h2{
    margin: 0;
    padding-top: clamp(40px, 5vw, 120px);
    padding-bottom:clamp(20px, 2vw, 40px);
    background-image: linear-gradient(to right, #04D2FF, #037E99);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    
}



.Unsere_Werte .child:nth-child(1) img{
    width: 20%;
    top:2%;
}



.Unsere_Werte .child h3{
    padding-bottom: clamp(20px,1.5vw,50px);
}
@media only screen and (max-width: 700px){
    .Unsere_Werte .container{
        width: 76%;
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .Unsere_Werte .child{
        width: 100%;
        padding-top: 3em;

    }
    .Unsere_Werte img{
        margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    top:0;
    }

}

/*Leistungen*/
.Leistungen2{
    position: relative;
    display:flex;
    justify-content: flex-start;
    align-items: center;
    width:100%;
    
}

.Leistungen2::before{
    content: '';
   position: absolute;
   width: 100%;
   height:100%;
   background-image: url("images/Leistungen-Banner.jpg");
   background-size: cover ;
   filter: brightness(50%);
   z-index: -1;
   
}
.Leistungen2 h2{
    font-size: clamp(1rem, 2vw, 2rem);
    color: #FFFFFF;
}

.Leistungen2 .container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: clamp(50px,20vw,300px);
    width: 27%;
    margin-bottom: clamp(50px,20vw,300px);
    margin-top:  clamp(50px,20vw,300px) ;
}

@media only screen and (max-width: 770px){
    .Leistungen2{
        justify-content: center;    
    }
    .Leistungen2 .container{
        width: 80%;
        text-align: center;
        margin-left: 0;
    }
}


.Leistungsbeschreibung{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.Leistungsbeschreibung h1{
    padding: 4rem 0;
    text-align: center;
}

.Leistungsbeschreibung .container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 60%;
    padding-bottom: clamp(100px, 15vw,300px); 
    border-bottom:2px solid #3C3A3A;
    padding-top: clamp(1rem, 2vw,4rem);
    
    
}

.Leistungsbeschreibung .child{
    position: relative;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    align-items: center;
    text-align: center;
    border:clamp(1px, 0.3vw, 5px) solid #0BC4FF;
    border-radius: 20px;
    margin: 0 auto;
    flex: 0 0 26%;
    margin-bottom: 50px;
    background-image: linear-gradient(to bottom right, #3C3A3A,#000000);
    padding: 0 clamp(10px, 1vw, 20px);
  
}

.Leistungsbeschreibung img{
    position: absolute;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    top:-10%;

   
}

.Leistungsbeschreibung .child h2{
    margin: 0;
    padding-top: clamp(40px, 5vw, 120px);
    background-image: linear-gradient(to right, #04D2FF, #037E99);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    font-size: 2rem;
    padding-bottom:clamp(20px, 2vw, 40px);
    
       
    
    
}

.Leistungsbeschreibung .child h3{
    padding-bottom: clamp(20px,1.5vw,50px); 
    font-size: clamp(1rem, 1.3vw, 1.25rem);
}
@media only screen and (max-width: 1800px){
    .Leistungsbeschreibung img{
        top:-10%;
    }
}

@media only screen and (max-width: 700px){
    .Leistungsbeschreibung .container{
        width: 80%;
        flex-wrap: nowrap;
        flex-direction: column;
    }
    .Leistungsbeschreibung .child{
        width: 80%;
        padding-top: 3em;

    }

}

/*FAQ*/
.faq-section{
    padding:4em 2em;
    padding-bottom: clamp(100px, 15vw,200px);
    border-bottom:2px solid #3C3A3A;
}
.faq-section h1{
    text-align: center;
    padding: 4rem 0;

} 

.faq{
    list-style: none;
    width: 80%;
    margin: 0 auto;
}

.faq li{
    border-bottom:1px solid #3C3A3A;
}
.q{
    padding: 1em 0;
    cursor:pointer;
    
}

.faq-section .q:hover .Frage{
    color:#0BC4FF; 
}
.faq-section .q:hover .plus{
    background-color: #0BC4FF;
}



.faq-section p{
    font-size: clamp(0.5rem, 1.3vw, 1.25rem);
    color: white;
    font-weight: 50; 
}
 .faq-section span{
    font-size: clamp(1rem, 1.3vw, 2rem); 
    color: white;
    font-weight: 50;
}




.plus-container {
    margin: 0 0.5;
    display: inline-block;
    position: relative;
    width: 30px;
    height: 30px;
}

.plus {
    position: absolute;
    bottom: clamp(8%,0.5vw, 30%);
    left: 50%;
    width: clamp(13px, 1vw, 20px);
    height: 2px;
    background-color: white;
    transition: all 0.3s ease-in-out;
}

.plus.vertical {
    transform: translate(-50%, -50%) rotate(90deg);
}

.plus.horizontal {
    transform: translate(-50%, -50%);
}

.vertical-rotated {
    transform: rotate(-90deg);
    transition: all 0.3s ease-in-out;
    background-color: #0C0E17;

}

.a {
    overflow: hidden;
    height: 0;
    padding: 0 1em 0 3.3em;
    transition:  0.3s ease-in-out, padding 0.3s ease-in-out;
}

.a-opened {
    padding: 1em 1em 2em 3.3em;
    height: auto; /* Set to auto to allow dynamic height */
}

#contact-form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 5em;
   


}

#Kontakt{
    text-align: center;
    padding-bottom: clamp(100px, 15vw,200px);
}

#Kontakt h1{
    padding: 4rem 0;
}

#contact-form .child:nth-child(1){
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(2em, 5vw, 5em);
    gap: clamp(1em, 5vw, 5em);
    overflow: hidden;

}

#contact-form .child:nth-child(2){
    
    text-align: center;
}



#contact-form input{
    padding-right: 1em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    border-radius: 20px;
    padding-left: 1em;
    font-size: clamp(1rem, 1.3vw, 2rem); 
    position: relative;
    background-image: linear-gradient(to bottom right, #3C3A3A,#000000);
    color:#0BC4FF;
    width: 100%;
}

textarea{
    padding-right: 1em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    border-radius: 20px;
    padding-left: 1em;
    font-size: clamp(1rem, 1.3vw, 2rem); 
    background-image: linear-gradient(to bottom right, #3C3A3A,#000000);
    color:#0BC4FF;
    width: 100%;
    margin-bottom: clamp(1em, 5vw, 2em);
}
#contact-form label{
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.g-recaptcha{
    margin-bottom: clamp(1em, 5vw, 2em);
}



#contact-form button{
    background-image: linear-gradient(to right, #04D2FF, #037E99);
    font-size: clamp(1rem, 1.3vw, 2rem);
    padding: 20px clamp(10px, 1.5vw, 20px);
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    color:white; 
    border-radius: 20px;

} 
@media only screen and (max-width: 768px){

    #contact-form .child:nth-child(1){
        flex-wrap: wrap;
        text-align: center;
    }
    
    
}





#success{
    display: flex;
    height:100vh;
    justify-content: center;
    align-items: center;

}

#success div{
    padding: 5em;
    border:2px solid #0BC4FF;
}


#footer{
    background-color: #0C0E17;
    width: 100%;
    padding-bottom: clamp(100px, 15vw,200px);
}

#footer .container{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    
    
    
    
}

#footer img{
    width: clamp(80px, 9vw, 150px);
    padding: 1em;
    
}

#footer .child{
    width: 100%;
}

#footer .child:nth-child(1){
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    

}

#footer a{
    color: white;
    text-decoration: none;
    padding: 1em;
    font-size: clamp(1rem, 2vw, 2rem);
}


















































