@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap");
:root {
  --page-bg-color: #fafafa;
  --text-color: #000;
  --color-primary: #00239c;
  --color-secondary: #e4002b;
  --color-white: #fff;
  --color-black: #000;
  --color-light-blue: #f1f3f9;
  --card-bg-color: var(--light-blue);
  --font-dax-med: "Dax-Medium", sans-serif;
  --font-dax-bold: "Dax-Bold", sans-serif;
  --font-lato: "Lato", sans-serif;
  --font-fontawesome: "Font Awesome 5 Pro", sans-serif;
  --font-size-base: 14px;
  --font-family: var(--font-lato);
  --padding-base: 1em;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 1.75rem;
  --font-size-3xl: 2rem;
  --padding-xs: calc(1em * 0.5);
  --padding-sm: calc(1em * 0.75);
  --padding-md: calc(1em * 1);
  --padding-lg: calc(1em * 1.5);
  --padding-xl: calc(1em * 2);
  --padding-2xl: calc(1em * 3);
  --padding-3xl: calc(1em * 4);
  font-size: var(--font-size-base);
}
@font-face {
  font-family: "Dax-Medium";
  src: url("/assets/fonts/Dax-Medium.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/Dax-Medium.woff") format("woff"), url("/assets/fonts/Dax-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Dax-Bold";
  src: url("/assets/fonts/Dax-Bold.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/Dax-Bold.woff") format("woff"), url("/assets/fonts/Dax-Bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
* {
  color: var(--text-color);
  background-color: var(--bg-color, transparent);
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
}
html, body {
  --bg-color: var(--page-bg-color);
  min-height: 100%;
}
h1 {
  font-family: var(--font-dax-bold);
  font-size: var(--font-size-3xl);
  padding-bottom: var(--padding-xl);
}
/* =========================================
   FLEX UTILITIES (Tailwind-like)
   ========================================= */
/* =========================
   Display
   ========================= */
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
/* =========================
   Direction
   ========================= */
.flex-row {
  flex-direction: row;
}
.flex-row-reverse {
  flex-direction: row-reverse;
}
.flex-column {
  flex-direction: column;
}
.flex-column-reverse {
  flex-direction: column-reverse;
}
/* =========================
   Wrap
   ========================= */
.flex-nowrap {
  flex-wrap: nowrap;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}
/* =========================
   Justify Content
   ========================= */
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.justify-evenly {
  justify-content: space-evenly;
}
/* =========================
   Align Items
   ========================= */
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-baseline {
  align-items: baseline;
}
.items-stretch {
  align-items: stretch;
}
/* =========================
   Align Content
   ========================= */
.content-start {
  align-content: flex-start;
}
.content-end {
  align-content: flex-end;
}
.content-center {
  align-content: center;
}
.content-between {
  align-content: space-between;
}
.content-around {
  align-content: space-around;
}
.content-evenly {
  align-content: space-evenly;
}
.content-stretch {
  align-content: stretch;
}
/* =========================
   Align Self
   ========================= */
.self-auto {
  align-self: auto;
}
.self-start {
  align-self: flex-start;
}
.self-end {
  align-self: flex-end;
}
.self-center {
  align-self: center;
}
.self-baseline {
  align-self: baseline;
}
.self-stretch {
  align-self: stretch;
}
/* =========================
   Flex Grow / Shrink
   ========================= */
.flex-grow {
  flex-grow: 1;
}
.flex-grow-0 {
  flex-grow: 0;
}
.flex-shrink {
  flex-shrink: 1;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
/* =========================
   Flex (shorthand)
   ========================= */
.flex-1 {
  flex: 1 1 0%;
}
.flex-auto {
  flex: 1 1 auto;
}
.flex-initial {
  flex: 0 1 auto;
}
.flex-none {
  flex: none;
}
/* =========================
   Gap
   ========================= */
.gap-0 {
  gap: 0;
}
.gap-x-0 {
  column-gap: 0;
}
.gap-y-0 {
  row-gap: 0;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-x-1 {
  column-gap: 0.25rem;
}
.gap-y-1 {
  row-gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-x-2 {
  column-gap: 0.5rem;
}
.gap-y-2 {
  row-gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-x-3 {
  column-gap: 0.75rem;
}
.gap-y-3 {
  row-gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-x-4 {
  column-gap: 1rem;
}
.gap-y-4 {
  row-gap: 1rem;
}
.gap-5 {
  gap: 1.25rem;
}
.gap-x-5 {
  column-gap: 1.25rem;
}
.gap-y-5 {
  row-gap: 1.25rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-x-6 {
  column-gap: 1.5rem;
}
.gap-y-6 {
  row-gap: 1.5rem;
}
button, a[class^="button"] {
  --border-color: transparent;
  --button-padding-x: var(--padding-lg);
  --button-padding-y: var(--padding-base);
  border-style: solid;
  border-width: 1px;
  border-color: var(--border-color);
  padding: var(--button-padding-y) var(--button-padding-x);
  font-weight: bold;
  text-decoration: none;
}
button[class^="button"], a[class^="button"][class^="button"] {
  cursor: pointer;
}
button[class^="button"]:hover, a[class^="button"][class^="button"]:hover {
  background-color: var(--text-color);
  color: var(--bg-color);
}
button.button-primary, webform-form button.button-submit, a[class^="button"].button-primary, webform-form a.button-submit[class^="button"] {
  --bg-color: var(--color-primary);
  --text-color: var(--color-white);
}
button.button-primary:hover, webform-form button.button-submit:hover, a[class^="button"].button-primary:hover, webform-form a.button-submit[class^="button"]:hover {
  background-color: color-mix(in srgb, var(--bg-color) 60%, black);
  color: var(--text-color);
}
button.button-underline, a[class^="button"].button-underline {
  --border-color: var(--color-light-blue);
}
button.button-underline-primary, a[class^="button"].button-underline-primary {
  --border-color: var(--color-light-blue);
  --text-color: var(--color-primary);
}
.page {
  --bg-color: var(--color-light-blue);
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--padding-3xl) var(--padding-base) 0 var(--padding-base);
  gap: var(--padding-lg);
}
header {
  --bg-color: var(--color-white);
  padding: var(--padding-base);
  --text-color: var(--color-primary);
}
header .logo img {
  height: 100%;
  max-height: 40px;
}
.hidden {
  display: none;
}
.lang-dropdown {
  margin-left: auto;
  position: relative;
}
.lang-dropdown summary {
  cursor: pointer;
  list-style: none;
  font-size: 2rem;
}
.lang-dropdown summary svg {
  width: 1em;
  height: 1em;
}
.lang-dropdown .lang-menu {
  flex-direction: column;
  position: absolute;
  right: calc(-1 * var(--padding-base));
}
.lang-dropdown[open] .lang-menu {
  display: flex;
}
@media (min-width: 768px) {
  .md\:block {
    display: block;
  }
  .md\:flex {
    display: flex;
  }
}
footer {
  padding: var(--padding-lg);
}
footer a {
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
webform-funnel {
  max-width: 412px;
  padding-bottom: 50px;
  margin: 0 auto;
}
webform-funnel > div {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: stretch;
  justify-content: center;
}
webform-funnel .intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 1rem;
}
webform-funnel .intro .title {
  font-family: var(--font-dax-bold);
  font-size: var(--font-size-2xl);
}
webform-funnel .buttons {
  display: flex;
}
webform-funnel .buttons > button {
  flex: 1;
  font-size: var(--font-size-lg);
}
webform-funnel .question {
  text-align: center;
  font-family: var(--font-dax-bold);
  font-size: var(--font-size-2xl);
  padding-bottom: var(--padding-xl);
}
webform-funnel .subtitle {
  text-align: center;
  margin-bottom: var(--padding-xl);
}
webform-funnel .options {
  display: flex;
  flex-direction: column;
  gap: var(--padding-sm);
}
webform-funnel .options .option {
  --bg-color: var(--color-white);
  padding: var(--padding-sm) var(--padding-lg);
}
webform-funnel .options button {
  width: 100%;
  text-align: left;
  font-weight: normal;
}
webform-funnel .options button .option-label {
  display: flex;
  flex-direction: row;
  font-family: var(--font-dax-med);
  padding: var(--padding-sm) 0;
}
webform-funnel .options button .option-label > p {
  margin-right: auto;
  color: var(--color-primary);
  font-family: var(--font-dax-bold);
}
webform-funnel .options button .option-label > svg {
  color: var(--color-primary);
}
webform-funnel .options button .option-subtitle {
  border-top: solid 1px var(--color-light-blue);
  padding-top: var(--padding-lg);
}
webform-funnel .options .option-hint {
  display: flex;
  flex-direction: column;
  margin-top: -1.5rem;
}
webform-funnel .options .option-hint > button {
  width: 2.5rem;
  height: 2.5rem;
  margin-left: auto;
  z-index: 1;
  padding: 0.5rem;
  border-radius: 2rem;
  box-shadow: 5px 5px 10px 2px #00000010;
}
webform-funnel .options .option-hint > button > svg {
  width: 100%;
  pointer-events: none;
}
webform-funnel .options .option-hint .option-hint-panel {
  display: none;
  flex-direction: column;
  margin-top: -1rem;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  --bg-color: var(--color-light-blue);
}
webform-funnel .options .option-hint .option-hint-panel .option-hint-title {
  font-family: var(--font-dax-med);
}
webform-funnel .options .option-hint.enable .option-hint-panel {
  display: flex;
}
webform-funnel .buttons-group {
  display: flex;
  flex-direction: row;
  gap: var(--padding-base);
}
webform-funnel .buttons-group .button-underline {
  --border-color: var(--color-white);
  --text-color: var(--color-black);
  flex: 1;
  display: flex;
  flex-direction: row;
}
webform-funnel .buttons-group .button-underline:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}
webform-funnel .buttons-group .button-underline:hover * {
  --bg-color: transparent;
}
webform-funnel .buttons-group .button-underline > div:first-child {
  flex: 0;
}
webform-funnel .buttons-group .button-underline > div:last-child {
  flex: 1;
}
webform-form {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 1140px;
  /* Hidden file input */
  /* Drop Zone */
  /* File List */
  /* File Item */
  /* Add More Button */
  /* Max Files Warning */
  /* Hidden file input */
  /* File List */
}
webform-form > * {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  --bg-color: transparent;
}
webform-form .webform-title {
  font-family: var(--font-dax-bold);
  font-size: var(--font-size-2xl);
  text-align: center;
}
webform-form .webform-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}
webform-form .webform-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #fff;
  padding: 1.5rem;
  margin-top: var(--padding-xl);
}
webform-form .webform-fields .webform-field {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
@media (min-width: 768px) {
  webform-form .webform-fields .webform-field {
    flex-direction: row;
  }
}
webform-form .webform-fields .webform-field.field-type-TextInfo {
  grid-template-columns: 1fr;
  background-color: #f1f3f9;
  border: solid 1px #eaeff4;
  padding: 24px;
  box-sizing: border-box;
}
webform-form .webform-fields .webform-field .field-label-wrapper {
  padding-top: 1rem;
}
@media (min-width: 768px) {
  webform-form .webform-fields .webform-field .field-label-wrapper {
    flex: 0 0 250px;
  }
}
webform-form .webform-fields .webform-field .field-input, webform-form .webform-fields .webform-field .field-select, webform-form .webform-fields .webform-field .field-textarea {
  flex: 1;
  border: solid 1px #e1e4eb;
  padding-left: 16px;
  padding-right: 16px;
  line-height: 1.43;
  min-height: 49px;
}
webform-form .webform-fields .webform-field .field-textarea {
  padding: 1rem;
}
webform-form .webform-fields .webform-field .field-input[type="date"] {
  cursor: pointer;
}
webform-form .webform-fields .webform-field .field-input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(0.5);
}
webform-form .webform-fields .webform-field .field-select {
  position: relative;
  appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}
webform-form .webform-fields .webform-field .field-select::-webkit-outer-spin-button, webform-form .webform-fields .webform-field .field-select::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
webform-form .webform-fields .webform-field.field-type-DocumentList, webform-form .webform-fields .webform-field.field-type-TextArea {
  flex-direction: column;
}
webform-form .webform-fields .webform-field.field-type-DocumentList .field-label-wrapper, webform-form .webform-fields .webform-field.field-type-TextArea .field-label-wrapper {
  align-self: flex-start;
  flex: 1;
}
webform-form .webform-fields .webform-field.field-type-Document .field-file {
  grid-column: 2;
}
webform-form .webform-fields .webform-field.field-type-Document .field-file-input {
  display: none;
}
webform-form .webform-fields .webform-field .field-checkbox-group {
  display: flex;
  flex-direction: column;
  flex: 1;
}
webform-form .webform-fields .webform-field .field-checkbox-group label {
  display: flex;
  align-items: center;
  line-height: 1.5;
  flex: 1;
  gap: 1rem;
}
webform-form .webform-actions {
  background-color: #fff;
  padding: 1.5rem;
  display: flex;
  justify-content: end;
  position: sticky;
  bottom: 0;
}
webform-form .webform-error {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}
webform-form .webform-error .error-message {
  background-color: #cc000030;
  padding: 2rem 4rem;
  color: #c00;
  font-weight: bold;
}
webform-form .webform-success {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}
webform-form .webform-success .success-message {
  background-color: #00cc0030;
  padding: 2rem 4rem;
  color: #090;
  font-weight: bold;
}
webform-form .field-file-manager {
  width: 100%;
}
webform-form .file-input-hidden {
  display: none;
}
webform-form .drop-zone {
  border: 2px dashed #cbd5e0;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #f8fafc;
  margin-bottom: 1rem;
}
webform-form .drop-zone:hover {
  border-color: #3b82f6;
  background-color: #eff6ff;
}
webform-form .drop-zone-active {
  border-color: #3b82f6;
  background-color: #dbeafe;
  transform: scale(1.01);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}
webform-form .drop-zone-disabled {
  cursor: not-allowed;
  opacity: 0.6;
  background-color: #f1f5f9;
}
webform-form .drop-zone-disabled:hover {
  border-color: #cbd5e0;
  background-color: #f1f5f9;
}
webform-form .drop-zone-has-files {
  padding: 1.5rem;
  border-color: #10b981;
  background-color: #f0fdf4;
}
webform-form .drop-zone-has-files .drop-zone-icon {
  color: #10b981;
}
webform-form .drop-zone-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
webform-form .drop-zone-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
webform-form .drop-zone-icon {
  color: #64748b;
  transition: color 0.3s ease;
}
webform-form .drop-zone:hover webform-form .drop-zone-icon, webform-form .drop-zone-active webform-form .drop-zone-icon {
  color: #3b82f6;
}
webform-form .drop-zone-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: #1e293b;
}
webform-form .drop-zone-subtitle {
  margin: 0;
  font-size: 0.875rem;
  color: #64748b;
}
webform-form .drop-zone-browse {
  color: #3b82f6;
  font-weight: 500;
  text-decoration: underline;
}
webform-form .drop-zone:hover webform-form .drop-zone-browse {
  color: #2563eb;
}
webform-form .drop-zone-hint {
  margin: 0.25rem 0 0 0;
  font-size: 0.75rem;
  color: #94a3b8;
}
webform-form .file-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
webform-form .file-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}
webform-form .file-list-count {
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
}
webform-form .file-list-clear {
  background: none;
  border: none;
  padding: 0.375rem 0.75rem;
  cursor: pointer;
  color: #dc2626;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.2s ease;
}
webform-form .file-list-clear:hover:not(:disabled) {
  background-color: #fee2e2;
}
webform-form .file-list-clear:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
webform-form .file-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  transition: all 0.2s ease;
  /* File Preview (for images) */
  /* File Icon (for non-images) */
  /* File Info */
  /* Remove Button */
}
webform-form .file-item:hover {
  background-color: #f8fafc;
  border-color: #cbd5e0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
webform-form .file-item-image {
  border-color: #10b981;
}
webform-form .file-item .file-preview {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  background-color: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}
webform-form .file-item .file-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
webform-form .file-item-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f1f5f9;
  border-radius: 6px;
  color: #64748b;
}
webform-form .file-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
webform-form .file-item-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1e293b;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
webform-form .file-item-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #64748b;
}
webform-form .file-item-size {
  font-weight: 500;
}
webform-form .file-item-type {
  padding: 0.125rem 0.375rem;
  background-color: #f1f5f9;
  border-radius: 3px;
  font-weight: 600;
  color: #475569;
}
webform-form .file-item-remove {
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #64748b;
  border-radius: 6px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
webform-form .file-item-remove:hover:not(:disabled) {
  background-color: #fee2e2;
  color: #dc2626;
}
webform-form .file-item-remove:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
webform-form .add-more-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem;
  background-color: #ffffff;
  border: 2px dashed #cbd5e0;
  border-radius: 8px;
  cursor: pointer;
  color: #3b82f6;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}
webform-form .add-more-button:hover:not(:disabled) {
  border-color: #3b82f6;
  background-color: #eff6ff;
}
webform-form .add-more-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
webform-form .max-files-warning {
  padding: 0.75rem;
  background-color: #fef3c7;
  border: 1px solid #fde047;
  border-radius: 6px;
  color: #92400e;
  font-size: 0.875rem;
  text-align: center;
  font-weight: 500;
  margin-top: 0.5rem;
}
webform-form .field-file {
  width: 100%;
}
webform-form .field-file-input-hidden {
  display: none;
}
webform-form .webform-error {
  display: flex;
  flex-direction: column;
  gap: var(--padding-2xl);
}
webform-form .webform-error .button-retry {
  --border-color: var(--color-secondary);
  --bg-color: var(--color-secondary);
  --text-color: var(--color-white);
}
