/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
@layer properties;
@layer theme, base, components, utilities;
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --color-gray-200: oklch(92.8% 0.006 264.531);
    --color-neutral-50: oklch(98.5% 0 0);
    --color-neutral-300: oklch(87% 0 0);
    --color-neutral-500: oklch(55.6% 0 0);
    --color-neutral-700: oklch(37.1% 0 0);
    --color-neutral-900: oklch(20.5% 0 0);
    --color-black: #000;
    --color-white: #fff;
    --spacing: 0.25rem;
    --text-sm: 0.875rem;
    --text-sm--line-height: calc(1.25 / 0.875);
    --text-base: 1rem;
    --text-base--line-height: calc(1.5 / 1);
    --text-lg: 1.125rem;
    --text-lg--line-height: calc(1.75 / 1.125);
    --text-xl: 1.25rem;
    --text-xl--line-height: calc(1.75 / 1.25);
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --radius-xs: 0.125rem;
    --radius-lg: 0.5rem;
    --aspect-video: 16 / 9;
    --default-transition-duration: 150ms;
    --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --color-primary: var(--color-primary-500);
    --color-foreground: var(--color-neutral-900);
    --color-muted-foreground: var(--color-neutral-700);
    --color-bg-dark: #263238;
    --color-bg-light: #f5f6f7;
    --color-border: #dddedf;
    --color-primary-500: #104d8c;
    --color-primary-800: color-mix(in srgb, #104d8c 60%, black);
    --color-secondary-500: #ddf24f;
    --spacing-section: var(--section-py);
    --spacing-section-gap: var(--section-gap-y);
    --spacing-row: var(--row-px);
    --spacing-list: var(--list-gap);
    --radius-theme: 4px;
  }
}
@layer utilities {
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border-width: 0;
  }
  .absolute {
    position: absolute;
  }
  .relative {
    position: relative;
  }
  .-inset-0 {
    inset: calc(var(--spacing) * -0);
  }
  .inset-0 {
    inset: calc(var(--spacing) * 0);
  }
  .-z-0 {
    z-index: calc(0 * -1);
  }
  .-z-1 {
    z-index: calc(1 * -1);
  }
  .col-span-6 {
    grid-column: span 6 / span 6;
  }
  .col-span-8 {
    grid-column: span 8 / span 8;
  }
  .col-span-12 {
    grid-column: span 12 / span 12;
  }
  .col-start-7 {
    grid-column-start: 7;
  }
  .mt-\[96px\] {
    margin-top: 96px;
  }
  .block {
    display: block;
  }
  .flex {
    display: flex;
  }
  .grid {
    display: grid;
  }
  .grid\! {
    display: grid !important;
  }
  .aspect-square {
    aspect-ratio: 1 / 1;
  }
  .aspect-video {
    aspect-ratio: var(--aspect-video);
  }
  .size-0 {
    width: calc(var(--spacing) * 0);
    height: calc(var(--spacing) * 0);
  }
  .size-6 {
    width: calc(var(--spacing) * 6);
    height: calc(var(--spacing) * 6);
  }
  .size-8 {
    width: calc(var(--spacing) * 8);
    height: calc(var(--spacing) * 8);
  }
  .size-10 {
    width: calc(var(--spacing) * 10);
    height: calc(var(--spacing) * 10);
  }
  .size-12 {
    width: calc(var(--spacing) * 12);
    height: calc(var(--spacing) * 12);
  }
  .size-20 {
    width: calc(var(--spacing) * 20);
    height: calc(var(--spacing) * 20);
  }
  .size-full {
    width: 100%;
    height: 100%;
  }
  .h-10\! {
    height: calc(var(--spacing) * 10) !important;
  }
  .h-\[540px\] {
    height: 540px;
  }
  .h-\[800px\] {
    height: 800px;
  }
  .max-h-\[80vh\] {
    max-height: 80vh;
  }
  .min-h-\[800px\] {
    min-height: 800px;
  }
  .w-full {
    width: 100%;
  }
  .max-w-\[440px\] {
    max-width: 440px;
  }
  .max-w-\[450px\] {
    max-width: 450px;
  }
  .max-w-\[480px\] {
    max-width: 480px;
  }
  .max-w-\[500px\] {
    max-width: 500px;
  }
  .flex-1 {
    flex: 1;
  }
  .flex-auto {
    flex: auto;
  }
  .flex-none {
    flex: none;
  }
  .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .flex-col {
    flex-direction: column;
  }
  .flex-row {
    flex-direction: row;
  }
  .flex-row\! {
    flex-direction: row !important;
  }
  .items-center {
    align-items: center;
  }
  .items-start {
    align-items: flex-start;
  }
  .justify-between {
    justify-content: space-between;
  }
  .justify-center {
    justify-content: center;
  }
  .justify-end {
    justify-content: flex-end;
  }
  .gap-0\! {
    gap: calc(var(--spacing) * 0) !important;
  }
  .gap-list {
    gap: var(--spacing-list);
  }
  .gap-list\! {
    gap: var(--spacing-list) !important;
  }
  .gap-row {
    gap: var(--spacing-row);
  }
  .gap-row\! {
    gap: var(--spacing-row) !important;
  }
  .gap-section {
    gap: var(--spacing-section-gap);
  }
  .gap-section {
    gap: var(--spacing-section);
  }
  .gap-dense {
    column-gap: calc(var(--spacing) * 1.5);
    row-gap: calc(var(--spacing) * 3);
  }
  .space-y-0 {
    :where(& > :not(:last-child)) {
      --tw-space-y-reverse: 0;
      margin-block-start: calc(calc(var(--spacing) * 0) * var(--tw-space-y-reverse));
      margin-block-end: calc(calc(var(--spacing) * 0) * calc(1 - var(--tw-space-y-reverse)));
    }
  }
  .space-y-row {
    :where(& > :not(:last-child)) {
      --tw-space-y-reverse: 0;
      margin-block-start: calc(var(--spacing-row) * var(--tw-space-y-reverse));
      margin-block-end: calc(var(--spacing-row) * calc(1 - var(--tw-space-y-reverse)));
    }
  }
  .gap-x-list {
    column-gap: var(--spacing-list);
  }
  .gap-y-row {
    row-gap: var(--spacing-row);
  }
  .gap-y-section {
    row-gap: var(--spacing-section);
  }
  .overflow-clip {
    overflow: clip;
  }
  .overflow-hidden {
    overflow: hidden;
  }
  .rounded-lg {
    border-radius: var(--radius-lg);
  }
  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }
  .bg-white {
    background-color: var(--color-white);
  }
  .fill-primary-800 {
    fill: var(--color-primary-800);
  }
  .stroke-primary-800 {
    stroke: var(--color-primary-800);
  }
  .object-cover {
    object-fit: cover;
  }
  .p-row {
    padding: var(--spacing-row);
  }
  .px-0 {
    padding-inline: calc(var(--spacing) * 0);
  }
  .px-0\! {
    padding-inline: calc(var(--spacing) * 0) !important;
  }
  .py-0 {
    padding-block: calc(var(--spacing) * 0);
  }
  .py-0\! {
    padding-block: calc(var(--spacing) * 0) !important;
  }
  .py-4 {
    padding-block: calc(var(--spacing) * 4);
  }
  .py-12 {
    padding-block: calc(var(--spacing) * 12);
  }
  .py-\[180px\] {
    padding-block: 180px;
  }
  .py-section {
    padding-block: var(--spacing-section);
  }
  .pt-0 {
    padding-top: calc(var(--spacing) * 0);
  }
  .pt-\[180px\] {
    padding-top: 180px;
  }
  .pb-0 {
    padding-bottom: calc(var(--spacing) * 0);
  }
  .pb-0\! {
    padding-bottom: calc(var(--spacing) * 0) !important;
  }
  .type-h3 {
    font-size: var(--text-xl);
    line-height: var(--tw-leading, var(--text-xl--line-height));
    --tw-leading: 1.4em;
    line-height: 1.4em;
    --tw-font-weight: var(--font-weight-bold);
    font-weight: var(--font-weight-bold);
    text-wrap: balance;
    hyphenate-limit-chars: 6 6 3;
    hyphens: auto;
  }
  .type-h2-balance {
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 129%;
    font-size: 28px;
    text-wrap: balance;
    @media (width >= 64rem) {
      font-size: 40px;
    }
  }
  .type-h4 {
    font-size: var(--text-lg);
    line-height: var(--tw-leading, var(--text-lg--line-height));
    --tw-leading: 1.4em;
    line-height: 1.4em;
    --tw-font-weight: var(--font-weight-semibold);
    font-weight: var(--font-weight-semibold);
    text-wrap: balance;
  }
  .type-display {
    font-size: 64px;
    font-style: normal;
    font-weight: 800;
    line-height: 130%;
    font-size: 40px;
    @media (width >= 64rem) {
      font-size: 64px;
    }
    hyphenate-limit-chars: 6 6 3;
    hyphens: auto;
  }
  .type-h2 {
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 129%;
    font-size: 46px;
    @media (width >= 64rem) {
      font-size: 40px;
    }
    hyphenate-limit-chars: 6 6 3;
    hyphens: auto;
  }
  .text-base {
    font-size: var(--text-base);
    line-height: var(--tw-leading, var(--text-base--line-height));
  }
  .text-sm {
    font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height));
  }
  .font-medium {
    --tw-font-weight: var(--font-weight-medium);
    font-weight: var(--font-weight-medium);
  }
  .text-balance {
    text-wrap: balance;
  }
  .text-primary {
    color: var(--color-primary);
  }
  .text-primary-50 {
    color: var(--color-primary-50);
  }
  .text-primary-500 {
    color: var(--color-primary-500);
  }
  .text-primary-800 {
    color: var(--color-primary-800);
  }
  .text-white {
    color: var(--color-white);
  }
  .text-white\! {
    color: var(--color-white) !important;
  }
  .outline-primary-800 {
    outline-color: var(--color-primary-800);
  }
  .md\:grid-cols-2 {
    @media (width >= 40rem) {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  .md\:grid-cols-4 {
    @media (width >= 40rem) {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }
  .md\:flex-row {
    @media (width >= 40rem) {
      flex-direction: row;
    }
  }
  .md\:justify-between {
    @media (width >= 40rem) {
      justify-content: space-between;
    }
  }
  .lg\:col-span-4 {
    @media (width >= 64rem) {
      grid-column: span 4 / span 4;
    }
  }
  .lg\:col-span-5 {
    @media (width >= 64rem) {
      grid-column: span 5 / span 5;
    }
  }
  .lg\:col-span-6 {
    @media (width >= 64rem) {
      grid-column: span 6 / span 6;
    }
  }
  .lg\:col-span-7 {
    @media (width >= 64rem) {
      grid-column: span 7 / span 7;
    }
  }
  .lg\:col-span-8 {
    @media (width >= 64rem) {
      grid-column: span 8 / span 8;
    }
  }
  .lg\:col-span-9 {
    @media (width >= 64rem) {
      grid-column: span 9 / span 9;
    }
  }
  .lg\:col-span-12 {
    @media (width >= 64rem) {
      grid-column: span 12 / span 12;
    }
  }
  .lg\:col-start-7 {
    @media (width >= 64rem) {
      grid-column-start: 7;
    }
  }
  .lg\:aspect-square {
    @media (width >= 64rem) {
      aspect-ratio: 1 / 1;
    }
  }
  .lg\:h-\[800px\] {
    @media (width >= 64rem) {
      height: 800px;
    }
  }
  .lg\:w-\[50\%\] {
    @media (width >= 64rem) {
      width: 50%;
    }
  }
  .lg\:grid-cols-2 {
    @media (width >= 64rem) {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  .lg\:grid-cols-4 {
    @media (width >= 64rem) {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }
  .lg\:grid-cols-12 {
    @media (width >= 64rem) {
      grid-template-columns: repeat(12, minmax(0, 1fr));
    }
  }
  .lg\:flex-row {
    @media (width >= 64rem) {
      flex-direction: row;
    }
  }
  .lg\:items-center {
    @media (width >= 64rem) {
      align-items: center;
    }
  }
  .lg\:justify-between {
    @media (width >= 64rem) {
      justify-content: space-between;
    }
  }
  .xl\:col-span-4 {
    @media (width >= 80rem) {
      grid-column: span 4 / span 4;
    }
  }
  .xl\:col-span-6 {
    @media (width >= 80rem) {
      grid-column: span 6 / span 6;
    }
  }
  .xl\:col-span-8 {
    @media (width >= 80rem) {
      grid-column: span 8 / span 8;
    }
  }
  .xl\:col-start-2 {
    @media (width >= 80rem) {
      grid-column-start: 2;
    }
  }
  .xl\:col-start-3 {
    @media (width >= 80rem) {
      grid-column-start: 3;
    }
  }
  .xl\:col-start-7 {
    @media (width >= 80rem) {
      grid-column-start: 7;
    }
  }
  .xl\:col-start-8 {
    @media (width >= 80rem) {
      grid-column-start: 8;
    }
  }
  .xl\:col-start-9 {
    @media (width >= 80rem) {
      grid-column-start: 9;
    }
  }
  .xl\:grid-cols-4 {
    @media (width >= 80rem) {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }
}
@layer components {
  :root {
    --section-py: 2.5rem;
    --section-gap-y: 1rem;
    --row-px: 1rem;
    --list-gap: 1.25rem;
  }
  @media (width >= 40rem) {
    :root {
      --section-gap-y: 1.5rem;
      --row-px: 1.5rem;
    }
  }
  @media (width >= 64rem) {
    :root {
      --section-py: 5rem;
    }
  }
  @media (width >= 80rem) {
    :root {
      --section-gap-y: 2rem;
      --row-px: 2rem;
    }
  }
}
.brxe-container:not(main):not(.brx-popup-content) {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  padding-inline: var(--spacing-row);
  @media (width >= 40rem) {
    max-width: 40rem;
  }
  @media (width >= 64rem) {
    max-width: 64rem;
  }
  @media (width >= 80rem) {
    max-width: 80rem;
  }
}
.brxe-container-section, .brxe-section {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-section-gap);
  padding-block: var(--spacing-section);
}
body {
  min-height: 100svh;
  main {
    flex: 1;
  }
}
html, body {
  font-size: unset;
  line-height: unset;
}
:where(a, [role='link'], button, [role='button'], input, textarea, [tabindex]:not([tabindex='-1'])) {
  outline-offset: 2px;
  &:focus-visible {
    outline: auto;
  }
}
.skip-link {
  position: fixed;
  left: -999px;
  top: 0;
  z-index: 9999;
  background: #000;
  padding: 0.75rem 1rem;
  border-radius: 0.25rem 0.25rem;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  &:focus-visible {
    top: calc(var(--wp-admin--admin-bar--height, 0px) + 12px);
    left: 12px;
  }
}
#wp-toolbar, #wp-toolbar > * {
  display: flex;
  flex-wrap: nowrap;
}
#wp-toolbar {
  justify-content: space-between;
}
#wp-toolbar > * > *, #wp-toolbar > *:not(:first-child) {
  flex: none;
}
#wp-toolbar > *:first-child {
  flex: 1;
  overflow: auto;
}
:root {
  --bricks-transition: all 0.2s cubic-bezier(0.25, 0, 0.25, 1);
  --bricks-color-primary: var(--color-primary-500);
  --bricks-color-secondary: var(--color-secondary-500);
  --bricks-text-dark: var(--color-foreground);
  --bricks-text-medium: var(--color-muted-foreground);
  --bricks-text-light: var(--color-muted-foreground);
  --bricks-bg-dark: var(--color-bg-dark);
  --bricks-bg-light: var(--color-bg-light);
  --bricks-border-color: var(--color-border);
  --bricks-border-radius: var(--radius-theme);
  --bricks-tooltip-bg: var(--color-bg-dark);
  --bricks-tooltip-text: var(--color-bg-light);
}
:is(.prose, .brxe-text, .brxe-post-content) {
  --tw-prose-body: var(--color-foreground);
  --tw-prose-headings: var(--color-foreground);
  --tw-prose-lead: var(--color-foreground);
  --tw-prose-links: var(--color-foreground);
  --tw-prose-bold: var(--color-foreground);
  --tw-prose-counters: var(--color-border);
  --tw-prose-bullets: var(--color-border);
  --tw-prose-hr: var(--color-foreground);
  --tw-prose-quotes: var(--color-foreground);
  --tw-prose-quote-borders: var(--color-border);
  --tw-prose-caps: var(--color-foreground);
  --tw-prose-code: var(--color-foreground);
  --tw-prose-pre-code: var(--color-foreground);
  --tw-prose-pre-bg: var(--color-foreground);
  --tw-prose-th-borders: var(--color-border);
  --tw-prose-td-borders: var(--color-border);
}
:is(.prose, .brxe-text, .brxe-post-content) :first-child {
  margin-top: calc(var(--spacing) * 0) !important;
}
:is(.prose, .brxe-text, .brxe-post-content) :last-child {
  margin-bottom: calc(var(--spacing) * 0) !important;
}
.is-on-brand {
  color: var(--color-white);
}
.is-on-brand :is(.prose, .brxe-text, .brxe-post-content) {
  --tw-prose-body: var(--color-white);
  --tw-prose-headings: var(--color-white);
  --tw-prose-lead: var(--color-white);
  --tw-prose-links: var(--color-white);
  --tw-prose-bold: var(--color-white);
  --tw-prose-counters: color-mix(in srgb, #fff 70%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    --tw-prose-counters: color-mix(in srgb, var(--color-white) 70%, transparent);
  }
  --tw-prose-bullets: color-mix(in srgb, #fff 70%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    --tw-prose-bullets: color-mix(in srgb, var(--color-white) 70%, transparent);
  }
  --tw-prose-hr: color-mix(in srgb, #fff 35%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    --tw-prose-hr: color-mix(in srgb, var(--color-white) 35%, transparent);
  }
  --tw-prose-quotes: var(--color-white);
  --tw-prose-quote-borders: color-mix(in srgb, #fff 35%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    --tw-prose-quote-borders: color-mix(in srgb, var(--color-white) 35%, transparent);
  }
  --tw-prose-code: var(--color-white);
  --tw-prose-pre-code: var(--color-white);
  --tw-prose-pre-bg: color-mix(in srgb, #000 45%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    --tw-prose-pre-bg: color-mix(in srgb, var(--color-black) 45%, transparent);
  }
  --tw-prose-th-borders: color-mix(in srgb, #fff 35%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    --tw-prose-th-borders: color-mix(in srgb, var(--color-white) 35%, transparent);
  }
  --tw-prose-td-borders: color-mix(in srgb, #fff 20%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    --tw-prose-td-borders: color-mix(in srgb, var(--color-white) 20%, transparent);
  }
}
.is-on-brand .pre-shell {
  background-color: var(--color-primary);
}
.brx-popup:not(.brx-infobox-popup):not(.brx-infobox-popup-builder) .brx-popup-backdrop {
  background-color: rgba(0, 0, 0, 0.2);
  transition: all 0.2s cubic-bezier(0.25, 0, 0.25, 1);
}
body header.brx-sticky {
  position: sticky;
  z-index: 10;
  border-bottom-style: var(--tw-border-style);
  border-bottom-width: 1px;
  border-color: transparent;
  background-color: transparent;
  top: var(--wp-admin--admin-bar--height, 0px);
}
body header.brx-sticky.scrolling {
  border-bottom-color: var(--color-gray-200);
  background-color: var(--color-white) !important;
}
.bricks-search-form > label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border-width: 0;
}
.bricks-search-form > input {
  width: 100%;
}
.brxe-icon {
  flex: none;
}
main > .brxe-divider.horizontal .line {
  height: calc(var(--spacing) * 10);
  --tw-border-style: none;
  border-style: none;
  background-color: var(--color-neutral-50);
}
.ui-button [data-type] {
  display: none !important;
}
.ui-button {
  --ui-button-border: transparent;
  --ui-button-text: var(--color-foreground);
  --ui-button-text-hover: var(--color-foreground);
  --ui-button-text-active: var(--color-foreground);
  --ui-button-bg: transparent;
  --ui-button-bg-hover: var(--ui-button-bg);
  --ui-button-bg-active: var(--ui-button-bg-hover);
  position: relative;
  isolation: isolate;
  display: flex;
  height: calc(var(--spacing) * 8);
  width: max-content;
  flex: none;
  cursor: pointer;
  align-items: center;
  gap: calc(var(--spacing) * 2);
  overflow: hidden;
  border-radius: 0.25rem;
  padding-inline: calc(var(--spacing) * 3);
  font-size: var(--text-base);
  line-height: var(--tw-leading, var(--text-base--line-height));
  --tw-font-weight: var(--font-weight-semibold);
  font-weight: var(--font-weight-semibold);
  transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
  transition-duration: var(--tw-duration, var(--default-transition-duration));
  color: var(--ui-button-text);
  border-color: var(--ui-button-border);
  &::after {
    content: '';
    pointer-events: none;
    position: absolute;
    inset: calc(var(--spacing) * 0);
    z-index: 0;
    border-radius: 0.25rem;
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
    background-color: var(--ui-button-bg);
  }
  &:hover, &:focus-visible {
    color: var(--ui-button-text-hover);
  }
  &:hover::after, &:focus-visible::after {
    background-color: var(--ui-button-bg-hover);
  }
  &:active::after {
    color: var(--ui-button-text-active);
    background-color: var(--ui-button-bg-active);
  }
}
.ui-button *:is(svg, i), .ui-button *:is(svg, i) * {
  fill: currentColor !important;
}
.ui-button > * {
  position: relative;
  z-index: 1;
}
.ui-button[data-layout='icon-only'] {
  width: calc(var(--spacing) * 8);
  height: calc(var(--spacing) * 8);
  justify-content: center;
  padding-inline: calc(var(--spacing) * 0);
}
.ui-button[data-layout='icon-only'] .brxe-div {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border-width: 0;
}
.ui-button:not([data-variant]), .ui-button[data-variant='default'] {
  border-style: var(--tw-border-style);
  border-width: 1px;
  --ui-button-border: var(--color-neutral-300);
  --ui-button-bg: var(--color-white);
  --ui-button-bg-hover: color-mix(in srgb, oklch(55.6% 0 0) 10%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    --ui-button-bg-hover: color-mix(in oklab, var(--color-neutral-500) 10%, transparent);
  }
  --ui-button-bg-active: color-mix(in srgb, oklch(55.6% 0 0) 13%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    --ui-button-bg-active: color-mix(in oklab, var(--color-neutral-500) 13%, transparent);
  }
}
.ui-button[data-variant='primary'] {
  --tw-border-style: none;
  border-style: none;
  --ui-button-text: var(--color-white);
  --ui-button-bg: var(--color-primary);
  --ui-button-bg-hover: color-mix(in srgb, #104d8c 90%, black);
  @supports (color: color-mix(in lab, red, red)) {
    --ui-button-bg-hover: color-mix(in srgb, var(--color-primary) 90%, black);
  }
  --ui-button-bg-active: color-mix(in srgb, #104d8c 80%, black);
  @supports (color: color-mix(in lab, red, red)) {
    --ui-button-bg-active: color-mix(in srgb, var(--color-primary) 80%, black);
  }
}
.ui-button[data-variant='outline'] {
  border-style: var(--tw-border-style);
  border-width: 1px;
  --ui-button-border: var(--color-neutral-300);
  --ui-button-bg: transparent;
  --ui-button-bg-hover: color-mix(in srgb, oklch(55.6% 0 0) 10%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    --ui-button-bg-hover: color-mix(in oklab, var(--color-neutral-500) 10%, transparent);
  }
  --ui-button-bg-active: color-mix(in srgb, oklch(55.6% 0 0) 13%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    --ui-button-bg-active: color-mix(in oklab, var(--color-neutral-500) 13%, transparent);
  }
}
.ui-button[data-variant='subtle'] {
  --tw-border-style: none;
  border-style: none;
  --ui-button-bg: transparent;
  --ui-button-bg-hover: color-mix(in srgb, oklch(55.6% 0 0) 10%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    --ui-button-bg-hover: color-mix(in oklab, var(--color-neutral-500) 10%, transparent);
  }
  --ui-button-bg-active: color-mix(in srgb, oklch(55.6% 0 0) 13%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    --ui-button-bg-active: color-mix(in oklab, var(--color-neutral-500) 13%, transparent);
  }
}
.ui-button[data-variant='transparent'] {
  --tw-border-style: none;
  border-style: none;
  --ui-button-bg: transparent;
  --ui-button-bg-hover: transparent;
  --ui-button-bg-active: transparent;
}
.ui-button[href=''], .ui-button:not([href]), .ui-button:disabled, .ui-button[aria-disabled='true'] {
  pointer-events: none;
  opacity: 30%;
}
.ui-link {
  display: flex;
  height: calc(var(--spacing) * 9);
  width: max-content;
  flex: none;
  cursor: pointer;
  flex-direction: row;
  align-items: center;
  gap: calc(var(--spacing) * 1);
  font-size: var(--text-lg);
  line-height: var(--tw-leading, var(--text-lg--line-height));
  --tw-font-weight: var(--font-weight-semibold);
  font-weight: var(--font-weight-semibold);
  color: var(--color-foreground);
}
.ui-link svg, .ui-link svg * {
  fill: currentcolor;
  color: currentcolor;
}
.ui-link.icon-rotate-45:focus-visible svg, .ui-link.icon-rotate-45:hover svg {
  rotate: 45deg;
  transition-property: transform, translate, scale, rotate;
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
  transition-duration: var(--tw-duration, var(--default-transition-duration));
}
.is-on-brand .ui-link {
  color: var(--color-white);
}
.brx-popup .ui-hidden-in-popup, body > :not(.brx-popup) .ui-hidden-outside-popup {
  display: none !important;
}
.brxe-accordion-nested {
  display: flex;
  flex-direction: column;
  gap: calc(var(--spacing) * 5);
}
.brxe-accordion-nested .accordion-title-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  min-height: calc(var(--spacing) * 10) !important;
  padding: calc(var(--spacing) * 0) !important;
}
.brxe-accordion-nested .accordion-content-wrapper {
  padding: calc(var(--spacing) * 0) !important;
}
.brxe-slider-nested {
  display: flex;
  flex-direction: column;
  gap: calc(var(--spacing) * 5);
}
.brxe-slider-nested:has(.splide__arrows), .brxe-slider-nested:has(.splide__pagination) {
  padding-bottom: calc(var(--spacing) * 12);
}
.brxe-slider-nested .splide__arrows {
  position: absolute;
  inset: calc(var(--spacing) * 0);
  top: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: calc(var(--spacing) * 10);
  padding-inline: calc(var(--spacing) * 0);
}
.brxe-slider-nested .splide__arrows .splide__arrow {
  fill: var(--color-foreground);
  width: calc(var(--spacing) * 6);
  height: calc(var(--spacing) * 6);
}
.brxe-slider-nested .splide__pagination {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  bottom: calc(var(--spacing) * 0);
  height: calc(var(--spacing) * 10);
  gap: calc(var(--spacing) * 3);
  padding-inline: calc(var(--spacing) * 0);
}
.brxe-slider-nested:has(.splide__arrows) .splide__pagination {
  padding-inline: calc(var(--spacing) * 10);
}
.brxe-slider-nested .splide__pagination .splide__pagination__page {
  border-radius: calc(infinity * 1px);
  border-style: var(--tw-border-style);
  border-width: 1px;
  border-color: var(--color-neutral-900);
  background-color: transparent;
  box-sizing: content-box;
  width: calc(var(--spacing) * 3);
  height: calc(var(--spacing) * 3);
}
.brxe-slider-nested .splide__pagination .splide__pagination__page[aria-selected] {
  background-color: var(--color-foreground);
}
.is-menu-column ul, .is-menu-column-end ul {
  display: flex;
  flex-direction: column;
  gap: calc(var(--spacing) * 1);
}
.is-menu-column-end ul {
  align-items: flex-end;
}
.is-menu-column ul > li, .is-menu-column-end ul > li {
  margin: calc(var(--spacing) * 0);
  width: max-content;
  font-size: var(--text-base);
  line-height: var(--tw-leading, var(--text-base--line-height));
  font-size: var(--text-lg);
  line-height: var(--tw-leading, var(--text-lg--line-height));
  text-decoration-line: underline;
  text-underline-offset: 3px;
}
@font-face {
  font-family: 'Manrope';
  font-weight: 200 800;
  font-display: swap;
  src: url(/wp-content/uploads/2026/04/Manrope-VariableFont_wght.woff2) format('woff2'), url(/wp-content/uploads/2026/04/Manrope-VariableFont_wght.woff) format('woff'), url(/wp-content/uploads/2026/04/Manrope-VariableFont_wght.ttf) format('truetype');
}
:root {
  --color-primary: #114BC5;
  --color-primary-50: #F5F7FA;
  --color-primary-100: #D9E8FF;
  --color-primary-800: #072971;
  --color-secondary: #424241;
}
html, body {
  font-family: 'Manrope', system-ui;
  scroll-behavior: smooth;
}
:is(h1,h2,h3,h4,h5,h6) {
  scroll-margin: calc(var(--spacing-section) + 72px);
}
:is(.brxe-text, .brxe-post-content) {
  color: var(--tw-prose-body);
  max-width: 65ch;
  :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
  }
  :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-lead);
    font-size: 1.25em;
    line-height: 1.6;
    margin-top: 1.2em;
    margin-bottom: 1.2em;
  }
  :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-links);
    text-decoration: underline;
    font-weight: 500;
  }
  :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-bold);
    font-weight: 600;
  }
  :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;
  }
  :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;
  }
  :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;
  }
  :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: decimal;
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    padding-inline-start: 1.625em;
  }
  :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: upper-alpha;
  }
  :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: lower-alpha;
  }
  :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: upper-alpha;
  }
  :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: lower-alpha;
  }
  :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: upper-roman;
  }
  :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: lower-roman;
  }
  :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: upper-roman;
  }
  :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: lower-roman;
  }
  :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: decimal;
  }
  :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: disc;
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    padding-inline-start: 1.625em;
  }
  :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
    font-weight: 400;
    color: var(--tw-prose-counters);
  }
  :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
    color: var(--tw-prose-bullets);
  }
  :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-headings);
    font-weight: 600;
    margin-top: 1.25em;
  }
  :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    border-color: var(--tw-prose-hr);
    border-top-width: 1px;
    margin-top: 3em;
    margin-bottom: 3em;
  }
  :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-weight: 500;
    font-style: italic;
    color: var(--tw-prose-quotes);
    border-inline-start-width: 0.25rem;
    border-inline-start-color: var(--tw-prose-quote-borders);
    quotes: "\201C""\201D""\2018""\2019";
    margin-top: 1.6em;
    margin-bottom: 1.6em;
    padding-inline-start: 1em;
  }
  :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
    content: open-quote;
  }
  :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
    content: close-quote;
  }
  :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-headings);
    font-weight: 800;
    font-size: 2.25em;
    margin-top: 0;
    margin-bottom: 0.8888889em;
    line-height: 1.1111111;
  }
  :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-weight: 900;
    color: inherit;
  }
  :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-headings);
    font-weight: 700;
    font-size: 1.5em;
    margin-top: 2em;
    margin-bottom: 1em;
    line-height: 1.3333333;
  }
  :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-weight: 800;
    color: inherit;
  }
  :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-headings);
    font-weight: 600;
    font-size: 1.25em;
    margin-top: 1.6em;
    margin-bottom: 0.6em;
    line-height: 1.6;
  }
  :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-weight: 700;
    color: inherit;
  }
  :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-headings);
    font-weight: 600;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    line-height: 1.5;
  }
  :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-weight: 700;
    color: inherit;
  }
  :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 2em;
    margin-bottom: 2em;
  }
  :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    display: block;
    margin-top: 2em;
    margin-bottom: 2em;
  }
  :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 2em;
    margin-bottom: 2em;
  }
  :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-weight: 500;
    font-family: inherit;
    color: var(--tw-prose-kbd);
    box-shadow: 0 0 0 1px var(--tw-prose-kbd-shadows), 0 3px 0 var(--tw-prose-kbd-shadows);
    font-size: 0.875em;
    border-radius: 0.3125rem;
    padding-top: 0.1875em;
    padding-inline-end: 0.375em;
    padding-bottom: 0.1875em;
    padding-inline-start: 0.375em;
  }
  :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-code);
    font-weight: 600;
    font-size: 0.875em;
  }
  :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
    content: "`";
  }
  :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
    content: "`";
  }
  :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;
  }
  :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;
  }
  :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;
    font-size: 0.875em;
  }
  :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;
    font-size: 0.9em;
  }
  :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;
  }
  :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;
  }
  :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;
  }
  :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-pre-code);
    background-color: var(--tw-prose-pre-bg);
    overflow-x: auto;
    font-weight: 400;
    font-size: 0.875em;
    line-height: 1.7142857;
    margin-top: 1.7142857em;
    margin-bottom: 1.7142857em;
    border-radius: 0.375rem;
    padding-top: 0.8571429em;
    padding-inline-end: 1.1428571em;
    padding-bottom: 0.8571429em;
    padding-inline-start: 1.1428571em;
  }
  :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    background-color: transparent;
    border-width: 0;
    border-radius: 0;
    padding: 0;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
  }
  :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
    content: none;
  }
  :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
    content: none;
  }
  :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    width: 100%;
    table-layout: auto;
    margin-top: 2em;
    margin-bottom: 2em;
    font-size: 0.875em;
    line-height: 1.7142857;
  }
  :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    border-bottom-width: 1px;
    border-bottom-color: var(--tw-prose-th-borders);
  }
  :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-headings);
    font-weight: 600;
    vertical-align: bottom;
    padding-inline-end: 0.5714286em;
    padding-bottom: 0.5714286em;
    padding-inline-start: 0.5714286em;
  }
  :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    border-bottom-width: 1px;
    border-bottom-color: var(--tw-prose-td-borders);
  }
  :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    border-bottom-width: 0;
  }
  :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    vertical-align: baseline;
  }
  :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    border-top-width: 1px;
    border-top-color: var(--tw-prose-th-borders);
  }
  :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    vertical-align: top;
  }
  :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    text-align: start;
  }
  :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
    margin-bottom: 0;
  }
  :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-captions);
    font-size: 0.875em;
    line-height: 1.4285714;
    margin-top: 0.8571429em;
  }
  --tw-prose-body: oklch(37.3% 0.034 259.733);
  --tw-prose-headings: oklch(21% 0.034 264.665);
  --tw-prose-lead: oklch(44.6% 0.03 256.802);
  --tw-prose-links: oklch(21% 0.034 264.665);
  --tw-prose-bold: oklch(21% 0.034 264.665);
  --tw-prose-counters: oklch(55.1% 0.027 264.364);
  --tw-prose-bullets: oklch(87.2% 0.01 258.338);
  --tw-prose-hr: oklch(92.8% 0.006 264.531);
  --tw-prose-quotes: oklch(21% 0.034 264.665);
  --tw-prose-quote-borders: oklch(92.8% 0.006 264.531);
  --tw-prose-captions: oklch(55.1% 0.027 264.364);
  --tw-prose-kbd: oklch(21% 0.034 264.665);
  --tw-prose-kbd-shadows: color-mix(in oklab, oklch(21% 0.034 264.665) 10%, transparent);
  --tw-prose-code: oklch(21% 0.034 264.665);
  --tw-prose-pre-code: oklch(92.8% 0.006 264.531);
  --tw-prose-pre-bg: oklch(27.8% 0.033 256.848);
  --tw-prose-th-borders: oklch(87.2% 0.01 258.338);
  --tw-prose-td-borders: oklch(92.8% 0.006 264.531);
  --tw-prose-invert-body: oklch(87.2% 0.01 258.338);
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: oklch(70.7% 0.022 261.325);
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: oklch(70.7% 0.022 261.325);
  --tw-prose-invert-bullets: oklch(44.6% 0.03 256.802);
  --tw-prose-invert-hr: oklch(37.3% 0.034 259.733);
  --tw-prose-invert-quotes: oklch(96.7% 0.003 264.542);
  --tw-prose-invert-quote-borders: oklch(37.3% 0.034 259.733);
  --tw-prose-invert-captions: oklch(70.7% 0.022 261.325);
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: rgb(255 255 255 / 10%);
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: oklch(87.2% 0.01 258.338);
  --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
  --tw-prose-invert-th-borders: oklch(44.6% 0.03 256.802);
  --tw-prose-invert-td-borders: oklch(37.3% 0.034 259.733);
  font-size: 1rem;
  line-height: 1.75;
  :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
    margin-bottom: 0;
  }
  :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }
  :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-start: 0.375em;
  }
  :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-start: 0.375em;
  }
  :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
  }
  :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.25em;
  }
  :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-bottom: 1.25em;
  }
  :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.25em;
  }
  :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-bottom: 1.25em;
  }
  :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
  }
  :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
  }
  :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0.5em;
    padding-inline-start: 1.625em;
  }
  :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
  }
  :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
  }
  :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
  }
  :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
  }
  :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-start: 0;
  }
  :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-end: 0;
  }
  :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-top: 0.5714286em;
    padding-inline-end: 0.5714286em;
    padding-bottom: 0.5714286em;
    padding-inline-start: 0.5714286em;
  }
  :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-start: 0;
  }
  :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-end: 0;
  }
  :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 2em;
    margin-bottom: 2em;
  }
  :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
  }
  :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-bottom: 0;
  }
  max-width: 100%;
}
:is(.brxe-text, .brxe-post-content, .text-base) {
  font-size: 18px;
}
:is(.brxe-text, .brxe-post-content) * {
  hyphenate-limit-chars: 6 6 3;
  hyphens: auto;
}
:is(.prose, .brxe-text, .brxe-post-content) {
  & a {
    --tw-font-weight: var(--font-weight-semibold);
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
    &:hover {
      @media (hover: hover) {
        text-decoration-line: underline;
      }
    }
  }
}
.is-on-brand :is(.prose, .brxe-text, .brxe-post-content) {
  & a {
    color: var(--color-white);
  }
}
.is-icon-with-hero {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
.is-icon-with-hero svg * {
  fill: var(--color-primary) !important;
}
.is-on-brand .is-icon-with-hero svg * {
  fill: var(--color-white) !important;
}
.is-blog-photo {
  display: block;
  aspect-ratio: 3/2;
  height: auto !important;
  width: 100% !important;
  flex: none;
  object-fit: cover;
}
body header.brx-sticky.scrolling {
  background: var(--color-white) !important;
}
.brxe-accordion-nested .accordion-title-wrapper {
  display: flex;
  height: calc(var(--spacing) * 18);
  flex-direction: row;
  align-items: center;
  &>div:has(svg) {
    display: flex;
    width: calc(var(--spacing) * 6);
    height: calc(var(--spacing) * 6);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xs);
    background-color: var(--color-primary);
  }
  &>div>svg {
    fill: var(--color-white);
  }
}
.brxe-accordion-nested .accordion-content-wrapper {
  :where(& > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
  }
  &>* {
    margin-bottom: var(--spacing-row) !important;
  }
}
.brxe-accordion-nested {
  gap: calc(var(--spacing) * 0) !important;
  border-top: 1px solid rgba(66, 66, 65, 0.1);
}
.brxe-accordion-nested>* {
  border-bottom: 1px solid rgba(66, 66, 65, 0.1);
}
.brxe-divider.horizontal>.line {
  border-top: 1px solid rgba(66, 66, 65, 0.1);
}
.brxe-nav-menu.show-mobile-menu .bricks-mobile-menu-toggle {
  z-index: 999;
}
@layer base {
  input:where([type='text']),input:where(:not([type])),input:where([type='email']),input:where([type='url']),input:where([type='password']),input:where([type='number']),input:where([type='date']),input:where([type='datetime-local']),input:where([type='month']),input:where([type='search']),input:where([type='tel']),input:where([type='time']),input:where([type='week']),select:where([multiple]),textarea,select {
    appearance: none;
    background-color: #fff;
    border-color: oklch(55.1% 0.027 264.364);
    border-width: 1px;
    border-radius: 0px;
    padding-top: 0.5rem;
    padding-right: 0.75rem;
    padding-bottom: 0.5rem;
    padding-left: 0.75rem;
    font-size: 1rem;
    line-height: 1.5rem;
    --tw-shadow: 0 0 #0000;
    &:focus {
      outline: 2px solid transparent;
      outline-offset: 2px;
      --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-color: oklch(54.6% 0.245 262.881);
      --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
      --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
      box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
      border-color: oklch(54.6% 0.245 262.881);
    }
  }
  input::placeholder,textarea::placeholder {
    color: oklch(55.1% 0.027 264.364);
    opacity: 1;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-date-and-time-value {
    min-height: 1.5em;
  }
  ::-webkit-date-and-time-value {
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field {
    padding-top: 0;
    padding-bottom: 0;
  }
  select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='oklch(55.1%25 0.027 264.364)' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    print-color-adjust: exact;
  }
  select:where([multiple]),select:where([size]:not([size="1"])) {
    background-image: initial;
    background-position: initial;
    background-repeat: unset;
    background-size: initial;
    padding-right: 0.75rem;
    print-color-adjust: unset;
  }
  input:where([type='checkbox']),input:where([type='radio']) {
    appearance: none;
    padding: 0;
    print-color-adjust: exact;
    display: inline-block;
    vertical-align: middle;
    background-origin: border-box;
    user-select: none;
    flex-shrink: 0;
    height: 1rem;
    width: 1rem;
    color: oklch(54.6% 0.245 262.881);
    background-color: #fff;
    border-color: oklch(55.1% 0.027 264.364);
    border-width: 1px;
    --tw-shadow: 0 0 #0000;
  }
  input:where([type='checkbox']) {
    border-radius: 0px;
  }
  input:where([type='radio']) {
    border-radius: 100%;
  }
  input:where([type='checkbox']):focus,input:where([type='radio']):focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
    --tw-ring-offset-width: 2px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: oklch(54.6% 0.245 262.881);
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }
  input:where([type='checkbox']):checked,input:where([type='radio']):checked {
    border-color: transparent;
    background-color: currentColor;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
  }
  input:where([type='checkbox']):checked {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
    @media (forced-colors: active) {
      appearance: auto;
    }
  }
  input:where([type='radio']):checked {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
    @media (forced-colors: active) {
      appearance: auto;
    }
  }
  input:where([type='checkbox']):checked:hover,input:where([type='checkbox']):checked:focus,input:where([type='radio']):checked:hover,input:where([type='radio']):checked:focus {
    border-color: transparent;
    background-color: currentColor;
  }
  input:where([type='checkbox']):indeterminate {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
    border-color: transparent;
    background-color: currentColor;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    @media (forced-colors: active) {
      appearance: auto;
    }
  }
  input:where([type='checkbox']):indeterminate:hover,input:where([type='checkbox']):indeterminate:focus {
    border-color: transparent;
    background-color: currentColor;
  }
  input:where([type='file']) {
    background: unset;
    border-color: inherit;
    border-width: 0;
    border-radius: 0;
    padding: 0;
    font-size: unset;
    line-height: inherit;
  }
  input:where([type='file']):focus {
    outline: 1px solid ButtonText;
    outline: 1px auto -webkit-focus-ring-color;
  }
}
@property --tw-space-y-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-leading {
  syntax: "*";
  inherits: false;
}
@property --tw-font-weight {
  syntax: "*";
  inherits: false;
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *, ::before, ::after, ::backdrop {
      --tw-space-y-reverse: 0;
      --tw-border-style: solid;
      --tw-leading: initial;
      --tw-font-weight: initial;
    }
  }
}
