.brown-underline {
  border-bottom: 2px solid #926b4d;
}

.white-underline {
  border-bottom: 2px solid white;
}

.paragraph-no-margin p {
  margin: 0;
}

.white-text p,
.white-text h1,
.white-text h2,
.white-text h3,
.white-text h4,
.white-text h5,
.white-text h6,
.white-text ul,
.white-text blockquote,
.white-text a {
  color: white;
}

.static-contact-form label {
  display: block;
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}

.static-contact-form input,
.static-contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  margin-top: 6px;
}

.static-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
}

.static-form-full {
  grid-column: 1 / -1;
}

.static-contact-form .required {
  display: inline-block;
  margin-left: 6px;
  color: #ffd6d6;
  font-size: 14px;
  font-weight: 400;
}

.static-contact-form .button {
  margin-top: 8px;
  background: #fbffc6 !important;
  color: #000 !important;
}

.static-form-note {
  margin-top: 12px;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
}

@media only screen and (max-width: 767px) {
  .static-form-grid {
    grid-template-columns: 1fr;
  }
}
