@media all and (min-width: 900px) {
  body .ade-form .ade-form__fields .field  {
    width: calc(100% / 2 - 30px);
  }
}
@media all and (max-width: 900px) and (min-width: 760px) {
  body .ade-form .ade-form__fields .field {
    width: calc(100% / 2 - 30px);
  }
}
@media all and (max-width: 760px) {
  body .ade-form .ade-form__fields .field {
    width: 100%;
    margin-left: 0 !important;
  }
}

.ade-form .ade-form__fields .field.form-textarea{
  width : 100%;
  margin-left: 0!important;
}

.ade-form .field.form-textarea textarea {
  padding: 15px;
  width: 100%;
  font-size: 14px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  background: none;
  border: 1px solid #d72e89;
  border-radius: 4px;
  font-family: inherit;
  resize: vertical;
  min-height: 10em;
}