<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.contact-form-container {
  display: flex;
  padding: var(--Sizes-Gap-gap-32, 32px);
  flex-direction: column;
  align-items: flex-start;
  gap: var(--Sizes-Gap-gap-48, 48px);
  flex: 1 0 0;
  border-radius: var(--Sizes-Radius-radius, 16px);
  border: 1px solid #ececec;
  /* Elevation/Higher */
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}
.contact-form-result {
    display: none;
}
.contact-form-title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #015c2e;
  font-size: 24px;
  font-style: normal;
  font-family: "Averta-semibold";
  line-height: 130%; /* 31.2px */
  letter-spacing: -0.48px;
}

.contact-form-title-icon {
  color: #00994f;
  width: 48px;
  height: 48px;
  font-family: "tabler-icons";
  display: flex;
  padding: 12px !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  background: #daf6c6;
}

.hr {
  height: 1px;
  width: 100%;
  background: #ececec;
}

.consulting-form.umbraco-forms-form textarea {
  padding: 16px 16px 16px 24px !important;
  border-radius: 24px;
  border: 1px solid var(--Primitives-Neutral-4, #bbb);
  background: #fff;
}

.umbraco-forms-submitmessage-html {
  width: 100%;
}

.contact-message-result {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.contact-message {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.success-icon {
  font-family: "tabler-icons";
  display: flex;
  padding: 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  background: var(--Palette-Fill-Interactive-int-active, #00994f);
  box-shadow: 0px 0px 0px 8px var(--Primitives-FE-400, #9fe870),
    0px 0px 0px 16px var(--Primitives-FE-100, #ecfae2);
  font-size: 32px;
  color: white;
  width: 56px;
  height: 56px;
}

.contact-message-title {
  color: var(--Palette-Text-Content-title, #292929);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-family: "Averta-semibold";
  line-height: 130%;
  /* 31.2px */
  letter-spacing: -0.48px;
}

.contact-message-text {
  color: #747474;
  text-align: center;
  width: 468px;
  font-size: 15px;
  font-style: normal;

  line-height: 140%;
  /* 21px */
  letter-spacing: -0.15px;
}

.contact-form-container .umbraco-forms-form textarea.input-validation-error {
  background: none;
}

@media (max-width: 991px) {
  .contact-message-text {
    width: 100%;
  }
}
</pre></body></html>