:root{
    --buttons: #3882F6;
    --white: #F9FAF8;/*#FBF8F1*/
    --bgc: #1F2937;/*#19A7CE*/
    --darker-white: #cdcdcd;
    --yellow: #ffd233;
    --green: #88b729;
    --light-blue: #499cc6;
    --dark-blue: #125980;
    --gray: #33363c;
  }

  *{
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }

  body {
    background-color: var(--white);
  }

  .header{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: transparent;
    display: flex;
    justify-content:center;
    font-size: 1.25rem;
    align-items: center;
    z-index: 99;
    transition: all 0.4s ease;
    line-height: 1.5rem;
    font-weight: 600;
    height: auto;
    gap: 50px;
  }

  .header a{
    text-decoration: none;
    color: var(--dark-blue);
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 100px;
  }
  
  .header img{
    transition: all 4 ease;
  }

  .header ul{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
    background-color: var(--white);
    border-radius: 0.875rem;
    padding: 0.85rem 1.2rem;
  }

  .header ul a:hover, .header ul a:focus{
    border-bottom: var(--dark-blue) solid 2px;
    border-radius: 0;
  }

  .header .angebot button{
    border: 2px solid var(--white); 
    border-radius: 0.875rem;
    border-color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--white);
    padding: 1rem 1.5rem;
    line-height: 1.5;
    white-space: nowrap;
  }
  
  .header .angebot button:hover{
    background-color: var(--dark-blue);
    color: var(--white) !important;
    border-color: var(--dark-blue) !important;
    transition: all 0.2s ease;
    transform: none;
  }
  
  @media screen and (max-width: 500px) {
    .mobile-nav-links {
      padding: 1vw !important;
      min-width: 80vw !important;
    }

    .header .angebot button{
      white-space: wrap;
    }

    .header{
      gap: 0;
    }
  }

  @media screen and (max-width: 200px) {
    #header-logo{
      display: none;
    }
  }

  button{
    touch-action: manipulation;
    transition: all 0.2s;
    text-decoration: none;
    outline: none;
    border-style: none;
    cursor: pointer;
    color: var(--dark-blue);
    font-weight: 500;
    background-color: var(--white);
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 18px;
  }
  
  button:hover{
    transform: translateY(-2px);
    transition: all 0.2s;
  }
  
  .menu-icon {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 36px;
    cursor: pointer;
  }
  
  .mobile-nav-links {
    display: none;
  }
  
  .buttons{
    display: flex;
    align-items: center;
  }
  
  .backdrop{
    display: none;
  }
  
  .hero video{
    object-fit: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
  }
  
  .hero img{
    object-fit: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
  }

  .hero .content{
    display: flex;
    flex-direction: column;
    padding: 10% 5vw 15%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    overflow: hidden;
    align-items: center;
    gap: 2rem;
  }
  
  .hero h1{
    margin-top: 60px;
    max-width: 800px;
    font-weight: 600;
    font-size: 4rem;
    color: var(--white);
    overflow-wrap: break-word;
    font-weight: 100;
    line-height: 1.2;
    text-align: center;
  }
  
  .hero .kontakt{
    display: flex;
    align-items: flex-start;
    font-weight: bold; 
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .hero .kontakt a{
    text-decoration: none;
  }
  
  .hero .kontakt .box{
    display: flex;
    align-items: center;
    padding: 10px 20px;
    min-width: 5vw;
    border-radius: 100px;
    background-color: var(--dark-blue);
    color: var(--white);
    padding-right: 2vw;
    max-width: 320px;
    max-height: 60px;
  }
  
  .hero .kontakt .box i{
    font-size: 40px;
    margin-right: 2vw;
  }
  
  .hero .kontakt .box:hover{
    transform: translateY(-2px);
    transition: all 0.3s;
  }
  
  @media screen and (max-width: 920px){
    .hero .kontakt .whatsapp,
    .hero .kontakt .tel{
      margin-right: 100px;
    }
  }
  
  @media screen and (max-width: 450px){
    .hero .kontakt .whatsapp,
    .hero .kontakt .tel{
      margin-right: 0;
    }
    
  }
  
  @media screen and (max-width: 640px) {
    .hero h1{
      font-size: 10vw;
    }
    
  }

  #uber-uns{
    padding-top: 100px;
    display: flex;
    background: var(--white);
    align-items: center;
  }
  
  #uber-uns .image{
    overflow: hidden;
    width: 50vw;
    height: 90vh;
  }
  
  #uber-uns img{
    height: 90vh;
    width: 100%;
  }
  
  #uber-uns .text{
    margin: auto;
    text-align: center;
    overflow-wrap: break-word;
    color: var(--gray);
  }

  #uber-uns .text .brand{
    color: var(--gray);
  }
  
  #uber-uns .text h1,
  #uber-uns .text h2,
  #uber-uns .text h3{
    padding: 3vh 6vw 15px 6vw;
    line-height: 3vw;
    font-size: 3vw;
  }
  
  #uber-uns .text p{
    padding: 0 6vw;
    line-height: 1.25;
    font-size: 1.675rem;
    color: var(--light-blue);
  }
  
  @media screen and (max-width: 440px) {
    #uber-uns .text h1,
    #uber-uns .text h2,
    #uber-uns .text h3{
      font-size: 6vw;
      line-height: 6.5vw;
    }

    #uber-uns .text button{
      font-size: 16px;
    }
  
  }

  #uber-uns .text button{
    background-color: var(--dark-blue);
    color:var(--white);
    font-weight: 600;
    border-radius: 0.875rem;
    padding: 15px 10px;
    margin: 0 6vw;
    margin-bottom: 3vh;
  }
  
  #uber-uns .text button:hover{
    transform: translateY(-2px);
  }
  
  @media screen and (max-width: 1240px) {
    #uber-uns .image{
      display: none;
    }
    
    #uber-uns .text{
      width: 100vw;
    }

    #uber-uns .text p{
      font-size: 2vw;
      line-height: 2vw;
    }

  } 
  
  @media screen and (max-width: 650px) {
    #uber-uns .text p{
      font-size: 16px;
      line-height: 20px;
    }

    #uber-uns .text h1,
    #uber-uns .text h2,
    #uber-uns .text h3{
      font-size: 6vw;
      line-height: 6vw;
    }

  }
  
  #uber-uns-boxes{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 100px;
    max-width: 900px;
    margin: 0 auto;
  }
  
  #uber-uns-box{
    border-radius: 8px;
    width: 400px;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 20px 0 rgba(0, 0, 0, 0.2);
    padding: 20px;
    line-height: 50px;
    font-size: 25px;
  }
  
  #dls{
    text-align:center;
    padding-top: 200px;
    background-color: var(--white);
  }
  
  #dls h2{
    font-size: 5vw;
    overflow-wrap: break-word;
    color: var(--dark-blue);
    text-shadow: 0 0 .1px rgba(0, 0, 0, 0.2);
  }
  
  #dls .boxes{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    text-align: center;
    margin-top: 50px;
  }

  #dls img{
    width: 30vw;
    height: 15vw;
    border-radius: 40px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  }
  
  #dls .boxes .box {
    color: var(--dark-blue);
  }

  #dls .boxes h3{
    font-size: 2vw;
    margin: auto;
    margin-bottom: 3vw;
    width: fit-content;
  }
  
  #dls a{
    background-color: var(--bgc);
    color: var(--white);
    border-radius: 100px ;
    font-size: 1.5vw;
    padding: 1.5vw 2.5vw;
    text-decoration: none;
    transition: all 0.2s;
    touch-action: manipulation;
    outline: none;
    border-style: none;
    font-weight: 500;
  }
  
  #dls a:hover{
    box-shadow: #1f293780 0 8px 15px;
    transform: translateY(-2px);
  }
  
  @media screen and (max-width: 500px){
    #dls h2,
    #dls h3{
      font-size: 10vw;
    }
    
  }
  
  .ablauf{
    background-color: var(--white);
    padding-top: 150px;
  }
  
  .ablauf h2{
    font-size: 10vw;
    color: var(--dark-blue);
    text-align: center;
    padding: 5vw 0 2vw 0;
  }
  
  .ablauf .boxes{
    display: flex;
    text-align: center;
    flex-wrap: wrap;
  }
  
  .ablauf .box{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 25%;
    max-width: 25%;
    font-size: larger;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    height: 30vw;
  }
  
  .ablauf .box h6{
    font-size:large;
    font-weight: 300;
    padding: 1vw;
  }
  
  .ablauf .box h3{
    font-size: larger;
  }
  
  .ablauf .box p{
    margin: 1vw;
    font-size: larger;
    min-height: 50%;
  }
  
  .ablauf .boxes .schritt-1{
    background-color: var(--white);
    color: var(--dark-blue);
  }
  .ablauf .boxes .schritt-2{
    background-color: var(--dark-blue);
    color: var(--white);
  }
  .ablauf .boxes .schritt-3{
    background-color: var(--white);
    color: var(--dark-blue);
  }
  .ablauf .boxes .schritt-4{
    background-color: var(--dark-blue);
    color: var(--white);
  }
  
  
  @media screen and (max-width: 1000px) {
    .ablauf {
      padding-top: 15vw;
    }
  
    .ablauf .box{
      font-size: 4vw;
      width: 100%;
      max-width: 100%;
      height: 40vw;
      padding: 2vw .5vw;
    }
  
    .ablauf .box h6{
      font-size: 4vw;
    }
  
  }
  
  #kontakt-feld{
    padding: 15vh 0;
    display:flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    color: var(--dark-blue);
  }
  
  #kontakt-feld p{
    text-align: center;
    margin: 5px 0 10px;
    font-size: larger;
  }
  
  #kontakt-feld .form{
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 20px 25px;  
    line-height: 25px;
    width: 80vw;
    max-width: 500px;
    color: var(--dark-blue);
  }
  
  #kontakt-feld .form textarea,
  #kontakt-feld .form input{
    border-radius: 0.2rem;
    border: none;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    font-size: 16px;
    width: 97.6%;
    padding: 5px;
    outline: none;
    margin-bottom: 25px;
  }
  
  #kontakt-feld .form button{
    background-color: var(--dark-blue);
    color: var(--white);
  }
  
  #kontakt-feld .form button:hover{
    box-shadow: #1f293780 0 8px 15px;
    transform: translateY(-2px);
  }
  
  
  .star{
    color: red;
  }
  
  .about{
    margin-top: 111px;
    display: flex;
  }
  
  .about h2{
    background-color: var(--bgc);
    color: var(--white);
    height: 30vw;
    width: 50vw;
    max-width: 50vw; 
    font-size: 6vw;
    padding: 7vw 3.7vw;
  }
  
  .about p{
    font-size: 25px;
    background-color: var(--white);
    color: var(--bgc);
    width: 50vw;
    max-width: 50vw;
    height: 30vw;
    padding: 7vw;
  }
  
  .about a{
    font-weight: bold;
    color: var(--bgc);
    text-decoration: underline;
  }
  
  .about a:hover{
    text-decoration: none;
    cursor: pointer;
  }

  .container{
    background-color: var(--white);
  }

  .main{
    padding-top: 150px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
    max-width: 40vw;
  }
  
  .main .title{
    text-align: center;
    color: var(--gray);
    font-size: 1.5rem;
  }

  .main p{
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-size: 1.175rem;
    font-weight: 500;
    line-height: 1.5;
    margin-block-start: 1em;
  }

  .datenschutz,
  .agb{
    max-width: 60vw;
  }

  .main .text a{
  	text-decoration: none;
   }

  .datenschutz p,
  .agb p{
    margin-block-start: 0.325rem;
  }

  .main h2{
    margin-top: 40px;
    color: var(--gray);
    font-size: 1.75rem;
  }

  .main h3{
    margin-top: 20px;
    color: var(--gray);
    font-size: 1.325rem;
  }

  @media screen and (max-width: 700px) {
    .main{
      margin: 6vw !important;
      max-width: fit-content;
    }

    .main .title{
      font-size: 1rem;
      hyphens: manual;
    }
  }

  
  @media screen and (max-width: 1500px) {
    .about{
      flex-direction: column;
      background-color: var(--bgc);
    }
  
    .about h2,
    .about
    .about p{
      max-width: 90%;
      height: max-content;
    }
  
    .about h2{
      padding: 3vw 50vw 3vw 7vw;
      width: 40vw;
      font-size: 7vw;
    }
    
    .about h2{
      font-size: 10vw;
    }
  
    .about p{
      width: auto; 
      font-size: 3vw;
    }
  
  }
  @media screen and (max-width: 465px) {
    .about{
      margin-top: 30vw;
    }
  
    .about p{
      font-size: 5vw;
    }
  
  }

  
  .footer{
    background: var(--dark-blue);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    line-height: 30px;
    flex-wrap: wrap;
    font-size: 18px;
    gap: 50px;
    padding: 3vw 10vw;
  }
  
  .footer .heading{
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--darker-white);
  }
  
  .footer a{
    text-decoration: none;
    color: var(--white);
  }
  
  .footer a:hover{
    text-decoration: underline;
  }
  
  .footer .footer-kontakt .tel{
    margin-bottom: 10px;
  }
  
  .footer .footer-weiteres{
    display: flex;
    flex-direction: column;
    
  }
  
  @media screen and (max-width: 1000px) {
    .header{
      padding: 0;
      min-height: 4rem;
      height: 12vw;
      transition: all 0s;
      justify-content: space-between;
      background: var(--white);
    }
  
    .header .first{
      display: flex;
      width: 100vw;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      height: 90px;
      padding: 0
    }
  
    .header .buttons .angebot button{
      display: none;
    }
  
    .header ul{
      display: none;
    }
	
    .header a:hover{
      border-radius: 0;
      /*padding-bottom: 22px;*/
      text-decoration: underline;
      text-underline-offset: 5px;
    }

    .menu-icon{
      display: block;
      color: var(--bgc)
    }
    
    .mobile-nav-links {
      list-style: none;
      display: none;
      line-height: 50px;
      position: fixed;
      top: 0;
      left: 0;
      bottom: 0;
      width: 200px;
      background-color: var(--bgc);
      padding: 31px 40px;
      z-index: 9999;
      max-width: 40vw;
    }
  
    .mobile-nav-links.show {
      display: flex;
      flex-direction: column;
    }
    
    .mobile-nav-links a {
      color: var(--white);
      text-decoration: none;
      margin-bottom: 10px;
    }
    
    .backdrop {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 9998;
    }


    .hero .kontakt .box{
      height: 2rem;
      font-size: 1.25rem;
      font-weight: 500;
    }

    .hero .kontakt .box i{
      font-size: 2.5rem;
    }

    #dls h2,
    #dls h3{
      font-size: 7vw;
    }

    #dls .boxes img{
      width: 90vw;
      height: 45vw;
    }
  
    #dls a{
      font-size: 3vw;
    }

    #dls .boxes .box h2{
      font-size: 5vw;
    }
  
    #dls .boxes .box button{
      font-size: 3vw;
    }
  
    .about{
      margin-top: 140px;
    }
  
    .ser-hero{
      margin-top: 120px;
    }
  
}