.contact {
  max-width: 650px;
  min-width: 220px;
  margin: 0 auto;
}
.contact * {
  outline: none;
  border: 0;
  background: none;
}
form fieldset {
  display: block;
  padding: 5px 0px 20px 0px;
}
form .row {
  margin: 0 -15px;
}
form .col-2 {
  width: 50%;
}
form .col {
  float: left;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
form .row:after {
  content: '';
  display: table;
  clear: both;
}
 form section {
  margin-bottom: 10px;
}
form .input, form .textarea, form .radio, form .checkbox, form .button {
  position: relative;
  display: block;
}
form .fa-append {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 29px;
  height: 29px;
  padding-left: 3px;
  border-left: 1px solid rgba(0,0,0,0.2);
  font-size: 15px;
  line-height: 29px;
  text-align: center;
  color: #F8CCBA;
}
.fa {
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fa-user:before {
  content: "\f007";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-comment:before {
  content: "\f075";
}
form .input .fa-append + input, form .textarea .fa-append + textarea {
  padding-right: 46px;
}
form .input input, form .textarea textarea {
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  width: 100%;
  height: 39px;
  padding: 8px 10px;
  outline: none;
  border: 2px solid rgba(0,0,0,0.2);
  border-radius: 0;
  background: #fff;
  font: 13px/19px Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #000;
  appearance: normal;
  -moz-appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.3s;
  -o-transition: border-color 0.3s;
  -ms-transition: border-color 0.3s;
  -moz-transition: border-color 0.3s;
  -webkit-transition: border-color 0.3s;
   letter-spacing:0.6px;
}
form .textarea textarea {
  height: auto;
  resize: none;
  overflow:auto;
}
form .input:hover input,
form .textarea:hover textarea,
form .checkbox:hover i {
   border-color: #87d0ef;
}
form .input input:focus,
form .textarea textarea:focus,
form .checkbox input:focus + i {
	border-color: #009bdf;
}
form .button {
  float: right;
  height: 39px;
  overflow: hidden;
  margin-left: 22px;
  padding: 0 20px;
  outline: none;
border: 0.1px solid; 
	border-color: #0090d7;
	background:-webkit-linear-gradient(to top left, rgb(142, 201, 227), rgba(98,183,220,1));
	background:-moz-linear-gradient(to top left, rgb(142, 201, 227), rgba(98,183,220,1));
	background:-o-linear-gradient(to top left, rgb(142, 201, 227), rgba(98,183,220,1));
	background: linear-gradient(to top left, rgb(142, 201, 227), rgba(98,183,220,1));
  font: 300 15px/39px 'Open Sans', Helvetica, Arial, sans-serif;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
	-webkit-transition: background 2s;
	-moz-transition: background 2s;
	-o-transition: background 2s;	
	transition: background 2s;
}
form .button:hover {
background: #C40000;
}
@media screen and (max-width: 470px){
	.col, .col-2 { float: none !important; width: 100% !important;}
}
