
/* CSS variables. */
:root {
	--PhoneInput-color--focus: #03b2cb;
	--PhoneInputInternationalIconPhone-opacity: 0.8;
	--PhoneInputInternationalIconGlobe-opacity: 0.65;
	--PhoneInputCountrySelect-marginRight: 0.35em;
	--PhoneInputCountrySelectArrow-width: 0.3em;
	--PhoneInputCountrySelectArrow-marginLeft: var(--PhoneInputCountrySelect-marginRight);
	--PhoneInputCountrySelectArrow-borderWidth: 1px;
	--PhoneInputCountrySelectArrow-opacity: 0.45;
	--PhoneInputCountrySelectArrow-color: currentColor;
	--PhoneInputCountrySelectArrow-color--focus: var(--PhoneInput-color--focus);
	--PhoneInputCountrySelectArrow-transform: rotate(45deg);
	--PhoneInputCountryFlag-aspectRatio: 1.5;
	--PhoneInputCountryFlag-height: 1em;
	--PhoneInputCountryFlag-borderWidth: 1px;
	--PhoneInputCountryFlag-borderColor: rgba(0,0,0,0.5);
	--PhoneInputCountryFlag-borderColor--focus: var(--PhoneInput-color--focus);
	--PhoneInputCountryFlag-backgroundColor--loading: rgba(0,0,0,0.1);
}

.PhoneInput {
	/* This is done to stretch the contents of this component. */
	display: flex;
	align-items: center;
}

.PhoneInputInput {
	/* The phone number input stretches to fill all empty space */
	flex: 1;
	/* The phone number input should shrink
	   to make room for the extension input */
	min-width: 0;
}

.PhoneInputCountryIcon {
	width: calc(var(--PhoneInputCountryFlag-height) * var(--PhoneInputCountryFlag-aspectRatio));
	height: var(--PhoneInputCountryFlag-height);
}

.PhoneInputCountryIcon--square {
	width: var(--PhoneInputCountryFlag-height);
}

.PhoneInputCountryIcon--border {
	/* Removed `background-color` because when an `<img/>` was still loading
	   it would show a dark gray rectangle. */
	/* For some reason the `<img/>` is not stretched to 100% width and height
	   and sometime there can be seen white pixels of the background at top and bottom. */
	background-color: var(--PhoneInputCountryFlag-backgroundColor--loading);
	/* Border is added via `box-shadow` because `border` interferes with `width`/`height`. */
	/* For some reason the `<img/>` is not stretched to 100% width and height
	   and sometime there can be seen white pixels of the background at top and bottom,
	   so an additional "inset" border is added. */
	box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor),
		inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor);
}

.PhoneInputCountryIconImg {
	/* Fixes weird vertical space above the flag icon. */
	/* https://gitlab.com/catamphetamine/react-phone-number-input/-/issues/7#note_348586559 */
	display: block;
	/* 3rd party <SVG/> flag icons won't stretch if they have `width` and `height`.
	   Also, if an <SVG/> icon's aspect ratio was different, it wouldn't fit too. */
	width: 100%;
	height: 100%;
}

.PhoneInputInternationalIconPhone {
	opacity: var(--PhoneInputInternationalIconPhone-opacity);
}

.PhoneInputInternationalIconGlobe {
	opacity: var(--PhoneInputInternationalIconGlobe-opacity);
}

/* Styling native country `<select/>`. */

.PhoneInputCountry {
	position: relative;
	align-self: stretch;
	display: flex;
	align-items: center;
	margin-right: var(--PhoneInputCountrySelect-marginRight);
}

.PhoneInputCountrySelect {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
	border: 0;
	opacity: 0;
	cursor: pointer;
}

.PhoneInputCountrySelect[disabled],
.PhoneInputCountrySelect[readonly] {
	cursor: default;
}

.PhoneInputCountrySelectArrow {
	display: block;
	content: '';
	width: var(--PhoneInputCountrySelectArrow-width);
	height: var(--PhoneInputCountrySelectArrow-width);
	margin-left: var(--PhoneInputCountrySelectArrow-marginLeft);
	border-style: solid;
	border-color: var(--PhoneInputCountrySelectArrow-color);
	border-top-width: 0;
	border-bottom-width: var(--PhoneInputCountrySelectArrow-borderWidth);
	border-left-width: 0;
	border-right-width: var(--PhoneInputCountrySelectArrow-borderWidth);
	transform: var(--PhoneInputCountrySelectArrow-transform);
	opacity: var(--PhoneInputCountrySelectArrow-opacity);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon + .PhoneInputCountrySelectArrow {
	opacity: 1;
	color: var(--PhoneInputCountrySelectArrow-color--focus);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon--border {
	box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus),
		inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon .PhoneInputInternationalIconGlobe {
	opacity: 1;
	color: var(--PhoneInputCountrySelectArrow-color--focus);
}
@tailwind base;
@tailwind components;
@tailwind utilities;
@tailwind variants;
*, ::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:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::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:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
/*
! tailwindcss v3.4.18 | 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.
7. Disable tap highlights on iOS
*/
html,
:host {
  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: ui-sans-serif, system-ui, 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 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
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. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. 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-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
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 */
  letter-spacing: 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,
input:where([type='button']),
input:where([type='reset']),
input:where([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]:where(:not([hidden="until-found"])) {
  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");
}
@media (forced-colors: active) {
  [type='checkbox']:checked{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
[type='radio']:checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}
@media (forced-colors: active) {
  [type='radio']:checked{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
[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;
}
@media (forced-colors: active) {
  [type='checkbox']:indeterminate{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
[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;
}
:root {
		--background: 0 0% 100%;
		--foreground: 0 0% 3.9%;
		--card: 0 0% 100%;
		--card-foreground: 0 0% 3.9%;
		--popover: 0 0% 100%;
		--popover-foreground: 0 0% 3.9%;
		--primary: 0 0% 9%;
		--primary-foreground: 0 0% 98%;
		--secondary: 0 0% 96.1%;
		--secondary-foreground: 0 0% 9%;
		--muted: 0 0% 96.1%;
		--muted-foreground: 0 0% 45.1%;
		--accent: 0 0% 96.1%;
		--accent-foreground: 0 0% 9%;
		--destructive: 0 84.2% 60.2%;
		--destructive-foreground: 0 0% 98%;
		--border: 0 0% 89.8%;
		--input: 0 0% 89.8%;
		--ring: 0 0% 3.9%;
		--chart-1: 12 76% 61%;
		--chart-2: 173 58% 39%;
		--chart-3: 197 37% 24%;
		--chart-4: 43 74% 66%;
		--chart-5: 27 87% 67%;
		--radius: 0.5rem;
	}
.\!container{
  width: 100% !important;
}
.container{
  width: 100%;
}
@media (min-width: 640px){
  .\!container{
    max-width: 640px !important;
  }
  .container{
    max-width: 640px;
  }
}
@media (min-width: 768px){
  .\!container{
    max-width: 768px !important;
  }
  .container{
    max-width: 768px;
  }
}
@media (min-width: 1024px){
  .\!container{
    max-width: 1024px !important;
  }
  .container{
    max-width: 1024px;
  }
}
@media (min-width: 1280px){
  .\!container{
    max-width: 1280px !important;
  }
  .container{
    max-width: 1280px;
  }
}
@media (min-width: 1536px){
  .\!container{
    max-width: 1536px !important;
  }
  .container{
    max-width: 1536px;
  }
}
.prose{
  color: var(--tw-prose-body);
  max-width: 65ch;
}
.prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-links);
  text-decoration: underline;
  font-weight: 400;
}
.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-bold);
  font-weight: 600;
}
.prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 0;
}
.prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: upper-alpha;
}
.prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: lower-alpha;
}
.prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: upper-alpha;
}
.prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: lower-alpha;
}
.prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: upper-roman;
}
.prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: lower-roman;
}
.prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: upper-roman;
}
.prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: lower-roman;
}
.prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: decimal;
}
.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 0;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker{
  font-weight: 400;
  color: var(--tw-prose-counters);
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker{
  color: var(--tw-prose-bullets);
}
.prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.25em;
}
.prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}
.prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 500;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-inline-start-width: 0.25rem;
  border-inline-start-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-inline-start: 1em;
}
.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before{
  content: open-quote;
}
.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after{
  content: close-quote;
}
.prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 800;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}
.prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 900;
  color: inherit;
}
.prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}
.prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 800;
  color: inherit;
}
.prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}
.prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 700;
  color: inherit;
}
.prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}
.prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 700;
  color: inherit;
}
.prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 500;
  font-family: inherit;
  color: var(--tw-prose-kbd);
  box-shadow: 0 0 0 1px var(--tw-prose-kbd-shadows), 0 3px 0 var(--tw-prose-kbd-shadows);
  font-size: 0.875em;
  border-radius: 0.3125rem;
  padding-top: 0.1875em;
  padding-inline-end: 0.375em;
  padding-bottom: 0.1875em;
  padding-inline-start: 0.375em;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-code);
  font-weight: 600;
  font-size: 0.875em;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before{
  content: "`";
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after{
  content: "`";
}
.prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
  font-size: 0.875em;
}
.prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
  font-size: 0.9em;
}
.prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-inline-end: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-inline-start: 1.1428571em;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before{
  content: none;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after{
  content: none;
}
.prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  width: 100%;
  table-layout: auto;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}
.prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}
.prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}
.prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}
.prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-bottom-width: 0;
}
.prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  vertical-align: baseline;
}
.prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}
.prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  vertical-align: top;
}
.prose :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  text-align: start;
}
.prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}
.prose{
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: rgb(17 24 39 / 10%);
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: rgb(255 255 255 / 10%);
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}
.prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0.375em;
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0.375em;
}
.prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.25em;
}
.prose :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 1.25em;
}
.prose :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.25em;
}
.prose :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 1.25em;
}
.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.5em;
  padding-inline-start: 1.625em;
}
.prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0;
}
.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-end: 0;
}
.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-top: 0.5714286em;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}
.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0;
}
.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-end: 0;
}
.prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 0;
}
.prose :where(h2.style-h1):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 800;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}
.prose :where(h2.style-h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 900;
  color: inherit;
}
.prose :where(h2.style-h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose-lg{
  font-size: 1.125rem;
  line-height: 1.7777778;
}
.prose-lg :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
}
.prose-lg :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 1.2222222em;
  line-height: 1.4545455;
  margin-top: 1.0909091em;
  margin-bottom: 1.0909091em;
}
.prose-lg :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.6666667em;
  margin-bottom: 1.6666667em;
  padding-inline-start: 1em;
}
.prose-lg :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 2.6666667em;
  margin-top: 0;
  margin-bottom: 0.8333333em;
  line-height: 1;
}
.prose-lg :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 1.6666667em;
  margin-top: 1.8666667em;
  margin-bottom: 1.0666667em;
  line-height: 1.3333333;
}
.prose-lg :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 1.3333333em;
  margin-top: 1.6666667em;
  margin-bottom: 0.6666667em;
  line-height: 1.5;
}
.prose-lg :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.7777778em;
  margin-bottom: 0.4444444em;
  line-height: 1.5555556;
}
.prose-lg :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.prose-lg :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.prose-lg :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
  margin-bottom: 0;
}
.prose-lg :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.prose-lg :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8888889em;
  border-radius: 0.3125rem;
  padding-top: 0.2222222em;
  padding-inline-end: 0.4444444em;
  padding-bottom: 0.2222222em;
  padding-inline-start: 0.4444444em;
}
.prose-lg :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8888889em;
}
.prose-lg :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8666667em;
}
.prose-lg :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.875em;
}
.prose-lg :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8888889em;
  line-height: 1.75;
  margin-top: 2em;
  margin-bottom: 2em;
  border-radius: 0.375rem;
  padding-top: 1em;
  padding-inline-end: 1.5em;
  padding-bottom: 1em;
  padding-inline-start: 1.5em;
}
.prose-lg :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
  padding-inline-start: 0;
}
.prose-lg :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
  padding-inline-start: 0;
}
.prose-lg :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.6666667em;
  margin-bottom: 0.6666667em;
}
.prose-lg :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0.4444444em;
}
.prose-lg :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0.4444444em;
}
.prose-lg :where(.prose-lg > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.8888889em;
  margin-bottom: 0.8888889em;
}
.prose-lg :where(.prose-lg > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
}
.prose-lg :where(.prose-lg > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 1.3333333em;
}
.prose-lg :where(.prose-lg > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
}
.prose-lg :where(.prose-lg > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 1.3333333em;
}
.prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.8888889em;
  margin-bottom: 0.8888889em;
}
.prose-lg :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
}
.prose-lg :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
}
.prose-lg :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.6666667em;
  padding-inline-start: 1.5555556em;
}
.prose-lg :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 3.1111111em;
  margin-bottom: 3.1111111em;
}
.prose-lg :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose-lg :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose-lg :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose-lg :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose-lg :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8888889em;
  line-height: 1.5;
}
.prose-lg :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-end: 0.75em;
  padding-bottom: 0.75em;
  padding-inline-start: 0.75em;
}
.prose-lg :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0;
}
.prose-lg :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-end: 0;
}
.prose-lg :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-top: 0.75em;
  padding-inline-end: 0.75em;
  padding-bottom: 0.75em;
  padding-inline-start: 0.75em;
}
.prose-lg :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0;
}
.prose-lg :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-end: 0;
}
.prose-lg :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.prose-lg :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
  margin-bottom: 0;
}
.prose-lg :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8888889em;
  line-height: 1.5;
  margin-top: 1em;
}
.prose-lg :where(.prose-lg > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose-lg :where(.prose-lg > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 0;
}
.prose-lg :where(h2.style-h1):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 2.6666667em;
  margin-top: 0;
  margin-bottom: 0.8333333em;
  line-height: 1;
}
.prose-lg :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 400;
}
.prose-xl{
  font-size: 1.25rem;
  line-height: 1.8;
}
.prose-xl :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.prose-xl :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 1.2em;
  line-height: 1.5;
  margin-top: 1em;
  margin-bottom: 1em;
}
.prose-xl :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-inline-start: 1.0666667em;
}
.prose-xl :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 2.8em;
  margin-top: 0;
  margin-bottom: 0.8571429em;
  line-height: 1;
}
.prose-xl :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 1.8em;
  margin-top: 1.5555556em;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}
