*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
    font-family: sans-serif;
    color:white
}

:root {
    --btnGradient: linear-gradient(
        45deg,
        rgb(241, 12, 12),
       
        rgb(230, 133, 6),
        rgb(241, 12, 12),
      
        rgb(95, 4, 199)   
    );

    --h1Gradient: linear-gradient(
        45deg, 
        rgb(5, 180, 192),
        rgb(59, 221, 194),
        rgb(89, 192, 5)
       
    
        
        
    );

    --borderColor: linear-gradient(
        45deg, 
        rgba(5, 180, 192, 0.7),
        rgb(59, 221, 194, 0.7),
        rgb(89, 192, 5, 0.7)
        
    );

    --borderColorPrivacy: linear-gradient(
        45deg, 
        rgba(5, 180, 192, 0.329),
        rgba(59, 221, 194, 0.363),
        rgba(89, 192, 5, 0.342)
       

    );

}

::selection {
    background-color: rgba(161, 231, 31, 0.315);
    color: rgb(221, 221, 221);

}

html {
    color-scheme: dark;
    scroll-behavior: smooth;
    
  }
  




html::-webkit-scrollbar {

    width: 0.8vw;

}

html::-webkit-scrollbar-thumb{
    background: linear-gradient(310deg, rgba(37, 223, 68, 0.3) 0%, rgb(54, 199, 212, 0.3) 100%);

}

html::-webkit-scrollbar-track{
    background-color: rgba(2, 2, 2, 0);
}

html::-webkit-scrollbar-thumb:hover{
    background: linear-gradient(310deg, rgba(37, 223, 68) 0%, rgb(54, 199, 212) 100%);
    
}


body {
    overflow-x: hidden;
    overflow-y: scroll;
   
    
}

main{
    justify-content: center;
    align-items: center;
   
}

.hide-navbar {
    transform: translateY(-200%);
  }
  
  .show-navbar {
    transform: translateY(0);
  }

#navbar{
    transition:
     transform 0.4s ease,
     height 0.4s ease;
     
   
}

header{
    z-index: 100;
    position: fixed;
    width: 100%;
    height:80px;
   
    display: flex;
    flex-direction: row;
    align-items: auto;
    justify-content: space-evenly;
    backdrop-filter: blur(30px);
    
}




nav{ z-index: 102;
    position: fixed;
    width: 100%;
    height:auto;
   
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
   
    
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 70%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    

  
}

li {
    align-items: center;
    justify-content: space-evenly;
}

.navLinks{
    display: flex;
    width: auto;
    gap: 4vw;
}

a {
    text-decoration: none;
    color:rgb(202, 230, 228);
    font-size: clamp(18px, 2vw, 26px);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}


.hamburger{
    z-index: 101;
    background:linear-gradient(45deg, 
    rgb(0, 75, 136),
    rgb(84, 239, 250),
    rgb(7, 79, 128));
    background-size: 200%;
    animation: bg-animation 8s infinite alternate;
    width: 35px;
    height: 35px;
    position: absolute;
    
   right: 20px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding: 6px;
    border-radius: 6px;
    cursor: pointer;
    
    
}

.bar{
    z-index: 101;
    border-radius: 100px;
    height: 4px;
    width: 100%;
    background: black;
    display: flex;
    -webkit-transition: opacity 0.3s ease, transform 0.3s ease-in-out;
    transition: opacity 0.3s ease, transform 0.3s ease-in-out;
   
}

.page-wrapper {
    
    overflow-x: clip;
    background-image: linear-gradient(80deg,
    rgb(0, 0, 0),
    rgb(0, 10, 20),
  
    rgb(17, 0, 9));
    background-size: 200%;
    animation: bg-animation 20s infinite alternate;
    
    min-height: 200vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    
   
}

.logo {
    margin-top: 5px;
    width: 70px;
    height: 70px;
    

  
}

