*{
	padding: 0;
	margin: 0 ;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@600&display=swap');



@font-face { font-family: Inter; src: url('Inter/Inter-VariableFont_slnt,wght.ttf'); } 


body{
    overflow-x: hidden; 
}






#header_nav{
    position: relative;
}
#header_nav_m{
    display: none;
   }

@media (max-width: 1067px) {
   #header_nav{
    display: none;
   }
   #header_nav_m{
    display: block;
   }
  }


.headline1{
    position: relative;
    margin-top:100px;
    font-family: 'Inter';
}

.anfrage-box{
    position: relative;
    width: 90%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    border:1px solid rgb(201, 201, 201);
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    margin-top: 2vh;
}

#anfrage_box_seite_1{
    position: relative;
    width: 100%;
    height: 100%;
    display:block;
}
#anfrage_box_seite_2{
    position: relative;
    width: 100%;
    height: 100%;
    display:none;
}

#anfrage_box_seite_3{
  position: relative;
  width: 100%;
  height: 100%;
  display:none;
}

#anfrage_box_seite_4{
  position: relative;
  width: 100%;
  height: 100%;
  display:none;
}

#anfrage_box_seite_5{
  position: relative;
  width: 100%;
  height: 100%;
  display:none;
}

#anfrage_box_seite_6{
  position: relative;
  width: 100%;
  height: 100%;
  display:none;
}

#anfrage_box_seite_7{
  position: relative;
  width: 100%;
  height: 100%;
  display:none;
}

#anfrage_box_seite_8{
  position: relative;
  width: 100%;
  height: 100%;
  display:none;
}


#anfrage_box_seite_9{
  position: relative;
  width: 100%;
  height: 100%;
  display:none;
}


#anfrage_box_seite_10{
  position: relative;
  width: 100%;
  height: 100%;
  display:none;
}


.anfrage-headline{
    position: relative;
    font-family: "Inter";
    font-size: 1.3em;
    margin-top:1.5em;
    text-align: center;
}







.main-cards{
    width: 100%;
    margin:0px auto;
    background: #fff;
  }
  
  .cards {
    width: 90%;
    padding-top: 25px;
    padding-bottom: 5px;
    display: grid;
    grid-gap: 0rem;
    position: relative;
    margin:0.5em auto;
    justify-items: center;
  }
  
  .card {
    background-color: #fff;
    color: white;
    height: auto;
    padding-bottom: 20px;
  }
  
  .card-img{
    position: relative;
    width: 100%;
    max-width: 100px;
    height: auto;
    background-color: #fff;
    margin-top:0px;
  }
  .card-headline{
    position: relative;
    font-size: 1em;
    font-weight: bold;
    margin-top:5px;
    padding-left: 7px;
    padding-right: 7px;
    padding-bottom: 7px;
    text-align: center;
    color:#000;
    font-family: Arial, Helvetica, sans-serif;
  }

   /* Screen larger than 600px? 2 column */
   @media (min-width: 0px) {
    .cards { grid-template-columns: repeat(2, 1fr); }
    .cards {
        width: 80%;
        max-width: 500px;
      }
    .card {
      }
  }
  
  
  /* Screen larger than 900px? 3 columns */
  @media (min-width: 700px) {
    .cards { grid-template-columns: repeat(4, 1fr); }
    .card {
      }
  }
  
  

