.contact-subtitle {
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  letter-spacing: 0px;
  text-transform: uppercase;
}

.submit-button {
  width: auto;
  font-size: 15px;
  height: auto;
  line-height: normal;
  text-align: center;
  background: rgb(255, 255, 255);
  border-width: 2px;
  border-color: rgb(255, 255, 255);
  border-style: solid;
  color: #000;
  cursor: pointer;
  font-weight: normal;
  border-radius: 50px;
  text-shadow: none;
  padding: 10px 20px;
  box-sizing: border-box;
  box-shadow: 0 1px 1px #eeeeee;
  margin: 10px;
  margin-left: 0;
  margin-right: 0;
  vertical-align: middle;
  transition: 0.3s ease-in-out;

  outline: none;
}

.submit-newsletter {
  width: fit-content;
}

.submit-button:hover {
  background: #181818;
  color: #fff;
}

.message-input,
.message-textarea {
  font-family: "GFS Didot", serif;
  line-height: 1.3;
  min-height: 40px;
  width: 100%;
  border: none;
  outline: none;
  box-shadow: none;
  border-bottom: 1px solid #dbdbdb;
  padding: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  transition: 0.3s ease-in-out;
}

.message-input:focus {
  border-bottom: 1px solid #7f7f7f;
}

.message-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form-part {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.5s ease-in-out;
}

.newsletter-in-view {
  opacity: 1;
  transform: translate(0) !important;
}

.contact-form-part-in-view {
  opacity: 1;
  transform: translate(0) !important;
}

.parallax-image-wrapper img {
  transform: translate3d(0%, 0%, 0px) scale(1.2, 1.2);
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #23272a;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #e5e4e2;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #d3d3d3;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}
#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #808080;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.email-link {
  text-decoration: none;
  letter-spacing: 0.15em;
  position: relative;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) ease-in-out;
}

.email-link:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #ffffff;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
.email-link:hover {
  color: #ffffff;
  text-decoration: none;
}
.email-link:hover:after {
  width: 100%;
  left: 0;
}
