/* Variable names from http://chir.ag/projects/name-that-color */
/*
* NAVIGATION LINKS // generic navigation links styling (header, footer, etc)
*/
.form-group {
  margin-bottom: 0;
}
.form-group .form-control-feedback {
  display: none;
}
.form-group.has-danger .form-control-feedback {
  display: block;
}
.form-group.required label::after {
  content: "*";
  color: #000;
}
.form-group.required label.is-invalid::after {
  content: "*";
  color: #92110f;
}
.form-group label {
  margin-bottom: 6px;
  line-height: 1;
}
.form-group label.is-invalid {
  color: #92110f;
}
.form-group .form-control ~ .form-text {
  color: #222;
}
.form-group + .form-group,
.form-group + form {
  margin-top: 18px;
}
.form-group > .form-control-feedback {
  display: none;
  font-size: 0.8125rem;
}
.form-group.has-danger > .form-control-feedback, .form-group.has-warning > .form-control-feedback {
  display: block;
}
.form-group ~ button[type=submit] {
  margin-top: 18px;
}

.contact-us-banner {
  background-image: url("../images/contact-us.jpg");
  background-position-y: 20%;
}

.contact-us-signup-message {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: fixed;
  top: 15%;
  left: 50%;
}

.contact-us-signup-alert {
  -webkit-animation: fade 5s linear forwards;
          animation: fade 5s linear forwards;
  -webkit-box-shadow: 1px 1px 5px grey;
          box-shadow: 1px 1px 5px grey;
  padding: 1em;
}
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.contact-us-signup-alert.show {
  display: block;
}

.contact-us-title h1 {
  margin: 1.25rem 0;
  padding: 0;
  color: #4a4a4a;
}
@media (min-width: 768px) {
  .contact-us-title h1 {
    margin: 2.5rem 0.2em;
  }
}

.contact-us-landing-page .card {
  border: none;
}

/*# sourceMappingURL=contactUs.css.map*/