html {
  font-family: 'Roboto', sans-serif;
  color: #c3c3b4;
  font-size: 16px;
  line-height: 21px;
}
body {
  margin: 0;
  padding: 0;
}
.table {
  display: table;
  width: 100%;
  height: 100vh;
  position: relative;
}
.table .tableCell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  text-align: center;
}
h1,
h3,
h4 {
  text-transform: uppercase;
  font-weight: 300;
  color: #c3c3b4;
  font: 'Roboto', sans-serif;
}
h3 {
  font-size: 20px;
}
h1,
h3 {
  margin-bottom: 0;
}
h3 {
  margin: 0;
}
p,
a {
  font-size: 18px;
  color: #c3c3b4;
}
a {
  display: inline-block;
  padding: 0.35rem;
  margin: 0.5rem 0;
}
a:hover {
  color: #58585a;
  background: #c3c3b4;
  text-decoration: none;
}
img {
  max-width: 100%;
}
.button a {
  color: #c3c3b4;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #c3c3b4;
  padding: 1rem;
  font-size: 20px;
  display: inline-block;
}
.button a:hover {
  background-color: #c3c3b4;
  color: #58585a;
}
#intro {
  background-color: #58585a;
}
#intro .intro-content {
  position: relative;
  z-index: 10;
}
#intro .intro-content img {
  margin-bottom: 4rem;
  max-width: 100%;
}
#intro .intro-content .button {
  opacity: 0;
}
#intro .intro-background {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 692px;
  height: 850px;
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1, 1);
          transform: translateX(-50%) translateY(-50%) scale(1, 1);
  opacity: 0.1;
  -webkit-animation-name: animateBG;
          animation-name: animateBG;
  -webkit-animation-duration: 15s;
          animation-duration: 15s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  z-index: 1;
  max-width: 100%;
}
#intro .intro-background img {
  max-width: 80%;
}
#intro .line-1 {
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #c3c3b4;
  bottom: 0;
  right: 0;
  -webkit-animation-name: animateHeight;
          animation-name: animateHeight;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}
#intro .line-2 {
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #c3c3b4;
  bottom: 0;
  right: 0;
  -webkit-animation-name: animateWidth;
          animation-name: animateWidth;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}
