/*==================     Subscribe Form     ======================*/
.subscribe-form {
  position: relative;
  display: block;
  text-align: center;
}
.subscribe-form label {
  display: inline-block;
  position: relative;
  padding: 3px 0 3px;
  background: transparent;
  border-bottom: 3px solid #ffffff;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.subscribe-form label.name {
  width: 100%;
}
.subscribe-form label.phone {
  width: 100%;
}
.subscribe-form label.email {
  width: 100%;
}
.subscribe-form input {
  outline: none;
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
  border-radius: 0;
  vertical-align: baseline;
  box-shadow: none;
  color: #ffffff;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  font-size: 30px;
  line-height: 34px;
  height: 34px;
  font-family: 'BenchNine', sans-serif;
  letter-spacing: 2.25px;
  padding-bottom: 23px;
  padding-top: 7px;
}
.subscribe-form .sub-btn {
  margin-top: 55px;
  background: #fff;
  color: #1c1c1c;
  letter-spacing: normal;
  font-size: 26px;
  line-height: 30px;
  display: inline-block;
  padding: 0 37px;
  padding-top: 20px;
  padding-bottom: 15px;
  font-family: 'BenchNine', sans-serif;
  text-transform: uppercase;
}
.subscribe-form .sub-btn:hover {
  background: #FFFFFF;
}
.subscribe-form .error,
.subscribe-form .success {
  position: absolute;
  top: 0;
  right: 5px;
  font-size: 12px;
  line-height: 14px;
  margin-top: 15px;
}
.subscribe-form .error {
  color: #fff;
  overflow: hidden;
  height: 0;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.subscribe-form label.invalid .error {
  height: 21px;
}
.subscribe-form .success {
  display: none;
  color: #0f0;
}
@media (max-width: 979px) {
  .subscribe-form label.name,
  .subscribe-form label.phone,
  .subscribe-form label.email
  {
    display: block;
    width: 100%;
  }
  .subscribe-form * + label,
  .subscribe-form * + a[data-type='submit'] {
    margin-top: 50px;
  }
}