.prose-xl :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 1.5em;
  margin-top: 1.6em;
  margin-bottom: 0.6666667em;
  line-height: 1.3333333;
}
.prose-xl :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.8em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}
.prose-xl :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose-xl :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose-xl :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
  margin-bottom: 0;
}
.prose-xl :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose-xl :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.9em;
  border-radius: 0.3125rem;
  padding-top: 0.25em;
  padding-inline-end: 0.4em;
  padding-bottom: 0.25em;
  padding-inline-start: 0.4em;
}
.prose-xl :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.9em;
}
.prose-xl :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8611111em;
}
.prose-xl :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.9em;
}
.prose-xl :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.9em;
  line-height: 1.7777778;
  margin-top: 2em;
  margin-bottom: 2em;
  border-radius: 0.5rem;
  padding-top: 1.1111111em;
  padding-inline-end: 1.3333333em;
  padding-bottom: 1.1111111em;
  padding-inline-start: 1.3333333em;
}
.prose-xl :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.2em;
  margin-bottom: 1.2em;
  padding-inline-start: 0;
}
.prose-xl :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.2em;
  margin-bottom: 1.2em;
  padding-inline-start: 0;
}
.prose-xl :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.6em;
  margin-bottom: 0.6em;
}
.prose-xl :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0.4em;
}
.prose-xl :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0.4em;
}
.prose-xl :where(.prose-xl > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.8em;
  margin-bottom: 0.8em;
}
.prose-xl :where(.prose-xl > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.2em;
}
.prose-xl :where(.prose-xl > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 1.2em;
}
.prose-xl :where(.prose-xl > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.2em;
}
.prose-xl :where(.prose-xl > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 1.2em;
}
.prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.8em;
  margin-bottom: 0.8em;
}
.prose-xl :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.prose-xl :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.2em;
}
.prose-xl :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.6em;
  padding-inline-start: 1.6em;
}
.prose-xl :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2.8em;
  margin-bottom: 2.8em;
}
.prose-xl :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose-xl :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose-xl :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose-xl :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose-xl :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.9em;
  line-height: 1.5555556;
}
.prose-xl :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-end: 0.6666667em;
  padding-bottom: 0.8888889em;
  padding-inline-start: 0.6666667em;
}
.prose-xl :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0;
}
.prose-xl :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-end: 0;
}
.prose-xl :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-top: 0.8888889em;
  padding-inline-end: 0.6666667em;
  padding-bottom: 0.8888889em;
  padding-inline-start: 0.6666667em;
}
.prose-xl :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0;
}
.prose-xl :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-end: 0;
}
.prose-xl :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose-xl :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
  margin-bottom: 0;
}
.prose-xl :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.9em;
  line-height: 1.5555556;
  margin-top: 1em;
}
.prose-xl :where(.prose-xl > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose-xl :where(.prose-xl > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 0;
}
.prose-xl :where(h2.style-h1):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 2.8em;
  margin-top: 0;
  margin-bottom: 0.8571429em;
  line-height: 1;
}
.prose-xl :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 400;
}
.prose-2xl{
  font-size: 1.5rem;
  line-height: 1.6666667;
}
.prose-2xl :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
}
.prose-2xl :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 1.25em;
  line-height: 1.4666667;
  margin-top: 1.0666667em;
  margin-bottom: 1.0666667em;
}
.prose-2xl :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
  padding-inline-start: 1.1111111em;
}
.prose-2xl :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 2.6666667em;
  margin-top: 0;
  margin-bottom: 0.875em;
  line-height: 1;
}
.prose-2xl :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 2em;
  margin-top: 1.5em;
  margin-bottom: 0.8333333em;
  line-height: 1.0833333;
}
.prose-2xl :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 1.5em;
  margin-top: 1.5555556em;
  margin-bottom: 0.6666667em;
  line-height: 1.2222222;
}
.prose-2xl :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.6666667em;
  margin-bottom: 0.6666667em;
  line-height: 1.5;
}
.prose-2xl :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose-2xl :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose-2xl :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
  margin-bottom: 0;
}
.prose-2xl :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose-2xl :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8333333em;
  border-radius: 0.375rem;
  padding-top: 0.25em;
  padding-inline-end: 0.3333333em;
  padding-bottom: 0.25em;
  padding-inline-start: 0.3333333em;
}
.prose-2xl :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8333333em;
}
.prose-2xl :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.875em;
}
.prose-2xl :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8888889em;
}
.prose-2xl :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8333333em;
  line-height: 1.8;
  margin-top: 2em;
  margin-bottom: 2em;
  border-radius: 0.5rem;
  padding-top: 1.2em;
  padding-inline-end: 1.6em;
  padding-bottom: 1.2em;
  padding-inline-start: 1.6em;
}
.prose-2xl :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
  padding-inline-start: 0;
}
.prose-2xl :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
  padding-inline-start: 0;
}
.prose-2xl :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.prose-2xl :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0.4166667em;
}
.prose-2xl :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0.4166667em;
}
.prose-2xl :where(.prose-2xl > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.8333333em;
  margin-bottom: 0.8333333em;
}
.prose-2xl :where(.prose-2xl > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
}
.prose-2xl :where(.prose-2xl > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 1.3333333em;
}
.prose-2xl :where(.prose-2xl > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
}
.prose-2xl :where(.prose-2xl > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 1.3333333em;
}
.prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.6666667em;
  margin-bottom: 0.6666667em;
}
.prose-2xl :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
}
.prose-2xl :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
}
.prose-2xl :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.5em;
  padding-inline-start: 1.5833333em;
}
.prose-2xl :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 3em;
  margin-bottom: 3em;
}
.prose-2xl :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose-2xl :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose-2xl :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose-2xl :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose-2xl :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8333333em;
  line-height: 1.4;
}
.prose-2xl :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-end: 0.6em;
  padding-bottom: 0.8em;
  padding-inline-start: 0.6em;
}
.prose-2xl :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0;
}
.prose-2xl :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-end: 0;
}
.prose-2xl :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-top: 0.8em;
  padding-inline-end: 0.6em;
  padding-bottom: 0.8em;
  padding-inline-start: 0.6em;
}
.prose-2xl :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0;
}
.prose-2xl :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-end: 0;
}
.prose-2xl :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose-2xl :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
  margin-bottom: 0;
}
.prose-2xl :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8333333em;
  line-height: 1.6;
  margin-top: 1em;
}
.prose-2xl :where(.prose-2xl > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose-2xl :where(.prose-2xl > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 0;
}
.prose-2xl :where(h2.style-h1):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 2.6666667em;
  margin-top: 0;
  margin-bottom: 0.875em;
  line-height: 1;
}
.prose-2xl :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 400;
}
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.pointer-events-none{
  pointer-events: none;
}
.\!visible{
  visibility: visible !important;
}
.visible{
  visibility: visible;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.sticky{
  position: sticky;
}
.inset-0{
  inset: 0px;
}
.inset-x-4{
  left: 1rem;
  right: 1rem;
}
.inset-x-8{
  left: 2rem;
  right: 2rem;
}
.inset-y-0{
  top: 0px;
  bottom: 0px;
}
.\!left-0{
  left: 0px !important;
}
.\!right-0{
  right: 0px !important;
}
.-bottom-1\.5{
  bottom: -0.375rem;
}
.-left-1\.5{
  left: -0.375rem;
}
.-right-1\.5{
  right: -0.375rem;
}
.-top-1\.5{
  top: -0.375rem;
}
.bottom-0{
  bottom: 0px;
}
.bottom-4{
  bottom: 1rem;
}
.bottom-\[-30\%\]{
  bottom: -30%;
}
.left-0{
  left: 0px;
}
.left-1\/2{
  left: 50%;
}
.left-4{
  left: 1rem;
}
.left-\[-30\%\]{
  left: -30%;
}
.left-auto{
  left: auto;
}
.right-0{
  right: 0px;
}
.right-10{
  right: 2.5rem;
}
.right-2{
  right: 0.5rem;
}
.right-4{
  right: 1rem;
}
.right-5{
  right: 1.25rem;
}
.right-\[10\%\]{
  right: 10%;
}
.right-\[105\%\]{
  right: 105%;
}
.top-0{
  top: 0px;
}
.top-1\.5{
  top: 0.375rem;
}
.top-1\/2{
  top: 50%;
}
.top-2{
  top: 0.5rem;
}
.top-4{
  top: 1rem;
}
.top-8{
  top: 2rem;
}
.isolate{
  isolation: isolate;
}
.-z-10{
  z-index: -10;
}
.z-0{
  z-index: 0;
}
.z-10{
  z-index: 10;
}
.z-100{
  z-index: 100;
}
.z-20{
  z-index: 20;
}
.z-30{
  z-index: 30;
}
.z-5{
  z-index: 5;
}
.z-50{
  z-index: 50;
}
.z-99{
  z-index: 99;
}
.z-\[1000\]{
  z-index: 1000;
}
.z-\[49\]{
  z-index: 49;
}
.z-\[55\]{
  z-index: 55;
}
.z-\[9999\]{
  z-index: 9999;
}
.z-\[999\]{
  z-index: 999;
}
.col-span-1{
  grid-column: span 1 / span 1;
}
.col-span-2{
  grid-column: span 2 / span 2;
}
.col-span-3{
  grid-column: span 3 / span 3;
}
.col-span-4{
  grid-column: span 4 / span 4;
}
.col-span-5{
  grid-column: span 5 / span 5;
}
.col-span-6{
  grid-column: span 6 / span 6;
}
.col-span-7{
  grid-column: span 7 / span 7;
}
.col-span-full{
  grid-column: 1 / -1;
}
.col-start-10{
  grid-column-start: 10;
}
.col-start-5{
  grid-column-start: 5;
}
.col-start-7{
  grid-column-start: 7;
}
.col-start-8{
  grid-column-start: 8;
}
.float-right{
  float: right;
}
.float-left{
  float: left;
}
.m-0{
  margin: 0;
}
.m-4{
  margin: 1rem;
}
.-mx-6{
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
.-mx-8{
  margin-left: -2rem;
  margin-right: -2rem;
}
.-mx-\[--gutter\]{
  margin-left: calc(var(--gutter) * -1);
  margin-right: calc(var(--gutter) * -1);
}
.mx-1{
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.mx-2{
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.mx-3{
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}
.mx-4{
  margin-left: 1rem;
  margin-right: 1rem;
}
.mx-5{
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}
.mx-6{
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.mx-gutter{
  margin-left: 0.9375rem;
  margin-right: 0.9375rem;
}
.my-1{
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.my-10{
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.my-4{
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-5{
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.my-6{
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.-ml-1{
  margin-left: -0.25rem;
}
.-ml-2{
  margin-left: -0.5rem;
}
.-mt-10{
  margin-top: -2.5rem;
}
.-mt-\[150px\]{
  margin-top: -150px;
}
.mb-1{
  margin-bottom: 0.25rem;
}
.mb-10{
  margin-bottom: 2.5rem;
}
.mb-12{
  margin-bottom: 3rem;
}
.mb-2{
  margin-bottom: 0.5rem;
}
.mb-3{
  margin-bottom: 0.75rem;
}
.mb-4{
  margin-bottom: 1rem;
}
.mb-4\.5{
  margin-bottom: 1.125rem;
}
.mb-5{
  margin-bottom: 1.25rem;
}
.mb-6{
  margin-bottom: 1.5rem;
}
.mb-8{
  margin-bottom: 2rem;
}
.mb-\[10vh\]{
  margin-bottom: 10vh;
}
.mb-\[50vh\]{
  margin-bottom: 50vh;
}
.ml-1{
  margin-left: 0.25rem;
}
.ml-2{
  margin-left: 0.5rem;
}
.ml-3{
  margin-left: 0.75rem;
}
.ml-4{
  margin-left: 1rem;
}
.ml-5{
  margin-left: 1.25rem;
}
.ml-6{
  margin-left: 1.5rem;
}
.ml-\[10\.5em\]{
  margin-left: 10.5em;
}
.ml-\[244px\]{
  margin-left: 244px;
}
.ml-\[4\.75em\]{
  margin-left: 4.75em;
}
.ml-auto{
  margin-left: auto;
}
.mr-2{
  margin-right: 0.5rem;
}
.mr-3{
  margin-right: 0.75rem;
}
.mr-4{
  margin-right: 1rem;
}
.mr-5{
  margin-right: 1.25rem;
}
.mt-0{
  margin-top: 0;
}
.mt-1{
  margin-top: 0.25rem;
}
.mt-10{
  margin-top: 2.5rem;
}
.mt-12{
  margin-top: 3rem;
}
.mt-16{
  margin-top: 4rem;
}
.mt-2{
  margin-top: 0.5rem;
}
.mt-20{
  margin-top: 5rem;
}
.mt-24{
  margin-top: 6rem;
}
.mt-28{
  margin-top: 7rem;
}
.mt-3{
  margin-top: 0.75rem;
}
.mt-30{
  margin-top: 7.5rem;
}
.mt-36{
  margin-top: 9rem;
}
.mt-4{
  margin-top: 1rem;
}
.mt-5{
  margin-top: 1.25rem;
}
.mt-6{
  margin-top: 1.5rem;
}
.mt-8{
  margin-top: 2rem;
}
.mt-\[28\%\]{
  margin-top: 28%;
}
.mt-\[2px\]{
  margin-top: 2px;
}
.mt-\[6px\]{
  margin-top: 6px;
}
.mt-auto{
  margin-top: auto;
}
.box-border{
  box-sizing: border-box;
}
.line-clamp-3{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.\!block{
  display: block !important;
}
.block{
  display: block;
}
.inline-block{
  display: inline-block;
}
.\!inline{
  display: inline !important;
}
.inline{
  display: inline;
}
.flex{
  display: flex;
}
.inline-flex{
  display: inline-flex;
}
.table{
  display: table;
}
.flow-root{
  display: flow-root;
}
.grid{
  display: grid;
}
.hidden{
  display: none;
}
.aspect-\[4\/3\]{
  aspect-ratio: 4/3;
}
.aspect-square{
  aspect-ratio: 1 / 1;
}
.aspect-video{
  aspect-ratio: 16 / 9;
}
.size-4{
  width: 1rem;
  height: 1rem;
}
.size-8{
  width: 2rem;
  height: 2rem;
}
.size-\[1\.875rem\]{
  width: 1.875rem;
  height: 1.875rem;
}
.size-\[2\.125rem\]{
  width: 2.125rem;
  height: 2.125rem;
}
.size-\[2\.375rem\]{
  width: 2.375rem;
  height: 2.375rem;
}
.size-\[2\.625rem\]{
  width: 2.625rem;
  height: 2.625rem;
}
.h-1{
  height: 0.25rem;
}
.h-1\.5{
  height: 0.375rem;
}
.h-10{
  height: 2.5rem;
}
.h-12{
  height: 3rem;
}
.h-14{
  height: 3.5rem;
}
.h-16{
  height: 4rem;
}
.h-18{
  height: 4.5rem;
}
.h-2{
  height: 0.5rem;
}
.h-2\.5{
  height: 0.625rem;
}
.h-20{
  height: 5rem;
}
.h-3{
  height: 0.75rem;
}
.h-3\.5{
  height: 0.875rem;
}
.h-32{
  height: 8rem;
}
.h-4{
  height: 1rem;
}
.h-48{
  height: 12rem;
}
.h-5{
  height: 1.25rem;
}
.h-6{
  height: 1.5rem;
}
.h-7{
  height: 1.75rem;
}
.h-8{
  height: 2rem;
}
.h-8\/12{
  height: 66.66667%;
}
.h-9{
  height: 2.25rem;
}
.h-9\/12{
  height: 75%;
}
.h-\[0\.0625rem\]{
  height: 0.0625rem;
}
.h-\[100px\]{
  height: 100px;
}
.h-\[25vh\]{
  height: 25vh;
}
.h-\[500px\]{
  height: 500px;
}
.h-\[64px\]{
  height: 64px;
}
.h-\[75vh\]{
  height: 75vh;
}
.h-\[88px\]{
  height: 88px;
}
.h-\[var\(--popup-height\)\]{
  height: var(--popup-height);
}
.h-\[var\(--positioner-height\)\]{
  height: var(--positioner-height);
}
.h-full{
  height: 100%;
}
.h-px{
  height: 1px;
}
.h-screen{
  height: 100vh;
}
.max-h-\[310px\]{
  max-height: 310px;
}
.max-h-\[50vh\]{
  max-height: 50vh;
}
.max-h-\[550px\]{
  max-height: 550px;
}
.max-h-full{
  max-height: 100%;
}
.min-h-32{
  min-height: 8rem;
}
.min-h-\[1\.875rem\]{
  min-height: 1.875rem;
}
.min-h-\[2\.125rem\]{
  min-height: 2.125rem;
}
.min-h-\[2\.375rem\]{
  min-height: 2.375rem;
}
.min-h-\[2\.625rem\]{
  min-height: 2.625rem;
}
.min-h-\[200px\]{
  min-height: 200px;
}
.min-h-\[200vh\]{
  min-height: 200vh;
}
.w-0\.5{
  width: 0.125rem;
}
.w-1\.5{
  width: 0.375rem;
}
.w-1\/12{
  width: 8.33333%;
}
.w-1\/2{
  width: 50%;
}
.w-1\/3{
  width: 33.33333%;
}
.w-1\/5{
  width: 20%;
}
.w-1\/6{
  width: 16.66667%;
}
.w-10{
  width: 2.5rem;
}
.w-10\/12{
  width: 83.33333%;
}
.w-11\/12{
  width: 91.66667%;
}
.w-12{
  width: 3rem;
}
.w-16{
  width: 4rem;
}
.w-2{
  width: 0.5rem;
}
.w-2\.5{
  width: 0.625rem;
}
.w-2\/12{
  width: 16.66667%;
}
.w-2\/3{
  width: 66.66667%;
}
.w-2\/5{
  width: 40%;
}
.w-3{
  width: 0.75rem;
}
.w-3\.5{
  width: 0.875rem;
}
.w-3\/12{
  width: 25%;
}
.w-3\/4{
  width: 75%;
}
.w-4{
  width: 1rem;
}
.w-4\/12{
  width: 33.33333%;
}
.w-40{
  width: 10rem;
}
.w-48{
  width: 12rem;
}
.w-5{
  width: 1.25rem;
}
.w-5\/12{
  width: 41.66667%;
}
.w-5\/6{
  width: 83.33333%;
}
.w-6{
  width: 1.5rem;
}
.w-6\/12{
  width: 50%;
}
.w-64{
  width: 16rem;
}
.w-7{
  width: 1.75rem;
}
.w-7\/12{
  width: 58.33333%;
}
.w-8{
  width: 2rem;
}
.w-8\/12{
  width: 66.66667%;
}
.w-84{
  width: 21.875rem;
}
.w-9{
  width: 2.25rem;
}
.w-9\/12{
  width: 75%;
}
.w-\[100px\]{
  width: 100px;
}
.w-\[100vw\]{
  width: 100vw;
}
.w-\[150\%\]{
  width: 150%;
}
.w-\[275px\]{
  width: 275px;
}
.w-\[310px\]{
  width: 310px;
}
.w-\[95vw\]{
  width: 95vw;
}
.w-\[var\(--positioner-width\)\]{
  width: var(--positioner-width);
}
.w-auto{
  width: auto;
}
.w-fit{
  width: -moz-fit-content;
  width: fit-content;
}
.w-full{
  width: 100%;
}
.w-g-2{
  width: 10.625rem;
}
.w-screen{
  width: 100vw;
}
.min-w-full{
  min-width: 100%;
}
.min-w-max{
  min-width: -moz-max-content;
  min-width: max-content;
}
.\!max-w-\[100vw\]{
  max-width: 100vw !important;
}
.max-w-4xl{
  max-width: 56rem;
}
.max-w-7xl{
  max-width: 80rem;
}
.max-w-\[300px\]{
  max-width: 300px;
}
.max-w-\[309px\]{
  max-width: 309px;
}
.max-w-\[310px\]{
  max-width: 310px;
}
.max-w-\[410px\]{
  max-width: 410px;
}
.max-w-\[550px\]{
  max-width: 550px;
}
.max-w-\[584px\]{
  max-width: 584px;
}
.max-w-full{
  max-width: 100%;
}
.max-w-md{
  max-width: 28rem;
}
.max-w-none{
  max-width: none;
}
.max-w-sm{
  max-width: 24rem;
}
.flex-1{
  flex: 1 1 0%;
}
.flex-auto{
  flex: 1 1 auto;
}
.flex-none{
  flex: none;
}
.shrink-0{
  flex-shrink: 0;
}
.flex-grow{
  flex-grow: 1;
}
.grow{
  flex-grow: 1;
}
.grow-0{
  flex-grow: 0;
}
.table-fixed{
  table-layout: fixed;
}
.caption-bottom{
  caption-side: bottom;
}
.border-separate{
  border-collapse: separate;
}
.border-spacing-x-8{
  --tw-border-spacing-x: 2rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}
.origin-\[var\(--transform-origin\)\]{
  transform-origin: var(--transform-origin);
}
.-translate-x-1\/2{
  --tw-translate-x: -50%;
  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));
}
.-translate-y-1\/2{
  --tw-translate-y: -50%;
  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));
}
.-translate-y-1\/4{
  --tw-translate-y: -25%;
  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));
}
.translate-y-\[-50\%\]{
  --tw-translate-y: -50%;
  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));
}
.rotate-180{
  --tw-rotate: 180deg;
  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));
}
.scale-100{
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  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));
}
.scale-50{
  --tw-scale-x: .5;
  --tw-scale-y: .5;
  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));
}
.scale-95{
  --tw-scale-x: .95;
  --tw-scale-y: .95;
  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));
}
.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-not-allowed{
  cursor: not-allowed;
}
.cursor-pointer{
  cursor: pointer;
}
.touch-none{
  touch-action: none;
}
.select-none{
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.resize{
  resize: both;
}
.scroll-mt-16{
  scroll-margin-top: 4rem;
}
.scroll-mt-48{
  scroll-margin-top: 12rem;
}
.list-decimal{
  list-style-type: decimal;
}
.list-none{
  list-style-type: none;
}
.appearance-none{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.grid-flow-row{
  grid-auto-flow: row;
}
.auto-rows-fr{
  grid-auto-rows: minmax(0, 1fr);
}
.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));
}
.grid-cols-3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-7{
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.grid-rows-2{
  grid-template-rows: repeat(2, minmax(0, 1fr));
}
.flex-row{
  flex-direction: row;
}
.flex-row-reverse{
  flex-direction: row-reverse;
}
.flex-col{
  flex-direction: column;
}
.flex-col-reverse{
  flex-direction: column-reverse;
}
.flex-wrap{
  flex-wrap: wrap;
}
.content-center{
  align-content: center;
}
.items-start{
  align-items: flex-start;
}
.items-end{
  align-items: flex-end;
}
.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;
}
.justify-around{
  justify-content: space-around;
}
.gap-0{
  gap: 0px;
}
.gap-2{
  gap: 0.5rem;
}
.gap-2\.5{
  gap: 0.625rem;
}
.gap-3{
  gap: 0.75rem;
}
.gap-4{
  gap: 1rem;
}
.gap-5{
  gap: 1.25rem;
}
.gap-6{
  gap: 1.5rem;
}
.gap-8{
  gap: 2rem;
}
.gap-\[25px\]{
  gap: 25px;
}
.gap-\[4\.5em\]{
  gap: 4.5em;
}
.gap-x-1{
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}
.gap-x-1\.5{
  -moz-column-gap: 0.375rem;
       column-gap: 0.375rem;
}
.gap-x-10{
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}
.gap-x-16{
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}
.gap-x-2{
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.gap-x-3{
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}
.gap-x-4{
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.gap-x-5{
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}
.gap-x-8{
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.gap-y-10{
  row-gap: 2.5rem;
}
.gap-y-12{
  row-gap: 3rem;
}
.gap-y-16{
  row-gap: 4rem;
}
.gap-y-2{
  row-gap: 0.5rem;
}
.gap-y-3{
  row-gap: 0.75rem;
}
.gap-y-4{
  row-gap: 1rem;
}
.gap-y-5{
  row-gap: 1.25rem;
}
.gap-y-6{
  row-gap: 1.5rem;
}
.gap-y-8{
  row-gap: 2rem;
}
.space-y-10 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.divide-y > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}
.divide-gray-900\/10 > :not([hidden]) ~ :not([hidden]){
  border-color: rgb(17 24 39 / 0.1);
}
.self-start{
  align-self: flex-start;
}
.self-center{
  align-self: center;
}
.justify-self-end{
  justify-self: end;
}
.overflow-auto{
  overflow: auto;
}
.overflow-hidden{
  overflow: hidden;
}
.overflow-scroll{
  overflow: scroll;
}
.overflow-x-auto{
  overflow-x: auto;
}
.overflow-x-hidden{
  overflow-x: hidden;
}
.scroll-smooth{
  scroll-behavior: smooth;
}
.text-ellipsis{
  text-overflow: ellipsis;
}
.whitespace-nowrap{
  white-space: nowrap;
}
.rounded{
  border-radius: 0.25rem;
}
.rounded-2xl{
  border-radius: 1rem;
}
.rounded-3xl{
  border-radius: 1.5rem;
}
.rounded-\[20px\]{
  border-radius: 20px;
}
.rounded-\[36px\]{
  border-radius: 36px;
}
.rounded-\[50px\]{
  border-radius: 50px;
}
.rounded-\[inherit\]{
  border-radius: inherit;
}
.rounded-full{
  border-radius: 9999px;
}
.rounded-lg{
  border-radius: 0.5rem;
}
.rounded-max{
  border-radius: 1rem;
}
.rounded-md{
  border-radius: 0.375rem;
}
.rounded-xl{
  border-radius: 0.75rem;
}
.rounded-b-\[4\.5em\]{
  border-bottom-right-radius: 4.5em;
  border-bottom-left-radius: 4.5em;
}
.rounded-b-md{
  border-bottom-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}
.rounded-t{
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.rounded-t-2xl{
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.rounded-t-\[4\.5em\]{
  border-top-left-radius: 4.5em;
  border-top-right-radius: 4.5em;
}
.rounded-t-lg{
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.rounded-t-md{
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}
.rounded-t-xl{
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}
.border{
  border-width: 1px;
}
.border-0{
  border-width: 0px;
}
.border-2{
  border-width: 2px;
}
.border-x{
  border-left-width: 1px;
  border-right-width: 1px;
}
.border-b{
  border-bottom-width: 1px;
}
.border-b-0{
  border-bottom-width: 0px;
}
.border-b-2{
  border-bottom-width: 2px;
}
.border-b-4{
  border-bottom-width: 4px;
}
.border-l{
  border-left-width: 1px;
}
.border-t{
  border-top-width: 1px;
}
.border-dashed{
  border-style: dashed;
}
.border-none{
  border-style: none;
}
.border-\[\#01005840\/0\.25\]{
  border-color: #01005840/0.25;
}
.border-\[\#010058\]{
  --tw-border-opacity: 1;
  border-color: rgb(1 0 88 / var(--tw-border-opacity, 1));
}
.border-\[\#3D96FF\]{
  --tw-border-opacity: 1;
  border-color: rgb(61 150 255 / var(--tw-border-opacity, 1));
}
.border-\[\#4D4D4D\]{
  --tw-border-opacity: 1;
  border-color: rgb(77 77 77 / var(--tw-border-opacity, 1));
}
.border-\[\#BCBCBC\]{
  --tw-border-opacity: 1;
  border-color: rgb(188 188 188 / var(--tw-border-opacity, 1));
}
.border-battleship-grey{
  --tw-border-opacity: 1;
  border-color: rgb(110 110 120 / var(--tw-border-opacity, 1));
}
.border-cyan-research{
  --tw-border-opacity: 1;
  border-color: rgb(0 181 213 / var(--tw-border-opacity, 1));
}
.border-davys-grey{
  border-color: rgba(87, 87, 87, 0.3);
}
.border-gray-900\/10{
  border-color: rgb(17 24 39 / 0.1);
}
.border-lemon-research{
  --tw-border-opacity: 1;
  border-color: rgb(255 245 106 / var(--tw-border-opacity, 1));
}
.border-light-periwinkle{
  --tw-border-opacity: 1;
  border-color: rgb(212 214 227 / var(--tw-border-opacity, 1));
}
.border-light-periwinkle\/40{
  border-color: rgb(212 214 227 / 0.4);
}
.border-midnight{
  --tw-border-opacity: 1;
  border-color: rgb(1 3 74 / var(--tw-border-opacity, 1));
}
.border-midnight-transparent{
  border-color: rgba(1, 0, 88, 0.08);
}
.border-munsell-research{
  --tw-border-opacity: 1;
  border-color: rgb(253 0 88 / var(--tw-border-opacity, 1));
}
.border-pale-grey{
  --tw-border-opacity: 1;
  border-color: rgb(244 244 246 / var(--tw-border-opacity, 1));
}
.border-pale-lilac{
  --tw-border-opacity: 1;
  border-color: rgb(236 236 240 / var(--tw-border-opacity, 1));
}
.border-pepper{
  --tw-border-opacity: 1;
  border-color: rgb(253 0 72 / var(--tw-border-opacity, 1));
}
.border-platinum{
  --tw-border-opacity: 1;
  border-color: rgb(227 227 227 / var(--tw-border-opacity, 1));
}
.border-stratos{
  --tw-border-opacity: 1;
  border-color: rgb(1 0 88 / var(--tw-border-opacity, 1));
}
.border-tangerine-research{
  --tw-border-opacity: 1;
  border-color: rgb(255 175 77 / var(--tw-border-opacity, 1));
}
.border-teal-research{
  --tw-border-opacity: 1;
  border-color: rgb(116 229 211 / var(--tw-border-opacity, 1));
}
.border-torch{
  --tw-border-opacity: 1;
  border-color: rgb(253 0 72 / var(--tw-border-opacity, 1));
}
.border-transparent{
  border-color: transparent;
}
.border-whisper-grey{
  --tw-border-opacity: 1;
  border-color: rgb(218 218 218 / var(--tw-border-opacity, 1));
}
.border-white{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.border-zinc-950\/5{
  border-color: rgb(9 9 11 / 0.05);
}
.border-b-zinc-950\/10{
  border-bottom-color: rgb(9 9 11 / 0.1);
}
.border-l-transparent{
  border-left-color: transparent;
}
.border-l-zinc-950\/5{
  border-left-color: rgb(9 9 11 / 0.05);
}
.border-t-transparent{
  border-top-color: transparent;
}
.border-opacity-10{
  --tw-border-opacity: 0.1;
}
.border-opacity-15{
  --tw-border-opacity: 0.15;
}
.bg-\[\#0077B5\]{
  --tw-bg-opacity: 1;
  background-color: rgb(0 119 181 / var(--tw-bg-opacity, 1));
}
.bg-\[\#00B5D5\]{
  --tw-bg-opacity: 1;
  background-color: rgb(0 181 213 / var(--tw-bg-opacity, 1));
}
.bg-\[\#010058\]{
  --tw-bg-opacity: 1;
  background-color: rgb(1 0 88 / var(--tw-bg-opacity, 1));
}
.bg-\[\#181818\]{
  --tw-bg-opacity: 1;
  background-color: rgb(24 24 24 / var(--tw-bg-opacity, 1));
}
.bg-\[\#5A5858\]{
  --tw-bg-opacity: 1;
  background-color: rgb(90 88 88 / var(--tw-bg-opacity, 1));
}
.bg-\[\#5A5A5A\]{
  --tw-bg-opacity: 1;
  background-color: rgb(90 90 90 / var(--tw-bg-opacity, 1));
}
.bg-\[\#E84142\]{
  --tw-bg-opacity: 1;
  background-color: rgb(232 65 66 / var(--tw-bg-opacity, 1));
}
.bg-\[\#F3F3F3\]{
  --tw-bg-opacity: 1;
  background-color: rgb(243 243 243 / var(--tw-bg-opacity, 1));
}
.bg-\[\#FD0058\]{
  --tw-bg-opacity: 1;
  background-color: rgb(253 0 88 / var(--tw-bg-opacity, 1));
}
.bg-\[\#FF8C00\]\/\[\.4\]{
  background-color: rgb(255 140 0 / .4);
}
.bg-\[canvas\]{
  background-color: canvas;
}
.bg-\[rgba\(1\2c 0\2c 88\2c 0\.08\)\]{
  background-color: rgba(1,0,88,0.08);
}
.bg-\[rgba\(214\2c 239\2c 250\2c 0\.15\)\]{
  background-color: rgba(214,239,250,0.15);
}
.bg-azure\/\[\.15\]{
  background-color: rgb(1 36 234 / .15);
}
.bg-black{
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.bg-black\/\[\.08\]{
  background-color: rgb(0 0 0 / .08);
}
.bg-blurple{
  --tw-bg-opacity: 1;
  background-color: rgb(0 5 161 / var(--tw-bg-opacity, 1));
}
.bg-cyan{
  --tw-bg-opacity: 1;
  background-color: rgb(229 252 255 / var(--tw-bg-opacity, 1));
}
.bg-cyan-alpha{
  background-color: #006E8180;
}
.bg-cyan-research{
  --tw-bg-opacity: 1;
  background-color: rgb(0 181 213 / var(--tw-bg-opacity, 1));
}
.bg-dark-blue{
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 165 / var(--tw-bg-opacity, 1));
}
.bg-facebook{
  --tw-bg-opacity: 1;
  background-color: rgb(59 89 152 / var(--tw-bg-opacity, 1));
}
.bg-folly\/\[\.2\]{
  background-color: rgb(252 1 72 / .2);
}
.bg-forest{
  --tw-bg-opacity: 1;
  background-color: rgb(116 229 211 / var(--tw-bg-opacity, 1));
}
.bg-forest\/\[\.4\]{
  background-color: rgb(116 229 211 / .4);
}
.bg-fuschia{
  --tw-bg-opacity: 1;
  background-color: rgb(221 0 133 / var(--tw-bg-opacity, 1));
}
.bg-gray-100{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.bg-gray-400{
  --tw-bg-opacity: 1;
  background-color: rgb(156 163 175 / var(--tw-bg-opacity, 1));
}
.bg-gray-400\/5{
  background-color: rgb(156 163 175 / 0.05);
}
.bg-gray-900\/10{
  background-color: rgb(17 24 39 / 0.1);
}
.bg-haiti{
  --tw-bg-opacity: 1;
  background-color: rgb(13 12 47 / var(--tw-bg-opacity, 1));
}
.bg-iris{
  --tw-bg-opacity: 1;
  background-color: rgb(100 79 202 / var(--tw-bg-opacity, 1));
}
.bg-jungle-alpha{
  background-color: #00756580;
}
.bg-jungle-research{
  --tw-bg-opacity: 1;
  background-color: rgb(0 173 145 / var(--tw-bg-opacity, 1));
}
.bg-jungle\/\[\.6\]{
  background-color: rgb(31 163 142 / .6);
}
.bg-lemon-research{
  --tw-bg-opacity: 1;
  background-color: rgb(255 245 106 / var(--tw-bg-opacity, 1));
}
.bg-light-blue{
  --tw-bg-opacity: 1;
  background-color: rgb(25 179 206 / var(--tw-bg-opacity, 1));
}
.bg-light-periwinkle\/40{
  background-color: rgb(212 214 227 / 0.4);
}
.bg-light-periwinkle\/70{
  background-color: rgb(212 214 227 / 0.7);
}
.bg-linkedin{
  --tw-bg-opacity: 1;
  background-color: rgb(0 119 181 / var(--tw-bg-opacity, 1));
}
.bg-magenta\/\[\.2\]{
  background-color: rgb(223 3 135 / .2);
}
.bg-midnight{
  --tw-bg-opacity: 1;
  background-color: rgb(1 3 74 / var(--tw-bg-opacity, 1));
}
.bg-munsell{
  --tw-bg-opacity: 1;
  background-color: rgb(253 0 72 / var(--tw-bg-opacity, 1));
}
.bg-munsell-alpha{
  background-color: #98053880;
}
.bg-munsell-research{
  --tw-bg-opacity: 1;
  background-color: rgb(253 0 88 / var(--tw-bg-opacity, 1));
}
.bg-neutral-100{
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 245 / var(--tw-bg-opacity, 1));
}
.bg-neutral-200{
  --tw-bg-opacity: 1;
  background-color: rgb(229 229 229 / var(--tw-bg-opacity, 1));
}
.bg-orange{
  --tw-bg-opacity: 1;
  background-color: rgb(221 96 0 / var(--tw-bg-opacity, 1));
}
.bg-orange-alpha{
  background-color: #C45F0080;
}
.bg-orange-research{
  --tw-bg-opacity: 1;
  background-color: rgb(255 140 0 / var(--tw-bg-opacity, 1));
}
.bg-orangina\/\[\.25\]{
  background-color: rgb(255 89 1 / .25);
}
.bg-pale-grey{
  --tw-bg-opacity: 1;
  background-color: rgb(244 244 246 / var(--tw-bg-opacity, 1));
}
.bg-pastel-dark-blue{
  --tw-bg-opacity: 1;
  background-color: rgb(224 224 244 / var(--tw-bg-opacity, 1));
}
.bg-pastel-fuschia{
  --tw-bg-opacity: 1;
  background-color: rgb(255 225 243 / var(--tw-bg-opacity, 1));
}
.bg-pastel-light-blue{
  --tw-bg-opacity: 1;
  background-color: rgb(202 230 255 / var(--tw-bg-opacity, 1));
}
.bg-pastel-orange{
  --tw-bg-opacity: 1;
  background-color: rgb(255 243 229 / var(--tw-bg-opacity, 1));
}
.bg-pastel-purple{
  --tw-bg-opacity: 1;
  background-color: rgb(232 227 255 / var(--tw-bg-opacity, 1));
}
.bg-pastel-red{
  --tw-bg-opacity: 1;
  background-color: rgb(255 229 238 / var(--tw-bg-opacity, 1));
}
.bg-pastel-teal{
  --tw-bg-opacity: 1;
  background-color: rgb(225 254 250 / var(--tw-bg-opacity, 1));
}
.bg-pastel-yellow{
  --tw-bg-opacity: 1;
  background-color: rgb(255 252 212 / var(--tw-bg-opacity, 1));
}
.bg-pepper{
  --tw-bg-opacity: 1;
  background-color: rgb(253 0 72 / var(--tw-bg-opacity, 1));
}
.bg-pepper\/\[\.08\]{
  background-color: rgb(253 0 72 / .08);
}
.bg-purple{
  --tw-bg-opacity: 1;
  background-color: rgb(100 79 202 / var(--tw-bg-opacity, 1));
}
.bg-purple-alpha{
  background-color: #3A298B80;
}
.bg-purple-research{
  --tw-bg-opacity: 1;
  background-color: rgb(100 79 202 / var(--tw-bg-opacity, 1));
}
.bg-purple\/\[\.4\]{
  background-color: rgb(100 79 202 / .4);
}
.bg-red{
  --tw-bg-opacity: 1;
  background-color: rgb(253 12 96 / var(--tw-bg-opacity, 1));
}
.bg-red\/\[\.4\]{
  background-color: rgb(253 12 96 / .4);
}
.bg-silver{
  --tw-bg-opacity: 1;
  background-color: rgb(244 244 246 / var(--tw-bg-opacity, 1));
}
.bg-stratos{
  --tw-bg-opacity: 1;
  background-color: rgb(1 0 88 / var(--tw-bg-opacity, 1));
}
.bg-tangerine-research{
  --tw-bg-opacity: 1;
  background-color: rgb(255 175 77 / var(--tw-bg-opacity, 1));
}
.bg-teal{
  --tw-bg-opacity: 1;
  background-color: rgb(74 222 248 / var(--tw-bg-opacity, 1));
}
.bg-teal-research{
  --tw-bg-opacity: 1;
  background-color: rgb(116 229 211 / var(--tw-bg-opacity, 1));
}
.bg-torch{
  --tw-bg-opacity: 1;
  background-color: rgb(253 0 72 / var(--tw-bg-opacity, 1));
}
.bg-transparent{
  background-color: transparent;
}
.bg-twitter{
  --tw-bg-opacity: 1;
  background-color: rgb(29 161 242 / var(--tw-bg-opacity, 1));
}
.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white\/30{
  background-color: rgb(255 255 255 / 0.3);
}
.bg-yellow{
  --tw-bg-opacity: 1;
  background-color: rgb(204 143 0 / var(--tw-bg-opacity, 1));
}
.bg-opacity-50{
  --tw-bg-opacity: 0.5;
}
.bg-opacity-85{
  --tw-bg-opacity: 0.85;
}
.bg-\[radial-gradient\(81\.67\%_45\.37\%_at_100\%_100\%\2c \#020295_0\%\2c rgba\(2\2c 2\2c 149\2c 0\)_100\%\)\]{
  background-image: radial-gradient(81.67% 45.37% at 100% 100%,#020295 0%,rgba(2,2,149,0) 100%);
}
.bg-gradient-to-b{
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.bg-gradient-to-l{
  background-image: linear-gradient(to left, var(--tw-gradient-stops));
}
.bg-gradient-to-t{
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.from-forest{
  --tw-gradient-from: #74E5D3 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(116 229 211 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-iris{
  --tw-gradient-from: #644FCA var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(100 79 202 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-munsell{
  --tw-gradient-from: #FD0048 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(253 0 72 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-transparent{
  --tw-gradient-from: transparent var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-purple{
  --tw-gradient-to: rgb(100 79 202 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #644FCA var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-red{
  --tw-gradient-to: rgb(253 12 96 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #FD0C60 var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-seafoam{
  --tw-gradient-to: rgb(41 193 159 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #29C19F var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-stratos{
  --tw-gradient-to: rgb(1 0 88 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #010058 var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-sunflower{
  --tw-gradient-to: rgb(240 227 27 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #F0E31B var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.to-transparent{
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
}
.bg-cover{
  background-size: cover;
}
.bg-no-repeat{
  background-repeat: no-repeat;
}
.fill-white{
  fill: #fff;
}
.stroke-sky-900\/10{
  stroke: rgb(12 74 110 / 0.1);
}
.object-contain{
  -o-object-fit: contain;
     object-fit: contain;
}
.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}
.p-0{
  padding: 0;
}
.p-0\.5{
  padding: 0.125rem;
}
.p-1{
  padding: 0.25rem;
}
.p-10{
  padding: 2.5rem;
}
.p-12{
  padding: 3rem;
}
.p-16{
  padding: 4rem;
}
.p-2{
  padding: 0.5rem;
}
.p-4{
  padding: 1rem;
}
.p-5{
  padding: 1.25rem;
}
.p-6{
  padding: 1.5rem;
}
.p-8{
  padding: 2rem;
}
.p-\[1px\]{
  padding: 1px;
}
.px-0{
  padding-left: 0;
  padding-right: 0;
}
.px-1{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-10{
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.px-12{
  padding-left: 3rem;
  padding-right: 3rem;
}
.px-16{
  padding-left: 4rem;
  padding-right: 4rem;
}
.px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-2\.5{
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.px-3{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-3\.5{
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}
.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-7{
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}
.px-8{
  padding-left: 2rem;
  padding-right: 2rem;
}
.px-\[6\.375em\]{
  padding-left: 6.375em;
  padding-right: 6.375em;
}
.px-\[calc\(50\%-80px\)\]{
  padding-left: calc(50% - 80px);
  padding-right: calc(50% - 80px);
}
.py-0{
  padding-top: 0;
  padding-bottom: 0;
}
.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5{
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-10{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-12{
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-16{
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-18{
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-2\.5{
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.py-20{
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-30{
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}
.py-36{
  padding-top: 9rem;
  padding-bottom: 9rem;
}
.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-48{
  padding-top: 12rem;
  padding-bottom: 12rem;
}
.py-5{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-6{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-8{
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-\[14px\]{
  padding-top: 14px;
  padding-bottom: 14px;
}
.py-\[196px\]{
  padding-top: 196px;
  padding-bottom: 196px;
}
.pb-0{
  padding-bottom: 0;
}
.pb-10{
  padding-bottom: 2.5rem;
}
.pb-11{
  padding-bottom: 2.75rem;
}
.pb-16{
  padding-bottom: 4rem;
}
.pb-2{
  padding-bottom: 0.5rem;
}
.pb-3{
  padding-bottom: 0.75rem;
}
.pb-30{
  padding-bottom: 7.5rem;
}
.pb-32{
  padding-bottom: 8rem;
}
.pb-4{
  padding-bottom: 1rem;
}
.pb-48{
  padding-bottom: 12rem;
}
.pb-5{
  padding-bottom: 1.25rem;
}
.pb-6{
  padding-bottom: 1.5rem;
}
.pb-7{
  padding-bottom: 1.875rem;
}
.pb-8{
  padding-bottom: 2rem;
}
.pb-\[20vh\]{
  padding-bottom: 20vh;
}
.pb-\[25px\]{
  padding-bottom: 25px;
}
.pb-\[85px\]{
  padding-bottom: 85px;
}
.pl-1{
  padding-left: 0.25rem;
}
.pl-1\.5{
  padding-left: 0.375rem;
}
.pl-12{
  padding-left: 3rem;
}
.pl-2{
  padding-left: 0.5rem;
}
.pl-3{
  padding-left: 0.75rem;
}
.pl-4{
  padding-left: 1rem;
}
.pl-5{
  padding-left: 1.25rem;
}
.pl-6{
  padding-left: 1.5rem;
}
.pr-1{
  padding-right: 0.25rem;
}
.pr-1\.5{
  padding-right: 0.375rem;
}
.pr-10{
  padding-right: 2.5rem;
}
.pr-12{
  padding-right: 3rem;
}
.pr-3{
  padding-right: 0.75rem;
}
.pr-5{
  padding-right: 1.25rem;
}
.pr-6{
  padding-right: 1.5rem;
}
.pr-8{
  padding-right: 2rem;
}
.pr-\[6\.375em\]{
  padding-right: 6.375em;
}
.pt-0{
  padding-top: 0;
}
.pt-1{
  padding-top: 0.25rem;
}
.pt-10{
  padding-top: 2.5rem;
}
.pt-12{
  padding-top: 3rem;
}
.pt-16{
  padding-top: 4rem;
}
.pt-18{
  padding-top: 4.5rem;
}
.pt-2{
  padding-top: 0.5rem;
}
.pt-2\.5{
  padding-top: 0.625rem;
}
.pt-20{
  padding-top: 5rem;
}
.pt-24{
  padding-top: 6rem;
}
.pt-3{
  padding-top: 0.75rem;
}
.pt-30{
  padding-top: 7.5rem;
}
.pt-32{
  padding-top: 8rem;
}
.pt-4{
  padding-top: 1rem;
}
.pt-5{
  padding-top: 1.25rem;
}
.pt-6{
  padding-top: 1.5rem;
}
.pt-8{
  padding-top: 2rem;
}
.pt-\[20vh\]{
  padding-top: 20vh;
}
.pt-\[50vh\]{
  padding-top: 50vh;
}
.text-left{
  text-align: left;
}
.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}
.align-middle{
  vertical-align: middle;
}
.font-bitter{
  font-family: Bitter, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}
.font-satoshi{
  font-family: Satoshi, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}
.text-13{
  font-size: .8125rem;
}
.text-14{
  font-size: .875rem;
}
.text-16{
  font-size: 1rem;
}
.text-18{
  font-size: 1.125rem;
}
.text-20{
  font-size: 1.25rem;
}
.text-24{
  font-size: 1.5rem;
}
.text-28{
  font-size: 1.75rem;
}
.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-32{
  font-size: 2rem;
}
.text-37{
  font-size: 2.3125rem;
}
.text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-40{
  font-size: 2.5rem;
}
.text-4xl{
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl{
  font-size: 3rem;
  line-height: 1;
}
.text-\[0\.875em\]{
  font-size: 0.875em;
}
.text-\[0\.925rem\]{
  font-size: 0.925rem;
}
.text-\[1\.125em\]{
  font-size: 1.125em;
}
.text-\[1\.25em\]{
  font-size: 1.25em;
}
.text-\[120px\]{
  font-size: 120px;
}
.text-\[18px\]{
  font-size: 18px;
}
.text-\[28px\]{
  font-size: 28px;
}
.text-\[2em\]{
  font-size: 2em;
}
.text-\[56px\]{
  font-size: 56px;
}
.text-\[70px\]{
  font-size: 70px;
}
.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-sm\/5{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-sm\/6{
  font-size: 0.875rem;
  line-height: 1.5rem;
}
.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}
.\!font-bold{
  font-weight: 700 !important;
}
.\!font-medium{
  font-weight: 500 !important;
}
.font-bold{
  font-weight: 700;
}
.font-medium{
  font-weight: 500;
}
.font-normal{
  font-weight: 400;
}
.font-semibold{
  font-weight: 600;
}
.uppercase{
  text-transform: uppercase;
}
.lowercase{
  text-transform: lowercase;
}
.normal-case{
  text-transform: none;
}
.italic{
  font-style: italic;
}
.leading-20{
  line-height: 1.25rem;
}
.leading-21{
  line-height: 1.3125rem;
}
.leading-23{
  line-height: 1.40625rem;
}
.leading-24{
  line-height: 1.5rem;
}
.leading-28{
  line-height: 1.75rem;
}
.leading-32{
  line-height: 2rem;
}
.leading-34{
  line-height: 2.125rem;
}
.leading-40{
  line-height: 2.5rem;
}
.leading-44{
  line-height: 2.75rem;
}
.leading-6{
  line-height: 1.5rem;
}
.leading-7{
  line-height: 1.75rem;
}
.leading-\[1\.3\]{
  line-height: 1.3;
}
.leading-\[1\.3em\]{
  line-height: 1.3em;
}
.leading-\[120\%\]{
  line-height: 120%;
}
.leading-\[120px\]{
  line-height: 120px;
}
.leading-\[130\%\]{
  line-height: 130%;
}
.leading-\[150\%\]{
  line-height: 150%;
}
.leading-\[90px\]{
  line-height: 90px;
}
.leading-normal{
  line-height: 1.5;
}
.leading-relaxed{
  line-height: 1.625;
}
.leading-tight{
  line-height: 1.25;
}
.-tracking-01{
  letter-spacing: -0.00625em;
}
.-tracking-02{
  letter-spacing: -0.0125em;
}
.-tracking-03{
  letter-spacing: -0.01875em;
}
.-tracking-04{
  letter-spacing: -0.025em;
}
.tracking-02{
  letter-spacing: 0.0125em;
}
.tracking-03{
  letter-spacing: 0.01875em;
}
.tracking-04{
  letter-spacing: 0.02em;
}
.tracking-07{
  letter-spacing: 0.04em;
}
.tracking-\[-0\.005em\]{
  letter-spacing: -0.005em;
}
.tracking-\[-0\.00875em\]{
  letter-spacing: -0.00875em;
}
.tracking-\[-0\.01125em\]{
  letter-spacing: -0.01125em;
}
.tracking-\[-0\.02em\]{
  letter-spacing: -0.02em;
}
.tracking-\[-0\.12px\]{
  letter-spacing: -0.12px;
}
.tracking-\[-0\.18px\]{
  letter-spacing: -0.18px;
}
.tracking-\[-0\.24px\]{
  letter-spacing: -0.24px;
}
.tracking-\[-0\.28px\]{
  letter-spacing: -0.28px;
}
.tracking-\[-0\.4px\]{
  letter-spacing: -0.4px;
}
.tracking-\[-0\.56px\]{
  letter-spacing: -0.56px;
}
.tracking-\[-0\.64px\]{
  letter-spacing: -0.64px;
}
.tracking-tight{
  letter-spacing: -0.025em;
}
.text-\[\#010058\]{
  --tw-text-opacity: 1;
  color: rgb(1 0 88 / var(--tw-text-opacity, 1));
}
.text-\[\#0a0337\]{
  --tw-text-opacity: 1;
  color: rgb(10 3 55 / var(--tw-text-opacity, 1));
}
.text-\[\#323232\]{
  --tw-text-opacity: 1;
  color: rgb(50 50 50 / var(--tw-text-opacity, 1));
}
.text-\[\#434343\]{
  --tw-text-opacity: 1;
  color: rgb(67 67 67 / var(--tw-text-opacity, 1));
}
.text-\[\#69768F\]{
  --tw-text-opacity: 1;
  color: rgb(105 118 143 / var(--tw-text-opacity, 1));
}
.text-\[\#787878\]{
  --tw-text-opacity: 1;
  color: rgb(120 120 120 / var(--tw-text-opacity, 1));
}
.text-azure{
  --tw-text-opacity: 1;
  color: rgb(1 36 234 / var(--tw-text-opacity, 1));
}
.text-battleship-grey{
  --tw-text-opacity: 1;
  color: rgb(110 110 120 / var(--tw-text-opacity, 1));
}
.text-battleship-grey-dark{
  --tw-text-opacity: 1;
  color: rgb(91 91 91 / var(--tw-text-opacity, 1));
}
.text-black{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.text-black\/75{
  color: rgb(0 0 0 / 0.75);
}
.text-blurple{
  --tw-text-opacity: 1;
  color: rgb(0 5 161 / var(--tw-text-opacity, 1));
}
.text-brown-grey{
  --tw-text-opacity: 1;
  color: rgb(148 148 148 / var(--tw-text-opacity, 1));
}
.text-cyan-research{
  --tw-text-opacity: 1;
  color: rgb(0 181 213 / var(--tw-text-opacity, 1));
}
.text-folly{
  --tw-text-opacity: 1;
  color: rgb(252 1 72 / var(--tw-text-opacity, 1));
}
.text-forest{
  --tw-text-opacity: 1;
  color: rgb(116 229 211 / var(--tw-text-opacity, 1));
}
.text-fuschia-research{
  --tw-text-opacity: 1;
  color: rgb(221 0 133 / var(--tw-text-opacity, 1));
}
.text-gray-400{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.text-gray-500{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.text-gray-600{
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.text-gray-900{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.text-haiti{
  --tw-text-opacity: 1;
  color: rgb(13 12 47 / var(--tw-text-opacity, 1));
}
.text-humming-bird{
  --tw-text-opacity: 1;
  color: rgb(214 239 250 / var(--tw-text-opacity, 1));
}
.text-inherit{
  color: inherit;
}
.text-iris{
  --tw-text-opacity: 1;
  color: rgb(100 79 202 / var(--tw-text-opacity, 1));
}
.text-jungle{
  --tw-text-opacity: 1;
  color: rgb(31 163 142 / var(--tw-text-opacity, 1));
}
.text-jungle-research{
  --tw-text-opacity: 1;
  color: rgb(0 173 145 / var(--tw-text-opacity, 1));
}
.text-magenta{
  --tw-text-opacity: 1;
  color: rgb(223 3 135 / var(--tw-text-opacity, 1));
}
.text-midnight{
  --tw-text-opacity: 1;
  color: rgb(1 3 74 / var(--tw-text-opacity, 1));
}
.text-midnight-dark{
  --tw-text-opacity: 1;
  color: rgb(1 2 58 / var(--tw-text-opacity, 1));
}
.text-munsell{
  --tw-text-opacity: 1;
  color: rgb(253 0 72 / var(--tw-text-opacity, 1));
}
.text-munsell-research{
  --tw-text-opacity: 1;
  color: rgb(253 0 88 / var(--tw-text-opacity, 1));
}
.text-navy-research{
  --tw-text-opacity: 1;
  color: rgb(1 0 70 / var(--tw-text-opacity, 1));
}
.text-neutral-600{
  --tw-text-opacity: 1;
  color: rgb(82 82 82 / var(--tw-text-opacity, 1));
}
.text-orange-research{
  --tw-text-opacity: 1;
  color: rgb(255 140 0 / var(--tw-text-opacity, 1));
}
.text-orangina{
  --tw-text-opacity: 1;
  color: rgb(255 89 1 / var(--tw-text-opacity, 1));
}
.text-outer-space{
  --tw-text-opacity: 1;
  color: rgb(70 70 70 / var(--tw-text-opacity, 1));
}
.text-pepper{
  --tw-text-opacity: 1;
  color: rgb(253 0 72 / var(--tw-text-opacity, 1));
}
.text-pepper-dark{
  --tw-text-opacity: 1;
  color: rgb(214 0 60 / var(--tw-text-opacity, 1));
}
.text-purple{
  --tw-text-opacity: 1;
  color: rgb(100 79 202 / var(--tw-text-opacity, 1));
}
.text-purple-research{
  --tw-text-opacity: 1;
  color: rgb(100 79 202 / var(--tw-text-opacity, 1));
}
.text-red{
  --tw-text-opacity: 1;
  color: rgb(253 12 96 / var(--tw-text-opacity, 1));
}
.text-seafoam{
  --tw-text-opacity: 1;
  color: rgb(41 193 159 / var(--tw-text-opacity, 1));
}
.text-sky-research{
  --tw-text-opacity: 1;
  color: rgb(37 106 255 / var(--tw-text-opacity, 1));
}
.text-stratos{
  --tw-text-opacity: 1;
  color: rgb(1 0 88 / var(--tw-text-opacity, 1));
}
.text-sunflower{
  --tw-text-opacity: 1;
  color: rgb(240 227 27 / var(--tw-text-opacity, 1));
}
.text-teal{
  --tw-text-opacity: 1;
  color: rgb(74 222 248 / var(--tw-text-opacity, 1));
}
.text-torch{
  --tw-text-opacity: 1;
  color: rgb(253 0 72 / var(--tw-text-opacity, 1));
}
.text-transparent{
  color: transparent;
}
.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-white\/80{
  color: rgb(255 255 255 / 0.8);
}
.text-zinc-500{
  --tw-text-opacity: 1;
  color: rgb(113 113 122 / var(--tw-text-opacity, 1));
}
.underline{
  text-decoration-line: underline;
}
.no-underline{
  text-decoration-line: none;
}
.opacity-0{
  opacity: 0;
}
.opacity-100{
  opacity: 1;
}
.opacity-40{
  opacity: 0.4;
}
.opacity-50{
  opacity: 0.5;
}
.opacity-60{
  opacity: 0.6;
}
.opacity-64{
  opacity: .64;
}
.opacity-75{
  opacity: 0.75;
}
.opacity-80{
  opacity: 0.8;
}
.shadow{
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px 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-2xl{
  --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);
}
.shadow-\[0_1px_1px_rgba\(0\2c 0\2c 0\2c 0\.08\)\2c 0_2px_6px_rgba\(1\2c 0\2c 88\2c 0\.2\)\]{
  --tw-shadow: 0 1px 1px rgba(0,0,0,0.08),0 2px 6px rgba(1,0,88,0.2);
  --tw-shadow-colored: 0 1px 1px var(--tw-shadow-color), 0 2px 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);
}
.shadow-\[0px_1\.79px_2\.93px_0px_\#00000005\2c 0px_8\.47px_11\.47px_0px_\#00000008\2c 0px_22px_36px_0px_\#0000000D\]{
  --tw-shadow: 0px 1.79px 2.93px 0px #00000005,0px 8.47px 11.47px 0px #00000008,0px 22px 36px 0px #0000000D;
  --tw-shadow-colored: 0px 1.79px 2.93px 0px var(--tw-shadow-color), 0px 8.47px 11.47px 0px var(--tw-shadow-color), 0px 22px 36px 0px 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-lg{
  --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);
}
.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-menu{
  --tw-shadow: -4px -4px 5px rgba(0, 0, 0, 0.04);
  --tw-shadow-colored: -4px -4px 5px 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-switchback{
  --tw-shadow: 0px 15px 30px rgba(0, 0, 0, 0);
  --tw-shadow-colored: 0px 15px 30px 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-azure\/\[\.1\]{
  --tw-shadow-color: rgb(1 36 234 / .1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-folly\/\[\.1\]{
  --tw-shadow-color: rgb(252 1 72 / .1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-jungle\/\[\.2\]{
  --tw-shadow-color: rgb(31 163 142 / .2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-magenta\/\[\.1\]{
  --tw-shadow-color: rgb(223 3 135 / .1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-orangina\/\[\.3\]{
  --tw-shadow-color: rgb(255 89 1 / .3);
  --tw-shadow: var(--tw-shadow-colored);
}
.outline{
  outline-style: solid;
}
.outline-1{
  outline-width: 1px;
}
.outline-gray-200{
  outline-color: #e5e7eb;
}
.ring-1{
  --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, 0 0 #0000);
}
.ring-inset{
  --tw-ring-inset: inset;
}
.ring-gray-200{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity, 1));
}
.blur{
  --tw-blur: blur(8px);
  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);
}
.drop-shadow-carousel{
  --tw-drop-shadow: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  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);
}
.grayscale{
  --tw-grayscale: grayscale(100%);
  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);
}
.invert{
  --tw-invert: invert(100%);
  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);
}
.sepia{
  --tw-sepia: sepia(100%);
  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, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[colors\2c box-shadow\]{
  transition-property: colors,box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[opacity\2c transform\2c translate\]{
  transition-property: opacity,transform,translate;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[opacity\2c transform\2c width\2c height\2c scale\2c translate\]{
  transition-property: opacity,transform,width,height,scale,translate;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[width\2c height\2c top\2c left\2c right\2c bottom\]{
  transition-property: width,height,top,left,right,bottom;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity{
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-shadow{
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform{
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-100{
  transition-duration: 100ms;
}
.duration-150{
  transition-duration: 150ms;
}
.duration-200{
  transition-duration: 200ms;
}
.duration-300{
  transition-duration: 300ms;
}
.duration-500{
  transition-duration: 500ms;
}
.duration-75{
  transition-duration: 75ms;
}
.ease-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out{
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.will-change-transform{
  will-change: transform;
}
.forced-color-adjust-none{
  forced-color-adjust: none;
}
@keyframes enter{
  from{
    opacity: var(--tw-enter-opacity, 1);
    transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0));
  }
}
@keyframes exit{
  to{
    opacity: var(--tw-exit-opacity, 1);
    transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
  }
}
.animate-in{
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}
.fade-in-0{
  --tw-enter-opacity: 0;
}
.zoom-in-95{
  --tw-enter-scale: .95;
}
.duration-100{
  animation-duration: 100ms;
}
.duration-150{
  animation-duration: 150ms;
}
.duration-200{
  animation-duration: 200ms;
}
.duration-300{
  animation-duration: 300ms;
}
.duration-500{
  animation-duration: 500ms;
}
.duration-75{
  animation-duration: 75ms;
}
.ease-in-out{
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out{
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.\[--btn-bg\:transparent\]{
  --btn-bg: transparent;
}
.\[--btn-bg\:var\(--color-danger\)\]{
  --btn-bg: var(--color-danger);
}
.\[--btn-bg\:var\(--color-primary\)\]{
  --btn-bg: var(--color-primary);
}
.\[--btn-bg\:var\(--color-secondary\)\]{
  --btn-bg: var(--color-secondary);
}
.\[--btn-bg\:var\(--color-warning\)\]{
  --btn-bg: var(--color-warning);
}
.\[--btn-fg\:var\(--color-danger-fg\)\]{
  --btn-fg: var(--color-danger-fg);
}
.\[--btn-fg\:var\(--color-primary-fg\)\]{
  --btn-fg: var(--color-primary-fg);
}
.\[--btn-fg\:var\(--color-secondary-fg\)\]{
  --btn-fg: var(--color-secondary-fg);
}
.\[--btn-fg\:var\(--color-warning-fg\)\]{
  --btn-fg: var(--color-warning-fg);
}
.\[--btn-icon-active\:var\(--btn-fg\)\]{
  --btn-icon-active: var(--btn-fg);
}
.\[--btn-icon\:color-mix\(in_oklab\2c var\(--danger-fg\)_60\%\2c var\(--danger\)\)\]{
  --btn-icon: color-mix(in oklab,var(--danger-fg) 60%,var(--danger));
}
.\[--btn-icon\:color-mix\(in_oklab\2c var\(--primary-fg\)_60\%\2c var\(--primary\)\)\]{
  --btn-icon: color-mix(in oklab,var(--primary-fg) 60%,var(--primary));
}
.\[--btn-icon\:color-mix\(in_oklab\2c var\(--warning-fg\)_60\%\2c var\(--warning\)\)\]{
  --btn-icon: color-mix(in oklab,var(--warning-fg) 60%,var(--warning));
}
.\[--btn-icon\:var\(--color-muted-fg\)\]{
  --btn-icon: var(--color-muted-fg);
}
.\[--btn-outline\:var\(--btn-bg\)\]{
  --btn-outline: var(--btn-bg);
}
.\[--btn-outline\:var\(--color-ring\)\]{
  --btn-outline: var(--color-ring);
}
.\[--btn-outline\:var\(--color-secondary-fg\)\]{
  --btn-outline: var(--color-secondary-fg);
}
.\[--btn-overlay\:var\(--color-danger\)\]{
  --btn-overlay: var(--color-danger);
}
.\[--btn-overlay\:var\(--color-muted\)\]{
  --btn-overlay: var(--color-muted);
}
.\[--btn-overlay\:var\(--color-primary\)\]{
  --btn-overlay: var(--color-primary);
}
.\[--btn-overlay\:var\(--color-secondary\)\]{
  --btn-overlay: var(--color-secondary);
}
.\[--btn-overlay\:var\(--color-warning\)\]{
  --btn-overlay: var(--color-warning);
}
.\[--btn-ring\:var\(--btn-bg\)\]{
  --btn-ring: var(--btn-bg);
}
.\[--btn-ring\:var\(--color-muted-fg\)\]{
  --btn-ring: var(--color-muted-fg);
}
.\[--btn-ring\:var\(--color-ring\)\]{
  --btn-ring: var(--color-ring);
}
.\[mask-clip\:padding-box\2c border-box\]{
  -webkit-mask-clip: padding-box,border-box;
          mask-clip: padding-box,border-box;
}
.\[mask-composite\:intersect\]{
  -webkit-mask-composite: source-in, xor;
          mask-composite: intersect;
}
.\[mask-image\:linear-gradient\(transparent\2c transparent\)\2c linear-gradient\(\#000\2c \#000\)\]{
  -webkit-mask-image: linear-gradient(transparent,transparent),linear-gradient(#000,#000);
          mask-image: linear-gradient(transparent,transparent),linear-gradient(#000,#000);
}
@media (min-width: 768px){
  .md\:container{
    width: 100%;
  }
  @media (min-width: 640px){
    .md\:container{
      max-width: 640px;
    }
  }
  @media (min-width: 768px){
    .md\:container{
      max-width: 768px;
    }
  }
  @media (min-width: 1024px){
    .md\:container{
      max-width: 1024px;
    }
  }
  @media (min-width: 1280px){
    .md\:container{
      max-width: 1280px;
    }
  }
  @media (min-width: 1536px){
    .md\:container{
      max-width: 1536px;
    }
  }
}
.before\:absolute::before{
  content: var(--tw-content);
  position: absolute;
}
.before\:content-\[\'\'\]::before{
  --tw-content: '';
  content: var(--tw-content);
}
.first\:border-l-0:first-child{
  border-left-width: 0px;
}
.first\:pl-\[var\(--gutter\2c theme\(spacing\.2\)\)\]:first-child{
  padding-left: var(--gutter,0.5rem);
}
.last\:pr-\[var\(--gutter\2c theme\(spacing\.2\)\)\]:last-child{
  padding-right: var(--gutter,0.5rem);
}
.even\:bg-zinc-950\/\[2\.5\%\]:nth-child(even){
  background-color: rgb(9 9 11 / 2.5%);
}
.hover\:-translate-y-\[5px\]:hover{
  --tw-translate-y: -5px;
  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));
}
.hover\:scale-110:hover{
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  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));
}
.hover\:border-midnight:hover{
  --tw-border-opacity: 1;
  border-color: rgb(1 3 74 / var(--tw-border-opacity, 1));
}
.hover\:border-pepper:hover{
  --tw-border-opacity: 1;
  border-color: rgb(253 0 72 / var(--tw-border-opacity, 1));
}
.hover\:border-stratos:hover{
  --tw-border-opacity: 1;
  border-color: rgb(1 0 88 / var(--tw-border-opacity, 1));
}
.hover\:border-transparent:hover{
  border-color: transparent;
}
.hover\:bg-\[\#010058\]\/10:hover{
  background-color: rgb(1 0 88 / 0.1);
}
.hover\:bg-gray-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.hover\:bg-stratos-transparent:hover{
  background-color: rgba(1, 0, 88, 0.1);
}
.hover\:bg-white\/40:hover{
  background-color: rgb(255 255 255 / 0.4);
}
.hover\:bg-zinc-950\/5:hover{
  background-color: rgb(9 9 11 / 0.05);
}
.hover\:bg-zinc-950\/\[2\.5\%\]:hover{
  background-color: rgb(9 9 11 / 2.5%);
}
.hover\:text-azure:hover{
  --tw-text-opacity: 1;
  color: rgb(1 36 234 / var(--tw-text-opacity, 1));
}
.hover\:text-folly:hover{
  --tw-text-opacity: 1;
  color: rgb(252 1 72 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-700:hover{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.hover\:text-jungle:hover{
  --tw-text-opacity: 1;
  color: rgb(31 163 142 / var(--tw-text-opacity, 1));
}
.hover\:text-magenta:hover{
  --tw-text-opacity: 1;
  color: rgb(223 3 135 / var(--tw-text-opacity, 1));
}
.hover\:text-midnight:hover{
  --tw-text-opacity: 1;
  color: rgb(1 3 74 / var(--tw-text-opacity, 1));
}
.hover\:text-midnight-dark:hover{
  --tw-text-opacity: 1;
  color: rgb(1 2 58 / var(--tw-text-opacity, 1));
}
.hover\:text-orangina:hover{
  --tw-text-opacity: 1;
  color: rgb(255 89 1 / var(--tw-text-opacity, 1));
}
.hover\:text-pepper:hover{
  --tw-text-opacity: 1;
  color: rgb(253 0 72 / var(--tw-text-opacity, 1));
}
.hover\:text-pepper-dark:hover{
  --tw-text-opacity: 1;
  color: rgb(214 0 60 / var(--tw-text-opacity, 1));
}
.hover\:text-purple:hover{
  --tw-text-opacity: 1;
  color: rgb(100 79 202 / var(--tw-text-opacity, 1));
}
.hover\:text-red:hover{
  --tw-text-opacity: 1;
  color: rgb(253 12 96 / var(--tw-text-opacity, 1));
}
.hover\:text-seafoam:hover{
  --tw-text-opacity: 1;
  color: rgb(41 193 159 / var(--tw-text-opacity, 1));
}
.hover\:text-stratos:hover{
  --tw-text-opacity: 1;
  color: rgb(1 0 88 / var(--tw-text-opacity, 1));
}
.hover\:text-sunflower:hover{
  --tw-text-opacity: 1;
  color: rgb(240 227 27 / var(--tw-text-opacity, 1));
}
.hover\:no-underline:hover{
  text-decoration-line: none;
}
.hover\:shadow-2xl: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);
}
.hover\:shadow-button:hover{
  --tw-shadow: 0px 5px 8px rgba(0, 0, 0, 0.15);
  --tw-shadow-colored: 0px 5px 8px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-carousel:hover{
  --tw-shadow: 0px 5px 20px rgba(0, 0, 0, 0);
  --tw-shadow-colored: 0px 5px 20px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-lg:hover{
  --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);
}
.hover\:shadow-forest\/\[\.35\]:hover{
  --tw-shadow-color: rgb(116 229 211 / .35);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-iris\/\[\.35\]:hover{
  --tw-shadow-color: rgb(100 79 202 / .35);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-munsell\/\[\.35\]:hover{
  --tw-shadow-color: rgb(253 0 72 / .35);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-torch\/\[\.35\]:hover{
  --tw-shadow-color: rgb(253 0 72 / .35);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:border-\[\#6D64F7\]:focus{
  --tw-border-opacity: 1;
  border-color: rgb(109 100 247 / var(--tw-border-opacity, 1));
}
.focus\:outline-none:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:outline-0:focus{
  outline-width: 0px;
}
.focus-visible\:relative:focus-visible{
  position: relative;
}
.focus-visible\:outline-none:focus-visible{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus-visible\:outline:focus-visible{
  outline-style: solid;
}
.focus-visible\:outline-2:focus-visible{
  outline-width: 2px;
}
.focus-visible\:-outline-offset-1:focus-visible{
  outline-offset: -1px;
}
.focus-visible\:outline-offset-2:focus-visible{
  outline-offset: 2px;
}
.focus-visible\:outline-\[\#010058\]:focus-visible{
  outline-color: #010058;
}
.focus-visible\:outline-blue-800:focus-visible{
  outline-color: #1e40af;
}
.focus-visible\:outline-stratos:focus-visible{
  outline-color: #010058;
}
.focus-visible\:ring-2:focus-visible{
  --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, 0 0 #0000);
}
.active\:bg-stratos-transparent:active{
  background-color: rgba(1, 0, 88, 0.1);
}
.disabled\:cursor-not-allowed:disabled{
  cursor: not-allowed;
}
.disabled\:opacity-50:disabled{
  opacity: 0.5;
}
.group:hover .group-hover\:block{
  display: block;
}
.group:hover .group-hover\:text-forest{
  --tw-text-opacity: 1;
  color: rgb(116 229 211 / var(--tw-text-opacity, 1));
}
.group:hover .group-hover\:text-iris{
  --tw-text-opacity: 1;
  color: rgb(100 79 202 / var(--tw-text-opacity, 1));
}
.group:hover .group-hover\:text-munsell{
  --tw-text-opacity: 1;
  color: rgb(253 0 72 / var(--tw-text-opacity, 1));
}
.group:hover .group-hover\:text-pepper-dark{
  --tw-text-opacity: 1;
  color: rgb(214 0 60 / var(--tw-text-opacity, 1));
}
.group:hover .group-hover\:opacity-80{
  opacity: 0.8;
}
.has-\[\[data-row-link\]\[data-focus\]\]\:outline:has([data-row-link][data-focus]){
  outline-style: solid;
}
.has-\[\[data-row-link\]\[data-focus\]\]\:outline-2:has([data-row-link][data-focus]){
  outline-width: 2px;
}
.has-\[\[data-row-link\]\[data-focus\]\]\:-outline-offset-2:has([data-row-link][data-focus]){
  outline-offset: -2px;
}
.has-\[\[data-row-link\]\[data-focus\]\]\:outline-blue-500:has([data-row-link][data-focus]){
  outline-color: #3b82f6;
}
.data-\[popup-open\]\:mt-1[data-popup-open]{
  margin-top: 0.25rem;
}
.data-\[orientation\=vertical\]\:w-full[data-orientation="vertical"]{
  width: 100%;
}
.data-\[checked\]\:translate-x-4[data-checked]{
  --tw-translate-x: 1rem;
  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));
}
.data-\[ending-style\]\:data-\[activation-direction\=left\]\:translate-x-\[50\%\][data-activation-direction="left"][data-ending-style]{
  --tw-translate-x: 50%;
  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));
}
.data-\[ending-style\]\:data-\[activation-direction\=right\]\:translate-x-\[-50\%\][data-activation-direction="right"][data-ending-style]{
  --tw-translate-x: -50%;
  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));
}
.data-\[starting-style\]\:data-\[activation-direction\=left\]\:translate-x-\[-50\%\][data-activation-direction="left"][data-starting-style]{
  --tw-translate-x: -50%;
  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));
}
.data-\[starting-style\]\:data-\[activation-direction\=right\]\:translate-x-\[50\%\][data-activation-direction="right"][data-starting-style]{
  --tw-translate-x: 50%;
  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));
}
.data-\[popup-open\]\:rotate-180[data-popup-open]{
  --tw-rotate: 180deg;
  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));
}
.data-\[ending-style\]\:scale-90[data-ending-style]{
  --tw-scale-x: .9;
  --tw-scale-y: .9;
  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));
}
.data-\[starting-style\]\:scale-90[data-starting-style]{
  --tw-scale-x: .9;
  --tw-scale-y: .9;
  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));
}
.data-\[orientation\=vertical\]\:flex-row[data-orientation="vertical"]{
  flex-direction: row;
}
.data-\[state\=active\]\:border-purple[data-state="active"]{
  --tw-border-opacity: 1;
  border-color: rgb(100 79 202 / var(--tw-border-opacity, 1));
}
.data-\[state\=active\]\:border-red[data-state="active"]{
  --tw-border-opacity: 1;
  border-color: rgb(253 12 96 / var(--tw-border-opacity, 1));
}
.data-\[state\=active\]\:border-seafoam[data-state="active"]{
  --tw-border-opacity: 1;
  border-color: rgb(41 193 159 / var(--tw-border-opacity, 1));
}
.data-\[state\=active\]\:border-stratos[data-state="active"]{
  --tw-border-opacity: 1;
  border-color: rgb(1 0 88 / var(--tw-border-opacity, 1));
}
.data-\[state\=active\]\:border-sunflower[data-state="active"]{
  --tw-border-opacity: 1;
  border-color: rgb(240 227 27 / var(--tw-border-opacity, 1));
}
.data-\[popup-open\]\:bg-stratos-transparent[data-popup-open]{
  background-color: rgba(1, 0, 88, 0.1);
}
.data-\[state\=active\]\:bg-white[data-state="active"]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.data-\[checked\]\:bg-gradient-to-r[data-checked]{
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.data-\[checked\]\:from-stratos[data-checked]{
  --tw-gradient-from: #010058 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(1 0 88 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.data-\[checked\]\:to-stratos-dark[data-checked]{
  --tw-gradient-to: #000027 var(--tw-gradient-to-position);
}
.data-\[selected\]\:text-purple[data-selected]{
  --tw-text-opacity: 1;
  color: rgb(100 79 202 / var(--tw-text-opacity, 1));
}
.data-\[selected\]\:text-red[data-selected]{
  --tw-text-opacity: 1;
  color: rgb(253 12 96 / var(--tw-text-opacity, 1));
}
.data-\[selected\]\:text-seafoam[data-selected]{
  --tw-text-opacity: 1;
  color: rgb(41 193 159 / var(--tw-text-opacity, 1));
}
.data-\[selected\]\:text-stratos[data-selected]{
  --tw-text-opacity: 1;
  color: rgb(1 0 88 / var(--tw-text-opacity, 1));
}
.data-\[selected\]\:text-sunflower[data-selected]{
  --tw-text-opacity: 1;
  color: rgb(240 227 27 / var(--tw-text-opacity, 1));
}
.data-\[state\=active\]\:text-stratos[data-state="active"]{
  --tw-text-opacity: 1;
  color: rgb(1 0 88 / var(--tw-text-opacity, 1));
}
.data-\[ending-style\]\:opacity-0[data-ending-style]{
  opacity: 0;
}
.data-\[starting-style\]\:opacity-0[data-starting-style]{
  opacity: 0;
}
.data-\[checked\]\:shadow-\[0_8px_16px_-6px_rgba\(1\2c 0\2c 88\2c 0\.45\)\][data-checked]{
  --tw-shadow: 0 8px 16px -6px rgba(1,0,88,0.45);
  --tw-shadow-colored: 0 8px 16px -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);
}
.data-\[instant\]\:transition-none[data-instant]{
  transition-property: none;
}
.data-\[ending-style\]\:duration-150[data-ending-style]{
  transition-duration: 150ms;
}
.data-\[state\=open\]\:animate-in[data-state="open"]{
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}
.data-\[state\=closed\]\:animate-out[data-state="closed"]{
  animation-name: exit;
  animation-duration: 150ms;
  --tw-exit-opacity: initial;
  --tw-exit-scale: initial;
  --tw-exit-rotate: initial;
  --tw-exit-translate-x: initial;
  --tw-exit-translate-y: initial;
}
.data-\[state\=closed\]\:fade-out-0[data-state="closed"]{
  --tw-exit-opacity: 0;
}
.data-\[state\=closed\]\:fade-out-80[data-state="closed"]{
  --tw-exit-opacity: 0.8;
}
.data-\[state\=closed\]\:zoom-out-95[data-state="closed"]{
  --tw-exit-scale: .95;
}
.data-\[side\=bottom\]\:slide-in-from-top-2[data-side="bottom"]{
  --tw-enter-translate-y: -0.5rem;
}
.data-\[side\=left\]\:slide-in-from-right-2[data-side="left"]{
  --tw-enter-translate-x: 0.5rem;
}
.data-\[side\=right\]\:slide-in-from-left-2[data-side="right"]{
  --tw-enter-translate-x: -0.5rem;
}
.data-\[side\=top\]\:slide-in-from-bottom-2[data-side="top"]{
  --tw-enter-translate-y: 0.5rem;
}
.data-\[state\=closed\]\:slide-out-to-right-full[data-state="closed"]{
  --tw-exit-translate-x: 100%;
}
.data-\[state\=open\]\:slide-in-from-top-full[data-state="open"]{
  --tw-enter-translate-y: -100%;
}
.data-\[ending-style\]\:duration-150[data-ending-style]{
  animation-duration: 150ms;
}
.\*\:data-\[slot\=icon\]\:-mx-0\.5[data-slot="icon"] > *{
  margin-left: -0.125rem;
  margin-right: -0.125rem;
}
.\*\:data-\[slot\=icon\]\:my-0[data-slot="icon"] > *{
  margin-top: 0;
  margin-bottom: 0;
}
.\*\:data-\[slot\=loader\]\:-mx-0\.5[data-slot="loader"] > *{
  margin-left: -0.125rem;
  margin-right: -0.125rem;
}
.\*\:data-\[slot\=loader\]\:my-0[data-slot="loader"] > *{
  margin-top: 0;
  margin-bottom: 0;
}
.\*\:data-\[slot\=icon\]\:mr-2[data-slot="icon"] > *{
  margin-right: 0.5rem;
}
.\*\:data-\[slot\=icon\]\:size-3\.5[data-slot="icon"] > *{
  width: 0.875rem;
  height: 0.875rem;
}
.\*\:data-\[slot\=icon\]\:size-5[data-slot="icon"] > *{
  width: 1.25rem;
  height: 1.25rem;
}
.\*\:data-\[slot\=icon\]\:size-\[1\.125rem\][data-slot="icon"] > *{
  width: 1.125rem;
  height: 1.125rem;
}
.\*\:data-\[slot\=loader\]\:size-3\.5[data-slot="loader"] > *{
  width: 0.875rem;
  height: 0.875rem;
}
.\*\:data-\[slot\=loader\]\:size-5[data-slot="loader"] > *{
  width: 1.25rem;
  height: 1.25rem;
}
.\*\:data-\[slot\=loader\]\:size-\[1\.125rem\][data-slot="loader"] > *{
  width: 1.125rem;
  height: 1.125rem;
}
.\*\:data-\[slot\=icon\]\:h-4[data-slot="icon"] > *{
  height: 1rem;
}
.\*\:data-\[slot\=icon\]\:w-4[data-slot="icon"] > *{
  width: 1rem;
}
.\*\:data-\[slot\=icon\]\:shrink-0[data-slot="icon"] > *{
  flex-shrink: 0;
}
.\*\:data-\[slot\=loader\]\:shrink-0[data-slot="loader"] > *{
  flex-shrink: 0;
}
.\*\:data-\[slot\=icon\]\:self-center[data-slot="icon"] > *{
  align-self: center;
}
.\*\:data-\[slot\=loader\]\:self-center[data-slot="loader"] > *{
  align-self: center;
}
.data-\[state\=active\]\:hover\:text-purple:hover[data-state="active"]{
  --tw-text-opacity: 1;
  color: rgb(100 79 202 / var(--tw-text-opacity, 1));
}
.data-\[state\=active\]\:hover\:text-red:hover[data-state="active"]{
  --tw-text-opacity: 1;
  color: rgb(253 12 96 / var(--tw-text-opacity, 1));
}
.data-\[state\=active\]\:hover\:text-seafoam:hover[data-state="active"]{
  --tw-text-opacity: 1;
  color: rgb(41 193 159 / var(--tw-text-opacity, 1));
}
.data-\[state\=active\]\:hover\:text-stratos:hover[data-state="active"]{
  --tw-text-opacity: 1;
  color: rgb(1 0 88 / var(--tw-text-opacity, 1));
}
.data-\[state\=active\]\:hover\:text-sunflower:hover[data-state="active"]{
  --tw-text-opacity: 1;
  color: rgb(240 227 27 / var(--tw-text-opacity, 1));
}
.group\/tablist[data-orientation="horizontal"] .group-data-\[orientation\=horizontal\]\/tablist\:bottom-0{
  bottom: 0px;
}
.group\/tablist[data-orientation="vertical"] .group-data-\[orientation\=vertical\]\/tablist\:-left-\[1px\]{
  left: -1px;
}
.group\/tablist[data-orientation="horizontal"] .group-data-\[orientation\=horizontal\]\/tablist\:h-\[2px\]{
  height: 2px;
}
.group\/tablist[data-orientation="vertical"] .group-data-\[orientation\=vertical\]\/tablist\:h-full{
  height: 100%;
}
.group\/tablist[data-orientation="horizontal"] .group-data-\[orientation\=horizontal\]\/tablist\:w-full{
  width: 100%;
}
.group\/tablist[data-orientation="vertical"] .group-data-\[orientation\=vertical\]\/tablist\:w-\[2px\]{
  width: 2px;
}
.group\/tablist[data-orientation="vertical"] .group-data-\[orientation\=vertical\]\/tablist\:w-full{
  width: 100%;
}
.group\/tablist[data-orientation="vertical"] .group-data-\[orientation\=vertical\]\/tablist\:justify-start{
  justify-content: flex-start;
}
.group\/tablist[data-orientation="horizontal"] .group-data-\[orientation\=horizontal\]\/tablist\:border-b{
  border-bottom-width: 1px;
}
.group\/tablist[data-orientation="vertical"] .group-data-\[orientation\=vertical\]\/tablist\:border-l{
  border-left-width: 1px;
}
.group\/tab[data-selected] .group-data-\[selected\]\/tab\:bg-purple{
  --tw-bg-opacity: 1;
  background-color: rgb(100 79 202 / var(--tw-bg-opacity, 1));
}
.group\/tab[data-selected] .group-data-\[selected\]\/tab\:bg-red{
  --tw-bg-opacity: 1;
  background-color: rgb(253 12 96 / var(--tw-bg-opacity, 1));
}
.group\/tab[data-selected] .group-data-\[selected\]\/tab\:bg-seafoam{
  --tw-bg-opacity: 1;
  background-color: rgb(41 193 159 / var(--tw-bg-opacity, 1));
}
.group\/tab[data-selected] .group-data-\[selected\]\/tab\:bg-stratos{
  --tw-bg-opacity: 1;
  background-color: rgb(1 0 88 / var(--tw-bg-opacity, 1));
}
.group\/tab[data-selected] .group-data-\[selected\]\/tab\:bg-sunflower{
  --tw-bg-opacity: 1;
  background-color: rgb(240 227 27 / var(--tw-bg-opacity, 1));
}
.group[data-state="active"] .group-data-\[state\=active\]\:bg-purple{
  --tw-bg-opacity: 1;
  background-color: rgb(100 79 202 / var(--tw-bg-opacity, 1));
}
.group[data-state="active"] .group-data-\[state\=active\]\:bg-red{
  --tw-bg-opacity: 1;
  background-color: rgb(253 12 96 / var(--tw-bg-opacity, 1));
}
.group[data-state="active"] .group-data-\[state\=active\]\:bg-seafoam{
  --tw-bg-opacity: 1;
  background-color: rgb(41 193 159 / var(--tw-bg-opacity, 1));
}
.group[data-state="active"] .group-data-\[state\=active\]\:bg-stratos{
  --tw-bg-opacity: 1;
  background-color: rgb(1 0 88 / var(--tw-bg-opacity, 1));
}
.group[data-state="active"] .group-data-\[state\=active\]\:bg-sunflower{
  --tw-bg-opacity: 1;
  background-color: rgb(240 227 27 / var(--tw-bg-opacity, 1));
}
.group\/tablist[data-orientation="vertical"] .group-data-\[orientation\=vertical\]\/tablist\:px-0{
  padding-left: 0;
  padding-right: 0;
}
.group\/tablist[data-orientation="vertical"] .group-data-\[orientation\=vertical\]\/tablist\:py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.group\/tablist[data-orientation="horizontal"] .group-data-\[orientation\=horizontal\]\/tablist\:pb-4{
  padding-bottom: 1rem;
}
.group\/tablist[data-orientation="vertical"] .group-data-\[orientation\=vertical\]\/tablist\:pl-4{
  padding-left: 1rem;
}
.prose-headings\:font-medium :is(:where(h1, h2, h3, h4, h5, h6, th):not(:where([class~="not-prose"],[class~="not-prose"] *))){
  font-weight: 500;
}
.prose-headings\:text-navy-research :is(:where(h1, h2, h3, h4, h5, h6, th):not(:where([class~="not-prose"],[class~="not-prose"] *))){
  --tw-text-opacity: 1;
  color: rgb(1 0 70 / var(--tw-text-opacity, 1));
}
.prose-headings\:text-stratos :is(:where(h1, h2, h3, h4, h5, h6, th):not(:where([class~="not-prose"],[class~="not-prose"] *))){
  --tw-text-opacity: 1;
  color: rgb(1 0 88 / var(--tw-text-opacity, 1));
}
.prose-headings\:text-white :is(:where(h1, h2, h3, h4, h5, h6, th):not(:where([class~="not-prose"],[class~="not-prose"] *))){
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.prose-p\:text-navy-research :is(:where(p):not(:where([class~="not-prose"],[class~="not-prose"] *))){
  --tw-text-opacity: 1;
  color: rgb(1 0 70 / var(--tw-text-opacity, 1));
}
.prose-p\:text-white :is(:where(p):not(:where([class~="not-prose"],[class~="not-prose"] *))){
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
@media (min-width: 640px){
  .sm\:bottom-\[-20\%\]{
    bottom: -20%;
  }
  .sm\:-mx-4{
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .sm\:mx-4{
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .sm\:-ml-4{
    margin-left: -1rem;
  }
  .sm\:mb-2{
    margin-bottom: 0.5rem;
  }
  .sm\:mt-0{
    margin-top: 0;
  }
  .sm\:mt-16{
    margin-top: 4rem;
  }
  .sm\:line-clamp-4{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }
  .sm\:inline-block{
    display: inline-block;
  }
  .sm\:size-10{
    width: 2.5rem;
    height: 2.5rem;
  }
  .sm\:size-7{
    width: 1.75rem;
    height: 1.75rem;
  }
  .sm\:size-8{
    width: 2rem;
    height: 2rem;
  }
  .sm\:size-9{
    width: 2.25rem;
    height: 2.25rem;
  }
  .sm\:min-h-10{
    min-height: 2.5rem;
  }
  .sm\:min-h-7{
    min-height: 1.75rem;
  }
  .sm\:min-h-8{
    min-height: 2rem;
  }
  .sm\:min-h-9{
    min-height: 2.25rem;
  }
  .sm\:w-\[522px\]{
    width: 522px;
  }
  .sm\:w-full{
    width: 100%;
  }
  .sm\:flex-row{
    flex-direction: row;
  }
  .sm\:justify-between{
    justify-content: space-between;
  }
  .sm\:self-end{
    align-self: flex-end;
  }
  .sm\:rounded-xl{
    border-radius: 0.75rem;
  }
  .sm\:p-6{
    padding: 1.5rem;
  }
  .sm\:px-10{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .sm\:px-2{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .sm\:px-2\.5{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
  .sm\:px-3{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .sm\:px-3\.5{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }
  .sm\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .sm\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .sm\:px-\[--gutter\]{
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
  .sm\:py-1\.5{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }
  .sm\:py-2{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .sm\:py-\[--spacing\(1\.4\)\]{
    padding-top: var(--spacing(1.4));
    padding-bottom: var(--spacing(1.4));
  }
  .sm\:pr-2{
    padding-right: 0.5rem;
  }
  .sm\:text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .sm\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .sm\:text-base{
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .sm\:text-sm\/6{
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
  .sm\:text-xl{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .sm\:text-xs\/4{
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .sm\:first\:pl-2:first-child{
    padding-left: 0.5rem;
  }
  .sm\:last\:pr-2:last-child{
    padding-right: 0.5rem;
  }
  .data-\[state\=open\]\:sm\:slide-in-from-bottom-full[data-state="open"]{
    --tw-enter-translate-y: 100%;
  }
  .sm\:\*\:data-\[slot\=icon\]\:my-0[data-slot="icon"] > *{
    margin-top: 0;
    margin-bottom: 0;
  }
  .sm\:\*\:data-\[slot\=loader\]\:my-0[data-slot="loader"] > *{
    margin-top: 0;
    margin-bottom: 0;
  }
  .sm\:\*\:data-\[slot\=icon\]\:size-3[data-slot="icon"] > *{
    width: 0.75rem;
    height: 0.75rem;
  }
  .sm\:\*\:data-\[slot\=icon\]\:size-4[data-slot="icon"] > *{
    width: 1rem;
    height: 1rem;
  }
  .sm\:\*\:data-\[slot\=loader\]\:size-3[data-slot="loader"] > *{
    width: 0.75rem;
    height: 0.75rem;
  }
  .sm\:\*\:data-\[slot\=loader\]\:size-4[data-slot="loader"] > *{
    width: 1rem;
    height: 1rem;
  }
}
@media (min-width: 768px){
  .md\:bottom-\[-30\%\]{
    bottom: -30%;
  }
  .md\:col-span-2{
    grid-column: span 2 / span 2;
  }
  .md\:mx-0{
    margin-left: 0;
    margin-right: 0;
  }
  .md\:-mt-\[200px\]{
    margin-top: -200px;
  }
  .md\:mb-4{
    margin-bottom: 1rem;
  }
  .md\:mb-8{
    margin-bottom: 2rem;
  }
  .md\:mb-\[5vh\]{
    margin-bottom: 5vh;
  }
  .md\:mt-0{
    margin-top: 0;
  }
  .md\:mt-10{
    margin-top: 2.5rem;
  }
  .md\:mt-16{
    margin-top: 4rem;
  }
  .md\:block{
    display: block;
  }
  .md\:inline{
    display: inline;
  }
  .md\:flex{
    display: flex;
  }
  .md\:inline-flex{
    display: inline-flex;
  }
  .md\:hidden{
    display: none;
  }
  .md\:h-10{
    height: 2.5rem;
  }
  .md\:h-auto{
    height: auto;
  }
  .md\:w-1\/12{
    width: 8.33333%;
  }
  .md\:w-1\/2{
    width: 50%;
  }
  .md\:w-1\/3{
    width: 33.33333%;
  }
  .md\:w-10{
    width: 2.5rem;
  }
  .md\:w-10\/12{
    width: 83.33333%;
  }
  .md\:w-11\/12{
    width: 91.66667%;
  }
  .md\:w-2\/12{
    width: 16.66667%;
  }
  .md\:w-3\/12{
    width: 25%;
  }
  .md\:w-4\/12{
    width: 33.33333%;
  }
  .md\:w-4\/6{
    width: 66.666667%;
  }
  .md\:w-5\/12{
    width: 41.66667%;
  }
  .md\:w-5\/6{
    width: 83.33333%;
  }
  .md\:w-6\/12{
    width: 50%;
  }
  .md\:w-7\/12{
    width: 58.33333%;
  }
  .md\:w-8\/12{
    width: 66.66667%;
  }
  .md\:w-9\/12{
    width: 75%;
  }
  .md\:w-95{
    width: 23.75rem;
  }
  .md\:w-\[550px\]{
    width: 550px;
  }
  .md\:w-\[55vw\]{
    width: 55vw;
  }
  .md\:w-auto{
    width: auto;
  }
  .md\:w-full{
    width: 100%;
  }
  .md\:flex-1{
    flex: 1 1 0%;
  }
  .md\:grow{
    flex-grow: 1;
  }
  .md\:auto-rows-fr{
    grid-auto-rows: minmax(0, 1fr);
  }
  .md\:grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .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\:flex-col{
    flex-direction: column;
  }
  .md\:items-start{
    align-items: flex-start;
  }
  .md\:items-end{
    align-items: flex-end;
  }
  .md\:items-center{
    align-items: center;
  }
  .md\:justify-start{
    justify-content: flex-start;
  }
  .md\:justify-end{
    justify-content: flex-end;
  }
  .md\:justify-center{
    justify-content: center;
  }
  .md\:justify-between{
    justify-content: space-between;
  }
  .md\:gap-0{
    gap: 0px;
  }
  .md\:self-end{
    align-self: flex-end;
  }
  .md\:self-center{
    align-self: center;
  }
  .md\:overflow-y-visible{
    overflow-y: visible;
  }
  .md\:border-b-2{
    border-bottom-width: 2px;
  }
  .md\:border-transparent{
    border-color: transparent;
  }
  .md\:p-10{
    padding: 2.5rem;
  }
  .md\:px-0{
    padding-left: 0;
    padding-right: 0;
  }
  .md\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .md\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .md\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .md\:px-\[6\.375em\]{
    padding-left: 6.375em;
    padding-right: 6.375em;
  }
  .md\:py-0{
    padding-top: 0;
    padding-bottom: 0;
  }
  .md\:py-20{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .md\:py-24{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .md\:pl-20{
    padding-left: 5rem;
  }
  .md\:pr-18{
    padding-right: 4.5rem;
  }
  .md\:pr-6{
    padding-right: 1.5rem;
  }
  .md\:pt-0{
    padding-top: 0;
  }
  .md\:pt-6{
    padding-top: 1.5rem;
  }
  .md\:text-center{
    text-align: center;
  }
  .md\:text-22{
    font-size: 1.375rem;
  }
  .md\:text-24{
    font-size: 1.5rem;
  }
  .md\:text-27{
    font-size: 1.6875rem;
  }
  .md\:text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .md\:text-34{
    font-size: 2.125rem;
  }
  .md\:text-42{
    font-size: 2.625rem;
  }
  .md\:text-54{
    font-size: 3.375rem;
  }
  .md\:text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .md\:leading-30{
    line-height: 1.875rem;
  }
  .md\:leading-32{
    line-height: 2rem;
  }
  .md\:leading-34{
    line-height: 2.125rem;
  }
  .md\:leading-40{
    line-height: 2.5rem;
  }
  .md\:leading-50{
    line-height: 3.125rem;
  }
  .md\:leading-64{
    line-height: 4rem;
  }
}
@media (min-width: 1024px){
  .lg\:right-\[calc\(max\(2rem\2c 50\%-38rem\)\+40rem\)\]{
    right: calc(max(2rem,50% - 38rem) + 40rem);
  }
  .lg\:top-1\/2{
    top: 50%;
  }
  .lg\:col-span-3{
    grid-column: span 3 / span 3;
  }
  .lg\:col-span-5{
    grid-column: span 5 / span 5;
  }
  .lg\:col-span-6{
    grid-column: span 6 / span 6;
  }
  .lg\:col-span-8{
    grid-column: span 8 / span 8;
  }
  .lg\:col-start-10{
    grid-column-start: 10;
  }
  .lg\:col-start-5{
    grid-column-start: 5;
  }
  .lg\:mx-0{
    margin-left: 0;
    margin-right: 0;
  }
  .lg\:-mr-8{
    margin-right: -2rem;
  }
  .lg\:ml-\[10\.5em\]{
    margin-left: 10.5em;
  }
  .lg\:ml-\[4\.75em\]{
    margin-left: 4.75em;
  }
  .lg\:mr-\[10\.875em\]{
    margin-right: 10.875em;
  }
  .lg\:mr-\[5\.25em\]{
    margin-right: 5.25em;
  }
  .lg\:mt-0{
    margin-top: 0;
  }
  .lg\:mt-auto{
    margin-top: auto;
  }
  .lg\:block{
    display: block;
  }
  .lg\:inline{
    display: inline;
  }
  .lg\:flex{
    display: flex;
  }
  .lg\:grid{
    display: grid;
  }
  .lg\:hidden{
    display: none;
  }
  .lg\:w-1\/2{
    width: 50%;
  }
  .lg\:w-1\/3{
    width: 33.33333%;
  }
  .lg\:w-10\/12{
    width: 83.33333%;
  }
  .lg\:w-3\/4{
    width: 75%;
  }
  .lg\:w-4\/12{
    width: 33.33333%;
  }
  .lg\:w-5\/12{
    width: 41.66667%;
  }
  .lg\:w-7\/12{
    width: 58.33333%;
  }
  .lg\:w-8\/12{
    width: 66.66667%;
  }
  .lg\:w-auto{
    width: auto;
  }
  .lg\:min-w-\[32rem\]{
    min-width: 32rem;
  }
  .lg\:flex-auto{
    flex: 1 1 auto;
  }
  .lg\:-translate-y-1\/2{
    --tw-translate-y: -50%;
    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));
  }
  .lg\:scale-100{
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    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));
  }
  .lg\:grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .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-9{
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .lg\:flex-row{
    flex-direction: row;
  }
  .lg\:flex-row-reverse{
    flex-direction: row-reverse;
  }
  .lg\:justify-between{
    justify-content: space-between;
  }
  .lg\:gap-8{
    gap: 2rem;
  }
  .lg\:overflow-visible{
    overflow: visible;
  }
  .lg\:p-0{
    padding: 0;
  }
  .lg\:px-0{
    padding-left: 0;
    padding-right: 0;
  }
  .lg\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .lg\:pb-20{
    padding-bottom: 5rem;
  }
  .lg\:pl-10{
    padding-left: 2.5rem;
  }
  .lg\:pr-5{
    padding-right: 1.25rem;
  }
  .lg\:pt-0{
    padding-top: 0;
  }
  .lg\:text-24{
    font-size: 1.5rem;
  }
  .lg\:text-32{
    font-size: 2rem;
  }
  .lg\:text-3xl{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .lg\:text-40{
    font-size: 2.5rem;
  }
  .lg\:text-54{
    font-size: 3.375rem;
  }
  .lg\:text-70{
    font-size: 4.375rem;
  }
  .lg\:text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .lg\:leading-32{
    line-height: 2rem;
  }
  .lg\:leading-38{
    line-height: 2.375rem;
  }
  .lg\:leading-40{
    line-height: 2.5rem;
  }
  .lg\:leading-48{
    line-height: 3rem;
  }
  .lg\:leading-64{
    line-height: 4rem;
  }
  .lg\:leading-80{
    line-height: 5rem;
  }
}
@media (min-width: 1280px){
  .xl\:bottom-\[-10\%\]{
    bottom: -10%;
  }
  .xl\:col-span-5{
    grid-column: span 5 / span 5;
  }
  .xl\:mt-0{
    margin-top: 0;
  }
  .xl\:block{
    display: block;
  }
  .xl\:inline{
    display: inline;
  }
  .xl\:flex{
    display: flex;
  }
  .xl\:hidden{
    display: none;
  }
  .xl\:h-auto{
    height: auto;
  }
  .xl\:w-auto{
    width: auto;
  }
  .xl\:w-g-2{
    width: 10.625rem;
  }
  .xl\:w-g-3{
    width: 16.875rem;
  }
  .xl\:flex-1{
    flex: 1 1 0%;
  }
  .xl\:grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .xl\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .xl\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .xl\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .xl\:items-start{
    align-items: flex-start;
  }
  .xl\:justify-end{
    justify-content: flex-end;
  }
  .xl\:justify-between{
    justify-content: space-between;
  }
  .xl\:px-0{
    padding-left: 0;
    padding-right: 0;
  }
  .xl\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .xl\:py-10{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .xl\:py-6\.5{
    padding-top: 1.625rem;
    padding-bottom: 1.625rem;
  }
  .xl\:pb-8{
    padding-bottom: 2rem;
  }
  .xl\:pl-14{
    padding-left: 3.5rem;
  }
  .xl\:pr-0{
    padding-right: 0;
  }
  .xl\:pr-24{
    padding-right: 6rem;
  }
  .xl\:pt-8{
    padding-top: 2rem;
  }
  .xl\:text-left{
    text-align: left;
  }
  .xl\:text-justify{
    text-align: justify;
  }
}
@media (min-width: 1536px){
  .\32xl\:block{
    display: block;
  }
  .\32xl\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (prefers-color-scheme: dark){
  .dark\:border-white\/5{
    border-color: rgb(255 255 255 / 0.05);
  }
  .dark\:border-b-white\/10{
    border-bottom-color: rgb(255 255 255 / 0.1);
  }
  .dark\:border-l-white\/5{
    border-left-color: rgb(255 255 255 / 0.05);
  }
  .dark\:bg-midnight\/60{
    background-color: rgb(1 3 74 / 0.6);
  }
  .dark\:bg-neutral-700{
    --tw-bg-opacity: 1;
    background-color: rgb(64 64 64 / var(--tw-bg-opacity, 1));
  }
  .dark\:bg-neutral-800{
    --tw-bg-opacity: 1;
    background-color: rgb(38 38 38 / var(--tw-bg-opacity, 1));
  }
  .dark\:text-neutral-200{
    --tw-text-opacity: 1;
    color: rgb(229 229 229 / var(--tw-text-opacity, 1));
  }
  .dark\:text-zinc-400{
    --tw-text-opacity: 1;
    color: rgb(161 161 170 / var(--tw-text-opacity, 1));
  }
  .dark\:shadow-none{
    --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);
  }
  .dark\:-outline-offset-1{
    outline-offset: -1px;
  }
  .dark\:outline-gray-300{
    outline-color: #d1d5db;
  }
  .dark\:even\:bg-white\/\[2\.5\%\]:nth-child(even){
    background-color: rgb(255 255 255 / 2.5%);
  }
  .dark\:focus-within\:bg-white\/\[2\.5\%\]:focus-within{
    background-color: rgb(255 255 255 / 2.5%);
  }
  .dark\:hover\:bg-white\/5:hover{
    background-color: rgb(255 255 255 / 0.05);
  }
  .dark\:hover\:bg-white\/\[2\.5\%\]:hover{
    background-color: rgb(255 255 255 / 2.5%);
  }
  .dark\:data-\[checked\]\:from-stratos[data-checked]{
    --tw-gradient-from: #010058 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(1 0 88 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  }
  .dark\:data-\[checked\]\:to-stratos[data-checked]{
    --tw-gradient-to: #010058 var(--tw-gradient-to-position);
  }
  .dark\:data-\[checked\]\:shadow-\[0_6px_16px_-6px_rgba\(0\2c 0\2c 0\2c 0\.65\)\][data-checked]{
    --tw-shadow: 0 6px 16px -6px rgba(0,0,0,0.65);
    --tw-shadow-colored: 0 6px 16px -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);
  }
}
@media (forced-colors: active){
  .forced-colors\:text-\[GrayText\]{
    color: GrayText;
  }
  .forced-colors\:\[--btn-icon\:ButtonText\]{
    --btn-icon: ButtonText;
  }
  .forced-colors\:hover\:\[--btn-icon\:ButtonText\]:hover{
    --btn-icon: ButtonText;
  }
}
.\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0:has([role=checkbox]){
  padding-right: 0;
}
.\[\&\>tr\]\:last\:border-b-0:last-child>tr{
  border-bottom-width: 0px;
}
.\[\&_img\]\:h-8 img{
  height: 2rem;
}
.\[\&_img\]\:w-8 img{
  width: 2rem;
}
.\[\&_svg\]\:h-8 svg{
  height: 2rem;
}
.\[\&_svg\]\:w-8 svg{
  width: 2rem;
}
.\[\&_tr\:last-child\]\:border-0 tr:last-child{
  border-width: 0px;
}
.\[\&_tr\]\:border-b tr{
  border-bottom-width: 1px;
}
/* purgecss start ignore */
*{
  font-family: Satoshi, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
	scroll-margin-top: 100px;
/*	@apply font-light;*/
}
em {
	font-size: inherit;
}
img, svg, video, canvas, iframe {
	display: inline;
}
.read-more:hover > p{
  padding-right: 0.25rem;
	transition: all 0.08s ease-out;
}
.quick-transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 75ms;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  animation-duration: 75ms;
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.hs-form{
  max-width: 100%;
  width: 100%;
  text-align: left;
  margin-top: -2rem;
}
.form-columns-1,
.form-columns-2,
.form-columns-3{
  width: 100%;
  padding: 0;
}
.field{
  height: 100%;
  width: 100%;
  float: left;
  margin-top: 2rem;
}
.legal-consent-container{
  margin-top: 2rem;
}
.legal-consent-container .field{
  margin-top: 0;
}
.form-columns-1 .field{
  width: 100%;
}
.form-columns-3 .field, 
.form-columns-2 .field{
  width: 100%;
}
.form-columns-3 .field{
  width: 33.33333%;
}
.form-columns-2 .field:nth-child(2),
.form-columns-3 .field:nth-child(2),
.hs-fieldtype-intl-phone .hs-input:nth-child(2),
.form-columns-3 .field:nth-child(3){
  margin-top: 2rem;
}
.cookie-reset-container{
  padding-top: 2.5rem;
}
.cookie-reset-container a{
  --tw-text-opacity: 1;
  color: rgb(253 0 72 / var(--tw-text-opacity, 1));
  text-decoration-line: none;
}
.cookie-reset-container a:hover{
  --tw-text-opacity: 1;
  color: rgb(214 0 60 / var(--tw-text-opacity, 1));
}
.image-wrapper {
	margin-top: -173px;
	height: 346px;
}
.image-height {
	max-height: 346px;
}
.hs-contact-container {
	transform: translateX(-50%);
}
.bottom-padding {
	padding-bottom: 205px; /* 173 +  32px */
}
@media (max-width: 480px) {
	.scale-down {
		transform: scale(0.6);
		transform-origin: left top;
	}

	.move-up {
		transform: translateY(-30%);
		transform-origin: left top;
	}
}
@media (min-width: 768px) {
	.form-columns-2 .field:nth-child(1){
    padding-right: 1rem;
  }

	.hs-fieldtype-intl-phone .hs-input:nth-child(1){
    margin-right: 1rem;
  }

	.form-columns-2 .field:nth-child(2){
    padding-left: 1rem;
  }

	.hs-fieldtype-intl-phone .hs-input:nth-child(2){
    margin-left: 1rem;
  }


	.hs-fieldtype-intl-phone{
    display: flex;
  }

	.hs-fieldtype-intl-phone .hs-input {
		/*@apply flex-1;*/
		max-width: calc(50%-1rem);
	}

	.form-columns-2 .field{
    width: 50%;
  }

	.form-columns-3 .field{
    width: 33.33333%;
  }

	.form-columns-3 .field:nth-child(1){
    padding-right: 1rem;
  }

	.form-columns-3 .field:nth-child(2){
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-top: 0;
  }

	.form-columns-3 .field:nth-child(3){
    padding-left: 1rem;
    margin-top: 0;
  }
}
@media (min-width: 1280px) {
	.image-wrapper {
		margin-top: -360px;
		height: 720px;
	}
}
.hs-form .hs-form-field label span,
.label{
  font-size: 1rem;
  line-height: 1.75rem;
  letter-spacing: 0.0125em;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(70 70 70 / var(--tw-text-opacity, 1));
}
.hs-form .hs-form-field label span.hs-form-required{
  --tw-text-opacity: 1;
  color: rgb(253 0 72 / var(--tw-text-opacity, 1));
  margin-left: 0.25rem;
}
.PhoneInputCountry{
  margin-top: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-width: 1px;
  border-radius: 0.25rem;
  --tw-border-opacity: 1;
  border-color: rgb(212 214 227 / var(--tw-border-opacity, 1));
  font-size: .9375rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.hs-form input[type="text"], 
.hs-form input[type="email"],
.hs-form input[type="tel"],
.hs-form textarea,
.hs-form select{
  margin-top: 0.5rem !important;
  width: 100%;
  --tw-border-opacity: 1;
  border-color: rgb(212 214 227 / var(--tw-border-opacity, 1));
  border-width: 1px;
  border-radius: 0.25rem;
  --tw-text-opacity: 1;
  color: rgb(157 158 182 / var(--tw-text-opacity, 1));
  font-size: .9375rem;
}
.hs-form input[type="text"],
.hs-form input[type="email"],
.hs-form input[type="tel"]{
  height: 1.25rem;
  padding: 1.25rem;
}
.hs-form textarea{
  height: 4rem;
  padding: 1.25rem;
}
.hs-form select{
  height: 2.5rem;
}
.hs-form input[type="checkbox"] {
	padding: 0;
	margin-top: 0.5rem;
	margin-right: 0.5rem;
	height: 15px;
	width: 15px;
	min-width: 15px;
	--tw-text-opacity: 1;
	color: rgb(253 0 72 / var(--tw-text-opacity, 1));
}
.hs-form-booleancheckbox label{
  display: flex;
  cursor: pointer;
}
.hs-form-booleancheckbox label p{
  display: inline;
  cursor: pointer;
}
.hs-submit{
  padding-top: 1.25rem;
}
.hs-button{
  margin-top: 1.25rem;
}
.actions{
  text-align: center;
}
@media (min-width: 768px) {
	#newsletter .actions{
    text-align: left;
  }
}
.submitted-message{
  margin-top: 0.75rem;
  --tw-text-opacity: 1;
  color: rgb(70 70 70 / var(--tw-text-opacity, 1));
}
.hs-error-msgs{
  margin-top: 0.75rem;
}
.hs-error-msg{
  --tw-text-opacity: 1;
  color: rgb(253 0 72 / var(--tw-text-opacity, 1));
  font-size: .8125rem;
}
.hs_recaptcha{
  width: 100%;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.hs-form input[type="submit"],
.hs-form input[type="button"]{
  margin-left: auto;
  margin-right: auto;
  border-radius: 9999px;
  position: relative;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  justify-content: center;
  text-decoration-line: none;
  cursor: pointer;
  --tw-bg-opacity: 1;
  background-color: rgb(253 0 72 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  height: 3rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
.hubspot-pepper .hs-form input[type="submit"],
.hubspot-pepper .hs-form input[type="button"]{
  --tw-bg-opacity: 1;
  background-color: rgb(253 0 72 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.hubspot-blurple .hs-form input[type="submit"],
.hubspot-blurple .hs-form input[type="button"]{
  --tw-bg-opacity: 1;
  background-color: rgb(1 0 88 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.hubspot-pepper .hs-form input[type="checkbox"]{
  --tw-text-opacity: 1;
  color: rgb(253 0 72 / var(--tw-text-opacity, 1));
}
.hubspot-blurple .hs-form input[type="checkbox"]{
  --tw-text-opacity: 1;
  color: rgb(1 0 88 / var(--tw-text-opacity, 1));
}
.player-wrapper{
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* Player ratio: 100 / (1280 / 720) */
}
.player-wrapper-youtube{
  position: relative;
  width: 100%;
	padding-top: 50%; /* Player ratio: 100 / (1280 / 720) */
}
.react-player{
  position: absolute;
  top: 0px;
  left: 0px;
  -webkit-mask-image: radial-gradient(white, black);
          mask-image: radial-gradient(white, black);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}
#newsletter label{
  display: none;
}
#newsletter > div {
	/* @apply w-full; */
	margin-left: 0.9375rem;
	margin-right: 0.9375rem;
}
#newsletter form{
  width: 100%;
}
@media (min-width: 640px) {
	#newsletter .hs_email{
    width: 66.66667%;
  }
}
#newsletter .hs-form input[type="submit"],
#newsletter .hs-form input[type="button"]{
  margin-left: 0;
  margin-right: 0;
  border-radius: 9999px;
  position: relative;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  justify-content: center;
  text-decoration-line: none;
  cursor: pointer;
  --tw-bg-opacity: 1;
  background-color: rgb(1 0 88 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  height: 2.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.twitter-tweet-rendered {
	width: 350px !important;
}
@media (min-width: 640px) {
	.twitter-tweet-rendered {
		width: 450px !important;
	}
}
@media (min-width: 768px) {
	.twitter-tweet-rendered {
		width: 550px !important;
	}
}
.bg-pepper-gradient {
	background: linear-gradient(180deg, #FF0048 0%, #F94376 100%);
}
.bg-midnight-gradient {
	background: linear-gradient(94.37deg, #000988 9.52%, #01003C 40.53%);
}
.bg-aquamarine-gradient {
	background: linear-gradient(141.83deg, #74E5D3 17.38%, #6CE0CD 47.43%, #54D1BC 79.99%, #28AD95 113.39%, #169B81 147.21%, #007C64 177.66%);
}
.bg-aquamarine-reverse-gradient {
	background: linear-gradient(316.96deg, #74E5D3 28.65%, #6CE0CD 52.82%, #54D1BC 79.01%, #28AD95 105.86%, #169B81 133.07%, #007C64 157.56%);
}
.bg-torch-gradient {
	background: linear-gradient(131.63deg, #FD0048 49.4%, #F60147 57.08%, #E50547 66.86%, #C80B46 78.73%, #A11445 91.31%, #6E1F44 105.28%, #6B2044 105.98%, #6B2044 119.25%);
}
.bg-youtube {
	background-image: linear-gradient(-45deg, red 0%, #9b0000 100%);
}
.bg-spotify {
	background-image: linear-gradient(-45deg, #00d954 0%, #00924a 100%, #00924a 100%);
}
.title-1{
  font-family: Satoshi, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 500;
  font-size: 90px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.title-2{
  font-family: Satoshi, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.title-3{
  font-family: Satoshi, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.title-4{
  font-family: Satoshi, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.title-5{
  font-family: Satoshi, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.title-accent-1, 
.title-1 .highlight{
  font-family: Bitter, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 90px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.title-accent-2, 
.title-2 .highlight{
  font-family: Bitter, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 48px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.title-accent-3, 
.title-3 .highlight{
  font-family: Bitter, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.title-accent-4, 
.title-4 .highlight{
  font-family: Bitter, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.title-accent-5, 
.title-5 .highlight{
  font-family: Bitter, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.body-2xl{
  font-family: Satoshi, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
}
.body-xl{
  font-family: Satoshi, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
}
.body-lg{
  font-family: Satoshi, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.7;
}
.body-lg-bold{
  font-family: Satoshi, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.7;
}
.body-md{
  font-family: Satoshi, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.body-md-bold{
  font-family: Satoshi, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.body-xs{
  font-family: Satoshi, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.body-sm{
  font-family: Satoshi, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.button-md{
  font-family: Satoshi, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.button-sm{
  font-family: Satoshi, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.button-xs{
  font-family: Satoshi, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.research-title-1{
  font-size: 5.5em;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.065em;
}
.research-title-2{
  font-size: 3.5em;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.035em;
}
.research-title-3{
  font-size: 2.5em;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.025em;
}
.research-title-4{
  font-size: 2em;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.02em;
}
.research-body-medium{
  font-size: 1em;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.0075em;
}
.research-body-regular{
  font-size: 1.5em;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.0075em;
}
.research-body-large{
  font-size: 2em;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.0075em;
}
.research-body-xlarge{
  font-size: 2.5em;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.0075em;
}
.gradient-slide {
	background: linear-gradient(90deg, #74E5D3, #FFF56A, #FFAF4D, #FF7BA9, #A592FF, #74E5D3);
	background-size: 300% 50%;
	animation: gradientSlide 10000ms linear infinite;
	animation-delay: 1ms;
}
.gradient-slide:hover {
	animation-timing-function: ease-out;
	animation-duration: 187ms;
	background: #CBDBFF;
	box-shadow: 0px 0px 12.75px 3.19px #FFFFFF54 inset;
}
@keyframes gradientSlide {
	0% { background-position: 0% 50%; }
	100% { background-position: 600% 50%; }
}
.gradient-slide-border {
    position: relative;
    background: transparent;
    padding: 4px; /* Adjust based on desired border thickness */
    overflow: hidden; /* Ensure content doesn't overflow the border */
}
.gradient-slide-border::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, #74E5D3, #FFF56A, #FFAF4D, #FF7BA9, #A592FF, #74E5D3);
    background-size: 300% 100%;
    animation: gradientSlide 10s linear infinite;
    z-index: -1;
	border-radius: inherit;

    /* Masking to show only the border area */
    padding: 4px; /* Same as .gradient-slide-border padding */
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
            mask:
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}
.gradient-slide-border:hover::before {
    animation-timing-function: ease-out;
    animation-duration: 187ms;
    background: #CBDBFF;
    box-shadow: inset 0px 0px 12.75px 3.19px rgba(255, 255, 255, 0.33);
}
html.is-locked,
html.is-locked body {
  /* want to fix the height to the window height */
	/*  height: 100% !important;*/

  /* want to block all overflowing content */
  overflow: hidden !important;
  
  /* want to exclude padding from the height */
  box-sizing: border-box;
}
/* .list-torch li::before,
.list-stratos li::before,
.list-white li::before {
	content: "\2022";
	@apply font-bold;
	display: inline-block;
	width: 1em;
} */
.list-torch li,
.list-stratos li,
.list-teal li,
.list-white li {
	list-style: disc;
	list-style-position: outside;
	/* margin-left: 1em; */
	padding-left: 0.5em;
}
.list-torch li::marker{
  --tw-text-opacity: 1;
  color: rgb(253 0 72 / var(--tw-text-opacity, 1));
}
.list-stratos li::marker{
  --tw-text-opacity: 1;
  color: rgb(1 0 88 / var(--tw-text-opacity, 1));
}
.list-white li::marker{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.list-teal li::marker{
  --tw-text-opacity: 1;
  color: rgb(74 222 248 / var(--tw-text-opacity, 1));
}
.success-card-title .highlight{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  border-radius: 0.25rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-grow: 0;
  width: -moz-fit-content;
  width: fit-content;
  font-family: Bitter, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-style: italic;
  gap: 0.5rem;
  white-space: nowrap;
}
.success-card-title.blue .highlight{
  --tw-text-opacity: 1;
  color: rgb(0 0 165 / var(--tw-text-opacity, 1));
}
.success-card-title.red .highlight{
  --tw-text-opacity: 1;
  color: rgb(253 12 96 / var(--tw-text-opacity, 1));
}
.quote-container.bg-pastel-red  .highlight{
  --tw-text-opacity: 1;
  color: rgb(253 12 96 / var(--tw-text-opacity, 1));
}
.quote-container.bg-pastel-teal  .highlight{
  --tw-text-opacity: 1;
  color: rgb(74 222 248 / var(--tw-text-opacity, 1));
}
.quote-container.bg-pastel-purple  .highlight{
  --tw-text-opacity: 1;
  color: rgb(100 79 202 / var(--tw-text-opacity, 1));
}
.quote-container.bg-pastel-orange  .highlight{
  --tw-text-opacity: 1;
  color: rgb(221 96 0 / var(--tw-text-opacity, 1));
}
.quote-container.bg-pastel-light-blue  .highlight{
  --tw-text-opacity: 1;
  color: rgb(25 179 206 / var(--tw-text-opacity, 1));
}
.quote-container.bg-pastel-yellow  .highlight{
  --tw-text-opacity: 1;
  color: rgb(204 143 0 / var(--tw-text-opacity, 1));
}
.quote-container.bg-pastel-dark-blue  .highlight{
  --tw-text-opacity: 1;
  color: rgb(0 0 165 / var(--tw-text-opacity, 1));
}
.quote-container.bg-pastel-fuschia  .highlight{
  --tw-text-opacity: 1;
  color: rgb(221 0 133 / var(--tw-text-opacity, 1));
}
.tagline .highlight{
  border-radius: 0.375rem;
  padding: 0.375rem;
}
.tagline-default .highlight{
  --tw-text-opacity: 1;
  color: rgb(1 0 88 / var(--tw-text-opacity, 1));
	border: 1px solid rgba(1, 0, 88, 0.10);
	background: rgba(1, 0, 88, 0.06);
}
.tagline-red .highlight{
  --tw-text-opacity: 1;
  color: rgb(253 12 96 / var(--tw-text-opacity, 1));
	border: 1px solid rgba(253, 0, 88, 0.10);
	background: rgba(253, 0, 88, 0.10);
}
.tagline-teal .highlight{
  --tw-text-opacity: 1;
  color: rgb(74 222 248 / var(--tw-text-opacity, 1));
	border: 1px solid rgba(78, 205, 185, 0.30);
	background: rgba(116, 229, 211, 0.30);
}
.tagline-purple .highlight{
  --tw-text-opacity: 1;
  color: rgb(100 79 202 / var(--tw-text-opacity, 1));
	border: 1px solid rgba(100, 79, 202, 0.30);
	background: rgba(100, 79, 202, 0.30);
}
.tagline-orange .highlight{
  --tw-text-opacity: 1;
  color: rgb(221 96 0 / var(--tw-text-opacity, 1));
	border: 1px solid rgba(255, 140, 0, 0.30);
    background: rgba(255, 140, 0, 0.30);
}
/* .list-torch,
.list-stratos,
.list-white {
	padding-left: 0em;
	text-indent: -1em;
	@apply relative;
} */
#navbar > div:first-child{
  width: 100%;
  height: 100%;
}
.mux-react-video {
	--controls-backdrop-color: rgba(255, 255, 255, 0);
	--media-background-color: rgba(255, 255, 255, 0);
	--media-accent-color: #FD0048;

	isolation: isolate;
	-webkit-mask-image: -webkit-radial-gradient(white, black);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
}
.no-controls {
	/* Hide all controls at once */
	--controls: none;
  
	/* Hide the error dialog */
	--dialog: none;
  
	/* Hide the loading indicator */
	--loading-indicator: none;
  
	/* Target all sections by excluding the section prefix */
	--play-button: none;
	--live-button: none;
	--seek-backward-button: none;
	--seek-forward-button: none;
	--mute-button: none;
	--captions-button: none;
	--airplay-button: none;
	--pip-button: none;
	--fullscreen-button: none;
	--cast-button: none;
	--playback-rate-button: none;
	--volume-range: none;
	--time-range: none;
	--time-display: none;
	--duration-display: none;
	--rendition-selectmenu: none;

	--media-accent-color: transparent;
  
	/* Target a specific section by prefixing the CSS var with (top|center|bottom) */
	--center-controls: none;
	--bottom-play-button: none;
}
.link-pepper a{
  display: inline-flex;
  text-decoration-line: none;
  --tw-text-opacity: 1;
  color: rgb(253 0 72 / var(--tw-text-opacity, 1));
}
.link-pepper a:hover{
  --tw-text-opacity: 1;
  color: rgb(214 0 60 / var(--tw-text-opacity, 1));
}
.link-stratos a{
  display: inline-flex;
  text-decoration-line: none;
  --tw-text-opacity: 1;
  color: rgb(1 0 88 / var(--tw-text-opacity, 1));
}
.link-stratos a:hover{
  --tw-text-opacity: 1;
  color: rgb(0 0 39 / var(--tw-text-opacity, 1));
}
.link-white a{
  display: inline-flex;
  text-decoration-line: none;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.chart-munsell .chart-button{
  --tw-text-opacity: 1;
  color: rgb(221 0 133 / var(--tw-text-opacity, 1));
  background-color: rgb(221 0 133 / 0.05);
}
.chart-purple .chart-button{
  --tw-text-opacity: 1;
  color: rgb(100 79 202 / var(--tw-text-opacity, 1));
  background-color: rgb(100 79 202 / 0.05);
}
.chart-orange .chart-button{
  --tw-text-opacity: 1;
  color: rgb(255 140 0 / var(--tw-text-opacity, 1));
  background-color: rgb(255 140 0 / 0.05);
}
.chart-jungle .chart-button{
  --tw-text-opacity: 1;
  color: rgb(0 173 145 / var(--tw-text-opacity, 1));
  background-color: rgb(0 173 145 / 0.05);
}
.chart-white .chart-button{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.highlight-red,
.highlight-teal,
.highlight-purple,
.highlight-orange,
.highlight-stratos{
  border-radius: 0.375rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-grow: 0;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0.5rem;
  white-space: nowrap;
}
.highlight-red{
  --tw-text-opacity: 1;
  color: rgb(1 0 88 / var(--tw-text-opacity, 1));
	background: rgba(253, 0, 88, 0.10);
}
.highlight-teal{
  --tw-text-opacity: 1;
  color: rgb(1 0 88 / var(--tw-text-opacity, 1));
	background: rgba(116, 229, 211, 0.30);
}
.highlight-purple{
  --tw-text-opacity: 1;
  color: rgb(1 0 88 / var(--tw-text-opacity, 1));
	background: rgba(100, 79, 202, 0.30);
}
.highlight-orange{
  --tw-text-opacity: 1;
  color: rgb(1 0 88 / var(--tw-text-opacity, 1));
    background: rgba(255, 140, 0, 0.30);
}
.highlight-stratos{
  --tw-text-opacity: 1;
  color: rgb(1 0 88 / var(--tw-text-opacity, 1));
    background: rgba(1, 0, 88, 0.10);
}
/* 
video {
    clip-path: inset(1px 1px);
} */
/* video {
	clip-path: inset(1px 1px);
	outline: none;
	border: none;
	@apply border-transparent;
 }

 video:focus { outline:none; }

 .reset-border {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    width: 100%;
    height: 100%;
} */
/* purgecss end ignore */
/* Latest Updates Carousel sizing and spacing */
.latest-updates-carousel {
  --slide-height: 19rem;
  --slide-spacing: 1rem;
  --slide-size: 100%;
}
.latest-updates-carousel__viewport {
  overflow: hidden;
}
.latest-updates-carousel__container {
  display: flex;
  touch-action: pan-y pinch-zoom;
  margin-left: calc(var(--slide-spacing) * -1);
}
.latest-updates-carousel__slide {
  transform: translate3d(0, 0, 0);
  flex: 0 0 var(--slide-size);
  min-width: 0;
  padding-left: var(--slide-spacing);
}
@media (min-width: 640px) {
  .latest-updates-carousel { --slide-size: 50%; }
}
@media (min-width: 1024px) {
  .latest-updates-carousel { --slide-size: 33.33333%; }
}
/* Content Carousel sizing and spacing */
.content-carousel {
	--slide-height: 19rem;
	--slide-spacing: 1rem;
	--slide-size: 100%;
}
.content-carousel__viewport {
	overflow: hidden;
}
.content-carousel__container {
	display: flex;
	touch-action: pan-y pinch-zoom;
	margin-left: calc(var(--slide-spacing) * -1);
}
.content-carousel__slide {
	transform: translate3d(0, 0, 0);
	flex: 0 0 var(--slide-size);
	min-width: 0;
	padding-left: var(--slide-spacing);
}
.content-carousel__dots-wrapper {
	position: relative;
}
.content-carousel__dots {
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE and Edge */
}
.content-carousel__dots::-webkit-scrollbar {
	display: none; /* Chrome, Safari, Opera */
}
.content-carousel__dots {
	mask-image: linear-gradient(to right, transparent 0%, black 60px, black calc(100% - 60px), transparent 100%);
	-webkit-mask-image: linear-gradient(to right, transparent 0%, black 60px, black calc(100% - 60px), transparent 100%);
}
.content-carousel__dots-wrapper::before,
.content-carousel__dots-wrapper::after {
	display: none;
}
.scrollbar-hide {
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.scrollbar-hide::-webkit-scrollbar {
	display: none;
}