#intro .intro-left-background {
  position: absolute;
  width: 30vw;
  height: 30vh;
  top: 30%;
  left: 30%;
  z-index: 2;
}
#intro .intro-left-background .line-1,
#intro .intro-left-background .line-2 {
  top: 0;
  left: 0;
}
#intro .intro-right-background {
  position: absolute;
  width: 50vw;
  height: 75vh;
  top: 0;
  right: 30%;
  z-index: 2;
}
#intro .intro-right-background .line-1,
#intro .intro-right-background .line-2 {
  bottom: 0;
  right: 0;
}
#contact-form {
  background-color: #58585a;
}
#contact-form .contact-form-wrapper .error-message {
  margin-top: 15px;
}
#contact-form .contact-form-wrapper .error-message p {
  margin: 0;
  color: red;
  font-size: 12px;
}
#contact-form .contact-form-wrapper .form-response .form-loading {
  text-align: center;
  padding: 3rem;
  color: #c3c3b4;
}
#contact-form .contact-form-wrapper .form-response .form-loading,
#contact-form .contact-form-wrapper .form-response .thank-you {
  min-height: 450px;
}
#contact-form .contact-form-wrapper .form-response .thank-you h3 {
  color: #c3c3b4;
  text-transform: uppercase;
}
#contact-form .contact-form-wrapper .contact-header {
  text-align: center;
  padding: 3rem 0 1rem;
}
#contact-form .contact-form-wrapper .contact-form {
  color: #c3c3b4;
  padding: 15px;
  margin-bottom: 3rem;
  font-size: 1rem;
}
#contact-form .contact-form-wrapper .contact-form fieldset {
  position: relative;
  border: none;
  margin: 0;
  padding: 0;
  margin-top: 1rem;
}
#contact-form .contact-form-wrapper .contact-form fieldset label {
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#contact-form .contact-form-wrapper .contact-form fieldset input,
#contact-form .contact-form-wrapper .contact-form fieldset textarea {
  background: none;
}
#contact-form .contact-form-wrapper .contact-form fieldset input:focus,
#contact-form .contact-form-wrapper .contact-form fieldset textarea:focus {
  outline: 0;
}
#contact-form .contact-form-wrapper .contact-form fieldset input:valid + label,
#contact-form .contact-form-wrapper .contact-form fieldset textarea:valid + label,
#contact-form .contact-form-wrapper .contact-form fieldset input:focus + label,
#contact-form .contact-form-wrapper .contact-form fieldset textarea:focus + label {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  -webkit-transform: translate3d(0, -1.5rem, 0);
          transform: translate3d(0, -1.5rem, 0);
}
#contact-form .contact-form-wrapper .contact-form input:not([type="submit"]),
#contact-form .contact-form-wrapper .contact-form textarea {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #c3c3b4;
  padding: 0.5rem 1rem;
  color: #6d6e71;
}
#contact-form .contact-form-wrapper .contact-form .required {
  color: red;
}
#contact-form .contact-form-wrapper .contact-form label {
  color: #c3c3b4;
  text-transform: uppercase;
  font-weight: 300;
}
#contact-form .contact-form-wrapper .contact-form .button {
  text-align: left;
  margin-top: 2rem;
}
#contact-form .contact-form-wrapper .contact-form .button a {
  font-size: 16px;
  font-weight: 300;
  padding: 1rem;
}
#contacts {
  background: #58585a;
}
#contacts .contact-buttons a {
  display: block;
}
#map-holder {
  width: 100%;
  height: 300px;
  margin: 3rem 0;
}
@-webkit-keyframes animateBG {
  0% {
    opacity: 0.1;
    -webkit-transform: translateX(-50%) translateY(-50%) scale(1, 1);
            transform: translateX(-50%) translateY(-50%) scale(1, 1);
  }
  50% {
    opacity: 0.4;
    -webkit-transform: translateX(-50%) translateY(-50%) scale(1.075, 1.075);
            transform: translateX(-50%) translateY(-50%) scale(1.075, 1.075);
  }
  100% {
    opacity: 0.1;
    -webkit-transform: translateX(-50%) translateY(-50%) scale(1, 1);
            transform: translateX(-50%) translateY(-50%) scale(1, 1);
  }
}
@keyframes animateBG {
  0% {
    opacity: 0.1;
    -webkit-transform: translateX(-50%) translateY(-50%) scale(1, 1);
            transform: translateX(-50%) translateY(-50%) scale(1, 1);
  }
  50% {
    opacity: 0.4;
    -webkit-transform: translateX(-50%) translateY(-50%) scale(1.075, 1.075);
            transform: translateX(-50%) translateY(-50%) scale(1.075, 1.075);
  }
  100% {
    opacity: 0.1;
    -webkit-transform: translateX(-50%) translateY(-50%) scale(1, 1);
            transform: translateX(-50%) translateY(-50%) scale(1, 1);
  }
}
@media (max-width: 1550px) {
  #intro .intro-left-background {
    top: 25%;
    left: 20%;
  }
  #intro .intro-right-background {
    top: 0;
    right: 20%;
  }
}
@media (max-width: 1075px) {
  #intro .intro-left-background {
    top: 20%;
    left: 15%;
  }
  #intro .intro-right-background {
    top: 0;
    right: 15%;
  }
  .intro-background {
    max-width: 80%;
    margin: auto;
  }
  .intro-background img {
    max-width: 80%;
  }
}
@media (max-width: 780px) {
  #intro .intro-content img {
    max-width: 70%;
  }
  #intro .intro-left-background {
    top: 20%;
    left: 5%;
  }
  #intro .intro-right-background {
    top: 0;
    right: 5%;
  }
}
@-webkit-keyframes animateWidth {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes animateWidth {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@-webkit-keyframes animateHeight {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}
@keyframes animateHeight {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}
