/* CONTACT */
#contactseg{
  border: 1px solid red;
  padding: 50px 100px;
}
#contactseg h2{
  text-align: center;
  font-size: 2rem;
  color:#FF781F ;
}
#contactblock{
  /* border: 1px solid red; */
  display: flex;
  justify-content: space-between;
}
#infoblock{
  /* border: 1px solid navy; */
  width: 600px;
}
#msgblock{
  /* border: solid 1px navy; */
  width: 600px;
}
#infoblock .blocks{
  border-bottom: 1px solid gray;
  padding: 30px 0 20px;
}
#infoblock .iconhouses, .texthouses{
  text-align: center;
  color: black;
}
#infoblock .iconhouses{
  font-size: 3rem;
  color: #192A56;
}

#msgblock header{
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 40px;
}

#inputhouse{
  display: flex;
  flex-direction: column;
}
#inputhouse .inputblocks{
  width: 100%;
  margin-bottom: 20px;
}
#inputhouse .inputblocks input,
#inputhouse .inputblocks textarea,
#inputhouse button{
  font-size: 1.1rem;
  width: 100%;
  padding: 15px;
}
#inputhouse .inputblocks textarea{
  height: 100px;
}
#inputhouse .inputblocks textarea:focus{
  outline: #FFF8F4;
  background-color: #FFF8F4;
}

#inputhouse button{
  border: 0;
  color: white;
  background-color: #FF781F;
  cursor: pointer;
}
#inputhouse button:hover{
  background-color: #FFC9A5;
  color: black;
}