/*========================================================
                      Contact Form
=========================================================*/
/* Contact Form Basic Styles
========================================================*/
#contact-form { position: relative; }

#contact-form label {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: block;
  letter-spacing: normal;
  margin: 0 0 8px;
  width: 100%; }

#contact-form label.message {
  max-width: 100%;
  width: 100%;
  margin: 20px 0 25px; }

#contact-form fieldset { border: none; }

/* Contact Form Placeholder Styles
========================================================*/
#contact-form ._placeholder {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font: 300 14px "Open Sans", sans-serif;
  line-height: 24px;
  padding: 14.5px 30px 14.5px;
  color: #383838;
  width: 100% !important;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  border-radius: 0;
  cursor: text; }

#contact-form ._placeholder.focused {
  opacity: 0.4; }
  .lt-ie9 #contact-form ._placeholder.focused {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0.4)";
    filter: alpha(opacity=40); }

#contact-form ._placeholder.hidden,
#contact-form .file ._placeholder {
  display: none; }

/* Contact Form Input
========================================================*/
#contact-form input[type='text'],#contact-form input[type='email'] {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font: 300 14px "Open Sans", sans-serif;
  line-height: 24px;
  padding: 14.5px 30px 14.5px;
  color: #383838;
  background-color: #ededed;
  border: none;
  width: 100%;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  height: 53px;
  margin: 0; }

/* Contact Form Buttons
========================================================*/
#contact-form .btn-wr {
  text-align: center; }
  #contact-form .btn-wr input {
    font: 400 14px/24px "Open Sans", sans-serif;
    color: #fff;
    text-transform: uppercase;
    background: #00bce4;
    display: inline-block;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    padding: 10px 27px;
    -moz-transition: 0.6s ease all;
    -o-transition: 0.6s ease all;
    -webkit-transition: 0.6s ease all;
    transition: 0.6s ease all;
    margin-top: 8px; }
    #contact-form .btn-wr input:hover {
      color: #fff;
      background: #2d2d2d;
      -webkit-border-radius: 2px;
      -moz-border-radius: 2px;
      border-radius: 2px; }
    #contact-form .btn-wr input:active {
      color: #fff;
      background: #474747;
      -webkit-border-radius: 2px;
      -moz-border-radius: 2px;
      border-radius: 2px; }

/* Contact Form Textarea 
========================================================*/
#contact-form textarea {
  overflow: hidden;
  display: block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font: 300 14px "Open Sans", sans-serif;
  line-height: 24px;
  padding: 14.5px 30px 14.5px;
  color: #383838;
  background-color: #ededed;
  border: none;
  width: 100%;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  resize: none;
  height: 363px; }

