:root {
    --v-tooltip-left: 50%;
    --v-tooltip-top: 0%;
    --v-tooltip-translate: translate(-50%, -110%);
    --v-tooltip-left-offset: 0px;
    --v-tooltip-top-offset: 0px;
    --v-tooltip-width: max-content;
    --v-tooltip-background-color: #000000;
    --v-tooltip-color: #ffffff;
    --v-tooltip-border-radius: 0.4rem;
    --v-tooltip-padding: 0.6em;
    --v-tooltip-font-size: 0.8rem;
    --v-tooltip-border: none;
    --v-tooltip-box-shadow: none;
    --v-tooltip-transition-duration: 0.25s;
    --v-tooltip-transition-delay: 0.3s;
    --v-tooltip-transition-timing-function: ease;
    --v-tooltip-arrow-display: none;
    --v-tooltip-arrow-border-color: var(--v-tooltip-background-color)
        transparent transparent transparent;
    --v-tooltip-arrow-top: calc(
        var(--v-tooltip-top) - var(--v-tooltip-top-offset) + 8px
    );
    --v-tooltip-arrow-left: calc(
        var(--v-tooltip-left) - var(--v-tooltip-left-offset)
    );
}
.data-v-tooltip {
    position: relative;
}
.data-v-tooltip::after {
    z-index: 2147483647;
    content: attr(data-v-tooltip);
    position: absolute;
    left: calc(var(--v-tooltip-left) - var(--v-tooltip-left-offset));
    top: calc(var(--v-tooltip-top) - var(--v-tooltip-top-offset));
    transform: var(--v-tooltip-translate);
    width: var(--v-tooltip-width);
    background-color: var(--v-tooltip-background-color);
    color: var(--v-tooltip-color);
    border-radius: var(--v-tooltip-border-radius);
    padding: var(--v-tooltip-padding);
    font-size: var(--v-tooltip-font-size);
    border: var(--v-tooltip-border);
    box-shadow: var(--v-tooltip-box-shadow);
    transition-property: all;
    transition-duration: var(--v-tooltip-transition-duration);
    transition-delay: 0s;
    transition-timing-function: var(--v-tooltip-transition-timing-function);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
/* arrow */
.data-v-tooltip::before {
    z-index: 2147483647;
    content: "";
    position: absolute;
    display: var(--v-tooltip-arrow-display);
    left: var(--v-tooltip-arrow-left);
    top: var(--v-tooltip-arrow-top);
    transform: var(--v-tooltip-translate);
    border-width: 5px;
    border-style: solid;
    border-color: var(--v-tooltip-arrow-border-color);
    transition-property: all;
    transition-duration: var(--v-tooltip-transition-duration);
    transition-delay: 0s;
    transition-timing-function: var(--v-tooltip-transition-timing-function);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.data-v-tooltip:hover::after,
.data-v-tooltip:hover::before {
    transition-duration: var(--v-tooltip-transition-duration);
    transition-delay: var(--v-tooltip-transition-delay);
    transition-timing-function: var(--v-tooltip-transition-timing-function);
    opacity: 1;
    visibility: visible;
}
.tippy-box {
    background-color: #ffe8ab;
    font-weight: 600;
    color: #140955;
    border-radius: 4px;
    padding: 0.5rem;
}
.tippy-box[data-placement^="top"] > .tippy-arrow:before {
    border-top-color: #ffe8ab;
}
.tippy-box[data-placement^="bottom"] > .tippy-arrow:before {
    border-bottom-color: #ffe8ab;
}
.tippy-box[data-placement^="left"] > .tippy-arrow:before {
    border-left-color: #ffe8ab;
}
.tippy-box[data-placement^="right"] > .tippy-arrow:before {
    border-right-color: #ffe8ab;
}
.tippy-box > .tippy-backdrop {
    background-color: #ffe8ab;
}
.tippy-box > .tippy-svg-arrow {
    fill: #ffe8ab;
}
/* ! tailwindcss v3.3.5 | MIT License | https://tailwindcss.com */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
*/
html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}
[type='text'],input:where(:not([type])),[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: #fff;
    border-color: #6b7280;
    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;
}
[type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select: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: #2563eb;
    --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: #2563eb;
}
input::-moz-placeholder, textarea::-moz-placeholder {
    color: #6b7280;
    opacity: 1;
}
input::placeholder,textarea::placeholder {
    color: #6b7280;
    opacity: 1;
}
::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
}
::-webkit-date-and-time-value {
    min-height: 1.5em;
    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='%236b7280' 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;
    -webkit-print-color-adjust: exact;
            print-color-adjust: exact;
}
[multiple],[size]:where(select:not([size="1"])) {
    background-image: initial;
    background-position: initial;
    background-repeat: unset;
    background-size: initial;
    padding-right: 0.75rem;
    -webkit-print-color-adjust: unset;
            print-color-adjust: unset;
}
[type='checkbox'],[type='radio'] {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    padding: 0;
    -webkit-print-color-adjust: exact;
            print-color-adjust: exact;
    display: inline-block;
    vertical-align: middle;
    background-origin: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    flex-shrink: 0;
    height: 1rem;
    width: 1rem;
    color: #2563eb;
    background-color: #fff;
    border-color: #6b7280;
    border-width: 1px;
    --tw-shadow: 0 0 #0000;
}
[type='checkbox'] {
    border-radius: 0px;
}
[type='radio'] {
    border-radius: 100%;
}
[type='checkbox']:focus,[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: #2563eb;
    --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);
}
[type='checkbox']:checked,[type='radio']:checked {
    border-color: transparent;
    background-color: currentColor;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}
