*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'poppins';
}
nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 10px;
  padding-inline: 5%;
  background-color: white;
}
.header{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.logo img{
  width: 40px;
}
.navButton{
  display: flex;
  gap: 20px;
}
.webName{
  text-decoration: none;
  color: rgb(57, 55, 55);
}
.articleButtons{
  box-shadow: 0px 2px 7px 0px rgba(28, 75, 128, 0.5); 
  background-color: #64bcf4;
  padding: 7px 20px;
  /* border: 1px solid black; */
  border-radius: 7px;
  text-decoration: none;
  font-size: 1.1rem;
  color: rgb(0, 0, 0);
  font-weight: 500;
}
.fill-container{
  padding-top: 3%;
  padding-bottom: 3%;
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 93vh;
  height: auto;
  background-color: #b6def7;
}
.info-box{
  display: flex;
  gap: 50px;
  flex-direction: column;
  justify-content: center;
}
.contact-form{
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 800px;
}
.companyUser{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.companyUser .form-box{
  width: 48%;
}
.form-headline{
  text-align: center;
}
.form-box{
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#description{
  height: 500px;
}
.submit{
  box-shadow: 0px 2px 7px 0px rgba(28, 75, 128, 0.5); 
  background-color: #72c0f0;
  padding: 7px 60px;
  /* border: 1px solid black; */
  border-radius: 7px;
  text-decoration: none;
  font-size: 1.1rem;
  color: rgb(0, 0, 0);
  font-weight: 500;
  border: none;
}
.form-box input{
  font-size: 1rem;
  padding: 10px;
  border-radius: 10px;
  border: none;
}
.form-box1{
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media screen and (max-width: 890px) {
  .lottie{
      display: none;
  }
  .completeContainer{
      justify-content: space-between;
  }
  .companyUser{
    flex-direction: column;
    gap: 40px;
  }
  .companyUser .form-box{
    width: 100%;
  }
  .contact-form{
    width: 500px;
  }
}
@media screen and (max-width: 750px) {
  .lottie{
      display: none;
  }
  .completeContainer{
      flex-direction: column;
      align-items: center;
      justify-content:center;
  }
  .companies{
      height: 30%;
  }
  nav{
      flex-direction: column;
      align-items: center;
      justify-content: center;
  }
}
@media screen and (max-width: 580px) {
  .contact-form{
    width: 450px;
  }
}
@media screen and (max-width: 490px) {
  .contact-form{
    width: 400px;
  }
}
@media screen and (max-width: 430px) {
  .contact-form{
    width: 360px;
  }
}