section.cta .contact .image-wrapper {
  height: 100%;
}
section.cta .contact .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.25rem;
}
section.cta .contact .contact-person {
  width: 100%;
}
section.cta .contact .contact-person .image-wrapper img {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
}
section.cta .contact .contact-person a {
  -webkit-transition: all var(--bezier);
  transition: all var(--bezier);
  border-bottom: 1px solid var(--dark-green);
}
section.cta .contact .contact-person a:hover {
  color: var(--green);
  border-bottom: 1px solid var(--green);
}
section.cta .contact .contact-person a:last-of-type {
  margin-left: 1.25rem;
}
section.cta .contact .contact-person h3 {
  font: var(--h5-font);
}
@media (max-width: 64rem) {
  section.cta .contact {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@container main (max-width: 64rem) {
  section.cta .form-wrapper {
    margin-bottom: 3.125rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}