.contact .col {
  margin-bottom: 10px;
}

@media screen and (max-width: 990px) {
  .contact .col {
    flex: none;
  }

  .contact-links {
    display: none;
  }
}

.contact form {
  position: relative;;
}

.contact .loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 40px;
  border-radius: 10px;
}

.contact button {
  background: #DB3700;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.contact button:hover {
  background: #ff7e54;
}

.contact input:focus,
.contact select:focus,
.contact textarea:focus {
  border-color: #ff5821;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}