*{
  font-family: Arial, Helvetica, sans-serif;
  padding: 0;
  margin: 0;
}
.contacts{
  width:100%;
  background-color:rgb(240, 239, 239);
}

h2{
  font-weight: 700;
  text-align: center;
  margin-bottom:25px;
}
.contact{
  width:95%;
  margin:10px;
  padding:10px;
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.discriptionss{
  width:25%;
}
.discriptionss p{
  line-height:22px;
}
.forms{
width:65%;
align-items: center;

}
.form{
width: 100%;
margin-bottom: 20px;
}
.form label{ 
  display: block;
}
.form input , .form textarea{ 
  width: 50%;
  border:none;
  border-bottom:1px solid rgb(67, 61, 61);
  height:50px;
}
.form input:hover ,.form textarea:hover{ 
  border-bottom:2px solid black;
}

.submit{
  margin-left: 50px;
  padding:15px 25px;
  background-color:yellow;
  border-radius: 10px;
}

@media(max-width:768px){

  .contact ,.contact .discriptionss,.contact .forms{
    width:100%
  }
  .infoss{
    margin-bottom: 10px;
  }
  .forms{
    margin-top: 20px;
  }
  .btns{
padding:7px;
  }
}