body,
html {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
  font-weight: 300;
}
section {
  position: relative;
  display: block;
  padding: 5rem 0;
}
h2 {
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 7px;
}
h3 {
  font-weight: 700;
  font-size: 2rem;
}
.align-right {
  text-align: right;
}
.align-center {
  text-align: center;
}
.align-center-vertical {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.error {
  font-weight: 400;
  color: #990000;
  display: none;
}
.success {
  font-weight: 400;
  color: #009900;
  display: none;
}
.form-control,
.btn {
  border-radius: 0;
}
.form-control:focus,
.btn:focus {
  border: solid 1px #000000;
}
.btn {
  text-transform: uppercase;
}
.btn-primary {
  background-color: #000000;
  border: solid 1px #000000;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #0d0d0d;
  border: solid 1px #0d0d0d;
}
.btn-primary:active {
  background-color: #000000;
  border: solid 1px #000000;
  outline: none !important;
}
#welcome {
  height: 100vh;
  width: 100vw;
  background-image: url(/assets/img/welcome.jpg?v=2);
  background-size: cover;
  background-position: 50% 50%;
}
#welcome h1 {
  display: none;
}
#welcome .logo {
  width: 22vw;
}
@media (max-width: 543px) {
  #welcome .logo {
    width: 44vw;
  }
}
#welcome h2 {
  color: #000000;
  text-align: center;
  margin-bottom: 45vh;
  margin-top: 2rem;
}
@media (max-width: 543px) {
  #welcome h2 {
    font-size: 1rem;
    bottom: 11vh;
  }
}
#contact {
  color: #000000;
}
#contact .logo {
  height: 6rem;
  margin-bottom: 4rem;
}
#contact h2 {
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 543px) {
  #contact .logo {
    display: none;
  }
  #contact .align-center-vertical {
    height: auto;
  }
  #contact .contact-form-container {
    padding-top: 1rem;
  }
}
@media (max-width: 991px) {
  #contact .logo {
    padding: 0;
  }
}
footer {
  color: #000000;
  font-size: .75rem;
}
footer .container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
