/* Variables */
:root {
    --hamburger-padding-x: 4px;
    --hamburger-padding-y: 9px;
    --hamburger-layer-width: 24px;
    --hamburger-layer-height: 2px;
    --hamburger-layer-spacing: 4px;
    --hamburger-layer-color: #134074;
    --hamburger-layer-border-radius: 0px;
    --hamburger-hover-opacity: 0.7;
    --hamburger-active-layer-color: #134074;
    --hamburger-hover-use-filter: false;
    --hamburger-hover-filter: opacity(50%);
  }
  
  .hamburger {
    padding: var(--hamburger-padding-y) var(--hamburger-padding-x);
    display: inline-block;
    cursor: pointer;
  
    transition: opacity 0.15s linear, filter 0.15s linear;
  
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
  }
  
  .hamburger:hover {
    opacity: var(--hamburger-hover-opacity);
  }
  
  /* .hamburger[aria-expanded="true"] {
    opacity: var(--hamburger-hover-opacity);
  } */
  
  .hamburger[aria-expanded="true"] .hamburger-inner,
  .hamburger[aria-expanded="true"] .hamburger-inner::before,
  .hamburger[aria-expanded="true"] .hamburger-inner::after {
    background-color: var(--hamburger-active-layer-color);
  }
  
  .hamburger-box {
    width: var(--hamburger-layer-width);
    height: calc(var(--hamburger-layer-height) * 3 + var(--hamburger-layer-spacing) * 2);
    display: inline-block;
    position: relative;
  }
  
  .hamburger-inner {
    display: block;
    top: 50%;
    margin-top: calc(var(--hamburger-layer-height) / -2);
  
    width: var(--hamburger-layer-width);
    height: var(--hamburger-layer-height);
    background-color: var(--hamburger-layer-color);
    border-radius: var(--hamburger-layer-border-radius);
    position: absolute;
  
    transition: transform 0.15s ease;
  }
  
  .hamburger-inner::before,
  .hamburger-inner::after {
    content: "";
    display: block;
  
    width: var(--hamburger-layer-width);
    height: var(--hamburger-layer-height);
    background-color: var(--hamburger-layer-color);
    border-radius: var(--hamburger-layer-border-radius);
    position: absolute;
    transition: transform 0.15s ease;
  }
  
  .hamburger-inner::before {
    top: calc((var(--hamburger-layer-spacing) + var(--hamburger-layer-height)) * -1);
  }
  
  .hamburger-inner::after {
    bottom: calc((var(--hamburger-layer-spacing) + var(--hamburger-layer-height)) * -1);
  }
  
  /* Spring Variant */
  .hamburger--spring .hamburger-inner {
    top: calc(var(--hamburger-layer-height) / 2);
    transition: background-color 0s 0.13s linear;
  }
  
  .hamburger--spring .hamburger-inner::before {
    top: calc(var(--hamburger-layer-height) + var(--hamburger-layer-spacing));
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
      transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  
  .hamburger--spring .hamburger-inner::after {
    top: calc((var(--hamburger-layer-height) * 2) + (var(--hamburger-layer-spacing) * 2));
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
      transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  
  .hamburger--spring[aria-expanded="true"] .hamburger-inner {
    transition-delay: 0.22s;
    background-color: transparent !important;
  }
  
  .hamburger--spring[aria-expanded="true"] .hamburger-inner::before {
    top: 0;
    transform: translate3d(0, calc(var(--hamburger-layer-spacing) + var(--hamburger-layer-height)), 0) rotate(45deg);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
      transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  
  .hamburger--spring[aria-expanded="true"] .hamburger-inner::after {
    top: 0;
    transform: translate3d(0, calc(var(--hamburger-layer-spacing) + var(--hamburger-layer-height)), 0) rotate(-45deg);
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
      transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  
  @media (forced-colors: active) {
    .hamburger {
        border: 2px solid ButtonText; /* Ensures visibility */
    }
    .hamburger-inner,
    .hamburger-inner::before,
    .hamburger-inner::after {
        background-color: ButtonText; /* Adapts to high contrast */
    }
    .hamburger[aria-expanded="true"] .hamburger-inner,
  .hamburger[aria-expanded="true"] .hamburger-inner::before,
  .hamburger[aria-expanded="true"] .hamburger-inner::after {
    background-color: ButtonText;
  }
}
@font-face {
    font-family: 'Averta';
    src: url('../fonts/Averta-SemiBold.woff2') format('woff2'),
        url('../fonts/Averta-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Averta';
    src: url('../fonts/Averta-Bold.woff2') format('woff2'),
        url('../fonts/Averta-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Averta';
    src: url('../fonts/Averta-Regular.woff2') format('woff2'),
        url('../fonts/Averta-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Averta';
    src: url('../fonts/Averta-Light.woff2') format('woff2'),
        url('../fonts/Averta-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'icomoon';
    src:  url('../fonts/icomoon.eot?641gj3');
    src:  url('../fonts/icomoon.eot?641gj3#iefix') format('embedded-opentype'),
      url('../fonts/icomoon.ttf?641gj3') format('truetype'),
      url('../fonts/icomoon.woff?641gj3') format('woff'),
      url('../fonts/icomoon.svg?641gj3#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
  }
  
  [class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
  
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .icon-download:before {
  content: "\e90b";
}

  .icon-insta:before {
    content: "\e90a";
    color: inherit;
  }
  .icon-calendar-1:before {
    content: "\e900";
    color: inherit;
  }
  .icon-Feather-Icon-1:before {
    content: "\e901";
    color: inherit;
  }
  .icon-smartphone-1:before {
    content: "\e902";
    color: inherit;
  }
  .icon-LinkedIN-1:before {
    content: "\e903";
    color: inherit;
  }
  .icon-Facebook-1:before {
    content: "\e904";
    color: inherit;
  }
  .icon-map-pin-1:before {
    content: "\e905";
    color: inherit;
  }
  .icon-phone-1:before {
    content: "\e906";
    color: inherit;
  }
  .icon-search-1:before {
    content: "\e907";
    color: inherit;
  }
  .icon-arrow_forward-1:before {
    content: "\e908";
    color: inherit;
  }
  .icon-twitter-1:before {
    content: "\e909";
    color: inherit;
  }
.swiper {
	height: 100%;
	width: 100%;

	&:not(.swiper-initialized, .disabledSwiper) {
		overflow-y: hidden;
		overflow-x: hidden;

		.swiper-wrapper {
			overflow-y: hidden;
			overflow-x: auto;
			display: flex;
			scroll-snap-type: x mandatory;
			height: 100%;

			.swiper-slide {
				scroll-snap-align: start;
				min-width: 100vw;
			}
		}
	}
}

[data-js="accordion"] {
	display: flex;
	flex-direction: column;
	[data-js="accordion_contents"] {
		max-height: 0px;
		overflow: hidden;
		transition: max-height 0.25s ease-in-out;
	}
    button{
        @media (forced-colors: active) {
            color: buttontext;
        }
        &:hover{
            @media (forced-colors: active) {
                color: buttontext;
            }
        }
    }
    button[aria-expanded="true"] + [data-js="accordion_contents"] {
        max-height: 1000px;
        transition: max-height 0.25s ease-in-out;

    }
}
select, ::picker(select){
    -webkit-appearance: base-select;
       -moz-appearance: base-select;
            appearance: base-select;
    box-sizing: border-box;
}
select {
    border: 1px solid #d6d6d6;
    /* background: #eee; */
    padding: 10px;
    transition: 0.4s;
    background-color: #fff;
  }
  
  /* select:hover,
  select:focus {
    background: #ddd;
  } */
  select::picker-icon {
    color: #999;
    transition: 0.4s rotate;
    display: none;
  }
  select:open::picker-icon {
    rotate: 180deg;
  }
  ::picker(select) {
    border: none;
    min-height: -moz-max-content;
    min-height: max-content;
  }
  option {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
  
    border: 2px solid #eee;
    background: #eee;
    padding: 10px;
    transition: 0.4s;
    position: relative;
  }
  /* option:first-of-type {
    border-radius: 8px 8px 0 0;
  } */
  
  /* option:last-of-type {
    border-radius: 0 0 8px 8px;
  } */
  
  option:not(option:last-of-type) {
    border-bottom: none;
  }
  /* option:nth-of-type(odd) {
    background: #fff;
  } */
  option {
    background: #fff;
  }
  
  option:hover,
  option:focus {
    background: #dedede;
    @media (forced-colors: active) {
      background-color: buttontext;
}
  }
  option .icon {
    font-size: 1.6rem;
    text-box: trim-both cap alphabetic;
  }
  selectedcontent .icon {
    display: none;
  }
  option:checked {
    font-weight: bold;
    @media (forced-colors: active) {
      /* background-color: buttontext; */
      /* color:buttonface; */
    }
  }
  option::checkmark {
    order: 1;
    margin-left: auto;
    /* content: "☑️"; */
    content: "";
    width: 100%;
    height: calc(100% - 2px);
    position: absolute;
    inset: 0;
    @media (forced-colors: active) {
      border: solid 4px buttontext;
      height: calc(100% - 8px);
      width: calc(100% - 8px);
      z-index: 0;
    }
  }
  ::picker(select) {
    opacity: 0;
    transition: all 0.4s allow-discrete;
  }
  ::picker(select):popover-open {
    opacity: 1;
  }
  @starting-style {
    ::picker(select):popover-open {
      opacity: 0;
    }
  }
::picker(select) {
    top: calc(anchor(bottom) + 1px);
    left: anchor(0%);
  }
/*! tailwindcss v4.0.14 | MIT License | https://tailwindcss.com */
@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(0.637 0.237 25.331);
    --color-red-600: oklch(0.577 0.245 27.325);
    --color-blue-500: oklch(0.623 0.214 259.815);
    --color-gray-100: oklch(0.967 0.003 264.542);
    --color-gray-500: oklch(0.551 0.027 264.364);
    --color-black: #000;
    --color-white: #fff;
    --spacing: 0.25rem;
    --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);
    --font-weight-light: 300;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --leading-tight: 1.25;
    --radius-lg: 0.5rem;
    --radius-2xl: 1rem;
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --default-transition-duration: 150ms;
    --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --default-font-family: var(--font-sans);
    --default-font-feature-settings: var(--font-sans--font-feature-settings);
    --default-font-variation-settings: var(
      --font-sans--font-variation-settings
    );
    --default-mono-font-family: var(--font-mono);
    --default-mono-font-feature-settings: var(
      --font-mono--font-feature-settings
    );
    --default-mono-font-variation-settings: var(
      --font-mono--font-variation-settings
    );
    --color-clr-134074: #134074;
    --color-clr-lblue: #0FB7EB;
    --color-clr-363636: #363636;
    --color-clr-offWhite: #F5F7FA;
    --color-clr-red: #ED2027;
    --color-clr-secondaryLight: #EBEBF0;
    --color-clr-secondaryLight-1: #F3F2F0;
    --color-clr-767677: #767677;
    --font-averta: "Averta";
    --font-icomoon: 'icomoon';
    --text-thirty: calc(30 / 16 * 1rem);
  }
}
@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%;
    -moz-tab-size: 4;
      -o-tab-size: 4;
         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;
  }
  body {
    line-height: inherit;
  }
  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;
  }
  ::-moz-placeholder {
    opacity: 1;
    color: color-mix(in oklab, currentColor 50%, transparent);
  }
  ::placeholder {
    opacity: 1;
    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;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
    -webkit-appearance: button;
       -moz-appearance: 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-none {
    pointer-events: none;
  }
  .visible {
    visibility: visible;
  }
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }
  .\!relative {
    position: relative !important;
  }
  .absolute {
    position: absolute;
  }
  .relative {
    position: relative;
  }
  .static {
    position: static;
  }
  .sticky {
    position: sticky;
  }
  .inset-y-0 {
    inset-block: calc(var(--spacing) * 0);
  }
  .\!top-1\/2 {
    top: calc(1/2 * 100%) !important;
  }
  .top-0 {
    top: calc(var(--spacing) * 0);
  }
  .top-1\/2 {
    top: calc(1/2 * 100%);
  }
  .top-4 {
    top: calc(var(--spacing) * 4);
  }
  .top-\[-1px\] {
    top: -1px;
  }
  .top-full {
    top: 100%;
  }
  .right-0 {
    right: calc(var(--spacing) * 0);
  }
  .right-4 {
    right: calc(var(--spacing) * 4);
  }
  .right-6 {
    right: calc(var(--spacing) * 6);
  }
  .\!bottom-0 {
    bottom: calc(var(--spacing) * 0) !important;
  }
  .bottom-0 {
    bottom: calc(var(--spacing) * 0);
  }
  .left-0 {
    left: calc(var(--spacing) * 0);
  }
  .z-0 {
    z-index: 0;
  }
  .z-10 {
    z-index: 10;
  }
  .z-20 {
    z-index: 20;
  }
  .order-1 {
    order: 1;
  }
  .order-2 {
    order: 2;
  }
  .order-3 {
    order: 3;
  }
  .order-4 {
    order: 4;
  }
  .col-span-1 {
    grid-column: span 1 / span 1;
  }
  .col-span-2 {
    grid-column: span 2 / span 2;
  }
  .col-span-3 {
    grid-column: span 3 / span 3;
  }
  .col-start-1 {
    grid-column-start: 1;
  }
  .col-start-2 {
    grid-column-start: 2;
  }
  .col-start-4 {
    grid-column-start: 4;
  }
  .col-end-\[-1\] {
    grid-column-end: -1;
  }
  .col-end-\[-2\] {
    grid-column-end: -2;
  }
  .row-span-1 {
    grid-row: span 1 / span 1;
  }
  .row-span-2 {
    grid-row: span 2 / span 2;
  }
  .row-start-1 {
    grid-row-start: 1;
  }
  .row-start-2 {
    grid-row-start: 2;
  }
  .row-start-3 {
    grid-row-start: 3;
  }
  .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;
    }
  }
  .\!mx-0 {
    margin-inline: calc(var(--spacing) * 0) !important;
  }
  .mx-0\.5 {
    margin-inline: calc(var(--spacing) * 0.5);
  }
  .mx-auto {
    margin-inline: auto;
  }
  .my-5 {
    margin-block: calc(var(--spacing) * 5);
  }
  .my-6 {
    margin-block: calc(var(--spacing) * 6);
  }
  .my-8 {
    margin-block: calc(var(--spacing) * 8);
  }
  .my-24 {
    margin-block: calc(var(--spacing) * 24);
  }
  .prose {
    color: var(--tw-prose-body);
    max-width: 65ch;
    :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      margin-top: 1.25em;
      margin-bottom: 1.25em;
    }
    :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      color: var(--tw-prose-lead);
      font-size: 1.25em;
      line-height: 1.6;
      margin-top: 1.2em;
      margin-bottom: 1.2em;
    }
    :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      color: var(--tw-prose-links);
      text-decoration: underline;
      font-weight: 500;
    }
    :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      color: var(--tw-prose-bold);
      font-weight: 600;
    }
    :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      color: inherit;
    }
    :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      color: inherit;
    }
    :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      color: inherit;
    }
    :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      list-style-type: decimal;
      margin-top: 1.25em;
      margin-bottom: 1.25em;
      padding-inline-start: 1.625em;
    }
    :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      list-style-type: upper-alpha;
    }
    :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      list-style-type: lower-alpha;
    }
    :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      list-style-type: upper-alpha;
    }
    :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      list-style-type: lower-alpha;
    }
    :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      list-style-type: upper-roman;
    }
    :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      list-style-type: lower-roman;
    }
    :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      list-style-type: upper-roman;
    }
    :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      list-style-type: lower-roman;
    }
    :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      list-style-type: decimal;
    }
    :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      list-style-type: disc;
      margin-top: 1.25em;
      margin-bottom: 1.25em;
      padding-inline-start: 1.625em;
    }
    :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
      font-weight: 400;
      color: var(--tw-prose-counters);
    }
    :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
      color: var(--tw-prose-bullets);
    }
    :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      color: var(--tw-prose-headings);
      font-weight: 600;
      margin-top: 1.25em;
    }
    :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      border-color: var(--tw-prose-hr);
      border-top-width: 1;
      margin-top: 3em;
      margin-bottom: 3em;
    }
    :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      font-weight: 500;
      font-style: italic;
      color: var(--tw-prose-quotes);
      border-inline-start-width: 0.25rem;
      border-inline-start-color: var(--tw-prose-quote-borders);
      quotes: "\201C""\201D""\2018""\2019";
      margin-top: 1.6em;
      margin-bottom: 1.6em;
      padding-inline-start: 1em;
    }
    :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
      content: open-quote;
    }
    :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
      content: close-quote;
    }
    :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      color: var(--tw-prose-headings);
      font-weight: 800;
      font-size: 2.25em;
      margin-top: 0;
      margin-bottom: 0.8888889em;
      line-height: 1.1111111;
    }
    :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      font-weight: 900;
      color: inherit;
    }
    :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      color: var(--tw-prose-headings);
      font-weight: 700;
      font-size: 1.5em;
      margin-top: 2em;
      margin-bottom: 1em;
      line-height: 1.3333333;
    }
    :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      font-weight: 800;
      color: inherit;
    }
    :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      color: var(--tw-prose-headings);
      font-weight: 600;
      font-size: 1.25em;
      margin-top: 1.6em;
      margin-bottom: 0.6em;
      line-height: 1.6;
    }
    :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      font-weight: 700;
      color: inherit;
    }
    :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      color: var(--tw-prose-headings);
      font-weight: 600;
      margin-top: 1.5em;
      margin-bottom: 0.5em;
      line-height: 1.5;
    }
    :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      font-weight: 700;
      color: inherit;
    }
    :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      margin-top: 2em;
      margin-bottom: 2em;
    }
    :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      display: block;
      margin-top: 2em;
      margin-bottom: 2em;
    }
    :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      margin-top: 2em;
      margin-bottom: 2em;
    }
    :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      font-weight: 500;
      font-family: inherit;
      color: var(--tw-prose-kbd);
      box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
      font-size: 0.875em;
      border-radius: 0.3125rem;
      padding-top: 0.1875em;
      padding-inline-end: 0.375em;
      padding-bottom: 0.1875em;
      padding-inline-start: 0.375em;
    }
    :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      color: var(--tw-prose-code);
      font-weight: 600;
      font-size: 0.875em;
    }
    :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
      content: "`";
    }
    :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
      content: "`";
    }
    :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      color: inherit;
    }
    :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      color: inherit;
    }
    :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      color: inherit;
      font-size: 0.875em;
    }
    :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      color: inherit;
      font-size: 0.9em;
    }
    :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      color: inherit;
    }
    :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      color: inherit;
    }
    :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      color: inherit;
    }
    :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      color: var(--tw-prose-pre-code);
      background-color: var(--tw-prose-pre-bg);
      overflow-x: auto;
      font-weight: 400;
      font-size: 0.875em;
      line-height: 1.7142857;
      margin-top: 1.7142857em;
      margin-bottom: 1.7142857em;
      border-radius: 0.375rem;
      padding-top: 0.8571429em;
      padding-inline-end: 1.1428571em;
      padding-bottom: 0.8571429em;
      padding-inline-start: 1.1428571em;
    }
    :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      background-color: transparent;
      border-width: 0;
      border-radius: 0;
      padding: 0;
      font-weight: inherit;
      color: inherit;
      font-size: inherit;
      font-family: inherit;
      line-height: inherit;
    }
    :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
      content: none;
    }
    :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
      content: none;
    }
    :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      width: 100%;
      table-layout: auto;
      margin-top: 2em;
      margin-bottom: 2em;
      font-size: 0.875em;
      line-height: 1.7142857;
    }
    :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      border-bottom-width: 1px;
      border-bottom-color: var(--tw-prose-th-borders);
    }
    :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      color: var(--tw-prose-headings);
      font-weight: 600;
      vertical-align: bottom;
      padding-inline-end: 0.5714286em;
      padding-bottom: 0.5714286em;
      padding-inline-start: 0.5714286em;
    }
    :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      border-bottom-width: 1px;
      border-bottom-color: var(--tw-prose-td-borders);
    }
    :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      border-bottom-width: 0;
    }
    :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      vertical-align: baseline;
    }
    :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      border-top-width: 1px;
      border-top-color: var(--tw-prose-th-borders);
    }
    :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      vertical-align: top;
    }
    :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      text-align: start;
    }
    :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      margin-top: 0;
      margin-bottom: 0;
    }
    :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      color: var(--tw-prose-captions);
      font-size: 0.875em;
      line-height: 1.4285714;
      margin-top: 0.8571429em;
    }
    --tw-prose-body: oklch(0.373 0.034 259.733);
    --tw-prose-headings: oklch(0.21 0.034 264.665);
    --tw-prose-lead: oklch(0.446 0.03 256.802);
    --tw-prose-links: oklch(0.21 0.034 264.665);
    --tw-prose-bold: oklch(0.21 0.034 264.665);
    --tw-prose-counters: oklch(0.551 0.027 264.364);
    --tw-prose-bullets: oklch(0.872 0.01 258.338);
    --tw-prose-hr: oklch(0.928 0.006 264.531);
    --tw-prose-quotes: oklch(0.21 0.034 264.665);
    --tw-prose-quote-borders: oklch(0.928 0.006 264.531);
    --tw-prose-captions: oklch(0.551 0.027 264.364);
    --tw-prose-kbd: oklch(0.21 0.034 264.665);
    --tw-prose-kbd-shadows: NaN NaN NaN;
    --tw-prose-code: oklch(0.21 0.034 264.665);
    --tw-prose-pre-code: oklch(0.928 0.006 264.531);
    --tw-prose-pre-bg: oklch(0.278 0.033 256.848);
    --tw-prose-th-borders: oklch(0.872 0.01 258.338);
    --tw-prose-td-borders: oklch(0.928 0.006 264.531);
    --tw-prose-invert-body: oklch(0.872 0.01 258.338);
    --tw-prose-invert-headings: #fff;
    --tw-prose-invert-lead: oklch(0.707 0.022 261.325);
    --tw-prose-invert-links: #fff;
    --tw-prose-invert-bold: #fff;
    --tw-prose-invert-counters: oklch(0.707 0.022 261.325);
    --tw-prose-invert-bullets: oklch(0.446 0.03 256.802);
    --tw-prose-invert-hr: oklch(0.373 0.034 259.733);
    --tw-prose-invert-quotes: oklch(0.967 0.003 264.542);
    --tw-prose-invert-quote-borders: oklch(0.373 0.034 259.733);
    --tw-prose-invert-captions: oklch(0.707 0.022 261.325);
    --tw-prose-invert-kbd: #fff;
    --tw-prose-invert-kbd-shadows: 255 255 255;
    --tw-prose-invert-code: #fff;
    --tw-prose-invert-pre-code: oklch(0.872 0.01 258.338);
    --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
    --tw-prose-invert-th-borders: oklch(0.446 0.03 256.802);
    --tw-prose-invert-td-borders: oklch(0.373 0.034 259.733);
    font-size: 1rem;
    line-height: 1.75;
    :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      margin-top: 0;
      margin-bottom: 0;
    }
    :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      margin-top: 0.5em;
      margin-bottom: 0.5em;
    }
    :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      padding-inline-start: 0.375em;
    }
    :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      padding-inline-start: 0.375em;
    }
    :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      margin-top: 0.75em;
      margin-bottom: 0.75em;
    }
    :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      margin-top: 1.25em;
    }
    :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      margin-bottom: 1.25em;
    }
    :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      margin-top: 1.25em;
    }
    :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      margin-bottom: 1.25em;
    }
    :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      margin-top: 0.75em;
      margin-bottom: 0.75em;
    }
    :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      margin-top: 1.25em;
      margin-bottom: 1.25em;
    }
    :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      margin-top: 0.5em;
      padding-inline-start: 1.625em;
    }
    :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      margin-top: 0;
    }
    :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      margin-top: 0;
    }
    :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      margin-top: 0;
    }
    :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      margin-top: 0;
    }
    :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      padding-inline-start: 0;
    }
    :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      padding-inline-end: 0;
    }
    :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      padding-top: 0.5714286em;
      padding-inline-end: 0.5714286em;
      padding-bottom: 0.5714286em;
      padding-inline-start: 0.5714286em;
    }
    :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      padding-inline-start: 0;
    }
    :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      padding-inline-end: 0;
    }
    :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      margin-top: 2em;
      margin-bottom: 2em;
    }
    :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      margin-top: 0;
    }
    :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
      margin-bottom: 0;
    }
  }
  .\!mt-2 {
    margin-top: calc(var(--spacing) * 2) !important;
  }
  .mt-0\.5 {
    margin-top: calc(var(--spacing) * 0.5);
  }
  .mt-4 {
    margin-top: calc(var(--spacing) * 4);
  }
  .mt-6 {
    margin-top: calc(var(--spacing) * 6);
  }
  .mt-8 {
    margin-top: calc(var(--spacing) * 8);
  }
  .mt-auto {
    margin-top: auto;
  }
  .mr-\[5px\] {
    margin-right: 5px;
  }
  .mb-4 {
    margin-bottom: calc(var(--spacing) * 4);
  }
  .mb-6 {
    margin-bottom: calc(var(--spacing) * 6);
  }
  .mb-8 {
    margin-bottom: calc(var(--spacing) * 8);
  }
  .mb-12 {
    margin-bottom: calc(var(--spacing) * 12);
  }
  .mb-\[13px\] {
    margin-bottom: 13px;
  }
  .mb-\[15px\] {
    margin-bottom: 15px;
  }
  .mb-\[18px\] {
    margin-bottom: 18px;
  }
  .mb-\[calc\(15\/16\*1rem\)\] {
    margin-bottom: calc(15 / 16 * 1rem);
  }
  .mb-auto {
    margin-bottom: auto;
  }
  .\!ml-\[-12px\] {
    margin-left: -12px !important;
  }
  .ml-2 {
    margin-left: calc(var(--spacing) * 2);
  }
  .ml-5 {
    margin-left: calc(var(--spacing) * 5);
  }
  .ml-\[calc\(2\/10\*1em\)\] {
    margin-left: calc(2 / 10 * 1em);
  }
  .ml-auto {
    margin-left: auto;
  }
  .line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .\!contents {
    display: contents !important;
  }
  .\!flex {
    display: flex !important;
  }
  .\!hidden {
    display: none !important;
  }
  .\!inline-flex {
    display: inline-flex !important;
  }
  .block {
    display: block;
  }
  .contents {
    display: contents;
  }
  .flex {
    display: flex;
  }
  .grid {
    display: grid;
  }
  .hidden {
    display: none;
  }
  .inline-block {
    display: inline-block;
  }
  .inline-flex {
    display: inline-flex;
  }
  .\!aspect-square {
    aspect-ratio: 1 / 1 !important;
  }
  .aspect-\[3\/4\] {
    aspect-ratio: 3/4;
  }
  .aspect-\[281\/50\] {
    aspect-ratio: 281/50;
  }
  .aspect-\[314\/176\] {
    aspect-ratio: 314/176;
  }
  .aspect-\[343\/191\] {
    aspect-ratio: 343/191;
  }
  .aspect-\[343\/192\] {
    aspect-ratio: 343/192;
  }
  .aspect-\[343\/257\] {
    aspect-ratio: 343/257;
  }
  .aspect-\[343\/266\] {
    aspect-ratio: 343/266;
  }
  .aspect-\[375\/210\] {
    aspect-ratio: 375/210;
  }
  .aspect-\[394\/296\] {
    aspect-ratio: 394/296;
  }
  .aspect-\[1000\/561\] {
    aspect-ratio: 1000/561;
  }
  .aspect-square {
    aspect-ratio: 1 / 1;
  }
  .\!h-min {
    height: -moz-min-content !important;
    height: min-content !important;
  }
  .h-4 {
    height: calc(var(--spacing) * 4);
  }
  .h-10 {
    height: calc(var(--spacing) * 10);
  }
  .h-12 {
    height: calc(var(--spacing) * 12);
  }
  .h-20 {
    height: calc(var(--spacing) * 20);
  }
  .h-\[132px\] {
    height: 132px;
  }
  .h-\[164px\] {
    height: 164px;
  }
  .h-\[calc\(8\/10\*1em\)\] {
    height: calc(8 / 10 * 1em);
  }
  .h-\[calc\(25\/16\*1rem\)\] {
    height: calc(25 / 16 * 1rem);
  }
  .h-\[calc\(26\/16\*1rem\)\] {
    height: calc(26 / 16 * 1rem);
  }
  .h-\[calc\(35\/16\*1rem\)\] {
    height: calc(35 / 16 * 1rem);
  }
  .h-\[calc\(52\/16\*1rem\)\] {
    height: calc(52 / 16 * 1rem);
  }
  .h-\[calc\(54\/16\*1rem\)\] {
    height: calc(54 / 16 * 1rem);
  }
  .h-\[min\(calc\(35\.6\/16\*1rem\)\,_max\(calc\(26\.36\/16\*1rem\)\,_calc\(35\.6\/1024\*100vw\)\)\)\] {
    height: min(calc(35.6 / 16 * 1rem), max(calc(26.36 / 16 * 1rem), calc(35.6 / 1024 * 100vw)));
  }
  .h-\[min\(calc\(80\/16\*1rem\)\,max\(calc\(60\/16\*1rem\)\,calc\(80\/1024\*100vw\)\)\)\] {
    height: min(calc(80 / 16 * 1rem), max(calc(60 / 16 * 1rem), calc(80 / 1024 * 100vw)));
  }
  .h-auto {
    height: auto;
  }
  .h-full {
    height: 100%;
  }
  .h-min {
    height: -moz-min-content;
    height: min-content;
  }
  .max-h-\[296px\] {
    max-height: 296px;
  }
  .max-h-\[400px\] {
    max-height: 400px;
  }
  .max-h-screen {
    max-height: 100vh;
  }
  .min-h-12 {
    min-height: calc(var(--spacing) * 12);
  }
  .min-h-\[47px\] {
    min-height: 47px;
  }
  .min-h-\[112px\] {
    min-height: 112px;
  }
  .min-h-\[200px\] {
    min-height: 200px;
  }
  .min-h-\[210px\] {
    min-height: 210px;
  }
  .min-h-\[235px\] {
    min-height: 235px;
  }
  .min-h-\[calc\(56\/20\*1em\)\] {
    min-height: calc(56 / 20 * 1em);
  }
  .\!w-12 {
    width: calc(var(--spacing) * 12) !important;
  }
  .\!w-\[calc\(100\%\+24px\)\] {
    width: calc(100% + 24px) !important;
  }
  .\!w-\[calc\(100vw_-_48px\)\] {
    width: calc(100vw - 48px) !important;
  }
  .\!w-full {
    width: 100% !important;
  }
  .w-4 {
    width: calc(var(--spacing) * 4);
  }
  .w-5 {
    width: calc(var(--spacing) * 5);
  }
  .w-9 {
    width: calc(var(--spacing) * 9);
  }
  .w-10 {
    width: calc(var(--spacing) * 10);
  }
  .w-20 {
    width: calc(var(--spacing) * 20);
  }
  .w-\[132px\] {
    width: 132px;
  }
  .w-\[164px\] {
    width: 164px;
  }
  .w-\[calc\(35\/16\*1rem\)\] {
    width: calc(35 / 16 * 1rem);
  }
  .w-\[calc\(44\/16\*1rem\)\] {
    width: calc(44 / 16 * 1rem);
  }
  .w-\[calc\(100\%_-_20px\)\] {
    width: calc(100% - 20px);
  }
  .w-\[calc\(100vw_-_48px\)\] {
    width: calc(100vw - 48px);
  }
  .w-\[calc\(534\/625\*100\%\)\] {
    width: calc(534 / 625 * 100%);
  }
  .w-\[max\(768px\,_50\%\)\] {
    width: max(768px, 50%);
  }
  .w-\[min\(281px\,_100\%\)\] {
    width: min(281px, 100%);
  }
  .w-\[min\(600px\,_calc\(100\%_-_32px\)\)\] {
    width: min(600px, calc(100% - 32px));
  }
  .w-\[min\(1028px\,_100\%\)\] {
    width: min(1028px, 100%);
  }
  .w-\[min\(1250px\,_100\%\)\] {
    width: min(1250px, 100%);
  }
  .w-auto {
    width: auto;
  }
  .w-fit {
    width: -moz-fit-content;
    width: fit-content;
  }
  .w-full {
    width: 100%;
  }
  .max-w-0 {
    max-width: calc(var(--spacing) * 0);
  }
  .max-w-\[100vw\] {
    max-width: 100vw;
  }
  .max-w-\[253px\] {
    max-width: 253px;
  }
  .max-w-\[300px\] {
    max-width: 300px;
  }
  .max-w-\[320px\] {
    max-width: 320px;
  }
  .max-w-\[394px\] {
    max-width: 394px;
  }
  .max-w-\[400px\] {
    max-width: 400px;
  }
  .max-w-\[430px\] {
    max-width: 430px;
  }
  .max-w-\[500px\] {
    max-width: 500px;
  }
  .max-w-\[600px\] {
    max-width: 600px;
  }
  .max-w-\[700px\] {
    max-width: 700px;
  }
  .max-w-\[715px\] {
    max-width: 715px;
  }
  .max-w-\[716px\] {
    max-width: 716px;
  }
  .max-w-\[820px\] {
    max-width: 820px;
  }
  .max-w-\[900px\] {
    max-width: 900px;
  }
  .max-w-\[1000px\] {
    max-width: 1000px;
  }
  .max-w-\[1020px\] {
    max-width: 1020px;
  }
  .max-w-\[1030px\] {
    max-width: 1030px;
  }
  .max-w-\[1200px\] {
    max-width: 1200px;
  }
  .max-w-\[1238px\] {
    max-width: 1238px;
  }
  .max-w-\[calc\(293\/16\*1em\)\] {
    max-width: calc(293 / 16 * 1em);
  }
  .max-w-\[calc\(800\/16\*1rem\)\] {
    max-width: calc(800 / 16 * 1rem);
  }
  .max-w-fit {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
  .max-w-full {
    max-width: 100%;
  }
  .min-w-screen {
    min-width: 100vw;
  }
  .flex-1 {
    flex: 1;
  }
  .flex-shrink {
    flex-shrink: 1;
  }
  .shrink {
    flex-shrink: 1;
  }
  .shrink-0 {
    flex-shrink: 0;
  }
  .grow {
    flex-grow: 1;
  }
  .basis-0 {
    flex-basis: calc(var(--spacing) * 0);
  }
  .basis-\[85\%\] {
    flex-basis: 85%;
  }
  .basis-\[132px\] {
    flex-basis: 132px;
  }
  .basis-auto {
    flex-basis: auto;
  }
  .-translate-y-1\/2 {
    --tw-translate-y: calc(calc(1/2 * 100%) * -1);
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }
  .-translate-y-\[calc\(6\.55\/16\*1rem\)\] {
    --tw-translate-y: calc(calc(6.55 / 16 * 1rem) * -1);
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }
  .scale-100 {
    --tw-scale-x: 100%;
    --tw-scale-y: 100%;
    --tw-scale-z: 100%;
    scale: var(--tw-scale-x) var(--tw-scale-y);
  }
  .-scale-x-100 {
    --tw-scale-x: calc(100% * -1);
    scale: var(--tw-scale-x) var(--tw-scale-y);
  }
  .rotate-90 {
    rotate: 90deg;
  }
  .rotate-\[-10deg\] {
    rotate: -10deg;
  }
  .transform {
    transform: var(--tw-rotate-x) var(--tw-rotate-y) var(--tw-rotate-z) var(--tw-skew-x) var(--tw-skew-y);
  }
  .cursor-pointer {
    cursor: pointer;
  }
  .resize {
    resize: both;
  }
  .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-cols-\[1fr_min\(1200px\,_100\%_-_48px\)_1fr\] {
    grid-template-columns: 1fr min(1200px, 100% - 48px) 1fr;
  }
  .grid-cols-\[auto_1fr_auto_auto\] {
    grid-template-columns: auto 1fr auto auto;
  }
  .grid-cols-\[repeat\(auto-fill\,minmax\(min\(36px\,100\%\)\,1fr\)\)\] {
    grid-template-columns: repeat(auto-fill,minmax(min(36px, 100%),1fr));
  }
  .grid-cols-\[repeat\(auto-fill\,minmax\(min\(241px\,100\%\)\,1fr\)\)\] {
    grid-template-columns: repeat(auto-fill,minmax(min(241px, 100%),1fr));
  }
  .grid-cols-\[repeat\(auto-fill\,minmax\(min\(301px\,100\%\)\,1fr\)\)\] {
    grid-template-columns: repeat(auto-fill,minmax(min(301px, 100%),1fr));
  }
  .grid-cols-\[repeat\(auto-fill\,minmax\(min\(414px\,100\%\)\,1fr\)\)\] {
    grid-template-columns: repeat(auto-fill,minmax(min(414px, 100%),1fr));
  }
  .grid-cols-\[repeat\(auto-fill\,minmax\(min\(415px\,100\%\)\,1fr\)\)\] {
    grid-template-columns: repeat(auto-fill,minmax(min(415px, 100%),1fr));
  }
  .grid-cols-\[repeat\(auto-fit\,minmax\(190px\,1fr\)\)\] {
    grid-template-columns: repeat(auto-fit,minmax(190px,1fr));
  }
  .grid-cols-\[repeat\(auto-fit\,minmax\(226px\,1fr\)\)\] {
    grid-template-columns: repeat(auto-fit,minmax(226px,1fr));
  }
  .grid-cols-subgrid {
    grid-template-columns: subgrid;
  }
  .\!flex-col {
    flex-direction: column !important;
  }
  .flex-col {
    flex-direction: column;
  }
  .flex-row {
    flex-direction: row;
  }
  .flex-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-wrap {
    flex-wrap: wrap;
  }
  .\!items-center {
    align-items: center !important;
  }
  .items-baseline {
    align-items: baseline;
  }
  .items-center {
    align-items: center;
  }
  .items-start {
    align-items: flex-start;
  }
  .items-stretch {
    align-items: stretch;
  }
  .\!justify-center {
    justify-content: center !important;
  }
  .justify-around {
    justify-content: space-around;
  }
  .justify-between {
    justify-content: space-between;
  }
  .justify-center {
    justify-content: center;
  }
  .justify-items-stretch {
    justify-items: stretch;
  }
  .gap-1 {
    gap: calc(var(--spacing) * 1);
  }
  .gap-2 {
    gap: calc(var(--spacing) * 2);
  }
  .gap-3 {
    gap: calc(var(--spacing) * 3);
  }
  .gap-3\.5 {
    gap: calc(var(--spacing) * 3.5);
  }
  .gap-4 {
    gap: calc(var(--spacing) * 4);
  }
  .gap-6 {
    gap: calc(var(--spacing) * 6);
  }
  .gap-7 {
    gap: calc(var(--spacing) * 7);
  }
  .gap-8 {
    gap: calc(var(--spacing) * 8);
  }
  .gap-16 {
    gap: calc(var(--spacing) * 16);
  }
  .gap-\[6px\] {
    gap: 6px;
  }
  .gap-\[10px\] {
    gap: 10px;
  }
  .\!gap-x-2 {
    -moz-column-gap: calc(var(--spacing) * 2) !important;
         column-gap: calc(var(--spacing) * 2) !important;
  }
  .gap-x-2 {
    -moz-column-gap: calc(var(--spacing) * 2);
         column-gap: calc(var(--spacing) * 2);
  }
  .gap-x-4 {
    -moz-column-gap: calc(var(--spacing) * 4);
         column-gap: calc(var(--spacing) * 4);
  }
  .gap-x-6 {
    -moz-column-gap: calc(var(--spacing) * 6);
         column-gap: calc(var(--spacing) * 6);
  }
  .gap-x-\[10px\] {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .gap-x-\[35px\] {
    -moz-column-gap: 35px;
         column-gap: 35px;
  }
  .gap-x-\[calc\(128\/1200\*100\%\)\] {
    -moz-column-gap: calc(128 / 1200 * 100%);
         column-gap: calc(128 / 1200 * 100%);
  }
  .\!gap-y-4 {
    row-gap: calc(var(--spacing) * 4) !important;
  }
  .gap-y-2 {
    row-gap: calc(var(--spacing) * 2);
  }
  .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);
  }
  .\!self-stretch {
    align-self: stretch !important;
  }
  .self-center {
    align-self: center;
  }
  .self-end {
    align-self: flex-end;
  }
  .self-start {
    align-self: flex-start;
  }
  .self-stretch {
    align-self: stretch;
  }
  .justify-self-center {
    justify-self: center;
  }
  .justify-self-end {
    justify-self: flex-end;
  }
  .justify-self-start {
    justify-self: flex-start;
  }
  .overflow-auto {
    overflow: auto;
  }
  .overflow-hidden {
    overflow: hidden;
  }
  .scroll-smooth {
    scroll-behavior: smooth;
  }
  .\!rounded-\[calc\(28\/16\*1em\)\] {
    border-radius: calc(28 / 16 * 1em) !important;
  }
  .rounded {
    border-radius: 0.25rem;
  }
  .rounded-\[100px\] {
    border-radius: 100px;
  }
  .rounded-full {
    border-radius: calc(infinity * 1px);
  }
  .rounded-lg {
    border-radius: var(--radius-lg);
  }
  .\!border {
    border-style: var(--tw-border-style) !important;
    border-width: 1px !important;
  }
  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }
  .border-0 {
    border-style: var(--tw-border-style);
    border-width: 0px;
  }
  .border-b {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 1px;
  }
  .border-dashed {
    --tw-border-style: dashed;
    border-style: dashed;
  }
  .border-\[\#DCDCE5\] {
    border-color: #DCDCE5;
  }
  .border-\[\#d6d6d6\] {
    border-color: #d6d6d6;
  }
  .border-black\/15 {
    border-color: color-mix(in oklab, var(--color-black) 15%, transparent);
  }
  .border-clr-134074 {
    border-color: var(--color-clr-134074);
  }
  .border-clr-lblue {
    border-color: var(--color-clr-lblue);
  }
  .border-clr-secondaryLight {
    border-color: var(--color-clr-secondaryLight);
  }
  .border-white\/5 {
    border-color: color-mix(in oklab, var(--color-white) 5%, transparent);
  }
  .border-b-clr-lblue {
    border-bottom-color: var(--color-clr-lblue);
  }
  .border-b-clr-secondaryLight {
    border-bottom-color: var(--color-clr-secondaryLight);
  }
  .\!bg-\[transparent\] {
    background-color: transparent !important;
  }
  .bg-\[\#EDEBE8\] {
    background-color: #EDEBE8;
  }
  .bg-\[\#F0F0F0\] {
    background-color: #F0F0F0;
  }
  .bg-\[\#F4F4F4\] {
    background-color: #F4F4F4;
  }
  .bg-\[\#ebe9e5\] {
    background-color: #ebe9e5;
  }
  .bg-\[var\(--bg-opacity\)\] {
    background-color: var(--bg-opacity);
  }
  .bg-clr-134074 {
    background-color: var(--color-clr-134074);
  }
  .bg-clr-lblue {
    background-color: var(--color-clr-lblue);
  }
  .bg-clr-offWhite {
    background-color: var(--color-clr-offWhite);
  }
  .bg-clr-secondaryLight {
    background-color: var(--color-clr-secondaryLight);
  }
  .bg-clr-secondaryLight-1 {
    background-color: var(--color-clr-secondaryLight-1);
  }
  .bg-gray-100 {
    background-color: var(--color-gray-100);
  }
  .bg-white {
    background-color: var(--color-white);
  }
  .fill-current {
    fill: currentColor;
  }
  .object-contain {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .object-cover {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .object-bottom {
    -o-object-position: bottom;
       object-position: bottom;
  }
  .object-center {
    -o-object-position: center;
       object-position: center;
  }
  .\!p-0 {
    padding: calc(var(--spacing) * 0) !important;
  }
  .\!p-\[2px\] {
    padding: 2px !important;
  }
  .p-2 {
    padding: calc(var(--spacing) * 2);
  }
  .p-4 {
    padding: calc(var(--spacing) * 4);
  }
  .p-6 {
    padding: calc(var(--spacing) * 6);
  }
  .p-\[10px\] {
    padding: 10px;
  }
  .p-\[calc\(10\/16\*1rem\)\] {
    padding: calc(10 / 16 * 1rem);
  }
  .\!px-6 {
    padding-inline: calc(var(--spacing) * 6) !important;
  }
  .px-2 {
    padding-inline: calc(var(--spacing) * 2);
  }
  .px-4 {
    padding-inline: calc(var(--spacing) * 4);
  }
  .px-6 {
    padding-inline: calc(var(--spacing) * 6);
  }
  .px-8 {
    padding-inline: calc(var(--spacing) * 8);
  }
  .\!py-3 {
    padding-block: calc(var(--spacing) * 3) !important;
  }
  .py-0\.5 {
    padding-block: calc(var(--spacing) * 0.5);
  }
  .py-2 {
    padding-block: calc(var(--spacing) * 2);
  }
  .py-3 {
    padding-block: calc(var(--spacing) * 3);
  }
  .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-8 {
    padding-block: calc(var(--spacing) * 8);
  }
  .py-12 {
    padding-block: calc(var(--spacing) * 12);
  }
  .pt-4 {
    padding-top: calc(var(--spacing) * 4);
  }
  .pt-6 {
    padding-top: calc(var(--spacing) * 6);
  }
  .pt-8 {
    padding-top: calc(var(--spacing) * 8);
  }
  .pr-10 {
    padding-right: calc(var(--spacing) * 10);
  }
  .pb-6 {
    padding-bottom: calc(var(--spacing) * 6);
  }
  .pb-8 {
    padding-bottom: calc(var(--spacing) * 8);
  }
  .pb-10 {
    padding-bottom: calc(var(--spacing) * 10);
  }
  .text-center {
    text-align: center;
  }
  .text-left {
    text-align: left;
  }
  .font-averta {
    font-family: var(--font-averta);
  }
  .\!text-base {
    font-size: var(--text-base) !important;
    line-height: var(--tw-leading, var(--text-base--line-height)) !important;
  }
  .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-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-\[128px\] {
    font-size: 128px;
  }
  .text-\[calc\(6\/10\*1em\)\] {
    font-size: calc(6 / 10 * 1em);
  }
  .text-\[calc\(10\/14\*1em\)\] {
    font-size: calc(10 / 14 * 1em);
  }
  .text-\[calc\(10\/16\*1rem\)\] {
    font-size: calc(10 / 16 * 1rem);
  }
  .text-\[calc\(14\/16\*1rem\)\] {
    font-size: calc(14 / 16 * 1rem);
  }
  .text-\[calc\(15\/20\*1em\)\] {
    font-size: calc(15 / 20 * 1em);
  }
  .text-\[calc\(28\/16\*1rem\)\] {
    font-size: calc(28 / 16 * 1rem);
  }
  .text-\[calc\(30\/16\*1rem\)\] {
    font-size: calc(30 / 16 * 1rem);
  }
  .text-\[calc\(53\/16\*1rem\)\] {
    font-size: calc(53 / 16 * 1rem);
  }
  .text-thirty {
    font-size: var(--text-thirty);
  }
  .leading-6 {
    --tw-leading: calc(var(--spacing) * 6);
    line-height: calc(var(--spacing) * 6);
  }
  .leading-\[24px\] {
    --tw-leading: 24px;
    line-height: 24px;
  }
  .leading-\[48px\] {
    --tw-leading: 48px;
    line-height: 48px;
  }
  .leading-\[192px\] {
    --tw-leading: 192px;
    line-height: 192px;
  }
  .leading-\[calc\(15\/12\*1em\)\] {
    --tw-leading: calc(15 / 12 * 1em);
    line-height: calc(15 / 12 * 1em);
  }
  .leading-\[calc\(18\/12\*1em\)\] {
    --tw-leading: calc(18 / 12 * 1em);
    line-height: calc(18 / 12 * 1em);
  }
  .leading-\[calc\(21\/14\*1em\)\] {
    --tw-leading: calc(21 / 14 * 1em);
    line-height: calc(21 / 14 * 1em);
  }
  .leading-\[calc\(24\/16\*1em\)\] {
    --tw-leading: calc(24 / 16 * 1em);
    line-height: calc(24 / 16 * 1em);
  }
  .leading-\[calc\(25\.2\/18\*1em\)\] {
    --tw-leading: calc(25.2 / 18 * 1em);
    line-height: calc(25.2 / 18 * 1em);
  }
  .leading-\[calc\(28\/12\*1em\)\] {
    --tw-leading: calc(28 / 12 * 1em);
    line-height: calc(28 / 12 * 1em);
  }
  .leading-\[calc\(28\/20\*1em\)\] {
    --tw-leading: calc(28 / 20 * 1em);
    line-height: calc(28 / 20 * 1em);
  }
  .leading-\[calc\(33\/22\*1em\)\] {
    --tw-leading: calc(33 / 22 * 1em);
    line-height: calc(33 / 22 * 1em);
  }
  .leading-\[calc\(33\/30\*1em\)\] {
    --tw-leading: calc(33 / 30 * 1em);
    line-height: calc(33 / 30 * 1em);
  }
  .leading-\[calc\(36\/24\*1em\)\] {
    --tw-leading: calc(36 / 24 * 1em);
    line-height: calc(36 / 24 * 1em);
  }
  .leading-\[calc\(39\/30\*1em\)\] {
    --tw-leading: calc(39 / 30 * 1em);
    line-height: calc(39 / 30 * 1em);
  }
  .leading-\[calc\(42\/28\*1em\)\] {
    --tw-leading: calc(42 / 28 * 1em);
    line-height: calc(42 / 28 * 1em);
  }
  .leading-\[calc\(48\/32\*1em\)\] {
    --tw-leading: calc(48 / 32 * 1em);
    line-height: calc(48 / 32 * 1em);
  }
  .leading-\[calc\(56\/40\*1em\)\] {
    --tw-leading: calc(56 / 40 * 1em);
    line-height: calc(56 / 40 * 1em);
  }
  .leading-\[calc\(60\/40\*1em\)\] {
    --tw-leading: calc(60 / 40 * 1em);
    line-height: calc(60 / 40 * 1em);
  }
  .leading-tight {
    --tw-leading: var(--leading-tight);
    line-height: var(--leading-tight);
  }
  .\!font-bold {
    --tw-font-weight: var(--font-weight-bold) !important;
    font-weight: var(--font-weight-bold) !important;
  }
  .font-bold {
    --tw-font-weight: var(--font-weight-bold);
    font-weight: var(--font-weight-bold);
  }
  .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-semibold {
    --tw-font-weight: var(--font-weight-semibold);
    font-weight: var(--font-weight-semibold);
  }
  .\!tracking-\[calc\(-0\.32\/16\*1em\)\] {
    --tw-tracking: calc(-0.32 / 16 * 1em) !important;
    letter-spacing: calc(-0.32 / 16 * 1em) !important;
  }
  .tracking-\[\.2\/24\*1em\] {
    --tw-tracking: .2/24*1em;
    letter-spacing: .2/24*1em;
  }
  .tracking-\[calc\(-\.3\/30\*1em\)\] {
    --tw-tracking: calc(-.3 / 30 * 1em);
    letter-spacing: calc(-.3 / 30 * 1em);
  }
  .tracking-\[calc\(-0\.24\/12\*1em\)\] {
    --tw-tracking: calc(-0.24 / 12 * 1em);
    letter-spacing: calc(-0.24 / 12 * 1em);
  }
  .tracking-\[calc\(-0\.48\/32\*1em\)\] {
    --tw-tracking: calc(-0.48 / 32 * 1em);
    letter-spacing: calc(-0.48 / 32 * 1em);
  }
  .tracking-\[calc\(\.2\/16\*1em\)\] {
    --tw-tracking: calc(.2 / 16 * 1em);
    letter-spacing: calc(.2 / 16 * 1em);
  }
  .tracking-\[calc\(\.2\/20\*1em\)\] {
    --tw-tracking: calc(.2 / 20 * 1em);
    letter-spacing: calc(.2 / 20 * 1em);
  }
  .tracking-\[calc\(\.2\/24\*1em\)\] {
    --tw-tracking: calc(.2 / 24 * 1em);
    letter-spacing: calc(.2 / 24 * 1em);
  }
  .tracking-\[calc\(\.2\/40\*1em\)\] {
    --tw-tracking: calc(.2 / 40 * 1em);
    letter-spacing: calc(.2 / 40 * 1em);
  }
  .tracking-\[calc\(0\.2\/40\*1em\)\] {
    --tw-tracking: calc(0.2 / 40 * 1em);
    letter-spacing: calc(0.2 / 40 * 1em);
  }
  .tracking-\[calc\(1\.12\/28\*1em\)\] {
    --tw-tracking: calc(1.12 / 28 * 1em);
    letter-spacing: calc(1.12 / 28 * 1em);
  }
  .whitespace-nowrap {
    white-space: nowrap;
  }
  .text-\[\#757575\] {
    color: #757575;
  }
  .text-blue-500 {
    color: var(--color-blue-500);
  }
  .text-clr-134074 {
    color: var(--color-clr-134074);
  }
  .text-clr-363636 {
    color: var(--color-clr-363636);
  }
  .text-clr-767677 {
    color: var(--color-clr-767677);
  }
  .text-clr-lblue {
    color: var(--color-clr-lblue);
  }
  .text-clr-offWhite {
    color: var(--color-clr-offWhite);
  }
  .text-clr-red {
    color: var(--color-clr-red);
  }
  .text-gray-500 {
    color: var(--color-gray-500);
  }
  .text-red-500 {
    color: var(--color-red-500);
  }
  .text-red-600 {
    color: var(--color-red-600);
  }
  .text-white {
    color: var(--color-white);
  }
  .text-white\/65 {
    color: color-mix(in oklab, var(--color-white) 65%, transparent);
  }
  .capitalize {
    text-transform: capitalize;
  }
  .lowercase {
    text-transform: lowercase;
  }
  .uppercase {
    text-transform: uppercase;
  }
  .not-italic {
    font-style: normal;
  }
  .no-underline {
    text-decoration-line: none;
  }
  .underline-offset-4 {
    text-underline-offset: 4px;
  }
  .opacity-50 {
    opacity: 50%;
  }
  .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);
  }
  .\[box-shadow\:_0px_4px_20px_0px_rgba\(49\,_59\,_70\,_0\.10\)\] {
    box-shadow:  0px 4px 20px 0px rgba(49, 59, 70, 0.10);
  }
  .\[box-shadow\:_0px_10px_20px_0px_rgba\(204\,_204\,_204\,_0\.60\)\] {
    box-shadow:  0px 10px 20px 0px rgba(204, 204, 204, 0.60);
  }
  .blur {
    --tw-blur: blur(8px);
    filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
  }
  .invert {
    --tw-invert: invert(100%);
    filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
  }
  .filter {
    filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
  }
  .\!transition-colors {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to !important;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)) !important;
    transition-duration: var(--tw-duration, var(--default-transition-duration)) !important;
  }
  .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;
    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-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-300 {
    --tw-duration: 300ms;
    transition-duration: 300ms;
  }
  .duration-500 {
    --tw-duration: 500ms;
    transition-duration: 500ms;
  }
  .ease-in-out {
    --tw-ease: var(--ease-in-out);
    transition-timing-function: var(--ease-in-out);
  }
  .backface-hidden {
    backface-visibility: hidden;
  }
  .group-even\:order-1 {
    &:is(:where(.group):nth-child(even) *) {
      order: 1;
    }
  }
  .group-even\:order-2 {
    &:is(:where(.group):nth-child(even) *) {
      order: 2;
    }
  }
  .group-even\:justify-self-start {
    &:is(:where(.group):nth-child(even) *) {
      justify-self: flex-start;
    }
  }
  .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-110 {
    &:is(:where(.group):hover *) {
      @media (hover: hover) {
        --tw-scale-x: 110%;
        --tw-scale-y: 110%;
        --tw-scale-z: 110%;
        scale: var(--tw-scale-x) var(--tw-scale-y);
      }
    }
  }
  .group-hover\:text-white {
    &:is(:where(.group):hover *) {
      @media (hover: hover) {
        color: var(--color-white);
      }
    }
  }
  .group-hover\:underline {
    &:is(:where(.group):hover *) {
      @media (hover: hover) {
        text-decoration-line: underline;
      }
    }
  }
  .group-hover\/article\:scale-\[1\.15\] {
    &:is(:where(.group\/article):hover *) {
      @media (hover: hover) {
        scale: 1.15;
      }
    }
  }
  .group-hover\/article\:underline {
    &:is(:where(.group\/article):hover *) {
      @media (hover: hover) {
        text-decoration-line: underline;
      }
    }
  }
  .group-hover\/link\:translate-x-2 {
    &:is(:where(.group\/link):hover *) {
      @media (hover: hover) {
        --tw-translate-x: calc(var(--spacing) * 2);
        translate: var(--tw-translate-x) var(--tw-translate-y);
      }
    }
  }
  .group-\[\.swiper\]\/swiper\:m-\[12px\] {
    &:is(:where(.group\/swiper):is(.swiper) *) {
      margin: 12px;
    }
  }
  .group-\[\&\[aria-expanded\=\'true\'\]\]\:-scale-x-100 {
    &:is(:where(.group)[aria-expanded='true'] *) {
      --tw-scale-x: calc(100% * -1);
      scale: var(--tw-scale-x) var(--tw-scale-y);
    }
  }
  .peer-open\:-scale-y-100 {
    &:is(:where(.peer):is([open], :popover-open, :open) ~ *) {
      --tw-scale-y: calc(100% * -1);
      scale: var(--tw-scale-x) var(--tw-scale-y);
    }
  }
  .before\:absolute {
    &::before {
      content: var(--tw-content);
      position: absolute;
    }
  }
  .before\:top-0 {
    &::before {
      content: var(--tw-content);
      top: calc(var(--spacing) * 0);
    }
  }
  .before\:top-full {
    &::before {
      content: var(--tw-content);
      top: 100%;
    }
  }
  .before\:bottom-\[-2px\] {
    &::before {
      content: var(--tw-content);
      bottom: -2px;
    }
  }
  .before\:left-0 {
    &::before {
      content: var(--tw-content);
      left: calc(var(--spacing) * 0);
    }
  }
  .before\:z-10 {
    &::before {
      content: var(--tw-content);
      z-index: 10;
    }
  }
  .before\:block {
    &::before {
      content: var(--tw-content);
      display: block;
    }
  }
  .before\:h-0\.5 {
    &::before {
      content: var(--tw-content);
      height: calc(var(--spacing) * 0.5);
    }
  }
  .before\:h-10 {
    &::before {
      content: var(--tw-content);
      height: calc(var(--spacing) * 10);
    }
  }
  .before\:h-full {
    &::before {
      content: var(--tw-content);
      height: 100%;
    }
  }
  .before\:w-0 {
    &::before {
      content: var(--tw-content);
      width: calc(var(--spacing) * 0);
    }
  }
  .before\:w-10 {
    &::before {
      content: var(--tw-content);
      width: calc(var(--spacing) * 10);
    }
  }
  .before\:w-\[1px\] {
    &::before {
      content: var(--tw-content);
      width: 1px;
    }
  }
  .before\:-translate-x-1\/2 {
    &::before {
      content: var(--tw-content);
      --tw-translate-x: calc(calc(1/2 * 100%) * -1);
      translate: var(--tw-translate-x) var(--tw-translate-y);
    }
  }
  .before\:-translate-y-1\/2 {
    &::before {
      content: var(--tw-content);
      --tw-translate-y: calc(calc(1/2 * 100%) * -1);
      translate: var(--tw-translate-x) var(--tw-translate-y);
    }
  }
  .before\:rounded-full {
    &::before {
      content: var(--tw-content);
      border-radius: calc(infinity * 1px);
    }
  }
  .before\:bg-clr-lblue {
    &::before {
      content: var(--tw-content);
      background-color: var(--color-clr-lblue);
    }
  }
  .before\:bg-current {
    &::before {
      content: var(--tw-content);
      background-color: currentColor;
    }
  }
  .before\:font-icomoon {
    &::before {
      content: var(--tw-content);
      font-family: var(--font-icomoon);
    }
  }
  .before\:transition-all {
    &::before {
      content: var(--tw-content);
      transition-property: all;
      transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
      transition-duration: var(--tw-duration, var(--default-transition-duration));
    }
  }
  .before\:duration-300 {
    &::before {
      content: var(--tw-content);
      --tw-duration: 300ms;
      transition-duration: 300ms;
    }
  }
  .before\:content-\[\'\\e90a\'\] {
    &::before {
      content: var(--tw-content);
      --tw-content: '\e90a';
      content: var(--tw-content);
    }
  }
  .before\:content-\[\'\\e90b\'\] {
    &::before {
      content: var(--tw-content);
      --tw-content: '\e90b';
      content: var(--tw-content);
    }
  }
  .before\:content-\[\'\\e900\'\] {
    &::before {
      content: var(--tw-content);
      --tw-content: '\e900';
      content: var(--tw-content);
    }
  }
  .after\:hidden {
    &::after {
      content: var(--tw-content);
      display: none;
    }
  }
  .first\:border-r {
    &:first-child {
      border-right-style: var(--tw-border-style);
      border-right-width: 1px;
    }
  }
  .first\:border-clr-secondaryLight {
    &:first-child {
      border-color: var(--color-clr-secondaryLight);
    }
  }
  .hover\:scale-110 {
    &:hover {
      @media (hover: hover) {
        --tw-scale-x: 110%;
        --tw-scale-y: 110%;
        --tw-scale-z: 110%;
        scale: var(--tw-scale-x) var(--tw-scale-y);
      }
    }
  }
  .hover\:cursor-pointer {
    &:hover {
      @media (hover: hover) {
        cursor: pointer;
      }
    }
  }
  .hover\:border-\[\#DCDCE5\] {
    &:hover {
      @media (hover: hover) {
        border-color: #DCDCE5;
      }
    }
  }
  .hover\:border-clr-lblue {
    &:hover {
      @media (hover: hover) {
        border-color: var(--color-clr-lblue);
      }
    }
  }
  .hover\:bg-\[\#EDEBE8\] {
    &:hover {
      @media (hover: hover) {
        background-color: #EDEBE8;
      }
    }
  }
  .hover\:bg-clr-134074 {
    &:hover {
      @media (hover: hover) {
        background-color: var(--color-clr-134074);
      }
    }
  }
  .hover\:bg-clr-lblue {
    &:hover {
      @media (hover: hover) {
        background-color: var(--color-clr-lblue);
      }
    }
  }
  .hover\:bg-clr-secondaryLight {
    &:hover {
      @media (hover: hover) {
        background-color: var(--color-clr-secondaryLight);
      }
    }
  }
  .hover\:text-clr-lblue {
    &:hover {
      @media (hover: hover) {
        color: var(--color-clr-lblue);
      }
    }
  }
  .hover\:text-white {
    &:hover {
      @media (hover: hover) {
        color: var(--color-white);
      }
    }
  }
  .hover\:underline {
    &:hover {
      @media (hover: hover) {
        text-decoration-line: underline;
      }
    }
  }
  .hover\:before\:w-full {
    &:hover {
      @media (hover: hover) {
        &::before {
          content: var(--tw-content);
          width: 100%;
        }
      }
    }
  }
  .focus\:outline-2 {
    &:focus {
      outline-style: var(--tw-outline-style);
      outline-width: 2px;
    }
  }
  .focus\:outline-none {
    &:focus {
      --tw-outline-style: none;
      outline-style: none;
    }
  }
  .focus-visible\:outline-none {
    &:focus-visible {
      --tw-outline-style: none;
      outline-style: none;
    }
  }
  .has-\[\:not\(\.swiper-pagination-lock\)\]\:\!pb-6 {
    &:has(*:is(:not(.swiper-pagination-lock))) {
      padding-bottom: calc(var(--spacing) * 6) !important;
    }
  }
  .has-\[a\:hover\]\:\[box-shadow\:_0px_4px_20px_0px_rgba\(49\,_59\,_70\,_0\.2\)\] {
    &:has(*:is(a:hover)) {
      box-shadow:  0px 4px 20px 0px rgba(49, 59, 70, 0.2);
    }
  }
  .aria-hidden\:hidden {
    &[aria-hidden="true"] {
      display: none;
    }
  }
  .aria-pressed\:bg-clr-134074 {
    &[aria-pressed="true"] {
      background-color: var(--color-clr-134074);
    }
  }
  .aria-pressed\:text-white {
    &[aria-pressed="true"] {
      color: var(--color-white);
    }
  }
  .aria-selected\:bg-clr-134074 {
    &[aria-selected="true"] {
      background-color: var(--color-clr-134074);
    }
  }
  .aria-selected\:text-white {
    &[aria-selected="true"] {
      color: var(--color-white);
    }
  }
  .max-sm\:last\:pb-0 {
    @media (width < 40rem) {
      &:last-child {
        padding-bottom: calc(var(--spacing) * 0);
      }
    }
  }
  .sm\:relative {
    @media (width >= 40rem) {
      position: relative;
    }
  }
  .sm\:col-span-1 {
    @media (width >= 40rem) {
      grid-column: span 1 / span 1;
    }
  }
  .sm\:col-span-2 {
    @media (width >= 40rem) {
      grid-column: span 2 / span 2;
    }
  }
  .sm\:col-span-6 {
    @media (width >= 40rem) {
      grid-column: span 6 / span 6;
    }
  }
  .sm\:col-start-2 {
    @media (width >= 40rem) {
      grid-column-start: 2;
    }
  }
  .sm\:row-start-1 {
    @media (width >= 40rem) {
      grid-row-start: 1;
    }
  }
  .sm\:mt-12 {
    @media (width >= 40rem) {
      margin-top: calc(var(--spacing) * 12);
    }
  }
  .sm\:ml-0 {
    @media (width >= 40rem) {
      margin-left: calc(var(--spacing) * 0);
    }
  }
  .sm\:\!contents {
    @media (width >= 40rem) {
      display: contents !important;
    }
  }
  .sm\:\!hidden {
    @media (width >= 40rem) {
      display: none !important;
    }
  }
  .sm\:block {
    @media (width >= 40rem) {
      display: block;
    }
  }
  .sm\:flex {
    @media (width >= 40rem) {
      display: flex;
    }
  }
  .sm\:grid {
    @media (width >= 40rem) {
      display: grid;
    }
  }
  .sm\:hidden {
    @media (width >= 40rem) {
      display: none;
    }
  }
  .sm\:aspect-\[307\/300\] {
    @media (width >= 40rem) {
      aspect-ratio: 307/300;
    }
  }
  .sm\:aspect-\[384\/216\] {
    @media (width >= 40rem) {
      aspect-ratio: 384/216;
    }
  }
  .sm\:aspect-\[384\/288\] {
    @media (width >= 40rem) {
      aspect-ratio: 384/288;
    }
  }
  .sm\:aspect-\[400\/300\] {
    @media (width >= 40rem) {
      aspect-ratio: 400/300;
    }
  }
  .sm\:aspect-auto {
    @media (width >= 40rem) {
      aspect-ratio: auto;
    }
  }
  .sm\:h-full {
    @media (width >= 40rem) {
      height: 100%;
    }
  }
  .sm\:\!w-\[calc\(712_\/_1024\*100vw\)\] {
    @media (width >= 40rem) {
      width: calc(712 / 1024 * 100vw) !important;
    }
  }
  .sm\:w-\[calc\(485\/514\*100\%\)\] {
    @media (width >= 40rem) {
      width: calc(485 / 514 * 100%);
    }
  }
  .sm\:w-full {
    @media (width >= 40rem) {
      width: 100%;
    }
  }
  .sm\:max-w-\[292px\] {
    @media (width >= 40rem) {
      max-width: 292px;
    }
  }
  .sm\:max-w-\[510px\] {
    @media (width >= 40rem) {
      max-width: 510px;
    }
  }
  .sm\:min-w-\[50\%\] {
    @media (width >= 40rem) {
      min-width: 50%;
    }
  }
  .sm\:basis-\[307px\] {
    @media (width >= 40rem) {
      flex-basis: 307px;
    }
  }
  .sm\:basis-\[329px\] {
    @media (width >= 40rem) {
      flex-basis: 329px;
    }
  }
  .sm\:-translate-x-0 {
    @media (width >= 40rem) {
      --tw-translate-x: calc(var(--spacing) * -0);
      translate: var(--tw-translate-x) var(--tw-translate-y);
    }
  }
  .sm\:grid-cols-2 {
    @media (width >= 40rem) {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  .sm\:grid-cols-\[repeat\(6\,_1fr\)\] {
    @media (width >= 40rem) {
      grid-template-columns: repeat(6, 1fr);
    }
  }
  .sm\:grid-cols-subgrid {
    @media (width >= 40rem) {
      grid-template-columns: subgrid;
    }
  }
  .sm\:flex-row {
    @media (width >= 40rem) {
      flex-direction: row;
    }
  }
  .sm\:flex-row-reverse {
    @media (width >= 40rem) {
      flex-direction: row-reverse;
    }
  }
  .sm\:items-center {
    @media (width >= 40rem) {
      align-items: center;
    }
  }
  .sm\:items-end {
    @media (width >= 40rem) {
      align-items: flex-end;
    }
  }
  .sm\:\!justify-start {
    @media (width >= 40rem) {
      justify-content: flex-start !important;
    }
  }
  .sm\:justify-between {
    @media (width >= 40rem) {
      justify-content: space-between;
    }
  }
  .sm\:justify-center {
    @media (width >= 40rem) {
      justify-content: center;
    }
  }
  .sm\:justify-end {
    @media (width >= 40rem) {
      justify-content: flex-end;
    }
  }
  .sm\:gap-0 {
    @media (width >= 40rem) {
      gap: calc(var(--spacing) * 0);
    }
  }
  .sm\:gap-12 {
    @media (width >= 40rem) {
      gap: calc(var(--spacing) * 12);
    }
  }
  .sm\:self-center {
    @media (width >= 40rem) {
      align-self: center;
    }
  }
  .sm\:justify-self-end {
    @media (width >= 40rem) {
      justify-self: flex-end;
    }
  }
  .sm\:p-6 {
    @media (width >= 40rem) {
      padding: calc(var(--spacing) * 6);
    }
  }
  .sm\:p-12 {
    @media (width >= 40rem) {
      padding: calc(var(--spacing) * 12);
    }
  }
  .sm\:py-20 {
    @media (width >= 40rem) {
      padding-block: calc(var(--spacing) * 20);
    }
  }
  .sm\:py-\[37px\] {
    @media (width >= 40rem) {
      padding-block: 37px;
    }
  }
  .sm\:py-\[171px\] {
    @media (width >= 40rem) {
      padding-block: 171px;
    }
  }
  .sm\:pr-12 {
    @media (width >= 40rem) {
      padding-right: calc(var(--spacing) * 12);
    }
  }
  .sm\:text-right {
    @media (width >= 40rem) {
      text-align: right;
    }
  }
  .sm\:text-2xl {
    @media (width >= 40rem) {
      font-size: var(--text-2xl);
      line-height: var(--tw-leading, var(--text-2xl--line-height));
    }
  }
  .sm\:before\:top-1\/2 {
    @media (width >= 40rem) {
      &::before {
        content: var(--tw-content);
        top: calc(1/2 * 100%);
      }
    }
  }
  .sm\:before\:left-1\/2 {
    @media (width >= 40rem) {
      &::before {
        content: var(--tw-content);
        left: calc(1/2 * 100%);
      }
    }
  }
  .sm\:before\:left-full {
    @media (width >= 40rem) {
      &::before {
        content: var(--tw-content);
        left: 100%;
      }
    }
  }
  .sm\:group-even\:before\:left-0 {
    @media (width >= 40rem) {
      &:is(:where(.group):nth-child(even) *) {
        &::before {
          content: var(--tw-content);
          left: calc(var(--spacing) * 0);
        }
      }
    }
  }
  .lg\:not-sr-only {
    @media (width >= 64rem) {
      position: static;
      width: auto;
      height: auto;
      padding: 0;
      margin: 0;
      overflow: visible;
      clip: auto;
      white-space: normal;
    }
  }
  .lg\:col-span-1 {
    @media (width >= 64rem) {
      grid-column: span 1 / span 1;
    }
  }
  .lg\:\!mx-\[5\%\] {
    @media (width >= 64rem) {
      margin-inline: 5% !important;
    }
  }
  .lg\:my-10 {
    @media (width >= 64rem) {
      margin-block: calc(var(--spacing) * 10);
    }
  }
  .lg\:my-12 {
    @media (width >= 64rem) {
      margin-block: calc(var(--spacing) * 12);
    }
  }
  .lg\:my-20 {
    @media (width >= 64rem) {
      margin-block: calc(var(--spacing) * 20);
    }
  }
  .lg\:my-32 {
    @media (width >= 64rem) {
      margin-block: calc(var(--spacing) * 32);
    }
  }
  .lg\:mt-8 {
    @media (width >= 64rem) {
      margin-top: calc(var(--spacing) * 8);
    }
  }
  .lg\:mt-20 {
    @media (width >= 64rem) {
      margin-top: calc(var(--spacing) * 20);
    }
  }
  .lg\:\!mr-6 {
    @media (width >= 64rem) {
      margin-right: calc(var(--spacing) * 6) !important;
    }
  }
  .lg\:mr-3 {
    @media (width >= 64rem) {
      margin-right: calc(var(--spacing) * 3);
    }
  }
  .lg\:mb-12 {
    @media (width >= 64rem) {
      margin-bottom: calc(var(--spacing) * 12);
    }
  }
  .lg\:mb-20 {
    @media (width >= 64rem) {
      margin-bottom: calc(var(--spacing) * 20);
    }
  }
  .lg\:mb-\[calc\(42\/16\*1rem\)\] {
    @media (width >= 64rem) {
      margin-bottom: calc(42 / 16 * 1rem);
    }
  }
  .lg\:\!grid {
    @media (width >= 64rem) {
      display: grid !important;
    }
  }
  .lg\:flex {
    @media (width >= 64rem) {
      display: flex;
    }
  }
  .lg\:grid {
    @media (width >= 64rem) {
      display: grid;
    }
  }
  .lg\:hidden {
    @media (width >= 64rem) {
      display: none;
    }
  }
  .lg\:inline-block {
    @media (width >= 64rem) {
      display: inline-block;
    }
  }
  .lg\:aspect-\[820\/460\] {
    @media (width >= 64rem) {
      aspect-ratio: 820/460;
    }
  }
  .lg\:aspect-\[1000\/561\] {
    @media (width >= 64rem) {
      aspect-ratio: 1000/561;
    }
  }
  .lg\:h-\[248px\] {
    @media (width >= 64rem) {
      height: 248px;
    }
  }
  .lg\:h-\[max\(400px\,_calc\(400\/1440\*100vw\)\)\] {
    @media (width >= 64rem) {
      height: max(400px, calc(400 / 1440 * 100vw));
    }
  }
  .lg\:min-h-\[213px\] {
    @media (width >= 64rem) {
      min-height: 213px;
    }
  }
  .lg\:\!w-auto {
    @media (width >= 64rem) {
      width: auto !important;
    }
  }
  .lg\:w-\[248px\] {
    @media (width >= 64rem) {
      width: 248px;
    }
  }
  .lg\:w-\[min\(840px\,_calc\(840\/1440\*100vw\)\)\] {
    @media (width >= 64rem) {
      width: min(840px, calc(840 / 1440 * 100vw));
    }
  }
  .lg\:\!max-w-\[calc\(260\/420\*100\%\)\] {
    @media (width >= 64rem) {
      max-width: calc(260 / 420 * 100%) !important;
    }
  }
  .lg\:\!max-w-\[calc\(300\/16\*1rem\)\] {
    @media (width >= 64rem) {
      max-width: calc(300 / 16 * 1rem) !important;
    }
  }
  .lg\:max-w-\[318px\] {
    @media (width >= 64rem) {
      max-width: 318px;
    }
  }
  .lg\:max-w-\[384px\] {
    @media (width >= 64rem) {
      max-width: 384px;
    }
  }
  .lg\:max-w-none {
    @media (width >= 64rem) {
      max-width: none;
    }
  }
  .lg\:min-w-0 {
    @media (width >= 64rem) {
      min-width: calc(var(--spacing) * 0);
    }
  }
  .lg\:grid-cols-\[1fr_min\(1240px\,_100\%_-_80px\)_1fr\] {
    @media (width >= 64rem) {
      grid-template-columns: 1fr min(1240px, 100% - 80px) 1fr;
    }
  }
  .lg\:grid-cols-\[auto_1fr_auto\] {
    @media (width >= 64rem) {
      grid-template-columns: auto 1fr auto;
    }
  }
  .lg\:grid-cols-\[calc\(510\/1250\*100\%\)_1fr\] {
    @media (width >= 64rem) {
      grid-template-columns: calc(510 / 1250 * 100%) 1fr;
    }
  }
  .lg\:grid-cols-\[repeat\(auto-fill\,minmax\(min\(311px\,100\%\)\,1fr\)\)\] {
    @media (width >= 64rem) {
      grid-template-columns: repeat(auto-fill,minmax(min(311px, 100%),1fr));
    }
  }
  .lg\:\!flex-row {
    @media (width >= 64rem) {
      flex-direction: row !important;
    }
  }
  .lg\:flex-row {
    @media (width >= 64rem) {
      flex-direction: row;
    }
  }
  .lg\:items-start {
    @media (width >= 64rem) {
      align-items: flex-start;
    }
  }
  .lg\:justify-center {
    @media (width >= 64rem) {
      justify-content: center;
    }
  }
  .lg\:justify-normal {
    @media (width >= 64rem) {
      justify-content: normal;
    }
  }
  .lg\:gap-6 {
    @media (width >= 64rem) {
      gap: calc(var(--spacing) * 6);
    }
  }
  .lg\:gap-8 {
    @media (width >= 64rem) {
      gap: calc(var(--spacing) * 8);
    }
  }
  .lg\:gap-x-6 {
    @media (width >= 64rem) {
      -moz-column-gap: calc(var(--spacing) * 6);
           column-gap: calc(var(--spacing) * 6);
    }
  }
  .lg\:gap-y-12 {
    @media (width >= 64rem) {
      row-gap: calc(var(--spacing) * 12);
    }
  }
  .lg\:\!self-center {
    @media (width >= 64rem) {
      align-self: center !important;
    }
  }
  .lg\:justify-self-auto {
    @media (width >= 64rem) {
      justify-self: auto;
    }
  }
  .lg\:justify-self-start {
    @media (width >= 64rem) {
      justify-self: flex-start;
    }
  }
  .lg\:rounded-full {
    @media (width >= 64rem) {
      border-radius: calc(infinity * 1px);
    }
  }
  .lg\:border {
    @media (width >= 64rem) {
      border-style: var(--tw-border-style);
      border-width: 1px;
    }
  }
  .lg\:border-clr-secondaryLight {
    @media (width >= 64rem) {
      border-color: var(--color-clr-secondaryLight);
    }
  }
  .lg\:bg-transparent {
    @media (width >= 64rem) {
      background-color: transparent;
    }
  }
  .lg\:\!p-1 {
    @media (width >= 64rem) {
      padding: calc(var(--spacing) * 1) !important;
    }
  }
  .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-\[61px\] {
    @media (width >= 64rem) {
      padding-inline: 61px;
    }
  }
  .lg\:py-0 {
    @media (width >= 64rem) {
      padding-block: calc(var(--spacing) * 0);
    }
  }
  .lg\:py-2 {
    @media (width >= 64rem) {
      padding-block: calc(var(--spacing) * 2);
    }
  }
  .lg\:py-8 {
    @media (width >= 64rem) {
      padding-block: calc(var(--spacing) * 8);
    }
  }
  .lg\:py-12 {
    @media (width >= 64rem) {
      padding-block: calc(var(--spacing) * 12);
    }
  }
  .lg\:py-20 {
    @media (width >= 64rem) {
      padding-block: calc(var(--spacing) * 20);
    }
  }
  .lg\:py-\[100px\] {
    @media (width >= 64rem) {
      padding-block: 100px;
    }
  }
  .lg\:pt-8 {
    @media (width >= 64rem) {
      padding-top: calc(var(--spacing) * 8);
    }
  }
  .lg\:pt-12 {
    @media (width >= 64rem) {
      padding-top: calc(var(--spacing) * 12);
    }
  }
  .lg\:pt-14 {
    @media (width >= 64rem) {
      padding-top: calc(var(--spacing) * 14);
    }
  }
  .lg\:pt-20 {
    @media (width >= 64rem) {
      padding-top: calc(var(--spacing) * 20);
    }
  }
  .lg\:pb-8 {
    @media (width >= 64rem) {
      padding-bottom: calc(var(--spacing) * 8);
    }
  }
  .lg\:pb-12 {
    @media (width >= 64rem) {
      padding-bottom: calc(var(--spacing) * 12);
    }
  }
  .lg\:text-center {
    @media (width >= 64rem) {
      text-align: center;
    }
  }
  .lg\:text-left {
    @media (width >= 64rem) {
      text-align: left;
    }
  }
  .lg\:text-right {
    @media (width >= 64rem) {
      text-align: right;
    }
  }
  .lg\:text-2xl {
    @media (width >= 64rem) {
      font-size: var(--text-2xl);
      line-height: var(--tw-leading, var(--text-2xl--line-height));
    }
  }
  .lg\:text-base {
    @media (width >= 64rem) {
      font-size: var(--text-base);
      line-height: var(--tw-leading, var(--text-base--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-\[calc\(22\/16\*1rem\)\] {
    @media (width >= 64rem) {
      font-size: calc(22 / 16 * 1rem);
    }
  }
  .lg\:text-\[calc\(32\/16\*1rem\)\] {
    @media (width >= 64rem) {
      font-size: calc(32 / 16 * 1rem);
    }
  }
  .lg\:text-\[calc\(40\/16\*1rem\)\] {
    @media (width >= 64rem) {
      font-size: calc(40 / 16 * 1rem);
    }
  }
  .lg\:text-\[calc\(44\/16\*1rem\)\] {
    @media (width >= 64rem) {
      font-size: calc(44 / 16 * 1rem);
    }
  }
  .lg\:text-\[calc\(56\/16\*1rem\)\] {
    @media (width >= 64rem) {
      font-size: calc(56 / 16 * 1rem);
    }
  }
  .lg\:text-\[calc\(56_\/_16\*1rem\)\] {
    @media (width >= 64rem) {
      font-size: calc(56 / 16 * 1rem);
    }
  }
  .lg\:text-clr-lblue {
    @media (width >= 64rem) {
      color: var(--color-clr-lblue);
    }
  }
  .lg\:text-inherit {
    @media (width >= 64rem) {
      color: inherit;
    }
  }
  .xl\:\!w-\[712px\] {
    @media (width >= 80rem) {
      width: 712px !important;
    }
  }
  .portrait\:relative {
    @media (orientation: portrait) {
      position: relative;
    }
  }
  .portrait\:h-auto {
    @media (orientation: portrait) {
      height: auto;
    }
  }
  .portrait\:w-full {
    @media (orientation: portrait) {
      width: 100%;
    }
  }
  .portrait\:flex-col {
    @media (orientation: portrait) {
      flex-direction: column;
    }
  }
  .landscape\:\!bottom-7 {
    @media (orientation: landscape) {
      bottom: calc(var(--spacing) * 7) !important;
    }
  }
  .landscape\:bottom-7 {
    @media (orientation: landscape) {
      bottom: calc(var(--spacing) * 7);
    }
  }
  .landscape\:\!h-\[min\(720px\,_calc\(540\/1440\*100vw\)\)\] {
    @media (orientation: landscape) {
      height: min(720px, calc(540 / 1440 * 100vw)) !important;
    }
  }
  .forced-colors\:border {
    @media (forced-colors: active) {
      border-style: var(--tw-border-style);
      border-width: 1px;
    }
  }
  .forced-colors\:border-\[battontext\] {
    @media (forced-colors: active) {
      border-color: battontext;
    }
  }
  .forced-colors\:border-\[buttontext\] {
    @media (forced-colors: active) {
      border-color: buttontext;
    }
  }
  .forced-colors\:hover\:bg-\[buttontext\] {
    @media (forced-colors: active) {
      &:hover {
        @media (hover: hover) {
          background-color: buttontext;
        }
      }
    }
  }
  .forced-colors\:hover\:text-\[background\] {
    @media (forced-colors: active) {
      &:hover {
        @media (hover: hover) {
          color: background;
        }
      }
    }
  }
  .forced-colors\:hover\:underline {
    @media (forced-colors: active) {
      &:hover {
        @media (hover: hover) {
          text-decoration-line: underline;
        }
      }
    }
  }
  .forced-colors\:aria-pressed\:bg-\[buttontext\] {
    @media (forced-colors: active) {
      &[aria-pressed="true"] {
        background-color: buttontext;
      }
    }
  }
  .forced-colors\:aria-pressed\:text-\[buttonface\] {
    @media (forced-colors: active) {
      &[aria-pressed="true"] {
        color: buttonface;
      }
    }
  }
  .prose-headings\:text-3xl {
    & :is(:where(h1, h2, h3, h4, h5, h6, th):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
      font-size: var(--text-3xl);
      line-height: var(--tw-leading, var(--text-3xl--line-height));
    }
  }
  .prose-headings\:leading-9 {
    & :is(:where(h1, h2, h3, h4, h5, h6, th):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
      --tw-leading: calc(var(--spacing) * 9);
      line-height: calc(var(--spacing) * 9);
    }
  }
  .prose-headings\:font-light {
    & :is(:where(h1, h2, h3, h4, h5, h6, th):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
      --tw-font-weight: var(--font-weight-light);
      font-weight: var(--font-weight-light);
    }
  }
  .lg\:prose-headings\:text-4xl {
    @media (width >= 64rem) {
      & :is(:where(h1, h2, h3, h4, h5, h6, th):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
        font-size: var(--text-4xl);
        line-height: var(--tw-leading, var(--text-4xl--line-height));
      }
    }
  }
  .prose-h2\:mb-4 {
    & :is(:where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
      margin-bottom: calc(var(--spacing) * 4);
    }
  }
  .prose-h2\:text-\[calc\(24\/16\*1rem\)\] {
    & :is(:where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
      font-size: calc(24 / 16 * 1rem);
    }
  }
  .prose-h2\:text-\[calc\(28\/16\*1rem\)\] {
    & :is(:where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
      font-size: calc(28 / 16 * 1rem);
    }
  }
  .prose-h2\:text-clr-134074 {
    & :is(:where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
      color: var(--color-clr-134074);
    }
  }
  .lg\:prose-h2\:text-\[calc\(32\/16\*1rem\)\] {
    @media (width >= 64rem) {
      & :is(:where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
        font-size: calc(32 / 16 * 1rem);
      }
    }
  }
  .lg\:prose-h2\:text-\[calc\(40\/16\*1rem\)\] {
    @media (width >= 64rem) {
      & :is(:where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
        font-size: calc(40 / 16 * 1rem);
      }
    }
  }
  .prose-h3\:mt-8 {
    & :is(:where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
      margin-top: calc(var(--spacing) * 8);
    }
  }
  .prose-h3\:mt-12 {
    & :is(:where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
      margin-top: calc(var(--spacing) * 12);
    }
  }
  .prose-h3\:mb-4 {
    & :is(:where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
      margin-bottom: calc(var(--spacing) * 4);
    }
  }
  .prose-h3\:text-\[calc\(20\/16\*1rem\)\] {
    & :is(:where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
      font-size: calc(20 / 16 * 1rem);
    }
  }
  .prose-h3\:text-clr-134074 {
    & :is(:where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
      color: var(--color-clr-134074);
    }
  }
  .lg\:prose-h3\:text-\[calc\(24\/16\*1rem\)\] {
    @media (width >= 64rem) {
      & :is(:where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
        font-size: calc(24 / 16 * 1rem);
      }
    }
  }
  .prose-p\:mt-3 {
    & :is(:where(p):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
      margin-top: calc(var(--spacing) * 3);
    }
  }
  .prose-p\:mb-7 {
    & :is(:where(p):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
      margin-bottom: calc(var(--spacing) * 7);
    }
  }
  .prose-p\:text-base {
    & :is(:where(p):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
      font-size: var(--text-base);
      line-height: var(--tw-leading, var(--text-base--line-height));
    }
  }
  .prose-p\:text-lg {
    & :is(:where(p):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
      font-size: var(--text-lg);
      line-height: var(--tw-leading, var(--text-lg--line-height));
    }
  }
  .prose-p\:leading-\[calc\(24\/16\*1em\)\] {
    & :is(:where(p):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
      --tw-leading: calc(24 / 16 * 1em);
      line-height: calc(24 / 16 * 1em);
    }
  }
  .prose-p\:leading-\[calc\(48\/32\*1em\)\] {
    & :is(:where(p):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
      --tw-leading: calc(48 / 32 * 1em);
      line-height: calc(48 / 32 * 1em);
    }
  }
  .prose-p\:text-clr-134074 {
    & :is(:where(p):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
      color: var(--color-clr-134074);
    }
  }
  .prose-p\:text-clr-363636 {
    & :is(:where(p):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
      color: var(--color-clr-363636);
    }
  }
  .lg\:prose-p\:text-center {
    @media (width >= 64rem) {
      & :is(:where(p):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
        text-align: center;
      }
    }
  }
  .lg\:prose-p\:text-\[calc\(32\/16\*1rem\)\] {
    @media (width >= 64rem) {
      & :is(:where(p):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
        font-size: calc(32 / 16 * 1rem);
      }
    }
  }
  .prose-ul\:list-disc {
    & :is(:where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
      list-style-type: disc;
    }
  }
  .prose-ul\:pl-5 {
    & :is(:where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
      padding-left: calc(var(--spacing) * 5);
    }
  }
  .\[\&\.is-pinned\]\:shadow {
    &.is-pinned {
      --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);
    }
  }
  .\[\&\.swiper-button-disabled\]\:pointer-events-none {
    &.swiper-button-disabled {
      pointer-events: none;
    }
  }
  .\[\&\.swiper-button-disabled\]\:bg-clr-offWhite {
    &.swiper-button-disabled {
      background-color: var(--color-clr-offWhite);
    }
  }
  .\[\&\.swiper-button-disabled\]\:text-clr-134074 {
    &.swiper-button-disabled {
      color: var(--color-clr-134074);
    }
  }
}
@layer gridBackground {
  .grid-item-background:nth-child(9n + 1) {
    background-color: #F3F2F0;
  }
  .grid-item-background:nth-child(9n + 2) {
    background-color: #EDEBE8;
  }
  .grid-item-background:nth-child(9n + 3) {
    background-color: #E4E1DD;
  }
  .grid-item-background:nth-child(9n + 4) {
    background-color: #E4E1DD;
  }
  .grid-item-background:nth-child(9n + 5) {
    background-color: #F3F2F0;
  }
  .grid-item-background:nth-child(9n + 6) {
    background-color: #EDEBE8;
  }
  .grid-item-background:nth-child(9n + 7) {
    background-color: #F3F2F0;
  }
  .grid-item-background:nth-child(9n + 8) {
    background-color: #EDEBE8;
  }
  .grid-item-background:nth-child(9n + 9) {
    background-color: #E4E1DD;
  }
}
body {
  &:has(.hamburger[aria-expanded="true"]) {
    @media (hover: none) {
      overflow: hidden;
    }
  }
  &.doctorslist {
    background-color: #F3F2F0;
  }
}
.forced-back {
  @media (forced-colors: active) {
    color: buttontext;
    background-color: background;
    &:hover {
      background-color: buttontext;
      color: background;
    }
  }
}
.max820 {
  max-width: 820px;
}
.main-navigation {
  position: absolute;
  top: 100%;
  left: calc(var(--spacing) * 0);
  z-index: 10;
  display: grid;
  min-height: calc(100dvh - min(calc(80 / 16 * 1rem), max(calc(60 / 16 * 1rem), calc(80 / 1024 * 100vw))));
  width: 100%;
  --tw-translate-x: -100%;
  translate: var(--tw-translate-x) var(--tw-translate-y);
  grid-template-rows: auto 1fr;
  overflow: hidden;
  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));
  --tw-duration: 300ms;
  transition-duration: 300ms;
  @media (width >= 64rem) {
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }
  nav {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    > div:has(> ul) {
      z-index: 0;
      display: block;
      height: 100%;
      width: 100%;
      background-color: var(--color-white);
      padding-bottom: 60px;
      @media (width < 64rem) {
        position: fixed;
      }
      @media (width < 64rem) {
        top: calc(52 / 16 * 1rem);
      }
      @media (width < 64rem) {
        overflow-x: hidden;
      }
      @media (width < 64rem) {
        overflow-y: auto;
      }
      @media (width >= 64rem) {
        position: relative;
      }
      @media (width >= 64rem) {
        width: calc(440 / 1320 * 100vw);
      }
      @media (width >= 64rem) {
        max-width: 440px;
      }
      @media (width >= 64rem) {
        padding-block: calc(var(--spacing) * 20);
      }
      >ul {
        display: flex;
        flex-direction: column;
        li {
          >div:has(> button[aria-controls], > a) {
            display: flex;
            width: 100%;
            align-items: center;
            justify-content: space-between;
            gap: calc(var(--spacing) * 4);
            padding-inline: calc(var(--spacing) * 8);
            padding-block: calc(var(--spacing) * 4);
            a {
              flex-grow: 0;
              font-size: var(--text-lg);
              line-height: var(--tw-leading, var(--text-lg--line-height));
              color: inherit;
              @media (width >= 64rem) {
                font-size: var(--text-2xl);
                line-height: var(--tw-leading, var(--text-2xl--line-height));
              }
            }
            button {
              flex-grow: 1;
              text-align: right;
              font-size: var(--text-xs);
              line-height: var(--tw-leading, var(--text-xs--line-height));
              @media (width >= 64rem) {
                font-size: var(--text-lg);
                line-height: var(--tw-leading, var(--text-lg--line-height));
              }
              &:hover {
                cursor: pointer;
              }
            }
          }
          &:has( > div > button[aria-expanded="false"] ) {
            > div:has(> ul) {
              @media (width < 64rem) {
                --tw-translate-x: 100%;
                translate: var(--tw-translate-x) var(--tw-translate-y);
              }
              @media (width >= 64rem) {
                display: none;
              }
            }
          }
        }
        > li {
          @media (width < 64rem) {
            position: relative;
          }
          > div:has(> button[aria-controls], > a) {
            color: var(--color-clr-134074);
            &:hover, &:has(button[aria-expanded="true"]) {
              background-color: var(--color-clr-secondaryLight);
              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));
            }
          }
          >div:has(> ul) {
            z-index: 10;
            height: 100%;
            padding-bottom: 60px;
            @media (width < 64rem) {
              position: fixed;
            }
            @media (width < 64rem) {
              top: calc(52 / 16 * 1rem);
            }
            @media (width < 64rem) {
              overflow-x: hidden;
            }
            @media (width < 64rem) {
              overflow-y: auto;
            }
            @media (width >= 64rem) {
              background-color: var(--color-clr-secondaryLight);
            }
            @media (width >= 64rem) {
              padding-block: calc(var(--spacing) * 20);
            }
            >ul {
              display: block;
              height: auto;
              >li {
                @media (width < 64rem) {
                  position: relative;
                }
                > div:has(> button[aria-controls], > a) {
                  display: flex;
                  color: var(--color-clr-134074);
                  &:hover, &:has(button[aria-expanded="true"]) {
                    background-color: var(--color-clr-secondaryLight);
                    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));
                    @media (width >= 64rem) {
                      background-color: var(--color-clr-134074);
                    }
                    @media (width >= 64rem) {
                      color: var(--color-white);
                    }
                    span {
                      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));
                      @media (width >= 64rem) {
                        color: var(--color-white);
                      }
                    }
                  }
                }
                >div:has(> ul) {
                  z-index: 20;
                  height: 100%;
                  overflow-x: hidden;
                  overflow-y: auto;
                  padding-bottom: 60px;
                  color: var(--color-clr-134074);
                  @media (width < 64rem) {
                    position: fixed;
                  }
                  @media (width < 64rem) {
                    top: calc(52 / 16 * 1rem);
                  }
                  @media (width >= 64rem) {
                    background-color: var(--color-clr-134074);
                  }
                  @media (width >= 64rem) {
                    padding-block: calc(var(--spacing) * 20);
                  }
                  @media (width >= 64rem) {
                    color: var(--color-white);
                  }
                  ul {
                    li {
                      @media (width < 64rem) {
                        position: relative;
                      }
                      div {
                        display: flex;
                        @media (width >= 64rem) {
                          color: var(--color-white);
                        }
                        &:hover {
                          background-color: var(--color-clr-secondaryLight);
                          @media (width >= 64rem) {
                            background-color: var(--color-white);
                          }
                          @media (width >= 64rem) {
                            color: var(--color-clr-134074);
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
        div:has(> ul) {
          position: absolute;
          top: calc(var(--spacing) * 0);
          left: calc(var(--spacing) * 0);
          display: flex;
          height: auto;
          min-height: 100%;
          width: 100%;
          flex-direction: column;
          align-self: stretch;
          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));
          --tw-duration: 300ms;
          transition-duration: 300ms;
          @media (width < 64rem) {
            background-color: var(--color-white);
          }
          @media (width >= 64rem) {
            left: 100%;
          }
          @media (width >= 64rem) {
            width: calc(440 / 1320 * 100vw);
          }
          @media (width >= 64rem) {
            max-width: 440px;
          }
        }
      }
    }
  }
  .backButton {
    @media (width >= 64rem) {
      display: none;
    }
    div {
      flex-direction: row-reverse;
      font-size: var(--text-lg);
      line-height: var(--tw-leading, var(--text-lg--line-height));
      span {
        text-align: right;
      }
      button {
        --tw-scale-x: calc(100% * -1);
        scale: var(--tw-scale-x) var(--tw-scale-y);
      }
    }
  }
}
.hamburger[aria-expanded="true"] + .main-navigation {
  pointer-events: auto;
  --tw-translate-x: calc(var(--spacing) * 0);
  translate: var(--tw-translate-x) var(--tw-translate-y);
  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));
}
.heroSwiper, .galleryCarousel, .threecolsSwiper, .swiperServices, .offersSwiper {
  .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(var(--spacing) * 2.5);
    border-radius: 0 !important;
  }
  .swiper-pagination-bullet {
    height: 1px;
    width: calc(var(--spacing) * 8);
    background-color: c2c2c2;
    transition-property: all;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
    &.swiper-pagination-bullet-active {
      height: 3px;
      width: calc(var(--spacing) * 12);
      border-radius: var(--radius-2xl);
      background-color: var(--color-clr-134074);
      transition-property: all;
      transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
      transition-duration: var(--tw-duration, var(--default-transition-duration));
      @media (forced-colors: active) {
        border: solid 2px buttontext;
        background-color: buttontext;
      }
    }
    @media (forced-colors: active) {
      border: solid 1px buttontext;
      background-color: buttontext;
    }
  }
}
.galleryCarousel {
  .swiper-pagination {
    gap: calc(var(--spacing) * 0);
  }
}
.mapcontainer {
  iframe {
    width: 100%;
  }
}
.offersSwiper {
  .swiper-slide {
    &:not(.swiper-slide-active) {
      > a {
        scale: .90;
        opacity: .3;
        transition: all .6s ease-in-out;
      }
    }
    >a {
      scale: 1;
      transition: all .6s ease-in-out;
      @media screen and (min-width: 640px) {
        scale: 1.05;
      }
    }
  }
}
ul li p {
  margin-bottom: 0;
}
.focus-within-outline {
  &:focus-within {
    outline: 2px auto Highlight;
    outline: 2px auto -webkit-focus-ring-color;
  }
}
@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;
  initial-value: rotateX(0);
}
@property --tw-rotate-y {
  syntax: "*";
  inherits: false;
  initial-value: rotateY(0);
}
@property --tw-rotate-z {
  syntax: "*";
  inherits: false;
  initial-value: rotateZ(0);
}
@property --tw-skew-x {
  syntax: "*";
  inherits: false;
  initial-value: skewX(0);
}
@property --tw-skew-y {
  syntax: "*";
  inherits: false;
  initial-value: skewY(0);
}
@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@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-inset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-shadow-color {
  syntax: "*";
  inherits: false;
}
@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-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-duration {
  syntax: "*";
  inherits: false;
}
@property --tw-ease {
  syntax: "*";
  inherits: false;
}
@property --tw-content {
  syntax: "*";
  initial-value: "";
  inherits: false;
}
@property --tw-outline-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
