.contact-clean {
  padding: 80px 0;
}

@media (max-width:767px) {
  .contact-clean {
    padding: 20px 0;
    min-height: 75vh;
  }
}

.contact-clean form {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 4px;
  color: #505e6c;
  box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
}

@media (max-width:767px) {
  .contact-clean form {
    padding: 30px;
    border-color: #ff9300;
    border-width: thick;
  }
}

.contact-clean h2 {
  margin-top: 5px;
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 36px;
  color: inherit;
}

.contact-clean .form-group:last-child {
  margin-bottom: 5px;
}

.contact-clean form .form-control {
  background: #fff;
  border-radius: 2px;
  box-shadow: 1px 1px 1px rgba(0,0,0,0.05);
  outline: none;
  color: inherit;
  padding-left: 12px;
  height: 42px;
}

.contact-clean form .form-control:focus {
  border: 1px solid #ff9300;
}

.contact-clean form textarea.form-control {
  min-height: 100px;
  max-height: 260px;
  padding-top: 10px;
  resize: vertical;
}

.contact-clean form .btn {
  padding: 16px 32px;
  border: none;
  background: none;
  box-shadow: none;
  text-shadow: none;
  opacity: 0.9;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.4px;
  line-height: 1;
  outline: none !important;
}

.contact-clean form .btn:hover {
  opacity: 1;
}

.contact-clean form .btn:active {
  transform: translateY(1px);
}

.contact-clean form .btn-primary {
  background-color: #055ada !important;
  margin-top: 15px;
  color: #fff;
}

.map-footer {
  margin-top: 16vh;
}

.enquiry-footer {
  margin-top: 11vh;
}

.contact-footer {
  margin-top: 13vh;
}

.rounded-circle {
  transition: .3s ease;
}

.rounded-circle:hover {
  transform: scale(1.1);
}

.team-button {
  background-color: #ff9300;
  border-color: transparent;
  border-width: 3px;
  border-radius: 30px;
  width: 100%;
  padding: 15px;
  margin-bottom: 40px;
  font-family: 'Montserrat';
  box-shadow: 0px 10px 20px;
  transition: .3s ease;
}

.team-button:hover {
  background-color: white;
  border-color: #ff9300;
  color: #ff9300;
  transform: scale(0.95);
}

.animatedText {
  animation: fadeAndScale 1s ease-out;
}

@keyframes fadeAndScale {
  from {
    opacity: 0;
    transform: scale3d(.95, .95, 1);
  }
  to {
    opacity: 1;
    transform: scale3d(1,1,1);
  }
}

@keyframes change {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

.gif {
  width: 20%;
  animation: walk 15s linear infinite;
}

@keyframes walk {
  from {
    transform: translateX(-90%);
  }
  to {
    transform: translateX(500%);
  }
}

.preload {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.horse {
  height: 20%;
}

.nav-bar {
  padding: 20px 0 20px 5%;
}

.documentation-list {
  padding-left: 20px;
}