/* HIDE RADIO */
[type=radio] { 
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* IMAGE STYLES */
  [type=radio] + img {
    cursor: pointer;
  }

  /* CHECKED STYLES */
  [type=radio]:hover + img {
    outline: 2px solid #0386d1;
  }
  
  /* CHECKED STYLES */
  [type=radio]:checked + img {
    outline: 2px solid #0386d1;
  }






  .form-container {
    max-width: 500px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 2fr 30px;
    gap: 10px;
    align-items: center;
    margin-top: 2em;
  }

  .form-container-label{
    position: relative;
    font-family: "Inter";
  }

  select, input[type="number"] {
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
  }

  .unit {
    text-align: left;
    padding-left: 5px;
    font-family: "Inter";
  }

  @media (max-width: 600px) {
    .form-container {
      grid-template-columns: 1fr;
      width: 90%;
    }

    .unit {
      padding-top: 0;
      display: none;
    }
  }

















  
  .div-button{
    position: relative;
    width: 100%;
    max-width: 400px;
    margin:2em auto;
    display: flex;
    justify-content: center; /* zentriert horizontal */
  align-items: center;     /* optional, für vertikale Zentrierung */
  gap: 2vh;
  }


 .div-button-back{
    position: relative;
    font-family: "Inter";
    font-size:17px;
    font-weight: 500;
    text-align: center;
    background-color: #c5c5c5;
    width: 100%;
    height: 40px;
    border:none;
    color: #252525;
    transition: 0.5s;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 10px;
  }
  .div-button-back:hover{
    background-color: #aaaaaa;
    cursor: pointer;
  }

  .div-button-weiter{
    position: relative;
    font-family: "Inter";
    font-size:17px;
    font-weight: 500;
    text-align: center;
    background-color: #002d86;
    color:#fff;
    width: 100%;
    height: 40px;
    border:none;
    transition: 0.5s;
    border-radius:10px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .div-button-weiter:hover{
    background-color: #0141c1;
    cursor: pointer;
  }

.mehr-Ausstattung-box{
  width:90%;
  display:flex;
  margin-left:10%;
}





  .form-container-mehr {
    max-width: 500px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 2fr 30px;
    gap: 10px;
    align-items: center;
    margin-top: 2em;
  }

  

  @media (max-width: 600px) {
    .mehr-Ausstattung-box {
      width:90%;
      display:block;
      margin-left:5%;
    }

    .form-container-mehr {
    max-width: 500px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 2fr 30px;
    gap: 10px;
    align-items: center;
    margin-top: 2em;
  }
  }




  .form-container-head {
    max-width: 500px;
    margin: auto;
    font-size: 1em;
    font-weight: 700;
    margin-top:4vh;
    font-family: "Inter";
  }


  .text-area{
    position: relative;
    padding-top:1vh;
    padding-bottom:1vh;
    font-family: "Inter";
    font-size: 0.9em;
    resize: none;
    width: 100%;
    padding-left: 1vh;
    padding-right: 1vh;
  }



  .anchor-link-box-a{
    position: relative;
    font-family: "Inter";
    color:#d10303;
    transition: 0.5s;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
  }
  .anchor-link-box-a:hover{
    color:#043ba8;
    font-weight: bold
  }




  



.checkbox-edit {
  transform: scale(1.5);
}





.fortschritt-bar{
  position: relative;
  width: 90%;
  border:1px solid #b8b8b8;
  height: 10px;
  margin:0 auto;
  max-width: 700px;
  border-radius: 5px;
  display: flex;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}


#fortschritt_bar_1{
  position: relative;
  display: block;
  width: 10%;
  height: 10px;
  background-color: #0141c1;
}
#fortschritt_bar_2{
  position: relative;
  display: none;
  width: 10%;
  height: 10px;
  background-color: #0141c1;
}
#fortschritt_bar_3{
  position: relative;
  display: none;
  width: 10%;
  height: 10px;
  background-color: #0141c1;
}
#fortschritt_bar_4{
  position: relative;
  display: none;
  width: 10%;
  height: 10px;
  background-color: #0141c1;
}
#fortschritt_bar_5{
  position: relative;
  display: none;
  width: 10%;
  height: 10px;
  background-color: #0141c1;
}
#fortschritt_bar_6{
  position: relative;
  display: none;
  width: 10%;
  height: 10px;
  background-color: #0141c1;
}
#fortschritt_bar_7{
  position: relative;
  display: none;
  width: 10%;
  height: 10px;
  background-color: #0141c1;
}
#fortschritt_bar_8{
  position: relative;
  display: none;
  width: 10%;
  height: 10px;
  background-color: #0141c1;
}
#fortschritt_bar_9{
  position: relative;
  display: none;
  width: 10%;
  height: 10px;
  background-color: #0141c1;
}
#fortschritt_bar_10{
  position: relative;
  display: none;
  width: 10%;
  height: 10px;
  background-color: #0141c1;
}


.btn-input-choose{
  position: relative;
  padding-top:1vh;
  padding:1vh;
  padding:1vh;
  padding:1vh;
  color:#fff;
  background:#000;
  border:none;
  border-radius:5px;
  cursor:pointer;
  margin:0 auto;
}