.contact {
  width: 100%;
  position: relative;
}

.half-col {
  width: 100%;
}

.contact__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;

  width: 100%;
}

.contact__fields-wrapper {
}

.field input,
textarea,
select {
  background-color: #d1d1d1;
  border: none;
  outline: none;
  padding: 0.5rem 0.75rem;
  border-radius: 3px;
}

.contact-block {
  background-color: #ffffff15;
  width: 100%;
  padding: 1.5rem;
  border-radius: 16px;
}

.contact-person-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-person-details ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 1rem;
}
.contact-person-details ul li {
  margin-bottom: 0.25rem;
}

@media screen and (min-width: 750px) {
  .contact__wrapper {
    flex-direction: row;
    gap: 3rem;
  }

  .contact__wrapper p {
    font-size: 16px;
    word-spacing: 2px;
  }

  .half-col {
    max-width: 49%;
    width: 100%;
  }
}
