@import "tailwindcss";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Outfit:wght@400;500;600;700&display=swap');

@theme {
  --font-heading: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Outfit', ui-sans-serif, system-ui, sans-serif;
  --color-primary: #0B1720;
  --color-button-primary: #366DC2;
}

:root {
  --color-primary: #0B1720;
  --button-primary: #0E59AE;
  --font-heading: 'Inter';
  --font-body: 'Outfit';
}

.bg-primary { background-color: var(--color-primary); }
.bg-secondary { background-color: var(--button-primary); }
.text-primary { color: var(--button-primary); }
.border-primary { border-color: var(--button-primary); }
.button-primary { background-color: var(--button-primary); }

html { scroll-behavior: smooth; }

h1, h2, h3, h4, h5, h6 { font-family: 'Inter', ui-sans-serif, system-ui, sans-serif; }
p, button, a { font-family: 'Outfit', ui-sans-serif, system-ui, sans-serif; }

p.sub-text { font-size: 20px; line-height: 32px; color: #454545; }

.section-tag {
  font-size: 24px;
  height: 1.4em;
  font-weight: 600;
  font-family: 'Outfit', ui-sans-serif, system-ui, sans-serif;
  color: #0E59AE;
}

h1.hero {
  font-size: 56px;
  font-weight: 700;
  height: 1.4em;
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
}

h2.h2heading {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-size: 40px;
  line-height: 54px;
  font-weight: 700;
}

.bg-grid {
  width: 100%;
  height: 500px;
  background-image: url('images/herobg.svg');
  background-repeat: repeat-x;
  background-position: bottom right;
  background-size: auto 100%;
  bottom: -90px;
  position: absolute;
  z-index: 0;
}

.results-cards { z-index: 50; position: relative; }

.heading-400 { font-family: 'Inter'; font-weight: 400; }
.heading-500 { font-family: 'Inter'; font-weight: 500; }
.heading-600 { font-family: 'Inter'; font-weight: 600; }
.heading-700 { font-family: 'Inter'; font-weight: 700; }
.heading-800 { font-family: 'Inter'; font-weight: 800; }
.heading-900 { font-family: 'Inter'; font-weight: 900; }

.body-400 { font-family: 'Outfit'; font-weight: 400; }
.body-500 { font-family: 'Outfit'; font-weight: 500; }
.body-600 { font-family: 'Outfit'; font-weight: 600; }
.body-700 { font-family: 'Outfit'; font-weight: 700; }

.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:visible { visibility: visible; }
.group:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-menu {
  transition: all 0.3s ease-in-out;
  transform: translateY(10px);
}

.mega-menu-container {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.group:hover .mega-menu-container {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-menu-inner { overflow: hidden; }

#mobile-menu {
  transition: all 0.3s ease-in-out;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-radius: 0 0 0.5rem 0.5rem;
  background-color: white;
  z-index: 9999;
}

#mobile-menu.open { max-height: 80vh; opacity: 1; }

.mobile-accordion-content { transition: all 0.3s ease-in-out; }

.mobile-accordion-btn .fas.fa-chevron-down.rotate-180 { transform: rotate(0deg); }

.mobile-accordion-btn { position: relative; }

.mobile-accordion-btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
}

.mobile-accordion-btn:last-child:after { display: none; }

#mobile-menu::-webkit-scrollbar { width: 6px; }
#mobile-menu::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
#mobile-menu::-webkit-scrollbar-thumb { background: #c5c5c5; border-radius: 10px; }
#mobile-menu::-webkit-scrollbar-thumb:hover { background: #a8a8a8; }

#menu-btn i { display: inline-block; }

.hero-bg {
  background: linear-gradient(to bottom, #D0E2FF 0%, #DCEAFF 10%, #E8F2FF 40%, #F5F9FF 70%, #FFFFFF 100%);
}

.card-bg {
  background: linear-gradient(135deg, #f0f7ff 0%, #fafbff 50%, #ffffff 100%);
}

.full-width-grid {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.btn-soft-shadow { box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.05); }

.fade-in { animation: fadeIn 0.4s ease-in-out; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.8; }
}

.animate-fade {
  animation: fadeInOut 3s infinite ease-in-out;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.swiper-button-prev::after,
.swiper-button-next::after { content: '' !important; }

.swiper-slide { height: auto; }

.stat-icon-yellow { color: #fbbf24; }
.stat-icon-purple { color: #a855f7; }
.stat-icon-blue { color: #3b82f6; }
.stat-icon-green { color: #22c55e; }

.toc-link.active {
  color: #366DC2 !important;
  border-left-color: #366DC2 !important;
  font-weight: 600;
}

.toc-link.active span { background-color: #366DC2 !important; }

.logoCard {
  @apply bg-gray-100 rounded-lg flex items-center justify-center p-3 sm:p-4 h-[56px] lg:h-[72px] transition duration-300;
}

.logoCard img { @apply max-h-full max-w-[85%] object-contain; }

.active-tab {
  color: #0056b3 !important;
  border-left-color: #0056b3 !important;
}

.gradient-border {
  border: 4px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(to right, #0E59AE, #BAD4FF, #4DC1B9);
  border-radius: 12px;
  padding: 16px;
  background-color: white;
}

.dm-hidden { display: none !important; }
.dm-active-tab { color: #0E59AE !important; }

.menu-link:hover .svg-primary-hover {
  filter: invert(21%) sepia(85%) saturate(3065%) hue-rotate(196deg) brightness(92%) contrast(97%);
  transition: filter 0.2s ease-in-out;
}

@keyframes moveUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

button.cta,
a.cta {
  width: fit-content;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4em;
  background-color: #0E59AE;
  border: 1px solid #0E59AE;
  border-radius: 8px;
  color: white;
  transition: 0.3s all;
  cursor: pointer;
  position: relative;
}

button.cta:hover,
a.cta:hover {
  background-color: white;
  color: #0E59AE;
}

button.second-cta,
a.second-cta {
  width: fit-content;
  padding: 12px 34px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4em;
  background: linear-gradient(to right, #FDFEFF, #F6F3FF);
  border: 1px solid #cacaca;
  border-radius: 8px;
  color: #595959;
  transition: 0.3s all;
  cursor: pointer;
  position: relative;
}

button.second-cta:hover,
a.second-cta:hover { border: 1px solid #595959; }

button.white-btn,
a.white-btn {
  width: fit-content;
  padding: 12px 36.5px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4em;
  background: white;
  border: 1px solid #F0F0F0;
  border-radius: 8px;
  color: #0E59AE;
  transition: 0.3s all;
}

form input,
form select,
form textarea {
  width: 100%;
  border: 1px solid #D1D5DB;
  border-radius: 12px;
  padding: 16px;
  font-size: 20px;
  color: #374151;
  outline: none;
  transition: border-color 0.2s;
  background: white;
}

form input:focus,
form select:focus,
form textarea:focus { border-color: #0E59AE; }

form input::placeholder,
form textarea::placeholder { color: #9CA3AF; }

form select { appearance: none; cursor: pointer; color: #9CA3AF; }
form select option:not([disabled]) { color: #374151; }

form input[type="checkbox"] {
  width: 28px;
  height: 28px;
  appearance: none;
  border-radius: 4px;
  border: 1px solid #D1D5DB;
  background: #E7EEF7;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

form textarea {
  resize: vertical;
  min-height: 140px;
}

#audit-form-msg {
  font-family: 'Outfit', ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
}

.gradient-text {
  background: linear-gradient(to right, #4991E7, #8879CC, #C4677E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-gradient-border {
  border-radius: 16px;
  background: linear-gradient(to right, #4991E7, #8879CC, #C4677E);
  padding: 2px;
  transition: opacity 0.3s ease;
  will-change: opacity;
}

a.card-button {
  padding: 13px 24px;
  color: #0E59AE;
  font: 700;
  font-family: 'Outfit', ui-sans-serif, system-ui, sans-serif;
  border-radius: 8px;
  border: 1px solid #BED7FF;
  background: transparent;
  transition: 0.3s all;
}

a.card-button:hover {
  color: white;
  border: 1px solid #0E59AE;
  background: #0E59AE;
}

a.card-button:hover img { filter: brightness(10); }

@keyframes cardFadeZoom {
  from {
    visibility: visible;
    clip-path: inset(0);
    transform: scale(0.96);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.slide-card {
  transition: opacity 0.3s ease, transform 0.3s ease;
  will-change: opacity, transform;
}

.slide-card.card-animate {
  animation: cardFadeZoom 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cs-side-inner { box-shadow: 0 4px 15px #0E59AE26; }

.hero-about { padding-top: 72px; padding-bottom: 27px; }

@media (max-width: 786px) {
  button.cta,
  a.cta,
  button.second-cta,
  a.second-cta {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 1023px) {
  #footer-links {
    max-width: 100% !important;
    margin-left: 0 !important;
    flex-wrap: wrap !important;
    gap: 32px !important;
  }
  #footer-bottom-bar { flex-direction: column !important; }
  .sysinn-copyright-wrap {
    order: 999;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
}

/*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */
@layer properties;
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --color-red-500: oklch(63.7% 0.237 25.331);
    --color-green-400: oklch(79.2% 0.209 151.711);
    --color-green-600: oklch(62.7% 0.194 149.214);
    --color-blue-50: oklch(97% 0.014 254.604);
    --color-blue-100: oklch(93.2% 0.032 255.585);
    --color-blue-200: oklch(88.2% 0.059 254.128);
    --color-blue-300: oklch(80.9% 0.105 251.813);
    --color-blue-400: oklch(70.7% 0.165 254.624);
    --color-blue-500: oklch(62.3% 0.214 259.815);
    --color-blue-600: oklch(54.6% 0.245 262.881);
    --color-blue-800: oklch(42.4% 0.199 265.638);
    --color-slate-50: oklch(98.4% 0.003 247.858);
    --color-slate-400: oklch(70.4% 0.04 256.788);
    --color-slate-500: oklch(55.4% 0.046 257.417);
    --color-slate-600: oklch(44.6% 0.043 257.281);
    --color-slate-800: oklch(27.9% 0.041 260.031);
    --color-slate-900: oklch(20.8% 0.042 265.755);
    --color-gray-50: oklch(98.5% 0.002 247.839);
    --color-gray-100: oklch(96.7% 0.003 264.542);
    --color-gray-200: oklch(92.8% 0.006 264.531);
    --color-gray-300: oklch(87.2% 0.01 258.338);
    --color-gray-400: oklch(70.7% 0.022 261.325);
    --color-gray-500: oklch(55.1% 0.027 264.364);
    --color-gray-600: oklch(44.6% 0.03 256.802);
    --color-gray-700: oklch(37.3% 0.034 259.733);
    --color-gray-800: oklch(27.8% 0.033 256.848);
    --color-gray-900: oklch(21% 0.034 264.665);
    --color-black: #000;
    --color-white: #fff;
    --spacing: 0.25rem;
    --container-sm: 24rem;
    --container-md: 28rem;
    --container-lg: 32rem;
    --container-xl: 36rem;
    --container-2xl: 42rem;
    --container-3xl: 48rem;
    --container-4xl: 56rem;
    --container-5xl: 64rem;
    --container-6xl: 72rem;
    --text-xs: 0.75rem;
    --text-xs--line-height: calc(1 / 0.75);
    --text-sm: 0.875rem;
    --text-sm--line-height: calc(1.25 / 0.875);
    --text-base: 1rem;
    --text-base--line-height: calc(1.5 / 1);
    --text-lg: 1.125rem;
    --text-lg--line-height: calc(1.75 / 1.125);
    --text-xl: 1.25rem;
    --text-xl--line-height: calc(1.75 / 1.25);
    --text-2xl: 1.5rem;
    --text-2xl--line-height: calc(2 / 1.5);
    --text-3xl: 1.875rem;
    --text-3xl--line-height: calc(2.25 / 1.875);
    --text-4xl: 2.25rem;
    --text-4xl--line-height: calc(2.5 / 2.25);
    --text-5xl: 3rem;
    --text-5xl--line-height: 1;
    --text-6xl: 3.75rem;
    --text-6xl--line-height: 1;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;
    --tracking-tight: -0.025em;
    --tracking-normal: 0em;
    --tracking-wide: 0.025em;
    --tracking-wider: 0.05em;
    --tracking-widest: 0.1em;
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --drop-shadow-sm: 0 1px 2px rgb(0 0 0 / 0.15);
    --drop-shadow-md: 0 3px 3px rgb(0 0 0 / 0.12);
    --drop-shadow-xl: 0 9px 7px rgb(0 0 0 / 0.1);
    --ease-in: cubic-bezier(0.4, 0, 1, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --blur-sm: 8px;
    --blur-md: 12px;
    --default-transition-duration: 150ms;
    --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
    --font-heading: 'Inter', ui-sans-serif, system-ui, sans-serif;
    --font-body: 'Outfit', ui-sans-serif, system-ui, sans-serif;
    --color-primary: #0B1720;
  }
}
@layer base {
  *, ::after, ::before, ::backdrop, ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html, :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr { height: 0; color: inherit; border-top-width: 1px; }
  abbr:where([title]) { -webkit-text-decoration: underline dotted; text-decoration: underline dotted; }
  h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; }
  a { color: inherit; -webkit-text-decoration: inherit; text-decoration: inherit; }
  b, strong { font-weight: bolder; }
  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small { font-size: 80%; }
  sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
  sub { bottom: -0.25em; }
  sup { top: -0.5em; }
  table { text-indent: 0; border-color: inherit; border-collapse: collapse; }
  :-moz-focusring { outline: auto; }
  progress { vertical-align: baseline; }
  summary { display: list-item; }
  ol, ul, menu { list-style: none; }
  img, svg, video, canvas, audio, iframe, embed, object { display: block; vertical-align: middle; }
  img, video { max-width: 100%; height: auto; }
  button, input, select, optgroup, textarea, ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup { font-weight: bolder; }
  :where(select:is([multiple], [size])) optgroup option { padding-inline-start: 20px; }
  ::file-selector-button { margin-inline-end: 4px; }
  ::placeholder { opacity: 1; }
  @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea { resize: vertical; }
  ::-webkit-search-decoration { -webkit-appearance: none; }
  ::-webkit-date-and-time-value { min-height: 1lh; text-align: inherit; }
  ::-webkit-datetime-edit { display: inline-flex; }
  ::-webkit-datetime-edit-fields-wrapper { padding: 0; }
  ::-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-block: 0; }
  ::-webkit-calendar-picker-indicator { line-height: 1; }
  :-moz-ui-invalid { box-shadow: none; }
  button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button { appearance: button; }
  ::-webkit-inner-spin-button, ::-webkit-outer-spin-button { height: auto; }
  [hidden]:where(:not([hidden="until-found"])) { display: none !important; }
}
@layer utilities {
  .pointer-events-auto { pointer-events: auto; }
  .pointer-events-none { pointer-events: none; }
  .collapse { visibility: collapse; }
  .invisible { visibility: hidden; }
  .visible { visibility: visible; }
  .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border-width: 0; }
  .absolute { position: absolute; }
  .fixed { position: fixed; }
  .relative { position: relative; }
  .static { position: static; }
  .sticky { position: sticky; }
  .inset-0 { inset: calc(var(--spacing) * 0); }
  .inset-y-0 { inset-block: calc(var(--spacing) * 0); }
  .top-0 { top: calc(var(--spacing) * 0); }
  .top-1\/2 { top: calc(1/2 * 100%); }
  .top-2 { top: calc(var(--spacing) * 2); }
  .top-8 { top: calc(var(--spacing) * 8); }
  .top-\[20px\] { top: 20px; }
  .top-\[40px\] { top: 40px; }
  .top-auto { top: auto; }
  .top-full { top: 100%; }
  .-right-6 { right: calc(var(--spacing) * -6); }
  .right-0 { right: calc(var(--spacing) * 0); }
  .right-4 { right: calc(var(--spacing) * 4); }
  .right-\[-100px\] { right: -100px; }
  .-bottom-6 { bottom: calc(var(--spacing) * -6); }
  .-bottom-30 { bottom: calc(var(--spacing) * -30); }
  .bottom-0 { bottom: calc(var(--spacing) * 0); }
  .bottom-2 { bottom: calc(var(--spacing) * 2); }
  .bottom-\[20px\] { bottom: 20px; }
  .bottom-\[40px\] { bottom: 40px; }
  .bottom-\[50\%\] { bottom: 50%; }
  .left-0 { left: calc(var(--spacing) * 0); }
  .left-1\/2 { left: calc(1/2 * 100%); }
  .left-\[0px\] { left: 0px; }
  .left-\[20px\] { left: 20px; }
  .left-\[24px\] { left: 24px; }
  .left-\[27px\] { left: 27px; }
  .-z-10 { z-index: calc(10 * -1); }
  .z-0 { z-index: 0; }
  .z-5 { z-index: 5; }
  .z-10 { z-index: 10; }
  .z-20 { z-index: 20; }
  .z-50 { z-index: 50; }
  .z-\[80\] { z-index: 80; }
  .order-1 { order: 1; }
  .order-2 { order: 2; }
  .col-span-1 { grid-column: span 1 / span 1; }
  .col-span-3 { grid-column: span 3 / span 3; }
  .col-span-9 { grid-column: span 9 / span 9; }
  .col-span-12 { grid-column: span 12 / span 12; }
  .row-span-2 { grid-row: span 2 / span 2; }
  .clear-both { clear: both; }
  .container {
    width: 100%;
    @media (width >= 40rem) { max-width: 40rem; }
    @media (width >= 48rem) { max-width: 48rem; }
    @media (width >= 64rem) { max-width: 64rem; }
    @media (width >= 80rem) { max-width: 80rem; }
    @media (width >= 96rem) { max-width: 96rem; }
  }
  .m-0 { margin: calc(var(--spacing) * 0); }
  .m-5 { margin: calc(var(--spacing) * 5); }
  .mx-2 { margin-inline: calc(var(--spacing) * 2); }
  .mx-\[20px\] { margin-inline: 20px; }
  .mx-auto { margin-inline: auto; }
  .my-4 { margin-block: calc(var(--spacing) * 4); }
  .my-10 { margin-block: calc(var(--spacing) * 10); }
  .\!mt-\[30px\] { margin-top: 30px !important; }
  .mt-0\.5 { margin-top: calc(var(--spacing) * 0.5); }
  .mt-1 { margin-top: calc(var(--spacing) * 1); }
  .mt-2 { margin-top: calc(var(--spacing) * 2); }
  .mt-3 { margin-top: calc(var(--spacing) * 3); }
  .mt-4 { margin-top: calc(var(--spacing) * 4); }
  .mt-5 { margin-top: calc(var(--spacing) * 5); }
  .mt-6 { margin-top: calc(var(--spacing) * 6); }
  .mt-8 { margin-top: calc(var(--spacing) * 8); }
  .mt-10 { margin-top: calc(var(--spacing) * 10); }
  .mt-12 { margin-top: calc(var(--spacing) * 12); }
  .mt-\[16px\] { margin-top: 16px; }
  .mt-\[24px\] { margin-top: 24px; }
  .mt-\[54px\] { margin-top: 54px; }
  .-mb-\[2px\] { margin-bottom: calc(2px * -1); }
  .mb-1 { margin-bottom: calc(var(--spacing) * 1); }
  .mb-2 { margin-bottom: calc(var(--spacing) * 2); }
  .mb-3 { margin-bottom: calc(var(--spacing) * 3); }
  .mb-4 { margin-bottom: calc(var(--spacing) * 4); }
  .mb-5 { margin-bottom: calc(var(--spacing) * 5); }
  .mb-6 { margin-bottom: calc(var(--spacing) * 6); }
  .mb-7 { margin-bottom: calc(var(--spacing) * 7); }
  .mb-8 { margin-bottom: calc(var(--spacing) * 8); }
  .mb-10 { margin-bottom: calc(var(--spacing) * 10); }
  .mb-12 { margin-bottom: calc(var(--spacing) * 12); }
  .mb-14 { margin-bottom: calc(var(--spacing) * 14); }
  .mb-16 { margin-bottom: calc(var(--spacing) * 16); }
  .mb-20 { margin-bottom: calc(var(--spacing) * 20); }
  .mb-\[2px\] { margin-bottom: 2px; }
  .mb-\[12px\] { margin-bottom: 12px; }
  .mb-\[16px\] { margin-bottom: 16px; }
  .mb-\[20px\] { margin-bottom: 20px; }
  .mb-\[24px\] { margin-bottom: 24px; }
  .mb-\[32px\] { margin-bottom: 32px; }
  .mb-\[41px\] { margin-bottom: 41px; }
  .ml-2 { margin-left: calc(var(--spacing) * 2); }
  .ml-4 { margin-left: calc(var(--spacing) * 4); }
  .ml-7 { margin-left: calc(var(--spacing) * 7); }
  .ml-16 { margin-left: calc(var(--spacing) * 16); }
  .ml-auto { margin-left: auto; }
  .\!hidden { display: none !important; }
  .block { display: block; }
  .flex { display: flex; }
  .grid { display: grid; }
  .hidden { display: none; }
  .inline-block { display: inline-block; }
  .inline-flex { display: inline-flex; }
  .aspect-2\/2 { aspect-ratio: 2/2; }
  .h-1 { height: calc(var(--spacing) * 1); }
  .h-1\.5 { height: calc(var(--spacing) * 1.5); }
  .h-2 { height: calc(var(--spacing) * 2); }
  .h-2\.5 { height: calc(var(--spacing) * 2.5); }
  .h-3 { height: calc(var(--spacing) * 3); }
  .h-3\.5 { height: calc(var(--spacing) * 3.5); }
  .h-4 { height: calc(var(--spacing) * 4); }
  .h-5 { height: calc(var(--spacing) * 5); }
  .h-6 { height: calc(var(--spacing) * 6); }
  .h-7 { height: calc(var(--spacing) * 7); }
  .h-8 { height: calc(var(--spacing) * 8); }
  .h-9 { height: calc(var(--spacing) * 9); }
  .h-10 { height: calc(var(--spacing) * 10); }
  .h-11 { height: calc(var(--spacing) * 11); }
  .h-12 { height: calc(var(--spacing) * 12); }
  .h-14 { height: calc(var(--spacing) * 14); }
  .h-16 { height: calc(var(--spacing) * 16); }
  .h-20 { height: calc(var(--spacing) * 20); }
  .h-32 { height: calc(var(--spacing) * 32); }
  .h-56 { height: calc(var(--spacing) * 56); }
  .h-64 { height: calc(var(--spacing) * 64); }
  .h-72 { height: calc(var(--spacing) * 72); }
  .h-96 { height: calc(var(--spacing) * 96); }
  .h-\[1px\] { height: 1px; }
  .h-\[12px\] { height: 12px; }
  .h-\[20px\] { height: 20px; }
  .h-\[24px\] { height: 24px; }
  .h-\[28px\] { height: 28px; }
  .h-\[32px\] { height: 32px; }
  .h-\[40px\] { height: 40px; }
  .h-\[48px\] { height: 48px; }
  .h-\[56px\] { height: 56px; }
  .h-\[64px\] { height: 64px; }
  .h-\[80px\] { height: 80px; }
  .h-\[82px\] { height: 82px; }
  .h-\[100vh\] { height: 100vh; }
  .h-\[106px\] { height: 106px; }
  .h-\[200px\] { height: 200px; }
  .h-\[320px\] { height: 320px; }
  .h-\[373px\] { height: 373px; }
  .h-\[400px\] { height: 400px; }
  .h-\[510px\] { height: 510px; }
  .h-\[680px\] { height: 680px; }
  .h-\[687px\] { height: 687px; }
  .h-auto { height: auto; }
  .h-full { height: 100%; }
  .h-screen { height: 100vh; }
  .max-h-0 { max-height: calc(var(--spacing) * 0); }
  .max-h-6 { max-height: calc(var(--spacing) * 6); }
  .max-h-\[70vh\] { max-height: 70vh; }
  .max-h-\[240px\] { max-height: 240px; }
  .max-h-\[260px\] { max-height: 260px; }
  .max-h-full { max-height: 100%; }
  .min-h-\[120px\] { min-height: 120px; }
  .min-h-\[140px\] { min-height: 140px; }
  .min-h-\[220px\] { min-height: 220px; }
  .min-h-\[250px\] { min-height: 250px; }
  .min-h-\[300px\] { min-height: 300px; }
  .min-h-\[400px\] { min-height: 400px; }
  .min-h-\[550px\] { min-height: 550px; }
  .w-1\.5 { width: calc(var(--spacing) * 1.5); }
  .w-1\/5 { width: calc(1/5 * 100%); }
  .w-2 { width: calc(var(--spacing) * 2); }
  .w-2\.5 { width: calc(var(--spacing) * 2.5); }
  .w-3 { width: calc(var(--spacing) * 3); }
  .w-3\.5 { width: calc(var(--spacing) * 3.5); }
  .w-4 { width: calc(var(--spacing) * 4); }
  .w-5 { width: calc(var(--spacing) * 5); }
  .w-6 { width: calc(var(--spacing) * 6); }
  .w-7 { width: calc(var(--spacing) * 7); }
  .w-8 { width: calc(var(--spacing) * 8); }
  .w-9 { width: calc(var(--spacing) * 9); }
  .w-10 { width: calc(var(--spacing) * 10); }
  .w-11 { width: calc(var(--spacing) * 11); }
  .w-12 { width: calc(var(--spacing) * 12); }
  .w-14 { width: calc(var(--spacing) * 14); }
  .w-16 { width: calc(var(--spacing) * 16); }
  .w-32 { width: calc(var(--spacing) * 32); }
  .w-48 { width: calc(var(--spacing) * 48); }
  .w-64 { width: calc(var(--spacing) * 64); }
  .w-\[1px\] { width: 1px; }
  .w-\[2px\] { width: 2px; }
  .w-\[8px\] { width: 8px; }
  .w-\[12px\] { width: 12px; }
  .w-\[16px\] { width: 16px; }
  .w-\[20px\] { width: 20px; }
  .w-\[24px\] { width: 24px; }
  .w-\[25\%\] { width: 25%; }
  .w-\[28px\] { width: 28px; }
  .w-\[30\%\] { width: 30%; }
  .w-\[32px\] { width: 32px; }
  .w-\[35\%\] { width: 35%; }
  .w-\[40px\] { width: 40px; }
  .w-\[45\%\] { width: 45%; }
  .w-\[48px\] { width: 48px; }
  .w-\[50\%\] { width: 50%; }
  .w-\[55\%\] { width: 55%; }
  .w-\[56px\] { width: 56px; }
  .w-\[64px\] { width: 64px; }
  .w-\[80px\] { width: 80px; }
  .w-\[92\%\] { width: 92%; }
  .w-\[95px\] { width: 95px; }
  .w-\[150px\] { width: 150px; }
  .w-\[180px\] { width: 180px; }
  .w-\[200px\] { width: 200px; }
  .w-\[470px\] { width: 470px; }
  .w-\[629px\] { width: 629px; }
  .w-\[1320px\] { width: 1320px; }
  .w-auto { width: auto; }
  .w-fit { width: fit-content; }
  .w-full { width: 100%; }
  .max-w-2xl { max-width: var(--container-2xl); }
  .max-w-3xl { max-width: var(--container-3xl); }
  .max-w-4xl { max-width: var(--container-4xl); }
  .max-w-5xl { max-width: var(--container-5xl); }
  .max-w-6xl { max-width: var(--container-6xl); }
  .max-w-\[128px\] { max-width: 128px; }
  .max-w-\[280px\] { max-width: 280px; }
  .max-w-\[300px\] { max-width: 300px; }
  .max-w-\[320px\] { max-width: 320px; }
  .max-w-\[350px\] { max-width: 350px; }
  .max-w-\[380px\] { max-width: 380px; }
  .max-w-\[480px\] { max-width: 480px; }
  .max-w-\[550px\] { max-width: 550px; }
  .max-w-\[605px\] { max-width: 605px; }
  .max-w-\[625px\] { max-width: 625px; }
  .max-w-\[648px\] { max-width: 648px; }
  .max-w-\[700px\] { max-width: 700px; }
  .max-w-\[800px\] { max-width: 800px; }
  .max-w-\[820px\] { max-width: 820px; }
  .max-w-\[900px\] { max-width: 900px; }
  .max-w-\[1016px\] { max-width: 1016px; }
  .max-w-\[1084px\] { max-width: 1084px; }
  .max-w-\[1114px\] { max-width: 1114px; }
  .max-w-\[1117px\] { max-width: 1117px; }
  .max-w-\[1120px\] { max-width: 1120px; }
  .max-w-\[1132px\] { max-width: 1132px; }
  .max-w-\[1181px\] { max-width: 1181px; }
  .max-w-\[1309px\] { max-width: 1309px; }
  .max-w-\[1310px\] { max-width: 1310px; }
  .max-w-\[1320px\] { max-width: 1320px; }
  .max-w-full { max-width: 100%; }
  .max-w-md { max-width: var(--container-md); }
  .max-w-none { max-width: none; }
  .max-w-sm { max-width: var(--container-sm); }
  .max-w-xl { max-width: var(--container-xl); }
  .min-w-0 { min-width: calc(var(--spacing) * 0); }
  .flex-1 { flex: 1; }
  .flex-shrink { flex-shrink: 1; }
  .flex-shrink-0 { flex-shrink: 0; }
  .shrink-0 { flex-shrink: 0; }
  .flex-grow { flex-grow: 1; }
  .grow { flex-grow: 1; }
  .border-collapse { border-collapse: collapse; }
  .-translate-x-1\/2 { --tw-translate-x: calc(calc(1/2 * 100%) * -1); translate: var(--tw-translate-x) var(--tw-translate-y); }
  .-translate-y-1\/2 { --tw-translate-y: calc(calc(1/2 * 100%) * -1); translate: var(--tw-translate-x) var(--tw-translate-y); }
  .scale-200 { --tw-scale-x: 200%; --tw-scale-y: 200%; --tw-scale-z: 200%; scale: var(--tw-scale-x) var(--tw-scale-y); }
  .rotate-90 { rotate: 90deg; }
  .rotate-180 { rotate: 180deg; }
  .transform { transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,); }
  .animate-\[moveUp_13s_linear_infinite\] { animation: moveUp 13s linear infinite; }
  .cursor-ew-resize { cursor: ew-resize; }
  .cursor-pointer { cursor: pointer; }
  .touch-pan-y { --tw-pan-y: pan-y; touch-action: var(--tw-pan-x,) var(--tw-pan-y,) var(--tw-pinch-zoom,); }
  .scroll-mt-24 { scroll-margin-top: calc(var(--spacing) * 24); }
  .list-disc { list-style-type: disc; }
  .grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .flex-col { flex-direction: column; }
  .flex-row { flex-direction: row; }
  .flex-nowrap { flex-wrap: nowrap; }
  .flex-wrap { flex-wrap: wrap; }
  .items-baseline { align-items: baseline; }
  .items-center { align-items: center; }
  .items-end { align-items: flex-end; }
  .items-start { align-items: flex-start; }
  .items-stretch { align-items: stretch; }
  .justify-between { justify-content: space-between; }
  .justify-center { justify-content: center; }
  .justify-end { justify-content: flex-end; }
  .justify-start { justify-content: flex-start; }
  .gap-0 { gap: calc(var(--spacing) * 0); }
  .gap-1 { gap: calc(var(--spacing) * 1); }
  .gap-1\.5 { gap: calc(var(--spacing) * 1.5); }
  .gap-2 { gap: calc(var(--spacing) * 2); }
  .gap-3 { gap: calc(var(--spacing) * 3); }
  .gap-4 { gap: calc(var(--spacing) * 4); }
  .gap-5 { gap: calc(var(--spacing) * 5); }
  .gap-6 { gap: calc(var(--spacing) * 6); }
  .gap-8 { gap: calc(var(--spacing) * 8); }
  .gap-10 { gap: calc(var(--spacing) * 10); }
  .gap-12 { gap: calc(var(--spacing) * 12); }
  .gap-16 { gap: calc(var(--spacing) * 16); }
  .gap-20 { gap: calc(var(--spacing) * 20); }
  .gap-\[10px\] { gap: 10px; }
  .gap-\[11px\] { gap: 11px; }
  .gap-\[12px\] { gap: 12px; }
  .gap-\[16px\] { gap: 16px; }
  .gap-\[20px\] { gap: 20px; }
  .gap-\[22px\] { gap: 22px; }
  .gap-\[24px\] { gap: 24px; }
  .gap-\[30px\] { gap: 30px; }
  .gap-\[32px\] { gap: 32px; }
  .gap-\[48px\] { gap: 48px; }
  .gap-\[50px\] { gap: 50px; }
  .gap-\[60px\] { gap: 60px; }
  .space-y-1 { :where(& > :not(:last-child)) { --tw-space-y-reverse: 0; margin-block-start: calc(calc(var(--spacing) * 1) * var(--tw-space-y-reverse)); margin-block-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-y-reverse))); } }
  .space-y-2 { :where(& > :not(:last-child)) { --tw-space-y-reverse: 0; margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse)); margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse))); } }
  .space-y-3 { :where(& > :not(:last-child)) { --tw-space-y-reverse: 0; margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse)); margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse))); } }
  .space-y-4 { :where(& > :not(:last-child)) { --tw-space-y-reverse: 0; margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse)); margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse))); } }
  .space-y-5 { :where(& > :not(:last-child)) { --tw-space-y-reverse: 0; margin-block-start: calc(calc(var(--spacing) * 5) * var(--tw-space-y-reverse)); margin-block-end: calc(calc(var(--spacing) * 5) * calc(1 - var(--tw-space-y-reverse))); } }
  .space-y-6 { :where(& > :not(:last-child)) { --tw-space-y-reverse: 0; margin-block-start: calc(calc(var(--spacing) * 6) * var(--tw-space-y-reverse)); margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse))); } }
  .space-y-8 { :where(& > :not(:last-child)) { --tw-space-y-reverse: 0; margin-block-start: calc(calc(var(--spacing) * 8) * var(--tw-space-y-reverse)); margin-block-end: calc(calc(var(--spacing) * 8) * calc(1 - var(--tw-space-y-reverse))); } }
  .space-y-10 { :where(& > :not(:last-child)) { --tw-space-y-reverse: 0; margin-block-start: calc(calc(var(--spacing) * 10) * var(--tw-space-y-reverse)); margin-block-end: calc(calc(var(--spacing) * 10) * calc(1 - var(--tw-space-y-reverse))); } }
  .space-y-12 { :where(& > :not(:last-child)) { --tw-space-y-reverse: 0; margin-block-start: calc(calc(var(--spacing) * 12) * var(--tw-space-y-reverse)); margin-block-end: calc(calc(var(--spacing) * 12) * calc(1 - var(--tw-space-y-reverse))); } }
  .gap-x-6 { column-gap: calc(var(--spacing) * 6); }
  .gap-x-8 { column-gap: calc(var(--spacing) * 8); }
  .gap-x-20 { column-gap: calc(var(--spacing) * 20); }
  .gap-x-\[24\.5px\] { column-gap: 24.5px; }
  .gap-x-\[34px\] { column-gap: 34px; }
  .-space-x-3 { :where(& > :not(:last-child)) { --tw-space-x-reverse: 0; margin-inline-start: calc(calc(var(--spacing) * -3) * var(--tw-space-x-reverse)); margin-inline-end: calc(calc(var(--spacing) * -3) * calc(1 - var(--tw-space-x-reverse))); } }
  .gap-y-4 { row-gap: calc(var(--spacing) * 4); }
  .gap-y-5 { row-gap: calc(var(--spacing) * 5); }
  .gap-y-6 { row-gap: calc(var(--spacing) * 6); }
  .gap-y-8 { row-gap: calc(var(--spacing) * 8); }
  .gap-y-\[26px\] { row-gap: 26px; }
  .divide-y { :where(& > :not(:last-child)) { --tw-divide-y-reverse: 0; border-bottom-style: var(--tw-border-style); border-top-style: var(--tw-border-style); border-top-width: calc(1px * var(--tw-divide-y-reverse)); border-bottom-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); } }
  .divide-gray-100 { :where(& > :not(:last-child)) { border-color: var(--color-gray-100); } }
  .self-start { align-self: flex-start; }
  .overflow-hidden { overflow: hidden; }
  .overflow-x-auto { overflow-x: auto; }
  .overflow-x-hidden { overflow-x: hidden; }
  .overflow-y-auto { overflow-y: auto; }
  .rounded { border-radius: 0.25rem; }
  .rounded-2xl { border-radius: var(--radius-2xl); }
  .rounded-3xl { border-radius: var(--radius-3xl); }
  .rounded-\[1\.5rem\] { border-radius: 1.5rem; }
  .rounded-\[2\.5rem\] { border-radius: 2.5rem; }
  .rounded-\[4px\] { border-radius: 4px; }
  .rounded-\[5px\] { border-radius: 5px; }
  .rounded-\[8px\] { border-radius: 8px; }
  .rounded-\[12px\] { border-radius: 12px; }
  .rounded-\[20px\] { border-radius: 20px; }
  .rounded-\[32px\] { border-radius: 32px; }
  .rounded-full { border-radius: calc(infinity * 1px); }
  .rounded-lg { border-radius: var(--radius-lg); }
  .rounded-md { border-radius: var(--radius-md); }
  .rounded-xl { border-radius: var(--radius-xl); }
  .rounded-br-xl { border-bottom-right-radius: var(--radius-xl); }
  .border { border-style: var(--tw-border-style); border-width: 1px; }
  .border-2 { border-style: var(--tw-border-style); border-width: 2px; }
  .border-\[3px\] { border-style: var(--tw-border-style); border-width: 3px; }
  .border-t { border-top-style: var(--tw-border-style); border-top-width: 1px; }
  .border-r { border-right-style: var(--tw-border-style); border-right-width: 1px; }
  .border-b { border-bottom-style: var(--tw-border-style); border-bottom-width: 1px; }
  .border-b-4 { border-bottom-style: var(--tw-border-style); border-bottom-width: 4px; }
  .border-b-\[1px\] { border-bottom-style: var(--tw-border-style); border-bottom-width: 1px; }
  .border-b-\[2px\] { border-bottom-style: var(--tw-border-style); border-bottom-width: 2px; }
  .border-l { border-left-style: var(--tw-border-style); border-left-width: 1px; }
  .border-l-2 { border-left-style: var(--tw-border-style); border-left-width: 2px; }
  .border-none { --tw-border-style: none; border-style: none; }
  .border-\[\#0E59AE\] { border-color: #0E59AE; }
  .border-\[\#B4CCE6\] { border-color: #B4CCE6; }
  .border-\[\#BED7FF\] { border-color: #BED7FF; }
  .border-\[\#C5DBFF\] { border-color: #C5DBFF; }
  .border-\[\#D9D9D9\] { border-color: #D9D9D9; }
  .border-\[\#D9D9D9\]\/50 { border-color: color-mix(in oklab, #D9D9D9 50%, transparent); }
  .border-\[\#DBE6F3\] { border-color: #DBE6F3; }
  .border-\[\#DFECFF\] { border-color: #DFECFF; }
  .border-\[\#E0EFFF\] { border-color: #E0EFFF; }
  .border-\[\#E7EEF7\] { border-color: #E7EEF7; }
  .border-\[\#EBF3FF\] { border-color: #EBF3FF; }
  .border-\[\#F0F0F0\] { border-color: #F0F0F0; }
  .border-\[\#F5F5F5\] { border-color: #F5F5F5; }
  .border-\[\#e5efff\] { border-color: #e5efff; }
  .border-black\/30 { border-color: color-mix(in srgb, #000 30%, transparent); @supports (color: color-mix(in lab, red, red)) { border-color: color-mix(in oklab, var(--color-black) 30%, transparent); } }
  .border-blue-50 { border-color: var(--color-blue-50); }
  .border-blue-100 { border-color: var(--color-blue-100); }
  .border-gray-50 { border-color: var(--color-gray-50); }
  .border-gray-100 { border-color: var(--color-gray-100); }
  .border-gray-200 { border-color: var(--color-gray-200); }
  .border-gray-300 { border-color: var(--color-gray-300); }
  .border-gray-800 { border-color: var(--color-gray-800); }
  .border-primary { border-color: var(--color-primary); }
  .border-transparent { border-color: transparent; }
  .border-white { border-color: var(--color-white); }
  .border-white\/30 { border-color: color-mix(in srgb, #fff 30%, transparent); @supports (color: color-mix(in lab, red, red)) { border-color: color-mix(in oklab, var(--color-white) 30%, transparent); } }
  .border-white\/60 { border-color: color-mix(in srgb, #fff 60%, transparent); @supports (color: color-mix(in lab, red, red)) { border-color: color-mix(in oklab, var(--color-white) 60%, transparent); } }
  .bg-\[\#0E59AE\] { background-color: #0E59AE; }
  .bg-\[\#0E59AE\]\/50 { background-color: color-mix(in oklab, #0E59AE 50%, transparent); }
  .bg-\[\#0b4d9c\] { background-color: #0b4d9c; }
  .bg-\[\#0b5cba\] { background-color: #0b5cba; }
  .bg-\[\#0e59ae\] { background-color: #0e59ae; }
  .bg-\[\#0056b3\] { background-color: #0056b3; }
  .bg-\[\#207DE9\] { background-color: #207DE9; }
  .bg-\[\#0760C3\] { background-color: #0760C3; }
  .bg-\[\#1062b1\] { background-color: #1062b1; }
  .bg-\[\#595959\] { background-color: #595959; }
  .bg-\[\#BFBFBF\] { background-color: #BFBFBF; }
  .bg-\[\#BFDBFE\] { background-color: #BFDBFE; }
  .bg-\[\#E7EEF7\] { background-color: #E7EEF7; }
  .bg-\[\#E8F1FA\] { background-color: #E8F1FA; }
  .bg-\[\#E9D4E9\] { background-color: #E9D4E9; }
  .bg-\[\#EAF2FF\] { background-color: #EAF2FF; }
  .bg-\[\#ECF3FF\] { background-color: #ECF3FF; }
  .bg-\[\#F3F4F6\] { background-color: #F3F4F6; }
  .bg-\[\#F3F8FF\] { background-color: #F3F8FF; }
  .bg-\[\#F4F9FF\] { background-color: #F4F9FF; }
  .bg-\[\#F5F5F566\] { background-color: #F5F5F566; }
  .bg-\[\#F8FBFF\] { background-color: #F8FBFF; }
  .bg-\[\#e8f2ff\]\/70 { background-color: color-mix(in oklab, #e8f2ff 70%, transparent); }
  .bg-\[\#eef3fb\] { background-color: #eef3fb; }
  .bg-\[\#eef4ff\] { background-color: #eef4ff; }
  .bg-\[\#f8f9fa\] { background-color: #f8f9fa; }
  .bg-gray-50 { background-color: var(--color-gray-50); }
  .bg-gray-200 { background-color: var(--color-gray-200); }
  .bg-gray-300 { background-color: var(--color-gray-300); }
  .bg-primary { background-color: var(--color-primary); }
  .bg-slate-50 { background-color: var(--color-slate-50); }
  .bg-transparent { background-color: transparent; }
  .bg-white { background-color: var(--color-white); }
  .bg-white\/10 { background-color: color-mix(in srgb, #fff 10%, transparent); @supports (color: color-mix(in lab, red, red)) { background-color: color-mix(in oklab, var(--color-white) 10%, transparent); } }
  .bg-white\/20 { background-color: color-mix(in srgb, #fff 20%, transparent); @supports (color: color-mix(in lab, red, red)) { background-color: color-mix(in oklab, var(--color-white) 20%, transparent); } }
  .bg-white\/40 { background-color: color-mix(in srgb, #fff 40%, transparent); @supports (color: color-mix(in lab, red, red)) { background-color: color-mix(in oklab, var(--color-white) 40%, transparent); } }
  .bg-white\/60 { background-color: color-mix(in srgb, #fff 60%, transparent); @supports (color: color-mix(in lab, red, red)) { background-color: color-mix(in oklab, var(--color-white) 60%, transparent); } }
  .bg-gradient-to-b { --tw-gradient-position: to bottom in oklab; background-image: linear-gradient(var(--tw-gradient-stops)); }
  .bg-gradient-to-br { --tw-gradient-position: to bottom right in oklab; background-image: linear-gradient(var(--tw-gradient-stops)); }
  .bg-gradient-to-r { --tw-gradient-position: to right in oklab; background-image: linear-gradient(var(--tw-gradient-stops)); }
  .bg-gradient-to-t { --tw-gradient-position: to top in oklab; background-image: linear-gradient(var(--tw-gradient-stops)); }
  .bg-\[linear-gradient\(36\.73deg\,\#FFFFFF_42\.27\%\,\#DDEBFF_98\.61\%\)\] { background-image: linear-gradient(36.73deg,#FFFFFF 42.27%,#DDEBFF 98.61%); }
  .bg-\[linear-gradient\(323\.39deg\,_\#FFFFFF_45\.66\%\,_\#E1EDFF_98\.39\%\)\] { background-image: linear-gradient(323.39deg, #FFFFFF 45.66%, #E1EDFF 98.39%); }
  .bg-\[linear-gradient\(to_bottom\,\#2779D4\,\#38AEC7\,\#77B83E\,\#35B0B3\,\#45A5E1\)\] { background-image: linear-gradient(to bottom,#2779D4,#38AEC7,#77B83E,#35B0B3,#45A5E1); }
  .from-\[\#0E59AE\] { --tw-gradient-from: #0E59AE; --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); }
  .from-\[\#0e59ae\] { --tw-gradient-from: #0e59ae; --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); }
  .from-\[\#2779D4\] { --tw-gradient-from: #2779D4; --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); }
  .from-\[\#EAF2FF\] { --tw-gradient-from: #EAF2FF; --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); }
  .from-\[\#F6F9FF\] { --tw-gradient-from: #F6F9FF; --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); }
  .from-\[\#FDFEFF\] { --tw-gradient-from: #FDFEFF; --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); }
  .from-\[\#e6effa\] { --tw-gradient-from: #e6effa; --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); }
  .from-blue-400 { --tw-gradient-from: var(--color-blue-400); --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); }
  .from-transparent { --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); }
  .from-white { --tw-gradient-from: var(--color-white); --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); }
  .via-\[\#26d0ce\] { --tw-gradient-via: #26d0ce; --tw-gradient-via-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position); --tw-gradient-stops: var(--tw-gradient-via-stops); }
  .via-\[\#35B0B3\] { --tw-gradient-via: #35B0B3; --tw-gradient-via-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position); --tw-gradient-stops: var(--tw-gradient-via-stops); }
  .via-\[\#38AEC7\] { --tw-gradient-via: #38AEC7; --tw-gradient-via-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position); --tw-gradient-stops: var(--tw-gradient-via-stops); }
  .via-\[\#77B83E\] { --tw-gradient-via: #77B83E; --tw-gradient-via-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position); --tw-gradient-stops: var(--tw-gradient-via-stops); }
  .via-\[\#F6F9FF\]\/70 { --tw-gradient-via: color-mix(in oklab, #F6F9FF 70%, transparent); --tw-gradient-via-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position); --tw-gradient-stops: var(--tw-gradient-via-stops); }
  .via-green-400 { --tw-gradient-via: var(--color-green-400); --tw-gradient-via-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position); --tw-gradient-stops: var(--tw-gradient-via-stops); }
  .via-white\/70 { --tw-gradient-via: color-mix(in srgb, #fff 70%, transparent); @supports (color: color-mix(in lab, red, red)) { --tw-gradient-via: color-mix(in oklab, var(--color-white) 70%, transparent); } --tw-gradient-via-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position); --tw-gradient-stops: var(--tw-gradient-via-stops); }
  .to-\[\#0E59AE\] { --tw-gradient-to: #0E59AE; --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); }
  .to-\[\#1ac5bd\] { --tw-gradient-to: #1ac5bd; --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); }
  .to-\[\#45A5E1\] { --tw-gradient-to: #45A5E1; --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); }
  .to-\[\#BED7FF\] { --tw-gradient-to: #BED7FF; --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); }
  .to-\[\#D0E2FF\]\/30 { --tw-gradient-to: color-mix(in oklab, #D0E2FF 30%, transparent); --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); }
  .to-\[\#F6F3FF\] { --tw-gradient-to: #F6F3FF; --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); }
  .to-\[\#FFFFFF\] { --tw-gradient-to: #FFFFFF; --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); }
  .to-\[\#d8e6fa\] { --tw-gradient-to: #d8e6fa; --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); }
  .to-blue-300 { --tw-gradient-to: var(--color-blue-300); --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); }
  .to-transparent { --tw-gradient-to: transparent; --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); }
  .object-contain { object-fit: contain; }
  .object-cover { object-fit: cover; }
  .object-bottom { object-position: bottom; }
  .object-center { object-position: center; }
  .object-right { object-position: right; }
  .p-2 { padding: calc(var(--spacing) * 2); }
  .p-2\.5 { padding: calc(var(--spacing) * 2.5); }
  .p-3 { padding: calc(var(--spacing) * 3); }
  .p-4 { padding: calc(var(--spacing) * 4); }
  .p-5 { padding: calc(var(--spacing) * 5); }
  .p-6 { padding: calc(var(--spacing) * 6); }
  .p-7 { padding: calc(var(--spacing) * 7); }
  .p-8 { padding: calc(var(--spacing) * 8); }
  .p-9 { padding: calc(var(--spacing) * 9); }
  .p-\[12px\] { padding: 12px; }
  .px-2 { padding-inline: calc(var(--spacing) * 2); }
  .px-3 { padding-inline: calc(var(--spacing) * 3); }
  .px-4 { padding-inline: calc(var(--spacing) * 4); }
  .px-5 { padding-inline: calc(var(--spacing) * 5); }
  .px-6 { padding-inline: calc(var(--spacing) * 6); }
  .px-8 { padding-inline: calc(var(--spacing) * 8); }
  .px-10 { padding-inline: calc(var(--spacing) * 10); }
  .px-12 { padding-inline: calc(var(--spacing) * 12); }
  .px-\[0px\] { padding-inline: 0px; }
  .px-\[16px\] { padding-inline: 16px; }
  .px-\[20px\] { padding-inline: 20px; }
  .px-\[24px\] { padding-inline: 24px; }
  .px-\[28px\] { padding-inline: 28px; }
  .py-0 { padding-block: calc(var(--spacing) * 0); }
  .py-1 { padding-block: calc(var(--spacing) * 1); }
  .py-1\.5 { padding-block: calc(var(--spacing) * 1.5); }
  .py-2 { padding-block: calc(var(--spacing) * 2); }
  .py-2\.5 { padding-block: calc(var(--spacing) * 2.5); }
  .py-3 { padding-block: calc(var(--spacing) * 3); }
  .py-3\.5 { padding-block: calc(var(--spacing) * 3.5); }
  .py-4 { padding-block: calc(var(--spacing) * 4); }
  .py-5 { padding-block: calc(var(--spacing) * 5); }
  .py-6 { padding-block: calc(var(--spacing) * 6); }
  .py-7 { padding-block: calc(var(--spacing) * 7); }
  .py-8 { padding-block: calc(var(--spacing) * 8); }
  .py-10 { padding-block: calc(var(--spacing) * 10); }
  .py-12 { padding-block: calc(var(--spacing) * 12); }
  .py-14 { padding-block: calc(var(--spacing) * 14); }
  .py-16 { padding-block: calc(var(--spacing) * 16); }
  .py-20 { padding-block: calc(var(--spacing) * 20); }
  .py-24 { padding-block: calc(var(--spacing) * 24); }
  .py-\[12px\] { padding-block: 12px; }
  .py-\[20px\] { padding-block: 20px; }
  .py-\[24px\] { padding-block: 24px; }
  .py-\[46px\] { padding-block: 46px; }
  .py-\[64px\] { padding-block: 64px; }
  .py-\[90px\] { padding-block: 90px; }
  .py-\[96px\] { padding-block: 96px; }
  .py-\[98px\] { padding-block: 98px; }
  .pt-1 { padding-top: calc(var(--spacing) * 1); }
  .pt-2 { padding-top: calc(var(--spacing) * 2); }
  .pt-4 { padding-top: calc(var(--spacing) * 4); }
  .pt-5 { padding-top: calc(var(--spacing) * 5); }
  .pt-6 { padding-top: calc(var(--spacing) * 6); }
  .pt-10 { padding-top: calc(var(--spacing) * 10); }
  .pt-\[24px\] { padding-top: 24px; }
  .pt-\[30px\] { padding-top: 30px; }
  .pt-\[40px\] { padding-top: 40px; }
  .pt-\[90px\] { padding-top: 90px; }
  .pr-0 { padding-right: calc(var(--spacing) * 0); }
  .pr-2 { padding-right: calc(var(--spacing) * 2); }
  .pr-4 { padding-right: calc(var(--spacing) * 4); }
  .pr-10 { padding-right: calc(var(--spacing) * 10); }
  .pr-20 { padding-right: calc(var(--spacing) * 20); }
  .pb-2 { padding-bottom: calc(var(--spacing) * 2); }
  .pb-4 { padding-bottom: calc(var(--spacing) * 4); }
  .pb-6 { padding-bottom: calc(var(--spacing) * 6); }
  .pb-8 { padding-bottom: calc(var(--spacing) * 8); }
  .pb-10 { padding-bottom: calc(var(--spacing) * 10); }
  .pb-12 { padding-bottom: calc(var(--spacing) * 12); }
  .pb-16 { padding-bottom: calc(var(--spacing) * 16); }
  .pb-20 { padding-bottom: calc(var(--spacing) * 20); }
  .pb-\[90px\] { padding-bottom: 90px; }
  .pb-\[96px\] { padding-bottom: 96px; }
  .pl-1 { padding-left: calc(var(--spacing) * 1); }
  .pl-3 { padding-left: calc(var(--spacing) * 3); }
  .pl-5 { padding-left: calc(var(--spacing) * 5); }
  .pl-\[0px\] { padding-left: 0px; }
  .pl-\[4px\] { padding-left: 4px; }
  .text-center { text-align: center; }
  .text-left { text-align: left; }
  .font-body { font-family: var(--font-body); }
  .font-heading { font-family: var(--font-heading); }
  .font-sans { font-family: var(--font-sans); }
  .text-2xl { font-size: var(--text-2xl); line-height: var(--tw-leading, var(--text-2xl--line-height)); }
  .text-3xl { font-size: var(--text-3xl); line-height: var(--tw-leading, var(--text-3xl--line-height)); }
  .text-4xl { font-size: var(--text-4xl); line-height: var(--tw-leading, var(--text-4xl--line-height)); }
  .text-5xl { font-size: var(--text-5xl); line-height: var(--tw-leading, var(--text-5xl--line-height)); }
  .text-6xl { font-size: var(--text-6xl); line-height: var(--tw-leading, var(--text-6xl--line-height)); }
  .text-base { font-size: var(--text-base); line-height: var(--tw-leading, var(--text-base--line-height)); }
  .text-lg { font-size: var(--text-lg); line-height: var(--tw-leading, var(--text-lg--line-height)); }
  .text-sm { font-size: var(--text-sm); line-height: var(--tw-leading, var(--text-sm--line-height)); }
  .text-xl { font-size: var(--text-xl); line-height: var(--tw-leading, var(--text-xl--line-height)); }
  .text-xs { font-size: var(--text-xs); line-height: var(--tw-leading, var(--text-xs--line-height)); }
  .\!text-\[14px\] { font-size: 14px !important; }
  .text-\[8px\] { font-size: 8px; }
  .text-\[11px\] { font-size: 11px; }
  .text-\[12px\] { font-size: 12px; }
  .text-\[13px\] { font-size: 13px; }
  .text-\[14px\] { font-size: 14px; }
  .text-\[15px\] { font-size: 15px; }
  .text-\[16px\] { font-size: 16px; }
  .text-\[17px\] { font-size: 17px; }
  .text-\[18px\] { font-size: 18px; }
  .text-\[20px\] { font-size: 20px; }
  .text-\[22px\] { font-size: 22px; }
  .text-\[24px\] { font-size: 24px; }
  .text-\[26px\] { font-size: 26px; }
  .text-\[28px\] { font-size: 28px; }
  .text-\[32px\] { font-size: 32px; }
  .text-\[36px\] { font-size: 36px; }
  .text-\[40px\] { font-size: 40px; }
  .text-\[42px\] { font-size: 42px; }
  .text-\[44px\] { font-size: 44px; }
  .leading-\[1\.1\] { --tw-leading: 1.1; line-height: 1.1; }
  .leading-\[1\.2\] { --tw-leading: 1.2; line-height: 1.2; }
  .leading-\[1\.4\] { --tw-leading: 1.4; line-height: 1.4; }
  .leading-\[1\.6\] { --tw-leading: 1.6; line-height: 1.6; }
  .leading-\[1\.7\] { --tw-leading: 1.7; line-height: 1.7; }
  .leading-\[1\.8\] { --tw-leading: 1.8; line-height: 1.8; }
  .leading-\[18px\] { --tw-leading: 18px; line-height: 18px; }
  .leading-\[20px\] { --tw-leading: 20px; line-height: 20px; }
  .leading-\[22px\] { --tw-leading: 22px; line-height: 22px; }
  .leading-\[24px\] { --tw-leading: 24px; line-height: 24px; }
  .leading-\[25px\] { --tw-leading: 25px; line-height: 25px; }
  .leading-\[26px\] { --tw-leading: 26px; line-height: 26px; }
  .leading-\[27px\] { --tw-leading: 27px; line-height: 27px; }
  .leading-\[28px\] { --tw-leading: 28px; line-height: 28px; }
  .leading-\[29px\] { --tw-leading: 29px; line-height: 29px; }
  .leading-\[32px\] { --tw-leading: 32px; line-height: 32px; }
  .leading-\[38px\] { --tw-leading: 38px; line-height: 38px; }
  .leading-\[39px\] { --tw-leading: 39px; line-height: 39px; }
  .leading-\[43px\] { --tw-leading: 43px; line-height: 43px; }
  .leading-\[48px\] { --tw-leading: 48px; line-height: 48px; }
  .leading-\[49px\] { --tw-leading: 49px; line-height: 49px; }
  .leading-\[65px\] { --tw-leading: 65px; line-height: 65px; }
  .leading-\[100\%\] { --tw-leading: 100%; line-height: 100%; }
  .leading-none { --tw-leading: 1; line-height: 1; }
  .leading-normal { --tw-leading: var(--leading-normal); line-height: var(--leading-normal); }
  .leading-relaxed { --tw-leading: var(--leading-relaxed); line-height: var(--leading-relaxed); }
  .leading-snug { --tw-leading: var(--leading-snug); line-height: var(--leading-snug); }
  .leading-tight { --tw-leading: var(--leading-tight); line-height: var(--leading-tight); }
  .font-\[700\] { --tw-font-weight: 700; font-weight: 700; }
  .font-black { --tw-font-weight: var(--font-weight-black); font-weight: var(--font-weight-black); }
  .font-bold { --tw-font-weight: var(--font-weight-bold); font-weight: var(--font-weight-bold); }
  .font-extrabold { --tw-font-weight: var(--font-weight-extrabold); font-weight: var(--font-weight-extrabold); }
  .font-light { --tw-font-weight: var(--font-weight-light); font-weight: var(--font-weight-light); }
  .font-medium { --tw-font-weight: var(--font-weight-medium); font-weight: var(--font-weight-medium); }
  .font-normal { --tw-font-weight: var(--font-weight-normal); font-weight: var(--font-weight-normal); }
  .font-semibold { --tw-font-weight: var(--font-weight-semibold); font-weight: var(--font-weight-semibold); }
  .tracking-\[0\.2em\] { --tw-tracking: 0.2em; letter-spacing: 0.2em; }
  .tracking-normal { --tw-tracking: var(--tracking-normal); letter-spacing: var(--tracking-normal); }
  .tracking-tight { --tw-tracking: var(--tracking-tight); letter-spacing: var(--tracking-tight); }
  .tracking-wide { --tw-tracking: var(--tracking-wide); letter-spacing: var(--tracking-wide); }
  .tracking-wider { --tw-tracking: var(--tracking-wider); letter-spacing: var(--tracking-wider); }
  .tracking-widest { --tw-tracking: var(--tracking-widest); letter-spacing: var(--tracking-widest); }
  .whitespace-nowrap { white-space: nowrap; }
  .text-\[\#0E59AE\] { color: #0E59AE; }
  .text-\[\#0b4d9c\] { color: #0b4d9c; }
  .text-\[\#0e5fae\] { color: #0e5fae; }
  .text-\[\#0e59ae\] { color: #0e59ae; }
  .text-\[\#0f172a\] { color: #0f172a; }
  .text-\[\#1D4ED8\] { color: #1D4ED8; }
  .text-\[\#1F1F1F\] { color: #1F1F1F; }
  .text-\[\#1a1a1a\] { color: #1a1a1a; }
  .text-\[\#1a1f2e\] { color: #1a1f2e; }
  .text-\[\#1a2b3c\] { color: #1a2b3c; }
  .text-\[\#1f1f1f\] { color: #1f1f1f; }
  .text-\[\#2C7DFF\] { color: #2C7DFF; }
  .text-\[\#2d3139\] { color: #2d3139; }
  .text-\[\#3a3a3a\] { color: #3a3a3a; }
  .text-\[\#4B5563\] { color: #4B5563; }
  .text-\[\#4b5563\] { color: #4b5563; }
  .text-\[\#5E90C9\] { color: #5E90C9; }
  .text-\[\#5f6b7a\] { color: #5f6b7a; }
  .text-\[\#6b7280\] { color: #6b7280; }
  .text-\[\#7c3aed\] { color: #7c3aed; }
  .text-\[\#8C8C8C\] { color: #8C8C8C; }
  .text-\[\#0056b3\] { color: #0056b3; }
  .text-\[\#333\] { color: #333; }
  .text-\[\#366DC2\] { color: #366DC2; }
  .text-\[\#1062b1\] { color: #1062b1; }
  .text-\[\#4285F4\] { color: #4285F4; }
  .text-\[\#64748b\] { color: #64748b; }
  .text-\[\#222222\] { color: #222222; }
  .text-\[\#262626\] { color: #262626; }
  .text-\[\#454545\] { color: #454545; }
  .text-\[\#555555\] { color: #555555; }
  .text-\[\#595959\] { color: #595959; }
  .text-\[\#BED7FF\] { color: #BED7FF; }
  .text-\[\#D9D9D9\] { color: #D9D9D9; }
  .text-\[\#FCFCFC\] { color: #FCFCFC; }
  .text-\[\#FFFFFF\] { color: #FFFFFF; }
  .text-\[\#f59e0b\] { color: #f59e0b; }
  .text-\[16x\] { color: 16x; }
  .text-black { color: var(--color-black); }
  .text-gray-400 { color: var(--color-gray-400); }
  .text-gray-500 { color: var(--color-gray-500); }
  .text-gray-600 { color: var(--color-gray-600); }
  .text-gray-700 { color: var(--color-gray-700); }
  .text-gray-800 { color: var(--color-gray-800); }
  .text-gray-900 { color: var(--color-gray-900); }
  .text-green-600 { color: var(--color-green-600); }
  .text-primary { color: var(--color-primary); }
  .text-red-500 { color: var(--color-red-500); }
  .text-slate-400 { color: var(--color-slate-400); }
  .text-slate-500 { color: var(--color-slate-500); }
  .text-slate-600 { color: var(--color-slate-600); }
  .text-slate-800 { color: var(--color-slate-800); }
  .text-slate-900 { color: var(--color-slate-900); }
  .text-white { color: var(--color-white); }
  .uppercase { text-transform: uppercase; }
  .underline { text-decoration-line: underline; }
  .placeholder-gray-400 { &::placeholder { color: var(--color-gray-400); } }
  .opacity-0 { opacity: 0%; }
  .opacity-20 { opacity: 20%; }
  .opacity-40 { opacity: 40%; }
  .opacity-80 { opacity: 80%; }
  .opacity-90 { opacity: 90%; }
  .opacity-100 { opacity: 100%; }
  .opacity-\[0\.05\] { opacity: 0.05; }
  .shadow { --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)); box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); }
  .shadow-2xl { --tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / 0.25)); box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); }
  .shadow-\[0_4px_12px_\#BED7FF\] { --tw-shadow: 0 4px 12px var(--tw-shadow-color, #BED7FF); box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); }
  .shadow-\[0_4px_12px_rgba\(14\,89\,174\,0\.1\)\] { --tw-shadow: 0 4px 12px var(--tw-shadow-color, rgba(14,89,174,0.1)); box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); }
  .shadow-\[0_8px_30px_rgb\(0\,0\,0\,0\.03\)\] { --tw-shadow: 0 8px 30px var(--tw-shadow-color, rgb(0,0,0,0.03)); box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); }
  .shadow-\[0_10px_25px_\#0E59AE26\] { --tw-shadow: 0 10px 25px var(--tw-shadow-color, #0E59AE26); box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); }
  .shadow-\[0_15px_50px_rgba\(14\,89\,174\,0\.15\)\] { --tw-shadow: 0 15px 50px var(--tw-shadow-color, rgba(14,89,174,0.15)); box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); }
  .shadow-\[0px_4px_12px_0px_\#0E59AE1A\] { --tw-shadow: 0px 4px 12px 0px var(--tw-shadow-color, #0E59AE1A); box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); }
  .shadow-\[0px_4px_12px_0px_\#0E59AE26\] { --tw-shadow: 0px 4px 12px 0px var(--tw-shadow-color, #0E59AE26); box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); }
  .shadow-\[0px_4px_12px_0px_\#0E59AE40\] { --tw-shadow: 0px 4px 12px 0px var(--tw-shadow-color, #0E59AE40); box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); }
  .shadow-\[0px_4px_24px_0px_\#0E59AE26\] { --tw-shadow: 0px 4px 24px 0px var(--tw-shadow-color, #0E59AE26); box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); }
  .shadow-\[0px_8px_20px_\#0E59AE1A\] { --tw-shadow: 0px 8px 20px var(--tw-shadow-color, #0E59AE1A); box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); }
  .shadow-inner { --tw-shadow: inset 0 2px 4px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05)); box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); }
  .shadow-lg { --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1)); box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); }
  .shadow-md { --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1)); box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); }
  .shadow-sm { --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)); box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); }
  .shadow-\[\#0E59AE\]\/20 { --tw-shadow-color: color-mix(in srgb, #0E59AE 20%, transparent); @supports (color: color-mix(in lab, red, red)) { --tw-shadow-color: color-mix(in oklab, color-mix(in oklab, #0E59AE 20%, transparent) var(--tw-shadow-alpha), transparent); } }
  .shadow-\[\#0E59AE\]\/30 { --tw-shadow-color: color-mix(in srgb, #0E59AE 30%, transparent); @supports (color: color-mix(in lab, red, red)) { --tw-shadow-color: color-mix(in oklab, color-mix(in oklab, #0E59AE 30%, transparent) var(--tw-shadow-alpha), transparent); } }
  .outline { outline-style: var(--tw-outline-style); outline-width: 1px; }
  .blur-\[2px\] { --tw-blur: blur(2px); 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-md { --tw-drop-shadow-size: drop-shadow(0 3px 3px var(--tw-drop-shadow-color, rgb(0 0 0 / 0.12))); --tw-drop-shadow: drop-shadow(var(--drop-shadow-md)); 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-sm { --tw-drop-shadow-size: drop-shadow(0 1px 2px var(--tw-drop-shadow-color, rgb(0 0 0 / 0.15))); --tw-drop-shadow: drop-shadow(var(--drop-shadow-sm)); 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-xl { --tw-drop-shadow-size: drop-shadow(0 9px 7px var(--tw-drop-shadow-color, rgb(0 0 0 / 0.1))); --tw-drop-shadow: drop-shadow(var(--drop-shadow-xl)); 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,); }
  .backdrop-blur-md { --tw-backdrop-blur: blur(var(--blur-md)); -webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,); backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,); }
  .backdrop-blur-sm { --tw-backdrop-blur: blur(var(--blur-sm)); -webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,); backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-sepia,); }
  .transition { transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events; transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); transition-duration: var(--tw-duration, var(--default-transition-duration)); }
  .transition-all { transition-property: all; transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); transition-duration: var(--tw-duration, var(--default-transition-duration)); }
  .transition-colors { transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to; transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); transition-duration: var(--tw-duration, var(--default-transition-duration)); }
  .transition-opacity { transition-property: opacity; transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); transition-duration: var(--tw-duration, var(--default-transition-duration)); }
  .transition-shadow { transition-property: box-shadow; transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); transition-duration: var(--tw-duration, var(--default-transition-duration)); }
  .transition-transform { transition-property: transform, translate, scale, rotate; transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); transition-duration: var(--tw-duration, var(--default-transition-duration)); }
  .duration-150 { --tw-duration: 150ms; transition-duration: 150ms; }
  .duration-200 { --tw-duration: 200ms; transition-duration: 200ms; }
  .duration-300 { --tw-duration: 300ms; transition-duration: 300ms; }
  .duration-500 { --tw-duration: 500ms; transition-duration: 500ms; }
  .ease-in { --tw-ease: var(--ease-in); transition-timing-function: var(--ease-in); }
  .ease-in-out { --tw-ease: var(--ease-in-out); transition-timing-function: var(--ease-in-out); }
  .ease-out { --tw-ease: var(--ease-out); transition-timing-function: var(--ease-out); }
  .outline-none { --tw-outline-style: none; outline-style: none; }
  .select-none { -webkit-user-select: none; user-select: none; }
  .group-hover\:translate-x-1 { &:is(:where(.group):hover *) { @media (hover: hover) { --tw-translate-x: calc(var(--spacing) * 1); translate: var(--tw-translate-x) var(--tw-translate-y); } } }
  .group-hover\:scale-105 { &:is(:where(.group):hover *) { @media (hover: hover) { --tw-scale-x: 105%; --tw-scale-y: 105%; --tw-scale-z: 105%; scale: var(--tw-scale-x) var(--tw-scale-y); } } }
  .group-hover\:rotate-180 { &:is(:where(.group):hover *) { @media (hover: hover) { rotate: 180deg; } } }
  .group-hover\:bg-\[\#EAF2FF\] { &:is(:where(.group):hover *) { @media (hover: hover) { background-color: #EAF2FF; } } }
  .group-hover\:text-\[\#0E59AE\] { &:is(:where(.group):hover *) { @media (hover: hover) { color: #0E59AE; } } }
  .group-hover\/item\:translate-x-1 { &:is(:where(.group\/item):hover *) { @media (hover: hover) { --tw-translate-x: calc(var(--spacing) * 1); translate: var(--tw-translate-x) var(--tw-translate-y); } } }
  .group-hover\/item\:text-\[\#0E59AE\] { &:is(:where(.group\/item):hover *) { @media (hover: hover) { color: #0E59AE; } } }
  .group-hover\/link\:translate-x-1 { &:is(:where(.group\/link):hover *) { @media (hover: hover) { --tw-translate-x: calc(var(--spacing) * 1); translate: var(--tw-translate-x) var(--tw-translate-y); } } }
  .marker\:text-\[\#0E59AE\] { & *::marker { color: #0E59AE; } &::marker { color: #0E59AE; } & *::-webkit-details-marker { color: #0E59AE; } &::-webkit-details-marker { color: #0E59AE; } }
  .hover\:-translate-y-0\.5 { &:hover { @media (hover: hover) { --tw-translate-y: calc(var(--spacing) * -0.5); translate: var(--tw-translate-x) var(--tw-translate-y); } } }
  .hover\:-translate-y-1 { &:hover { @media (hover: hover) { --tw-translate-y: calc(var(--spacing) * -1); translate: var(--tw-translate-x) var(--tw-translate-y); } } }
  .hover\:scale-105 { &:hover { @media (hover: hover) { --tw-scale-x: 105%; --tw-scale-y: 105%; --tw-scale-z: 105%; scale: var(--tw-scale-x) var(--tw-scale-y); } } }
  .hover\:gap-5 { &:hover { @media (hover: hover) { gap: calc(var(--spacing) * 5); } } }
  .hover\:border-\[\#0E59AE\] { &:hover { @media (hover: hover) { border-color: #0E59AE; } } }
  .hover\:border-\[\#C5DBFF\] { &:hover { @media (hover: hover) { border-color: #C5DBFF; } } }
  .hover\:border-blue-200 { &:hover { @media (hover: hover) { border-color: var(--color-blue-200); } } }
  .hover\:border-blue-400 { &:hover { @media (hover: hover) { border-color: var(--color-blue-400); } } }
  .hover\:border-gray-500 { &:hover { @media (hover: hover) { border-color: var(--color-gray-500); } } }
  .hover\:border-primary { &:hover { @media (hover: hover) { border-color: var(--color-primary); } } }
  .hover\:bg-\[\#0E59AE\] { &:hover { @media (hover: hover) { background-color: #0E59AE; } } }
  .hover\:bg-\[\#0E59AE\]\/10 { &:hover { @media (hover: hover) { background-color: color-mix(in oklab, #0E59AE 10%, transparent); } } }
  .hover\:bg-\[\#0b4d9c\] { &:hover { @media (hover: hover) { background-color: #0b4d9c; } } }
  .hover\:bg-\[\#0b468a\] { &:hover { @media (hover: hover) { background-color: #0b468a; } } }
  .hover\:bg-\[\#094a96\] { &:hover { @media (hover: hover) { background-color: #094a96; } } }
  .hover\:bg-\[\#004494\] { &:hover { @media (hover: hover) { background-color: #004494; } } }
  .hover\:bg-\[\#09478f\] { &:hover { @media (hover: hover) { background-color: #09478f; } } }
  .hover\:bg-\[\#BED7FF\]\/20 { &:hover { @media (hover: hover) { background-color: color-mix(in oklab, #BED7FF 20%, transparent); } } }
  .hover\:bg-blue-500\/10 { &:hover { @media (hover: hover) { background-color: color-mix(in srgb, oklch(62.3% 0.214 259.815) 10%, transparent); @supports (color: color-mix(in lab, red, red)) { background-color: color-mix(in oklab, var(--color-blue-500) 10%, transparent); } } } }
  .hover\:bg-blue-600 { &:hover { @media (hover: hover) { background-color: var(--color-blue-600); } } }
  .hover\:bg-blue-800 { &:hover { @media (hover: hover) { background-color: var(--color-blue-800); } } }
  .hover\:bg-gray-50 { &:hover { @media (hover: hover) { background-color: var(--color-gray-50); } } }
  .hover\:bg-gray-50\/50 { &:hover { @media (hover: hover) { background-color: color-mix(in srgb, oklch(98.5% 0.002 247.839) 50%, transparent); @supports (color: color-mix(in lab, red, red)) { background-color: color-mix(in oklab, var(--color-gray-50) 50%, transparent); } } } }
  .hover\:bg-gray-200 { &:hover { @media (hover: hover) { background-color: var(--color-gray-200); } } }
  .hover\:bg-gray-400 { &:hover { @media (hover: hover) { background-color: var(--color-gray-400); } } }
  .hover\:bg-white { &:hover { @media (hover: hover) { background-color: var(--color-white); } } }
  .hover\:bg-white\/20 { &:hover { @media (hover: hover) { background-color: color-mix(in srgb, #fff 20%, transparent); @supports (color: color-mix(in lab, red, red)) { background-color: color-mix(in oklab, var(--color-white) 20%, transparent); } } } }
  .hover\:bg-white\/30 { &:hover { @media (hover: hover) { background-color: color-mix(in srgb, #fff 30%, transparent); @supports (color: color-mix(in lab, red, red)) { background-color: color-mix(in oklab, var(--color-white) 30%, transparent); } } } }
  .hover\:text-\[\#0E59AE\] { &:hover { @media (hover: hover) { color: #0E59AE; } } }
  .hover\:text-\[\#083c76\] { &:hover { @media (hover: hover) { color: #083c76; } } }
  .hover\:text-\[\#1062b1\] { &:hover { @media (hover: hover) { color: #1062b1; } } }
  .hover\:text-gray-400 { &:hover { @media (hover: hover) { color: var(--color-gray-400); } } }
  .hover\:text-primary { &:hover { @media (hover: hover) { color: var(--color-primary); } } }
  .hover\:text-white { &:hover { @media (hover: hover) { color: var(--color-white); } } }
  .hover\:underline { &:hover { @media (hover: hover) { text-decoration-line: underline; } } }
  .hover\:opacity-90 { &:hover { @media (hover: hover) { opacity: 90%; } } }
  .hover\:shadow-\[0px_18px_45px_\#0E59AE1A\] { &:hover { @media (hover: hover) { --tw-shadow: 0px 18px 45px var(--tw-shadow-color, #0E59AE1A); box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); } } }
  .hover\:shadow-lg { &:hover { @media (hover: hover) { --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1)); box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); } } }
  .hover\:shadow-md { &:hover { @media (hover: hover) { --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1)); box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); } } }
  .hover\:shadow-xl { &:hover { @media (hover: hover) { --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 8px 10px -6px var(--tw-shadow-color, rgb(0 0 0 / 0.1)); box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); } } }
  .hover\:shadow-\[\#0E59AE\] { &:hover { @media (hover: hover) { --tw-shadow-color: #0E59AE; @supports (color: color-mix(in lab, red, red)) { --tw-shadow-color: color-mix(in oklab, #0E59AE var(--tw-shadow-alpha), transparent); } } } }
  .hover\:shadow-\[\#0E59AE\]\/5 { &:hover { @media (hover: hover) { --tw-shadow-color: color-mix(in srgb, #0E59AE 5%, transparent); @supports (color: color-mix(in lab, red, red)) { --tw-shadow-color: color-mix(in oklab, color-mix(in oklab, #0E59AE 5%, transparent) var(--tw-shadow-alpha), transparent); } } } }
  .focus\:border-transparent { &:focus { border-color: transparent; } }
  .focus\:ring-0 { &:focus { --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor); box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); } }
  .focus\:ring-2 { &:focus { --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor); box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); } }
  .focus\:ring-\[\#0E59AE\] { &:focus { --tw-ring-color: #0E59AE; } }
  .focus\:outline-none { &:focus { --tw-outline-style: none; outline-style: none; } }
  .active\:scale-95 { &:active { --tw-scale-x: 95%; --tw-scale-y: 95%; --tw-scale-z: 95%; scale: var(--tw-scale-x) var(--tw-scale-y); } }
  .active\:scale-\[0\.98\] { &:active { scale: 0.98; } }
  .sm\:h-10 { @media (width >= 40rem) { height: calc(var(--spacing) * 10); } }
  .sm\:min-h-\[350px\] { @media (width >= 40rem) { min-height: 350px; } }
  .sm\:w-auto { @media (width >= 40rem) { width: auto; } }
  .sm\:max-w-\[420px\] { @media (width >= 40rem) { max-width: 420px; } }
  .sm\:max-w-md { @media (width >= 40rem) { max-width: var(--container-md); } }
  .sm\:min-w-\[320px\] { @media (width >= 40rem) { min-width: 320px; } }
  .sm\:grid-cols-2 { @media (width >= 40rem) { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
  .sm\:grid-cols-4 { @media (width >= 40rem) { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
  .sm\:flex-row { @media (width >= 40rem) { flex-direction: row; } }
  .sm\:p-8 { @media (width >= 40rem) { padding: calc(var(--spacing) * 8); } }
  .sm\:p-10 { @media (width >= 40rem) { padding: calc(var(--spacing) * 10); } }
  .sm\:px-6 { @media (width >= 40rem) { padding-inline: calc(var(--spacing) * 6); } }
  .sm\:text-\[13px\] { @media (width >= 40rem) { font-size: 13px; } }
  .sm\:text-\[16px\] { @media (width >= 40rem) { font-size: 16px; } }
  .md\:left-\[24px\] { @media (width >= 48rem) { left: 24px; } }
  .md\:col-span-2 { @media (width >= 48rem) { grid-column: span 2 / span 2; } }
  .md\:mt-4 { @media (width >= 48rem) { margin-top: calc(var(--spacing) * 4); } }
  .md\:mt-12 { @media (width >= 48rem) { margin-top: calc(var(--spacing) * 12); } }
  .md\:mb-6 { @media (width >= 48rem) { margin-bottom: calc(var(--spacing) * 6); } }
  .md\:mb-10 { @media (width >= 48rem) { margin-bottom: calc(var(--spacing) * 10); } }
  .md\:mb-16 { @media (width >= 48rem) { margin-bottom: calc(var(--spacing) * 16); } }
  .md\:mb-\[32px\] { @media (width >= 48rem) { margin-bottom: 32px; } }
  .md\:ml-10 { @media (width >= 48rem) { margin-left: calc(var(--spacing) * 10); } }
  .md\:block { @media (width >= 48rem) { display: block; } }
  .md\:hidden { @media (width >= 48rem) { display: none; } }
  .md\:table { @media (width >= 48rem) { display: table; } }
  .md\:h-8 { @media (width >= 48rem) { height: calc(var(--spacing) * 8); } }
  .md\:h-12 { @media (width >= 48rem) { height: calc(var(--spacing) * 12); } }
  .md\:h-80 { @media (width >= 48rem) { height: calc(var(--spacing) * 80); } }
  .md\:h-\[16px\] { @media (width >= 48rem) { height: 16px; } }
  .md\:h-\[95px\] { @media (width >= 48rem) { height: 95px; } }
  .md\:h-\[250px\] { @media (width >= 48rem) { height: 250px; } }
  .md\:max-h-9 { @media (width >= 48rem) { max-height: calc(var(--spacing) * 9); } }
  .md\:w-8 { @media (width >= 48rem) { width: calc(var(--spacing) * 8); } }
  .md\:w-20 { @media (width >= 48rem) { width: calc(var(--spacing) * 20); } }
  .md\:w-\[16px\] { @media (width >= 48rem) { width: 16px; } }
  .md\:w-\[95px\] { @media (width >= 48rem) { width: 95px; } }
  .md\:w-\[calc\(33\.333\%-16px\)\] { @media (width >= 48rem) { width: calc(33.333% - 16px); } }
  .md\:w-\[calc\(50\%-12\.25px\)\] { @media (width >= 48rem) { width: calc(50% - 12.25px); } }
  .md\:grid-cols-2 { @media (width >= 48rem) { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
  .md\:grid-cols-3 { @media (width >= 48rem) { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
  .md\:grid-cols-4 { @media (width >= 48rem) { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
  .md\:flex-row { @media (width >= 48rem) { flex-direction: row; } }
  .md\:gap-0 { @media (width >= 48rem) { gap: calc(var(--spacing) * 0); } }
  .md\:gap-4 { @media (width >= 48rem) { gap: calc(var(--spacing) * 4); } }
  .md\:gap-5 { @media (width >= 48rem) { gap: calc(var(--spacing) * 5); } }
  .md\:gap-6 { @media (width >= 48rem) { gap: calc(var(--spacing) * 6); } }
  .md\:gap-8 { @media (width >= 48rem) { gap: calc(var(--spacing) * 8); } }
  .md\:gap-10 { @media (width >= 48rem) { gap: calc(var(--spacing) * 10); } }
  .md\:space-y-10 { @media (width >= 48rem) { :where(& > :not(:last-child)) { --tw-space-y-reverse: 0; margin-block-start: calc(calc(var(--spacing) * 10) * var(--tw-space-y-reverse)); margin-block-end: calc(calc(var(--spacing) * 10) * calc(1 - var(--tw-space-y-reverse))); } } }
  .md\:gap-y-6 { @media (width >= 48rem) { row-gap: calc(var(--spacing) * 6); } }
  .md\:border-r { @media (width >= 48rem) { border-right-style: var(--tw-border-style); border-right-width: 1px; } }
  .md\:p-8 { @media (width >= 48rem) { padding: calc(var(--spacing) * 8); } }
  .md\:p-10 { @media (width >= 48rem) { padding: calc(var(--spacing) * 10); } }
  .md\:p-12 { @media (width >= 48rem) { padding: calc(var(--spacing) * 12); } }
  .md\:p-16 { @media (width >= 48rem) { padding: calc(var(--spacing) * 16); } }
  .md\:px-4 { @media (width >= 48rem) { padding-inline: calc(var(--spacing) * 4); } }
  .md\:px-6 { @media (width >= 48rem) { padding-inline: calc(var(--spacing) * 6); } }
  .md\:px-8 { @media (width >= 48rem) { padding-inline: calc(var(--spacing) * 8); } }
  .md\:px-\[20px\] { @media (width >= 48rem) { padding-inline: 20px; } }
  .md\:py-4 { @media (width >= 48rem) { padding-block: calc(var(--spacing) * 4); } }
  .md\:py-20 { @media (width >= 48rem) { padding-block: calc(var(--spacing) * 20); } }
  .md\:py-24 { @media (width >= 48rem) { padding-block: calc(var(--spacing) * 24); } }
  .md\:py-\[90px\] { @media (width >= 48rem) { padding-block: 90px; } }
  .md\:pt-4 { @media (width >= 48rem) { padding-top: calc(var(--spacing) * 4); } }
  .md\:pl-\[6px\] { @media (width >= 48rem) { padding-left: 6px; } }
  .md\:text-3xl { @media (width >= 48rem) { font-size: var(--text-3xl); line-height: var(--tw-leading, var(--text-3xl--line-height)); } }
  .md\:text-4xl { @media (width >= 48rem) { font-size: var(--text-4xl); line-height: var(--tw-leading, var(--text-4xl--line-height)); } }
  .md\:text-5xl { @media (width >= 48rem) { font-size: var(--text-5xl); line-height: var(--tw-leading, var(--text-5xl--line-height)); } }
  .md\:text-lg { @media (width >= 48rem) { font-size: var(--text-lg); line-height: var(--tw-leading, var(--text-lg--line-height)); } }
  .md\:text-\[14px\] { @media (width >= 48rem) { font-size: 14px; } }
  .md\:text-\[16px\] { @media (width >= 48rem) { font-size: 16px; } }
  .md\:text-\[17px\] { @media (width >= 48rem) { font-size: 17px; } }
  .md\:text-\[18px\] { @media (width >= 48rem) { font-size: 18px; } }
  .md\:text-\[19px\] { @media (width >= 48rem) { font-size: 19px; } }
  .md\:text-\[20px\] { @media (width >= 48rem) { font-size: 20px; } }
  .md\:text-\[22px\] { @media (width >= 48rem) { font-size: 22px; } }
  .md\:text-\[24px\] { @media (width >= 48rem) { font-size: 24px; } }
  .md\:text-\[28px\] { @media (width >= 48rem) { font-size: 28px; } }
  .md\:text-\[32px\] { @media (width >= 48rem) { font-size: 32px; } }
  .md\:text-\[36px\] { @media (width >= 48rem) { font-size: 36px; } }
  .md\:text-\[40px\] { @media (width >= 48rem) { font-size: 40px; } }
  .md\:text-\[42px\] { @media (width >= 48rem) { font-size: 42px; } }
  .md\:text-\[45px\] { @media (width >= 48rem) { font-size: 45px; } }
  .md\:text-\[48px\] { @media (width >= 48rem) { font-size: 48px; } }
  .md\:text-\[56px\] { @media (width >= 48rem) { font-size: 56px; } }
  .md\:leading-\[1\.2\] { @media (width >= 48rem) { --tw-leading: 1.2; line-height: 1.2; } }
  .md\:leading-\[29px\] { @media (width >= 48rem) { --tw-leading: 29px; line-height: 29px; } }
  .md\:leading-\[32px\] { @media (width >= 48rem) { --tw-leading: 32px; line-height: 32px; } }
  .lg\:top-\[-30px\] { @media (width >= 64rem) { top: -30px; } }
  .lg\:right-\[-200px\] { @media (width >= 64rem) { right: -200px; } }
  .lg\:bottom-auto { @media (width >= 64rem) { bottom: auto; } }
  .lg\:order-1 { @media (width >= 64rem) { order: 1; } }
  .lg\:order-2 { @media (width >= 64rem) { order: 2; } }
  .lg\:col-span-1 { @media (width >= 64rem) { grid-column: span 1 / span 1; } }
  .lg\:col-span-2 { @media (width >= 64rem) { grid-column: span 2 / span 2; } }
  .lg\:col-span-3 { @media (width >= 64rem) { grid-column: span 3 / span 3; } }
  .lg\:mx-0 { @media (width >= 64rem) { margin-inline: calc(var(--spacing) * 0); } }
  .lg\:mt-0 { @media (width >= 64rem) { margin-top: calc(var(--spacing) * 0); } }
  .lg\:mr-12 { @media (width >= 64rem) { margin-right: calc(var(--spacing) * 12); } }
  .lg\:mb-4 { @media (width >= 64rem) { margin-bottom: calc(var(--spacing) * 4); } }
  .lg\:mb-5 { @media (width >= 64rem) { margin-bottom: calc(var(--spacing) * 5); } }
  .lg\:mb-6 { @media (width >= 64rem) { margin-bottom: calc(var(--spacing) * 6); } }
  .lg\:mb-8 { @media (width >= 64rem) { margin-bottom: calc(var(--spacing) * 8); } }
  .lg\:mb-10 { @media (width >= 64rem) { margin-bottom: calc(var(--spacing) * 10); } }
  .lg\:mb-12 { @media (width >= 64rem) { margin-bottom: calc(var(--spacing) * 12); } }
  .lg\:mb-14 { @media (width >= 64rem) { margin-bottom: calc(var(--spacing) * 14); } }
  .lg\:mb-16 { @media (width >= 64rem) { margin-bottom: calc(var(--spacing) * 16); } }
  .lg\:mb-24 { @media (width >= 64rem) { margin-bottom: calc(var(--spacing) * 24); } }
  .lg\:ml-4 { @media (width >= 64rem) { margin-left: calc(var(--spacing) * 4); } }
  .lg\:ml-12 { @media (width >= 64rem) { margin-left: calc(var(--spacing) * 12); } }
  .lg\:ml-auto { @media (width >= 64rem) { margin-left: auto; } }
  .lg\:block { @media (width >= 64rem) { display: block; } }
  .lg\:flex { @media (width >= 64rem) { display: flex; } }
  .lg\:grid { @media (width >= 64rem) { display: grid; } }
  .lg\:hidden { @media (width >= 64rem) { display: none; } }
  .lg\:h-\[32px\] { @media (width >= 64rem) { height: 32px; } }
  .lg\:h-\[40px\] { @media (width >= 64rem) { height: 40px; } }
  .lg\:h-\[56px\] { @media (width >= 64rem) { height: 56px; } }
  .lg\:h-\[172px\] { @media (width >= 64rem) { height: 172px; } }
  .lg\:h-\[309px\] { @media (width >= 64rem) { height: 309px; } }
  .lg\:h-\[448px\] { @media (width >= 64rem) { height: 448px; } }
  .lg\:h-\[670px\] { @media (width >= 64rem) { height: 670px; } }
  .lg\:h-\[687px\] { @media (width >= 64rem) { height: 687px; } }
  .lg\:h-full { @media (width >= 64rem) { height: 100%; } }
  .lg\:min-h-\[380px\] { @media (width >= 64rem) { min-height: 380px; } }
  .lg\:min-h-\[520px\] { @media (width >= 64rem) { min-height: 520px; } }
  .lg\:min-h-\[750px\] { @media (width >= 64rem) { min-height: 750px; } }
  .lg\:w-1\/2 { @media (width >= 64rem) { width: calc(1/2 * 100%); } }
  .lg\:w-96 { @media (width >= 64rem) { width: calc(var(--spacing) * 96); } }
  .lg\:w-\[18\%\] { @media (width >= 64rem) { width: 18%; } }
  .lg\:w-\[20\%\] { @media (width >= 64rem) { width: 20%; } }
  .lg\:w-\[28\%\] { @media (width >= 64rem) { width: 28%; } }
  .lg\:w-\[30\%\] { @media (width >= 64rem) { width: 30%; } }
  .lg\:w-\[32px\] { @media (width >= 64rem) { width: 32px; } }
  .lg\:w-\[35\%\] { @media (width >= 64rem) { width: 35%; } }
  .lg\:w-\[40\%\] { @media (width >= 64rem) { width: 40%; } }
  .lg\:w-\[40px\] { @media (width >= 64rem) { width: 40px; } }
  .lg\:w-\[42\%\] { @media (width >= 64rem) { width: 42%; } }
  .lg\:w-\[44\%\] { @media (width >= 64rem) { width: 44%; } }
  .lg\:w-\[45\%\] { @media (width >= 64rem) { width: 45%; } }
  .lg\:w-\[46\%\] { @media (width >= 64rem) { width: 46%; } }
  .lg\:w-\[50\%\] { @media (width >= 64rem) { width: 50%; } }
  .lg\:w-\[55\%\] { @media (width >= 64rem) { width: 55%; } }
  .lg\:w-\[56px\] { @media (width >= 64rem) { width: 56px; } }
  .lg\:w-\[57\%\] { @media (width >= 64rem) { width: 57%; } }
  .lg\:w-\[58\%\] { @media (width >= 64rem) { width: 58%; } }
  .lg\:w-\[60\%\] { @media (width >= 64rem) { width: 60%; } }
  .lg\:w-\[65\%\] { @media (width >= 64rem) { width: 65%; } }
  .lg\:w-\[72\%\] { @media (width >= 64rem) { width: 72%; } }
  .lg\:w-\[80\%\] { @media (width >= 64rem) { width: 80%; } }
  .lg\:w-\[211px\] { @media (width >= 64rem) { width: 211px; } }
  .lg\:w-\[228px\] { @media (width >= 64rem) { width: 228px; } }
  .lg\:w-\[250px\] { @media (width >= 64rem) { width: 250px; } }
  .lg\:w-\[310px\] { @media (width >= 64rem) { width: 310px; } }
  .lg\:w-\[350px\] { @media (width >= 64rem) { width: 350px; } }
  .lg\:w-\[358px\] { @media (width >= 64rem) { width: 358px; } }
  .lg\:w-\[378px\] { @media (width >= 64rem) { width: 378px; } }
  .lg\:w-\[450px\] { @media (width >= 64rem) { width: 450px; } }
  .lg\:w-\[480px\] { @media (width >= 64rem) { width: 480px; } }
  .lg\:w-\[510px\] { @media (width >= 64rem) { width: 510px; } }
  .lg\:w-\[530px\] { @media (width >= 64rem) { width: 530px; } }
  .lg\:w-\[534px\] { @media (width >= 64rem) { width: 534px; } }
  .lg\:w-\[623px\] { @media (width >= 64rem) { width: 623px; } }
  .lg\:w-\[629px\] { @media (width >= 64rem) { width: 629px; } }
  .lg\:w-\[698px\] { @media (width >= 64rem) { width: 698px; } }
  .lg\:w-\[980px\] { @media (width >= 64rem) { width: 980px; } }
  .lg\:w-\[1320px\] { @media (width >= 64rem) { width: 1320px; } }
  .lg\:w-auto { @media (width >= 64rem) { width: auto; } }
  .lg\:w-full { @media (width >= 64rem) { width: 100%; } }
  .lg\:max-w-\[420px\] { @media (width >= 64rem) { max-width: 420px; } }
  .lg\:max-w-\[500px\] { @media (width >= 64rem) { max-width: 500px; } }
  .lg\:max-w-\[570px\] { @media (width >= 64rem) { max-width: 570px; } }
  .lg\:max-w-\[590px\] { @media (width >= 64rem) { max-width: 590px; } }
  .lg\:max-w-\[600px\] { @media (width >= 64rem) { max-width: 600px; } }
  .lg\:max-w-\[625px\] { @media (width >= 64rem) { max-width: 625px; } }
  .lg\:max-w-\[950px\] { @media (width >= 64rem) { max-width: 950px; } }
  .lg\:max-w-\[964px\] { @media (width >= 64rem) { max-width: 964px; } }
  .lg\:max-w-\[1050px\] { @media (width >= 64rem) { max-width: 1050px; } }
  .lg\:max-w-\[1320px\] { @media (width >= 64rem) { max-width: 1320px; } }
  .lg\:max-w-full { @media (width >= 64rem) { max-width: 100%; } }
  .lg\:max-w-lg { @media (width >= 64rem) { max-width: var(--container-lg); } }
  .lg\:max-w-none { @media (width >= 64rem) { max-width: none; } }
  .lg\:flex-1 { @media (width >= 64rem) { flex: 1; } }
  .lg\:translate-x-\[5\%\] { @media (width >= 64rem) { --tw-translate-x: 5%; translate: var(--tw-translate-x) var(--tw-translate-y); } }
  .lg\:translate-y-\[2\%\] { @media (width >= 64rem) { --tw-translate-y: 2%; translate: var(--tw-translate-x) var(--tw-translate-y); } }
  .lg\:rotate-0 { @media (width >= 64rem) { rotate: 0deg; } }
  .lg\:grid-cols-1 { @media (width >= 64rem) { grid-template-columns: repeat(1, minmax(0, 1fr)); } }
  .lg\:grid-cols-2 { @media (width >= 64rem) { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
  .lg\:grid-cols-3 { @media (width >= 64rem) { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
  .lg\:grid-cols-4 { @media (width >= 64rem) { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
  .lg\:grid-cols-5 { @media (width >= 64rem) { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
  .lg\:grid-cols-12 { @media (width >= 64rem) { grid-template-columns: repeat(12, minmax(0, 1fr)); } }
  .lg\:grid-cols-\[1fr_500px\] { @media (width >= 64rem) { grid-template-columns: 1fr 500px; } }
  .lg\:grid-cols-\[1fr_600px\] { @media (width >= 64rem) { grid-template-columns: 1fr 600px; } }
  .lg\:grid-cols-\[40\%_60\%\] { @media (width >= 64rem) { grid-template-columns: 40% 60%; } }
  .lg\:grid-cols-\[43\%_50\%\] { @media (width >= 64rem) { grid-template-columns: 43% 50%; } }
  .lg\:grid-cols-\[50\%_50\%\] { @media (width >= 64rem) { grid-template-columns: 50% 50%; } }
  .lg\:grid-cols-\[60\%_40\%\] { @media (width >= 64rem) { grid-template-columns: 60% 40%; } }
  .lg\:grid-cols-\[203px_1fr\] { @media (width >= 64rem) { grid-template-columns: 203px 1fr; } }
  .lg\:grid-cols-\[203px_1fr_500px\] { @media (width >= 64rem) { grid-template-columns: 203px 1fr 500px; } }
  .lg\:grid-cols-\[203px_600px_1fr\] { @media (width >= 64rem) { grid-template-columns: 203px 600px 1fr; } }
  .lg\:grid-cols-\[210px_1fr_411px\] { @media (width >= 64rem) { grid-template-columns: 210px 1fr 411px; } }
  .lg\:grid-cols-\[230px_1fr\] { @media (width >= 64rem) { grid-template-columns: 230px 1fr; } }
  .lg\:grid-cols-\[230px_1fr_420px\] { @media (width >= 64rem) { grid-template-columns: 230px 1fr 420px; } }
  .lg\:grid-cols-\[250px_610px_430px\] { @media (width >= 64rem) { grid-template-columns: 250px 610px 430px; } }
  .lg\:grid-cols-\[250px_650px_500px\] { @media (width >= 64rem) { grid-template-columns: 250px 650px 500px; } }
  .lg\:grid-cols-\[280px_1fr\] { @media (width >= 64rem) { grid-template-columns: 280px 1fr; } }
  .lg\:grid-cols-\[280px_600px_400px\] { @media (width >= 64rem) { grid-template-columns: 280px 600px 400px; } }
  .lg\:grid-cols-\[280px_610px_400px\] { @media (width >= 64rem) { grid-template-columns: 280px 610px 400px; } }
  .lg\:grid-cols-\[400px_1fr\] { @media (width >= 64rem) { grid-template-columns: 400px 1fr; } }
  .lg\:grid-cols-\[570px_687px\] { @media (width >= 64rem) { grid-template-columns: 570px 687px; } }
  .lg\:grid-cols-\[570px_720px\] { @media (width >= 64rem) { grid-template-columns: 570px 720px; } }
  .lg\:grid-cols-\[621px_530px\] { @media (width >= 64rem) { grid-template-columns: 621px 530px; } }
  .lg\:grid-cols-\[680px_600px\] { @media (width >= 64rem) { grid-template-columns: 680px 600px; } }
  .lg\:grid-cols-\[690px_560px\] { @media (width >= 64rem) { grid-template-columns: 690px 560px; } }
  .lg\:grid-cols-\[698px_1fr\] { @media (width >= 64rem) { grid-template-columns: 698px 1fr; } }
  .lg\:grid-cols-\[700px_1fr\] { @media (width >= 64rem) { grid-template-columns: 700px 1fr; } }
  .lg\:grid-cols-\[720px_570px\] { @media (width >= 64rem) { grid-template-columns: 720px 570px; } }
  .lg\:grid-cols-\[749px_1fr\] { @media (width >= 64rem) { grid-template-columns: 749px 1fr; } }
  .lg\:grid-cols-\[750px_500px\] { @media (width >= 64rem) { grid-template-columns: 750px 500px; } }
  .lg\:grid-cols-\[769px_1fr\] { @media (width >= 64rem) { grid-template-columns: 769px 1fr; } }
  .lg\:grid-cols-\[816px_1fr\] { @media (width >= 64rem) { grid-template-columns: 816px 1fr; } }
  .lg\:flex-col { @media (width >= 64rem) { flex-direction: column; } }
  .lg\:flex-row { @media (width >= 64rem) { flex-direction: row; } }
  .lg\:items-center { @media (width >= 64rem) { align-items: center; } }
  .lg\:items-end { @media (width >= 64rem) { align-items: flex-end; } }
  .lg\:items-start { @media (width >= 64rem) { align-items: flex-start; } }
  .lg\:justify-between { @media (width >= 64rem) { justify-content: space-between; } }
  .lg\:justify-end { @media (width >= 64rem) { justify-content: flex-end; } }
  .lg\:justify-start { @media (width >= 64rem) { justify-content: flex-start; } }
  .lg\:gap-0 { @media (width >= 64rem) { gap: calc(var(--spacing) * 0); } }
  .lg\:gap-4 { @media (width >= 64rem) { gap: calc(var(--spacing) * 4); } }
  .lg\:gap-6 { @media (width >= 64rem) { gap: calc(var(--spacing) * 6); } }
  .lg\:gap-8 { @media (width >= 64rem) { gap: calc(var(--spacing) * 8); } }
  .lg\:gap-12 { @media (width >= 64rem) { gap: calc(var(--spacing) * 12); } }
  .lg\:gap-16 { @media (width >= 64rem) { gap: calc(var(--spacing) * 16); } }
  .lg\:gap-20 { @media (width >= 64rem) { gap: calc(var(--spacing) * 20); } }
  .lg\:gap-24 { @media (width >= 64rem) { gap: calc(var(--spacing) * 24); } }
  .lg\:gap-\[22px\] { @media (width >= 64rem) { gap: 22px; } }
  .lg\:gap-\[30px\] { @media (width >= 64rem) { gap: 30px; } }
  .lg\:gap-\[33px\] { @media (width >= 64rem) { gap: 33px; } }
  .lg\:gap-\[40px\] { @media (width >= 64rem) { gap: 40px; } }
  .lg\:gap-\[64px\] { @media (width >= 64rem) { gap: 64px; } }
  .lg\:gap-\[77px\] { @media (width >= 64rem) { gap: 77px; } }
  .lg\:gap-\[132px\] { @media (width >= 64rem) { gap: 132px; } }
  .lg\:gap-y-8 { @media (width >= 64rem) { row-gap: calc(var(--spacing) * 8); } }
  .lg\:justify-self-end { @media (width >= 64rem) { justify-self: flex-end; } }
  .lg\:justify-self-start { @media (width >= 64rem) { justify-self: flex-start; } }
  .lg\:rounded-none { @media (width >= 64rem) { border-radius: 0; } }
  .lg\:rounded-r-xl { @media (width >= 64rem) { border-top-right-radius: var(--radius-xl); border-bottom-right-radius: var(--radius-xl); } }
  .lg\:border-b { @media (width >= 64rem) { border-bottom-style: var(--tw-border-style); border-bottom-width: 1px; } }
  .lg\:border-b-0 { @media (width >= 64rem) { border-bottom-style: var(--tw-border-style); border-bottom-width: 0px; } }
  .lg\:border-b-\[1px\] { @media (width >= 64rem) { border-bottom-style: var(--tw-border-style); border-bottom-width: 1px; } }
  .lg\:border-\[\#BED7FF\] { @media (width >= 64rem) { border-color: #BED7FF; } }
  .lg\:border-\[\#D9D9D9\] { @media (width >= 64rem) { border-color: #D9D9D9; } }
  .lg\:bg-transparent { @media (width >= 64rem) { background-color: transparent; } }
  .lg\:p-0 { @media (width >= 64rem) { padding: calc(var(--spacing) * 0); } }
  .lg\:p-6 { @media (width >= 64rem) { padding: calc(var(--spacing) * 6); } }
  .lg\:p-8 { @media (width >= 64rem) { padding: calc(var(--spacing) * 8); } }
  .lg\:p-10 { @media (width >= 64rem) { padding: calc(var(--spacing) * 10); } }
  .lg\:p-12 { @media (width >= 64rem) { padding: calc(var(--spacing) * 12); } }
  .lg\:p-16 { @media (width >= 64rem) { padding: calc(var(--spacing) * 16); } }
  .lg\:p-20 { @media (width >= 64rem) { padding: calc(var(--spacing) * 20); } }
  .lg\:px-0 { @media (width >= 64rem) { padding-inline: calc(var(--spacing) * 0); } }
  .lg\:px-4 { @media (width >= 64rem) { padding-inline: calc(var(--spacing) * 4); } }
  .lg\:px-6 { @media (width >= 64rem) { padding-inline: calc(var(--spacing) * 6); } }
  .lg\:px-8 { @media (width >= 64rem) { padding-inline: calc(var(--spacing) * 8); } }
  .lg\:px-10 { @media (width >= 64rem) { padding-inline: calc(var(--spacing) * 10); } }
  .lg\:px-12 { @media (width >= 64rem) { padding-inline: calc(var(--spacing) * 12); } }
  .lg\:px-\[0px\] { @media (width >= 64rem) { padding-inline: 0px; } }
  .lg\:px-\[20px\] { @media (width >= 64rem) { padding-inline: 20px; } }
  .lg\:px-\[24px\] { @media (width >= 64rem) { padding-inline: 24px; } }
  .lg\:px-\[31px\] { @media (width >= 64rem) { padding-inline: 31px; } }
  .lg\:px-\[64px\] { @media (width >= 64rem) { padding-inline: 64px; } }
  .lg\:py-3 { @media (width >= 64rem) { padding-block: calc(var(--spacing) * 3); } }
  .lg\:py-4 { @media (width >= 64rem) { padding-block: calc(var(--spacing) * 4); } }
  .lg\:py-10 { @media (width >= 64rem) { padding-block: calc(var(--spacing) * 10); } }
  .lg\:py-12 { @media (width >= 64rem) { padding-block: calc(var(--spacing) * 12); } }
  .lg\:py-16 { @media (width >= 64rem) { padding-block: calc(var(--spacing) * 16); } }
  .lg\:py-18 { @media (width >= 64rem) { padding-block: calc(var(--spacing) * 18); } }
  .lg\:py-20 { @media (width >= 64rem) { padding-block: calc(var(--spacing) * 20); } }
  .lg\:py-\[12px\] { @media (width >= 64rem) { padding-block: 12px; } }
  .lg\:py-\[46px\] { @media (width >= 64rem) { padding-block: 46px; } }
  .lg\:pt-10 { @media (width >= 64rem) { padding-top: calc(var(--spacing) * 10); } }
  .lg\:pt-\[64px\] { @media (width >= 64rem) { padding-top: 64px; } }
  .lg\:pt-\[104px\] { @media (width >= 64rem) { padding-top: 104px; } }
  .lg\:pr-4 { @media (width >= 64rem) { padding-right: calc(var(--spacing) * 4); } }
  .lg\:pr-6 { @media (width >= 64rem) { padding-right: calc(var(--spacing) * 6); } }
  .lg\:pr-10 { @media (width >= 64rem) { padding-right: calc(var(--spacing) * 10); } }
  .lg\:pr-16 { @media (width >= 64rem) { padding-right: calc(var(--spacing) * 16); } }
  .lg\:pr-20 { @media (width >= 64rem) { padding-right: calc(var(--spacing) * 20); } }
  .lg\:pr-\[20px\] { @media (width >= 64rem) { padding-right: 20px; } }
  .lg\:pr-\[103px\] { @media (width >= 64rem) { padding-right: 103px; } }
  .lg\:pb-\[84px\] { @media (width >= 64rem) { padding-bottom: 84px; } }
  .lg\:pb-\[90px\] { @media (width >= 64rem) { padding-bottom: 90px; } }
  .lg\:pb-\[96px\] { @media (width >= 64rem) { padding-bottom: 96px; } }
  .lg\:pl-4 { @media (width >= 64rem) { padding-left: calc(var(--spacing) * 4); } }
  .lg\:pl-8 { @media (width >= 64rem) { padding-left: calc(var(--spacing) * 8); } }
  .lg\:pl-12 { @media (width >= 64rem) { padding-left: calc(var(--spacing) * 12); } }
  .lg\:pl-16 { @media (width >= 64rem) { padding-left: calc(var(--spacing) * 16); } }
  .lg\:pl-\[56px\] { @media (width >= 64rem) { padding-left: 56px; } }
  .lg\:text-left { @media (width >= 64rem) { text-align: left; } }
  .lg\:text-5xl { @media (width >= 64rem) { font-size: var(--text-5xl); line-height: var(--tw-leading, var(--text-5xl--line-height)); } }
  .lg\:text-lg { @media (width >= 64rem) { font-size: var(--text-lg); line-height: var(--tw-leading, var(--text-lg--line-height)); } }
  .lg\:text-xl { @media (width >= 64rem) { font-size: var(--text-xl); line-height: var(--tw-leading, var(--text-xl--line-height)); } }
  .lg\:text-\[16px\] { @media (width >= 64rem) { font-size: 16px; } }
  .lg\:text-\[18px\] { @media (width >= 64rem) { font-size: 18px; } }
  .lg\:text-\[20px\] { @media (width >= 64rem) { font-size: 20px; } }
  .lg\:text-\[24px\] { @media (width >= 64rem) { font-size: 24px; } }
  .lg\:text-\[30px\] { @media (width >= 64rem) { font-size: 30px; } }
  .lg\:text-\[32px\] { @media (width >= 64rem) { font-size: 32px; } }
  .lg\:text-\[36px\] { @media (width >= 64rem) { font-size: 36px; } }
  .lg\:text-\[38px\] { @media (width >= 64rem) { font-size: 38px; } }
  .lg\:text-\[40px\] { @media (width >= 64rem) { font-size: 40px; } }
  .lg\:text-\[42px\] { @media (width >= 64rem) { font-size: 42px; } }
  .lg\:text-\[44px\] { @media (width >= 64rem) { font-size: 44px; } }
  .lg\:text-\[45px\] { @media (width >= 64rem) { font-size: 45px; } }
  .lg\:text-\[48px\] { @media (width >= 64rem) { font-size: 48px; } }
  .lg\:text-\[52px\] { @media (width >= 64rem) { font-size: 52px; } }
  .lg\:text-\[56px\] { @media (width >= 64rem) { font-size: 56px; } }
  .lg\:leading-\[22px\] { @media (width >= 64rem) { --tw-leading: 22px; line-height: 22px; } }
  .lg\:leading-\[26px\] { @media (width >= 64rem) { --tw-leading: 26px; line-height: 26px; } }
  .lg\:leading-\[27px\] { @media (width >= 64rem) { --tw-leading: 27px; line-height: 27px; } }
  .lg\:leading-\[28px\] { @media (width >= 64rem) { --tw-leading: 28px; line-height: 28px; } }
  .lg\:leading-\[29px\] { @media (width >= 64rem) { --tw-leading: 29px; line-height: 29px; } }
  .lg\:leading-\[30px\] { @media (width >= 64rem) { --tw-leading: 30px; line-height: 30px; } }
  .lg\:leading-\[32px\] { @media (width >= 64rem) { --tw-leading: 32px; line-height: 32px; } }
  .lg\:leading-\[38px\] { @media (width >= 64rem) { --tw-leading: 38px; line-height: 38px; } }
  .lg\:leading-\[49px\] { @media (width >= 64rem) { --tw-leading: 49px; line-height: 49px; } }
  .lg\:leading-\[54px\] { @media (width >= 64rem) { --tw-leading: 54px; line-height: 54px; } }
  .lg\:leading-\[64px\] { @media (width >= 64rem) { --tw-leading: 64px; line-height: 64px; } }
  .lg\:leading-\[65px\] { @media (width >= 64rem) { --tw-leading: 65px; line-height: 65px; } }
  .lg\:leading-\[76px\] { @media (width >= 64rem) { --tw-leading: 76px; line-height: 76px; } }
  .lg\:opacity-100 { @media (width >= 64rem) { opacity: 100%; } }
  .lg\:backdrop-blur-none { @media (width >= 64rem) { --tw-backdrop-blur: ; -webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,); backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,); } }
  .xl\:w-72 { @media (width >= 80rem) { width: calc(var(--spacing) * 72); } }
  .xl\:w-\[700px\] { @media (width >= 80rem) { width: 700px; } }
  .xl\:max-w-\[420px\] { @media (width >= 80rem) { max-width: 420px; } }
  .xl\:max-w-\[650px\] { @media (width >= 80rem) { max-width: 650px; } }
  .xl\:max-w-xl { @media (width >= 80rem) { max-width: var(--container-xl); } }
  .xl\:gap-6 { @media (width >= 80rem) { gap: calc(var(--spacing) * 6); } }
  .xl\:p-10 { @media (width >= 80rem) { padding: calc(var(--spacing) * 10); } }
  .xl\:px-0 { @media (width >= 80rem) { padding-inline: calc(var(--spacing) * 0); } }
}
@property --tw-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
@property --tw-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
@property --tw-translate-z { syntax: "*"; inherits: false; initial-value: 0; }
@property --tw-scale-x { syntax: "*"; inherits: false; initial-value: 1; }
@property --tw-scale-y { syntax: "*"; inherits: false; initial-value: 1; }
@property --tw-scale-z { syntax: "*"; inherits: false; initial-value: 1; }
@property --tw-rotate-x { syntax: "*"; inherits: false; }
@property --tw-rotate-y { syntax: "*"; inherits: false; }
@property --tw-rotate-z { syntax: "*"; inherits: false; }
@property --tw-skew-x { syntax: "*"; inherits: false; }
@property --tw-skew-y { syntax: "*"; inherits: false; }
@property --tw-pan-x { syntax: "*"; inherits: false; }
@property --tw-pan-y { syntax: "*"; inherits: false; }
@property --tw-pinch-zoom { syntax: "*"; inherits: false; }
@property --tw-space-y-reverse { syntax: "*"; inherits: false; initial-value: 0; }
@property --tw-space-x-reverse { syntax: "*"; inherits: false; initial-value: 0; }
@property --tw-divide-y-reverse { syntax: "*"; inherits: false; initial-value: 0; }
@property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
@property --tw-gradient-position { syntax: "*"; inherits: false; }
@property --tw-gradient-from { syntax: "<color>"; inherits: false; initial-value: #0000; }
@property --tw-gradient-via { syntax: "<color>"; inherits: false; initial-value: #0000; }
@property --tw-gradient-to { syntax: "<color>"; inherits: false; initial-value: #0000; }
@property --tw-gradient-stops { syntax: "*"; inherits: false; }
@property --tw-gradient-via-stops { syntax: "*"; inherits: false; }
@property --tw-gradient-from-position { syntax: "<length-percentage>"; inherits: false; initial-value: 0%; }
@property --tw-gradient-via-position { syntax: "<length-percentage>"; inherits: false; initial-value: 50%; }
@property --tw-gradient-to-position { syntax: "<length-percentage>"; inherits: false; initial-value: 100%; }
@property --tw-leading { syntax: "*"; inherits: false; }
@property --tw-font-weight { syntax: "*"; inherits: false; }
@property --tw-tracking { syntax: "*"; inherits: false; }
@property --tw-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
@property --tw-shadow-color { syntax: "*"; inherits: false; }
@property --tw-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
@property --tw-inset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
@property --tw-inset-shadow-color { syntax: "*"; inherits: false; }
@property --tw-inset-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
@property --tw-ring-color { syntax: "*"; inherits: false; }
@property --tw-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
@property --tw-inset-ring-color { syntax: "*"; inherits: false; }
@property --tw-inset-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
@property --tw-ring-inset { syntax: "*"; inherits: false; }
@property --tw-ring-offset-width { syntax: "<length>"; inherits: false; initial-value: 0px; }
@property --tw-ring-offset-color { syntax: "*"; inherits: false; initial-value: #fff; }
@property --tw-ring-offset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
@property --tw-outline-style { syntax: "*"; inherits: false; initial-value: solid; }
@property --tw-blur { syntax: "*"; inherits: false; }
@property --tw-brightness { syntax: "*"; inherits: false; }
@property --tw-contrast { syntax: "*"; inherits: false; }
@property --tw-grayscale { syntax: "*"; inherits: false; }
@property --tw-hue-rotate { syntax: "*"; inherits: false; }
@property --tw-invert { syntax: "*"; inherits: false; }
@property --tw-opacity { syntax: "*"; inherits: false; }
@property --tw-saturate { syntax: "*"; inherits: false; }
@property --tw-sepia { syntax: "*"; inherits: false; }
@property --tw-drop-shadow { syntax: "*"; inherits: false; }
@property --tw-drop-shadow-color { syntax: "*"; inherits: false; }
@property --tw-drop-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
@property --tw-drop-shadow-size { syntax: "*"; inherits: false; }
@property --tw-backdrop-blur { syntax: "*"; inherits: false; }
@property --tw-backdrop-brightness { syntax: "*"; inherits: false; }
@property --tw-backdrop-contrast { syntax: "*"; inherits: false; }
@property --tw-backdrop-grayscale { syntax: "*"; inherits: false; }
@property --tw-backdrop-hue-rotate { syntax: "*"; inherits: false; }
@property --tw-backdrop-invert { syntax: "*"; inherits: false; }
@property --tw-backdrop-opacity { syntax: "*"; inherits: false; }
@property --tw-backdrop-saturate { syntax: "*"; inherits: false; }
@property --tw-backdrop-sepia { syntax: "*"; inherits: false; }
@property --tw-duration { syntax: "*"; inherits: false; }
@property --tw-ease { syntax: "*"; inherits: false; }
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *, ::before, ::after, ::backdrop {
      --tw-translate-x: 0; --tw-translate-y: 0; --tw-translate-z: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-scale-z: 1;
      --tw-rotate-x: initial; --tw-rotate-y: initial; --tw-rotate-z: initial; --tw-skew-x: initial; --tw-skew-y: initial;
      --tw-pan-x: initial; --tw-pan-y: initial; --tw-pinch-zoom: initial;
      --tw-space-y-reverse: 0; --tw-space-x-reverse: 0; --tw-divide-y-reverse: 0;
      --tw-border-style: solid;
      --tw-gradient-position: initial; --tw-gradient-from: #0000; --tw-gradient-via: #0000; --tw-gradient-to: #0000;
      --tw-gradient-stops: initial; --tw-gradient-via-stops: initial;
      --tw-gradient-from-position: 0%; --tw-gradient-via-position: 50%; --tw-gradient-to-position: 100%;
      --tw-leading: initial; --tw-font-weight: initial; --tw-tracking: initial;
      --tw-shadow: 0 0 #0000; --tw-shadow-color: initial; --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000; --tw-inset-shadow-color: initial; --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial; --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial; --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-offset-shadow: 0 0 #0000;
      --tw-outline-style: solid;
      --tw-blur: initial; --tw-brightness: initial; --tw-contrast: initial; --tw-grayscale: initial;
      --tw-hue-rotate: initial; --tw-invert: initial; --tw-opacity: initial; --tw-saturate: initial; --tw-sepia: initial;
      --tw-drop-shadow: initial; --tw-drop-shadow-color: initial; --tw-drop-shadow-alpha: 100%; --tw-drop-shadow-size: initial;
      --tw-backdrop-blur: initial; --tw-backdrop-brightness: initial; --tw-backdrop-contrast: initial;
      --tw-backdrop-grayscale: initial; --tw-backdrop-hue-rotate: initial; --tw-backdrop-invert: initial;
      --tw-backdrop-opacity: initial; --tw-backdrop-saturate: initial; --tw-backdrop-sepia: initial;
      --tw-duration: initial; --tw-ease: initial;
    }
  }
}