/* Contact Form variables
========================================================*/
/* Contact Form Basic Styles 
========================================================*/
#contact-form {
  position: relative;
  margin: 23px 0 7px 0;
}
#contact-form label {
  position: relative;
  display: inline-block;
  width: 100%;
  
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  box-shadow: none;
  
}
.text_form{font: 400 14px/18px "Open Sans", sans-serif;}
#contact-form label.message {
  width: 100%;
  height: 203px;
  margin-bottom:20px;
}
.margin-top1{ margin:15px 0 5px;}
@media (max-width: 1199px) {
  #contact-form label {
    width: 100%;
  }
}
#contact-form fieldset {
  border: none;
}
/* Contact Form Placeholder Styles 
========================================================*/
#contact-form ._placeholder {
  width: 100% !important;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  font: 400 13px/22px "Arial", sans-serif;
  color: #757570;
  padding: 6px 13px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0;
  cursor: text;
}
#contact-form ._placeholder.focused {
  opacity: 0.4;
  filter: alpha(opacity=40);
  -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 255, 0.5);
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 255, 0.5);
}
#contact-form ._placeholder.hidden {
  display: none;
}
#contact-form .file ._placeholder {
  display: none;
}
/* Contact Form Input 
========================================================*/
#contact-form input[type='text'] {
  width: 100%;
  font: 400 13px/22px "Arial", sans-serif;
  color: #757570;
  background: #fcfcf9;
  padding: 6px 13px;
  outline: none;
  height: 100%;
  border: 1px solid #d8d8cf;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  box-shadow: none;
  margin: 0;
  -webkit-appearance: none;
}
/* Contact Form Textarea 
========================================================*/
#contact-form textarea {
  width: 100%;
  font: 400 13px/22px "Arial", sans-serif;
  color: #757570;
  background: #fcfcf9;
  padding: 6px 13px;
  outline: none;
  border: 1px solid #d8d8cf;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  box-shadow: none;
  resize: none;
  height: 100%;
  -webkit-appearance: none;
}
#contact-form .message .empty-message,
#contact-form .message .error-message {
  right: 20px;
}
/* Contact Form Error messages
========================================================*/
#contact-form .empty-message,
#contact-form .error-message {
  position: absolute;
  right: 4px;
  top: 4px;
  color: red;
  height: 0;
  overflow: hidden;
  font-size: 11px;
  line-height: 12px;
  -webkit-transition: 0.3s ease-in height;
  transition: 0.3s ease-in height;
  z-index: 99;
}
#contact-form .invalid .error-message,
#contact-form .empty .empty-message {
  height: 20px;
}
/* Contact Form Buttons
========================================================*/
.contact-form-buttons {
  text-align: left;
  margin: 7px 0 0 0;
}
/* Contact Form Modal 
========================================================*/
#contact-form button{
    border-radius: 20px;
    background-color:  #ed1f24;
    color: #ffffff;
    font-weight: bold;
    padding: 5px 15px;
    border: 0;
    margin-top: 10px;
	text-transform:uppercase;
}

#contact-form button:hover{
    background-color:  #616267;
}