[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");
}
[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");
}
[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus {
    border-color: transparent;
    background-color: currentColor;
}
[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;
}
[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus {
    border-color: transparent;
    background-color: currentColor;
}
[type='file'] {
    background: unset;
    border-color: inherit;
    border-width: 0;
    border-radius: 0;
    padding: 0;
    font-size: unset;
    line-height: inherit;
}
[type='file']:focus {
    outline: 1px solid ButtonText;
    outline: 1px auto -webkit-focus-ring-color;
}
*, ::before, ::after {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position:  ;
    --tw-gradient-via-position:  ;
    --tw-gradient-to-position:  ;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-inset:  ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ;
}
::backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position:  ;
    --tw-gradient-via-position:  ;
    --tw-gradient-to-position:  ;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-inset:  ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ;
}
.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
}
@media (min-width: 960px) {
    .container {
        max-width: 960px;
        padding-right: 3rem;
        padding-left: 3rem;
    }
}
@media (min-width: 1440px) {
    .container {
        max-width: 1440px;
        padding-right: 4rem;
        padding-left: 4rem;
    }
}
.form-input,.form-textarea,.form-select,.form-multiselect {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: #fff;
    border-color: #6b7280;
    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;
}
.form-input:focus, .form-textarea:focus, .form-select:focus, .form-multiselect: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: #2563eb;
    --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: #2563eb;
}
.form-input::-moz-placeholder, .form-textarea::-moz-placeholder {
    color: #6b7280;
    opacity: 1;
}
.form-input::placeholder,.form-textarea::placeholder {
    color: #6b7280;
    opacity: 1;
}
.form-input::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
}
.form-input::-webkit-date-and-time-value {
    min-height: 1.5em;
    text-align: inherit;
}
.form-input::-webkit-datetime-edit {
    display: inline-flex;
}
.form-input::-webkit-datetime-edit,.form-input::-webkit-datetime-edit-year-field,.form-input::-webkit-datetime-edit-month-field,.form-input::-webkit-datetime-edit-day-field,.form-input::-webkit-datetime-edit-hour-field,.form-input::-webkit-datetime-edit-minute-field,.form-input::-webkit-datetime-edit-second-field,.form-input::-webkit-datetime-edit-millisecond-field,.form-input::-webkit-datetime-edit-meridiem-field {
    padding-top: 0;
    padding-bottom: 0;
}
.form-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='%236b7280' 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;
    -webkit-print-color-adjust: exact;
            print-color-adjust: exact;
}
.form-select:where([size]:not([size="1"])) {
    background-image: initial;
    background-position: initial;
    background-repeat: unset;
    background-size: initial;
    padding-right: 0.75rem;
    -webkit-print-color-adjust: unset;
            print-color-adjust: unset;
}
.fixed {
    position: fixed;
}
.absolute {
    position: absolute;
}
.relative {
    position: relative;
}
.inset-0 {
    inset: 0px;
}
.bottom-0 {
    bottom: 0px;
}
.left-0 {
    left: 0px;
}
.right-0 {
    right: 0px;
}
.top-0 {
    top: 0px;
}
.z-10 {
    z-index: 10;
}
.col-span-1 {
    grid-column: span 1 / span 1;
}
.col-span-12 {
    grid-column: span 12 / span 12;
}
.col-span-5 {
    grid-column: span 5 / span 5;
}
.col-span-7 {
    grid-column: span 7 / span 7;
}
.m-4 {
    margin: 1rem;
}
.m-auto {
    margin: auto;
}
.my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.mb-12 {
    margin-bottom: 3rem;
}
.mb-2 {
    margin-bottom: 0.5rem;
}
.mb-4 {
    margin-bottom: 1rem;
}
.mb-6 {
    margin-bottom: 1.5rem;
}
.mb-8 {
    margin-bottom: 2rem;
}
.ml-3 {
    margin-left: 0.75rem;
}
.mt-16 {
    margin-top: 4rem;
}
.mt-2 {
    margin-top: 0.5rem;
}
.mt-8 {
    margin-top: 2rem;
}
.block {
    display: block;
}
.inline-block {
    display: inline-block;
}
.inline {
    display: inline;
}
.flex {
    display: flex;
}
.grid {
    display: grid;
}
.hidden {
    display: none;
}
.h-1\/2 {
    height: 50%;
}
.h-12 {
    height: 3rem;
}
.h-4 {
    height: 1rem;
}
.h-6 {
    height: 1.5rem;
}
.h-full {
    height: 100%;
}
.h-screen {
    height: 100vh;
}
.max-h-\[65\%\] {
    max-height: 65%;
}
.w-11\/12 {
    width: 91.666667%;
}
.w-12 {
    width: 3rem;
}
.w-4 {
    width: 1rem;
}
.w-6 {
    width: 1.5rem;
}
.w-\[260px\] {
    width: 260px;
}
.w-full {
    width: 100%;
}
.w-screen {
    width: 100vw;
}
.max-w-2xl {
    max-width: 42rem;
}
.max-w-3xl {
    max-width: 48rem;
}
.max-w-4xl {
    max-width: 56rem;
}
.max-w-\[256px\] {
    max-width: 256px;
}
.max-w-\[360px\] {
    max-width: 360px;
}
.max-w-\[90\%\] {
    max-width: 90%;
}
.max-w-xl {
    max-width: 36rem;
}
.flex-grow {
    flex-grow: 1;
}
.grow {
    flex-grow: 1;
}
.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.cursor-pointer {
    cursor: pointer;
}
.appearance-none {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
}
.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.flex-row {
    flex-direction: row;
}
.flex-col {
    flex-direction: column;
}
.items-start {
    align-items: flex-start;
}
.items-center {
    align-items: center;
}
.justify-start {
    justify-content: flex-start;
}
.justify-end {
    justify-content: flex-end;
}
.justify-center {
    justify-content: center;
}
.justify-between {
    justify-content: space-between;
}
.gap-12 {
    gap: 3rem;
}
.gap-16 {
    gap: 4rem;
}
.gap-4 {
    gap: 1rem;
}
.gap-6 {
    gap: 1.5rem;
}
.gap-8 {
    gap: 2rem;
}
.gap-y-8 {
    row-gap: 2rem;
}
.space-y-5 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
}
.overflow-auto {
    overflow: auto;
}
.overflow-y-auto {
    overflow-y: auto;
}
.rounded {
    border-radius: 0.25rem;
}
.rounded-full {
    border-radius: 9999px;
}
.rounded-lg {
    border-radius: 0.5rem;
}
.rounded-md {
    border-radius: 0.375rem;
}
.rounded-xl {
    border-radius: 0.75rem;
}
.border {
    border-width: 1px;
}
.border-b-2 {
    border-bottom-width: 2px;
}
.border-brand-background {
    --tw-border-opacity: 1;
    border-color: rgb(255 248 229 / var(--tw-border-opacity));
}
.border-brand-primary {
    --tw-border-opacity: 1;
    border-color: rgb(20 9 85 / var(--tw-border-opacity));
}
.border-gray-300 {
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-border-opacity));
}
.bg-\[rgba\(0\2c 0\2c 0\2c 0\.6\)\] {
    background-color: rgba(0,0,0,0.6);
}
.bg-brand-background {
    --tw-bg-opacity: 1;
    background-color: rgb(255 248 229 / var(--tw-bg-opacity));
}
.bg-brand-primary {
    --tw-bg-opacity: 1;
    background-color: rgb(20 9 85 / var(--tw-bg-opacity));
}
.bg-brand-secondary {
    --tw-bg-opacity: 1;
    background-color: rgb(118 107 246 / var(--tw-bg-opacity));
}
.bg-footer-dark {
    --tw-bg-opacity: 1;
    background-color: rgb(14 7 56 / var(--tw-bg-opacity));
}
.bg-gray-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}
.bg-gray-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(55 65 81 / var(--tw-bg-opacity));
}
.bg-splash-dark-green {
    --tw-bg-opacity: 1;
    background-color: rgb(0 99 81 / var(--tw-bg-opacity));
}
.bg-splash-light-green {
    --tw-bg-opacity: 1;
    background-color: rgb(185 242 221 / var(--tw-bg-opacity));
}
.bg-splash-off-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 254 249 / var(--tw-bg-opacity));
}
.bg-splash-purple {
    --tw-bg-opacity: 1;
    background-color: rgb(228 193 254 / var(--tw-bg-opacity));
}
.bg-splash-salmon {
    --tw-bg-opacity: 1;
    background-color: rgb(247 131 105 / var(--tw-bg-opacity));
}
.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-auto {
    background-size: auto;
}
.bg-no-repeat {
    background-repeat: no-repeat;
}
.object-contain {
    -o-object-fit: contain;
       object-fit: contain;
}
.object-cover {
    -o-object-fit: cover;
       object-fit: cover;
}
.object-center {
    -o-object-position: center;
       object-position: center;
}
.p-12 {
    padding: 3rem;
}
.p-16 {
    padding: 4rem;
}
.p-2 {
    padding: 0.5rem;
}
.p-2\.5 {
    padding: 0.625rem;
}
.p-24 {
    padding: 6rem;
}
.p-3 {
    padding: 0.75rem;
}
.p-4 {
    padding: 1rem;
}
.p-6 {
    padding: 1.5rem;
}
.p-8 {
    padding: 2rem;
}
.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}
.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}
.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.pb-2 {
    padding-bottom: 0.5rem;
}
.pb-4 {
    padding-bottom: 1rem;
}
.pl-2 {
    padding-left: 0.5rem;
}
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.font-heading {
    font-family: PPFragment-Glare, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.font-sans {
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}
.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}
.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}
.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}
.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}
.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.font-bold {
    font-weight: 700;
}
.font-thin {
    font-weight: 100;
}
.uppercase {
    text-transform: uppercase;
}
.lowercase {
    text-transform: lowercase;
}
.capitalize {
    text-transform: capitalize;
}
.italic {
    font-style: italic;
}
.leading-6 {
    line-height: 1.5rem;
}
.tracking-wider {
    letter-spacing: 0.05em;
}
.text-black {
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity));
}
.text-brand-background {
    --tw-text-opacity: 1;
    color: rgb(255 248 229 / var(--tw-text-opacity));
}
.text-brand-primary {
    --tw-text-opacity: 1;
    color: rgb(20 9 85 / var(--tw-text-opacity));
}
.text-brand-secondary {
    --tw-text-opacity: 1;
    color: rgb(118 107 246 / var(--tw-text-opacity));
}
.text-gray-900 {
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity));
}
.text-indigo-600 {
    --tw-text-opacity: 1;
    color: rgb(79 70 229 / var(--tw-text-opacity));
}
.text-red-500 {
    --tw-text-opacity: 1;
    color: rgb(239 68 68 / var(--tw-text-opacity));
}
.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
.opacity-0 {
    opacity: 0;
}
.shadow-md {
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl {
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.drop-shadow-lg {
    --tw-drop-shadow: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.duration-300 {
    transition-duration: 300ms;
}
@font-face {
    font-family: "PPFragment-Glare";
    src: url('/assets/fonts/PPFragment-GlareRegular.woff2') format('woff2'),
        url('/assets/fonts/PPFragment-GlareRegular.woff') format('woff'),
        url('/assets/fonts/PPFragment-GlareRegular.ttf') format('truetype'),
        url('/assets/fonts/PPFragment-GlareRegular.otf') format("opentype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "PPFragment-Glare";
    src: url('/assets/fonts/PPFragment-GlareBold.woff2') format('woff2'),
        url('/assets/fonts/PPFragment-GlareBold.woff') format('woff'),
        url('/assets/fonts/PPFragment-GlareBold.ttf') format('truetype'),
        url('/assets/fonts/PPFragment-GlareBold.otf') format("opentype");
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: "PPFragment-Glare";
    src: url('/assets/fonts/PPFragment-GlareRegularItalic.woff2') format('woff2'),
        url('/assets/fonts/PPFragment-GlareRegularItalic.woff') format('woff'),
        url('/assets/fonts/PPFragment-GlareRegularItalic.ttf') format('truetype'),
        url('/assets/fonts/PPFragment-GlareRegularItalic.otf') format("opentype");
    font-weight: normal;
    font-style: italic;
}
@font-face {
    font-family: "PPFragment-Glare";
    src: url('/assets/fonts/PPFragment-GlareBoldItalic.woff2') format('woff2'),
        url('/assets/fonts/PPFragment-GlareBoldItalic.woff') format('woff'),
        url('/assets/fonts/PPFragment-GlareBoldItalic.ttf') format('truetype'),
        url('/assets/fonts/PPFragment-GlareBoldItalic.otf') format("opentype");
    font-weight: bold;
    font-style: italic;
}
/* Neue Montreal */
@font-face {
    font-family: "PPNeueMontreal";
    src: url('/assets/fonts/PPNeueMontreal-Regular.woff2') format('woff2'),
        url('/assets/fonts/PPNeueMontreal-Regular.woff') format('woff'),
        url('/assets/fonts/PPNeueMontreal-Regular.ttf') format('truetype'),
        url('/assets/fonts/PPNeueMontreal-Regular.otf') format("opentype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "PPNeueMontreal";
    src: url('/assets/fonts/PPNeueMontreal-Bold.woff2') format('woff2'),
        url('/assets/fonts/PPNeueMontreal-Bold.woff') format('woff'),
        url('/assets/fonts/PPNeueMontreal-Bold.ttf') format('truetype'),
        url('/assets/fonts/PPNeueMontreal-Bold.otf') format("opentype");
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: "PPNeueMontreal";
    src: url('/assets/fonts/PPNeueMontreal-BoldItalic.woff2') format('woff2'),
        url('/assets/fonts/PPNeueMontreal-BoldItalic.woff') format('woff'),
        url('/assets/fonts/PPNeueMontreal-BoldItalic.ttf') format('truetype'),
        url('/assets/fonts/PPNeueMontreal-BoldItalic.otf') format("opentype");
    font-weight: normal;
    font-style: italic;
}
@font-face {
    font-family: "PPNeueMontreal";
    src: url('/assets/fonts/PPNeueMontreal-Italic.woff2') format('woff2'),
        url('/assets/fonts/PPNeueMontreal-Italic.woff') format('woff'),
        url('/assets/fonts/PPNeueMontreal-Italic.ttf') format('truetype'),
        url('/assets/fonts/PPNeueMontreal-Italic.otf') format("opentype");
    font-weight: bold;
    font-style: italic;
}
* {
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.hamburger {
    margin: 1rem;
    display: flex;
    outline: none;
    height: 37px;
    width: 52px;
    border: 0px;
    padding: 0px;
    background: transparent;
    transition: all 250ms ease-out;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}
.hamburger:before, .hamburger:after {
    content: '';
    width: 37px;
    height: 4px;
    position: absolute;
    border-radius: 2px;
    background: #766bf6;
    transition: all 250ms ease-out;
    will-change: transform;
}
.hamburger:before {
    transform: translateY(-6px);
}
.hamburger:after {
    transform: translateY(6px);
}
.active.hamburger:before {
    transform: translateY(0) rotate(45deg);
}
.active.hamburger:after {
    transform: translateY(0) rotate(-45deg);
}
.header-nav {
    height: 100px;
}
.mobile-nav__link {
    padding: 1rem;
}
.mobile-nav__link--link {
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1.75rem;
    --tw-text-opacity: 1;
    color: rgb(20 9 85 / var(--tw-text-opacity));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.mobile-nav__link--link:hover {
    --tw-text-opacity: 1;
    color: rgb(118 107 246 / var(--tw-text-opacity));
}
.mobile-nav__link--secondary-link {
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1.75rem;
    --tw-text-opacity: 1;
    color: rgb(118 107 246 / var(--tw-text-opacity));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.mobile-nav__link--secondary-link:hover {
    --tw-text-opacity: 1;
    color: rgb(20 9 85 / var(--tw-text-opacity));
}
.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}
.desktop-nav__link {
    padding: 1rem;
}
.desktop-nav__link--link {
    cursor: pointer;
    --tw-text-opacity: 1;
    color: rgb(20 9 85 / var(--tw-text-opacity));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.desktop-nav__link--link:hover {
    --tw-text-opacity: 1;
    color: rgb(118 107 246 / var(--tw-text-opacity));
}
.desktop-nav__link--secondary-link {
    cursor: pointer;
    --tw-text-opacity: 1;
    color: rgb(118 107 246 / var(--tw-text-opacity));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.desktop-nav__link--secondary-link:hover {
    --tw-text-opacity: 1;
    color: rgb(20 9 85 / var(--tw-text-opacity));
}
.button {
    width: 100%;
    cursor: pointer;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgb(118 107 246 / var(--tw-bg-opacity));
    padding-left: 3rem;
    padding-right: 3rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: center;
    font-family: PPFragment-Glare, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.button:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(20 9 85 / var(--tw-bg-opacity));
}
@media (min-width: 1440px) {
    .button {
        max-width: 24rem;
    }
}
.button.small {
    width: 100%;
    max-width: 20rem;
    cursor: pointer;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgb(118 107 246 / var(--tw-bg-opacity));
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    text-align: center;
    font-family: PPFragment-Glare, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.button.small:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(20 9 85 / var(--tw-bg-opacity));
}
.button.dark {
    width: 100%;
    cursor: pointer;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgb(20 9 85 / var(--tw-bg-opacity));
    padding-left: 3rem;
    padding-right: 3rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: center;
    font-family: PPFragment-Glare, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.button.dark:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(14 7 56 / var(--tw-bg-opacity));
}
@media (min-width: 1440px) {
    .button.dark {
        max-width: 24rem;
    }
}
.button.dark.small {
    width: 100%;
    max-width: 20rem;
    cursor: pointer;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgb(20 9 85 / var(--tw-bg-opacity));
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    text-align: center;
    font-family: PPFragment-Glare, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.button.dark.small:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(14 7 56 / var(--tw-bg-opacity));
}
.search-btn {
    width: 100%;
    cursor: pointer;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgb(118 107 246 / var(--tw-bg-opacity));
    padding-left: 3rem;
    padding-right: 3rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: center;
    font-family: PPFragment-Glare, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.search-btn:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(20 9 85 / var(--tw-bg-opacity));
}
@media (min-width: 1440px) {
    .search-btn {
        max-width: 24rem;
    }
}
.button-secondary {
    width: 100%;
    cursor: pointer;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgb(255 248 229 / var(--tw-bg-opacity));
    padding-left: 3rem;
    padding-right: 3rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: center;
    font-family: PPFragment-Glare, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(20 9 85 / var(--tw-text-opacity));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.button-secondary:hover {
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgb(118 107 246 / var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
@media (min-width: 1440px) {
    .button-secondary {
        max-width: 24rem;
    }
}
.button-secondary.small {
    width: 100%;
    max-width: 20rem;
    cursor: pointer;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgb(255 248 229 / var(--tw-bg-opacity));
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    text-align: center;
    font-family: PPFragment-Glare, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(20 9 85 / var(--tw-text-opacity));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.button-secondary.small:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(118 107 246 / var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
.button-transparent {
    width: 100%;
    cursor: pointer;
    border-radius: 9999px;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(20 9 85 / var(--tw-border-opacity));
    padding-left: 3rem;
    padding-right: 3rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: center;
    font-family: PPFragment-Glare, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(20 9 85 / var(--tw-text-opacity));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.button-transparent:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(118 107 246 / var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
@media (min-width: 1440px) {
    .button-transparent {
        max-width: 24rem;
    }
}
.button-transparent.small {
    width: 100%;
    max-width: 20rem;
    cursor: pointer;
    border-radius: 9999px;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(20 9 85 / var(--tw-border-opacity));
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    text-align: center;
    font-family: PPFragment-Glare, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(20 9 85 / var(--tw-text-opacity));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.button-transparent.small:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(118 107 246 / var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
.card {
    display: flex;
    width: 100%;
    flex-direction: column;
    border-radius: 0.5rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    padding: 1rem;
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.card select {
    width: 100%;
    border-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 248 229 / var(--tw-bg-opacity));
    padding: 0.5rem;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --tw-text-opacity: 1;
    color: rgb(20 9 85 / var(--tw-text-opacity));
}
.card:hover {
    --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.recent-card {
    width: 100%;
    border-radius: 0.5rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    padding: 1rem;
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.recent-card:hover {
    --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.mobile-logo {
    margin: 1rem;
    max-width: 52px;
    max-height: 37px;
    -o-object-fit: cover;
       object-fit: cover;
}
.desktop-logo {
    margin: 1rem;
    max-width: 234px;
    max-height: 50px;
    -o-object-fit: cover;
       object-fit: cover;
}
.feature_block_feature--icon {
        width: 45px;
    }
.section {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
@media (min-width: 1440px) {
    .section {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}
.section-small {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
@media (min-width: 1440px) {
    .section-small {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}
.top-padding-only {
    padding-top: 3rem;
    padding-bottom: 0px;
}
@media (min-width: 1440px) {
    .top-padding-only {
        padding-top: 8rem;
    }
}
.bottom-padding-only {
    padding-bottom: 3rem;
    padding-top: 0px;
}
@media (min-width: 1440px) {
    .bottom-padding-only {
        padding-bottom: 8rem;
    }
}
.no-padding {
    padding-top: 0px;
    padding-bottom: 0px;
}
.minimal-padding {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.h1 {
    margin-bottom: 2rem;
    font-family: PPFragment-Glare, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 2.25rem;
    line-height: 2rem;
    --tw-text-opacity: 1;
    color: rgb(20 9 85 / var(--tw-text-opacity));
}
@media (min-width: 960px) {
    .h1 {
        font-size: 3rem;
        line-height: 1;
    }
}
@media (min-width: 1440px) {
    .h1 {
        font-size: 3.75rem;
        line-height: 1;
    }
}
.h1-light {
    margin-bottom: 2rem;
    font-family: PPFragment-Glare, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 2.25rem;
    line-height: 2rem;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
@media (min-width: 960px) {
    .h1-light {
        font-size: 3rem;
        line-height: 1;
    }
}
@media (min-width: 1440px) {
    .h1-light {
        font-size: 3.75rem;
        line-height: 1;
    }
}
.h2 {
    margin-bottom: 1rem;
    font-family: PPFragment-Glare, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1.875rem;
    line-height: 2.25rem;
    --tw-text-opacity: 1;
    color: rgb(20 9 85 / var(--tw-text-opacity));
}
@media (min-width: 960px) {
    .h2 {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}
@media (min-width: 1440px) {
    .h2 {
        font-size: 3rem;
        line-height: 1;
    }
}
.h2-light {
    margin-bottom: 1rem;
    font-family: PPFragment-Glare, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1.875rem;
    line-height: 2.25rem;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
@media (min-width: 960px) {
    .h2-light {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}
@media (min-width: 1440px) {
    .h2-light {
        font-size: 3rem;
        line-height: 1;
    }
}
.h3 {
    margin-bottom: 1rem;
    font-family: PPFragment-Glare, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1.5rem;
    line-height: 2rem;
    --tw-text-opacity: 1;
    color: rgb(20 9 85 / var(--tw-text-opacity));
}
.h3-light {
    margin-bottom: 1rem;
    font-family: PPFragment-Glare, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1.5rem;
    line-height: 2rem;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
.select-wrapper {
    overflow: hidden;
    position: relative;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
.select-wrapper:after {
    --tw-text-opacity: 1;
    color: rgb(20 9 85 / var(--tw-text-opacity));
        content: "▼";
        padding: 11px 0px;
        position: absolute;
        right: -11px;
        font-size: 12px;
        top: 0;
        z-index: 1;
        text-align: center;
        width: 10%;
        height: 100%;
        pointer-events: none;
}
.select-wrapper select {
        appearance: none;
        width: 100%;
        -moz-appearance: none; 
        -webkit-appearance: none;
    }
.select-wrapper select option:disabled {
            color: #000;
            font-weight: bold;
        }
/* Form Styles */
form.fb-form-class {
    display: flex;
    flex-direction: column;
}
form.fb-form-class select {
    width: 100%;
    border-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 248 229 / var(--tw-bg-opacity));
    padding: 0.5rem;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --tw-text-opacity: 1;
    color: rgb(20 9 85 / var(--tw-text-opacity));
}
form.fb-form-class input[type="text"], form.fb-form-class input[type="date"], form.fb-form-class input[type="datetime"], form.fb-form-class input[type="number"], form.fb-form-class input[type="email"], form.fb-form-class input[type="phone"], form.fb-form-class input[type="search"], form.fb-form-class select {
    width: 100%;
    border-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 248 229 / var(--tw-bg-opacity));
    padding: 0.5rem;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --tw-text-opacity: 1;
    color: rgb(20 9 85 / var(--tw-text-opacity));
}
form.fb-form-class label {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
form.fb-form-class select {
    width: 100%;
    border-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 248 229 / var(--tw-bg-opacity));
    padding: 0.5rem;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --tw-text-opacity: 1;
    color: rgb(118 107 246 / var(--tw-text-opacity));
}
form.fb-form-class .form-col label:not(.label-required) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
form.fb-form-class .form-col label.label-required {
    position: relative;
    margin: 0.5rem;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
            height: unset;
            width: unset;
            overflow: unset;
}
form.fb-form-class .form-col label.label-required.label-checkbox {
                display: flex;
                justify-content: center;
                align-items: center;
                max-width: 400px;
                text-wrap: balance;
                white-space:normal;
            }
form.fb-form-class .form-col label.label-required.label-checkbox input[type="checkbox"] {
                    margin-right: 1rem;
                }
form.fb-form-class .form-col input[type="text"], form.fb-form-class .form-col input[type="date"], form.fb-form-class .form-col input[type="datetime"], form.fb-form-class .form-col input[type="number"], form.fb-form-class .form-col input[type="email"], form.fb-form-class .form-col input[type="phone"], form.fb-form-class .form-col input[type="search"], form.fb-form-class .form-col select {
    margin: 0.5rem;
    width: 100%;
    border-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 248 229 / var(--tw-bg-opacity));
    padding: 0.5rem;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --tw-text-opacity: 1;
    color: rgb(118 107 246 / var(--tw-text-opacity));
}
form.fb-form-class .form-col input[type="text"]::-moz-placeholder, form.fb-form-class .form-col input[type="date"]::-moz-placeholder, form.fb-form-class .form-col input[type="datetime"]::-moz-placeholder, form.fb-form-class .form-col input[type="number"]::-moz-placeholder, form.fb-form-class .form-col input[type="email"]::-moz-placeholder, form.fb-form-class .form-col input[type="phone"]::-moz-placeholder, form.fb-form-class .form-col input[type="search"]::-moz-placeholder, form.fb-form-class .form-col select::-moz-placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(118 107 246 / var(--tw-placeholder-opacity));
}
form.fb-form-class .form-col input[type="text"]::placeholder, form.fb-form-class .form-col input[type="date"]::placeholder, form.fb-form-class .form-col input[type="datetime"]::placeholder, form.fb-form-class .form-col input[type="number"]::placeholder, form.fb-form-class .form-col input[type="email"]::placeholder, form.fb-form-class .form-col input[type="phone"]::placeholder, form.fb-form-class .form-col input[type="search"]::placeholder, form.fb-form-class .form-col select::placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(118 107 246 / var(--tw-placeholder-opacity));
}
form.fb-form-class .form-col input[type="submit"] {

        }
form.fb-form-class .form-col textarea {
    margin: 0.5rem;
    width: 100%;
    border-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 248 229 / var(--tw-bg-opacity));
    padding: 0.5rem;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --tw-text-opacity: 1;
    color: rgb(118 107 246 / var(--tw-text-opacity));
}
form.fb-form-class .form-col textarea::-moz-placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(118 107 246 / var(--tw-placeholder-opacity));
}
form.fb-form-class .form-col textarea::placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(118 107 246 / var(--tw-placeholder-opacity));
}
form.fb-form-class .form-col select {
    margin: 0.5rem;
    width: 100%;
    border-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 248 229 / var(--tw-bg-opacity));
    padding: 0.5rem;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --tw-text-opacity: 1;
    color: rgb(118 107 246 / var(--tw-text-opacity));
}
form.fb-form-class .form-col select::-moz-placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(118 107 246 / var(--tw-placeholder-opacity));
}
form.fb-form-class .form-col select::placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(118 107 246 / var(--tw-placeholder-opacity));
}
form.fb-form-class-important {
    display: flex;
    flex-direction: column;
}
form.fb-form-class-important select {
    width: 100%;
    border-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 248 229 / var(--tw-bg-opacity));
    padding: 0.5rem;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --tw-text-opacity: 1;
    color: rgb(20 9 85 / var(--tw-text-opacity));
}
form.fb-form-class-important input[type="text"], form.fb-form-class-important input[type="date"], form.fb-form-class-important input[type="datetime"], form.fb-form-class-important input[type="datetime-local"] input[type="number"], form.fb-form-class-important input[type="email"], form.fb-form-class-important input[type="phone"], form.fb-form-class-important input[type="search"], form.fb-form-class-important select, form.fb-form-class-important textarea {
    width: 100% !important;
    border-radius: 0.375rem !important;
    --tw-bg-opacity: 1 !important;
    background-color: rgb(255 248 229 / var(--tw-bg-opacity)) !important;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    --tw-text-opacity: 1 !important;
    color: rgb(20 9 85 / var(--tw-text-opacity)) !important;
    padding: 0.5rem !important;
}
form.fb-form-class-important label {
    --tw-text-opacity: 1 !important;
    color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
}
form.fb-form-class-important select {
    width: 100% !important;
    border-radius: 0.375rem !important;
    --tw-bg-opacity: 1 !important;
    background-color: rgb(255 248 229 / var(--tw-bg-opacity)) !important;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    --tw-text-opacity: 1 !important;
    color: rgb(118 107 246 / var(--tw-text-opacity)) !important;
    padding: 0.5rem !important;
}
form.fb-form-class-important .form-col label:not(.label-required) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
form.fb-form-class-important .form-col label.label-required {
    position: relative;
    margin: 0.5rem;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
            height: unset;
            width: unset;
            overflow: unset;
}
form.fb-form-class-important .form-col label.label-required.label-checkbox {
                display: flex;
                justify-content: center;
                align-items: center;
                max-width: 400px;
                text-wrap: balance;
                white-space:normal;
            }
form.fb-form-class-important .form-col label.label-required.label-checkbox input[type="checkbox"] {
                    margin-right: 1rem;
                }
form.fb-form-class-important .form-col input[type="text"], form.fb-form-class-important .form-col input[type="date"], form.fb-form-class-important .form-col input[type="datetime"], form.fb-form-class-important .form-col input[type="datetime-local"], form.fb-form-class-important .form-col input[type="number"], form.fb-form-class-important .form-col input[type="email"], form.fb-form-class-important .form-col input[type="phone"], form.fb-form-class-important .form-col input[type="search"], form.fb-form-class-important .form-col select {
    width: 100% !important;
    border-radius: 0.375rem !important;
    --tw-bg-opacity: 1 !important;
    background-color: rgb(255 248 229 / var(--tw-bg-opacity)) !important;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    --tw-text-opacity: 1 !important;
    color: rgb(118 107 246 / var(--tw-text-opacity)) !important;
    padding: 0.5rem !important;
    margin: 0.5rem !important;
}
form.fb-form-class-important .form-col input[type="text"]::-moz-placeholder, form.fb-form-class-important .form-col input[type="date"]::-moz-placeholder, form.fb-form-class-important .form-col input[type="datetime"]::-moz-placeholder, form.fb-form-class-important .form-col input[type="datetime-local"]::-moz-placeholder, form.fb-form-class-important .form-col input[type="number"]::-moz-placeholder, form.fb-form-class-important .form-col input[type="email"]::-moz-placeholder, form.fb-form-class-important .form-col input[type="phone"]::-moz-placeholder, form.fb-form-class-important .form-col input[type="search"]::-moz-placeholder, form.fb-form-class-important .form-col select::-moz-placeholder {
    --tw-placeholder-opacity: 1 !important;
    color: rgb(118 107 246 / var(--tw-placeholder-opacity)) !important;
}
form.fb-form-class-important .form-col input[type="text"]::placeholder, form.fb-form-class-important .form-col input[type="date"]::placeholder, form.fb-form-class-important .form-col input[type="datetime"]::placeholder, form.fb-form-class-important .form-col input[type="datetime-local"]::placeholder, form.fb-form-class-important .form-col input[type="number"]::placeholder, form.fb-form-class-important .form-col input[type="email"]::placeholder, form.fb-form-class-important .form-col input[type="phone"]::placeholder, form.fb-form-class-important .form-col input[type="search"]::placeholder, form.fb-form-class-important .form-col select::placeholder {
    --tw-placeholder-opacity: 1 !important;
    color: rgb(118 107 246 / var(--tw-placeholder-opacity)) !important;
}
form.fb-form-class-important .form-col input[type="submit"] {

        }
form.fb-form-class-important .form-col textarea {
    margin: 0.5rem;
    width: 100%;
    border-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 248 229 / var(--tw-bg-opacity));
    padding: 0.5rem;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --tw-text-opacity: 1;
    color: rgb(118 107 246 / var(--tw-text-opacity));
}
form.fb-form-class-important .form-col textarea::-moz-placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(118 107 246 / var(--tw-placeholder-opacity));
}
form.fb-form-class-important .form-col textarea::placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(118 107 246 / var(--tw-placeholder-opacity));
}
form.fb-form-class-important .form-col select {
    margin: 0.5rem;
    width: 100%;
    border-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 248 229 / var(--tw-bg-opacity));
    padding: 0.5rem;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --tw-text-opacity: 1;
    color: rgb(118 107 246 / var(--tw-text-opacity));
}
form.fb-form-class-important .form-col select::-moz-placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(118 107 246 / var(--tw-placeholder-opacity));
}
form.fb-form-class-important .form-col select::placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(118 107 246 / var(--tw-placeholder-opacity));
}
.form-row {
    margin: 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.form-row-recaptcha {
        justify-content: flex-start !important;
    }
.form-row .freeform-recaptcha {
        transform: scale(0.8);
    }
.form-row label {
    margin: 0.5rem;
    --tw-text-opacity: 1;
    color: rgb(20 9 85 / var(--tw-text-opacity));
}
.form-row input[type="text"], .form-row input[type="date"], .form-row input[type="datetime"], .form-row input[type="number"], .form-row input[type="email"], .form-row input[type="phone"], .form-row input[type="search"], .form-row select {
    margin: 0.5rem;
    width: 100%;
    border-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    padding: 0.5rem;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --tw-text-opacity: 1;
    color: rgb(20 9 85 / var(--tw-text-opacity));
}
.form-row select {
    margin: 0.5rem;
    width: 100%;
    border-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    padding: 0.5rem;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --tw-text-opacity: 1;
    color: rgb(118 107 246 / var(--tw-text-opacity));
}
.form-col {
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.form-col label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
.form-col input[type="text"], .form-col input[type="date"], .form-col input[type="datetime"], .form-col input[type="number"], .form-col input[type="email"], .form-col input[type="phone"], .form-col input[type="search"], .form-col select {
    margin: 0.5rem;
    width: 100%;
    border-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 248 229 / var(--tw-bg-opacity));
    padding: 0.5rem;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --tw-text-opacity: 1;
    color: rgb(118 107 246 / var(--tw-text-opacity));
}
.form-col input[type="text"]::-moz-placeholder, .form-col input[type="date"]::-moz-placeholder, .form-col input[type="datetime"]::-moz-placeholder, .form-col input[type="number"]::-moz-placeholder, .form-col input[type="email"]::-moz-placeholder, .form-col input[type="phone"]::-moz-placeholder, .form-col input[type="search"]::-moz-placeholder, .form-col select::-moz-placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(118 107 246 / var(--tw-placeholder-opacity));
}
.form-col input[type="text"]::placeholder, .form-col input[type="date"]::placeholder, .form-col input[type="datetime"]::placeholder, .form-col input[type="number"]::placeholder, .form-col input[type="email"]::placeholder, .form-col input[type="phone"]::placeholder, .form-col input[type="search"]::placeholder, .form-col select::placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(118 107 246 / var(--tw-placeholder-opacity));
}
.form-col input[type="submit"] {

    }
.form-col textarea {
    margin: 0.5rem;
    width: 100%;
    border-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 248 229 / var(--tw-bg-opacity));
    padding: 0.5rem;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --tw-text-opacity: 1;
    color: rgb(118 107 246 / var(--tw-text-opacity));
}
.form-col textarea::-moz-placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(118 107 246 / var(--tw-placeholder-opacity));
}
.form-col textarea::placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(118 107 246 / var(--tw-placeholder-opacity));
}
.form-col select {
    margin: 0.5rem;
    width: 100%;
    border-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 248 229 / var(--tw-bg-opacity));
    padding: 0.5rem;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --tw-text-opacity: 1;
    color: rgb(118 107 246 / var(--tw-text-opacity));
}
.form-col select::-moz-placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(118 107 246 / var(--tw-placeholder-opacity));
}
.form-col select::placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(118 107 246 / var(--tw-placeholder-opacity));
}
.form-select {
    width: 100%;
    border-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 248 229 / var(--tw-bg-opacity));
    padding: 0.5rem;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --tw-text-opacity: 1;
    color: rgb(118 107 246 / var(--tw-text-opacity));
}
/* Map Styles */
.imapsSprite-group.imapsContainer-group.imapsMapObject-group.imapsMapPolygon-group {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.imapsSprite-group.imapsContainer-group.imapsMapObject-group.imapsMapPolygon-group.hovering {
    fill: #ffe8ab;
}
.prose {
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1.1rem;
    --tw-text-opacity: 1;
    color: rgb(20 9 85 / var(--tw-text-opacity));
}
.prose p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.prose h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-family: PPFragment-Glare, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 3rem;
    line-height: 1;
}
.prose h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: PPFragment-Glare, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1.875rem;
    line-height: 2.25rem;
}
.prose h4 {
    margin-bottom: 1rem;
    font-family: PPFragment-Glare, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1.5rem;
    line-height: 2rem;
}
.prose ul {
    margin-left: 1rem;
    list-style-position: outside;
    list-style-type: disc;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 2rem;
    font-size: 1.1rem;
}
.prose ol {
    margin-left: 1rem;
    list-style-position: outside;
    padding: 1rem;
    padding-left: 2rem;
    font-size: 1.1rem;
        list-style: auto;
}
.prose li {
    margin-bottom: 0.75rem;
}
.prose a:not(.button):not(.button-secondary) {
    --tw-text-opacity: 1;
    color: rgb(118 107 246 / var(--tw-text-opacity));
}
.prose.fwc {
    --tw-text-opacity: 1;
    color: rgb(20 9 85 / var(--tw-text-opacity));
}
.large-page-header {
    background-repeat: no-repeat;
    background-size:cover;
    background-position: left;
    background-image: url(/images/bg/purple-squiggles.png);
}
@media screen and (min-width: 960px) {
    .large-page-header {
        background-position: center;
    }
}
.lph-image {
    width: 400px;
    height: 400px;
}
.first-recent-card {
    position: relative;
    width: 100%;
    border-radius: 0.5rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    padding: 1rem;
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.first-recent-card:hover {
    --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.first-recent-card .top-left-image {
        position: absolute;
        width: 250px;
        height: 250px;
        z-index: -1;
        top: -20px;
        left: -20px;
    }
.first-recent-card .bottom-right-image {
        position: absolute;
        width: 150px;
        height: 150px;
        bottom: 172px;
        right: -20px;
        z-index: -1;
    }
@media screen and (min-width: 1440px) {
    .first-recent-card {
        position: relative;
        grid-row: span 3 / span 3;
        display: flex;
        flex-direction: column;
        background-color: transparent;
        --tw-shadow: 0 0 #0000;
        --tw-shadow-colored: 0 0 #0000;
        box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
        transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
        transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
        transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 150ms;
    }
.first-recent-card select {
        width: 100%;
        border-radius: 0.375rem;
        --tw-bg-opacity: 1;
        background-color: rgb(255 248 229 / var(--tw-bg-opacity));
        padding: 0.5rem;
        font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
        --tw-text-opacity: 1;
        color: rgb(20 9 85 / var(--tw-text-opacity));
    }
    .first-recent-card:hover {
        --tw-shadow: 0 0 #0000;
        --tw-shadow-colored: 0 0 #0000;
        box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    }

        .first-recent-card .top-left-image {
            width: 150px;
            height: 150px;
            top: -66px;
            left: -66px;
        }

        .first-recent-card .bottom-right-image {
            width: 100px;
            height: 100px;
            bottom: 112px;
            right: -14px;
        }

        .first-recent-card figure {
        width: 100%;
        border-radius: 0.5rem;
        --tw-bg-opacity: 1;
        background-color: rgb(228 193 254 / var(--tw-bg-opacity));
        padding: 1rem;
        --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
        box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
        transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
        transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
        transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 150ms;
    }

        .first-recent-card figure:hover {
        --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
        --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
        box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    }

        .first-recent-card > div {
        margin-top: 1rem;
    }

    .not-first-recent-card {
        grid-column: span 2 / span 2;
    }
}
.color-switcher > aside:nth-child(3n-2) .switch-this {
    --tw-bg-opacity: 1;
    background-color: rgb(185 242 221 / var(--tw-bg-opacity));
}
.color-switcher > aside:nth-child(3n-1) .switch-this {
    --tw-bg-opacity: 1;
    background-color: rgb(247 131 105 / var(--tw-bg-opacity));
}
.color-switcher > aside:nth-child(3n) .switch-this {
    --tw-bg-opacity: 1;
    background-color: rgb(118 107 246 / var(--tw-bg-opacity));
}
.color-switcher-tcc > article:nth-child(3n-2) .switch-this {
    --tw-bg-opacity: 1;
    background-color: rgb(185 242 221 / var(--tw-bg-opacity));
}
.color-switcher-tcc > article:nth-child(3n-1) .switch-this {
    --tw-bg-opacity: 1;
    background-color: rgb(247 131 105 / var(--tw-bg-opacity));
}
.color-switcher-tcc > article:nth-child(3n) .switch-this {
    --tw-bg-opacity: 1;
    background-color: rgb(228 193 254 / var(--tw-bg-opacity));
}
@mixin sitNSpin($animationSpeed: 1000ms){
  &:before {
    @include transformBefore(45);
    animation: $animationSpeed rotateBefore infinite linear reverse;
  }
  &:after {
    @include transformAfter(45);
     animation: $animationSpeed rotateAfter infinite linear;
  }
  &:before, &:after {
    box-sizing: border-box;
    content: '';
    display: block;
    position: fixed;
  
    top: 50%;
    left: 50%;
    margin-top: (10em * -.5);
    margin-left: (10em * -.5);
    width: 10em;
    height: 10em;

    transform-style: preserve-3d;
    transform-origin: 50%;
    transform: rotateY(50%);
    perspective-origin: 50% 50%;
    perspective: 340px;

    background-size: 10em 10em;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjI2NnB4IiBoZWlnaHQ9IjI5N3B4IiB2aWV3Qm94PSIwIDAgMjY2IDI5NyIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWxuczpza2V0Y2g9Imh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaC9ucyI+CiAgICA8dGl0bGU+c3Bpbm5lcjwvdGl0bGU+CiAgICA8ZGVzY3JpcHRpb24+Q3JlYXRlZCB3aXRoIFNrZXRjaCAoaHR0cDovL3d3dy5ib2hlbWlhbmNvZGluZy5jb20vc2tldGNoKTwvZGVzY3JpcHRpb24+CiAgICA8ZGVmcz48L2RlZnM+CiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBza2V0Y2g6dHlwZT0iTVNQYWdlIj4KICAgICAgICA8cGF0aCBkPSJNMTcxLjUwNzgxMywzLjI1MDAwMDM4IEMyMjYuMjA4MTgzLDEyLjg1NzcxMTEgMjk3LjExMjcyMiw3MS40OTEyODIzIDI1MC44OTU1OTksMTA4LjQxMDE1NSBDMjE2LjU4MjAyNCwxMzUuODIwMzEgMTg2LjUyODQwNSw5Ny4wNjI0OTY0IDE1Ni44MDA3NzQsODUuNzczNDM0NiBDMTI3LjA3MzE0Myw3NC40ODQzNzIxIDc2Ljg4ODQ2MzIsODQuMjE2MTQ2MiA2MC4xMjg5MDY1LDEwOC40MTAxNTMgQy0xNS45ODA0Njg1LDIxOC4yODEyNDcgMTQ1LjI3NzM0NCwyOTYuNjY3OTY4IDE0NS4yNzczNDQsMjk2LjY2Nzk2OCBDMTQ1LjI3NzM0NCwyOTYuNjY3OTY4IC0yNS40NDkyMTg3LDI1Ny4yNDIxOTggMy4zOTg0Mzc1LDEwOC40MTAxNTUgQzE2LjMwNzA2NjEsNDEuODExNDE3NCA4NC43Mjc1ODI5LC0xMS45OTIyOTg1IDE3MS41MDc4MTMsMy4yNTAwMDAzOCBaIiBpZD0iUGF0aC0xIiBmaWxsPSIjMDAwMDAwIiBza2V0Y2g6dHlwZT0iTVNTaGFwZUdyb3VwIj48L3BhdGg+CiAgICA8L2c+Cjwvc3ZnPg==);
    
  }

  
}
@mixin transformThis($X: 0, $Y: 0, $Z: 0){
  transform: rotateX(unit($X, deg)) rotateY(unit($Y, deg)) rotateZ(unit($Z, deg));
}
@mixin transformBefore($Z){
  @include transformThis(60, 45, $Z);
}
@mixin transformAfter($Z){
  @include transformThis(240, 45, $Z);
}
@keyframes rotateBefore {
  from {
    @include transformBefore(0);
  }
  to {
    @include transformBefore(-360);
  }
}
@keyframes rotateAfter {
  from {
    @include transformAfter(0);
  }
  to {
    @include transformAfter(360);
  }
}
.adjust-huener {
    @include sitNSpin(750ms);
}
.text-white-import {
    color: white !important;
}
.text-black-import {
    color: black !important;
}
.text-brand-secondary-import {
    color: #766bf6 !important;
}
.accordion {    
    margin: 0 auto;

}
.accordion__wrapper {
        border: 1px solid white;
        border-radius: 4px;
        list-style: none;
        margin: 1rem 0;
        width: 100%;
    }
.accordion__header, .accordion__item {
        float: left;
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 1rem;
        position: relative;
        width: 100%;
    }
.accordion__header {
        background: #140955;
        border-bottom: 1px solid darken(#140955, 10);
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
        color: #fff;
        padding-bottom: 1rem;
        
    }
.accordion__item {
        background: #fff;
        border-bottom: 1px solid white;
        margin-bottom: 1px;
        padding-bottom: 1rem / 2;
        
    }
.accordion__item:last-of-type {
            border: 0;
            border-radius: 4px;
            padding-bottom: 0;
        }
.accordion__item span {
            color: #f78369;
            margin-top: 1rem;
            position: absolute;
            right: 1rem;
            top: 0;
            transition: all 0.2s ease-in;
        }
.accordion__item input[type=checkbox] {
            position: absolute;
            cursor: pointer;
            width: 100%;
            height: 100%;
            z-index: 1;
            opacity: 0;
            
        }
.accordion__item input[type=checkbox]:checked~div.panel {
                    float: left;
                    margin: 5px 0;
                    max-height: 0;
                    opacity: 0;
                    transform: translate(0, 50%);
                }
.accordion__item input[type=checkbox]:checked~span {
                    transform: rotate( 180deg );
                }
.leading-really-big {
    line-height: 3rem !important;
}
@media screen and (min-width: 960px) {
    .leading-really-big {
        line-height: 5rem !important;
    }
}
.title-link {
    transition: all 0.3s ease-in-out;
}
.title-link:hover {
/*        font-weight: bold;*/
    }
.errors.freeform-errors {
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity));
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
.topic-list-topic-row {
    display: flex;
    flex-direction: column;
}
.topic-list-topic-row select {
    width: 100%;
    border-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 248 229 / var(--tw-bg-opacity));
    padding: 0.5rem;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --tw-text-opacity: 1;
    color: rgb(20 9 85 / var(--tw-text-opacity));
}
@media screen and (min-width: 640px) {
.topic-list-topic-row {
        flex-direction: row;
    }
    }
.BBFormContainer {
    display: flex !important;
    flex-direction: column !important;
}
.BBFormContainer select {
    width: 100%;
    border-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 248 229 / var(--tw-bg-opacity));
    padding: 0.5rem;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --tw-text-opacity: 1;
    color: rgb(20 9 85 / var(--tw-text-opacity));
}
.BBFormContainer input[type="text"], .BBFormContainer input[type="date"], .BBFormContainer input[type="datetime"], .BBFormContainer input[type="number"], .BBFormContainer input[type="email"], .BBFormContainer input[type="phone"], .BBFormContainer input[type="search"], .BBFormContainer select {
    width: 100% !important;
    border-radius: 0.375rem !important;
    --tw-bg-opacity: 1 !important;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity)) !important;
    padding: 0.5rem !important;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    --tw-text-opacity: 1 !important;
    color: rgb(20 9 85 / var(--tw-text-opacity)) !important;
}
.BBFormContainer select {
    width: 100% !important;
    border-radius: 0.375rem !important;
    --tw-bg-opacity: 1 !important;
    background-color: rgb(255 248 229 / var(--tw-bg-opacity)) !important;
    padding: 0.5rem !important;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    --tw-text-opacity: 1 !important;
    color: rgb(118 107 246 / var(--tw-text-opacity)) !important;
}
.BBFormContainer .BBFormSubmitbutton {
    width: 100% !important;
    cursor: pointer !important;
    border-radius: 9999px !important;
    --tw-bg-opacity: 1 !important;
    background-color: rgb(118 107 246 / var(--tw-bg-opacity)) !important;
    padding-left: 3rem !important;
    padding-right: 3rem !important;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    text-align: center !important;
    font-family: PPFragment-Glare, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
    font-weight: 700 !important;
    --tw-text-opacity: 1 !important;
    color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter !important;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
}
.BBFormContainer .BBFormSubmitbutton:hover {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(20 9 85 / var(--tw-bg-opacity)) !important;
}
@media (min-width: 1440px) {
    .BBFormContainer .BBFormSubmitbutton {
        max-width: 24rem !important;
    }
}
.BBFormContainer label {
    position: relative !important;
    margin: 0.5rem !important;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    font-weight: 700 !important;
    --tw-text-opacity: 1 !important;
    color: rgb(20 9 85 / var(--tw-text-opacity)) !important;
        height: unset !important;
        width: unset !important;
        overflow: unset !important;
}
.BBFormContainer input[type="text"], .BBFormContainer input[type="date"], .BBFormContainer input[type="datetime"], .BBFormContainer input[type="number"], .BBFormContainer input[type="email"], .BBFormContainer input[type="phone"], .BBFormContainer input[type="search"], .BBFormContainer select {
    margin: 0.5rem !important;
    width: 100% !important;
    border-radius: 0.375rem !important;
    --tw-bg-opacity: 1 !important;
    background-color: rgb(255 248 229 / var(--tw-bg-opacity)) !important;
    padding: 0.5rem !important;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    --tw-text-opacity: 1 !important;
    color: rgb(118 107 246 / var(--tw-text-opacity)) !important;
}
.BBFormContainer input[type="text"]::-moz-placeholder, .BBFormContainer input[type="date"]::-moz-placeholder, .BBFormContainer input[type="datetime"]::-moz-placeholder, .BBFormContainer input[type="number"]::-moz-placeholder, .BBFormContainer input[type="email"]::-moz-placeholder, .BBFormContainer input[type="phone"]::-moz-placeholder, .BBFormContainer input[type="search"]::-moz-placeholder, .BBFormContainer select::-moz-placeholder {
    --tw-placeholder-opacity: 1 !important;
    color: rgb(118 107 246 / var(--tw-placeholder-opacity)) !important;
}
.BBFormContainer input[type="text"]::placeholder, .BBFormContainer input[type="date"]::placeholder, .BBFormContainer input[type="datetime"]::placeholder, .BBFormContainer input[type="number"]::placeholder, .BBFormContainer input[type="email"]::placeholder, .BBFormContainer input[type="phone"]::placeholder, .BBFormContainer input[type="search"]::placeholder, .BBFormContainer select::placeholder {
    --tw-placeholder-opacity: 1 !important;
    color: rgb(118 107 246 / var(--tw-placeholder-opacity)) !important;
}
.BBFormContainer .BBAccessibilityOnly {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
}
.BBFormContainer #divName {
    display: flex !important;
}
.BBFormContainer #divName #bboxdonation_billing_lblFullName {
    position: relative !important;
    margin: 0.5rem !important;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    font-weight: 700 !important;
    --tw-text-opacity: 1 !important;
    color: rgb(20 9 85 / var(--tw-text-opacity)) !important;
            height: unset !important;
            width: unset !important;
            overflow: unset !important;
}
.BBFormContainer .BBFormRadioLabelGivingLevelSelected, .BBFormContainer .BBFormRadioPaymentSelected {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(20 9 85 / var(--tw-bg-opacity)) !important;
    --tw-text-opacity: 1 !important;
    color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
}
.BBFormContainer input[type="text"], .BBFormContainer input[type="date"], .BBFormContainer input[type="datetime"], .BBFormContainer input[type="number"], .BBFormContainer input[type="email"], .BBFormContainer input[type="phone"], .BBFormContainer input[type="search"], .BBFormContainer select {
    width: 100% !important;
    border-radius: 0.375rem !important;
    --tw-bg-opacity: 1 !important;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity)) !important;
    padding: 0.5rem !important;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    --tw-text-opacity: 1 !important;
    color: rgb(20 9 85 / var(--tw-text-opacity)) !important;
}
.BBFormContainer textarea {
    margin: 0.5rem !important;
    width: 100% !important;
    border-radius: 0.375rem !important;
    --tw-bg-opacity: 1 !important;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity)) !important;
    padding: 0.5rem !important;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    --tw-text-opacity: 1 !important;
    color: rgb(118 107 246 / var(--tw-text-opacity)) !important;
}
.BBFormContainer textarea::-moz-placeholder {
    --tw-placeholder-opacity: 1 !important;
    color: rgb(118 107 246 / var(--tw-placeholder-opacity)) !important;
}
.BBFormContainer textarea::placeholder {
    --tw-placeholder-opacity: 1 !important;
    color: rgb(118 107 246 / var(--tw-placeholder-opacity)) !important;
}
.BBFormContainer select {
    margin: 0.5rem !important;
    width: 100% !important;
    border-radius: 0.375rem !important;
    --tw-bg-opacity: 1 !important;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity)) !important;
    padding: 0.5rem !important;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    --tw-text-opacity: 1 !important;
    color: rgb(118 107 246 / var(--tw-text-opacity)) !important;
}
.BBFormContainer select::-moz-placeholder {
    --tw-placeholder-opacity: 1 !important;
    color: rgb(118 107 246 / var(--tw-placeholder-opacity)) !important;
}
.BBFormContainer select::placeholder {
    --tw-placeholder-opacity: 1 !important;
    color: rgb(118 107 246 / var(--tw-placeholder-opacity)) !important;
}
.BBFormContainer .#divClientError {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(239 68 68 / var(--tw-bg-opacity)) !important;
}
.BBFormContainer .#divClientError .BBFormErrorItem {
    font-weight: 700 !important;
    --tw-text-opacity: 1 !important;
    color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
}
.flex-col select {
    width: 100%;
    border-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 248 229 / var(--tw-bg-opacity));
    padding: 0.5rem;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --tw-text-opacity: 1;
    color: rgb(20 9 85 / var(--tw-text-opacity));
}
input[type="datetime-local"] {
    width: 100% !important;
    border-radius: 0.375rem !important;
    --tw-bg-opacity: 1 !important;
    background-color: rgb(255 248 229 / var(--tw-bg-opacity)) !important;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    --tw-text-opacity: 1 !important;
    color: rgb(20 9 85 / var(--tw-text-opacity)) !important;
    padding: 0.5rem !important;
}
input[type="file"] {
    display: block !important;
    width: 100% !important;
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
    --tw-text-opacity: 1 !important;
    color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
}
input[type="file"]::file-selector-button {
    margin-right: 1rem !important;
    cursor: pointer !important;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    border-radius: 9999px !important;
    border-width: 0px !important;
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
    font-weight: 600 !important;
    --tw-bg-opacity: 1 !important;
    background-color: rgb(245 243 255 / var(--tw-bg-opacity)) !important;
    --tw-text-opacity: 1 !important;
    color: rgb(109 40 217 / var(--tw-text-opacity)) !important;
}
input[type="file"]::file-selector-button:hover {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(237 233 254 / var(--tw-bg-opacity)) !important;
}
.event-list-select {
    width: 100%;
    border-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 248 229 / var(--tw-bg-opacity));
    padding: 0.5rem;
    font-family: PPNeueMontreal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --tw-text-opacity: 1;
    color: rgb(20 9 85 / var(--tw-text-opacity));
}
@media screen and (min-width: 1440px) {
    .lg\:block-imp {
        display: block !important;
    }
}
.hover\:bg-\[\#007864\]:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(0 120 100 / var(--tw-bg-opacity));
}
.hover\:bg-gray-600:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(75 85 99 / var(--tw-bg-opacity));
}
.focus\:ring-indigo-600:focus {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(79 70 229 / var(--tw-ring-opacity));
}
.disabled\:bg-gray-500:disabled {
    --tw-bg-opacity: 1;
    background-color: rgb(107 114 128 / var(--tw-bg-opacity));
}
@media (prefers-color-scheme: dark) {
    .dark\:bg-gray-200 {
        --tw-bg-opacity: 1;
        background-color: rgb(229 231 235 / var(--tw-bg-opacity));
    }
    .dark\:bg-slate-700 {
        --tw-bg-opacity: 1;
        background-color: rgb(51 65 85 / var(--tw-bg-opacity));
    }
    .dark\:text-gray-200 {
        --tw-text-opacity: 1;
        color: rgb(229 231 235 / var(--tw-text-opacity));
    }
    .dark\:text-gray-700 {
        --tw-text-opacity: 1;
        color: rgb(55 65 81 / var(--tw-text-opacity));
    }
    .dark\:hover\:bg-gray-300:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(209 213 219 / var(--tw-bg-opacity));
    }
    .dark\:disabled\:bg-gray-500:disabled {
        --tw-bg-opacity: 1;
        background-color: rgb(107 114 128 / var(--tw-bg-opacity));
    }
}
@media (min-width: 960px) {
    .md\:col-span-2 {
        grid-column: span 2 / span 2;
    }
    .md\:mb-8 {
        margin-bottom: 2rem;
    }
    .md\:w-1\/2 {
        width: 50%;
    }
    .md\:w-1\/3 {
        width: 33.333333%;
    }
    .md\:w-1\/4 {
        width: 25%;
    }
    .md\:w-3\/4 {
        width: 75%;
    }
    .md\:max-w-full {
        max-width: 100%;
    }
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .md\:flex-row {
        flex-direction: row;
    }
    .md\:flex-row-reverse {
        flex-direction: row-reverse;
    }
    .md\:items-start {
        align-items: flex-start;
    }
    .md\:items-center {
        align-items: center;
    }
    .md\:justify-center {
        justify-content: center;
    }
    .md\:gap-12 {
        gap: 3rem;
    }
    .md\:gap-20 {
        gap: 5rem;
    }
    .md\:gap-8 {
        gap: 2rem;
    }
    .md\:p-12 {
        padding: 3rem;
    }
    .md\:p-24 {
        padding: 6rem;
    }
    .md\:p-8 {
        padding: 2rem;
    }
    .md\:px-20 {
        padding-left: 5rem;
        padding-right: 5rem;
    }
    .md\:px-24 {
        padding-left: 6rem;
        padding-right: 6rem;
    }
    .md\:py-8 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .md\:text-left {
        text-align: left;
    }
    .md\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    .md\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }
    .md\:text-base {
        font-size: 1rem;
        line-height: 1.5rem;
    }
}
@media (min-width: 1440px) {
    .lg\:col-span-2 {
        grid-column: span 2 / span 2;
    }
    .lg\:col-span-3 {
        grid-column: span 3 / span 3;
    }
    .lg\:block {
        display: block;
    }
    .lg\:hidden {
        display: none;
    }
    .lg\:h-2\/3 {
        height: 66.666667%;
    }
    .lg\:w-1\/3 {
        width: 33.333333%;
    }
    .lg\:w-2\/3 {
        width: 66.666667%;
    }
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .lg\:grid-cols-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
    .lg\:flex-row {
        flex-direction: row;
    }
    .lg\:p-24 {
        padding: 6rem;
    }
    .lg\:py-32 {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
    .lg\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }
}
