#contact .contact-cta {
  display: grid;
  gap: 1rem;
}

#contact .single-cta {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

#contact .single-cta:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(255, 193, 7, 0.35);
}

#contact .single-cta i {
  color: #ffc107;
  font-size: 1.25rem;
  margin-top: 0.15rem;
}

#contact .cta-text h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  transition: color 200ms ease;
}

#contact .cta-text span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  transition: color 200ms ease;
}

#contact .single-cta:hover .cta-text h4 {
  color: #ffc107;
}

#contact .single-cta:hover .cta-text span {
  color: rgba(255, 255, 255, 0.95);
}

#contact .contact-form {
  max-width: none;
  margin: 0;
  text-align: left;
}

#contact .contact-form input,
#contact .contact-form textarea {
  border: 0;
  outline: 0;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  display: block;
  width: 100%;
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  resize: none;
}

#contact .contact-form input:hover,
#contact .contact-form textarea:hover {
  border-color: rgba(255, 193, 7, 0.65);
}

#contact .contact-form input:focus,
#contact .contact-form textarea:focus {
  border-color: #ffc107;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

#contact .contact-form textarea {
  min-height: 140px;
}

#contact #input-submit {
  margin-top: 1rem;
  color: #111;
  background: #ffc107;
  cursor: pointer;
  font-weight: 700;
}

#contact .half {
  float: left;
  width: 48%;
  margin-bottom: 1rem;
}

#contact .right {
  width: 50%;
}

#contact .left {
  margin-right: 2%;
}

@media (max-width: 480px) {
  #contact .half {
    width: 100%;
    float: none;
    margin-bottom: 0;
  }
}

#contact .cf:before,
#contact .cf:after {
  content: " ";
  display: table;
}

#contact .cf:after {
  clear: both;
}