header{
    position:static; 
} 
h1{
    margin: 0;
}
main{
    padding: 0 !important;
} 
form button{
    background-color: black;
    color: white;
    font-family: 'Articulat-Regular';
    font-size: 20px;
    width: fit-content;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 100px;
    cursor: pointer;
}
section{
        height: 100vh;
    align-items: center;
    display: flex;
    justify-content: center;
}
.container-form{
    align-items: start;
    display: flex;  
    margin-top: 1rem;
}

.container-form > div{
    width: 50%;
} 

.headline-form img{
margin-top: 3rem;
    width: 70%;
}
.contact-info{
    margin-top: 2rem;
    width: fit-content;
    font-family: 'Articulat-Regular';
}
.contact-info a{
    width: fit-content;
}

form label{
    font-family: 'Articulat-Regular';
    font-size: 20px;
}
form input, form select, form textarea{
    border: 1px solid black;
    border-radius: 10px; 
    padding: 5px 10px;
    font-size: 18px;
    margin: 0.5rem 0 1rem;
}
footer, .btn-orcamento{
    display: none !important;
}
.headline-form p{
    margin-right: 5%;
}  
.container-thankyou{
    margin: 0 auto;
margin-top: 10rem;
}   
.container-thankyou img{
 width: 500px;
}

 
.container-form{
    justify-content: end;
    width: 100%;
}

form{
    width: 90%;
}
.form-step {
    display: none;
}
.form-step.active {
    display: flex; 
}

.steps-indicator {
    gap: 10px;
    margin-bottom: 20px;
}

.step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold; 
    font-family: 'Articulat-Regular';
}
.step-circle.active {
    background: black;
    color: #fff;
}


/* checkbox */ 
 
.bw-checkbox {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  cursor: pointer;
  user-select: none;
  color: #000;
  font-family: inherit;
}
.label-text{
    font-family: 'Articulat-Light';
}
.bw-checkbox input { 
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.bw-checkbox .box{
  width: 20px;
  height: 20px;
  border: 2px solid #000;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background .12s ease, border-color .12s ease;
  box-sizing: border-box;
}
.bw-checkbox .check{
  width: 12px;
  height: 12px;
  opacity: 0;
  transition: opacity .12s ease;
}
.bw-checkbox input:checked + .box{
  background: #000;
  border-color: #000;
}
.bw-checkbox input:checked + .box .check{
  opacity: 1;
}
.bw-checkbox input:focus + .box{
  outline: 3px solid rgba(0,0,0,0.12);
  outline-offset: 2px;
} 

.container-checkbox{
    margin: 1rem 0 3rem;
}

@media screen  and (max-width:1000px) {
    .container-thankyou{
        flex-direction: column;
    }

    .container-thankyou img{
    width: 80%;
    margin-top: 4rem;
    }
}

@media screen  and (min-width:1700px) {

    p, a{
        font-size: 20px;
    }
}

@media screen  and (min-width:480px)  and  (max-width:768px) {
.section-width{
    max-width: 450px;
}
}
@media screen  and (max-width:768px) {
    .section-width{
        margin-bottom: 4rem;
    }
    .headline-form img{
        width: 100%;
    }
    .headline-form{ 
        margin-bottom: 3rem;
    }
    .container-form > div{
        width:100%;
    }
    .container-form{
        flex-direction: column !important;
    }
    form{
        width: 100%;
    }
}
