body {
  min-height: 100%;

}

#mainNav {
  box-shadow: none;
  opacity: 0.91;
}

#contactbg {
  padding-top: 150px;
  min-height: 100%;
  background-image: url(../img/2.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: #1E1E1E;
}

header.masthead {
  height: 135vh;
}

.title {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
  color: #B28A51;
  font-weight: 300;
  font-size: 24px;
  letter-spacing: 1px;
}

.description {
  text-align: center;
  color: #B28A51;
  margin-bottom: 15px;
  font-size: 22px;
  letter-spacing: 3px;
}

.c-a {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

input[type="text"],
input[type="email"],
textarea {
  padding: 8px 20px;
  border: 1px solid #999;
  border-radius: 3px;
  display: block;
  width: 100%;
  box-sizing: border-box;
  outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: #B28A51;
}

input[type="radio"] {
  margin-right: 10px;
}

label {
  margin-bottom: 20px;
  display: block;
  font-size: 18px;
  color: #666;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
  cursor: pointer;
}

label:first-child {
  margin-bottom: 0;
  border-bottom: none;
}

.contact-form {
  padding: 0px 50px;

}

.button,
.rerun-button {
  padding: 10px 20px;
  border-radius: 3px;
  background: #B28A51;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  cursor: pointer;
}

.button:hover,
.rerun-button:hover {
  background: #B28A51;
}

.button.rerun-button,
.rerun-button.rerun-button {
  border: 1px solid rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
}

.text-center {
  text-align: center;
}

.modal-wrap {
  max-width: 600px;
  min-height: 550px;
  margin: 0 auto;
  transition: transform 300ms ease-in-out;
}

.modal-header {
  height: 45px;
  background: white;
  border-bottom: 1px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-header span {
  display: block;
  height: 12px;
  width: 12px;
  margin: 5px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
}

.modal-header span.is-active {
  background: rgba(0, 0, 0, 0.4);
  background: #B28A51;
}

.modal-bodies {
  position: relative;
  perspective: 1000px;
}

.modal-body {
  background: white;
  padding: 30px 5px;
  margin-bottom: 30px;
  position: absolute;
  top: 15px;
  display: none;
  box-sizing: border-box;
  width: 100%;
  transform-origin: top left;
}

.modal-body.is-showing {
  display: block;
}

.animate-out {
  animation: out 300ms ease-in-out forwards;
}

.animate-in {
  animation: in 300ms ease-in-out forwards;
  display: block;
  /*transform-origin: top left; */
}

.animate-up {
  transform: translateY(-500px);
  /*animation: up 300ms ease-in-out forwards;*/
}

@keyframes out {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  60% {
    transform: rotate(60deg);
  }

  100% {
    transform: translateY(800px) rotate(10deg);
  }
}

@keyframes in {
  0% {
    transform: rotateX(-90deg);
    /*transform: rotateY(90deg);*/
  }

  100% {
    transform: rotateX(0deg);
    /*transform: rotateY(0deg);*/
  }
}

.form-error {
  color: red;
}

.contact-footer {
  border-top: 1px solid #907247;
  margin-top: 15px;
  padding-top: 15px;
}

.contact-footer i {
  color: #907247;
}

.contact-footer a,
.contact-footer a:hover,
.contact-footer a:visited,
.contact-footer a:active {
  text-decoration: none;
}

.address {
  color: #B28A51;
  font-size: 17px !important;
  margin-left: 10px;
  line-height: 1.2;
  letter-spacing: 1px;
}