.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
  padding: 34px;
  border: 1px solid rgba(170, 132, 83, .35);
  background: rgba(255, 255, 255, .42);
}

.lead-form .field-wide,
.lead-form button,
.lead-form #formStatus {
  grid-column: 1 / -1;
}

.lead-form .field {
  min-width: 0;
}

.lead-form label {
  display: block;
  margin-bottom: 9px;
  color: #292929;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.45;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  border: 0;
  border-bottom: 1px solid rgba(41, 41, 41, .42);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #292929;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  transition: border-color .2s ease, background-color .2s ease;
}

.lead-form select {
  cursor: pointer;
}

.lead-form input::placeholder {
  color: rgba(41, 41, 41, .5);
}

.lead-form input:focus,
.lead-form select:focus {
  border-bottom-color: #aa8453;
  background: rgba(170, 132, 83, .06);
}

.lead-form button {
  justify-self: start;
  min-width: 176px;
  padding: 15px 28px 13px;
  border: 1px solid #aa8453;
  border-radius: 0;
  background: #aa8453;
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color .2s ease, color .2s ease;
}

.lead-form button:hover,
.lead-form button:focus-visible {
  background: transparent;
  color: #aa8453;
}

.lead-form #formStatus {
  min-height: 0;
  margin: 0;
  color: #aa8453;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
}

@media (max-width: 767px) {
  .lead-form {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
  }

  .lead-form .field-wide,
  .lead-form button,
  .lead-form #formStatus {
    grid-column: auto;
  }

  .lead-form button {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .contact-lead-row,
  .contact-lead-content-col,
  .contact-lead-media-col {
    align-items: stretch;
  }

  .contact-lead-content-col,
  .contact-lead-media-col {
    display: flex;
  }

  .contact-lead-content-col .cs_pr_100,
  .contact-lead-media-col .cs_image_layer {
    width: 100%;
  }

  .contact-lead-content-col .cs_pr_100 {
    padding-right: 64px;
  }

  .contact-lead-media-col .cs_image_layer {
    overflow: hidden;
  }

  .contact-lead-media-col .cs_image_layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}