#message-form form {
    text-align: center;
}
#message-form input , #message-form select{
    width: 100%;
    padding: 15px 30px 16px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    line-height: 24px;
    color: #575d6e;
    background-color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    position: relative;
    margin-bottom: 20px;
}
#message-form textarea {
    width: 100%;
    padding: 15px 30px 16px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    line-height: 24px;
    color: #575d6e;
    font-family: 'Open Sans', sans-serif;
    position: relative;
    margin-bottom: 30px;
    height: 117px;
}
#message-form .submit {
    font-size: 18px;
    line-height: 14px;
    font-weight: 600;
    color: #ffffff;
    background: #6d1772;
    padding: 25px 51px;
    text-transform: capitalize;
    margin-bottom: 0;
    border-radius: 10px !important; 
    width: auto;
    margin: 0 auto;
    display: inline-block;

}
#message-form .submit:hover {
    background: #071a29;
    color: #fff;
}
#message-form .name, #message-form .phone {
    width: 49%;
    float: left;
    margin-right: 1%;
}
#message-form .email, #message-form .list-dropdown {
    width: 49%;
    float: left;
    margin-left: 1%;
}
#message-form .wpcf7 form>div, .wpcf7 form>p {
    margin-bottom: 0px;
}

#message-form .ajax-loader {
    display: none;
}
div#message-form {
    margin-bottom: 0;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #575d6e;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #575d6e;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #575d6e;
}

@media screen and (max-width: 1024px) {
  #message-form .submit {
      width: auto;
  }
}


@media screen and (max-width: 768px) {
  #message-form input, #message-form select {
 
      font-size: 14px;
      line-height: 16px;
      padding: 20px 20px;
      margin-bottom: 15px;
  }
  #message-form textarea {
      padding: 14px 20px 12px 20px;
      height: 120px;
      margin-bottom: 20px;
      font-size: 14px;
  }
  #message-form .submit {
    font-size: 16px;
    width: auto;
    padding: 18px 40px;
}
}

@media screen and (max-width: 425px) {
#message-form .name, #message-form .phone {
    width: 100%;
    float: none;
    margin-right: 0;
}
#message-form .email, #message-form .list-dropdown {
    width: 100%;
    float: none;
    margin-left: 0;
}
#message-form input,
#message-form select{
    padding: 16px 20px;
}
#message-form textarea {
    padding: 16px 20px;
}
#message-form .submit {
    padding: 16px 30px;
     font-size: 14px !important;
     width: 100%;
}
}



