

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .gform {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
  padding: 30px;
}
.contact .gform .error-message {
  display: none;
  color: #fff;
  background: #EE4666;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .gform .error-message br + br {
  margin-top: 25px;
}
.contact .gform .sent-message {
  display: none;
  color: #fff;
  background: #EE4666;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .gform .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .gform .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #EE4666;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .gform .form-group {
  margin-bottom: 20px;
}
.contact .gform input, .contact .gform textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
.contact .gform input:focus, .contact .gform textarea:focus {
  border-color: #106eea;
}
.contact .gform input {
  padding: 10px 15px;
}
.contact .gform textarea {
  padding: 12px 15px;
}
.contact .gform button[type=submit] {
  background: #4F4F4F;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .gform button[type=submit]:hover {
  background: #EE4666;
  color: #4F4F4F;
}