@import url(https://fonts.googleapis.com/css?family=Lato:100,300,400);

#contact-section input::-webkit-input-placeholder,#contact-section textarea::-webkit-input-placeholder {
  color: #aca49c;
  font-size: 0.875em;
}

#contact-section input:focus::-webkit-input-placeholder,#contact-section textarea:focus::-webkit-input-placeholder {
  color: #bbb5af;
}

#contact-section input::-moz-placeholder,#contact-section textarea::-moz-placeholder {
  color: #aca49c;
  font-size: 0.875em;
}

#contact-section input:focus::-moz-placeholder,#contact-section textarea:focus::-moz-placeholder {
  color: #bbb5af;
}

#contact-section input::placeholder,#contact-section textarea::placeholder {
  color: #aca49c;
  font-size: 0.875em;
}

#contact-section input:focus::placeholder,#contact-section textarea::focus:placeholder {
  color: #bbb5af;
}

#contact-section input::-ms-placeholder,#contact-section textarea::-ms-placeholder {
  color: #aca49c;
  font-size: 0.875em;
}

#contact-section input:focus::-ms-placeholder,#contact-section textarea:focus::-ms-placeholder {
  color: #bbb5af;
}

/* on hover placeholder */

#contact-section input:hover::-webkit-input-placeholder,#contact-section textarea:hover::-webkit-input-placeholder {
  color: #000;
  font-size: 0.875em;
}

#contact-section input:hover:focus::-webkit-input-placeholder,#contact-section textarea:hover:focus::-webkit-input-placeholder {
  color: #cbc6c1;
}

#contact-section input:hover::-moz-placeholder,#contact-section textarea:hover::-moz-placeholder {
  color: #000;
  font-size: 0.875em;
}

#contact-section input:hover:focus::-moz-placeholder,#contact-section textarea:hover:focus::-moz-placeholder {
  color: #cbc6c1;
}

#contact-section input:hover::placeholder,#contact-section textarea:hover::placeholder {
  color: #000;
  font-size: 0.875em;
}

#contact-section input:hover:focus::placeholder,#contact-section textarea:hover:focus::placeholder {
  color: #cbc6c1;
}

#contact-section input:hover::placeholder,#contact-section textarea:hover::placeholder {
  color: #000;
  font-size: 0.875em;
}

#contact-section input:hover:focus::-ms-placeholder,#contact-section textarea:hover::focus:-ms-placeholder {
  color: #cbc6c1;
}

#contact-section #form {
  position: relative;
  /*width: 500px;*/
  margin: 50px auto 100px auto;
}

#contact-section input {
  font-family: 'Lato', sans-serif;
  font-size: 0.875em;
  width: 100%;
  height: 50px;
  padding: 0px 15px 0px 15px;
  
  background: transparent;
  outline: none;
  color: #726659;
  
  border: solid 1px #b3aca7;
  border-bottom: none;

  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

#contact-section input:hover {
  background: #e2dedb;
  color: #000000;
}

#contact-section textarea {
  width: 100%;
  height: 110px;
  padding: 15px;
  
  background: transparent;
  outline: none;
  
  color: #726659;
  font-family: 'Lato', sans-serif;
  font-size: 0.875em;
  
  border: solid 1px #b3aca7;
  
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

#contact-section textarea:hover {
  background: #e2dedb;
  color: #000;
}

#contact-section #submitContactUs {
  width: 100%;
  
  padding: 0;
  margin: -5px 0px 0px 0px;
  
  font-family: 'Lato', sans-serif;
  font-size: 0.875em;
  color: #e2dedb;
  
  outline:none;
  cursor: pointer;
  
  border: solid 1px #b3aca7;
  border-top: none;
}

#contact-section #submitContactUs:hover {
  color: #000;
}