h1, h2, h3, h4, h5, h6 {
    color: rgb(52, 191, 226);
    background-image: linear-gradient(
        60deg,
     rgb(22, 213, 238),
     rgb(1, 189, 79),
     rgb(26, 176, 187)
     );
    background-size: 300%;
    animation: bg-animation 30s infinite alternate;
    
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

h1 {
    margin-bottom: 60px;
    font-size: clamp(60px, 9vw, 180px);
    font:bold;
    
    
    background: var(--h1Gradient);
    background-size:300%;
    animation: bg-animation 16s infinite alternate;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
}

h2 {
    margin-bottom: 20px;
    font-size: clamp(34px, 9vw, 100px);
    font:bold;
    background: linear-gradient(71deg,
    
    rgb(17, 171, 209),
    rgba(19, 235, 127, 0.726),
    rgba(61,245,167,1)
     
    );

    
    background-size: 250%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
    animation: bg-animation 10s infinite alternate ease-in;
}

h3 {
    margin:0;
    font-size: 28px;
}


.hero-subheadline {
    font-size: clamp(30px ,3vw, 45px);
   
    text-align: center;
    display:flex;
    background: linear-gradient(71deg,
     rgb(35, 247, 183),
      rgba(7, 239, 247, 0.836));
     overflow-wrap: break-word;
    background-size:250%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    
}

.hero-subheadline.skills{
    font-size:clamp(22px, 1.5vw, 26px);
    margin-bottom: 80px;
    background: var(--btnGradient);
   background-size:300%;
   background-clip: text;
   -webkit-background-clip: text;
   color: transparent;  
   

   animation: bg-animation 8s infinite alternate ease-in;
}

button {
    all: unset;
    
    color:rgb(202, 230, 228);
    font-size: 16px;
    box-shadow: none;
    
  
    padding: 8px;
    border-radius: 2px;
    text-decoration: none;
    cursor: pointer;
    outline: none;
   
    
}

.main-button {
    background-image: var(--btnGradient);
    background-size: 300%;
    background-position: left;
    transition-duration: 0.5s;
    font-size: clamp(18px, 1.5vw, 30px);
   
    transition: background-position 1s;
    transition-property: box-shadow, transform;
    -webkit-transition-property: box-shadow, transform, background-position;
    width: auto;
}

.spacer50px {
    height: 50px;
}

.main-button:hover, .main-button:focus, .main-button:active{
   
    background-position: right;
    -webkit-transform: scale(1.07);
    transform: scale(1.07);
    

}

.hero-section {
   
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    
}

canvas{
    
    position: absolute;
    width: 100%;
    height: 100vh;
    z-index: 2;
}
.hero-header{
    display: flex;
    justify-content: space-between;
}
.hero-content-wrapper{
    z-index: 3;
    position: absolute;
    padding-top: 160px;
    display: flex;
    flex-direction: column;
    max-width: 1600px;
    width:100vw;
    padding-right: 10px;
    padding-left: 10px;
    justify-content: center;
    
    

}



.hero-left-wrapper, .hero-right-wrapper{
    width: 99%;
    height:auto;
   
    max-width: 1600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   
    
}

.hero-left-wrapper {
    align-items: center;
    
    
}

.hero-right-wrapper{
    top:100%;
    left:50%;
    transform: translate(-50%, -50%);
    position: absolute;
    
}

.coding-slide {
    opacity: 0;
}

.button-wrapper{
    margin-top: 80px;
    
}

.hero-div {
    color: rgb(13, 100, 172);
}

.hero-class {
    color:rgb(98, 192, 247);
}

.insight-class {
    color:rgb(228, 123, 52);
}

.hero-browser {
    position: relative;
    z-index: 10;
    background-color: rgb(0, 0, 0);
    border-radius: 16px;
    border: 10px solid rgb(41, 39, 39);
    padding-top: 10px;
    padding-left: 30px;
    padding-right: 30px;
    min-width: 300px;
    min-height: 50vh;
    width: 80vw;
    height: 40vw;
    
    overflow: hidden;
}





.block-align{
  position: relative;
  display: flex;
  flex-direction: row;
}

.position-center{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mockup-section {
    
    display: flex;
    gap: 2vw;
    width: 1600px;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.mockup {
    width: 300px;
    height:600px;
    margin-top: 50px;
    position: relative;
    justify-content: center;
    align-items: center;
    transition: all 8s ease-in-out;
    

}

.unselectable {
    -webkit-user-drag: none;
    user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.iphone-shape{
    width: auto;
    height: auto;
    position: relative;

}

.mockup-screen {
    border-radius: 70px;
    width: 99%;
    height: 100%;
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.screen-image{
    width: 100%;
    
    object-fit: cover;
    transition: all 8s ease-in-out;

   
    
}



.screen-image-scrolldown{
    transform: translateY(-120px);
}



.mockup-move-down{
    transform: translateY(40px);
}

.mockup-move-up{
    transform: translateY(-40px);
}


.tall-card{
    border-radius: 10px;
    padding: 25px;
    width: 100%;
    height: auto;
    background-image: linear-gradient(-30deg, rgba(0, 47, 255, 0.349), rgba(5, 183, 214, 0.616));
    gap: 20px;
    display:flex;
    flex-direction: column;
    align-items: top;
    justify-content: center;
    margin-bottom: 200px;

}


.maxwidth{
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section{
    
    position: relative;
    max-width: 1000px;
    width: 100vw;
    min-height: 10vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 10px;
}



.flex-row{
    margin-top: 10px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: top;
}

  

.konzept{
    min-height: 100vh;
    display: flex;
    width: 100vw;
    max-width: 1200px;
    align-items: center;
    justify-content: flex-start;
    
   
} 





  .stack{
   
    margin-top: 100px;
    width: 100%;
    min-height: 300vh;
    display:flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    align-items: center;
   
    
   
    
  }

  .card{
    
    color:black;
    background-color: rgb(3, 26, 31);
    padding: 0px 20px 20px 20px;
    min-width: 200px;
    width: 100%;
    min-height: 450px;
    position: sticky;
    margin-bottom: 300px;
    display:flex;
    flex-direction: column;
    justify-content: top;
    
    border-radius: 20px;
    font-size: 18px;
    box-shadow: 0 0px 0px 0 rgb(255, 255, 255), 0 1px 10px 0  rgb(0, 0, 0);
    
  
  }


  .card:nth-child(1) {
   
    position: sticky;
    top: 120px;
  }
  .card:nth-child(2) {
    position: sticky;
    top: 170px;
    
  }
  .card:nth-child(3) {
    position: sticky;
    top: 220px;
   
  }
  .card:nth-child(4) {
    position: sticky;
    top: 270px;
   
  }

  .card:nth-child(5) {
    position: sticky;
    top: 320px;
   
   
  }

  .card:nth-child(6) {
    position: sticky;
    top: 400px;
   
   
  }

 
.card-content{
    display: flex;
    flex-direction: row;
    
    position: relative;
    justify-content: space-between;
    align-items: center;
    gap: 10px;


}

.card-p{
    font-size: 22px;
    max-width: 50%;
    text-align: left;
    color:rgb(159, 170, 173);
}

.card-p.tallCard{
    width: 100%;
    max-width: 100%;
}

.card-img{
    position: relative;
    min-width: 160px;
    width: 90vw;
    max-width:40%;
   
    
}


.leistungen{
  
    margin-top: 100px;
    margin-bottom: 100px;
    width: 99%;
   
    
}

.grid-container{
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;;
    gap: 30px;
    align-items: center;
    justify-content: center;
}


.hero:hover > .hero-profile-img{
    
    transform: scale(1.2);

}



.hero,
.hero-content {
    z-index: 2;
    display: inline-block;
    position: relative;
    width: 400px;
    min-width: 200px;
    height: 400px;
    border-radius: 30px;
    overflow:hidden;
    box-shadow: 5px 5px 30px rgba(139, 139, 139, 0.3);
  }

.hero-content {
    transform: translateY(+100%);
    position:absolute;
    z-index: 4;
    background-image: linear-gradient(0deg , #3f5efb, #fc466b);
    
}
.second .hero-content{
    background-image: linear-gradient(0deg , #2fb115, #22bbcf)
  }

  .third .hero-content{
    background-image: linear-gradient(0deg , #77036d, #f71616)
  }
  
  .fourth .hero-content {
    background-image: linear-gradient(0deg , #02044e, #5eb4d6)
  }

  .fith .hero-content {
    background-image: linear-gradient(0deg , #ebde26, #dd810a)
  }

.centered{
    text-align: center;
}

.responsiveDesign{
    background-image: linear-gradient(
        60deg,
     rgb(54, 248, 183),
     rgb(47, 240, 73),
     rgb(24, 223, 230)
     );
}


.card-text{
    position: absolute;
    
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
}
  
  .hero-profile-img {
    height: 100%;
    transition: transform 0.7s;
  }
  
  .hero-description-bk {
    background-image: linear-gradient(0deg , #3f5efb, #fc466b);
    border-radius: 30px;
    position: absolute;
    top: 55%;
    left: -5px;
    height: 65%;
    width: 108%;
    transform: skew(15deg, -8deg);
    
    
    
  }


 .remove-transition{
    transform: translateY(+100%);
    transition: transform 0.5s ease;

 } 


  .hero-bk-animated{
    
    border-radius: 30px;
    position: absolute;
    height: 100%;
    width: 100%;
    transform: skew(0deg, 0deg);
    transition: all 0.5s ease;
    
    
  }
 
  
  .second .hero-description-bk {
    background-image: linear-gradient(0deg , #2fb115, #22bbcf)
  }

  .third .hero-description-bk {
    background-image: linear-gradient(0deg , #77036d, #f71616)
  }
  
  .fourth .hero-description-bk {
    background-image: linear-gradient(0deg , #02044e, #5eb4d6)
  }

  .fith .hero-description-bk {
    background-image: linear-gradient(0deg , #ebde26, #dd810a)
  }

  .hero-logo {
    height: 80px;
    width: 80px;
    border-radius: 20px;
    background-color: #fff;
    position: absolute;
    bottom: 30%;
    left: 30px;
    overflow:hidden;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.7);
  }
  
  .hero-logo img {
    height: 100%;
  }
  
  .hero-description {
    position: absolute;
    color: #fff;
    font-weight: 600;
    margin-right: 15px;
    margin-left: 15px;
    bottom: 26%;
  }
  
  .hero-btn,
  .hero-btn-close {
    position: absolute;
    color: #fff;
    right: 30px;
    bottom: 10%;
    padding: 10px 20px;
    border: 1px solid #fff;
    transition-duration: 0.2s;
    cursor: pointer;

  }
  
  .hero-btn a {
    color: #fff;
  }
  
  .hero-btn:hover{
    transform: scale(1.05);
  }

  

  

  .hero-date {
    position: absolute;
    color: #fff;
    left: 30px;
    bottom: 10%;
  }
  /* END CARD DESIGN */
  
 


.Preise-Section{
    margin-top: 100px;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tabelle{
    margin-top: 100px;
    border-collapse: collapse;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 10px;
}

.tabellen-reihe{
    display: flex;
    justify-content:center;
    align-items: center;
    border-radius: 8px;
    padding: 12px;
    height:40px;
   
    -webkit-transition: height 0.5s; 
    -moz-transition: height 0.5s; 
    -ms-transition: height 0.5s; 
    -o-transition: height .5s; 
    transition: height .5s;  

}

.zelle{
   
    
    min-width: 160px;
}

.preis{
    min-width: 220px;
}



.tabellen-reihe:hover{
    height: 80px;
    
}






.first-table:hover{

    background-image: linear-gradient(-45deg , #3f5efb, #fc466a);
    
}
.second-table:hover{
    background-image: linear-gradient(-45deg , #2fb115, #22bbcf)
  }

  .third-table:hover{
    background-image: linear-gradient(-45deg , #77036d, #f71616)
  }
  
  .fourth-table:hover{
    background-image: linear-gradient(-45deg , #02054e, #5eb4d6)
  }

  .fifth-table:hover{
    background-image: linear-gradient(-45deg , #ebde2694, #dd820a)
  }




.contact-container, form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
   
}

.contact-container{
    margin-bottom: 50px;
    
    width: auto;
}

form{
    border-radius: 8px;
    gap: 20px;

    background-size: 400%;
    animation: bg-animation 20s infinite alternate ease-in;

    background-image: linear-gradient(
        -45deg ,
        #220014,
        #66013c,
        #001a70,
        #03a4ccc9,
        #007cc4
        

        );


       
    padding: 30px;
    
}

@keyframes bg-animation {
    0% {
        background-position: left;
    }
    100% {
        background-position: right;
    }
}



input, textarea{
    width: clamp(200px, 50vw, 400px);
    background: none;
    color: rgba(241, 236, 236, 0.918);
    border: 0.5px solid rgba(255, 255, 255, 0.336);
    padding: 4px;
    outline: none;
}

select{
    background-color: transparent;
    background: transparent;
    color: rgba(241, 236, 236, 0.918);
    width: clamp(200px, 50vw, 400px);
    
    border: 0.5px solid rgba(255, 255, 255, 0.336);
    padding: 4px;
    outline: none;
}

option{
    color: rgba(241, 236, 236, 0.918);
    background-color: transparent;
    background: transparent;
}

::placeholder{
    color: rgba(224, 224, 224, 0.685);
    position: relative;
}

::placeholder::after{
    content: "*";
    color: red;
    position: absolute;
    top: 0;
    right: -20px;
}

.required {
    position: relative;
    
}


.footer{
    width: 100%;
    height:auto;
    
    padding-top: 20px;
    
    
}

.footer-container{
    display: flex;
    
    justify-content: space-evenly;
    padding-bottom:20px;
    margin-top: 10px;
}

.footer-logo{
    width:100px;
    height:80px;
}

.footer-subheadline {
    color: transparent;

    background: linear-gradient(45deg, 
    rgb(9, 102, 133),
    rgb(11, 221, 193));
    background-clip: text;
    -webkit-background-clip: text;

    font-size: 18px;
}

.footer-column{
    
    padding-left: 6px;
    padding-right: 6px;
    max-width: 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: top;
}



.footer-column > nav{
    position: relative;
    width: auto;
    height: auto;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: left;
    
}

.footer-column > nav ul, .footer-column > ul{
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0;
    align-items: flex-start;
    justify-content: flex-start;
    
    gap: 4px;
}
.footer-column > nav li{
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 0px;
    
}

.footer-column > ul li{
    padding: 0px;
    margin: 0px;
}
.footer-column > nav a, .footer-column > a {
    font-size: 16px;
}

.footer-column > nav h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.footer-column > ul h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.footer-privacy{
    
    min-height: 20px;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    padding-top: 10px;
    padding-bottom: 10px;
    
}

.footer-privacy > h4{
    font-size: 16px;
}

.footer-privacy > p{
    font-size: 14px;
    color: rgba(197, 197, 197, 0.829);
}

.footer-border{
    width: 100vw;
    height: .5px;
    background-image: var(--borderColor);
   
}

.footer-border.privacy{
    
    background-image: var(--borderColorPrivacy);
}

.animation-bar{
    width: 100%;
    height: 2px;
    background-image: var(--btnGradient);
    background-size: 300%;
    background-position: left;
    opacity:0;
    transition: background-position 2s ease, opacity 0.3s ease;
}

a:hover + .animation-bar{
    background-position: right;
    opacity: 100%;
   
}

/* Media Queries */

@media(max-width:768px){
    /*Nav*/
    .hamburger{
        display: flex;
        
    }
    .hamburger.active{
        justify-content: center;
       
       
    }
    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1){
        transform: translateY(4px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3){
        transform: translateY(-4px) rotate(-45deg);
    }
    

    header {
        justify-content: left;
        height: 0px;
        
    }

    .header-opened{
        height: 100vh;
        width: 100vw;
        justify-content: left;
       
       
    }

    nav{
        
        justify-content: right;
        align-items: right;
        gap: 10px;
        flex-direction: column-reverse;
        width: 100%;
        margin-right: 20px;
        margin-top: 20px;
    }

    

    .logo{
        display: none;
    }
    .navLinks{
    flex-direction: column;
   }

   #navDesktop{
    flex-direction: column;
    
    margin-top:100px;
    width: auto;
    padding: 10px;
   
   }

   .navDesktopClosed{
    
    opacity: 0%;
    -webkit-transition: opacity .4s ease ;
    transition: opacity 0.4s ease ;
   }

   .navDesktopOpened{
   
    opacity: 100%;
   }

   .main-button{
    margin-top: 20px;
    font-size: 18px;
   }

   .hero-section{
    min-height: 60vh;
   }

   canvas{
    max-height:60vh;
   }

   .hero-content-wrapper{
    padding-top:60px;
    }

    .button-wrapper{
        margin-top: 20px;
    }

    .mockup:nth-child(1),
    .mockup:nth-child(3){
        display:none;
    }

    .tall-card{
        margin-bottom: 40px;
        padding: 10px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .card-p{
        font-size: 18px;
        
    }

    .card:nth-child(1) {
   
        position: sticky;
        top: 60px;
      }
      .card:nth-child(2) {
        position: sticky;
        top: 110px;
        
      }
      .card:nth-child(3) {
        position: sticky;
        top: 160px;
       
      }
      .card:nth-child(4) {
        position: sticky;
        top: 210px;
       
      }
    
      .card:nth-child(5) {
        position: sticky;
        top: 260px;
       
       
      }
    
      .card:nth-child(6) {
        position: sticky;
        top: 310px;
       
       
      }

    .card-content{
        flex-direction: column;
    }

    .card-p{
        max-width: 98%;
        margin-top: 20px;
    }

    .card-img{
        max-width: 60%;
        
    }

    .card{
        min-height: 300px;
        
    }
}


/*Media Queries Smoll*/
@media(max-width:500px){
    h1{
        font-size: clamp(30px, 12vw, 60px);
        margin-bottom: 20px;
    }

    .hero-content-wrapper{
        padding-top:70px;
    }

    .hero-subheadline.skills{
        font-size:clamp(16px, 5vw, 20px);
        margin-bottom: 16px;
    }

    .hero-subheadline{
        font-size:clamp(24px, 7vw, 32px);
    }

    .button-wrapper{
        margin-top: 10px;
    }

    .mockup{
        width: 250px;
        height: 510px;
    }

    h3{
        font-size: 22px;
    }

    .flex-row{
        margin-bottom: 0px;
    }
}