/* @use "Fonts"; */
.gdpr-cookieconsent-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: fixed;
  width: 100%;
  inset: 0;
  z-index: 9999;
  color: #fff;
  --cookieconsent-theme-color: rgb(252, 229, 47);
  --cookieconsent-overlay-color: rgb(0 0 0 / 0.50);
  --cookieconsent-bg-color: rgb(44 49 53 / 0.95);
  --cookieconsent-group-bg-color: rgb(44 49 53 / 0.95);
  --cookieconsent-button-text-color: rgb(255 255 255);
  --cookieconsent-button-primary-color: var(--cookieconsent-theme-color);
  --cookieconsent-button-secondary-color: rgb(255 255 255);
  --cookieconsent-button-primary-text-color: var(--cookieconsent-button-text-color);
  --cookieconsent-button-secondary-text-color: rgb(0 0 0);
  --cookieconsent-button-borderradius: 4px;
  --cookieconsent-spacing: 0.5rem;
  --cookieconsent-width: 800px;
  --cookieconsent-focus-outline: white solid 2px;
  --cookieconsent-focus-outline-offset: 2px;
}
.gdpr-cookieconsent-container::before {
  content: "";
  flex-grow: 1;
  background-color: var(--cookieconsent-overlay-color);
}
.gdpr-cookieconsent-settings {
  overflow-x: auto;
  background-color: var(--cookieconsent-bg-color);
  position: relative;
}
.gdpr-cookieconsent-settings .hidden {
  display: none;
}
.gdpr-cookieconsent-settings__content {
  max-width: var(--cookieconsent-width);
  width: 100%;
  margin: 0 auto;
  padding-block-start: calc(var(--cookieconsent-spacing) * 2);
  padding-inline: calc(var(--cookieconsent-spacing) * 2);
  padding-top: calc(var(--cookieconsent-spacing) * 4);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.gdpr-cookieconsent-settings__content__info {
  flex: 1 0;
}
.gdpr-cookieconsent-settings__content__info h2 {
  font-size: 22px;
  line-height: 22px;
  padding-left: 0px;
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  letter-spacing: 4px;
  padding-bottom: 20px;
}
.gdpr-cookieconsent-settings__content__info__description {
  margin-top: calc(var(--cookieconsent-spacing) * 2);
  font-size: 0.8rem;
}
.gdpr-cookieconsent-settings__content__info__description p {
  padding-left: 0px;
  font-size: 0.8rem;
}
.gdpr-cookieconsent-settings__content__cta {
  min-width: 20%;
  display: flex;
  flex-direction: column;
  margin-left: var(--cookieconsent-spacing);
}
.gdpr-cookieconsent-settings__content__cta :where(button.gdpr-cc-button) {
  all: unset;
}
.gdpr-cookieconsent-settings__content__cta #gdpr-cc-btn-accept-necessary {
  background-color: rgb(252, 229, 47);
}
.gdpr-cookieconsent-settings__content__cta .gdpr-cc-button {
  color: var(--cookieconsent-button-secondary-text-color);
  width: 100%;
  text-align: center;
  background: var(--cookieconsent-button-primary-color);
  border-radius: var(--cookieconsent-button-borderradius);
  cursor: pointer;
  white-space: nowrap;
  box-sizing: border-box;
  vertical-align: middle;
  margin: 0 0 0.5rem 0;
  padding: 0.85em 1em;
  border: 1px solid transparent;
  border-radius: 10px;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: "Open Sans", sans-serif;
  font-size: 0.9rem;
  line-height: 1;
  padding-inline: calc(var(--cookieconsent-spacing) / 2);
}
.gdpr-cookieconsent-settings__content__cta .gdpr-cc-button--secondary {
  background: rgb(252, 229, 47);
  color: var(--cookieconsent-button-secondary-text-color);
}
.gdpr-cookieconsent-settings__content__cta .gdpr-cc-button + .gdpr-cc-button {
  margin-top: calc(var(--cookieconsent-spacing) / 2);
}
.gdpr-cookieconsent-settings__content__cta .gdpr-cc-button:hover {
  filter: brightness(0.9);
}
.gdpr-cookieconsent-settings__content__cta .gdpr-cc-button:focus {
  outline: var(--cookieconsent-focus-outline);
  outline-offset: var(--cookieconsent-focus-outline-offset);
}
.gdpr-cookieconsent-settings__content__settings {
  width: 100%;
  margin-top: calc(var(--cookieconsent-spacing) * 1);
}
.gdpr-cookieconsent-settings__content__links {
  margin: calc(var(--cookieconsent-spacing) * 1) 0;
  width: 100%;
  font-weight: bold;
}
.gdpr-cookieconsent-settings__content__links span {
  padding: 0 5px;
}
.gdpr-cookieconsent-settings__close {
  position: absolute;
  top: calc(var(--cookieconsent-spacing) * 1);
  right: calc(var(--cookieconsent-spacing) * 1);
}
.gdpr-cookieconsent-setting-group {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 1rem;
  background-color: var(--cookieconsent-group-bg-color);
  padding: calc(var(--cookieconsent-spacing) * 1.5);
}
.gdpr-cookieconsent-setting-group__switch, .gdpr-cookieconsent-setting-group__description, .gdpr-cookieconsent-setting-group__details {
  flex: 1 0 100%;
}
.gdpr-cookieconsent-setting-group__description, .gdpr-cookieconsent-setting-group__details {
  margin-top: var(--cookieconsent-spacing);
  font-size: 0.8rem;
}
.gdpr-cookieconsent-setting-group__cookies {
  flex: 1 0 100%;
  margin-top: calc(var(--cookieconsent-spacing) * 1);
}
.gdpr-cookieconsent-setting-group + .gdpr-cookieconsent-setting-group {
  margin-top: calc(var(--cookieconsent-spacing) * 1);
}
.gdpr-cookieconsent-setting-group__details {
  text-align: right;
  color: var(--cookieconsent-theme-color);
  font-weight: bold;
  line-height: 1;
}
.gdpr-cookieconsent-setting-group__details:hover {
  cursor: pointer;
  color: var(--cookieconsent-theme-color);
}
.gdpr-cookieconsent-cookie {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex: 1 0 100%;
}
.gdpr-cookieconsent-cookie__attributes {
  flex: 0 0 100%;
  width: 100%;
}
.gdpr-cookieconsent-cookie__switch {
  flex: 1 0 100%;
}
.gdpr-cookieconsent-cookie + .gdpr-cookieconsent-cookie {
  margin-top: calc(var(--cookieconsent-spacing) * 1);
}
.gdpr-cookieconsent-cookie-attribute {
  flex: 0 0 100%;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.8rem;
}
.gdpr-cookieconsent-cookie-attribute__label {
  flex-basis: 30%;
}
.gdpr-cookieconsent-switch {
  all: unset;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  --cookieconsent-switch-thumb-size: 1rem;
  --cookieconsent-switch-thumb-color: rgb(255 255 255);
  --cookieconsent-switch-thumb-highlight-color: rgba(0 0 0 / 0.25);
  --cookieconsent-switch-length: calc(var(--cookieconsent-switch-thumb-size) * 2);
  --cookieconsent-switch-padding: 3px;
  --cookieconsent-switch-inactive-color: rgb(204 204 204);
  --cookieconsent-switch-active-color: var(--cookieconsent-theme-color);
  --cookieconsent-switch-thumb-size-small: 1rem;
  --cookieconsent-switch-outline: var(--cookieconsent-focus-outline);
  --cookieconsent-switch-outline-offset: var(--cookieconsent-focus-outline-offset);
}
.gdpr-cookieconsent-switch--group {
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
}
.gdpr-cookieconsent-switch--cookie {
  min-width: 50%;
  font-size: 0.8rem;
  line-height: 1.5;
  /* font-weight: bold; */
  --cookieconsent-switch-thumb-size: var(--cookieconsent-switch-thumb-size-small);
}
.gdpr-cookieconsent-switch > input {
  all: unset;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  inline-size: var(--cookieconsent-switch-length);
  block-size: var(--cookieconsent-switch-thumb-size);
  padding: var(--cookieconsent-switch-padding);
  background: var(--cookieconsent-switch-inactive-color);
  transition: background-color 0.25s ease;
  border-radius: var(--cookieconsent-switch-length);
  border: none;
  box-sizing: content-box;
  --_cookieconsent-switch-thumb-position: 0%;
  /* Thumb */
}
.gdpr-cookieconsent-switch > input::before {
  --_cookieconsent-switch-highlight-size: 0;
  content: "";
  border-radius: 50%;
  box-shadow: 0 0 0 var(--_cookieconsent-switch-highlight-size) var(--cookieconsent-switch-thumb-highlight-color);
  cursor: pointer;
  pointer-events: auto;
  position: absolute;
  inline-size: var(--cookieconsent-switch-thumb-size);
  block-size: var(--cookieconsent-switch-thumb-size);
  background: var(--cookieconsent-switch-thumb-color, white);
  transform: translateX(var(--_cookieconsent-switch-thumb-position));
  transition: transform 0.25s, box-shadow 0.1s;
}
.gdpr-cookieconsent-switch > input:not(:disabled):hover::before {
  --_cookieconsent-switch-highlight-size: .5rem;
}
.gdpr-cookieconsent-switch > input:checked {
  background: var(--cookieconsent-switch-active-color);
  --_cookieconsent-switch-thumb-position: calc(var(--cookieconsent-switch-length) - 100%);
}
.gdpr-cookieconsent-switch > input:disabled {
  cursor: not-allowed;
}
.gdpr-cookieconsent-switch > input:disabled::before {
  cursor: not-allowed;
}
.gdpr-cookieconsent-switch > input:focus {
  outline: var(--cookieconsent-switch-outline);
  outline-offset: var(--cookieconsent-switch-outline-offset);
}
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
/* ! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
@font-face {
    font-family: "Leoncelli-Bold";
    src: local("Leoncelli Bold"), local("Leoncelli-Bold"), url("../Fonts/Leoncelli-Bold.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
/* open-sans-300 - latin */
@font-face {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 300;
    src: url("../Fonts/open-sans-v18-latin-300.eot"); /* IE9 Compat Modes */
    src: local(""), url("../Fonts/open-sans-v18-latin-300.eot?#iefix") format("embedded-opentype"), url("../Fonts/open-sans-v18-latin-300.woff2") format("woff2"), url("../Fonts/open-sans-v18-latin-300.woff") format("woff"), url("../Fonts/open-sans-v18-latin-300.ttf") format("truetype"), url("../Fonts/open-sans-v18-latin-300.svg#OpenSans") format("svg"); /* Legacy iOS */
  }
/* open-sans-regular - latin */
@font-face {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 400;
    src: url("../Fonts/open-sans-v18-latin-regular.eot"); /* IE9 Compat Modes */
    src: local(""), url("../Fonts/open-sans-v18-latin-regular.eot?#iefix") format("embedded-opentype"), url("../Fonts/open-sans-v18-latin-regular.woff2") format("woff2"), url("../Fonts/open-sans-v18-latin-regular.woff") format("woff"), url("../Fonts/open-sans-v18-latin-regular.ttf") format("truetype"), url("../Fonts/open-sans-v18-latin-regular.svg#OpenSans") format("svg"); /* Legacy iOS */
  }
/* open-sans-italic - latin */
@font-face {
    font-family: "Open Sans";
    font-style: italic;
    font-weight: 400;
    src: url("../Fonts/open-sans-v18-latin-italic.eot"); /* IE9 Compat Modes */
    src: local(""), url("../Fonts/open-sans-v18-latin-italic.eot?#iefix") format("embedded-opentype"), url("../Fonts/open-sans-v18-latin-italic.woff2") format("woff2"), url("../Fonts/open-sans-v18-latin-italic.woff") format("woff"), url("../Fonts/open-sans-v18-latin-italic.ttf") format("truetype"), url("../Fonts/open-sans-v18-latin-italic.svg#OpenSans") format("svg"); /* Legacy iOS */
  }
/* open-sans-700 - latin */
@font-face {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 700;
    src: url("../Fonts/open-sans-v18-latin-700.eot"); /* IE9 Compat Modes */
    src: local(""), url("../Fonts/open-sans-v18-latin-700.eot?#iefix") format("embedded-opentype"), url("../Fonts/open-sans-v18-latin-700.woff2") format("woff2"), url("../Fonts/open-sans-v18-latin-700.woff") format("woff"), url("../Fonts/open-sans-v18-latin-700.ttf") format("truetype"), url("../Fonts/open-sans-v18-latin-700.svg#OpenSans") format("svg"); /* Legacy iOS */
  }
/* open-sans-condensed-300 - latin */
@font-face {
    font-family: "Open Sans Condensed";
    font-style: normal;
    font-weight: 300;
    src: url("../Fonts/open-sans-condensed-v15-latin-300.eot"); /* IE9 Compat Modes */
    src: local(""), url("../Fonts/open-sans-condensed-v15-latin-300.eot?#iefix") format("embedded-opentype"), url("../Fonts/open-sans-condensed-v15-latin-300.woff2") format("woff2"), url("../Fonts/open-sans-condensed-v15-latin-300.woff") format("woff"), url("../Fonts/open-sans-condensed-v15-latin-300.ttf") format("truetype"), url("../Fonts/open-sans-condensed-v15-latin-300.svg#OpenSansCondensed") format("svg"); /* Legacy iOS */
  }
/* open-sans-condensed-700 - latin */
@font-face {
    font-family: "Open Sans Condensed";
    font-style: normal;
    font-weight: 700;
    src: url("../Fonts/open-sans-condensed-v15-latin-700.eot"); /* IE9 Compat Modes */
    src: local(""), url("../Fonts/open-sans-condensed-v15-latin-700.eot?#iefix") format("embedded-opentype"), url("../Fonts/open-sans-condensed-v15-latin-700.woff2") format("woff2"), url("../Fonts/open-sans-condensed-v15-latin-700.woff") format("woff"), url("../Fonts/open-sans-condensed-v15-latin-700.ttf") format("truetype"), url("../Fonts/open-sans-condensed-v15-latin-700.svg#OpenSansCondensed") format("svg"); /* Legacy iOS */
  }
/* open-sans-condensed-300italic - latin */
@font-face {
    font-family: "Open Sans Condensed";
    font-style: italic;
    font-weight: 300;
    src: url("../Fonts/open-sans-condensed-v15-latin-300italic.eot"); /* IE9 Compat Modes */
    src: local(""), url("../Fonts/open-sans-condensed-v15-latin-300italic.eot?#iefix") format("embedded-opentype"), url("../Fonts/open-sans-condensed-v15-latin-300italic.woff2") format("woff2"), url("../Fonts/open-sans-condensed-v15-latin-300italic.woff") format("woff"), url("../Fonts/open-sans-condensed-v15-latin-300italic.ttf") format("truetype"), url("../Fonts/open-sans-condensed-v15-latin-300italic.svg#OpenSansCondensed") format("svg"); /* Legacy iOS */
  }
* {
    transition: all 0.5s ease-out allow-discrete;
    transition: 200ms linear 50ms;
  }
html {
    font-family: "Open Sans";
  }
.headline {
    font-family: "Leoncelli-Bold";
  }
b,
  strong {
    font-family: "Open Sans";
  }
h2 {
    letter-spacing: 4px;
    font-size: 2rem;
    line-height: 2.5rem;
  }
h3 {
    letter-spacing: 4px;
    font-size: 1.6rem;
    line-height: 2rem;
  }
h4 {
    font-size: 1.6rem;
    font-weight: 300;
    border-bottom: 1px #707070 solid;
    padding-bottom: 16px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    line-height: 36px;
  }
a {
  font-weight: 700;
}
a:hover {
  text-decoration-line: underline;
}
svg {
    color: #fff;
  }
p {
    padding-bottom: 1rem;
  }
p:last-child {
    padding-bottom: 0;
  }
main ul, main ol {
  list-style-type: disc;
  padding-left: revert;
}
form label {
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
form ul, form ol {
  list-style-type: none;
  padding-left: 0px;
}
.container {
  max-width: 100%;
}
.container {
    padding: 1rem;
  }
li.submit {
  text-align: right;
}
ken-burns-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: #fff;
  }
ken-burns-carousel .text-container ul {
    margin-left: 1.25rem;
    list-style-type: circle;
  }
ken-burns-carousel .text-container ol {
    margin-left: 1.25rem;
    list-style-type: decimal;
  }
ken-burns-carousel img {
    filter: var(--img-filter);
    -o-object-fit: contain;
       object-fit: contain;
  }
.ken-burns {
    position: relative;
    height: 0;
    padding-bottom: 45%;
  }
#catering-form {
  margin-left: auto;
  margin-right: auto;
  max-width: 1024px;
  font-size: 14px;
  line-height: 18px;
}
#contact-form {
  max-width: 1024px;
  font-size: 14px;
  line-height: 18px;
}
.clearfix {
  margin-bottom: 1rem;
  align-items: center;
}
.clearfix > label {
  font-weight: 700;
}
.help-inline {
  margin-top: 0.5rem;
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}
.pointer-events-none {
  pointer-events: none;
}
.visible {
  visibility: visible;
}
.collapse {
  visibility: collapse;
}
.static {
  position: static;
}
.\!fixed {
  position: fixed !important;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.bottom-10 {
  bottom: 2.5rem;
}
.end-5 {
  inset-inline-end: 1.25rem;
}
.left-0 {
  left: 0px;
}
.left-1\/2 {
  left: 50%;
}
.right-0 {
  right: 0px;
}
.right-4 {
  right: 1rem;
}
.top-0 {
  top: 0px;
}
.top-1\/2 {
  top: 50%;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-50 {
  z-index: 50;
}
.order-2 {
  order: 2;
}
.order-3 {
  order: 3;
}
.order-first {
  order: -9999;
}
.order-last {
  order: 9999;
}
.col-span-1 {
  grid-column: span 1 / span 1;
}
.col-span-2 {
  grid-column: span 2 / span 2;
}
.col-span-3 {
  grid-column: span 3 / span 3;
}
.col-span-4 {
  grid-column: span 4 / span 4;
}
.col-span-5 {
  grid-column: span 5 / span 5;
}
.col-span-6 {
  grid-column: span 6 / span 6;
}
.col-span-7 {
  grid-column: span 7 / span 7;
}
.col-span-8 {
  grid-column: span 8 / span 8;
}
.col-span-full {
  grid-column: 1 / -1;
}
.col-start-1 {
  grid-column-start: 1;
}
.col-start-2 {
  grid-column-start: 2;
}
.col-start-3 {
  grid-column-start: 3;
}
.col-start-4 {
  grid-column-start: 4;
}
.col-start-5 {
  grid-column-start: 5;
}
.col-start-6 {
  grid-column-start: 6;
}
.col-start-7 {
  grid-column-start: 7;
}
.col-start-8 {
  grid-column-start: 8;
}
.col-end-1 {
  grid-column-end: 1;
}
.col-end-2 {
  grid-column-end: 2;
}
.col-end-3 {
  grid-column-end: 3;
}
.col-end-4 {
  grid-column-end: 4;
}
.col-end-5 {
  grid-column-end: 5;
}
.col-end-6 {
  grid-column-end: 6;
}
.col-end-7 {
  grid-column-end: 7;
}
.col-end-8 {
  grid-column-end: 8;
}
.row-span-1 {
  grid-row: span 1 / span 1;
}
.row-span-2 {
  grid-row: span 2 / span 2;
}
.row-span-3 {
  grid-row: span 3 / span 3;
}
.row-span-4 {
  grid-row: span 4 / span 4;
}
.row-span-5 {
  grid-row: span 5 / span 5;
}
.row-span-6 {
  grid-row: span 6 / span 6;
}
.row-span-7 {
  grid-row: span 7 / span 7;
}
.row-span-8 {
  grid-row: span 8 / span 8;
}
.row-start-1 {
  grid-row-start: 1;
}
.row-start-2 {
  grid-row-start: 2;
}
.row-start-3 {
  grid-row-start: 3;
}
.row-start-4 {
  grid-row-start: 4;
}
.row-start-5 {
  grid-row-start: 5;
}
.row-start-6 {
  grid-row-start: 6;
}
.row-start-7 {
  grid-row-start: 7;
}
.row-start-8 {
  grid-row-start: 8;
}
.row-end-1 {
  grid-row-end: 1;
}
.row-end-2 {
  grid-row-end: 2;
}
.row-end-3 {
  grid-row-end: 3;
}
.row-end-4 {
  grid-row-end: 4;
}
.row-end-5 {
  grid-row-end: 5;
}
.row-end-6 {
  grid-row-end: 6;
}
.row-end-7 {
  grid-row-end: 7;
}
.row-end-8 {
  grid-row-end: 8;
}
.m-4 {
  margin: 1rem;
}
.m-px {
  margin: 1px;
}
.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.mb-0 {
  margin-bottom: 0px;
}
.mb-0\.5 {
  margin-bottom: 0.125rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-1\.5 {
  margin-bottom: 0.375rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-11 {
  margin-bottom: 2.75rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-14 {
  margin-bottom: 3.5rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-2\.5 {
  margin-bottom: 0.625rem;
}
.mb-20 {
  margin-bottom: 5rem;
}
.mb-24 {
  margin-bottom: 6rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-3\.5 {
  margin-bottom: 0.875rem;
}
.mb-32 {
  margin-bottom: 8rem;
}
.mb-36 {
  margin-bottom: 9rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-40 {
  margin-bottom: 10rem;
}
.mb-44 {
  margin-bottom: 11rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-52 {
  margin-bottom: 13rem;
}
.mb-56 {
  margin-bottom: 14rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-60 {
  margin-bottom: 15rem;
}
.mb-64 {
  margin-bottom: 16rem;
}
.mb-7 {
  margin-bottom: 1.75rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-9 {
  margin-bottom: 2.25rem;
}
.ml-4 {
  margin-left: 1rem;
}
.ml-8 {
  margin-left: 2rem;
}
.ms-0 {
  margin-inline-start: 0px;
}
.ms-0\.5 {
  margin-inline-start: 0.125rem;
}
.ms-1 {
  margin-inline-start: 0.25rem;
}
.ms-1\.5 {
  margin-inline-start: 0.375rem;
}
.ms-10 {
  margin-inline-start: 2.5rem;
}
.ms-11 {
  margin-inline-start: 2.75rem;
}
.ms-12 {
  margin-inline-start: 3rem;
}
.ms-14 {
  margin-inline-start: 3.5rem;
}
.ms-16 {
  margin-inline-start: 4rem;
}
.ms-2 {
  margin-inline-start: 0.5rem;
}
.ms-2\.5 {
  margin-inline-start: 0.625rem;
}
.ms-20 {
  margin-inline-start: 5rem;
}
.ms-24 {
  margin-inline-start: 6rem;
}
.ms-3 {
  margin-inline-start: 0.75rem;
}
.ms-3\.5 {
  margin-inline-start: 0.875rem;
}
.ms-32 {
  margin-inline-start: 8rem;
}
.ms-36 {
  margin-inline-start: 9rem;
}
.ms-4 {
  margin-inline-start: 1rem;
}
.ms-40 {
  margin-inline-start: 10rem;
}
.ms-44 {
  margin-inline-start: 11rem;
}
.ms-5 {
  margin-inline-start: 1.25rem;
}
.ms-52 {
  margin-inline-start: 13rem;
}
.ms-56 {
  margin-inline-start: 14rem;
}
.ms-6 {
  margin-inline-start: 1.5rem;
}
.ms-60 {
  margin-inline-start: 15rem;
}
.ms-64 {
  margin-inline-start: 16rem;
}
.ms-7 {
  margin-inline-start: 1.75rem;
}
.ms-8 {
  margin-inline-start: 2rem;
}
.ms-9 {
  margin-inline-start: 2.25rem;
}
.mt-0 {
  margin-top: 0px;
}
.mt-0\.5 {
  margin-top: 0.125rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-1\.5 {
  margin-top: 0.375rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-11 {
  margin-top: 2.75rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-14 {
  margin-top: 3.5rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-2\.5 {
  margin-top: 0.625rem;
}
.mt-20 {
  margin-top: 5rem;
}
.mt-24 {
  margin-top: 6rem;
}
.mt-28 {
  margin-top: 7rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-3\.5 {
  margin-top: 0.875rem;
}
.mt-32 {
  margin-top: 8rem;
}
.mt-36 {
  margin-top: 9rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-40 {
  margin-top: 10rem;
}
.mt-44 {
  margin-top: 11rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-52 {
  margin-top: 13rem;
}
.mt-56 {
  margin-top: 14rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-60 {
  margin-top: 15rem;
}
.mt-64 {
  margin-top: 16rem;
}
.mt-7 {
  margin-top: 1.75rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-9 {
  margin-top: 2.25rem;
}
.mt-auto {
  margin-top: auto;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.contents {
  display: contents;
}
.hidden {
  display: none;
}
.h-10 {
  height: 2.5rem;
}
.h-12 {
  height: 3rem;
}
.h-3\.5 {
  height: 0.875rem;
}
.h-4 {
  height: 1rem;
}
.h-5 {
  height: 1.25rem;
}
.h-72 {
  height: 18rem;
}
.h-8 {
  height: 2rem;
}
.h-full {
  height: 100%;
}
.h-screen {
  height: 100vh;
}
.min-h-screen {
  min-height: 100vh;
}
.w-10 {
  width: 2.5rem;
}
.w-24 {
  width: 6rem;
}
.w-3\.5 {
  width: 0.875rem;
}
.w-4 {
  width: 1rem;
}
.w-40 {
  width: 10rem;
}
.w-5 {
  width: 1.25rem;
}
.w-8 {
  width: 2rem;
}
.w-full {
  width: 100%;
}
.w-max {
  width: -moz-max-content;
  width: max-content;
}
.min-w-24 {
  min-width: 6rem;
}
.max-w-24 {
  max-width: 6rem;
}
.max-w-screen-xl {
  max-width: 1280px;
}
.max-w-xl {
  max-width: 36rem;
}
.flex-shrink {
  flex-shrink: 1;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.flex-grow {
  flex-grow: 1;
}
.flex-grow-0 {
  flex-grow: 0;
}
.basis-1\/2 {
  flex-basis: 50%;
}
.basis-1\/3 {
  flex-basis: 33.333333%;
}
.basis-1\/4 {
  flex-basis: 25%;
}
.basis-1\/5 {
  flex-basis: 20%;
}
.basis-2\/3 {
  flex-basis: 66.666667%;
}
.basis-2\/4 {
  flex-basis: 50%;
}
.basis-2\/5 {
  flex-basis: 40%;
}
.basis-3\/4 {
  flex-basis: 75%;
}
.basis-3\/5 {
  flex-basis: 60%;
}
.basis-4\/5 {
  flex-basis: 80%;
}
.basis-auto {
  flex-basis: auto;
}
.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-rotate-90 {
  --tw-rotate: -90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.cursor-pointer {
  cursor: pointer;
}
.resize {
  resize: both;
}
.list-none {
  list-style-type: none;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.grid-rows-1 {
  grid-template-rows: repeat(1, minmax(0, 1fr));
}
.grid-rows-2 {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}
.grid-rows-3 {
  grid-template-rows: repeat(3, minmax(0, 1fr));
}
.grid-rows-4 {
  grid-template-rows: repeat(4, minmax(0, 1fr));
}
.grid-rows-5 {
  grid-template-rows: repeat(5, minmax(0, 1fr));
}
.grid-rows-6 {
  grid-template-rows: repeat(6, minmax(0, 1fr));
}
.grid-rows-7 {
  grid-template-rows: repeat(7, minmax(0, 1fr));
}
.grid-rows-8 {
  grid-template-rows: repeat(8, minmax(0, 1fr));
}
.flex-row {
  flex-direction: row;
}
.flex-row-reverse {
  flex-direction: row-reverse;
}
.flex-col {
  flex-direction: column;
}
.flex-col-reverse {
  flex-direction: column-reverse;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}
.content-center {
  align-content: center;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-baseline {
  align-items: baseline;
}
.items-stretch {
  align-items: stretch;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.justify-evenly {
  justify-content: space-evenly;
}
.justify-stretch {
  justify-content: stretch;
}
.gap-0 {
  gap: 0px;
}
.gap-0\.5 {
  gap: 0.125rem;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-1\.5 {
  gap: 0.375rem;
}
.gap-10 {
  gap: 2.5rem;
}
.gap-11 {
  gap: 2.75rem;
}
.gap-12 {
  gap: 3rem;
}
.gap-14 {
  gap: 3.5rem;
}
.gap-16 {
  gap: 4rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-2\.5 {
  gap: 0.625rem;
}
.gap-20 {
  gap: 5rem;
}
.gap-24 {
  gap: 6rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-3\.5 {
  gap: 0.875rem;
}
.gap-32 {
  gap: 8rem;
}
.gap-36 {
  gap: 9rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-40 {
  gap: 10rem;
}
.gap-44 {
  gap: 11rem;
}
.gap-5 {
  gap: 1.25rem;
}
.gap-52 {
  gap: 13rem;
}
.gap-56 {
  gap: 14rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-60 {
  gap: 15rem;
}
.gap-64 {
  gap: 16rem;
}
.gap-7 {
  gap: 1.75rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-9 {
  gap: 2.25rem;
}
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(2rem * var(--tw-space-x-reverse));
  margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.divide-x-0 > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-x-reverse: 0;
  border-right-width: calc(0px * var(--tw-divide-x-reverse));
  border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse)));
}
.divide-y > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}
.divide-solid > :not([hidden]) ~ :not([hidden]) {
  border-style: solid;
}
.divide-yellow\/25 > :not([hidden]) ~ :not([hidden]) {
  border-color: rgb(252 229 47 / 0.25);
}
.self-auto {
  align-self: auto;
}
.self-start {
  align-self: flex-start;
}
.self-end {
  align-self: flex-end;
}
.self-center {
  align-self: center;
}
.self-stretch {
  align-self: stretch;
}
.self-baseline {
  align-self: baseline;
}
.justify-self-auto {
  justify-self: auto;
}
.justify-self-start {
  justify-self: start;
}
.justify-self-end {
  justify-self: end;
}
.justify-self-center {
  justify-self: center;
}
.justify-self-stretch {
  justify-self: stretch;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.text-nowrap {
  text-wrap: nowrap;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-none {
  border-radius: 0px;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.border {
  border-width: 1px;
}
.border-b-2 {
  border-bottom-width: 2px;
}
.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.border-b-white {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.bg-black\/0 {
  background-color: rgb(0 0 0 / 0);
}
.bg-black\/10 {
  background-color: rgb(0 0 0 / 0.1);
}
.bg-black\/100 {
  background-color: rgb(0 0 0 / 1);
}
.bg-black\/15 {
  background-color: rgb(0 0 0 / 0.15);
}
.bg-black\/20 {
  background-color: rgb(0 0 0 / 0.2);
}
.bg-black\/25 {
  background-color: rgb(0 0 0 / 0.25);
}
.bg-black\/30 {
  background-color: rgb(0 0 0 / 0.3);
}
.bg-black\/35 {
  background-color: rgb(0 0 0 / 0.35);
}
.bg-black\/40 {
  background-color: rgb(0 0 0 / 0.4);
}
.bg-black\/45 {
  background-color: rgb(0 0 0 / 0.45);
}
.bg-black\/5 {
  background-color: rgb(0 0 0 / 0.05);
}
.bg-black\/50 {
  background-color: rgb(0 0 0 / 0.5);
}
.bg-black\/55 {
  background-color: rgb(0 0 0 / 0.55);
}
.bg-black\/60 {
  background-color: rgb(0 0 0 / 0.6);
}
.bg-black\/65 {
  background-color: rgb(0 0 0 / 0.65);
}
.bg-black\/70 {
  background-color: rgb(0 0 0 / 0.7);
}
.bg-black\/75 {
  background-color: rgb(0 0 0 / 0.75);
}
.bg-black\/80 {
  background-color: rgb(0 0 0 / 0.8);
}
.bg-black\/85 {
  background-color: rgb(0 0 0 / 0.85);
}
.bg-black\/90 {
  background-color: rgb(0 0 0 / 0.9);
}
.bg-black\/95 {
  background-color: rgb(0 0 0 / 0.95);
}
.bg-blue {
  --tw-bg-opacity: 1;
  background-color: rgb(17 148 156 / var(--tw-bg-opacity, 1));
}
.bg-blue\/0 {
  background-color: rgb(17 148 156 / 0);
}
.bg-blue\/10 {
  background-color: rgb(17 148 156 / 0.1);
}
.bg-blue\/100 {
  background-color: rgb(17 148 156 / 1);
}
.bg-blue\/15 {
  background-color: rgb(17 148 156 / 0.15);
}
.bg-blue\/20 {
  background-color: rgb(17 148 156 / 0.2);
}
.bg-blue\/25 {
  background-color: rgb(17 148 156 / 0.25);
}
.bg-blue\/30 {
  background-color: rgb(17 148 156 / 0.3);
}
.bg-blue\/35 {
  background-color: rgb(17 148 156 / 0.35);
}
.bg-blue\/40 {
  background-color: rgb(17 148 156 / 0.4);
}
.bg-blue\/45 {
  background-color: rgb(17 148 156 / 0.45);
}
.bg-blue\/5 {
  background-color: rgb(17 148 156 / 0.05);
}
.bg-blue\/50 {
  background-color: rgb(17 148 156 / 0.5);
}
.bg-blue\/55 {
  background-color: rgb(17 148 156 / 0.55);
}
.bg-blue\/60 {
  background-color: rgb(17 148 156 / 0.6);
}
.bg-blue\/65 {
  background-color: rgb(17 148 156 / 0.65);
}
.bg-blue\/70 {
  background-color: rgb(17 148 156 / 0.7);
}
.bg-blue\/75 {
  background-color: rgb(17 148 156 / 0.75);
}
.bg-blue\/80 {
  background-color: rgb(17 148 156 / 0.8);
}
.bg-blue\/85 {
  background-color: rgb(17 148 156 / 0.85);
}
.bg-blue\/90 {
  background-color: rgb(17 148 156 / 0.9);
}
.bg-blue\/95 {
  background-color: rgb(17 148 156 / 0.95);
}
.bg-gray-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.bg-neutral-950 {
  --tw-bg-opacity: 1;
  background-color: rgb(10 10 10 / var(--tw-bg-opacity, 1));
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white\/0 {
  background-color: rgb(255 255 255 / 0);
}
.bg-white\/10 {
  background-color: rgb(255 255 255 / 0.1);
}
.bg-white\/100 {
  background-color: rgb(255 255 255 / 1);
}
.bg-white\/15 {
  background-color: rgb(255 255 255 / 0.15);
}
.bg-white\/20 {
  background-color: rgb(255 255 255 / 0.2);
}
.bg-white\/25 {
  background-color: rgb(255 255 255 / 0.25);
}
.bg-white\/30 {
  background-color: rgb(255 255 255 / 0.3);
}
.bg-white\/35 {
  background-color: rgb(255 255 255 / 0.35);
}
.bg-white\/40 {
  background-color: rgb(255 255 255 / 0.4);
}
.bg-white\/45 {
  background-color: rgb(255 255 255 / 0.45);
}
.bg-white\/5 {
  background-color: rgb(255 255 255 / 0.05);
}
.bg-white\/50 {
  background-color: rgb(255 255 255 / 0.5);
}
.bg-white\/55 {
  background-color: rgb(255 255 255 / 0.55);
}
.bg-white\/60 {
  background-color: rgb(255 255 255 / 0.6);
}
.bg-white\/65 {
  background-color: rgb(255 255 255 / 0.65);
}
.bg-white\/70 {
  background-color: rgb(255 255 255 / 0.7);
}
.bg-white\/75 {
  background-color: rgb(255 255 255 / 0.75);
}
.bg-white\/80 {
  background-color: rgb(255 255 255 / 0.8);
}
.bg-white\/85 {
  background-color: rgb(255 255 255 / 0.85);
}
.bg-white\/90 {
  background-color: rgb(255 255 255 / 0.9);
}
.bg-white\/95 {
  background-color: rgb(255 255 255 / 0.95);
}
.bg-yellow {
  --tw-bg-opacity: 1;
  background-color: rgb(252 229 47 / var(--tw-bg-opacity, 1));
}
.bg-yellow\/0 {
  background-color: rgb(252 229 47 / 0);
}
.bg-yellow\/10 {
  background-color: rgb(252 229 47 / 0.1);
}
.bg-yellow\/100 {
  background-color: rgb(252 229 47 / 1);
}
.bg-yellow\/15 {
  background-color: rgb(252 229 47 / 0.15);
}
.bg-yellow\/20 {
  background-color: rgb(252 229 47 / 0.2);
}
.bg-yellow\/25 {
  background-color: rgb(252 229 47 / 0.25);
}
.bg-yellow\/30 {
  background-color: rgb(252 229 47 / 0.3);
}
.bg-yellow\/35 {
  background-color: rgb(252 229 47 / 0.35);
}
.bg-yellow\/40 {
  background-color: rgb(252 229 47 / 0.4);
}
.bg-yellow\/45 {
  background-color: rgb(252 229 47 / 0.45);
}
.bg-yellow\/5 {
  background-color: rgb(252 229 47 / 0.05);
}
.bg-yellow\/50 {
  background-color: rgb(252 229 47 / 0.5);
}
.bg-yellow\/55 {
  background-color: rgb(252 229 47 / 0.55);
}
.bg-yellow\/60 {
  background-color: rgb(252 229 47 / 0.6);
}
.bg-yellow\/65 {
  background-color: rgb(252 229 47 / 0.65);
}
.bg-yellow\/70 {
  background-color: rgb(252 229 47 / 0.7);
}
.bg-yellow\/75 {
  background-color: rgb(252 229 47 / 0.75);
}
.bg-yellow\/80 {
  background-color: rgb(252 229 47 / 0.8);
}
.bg-yellow\/85 {
  background-color: rgb(252 229 47 / 0.85);
}
.bg-yellow\/90 {
  background-color: rgb(252 229 47 / 0.9);
}
.bg-yellow\/95 {
  background-color: rgb(252 229 47 / 0.95);
}
.bg-clip-border {
  background-clip: border-box;
}
.fill-black {
  fill: #000000;
}
.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.object-none {
  -o-object-fit: none;
     object-fit: none;
}
.object-center {
  -o-object-position: center;
     object-position: center;
}
.p-1 {
  padding: 0.25rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-px {
  padding: 1px;
}
.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.pb-0 {
  padding-bottom: 0px;
}
.pb-0\.5 {
  padding-bottom: 0.125rem;
}
.pb-1 {
  padding-bottom: 0.25rem;
}
.pb-1\.5 {
  padding-bottom: 0.375rem;
}
.pb-10 {
  padding-bottom: 2.5rem;
}
.pb-11 {
  padding-bottom: 2.75rem;
}
.pb-12 {
  padding-bottom: 3rem;
}
.pb-14 {
  padding-bottom: 3.5rem;
}
.pb-16 {
  padding-bottom: 4rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.pb-2\.5 {
  padding-bottom: 0.625rem;
}
.pb-20 {
  padding-bottom: 5rem;
}
.pb-24 {
  padding-bottom: 6rem;
}
.pb-3 {
  padding-bottom: 0.75rem;
}
.pb-3\.5 {
  padding-bottom: 0.875rem;
}
.pb-32 {
  padding-bottom: 8rem;
}
.pb-36 {
  padding-bottom: 9rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pb-40 {
  padding-bottom: 10rem;
}
.pb-44 {
  padding-bottom: 11rem;
}
.pb-5 {
  padding-bottom: 1.25rem;
}
.pb-52 {
  padding-bottom: 13rem;
}
.pb-56 {
  padding-bottom: 14rem;
}
.pb-6 {
  padding-bottom: 1.5rem;
}
.pb-60 {
  padding-bottom: 15rem;
}
.pb-64 {
  padding-bottom: 16rem;
}
.pb-7 {
  padding-bottom: 1.75rem;
}
.pb-8 {
  padding-bottom: 2rem;
}
.pb-9 {
  padding-bottom: 2.25rem;
}
.pl-3 {
  padding-left: 0.75rem;
}
.pl-6 {
  padding-left: 1.5rem;
}
.pr-4 {
  padding-right: 1rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-start {
  text-align: start;
}
.font-leoncelli {
  font-family: Leoncelli-Bold;
}
.font-serif {
  font-family: IowanOldStyle;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}
.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}
.text-base {
  font-size: 16px;
  line-height: 28px;
}
.text-lead {
  font-size: 20px;
  line-height: 28px;
}
.text-lg {
  font-size: 38px;
  line-height: 42px;
}
.text-medium {
  font-size: 32px;
  line-height: 36px;
}
.text-navi {
  font-size: 18px;
  line-height: 24px;
}
.text-sm {
  font-size: 14px;
  line-height: 18px;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 12px;
  line-height: 16px;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
.leading-5 {
  line-height: 1.25rem;
}
.leading-6 {
  line-height: 1.5rem;
}
.leading-none {
  line-height: 1;
}
.leading-relaxed {
  line-height: 1.625;
}
.leading-tight {
  line-height: 1.25;
}
.tracking-normal {
  letter-spacing: 0em;
}
.tracking-wide {
  letter-spacing: 0.025em;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.text-black\/0 {
  color: rgb(0 0 0 / 0);
}
.text-black\/10 {
  color: rgb(0 0 0 / 0.1);
}
.text-black\/100 {
  color: rgb(0 0 0 / 1);
}
.text-black\/15 {
  color: rgb(0 0 0 / 0.15);
}
.text-black\/20 {
  color: rgb(0 0 0 / 0.2);
}
.text-black\/25 {
  color: rgb(0 0 0 / 0.25);
}
.text-black\/30 {
  color: rgb(0 0 0 / 0.3);
}
.text-black\/35 {
  color: rgb(0 0 0 / 0.35);
}
.text-black\/40 {
  color: rgb(0 0 0 / 0.4);
}
.text-black\/45 {
  color: rgb(0 0 0 / 0.45);
}
.text-black\/5 {
  color: rgb(0 0 0 / 0.05);
}
.text-black\/50 {
  color: rgb(0 0 0 / 0.5);
}
.text-black\/55 {
  color: rgb(0 0 0 / 0.55);
}
.text-black\/60 {
  color: rgb(0 0 0 / 0.6);
}
.text-black\/65 {
  color: rgb(0 0 0 / 0.65);
}
.text-black\/70 {
  color: rgb(0 0 0 / 0.7);
}
.text-black\/75 {
  color: rgb(0 0 0 / 0.75);
}
.text-black\/80 {
  color: rgb(0 0 0 / 0.8);
}
.text-black\/85 {
  color: rgb(0 0 0 / 0.85);
}
.text-black\/90 {
  color: rgb(0 0 0 / 0.9);
}
.text-black\/95 {
  color: rgb(0 0 0 / 0.95);
}
.text-blue {
  --tw-text-opacity: 1;
  color: rgb(17 148 156 / var(--tw-text-opacity, 1));
}
.text-blue\/0 {
  color: rgb(17 148 156 / 0);
}
.text-blue\/10 {
  color: rgb(17 148 156 / 0.1);
}
.text-blue\/100 {
  color: rgb(17 148 156 / 1);
}
.text-blue\/15 {
  color: rgb(17 148 156 / 0.15);
}
.text-blue\/20 {
  color: rgb(17 148 156 / 0.2);
}
.text-blue\/25 {
  color: rgb(17 148 156 / 0.25);
}
.text-blue\/30 {
  color: rgb(17 148 156 / 0.3);
}
.text-blue\/35 {
  color: rgb(17 148 156 / 0.35);
}
.text-blue\/40 {
  color: rgb(17 148 156 / 0.4);
}
.text-blue\/45 {
  color: rgb(17 148 156 / 0.45);
}
.text-blue\/5 {
  color: rgb(17 148 156 / 0.05);
}
.text-blue\/50 {
  color: rgb(17 148 156 / 0.5);
}
.text-blue\/55 {
  color: rgb(17 148 156 / 0.55);
}
.text-blue\/60 {
  color: rgb(17 148 156 / 0.6);
}
.text-blue\/65 {
  color: rgb(17 148 156 / 0.65);
}
.text-blue\/70 {
  color: rgb(17 148 156 / 0.7);
}
.text-blue\/75 {
  color: rgb(17 148 156 / 0.75);
}
.text-blue\/80 {
  color: rgb(17 148 156 / 0.8);
}
.text-blue\/85 {
  color: rgb(17 148 156 / 0.85);
}
.text-blue\/90 {
  color: rgb(17 148 156 / 0.9);
}
.text-blue\/95 {
  color: rgb(17 148 156 / 0.95);
}
.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.text-gray-800 {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.text-neutral-50 {
  --tw-text-opacity: 1;
  color: rgb(250 250 250 / var(--tw-text-opacity, 1));
}
.text-slate-600 {
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / var(--tw-text-opacity, 1));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-white\/0 {
  color: rgb(255 255 255 / 0);
}
.text-white\/10 {
  color: rgb(255 255 255 / 0.1);
}
.text-white\/100 {
  color: rgb(255 255 255 / 1);
}
.text-white\/15 {
  color: rgb(255 255 255 / 0.15);
}
.text-white\/20 {
  color: rgb(255 255 255 / 0.2);
}
.text-white\/25 {
  color: rgb(255 255 255 / 0.25);
}
.text-white\/30 {
  color: rgb(255 255 255 / 0.3);
}
.text-white\/35 {
  color: rgb(255 255 255 / 0.35);
}
.text-white\/40 {
  color: rgb(255 255 255 / 0.4);
}
.text-white\/45 {
  color: rgb(255 255 255 / 0.45);
}
.text-white\/5 {
  color: rgb(255 255 255 / 0.05);
}
.text-white\/50 {
  color: rgb(255 255 255 / 0.5);
}
.text-white\/55 {
  color: rgb(255 255 255 / 0.55);
}
.text-white\/60 {
  color: rgb(255 255 255 / 0.6);
}
.text-white\/65 {
  color: rgb(255 255 255 / 0.65);
}
.text-white\/70 {
  color: rgb(255 255 255 / 0.7);
}
.text-white\/75 {
  color: rgb(255 255 255 / 0.75);
}
.text-white\/80 {
  color: rgb(255 255 255 / 0.8);
}
.text-white\/85 {
  color: rgb(255 255 255 / 0.85);
}
.text-white\/90 {
  color: rgb(255 255 255 / 0.9);
}
.text-white\/95 {
  color: rgb(255 255 255 / 0.95);
}
.text-yellow {
  --tw-text-opacity: 1;
  color: rgb(252 229 47 / var(--tw-text-opacity, 1));
}
.text-yellow\/0 {
  color: rgb(252 229 47 / 0);
}
.text-yellow\/10 {
  color: rgb(252 229 47 / 0.1);
}
.text-yellow\/100 {
  color: rgb(252 229 47 / 1);
}
.text-yellow\/15 {
  color: rgb(252 229 47 / 0.15);
}
.text-yellow\/20 {
  color: rgb(252 229 47 / 0.2);
}
.text-yellow\/25 {
  color: rgb(252 229 47 / 0.25);
}
.text-yellow\/30 {
  color: rgb(252 229 47 / 0.3);
}
.text-yellow\/35 {
  color: rgb(252 229 47 / 0.35);
}
.text-yellow\/40 {
  color: rgb(252 229 47 / 0.4);
}
.text-yellow\/45 {
  color: rgb(252 229 47 / 0.45);
}
.text-yellow\/5 {
  color: rgb(252 229 47 / 0.05);
}
.text-yellow\/50 {
  color: rgb(252 229 47 / 0.5);
}
.text-yellow\/55 {
  color: rgb(252 229 47 / 0.55);
}
.text-yellow\/60 {
  color: rgb(252 229 47 / 0.6);
}
.text-yellow\/65 {
  color: rgb(252 229 47 / 0.65);
}
.text-yellow\/70 {
  color: rgb(252 229 47 / 0.7);
}
.text-yellow\/75 {
  color: rgb(252 229 47 / 0.75);
}
.text-yellow\/80 {
  color: rgb(252 229 47 / 0.8);
}
.text-yellow\/85 {
  color: rgb(252 229 47 / 0.85);
}
.text-yellow\/90 {
  color: rgb(252 229 47 / 0.9);
}
.text-yellow\/95 {
  color: rgb(252 229 47 / 0.95);
}
.underline {
  text-decoration-line: underline;
}
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.accent-yellow {
  accent-color: #FCE52F;
}
.opacity-0 {
  opacity: 0;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.outline {
  outline-style: solid;
}
.grayscale {
  --tw-grayscale: grayscale(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.invert {
  --tw-invert: invert(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.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-none {
  transition-property: none !important;
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-150 {
  transition-duration: 150ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.duration-500 {
  transition-duration: 500ms;
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.hover\:border-b-2:hover {
  border-bottom-width: 2px;
}
.hover\:border-b-white:hover {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.hover\:bg-black:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.hover\:text-yellow:hover {
  --tw-text-opacity: 1;
  color: rgb(252 229 47 / var(--tw-text-opacity, 1));
}
.hover\:underline:hover {
  text-decoration-line: underline;
}
.hover\:no-underline:hover {
  text-decoration-line: none;
}
.hover\:shadow-lg:hover {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.focus\:shadow-lg:focus {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:ring:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-0:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.active\:scale-110:active {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.active\:shadow-lg:active {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.peer:checked ~ .peer-checked\:opacity-100 {
  opacity: 1;
}
.\[\&\>svg\]\:w-4>svg {
  width: 1rem;
}
.jonnitto-prettyembed--video {
  overflow: hidden;
  display: block;
  width: 100%;
  max-height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 100px;
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
  .sm\:order-2 {
    order: 2;
  }
  .sm\:order-3 {
    order: 3;
  }
  .sm\:order-first {
    order: -9999;
  }
  .sm\:order-last {
    order: 9999;
  }
  .sm\:col-span-1 {
    grid-column: span 1 / span 1;
  }
  .sm\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .sm\:col-span-3 {
    grid-column: span 3 / span 3;
  }
  .sm\:col-span-4 {
    grid-column: span 4 / span 4;
  }
  .sm\:col-span-5 {
    grid-column: span 5 / span 5;
  }
  .sm\:col-span-6 {
    grid-column: span 6 / span 6;
  }
  .sm\:col-span-7 {
    grid-column: span 7 / span 7;
  }
  .sm\:col-span-8 {
    grid-column: span 8 / span 8;
  }
  .sm\:col-start-1 {
    grid-column-start: 1;
  }
  .sm\:col-start-2 {
    grid-column-start: 2;
  }
  .sm\:col-start-3 {
    grid-column-start: 3;
  }
  .sm\:col-start-4 {
    grid-column-start: 4;
  }
  .sm\:col-start-5 {
    grid-column-start: 5;
  }
  .sm\:col-start-6 {
    grid-column-start: 6;
  }
  .sm\:col-start-7 {
    grid-column-start: 7;
  }
  .sm\:col-start-8 {
    grid-column-start: 8;
  }
  .sm\:col-end-1 {
    grid-column-end: 1;
  }
  .sm\:col-end-2 {
    grid-column-end: 2;
  }
  .sm\:col-end-3 {
    grid-column-end: 3;
  }
  .sm\:col-end-4 {
    grid-column-end: 4;
  }
  .sm\:col-end-5 {
    grid-column-end: 5;
  }
  .sm\:col-end-6 {
    grid-column-end: 6;
  }
  .sm\:col-end-7 {
    grid-column-end: 7;
  }
  .sm\:col-end-8 {
    grid-column-end: 8;
  }
  .sm\:row-span-1 {
    grid-row: span 1 / span 1;
  }
  .sm\:row-span-2 {
    grid-row: span 2 / span 2;
  }
  .sm\:row-span-3 {
    grid-row: span 3 / span 3;
  }
  .sm\:row-span-4 {
    grid-row: span 4 / span 4;
  }
  .sm\:row-span-5 {
    grid-row: span 5 / span 5;
  }
  .sm\:row-span-6 {
    grid-row: span 6 / span 6;
  }
  .sm\:row-span-7 {
    grid-row: span 7 / span 7;
  }
  .sm\:row-span-8 {
    grid-row: span 8 / span 8;
  }
  .sm\:row-start-1 {
    grid-row-start: 1;
  }
  .sm\:row-start-2 {
    grid-row-start: 2;
  }
  .sm\:row-start-3 {
    grid-row-start: 3;
  }
  .sm\:row-start-4 {
    grid-row-start: 4;
  }
  .sm\:row-start-5 {
    grid-row-start: 5;
  }
  .sm\:row-start-6 {
    grid-row-start: 6;
  }
  .sm\:row-start-7 {
    grid-row-start: 7;
  }
  .sm\:row-start-8 {
    grid-row-start: 8;
  }
  .sm\:row-end-1 {
    grid-row-end: 1;
  }
  .sm\:row-end-2 {
    grid-row-end: 2;
  }
  .sm\:row-end-3 {
    grid-row-end: 3;
  }
  .sm\:row-end-4 {
    grid-row-end: 4;
  }
  .sm\:row-end-5 {
    grid-row-end: 5;
  }
  .sm\:row-end-6 {
    grid-row-end: 6;
  }
  .sm\:row-end-7 {
    grid-row-end: 7;
  }
  .sm\:row-end-8 {
    grid-row-end: 8;
  }
  .sm\:mb-0 {
    margin-bottom: 0px;
  }
  .sm\:mb-0\.5 {
    margin-bottom: 0.125rem;
  }
  .sm\:mb-1 {
    margin-bottom: 0.25rem;
  }
  .sm\:mb-1\.5 {
    margin-bottom: 0.375rem;
  }
  .sm\:mb-10 {
    margin-bottom: 2.5rem;
  }
  .sm\:mb-11 {
    margin-bottom: 2.75rem;
  }
  .sm\:mb-12 {
    margin-bottom: 3rem;
  }
  .sm\:mb-14 {
    margin-bottom: 3.5rem;
  }
  .sm\:mb-16 {
    margin-bottom: 4rem;
  }
  .sm\:mb-2 {
    margin-bottom: 0.5rem;
  }
  .sm\:mb-2\.5 {
    margin-bottom: 0.625rem;
  }
  .sm\:mb-20 {
    margin-bottom: 5rem;
  }
  .sm\:mb-24 {
    margin-bottom: 6rem;
  }
  .sm\:mb-3 {
    margin-bottom: 0.75rem;
  }
  .sm\:mb-3\.5 {
    margin-bottom: 0.875rem;
  }
  .sm\:mb-32 {
    margin-bottom: 8rem;
  }
  .sm\:mb-36 {
    margin-bottom: 9rem;
  }
  .sm\:mb-4 {
    margin-bottom: 1rem;
  }
  .sm\:mb-40 {
    margin-bottom: 10rem;
  }
  .sm\:mb-44 {
    margin-bottom: 11rem;
  }
  .sm\:mb-5 {
    margin-bottom: 1.25rem;
  }
  .sm\:mb-52 {
    margin-bottom: 13rem;
  }
  .sm\:mb-56 {
    margin-bottom: 14rem;
  }
  .sm\:mb-6 {
    margin-bottom: 1.5rem;
  }
  .sm\:mb-60 {
    margin-bottom: 15rem;
  }
  .sm\:mb-64 {
    margin-bottom: 16rem;
  }
  .sm\:mb-7 {
    margin-bottom: 1.75rem;
  }
  .sm\:mb-8 {
    margin-bottom: 2rem;
  }
  .sm\:mb-9 {
    margin-bottom: 2.25rem;
  }
  .sm\:ms-0 {
    margin-inline-start: 0px;
  }
  .sm\:ms-0\.5 {
    margin-inline-start: 0.125rem;
  }
  .sm\:ms-1 {
    margin-inline-start: 0.25rem;
  }
  .sm\:ms-1\.5 {
    margin-inline-start: 0.375rem;
  }
  .sm\:ms-10 {
    margin-inline-start: 2.5rem;
  }
  .sm\:ms-11 {
    margin-inline-start: 2.75rem;
  }
  .sm\:ms-12 {
    margin-inline-start: 3rem;
  }
  .sm\:ms-14 {
    margin-inline-start: 3.5rem;
  }
  .sm\:ms-16 {
    margin-inline-start: 4rem;
  }
  .sm\:ms-2 {
    margin-inline-start: 0.5rem;
  }
  .sm\:ms-2\.5 {
    margin-inline-start: 0.625rem;
  }
  .sm\:ms-20 {
    margin-inline-start: 5rem;
  }
  .sm\:ms-24 {
    margin-inline-start: 6rem;
  }
  .sm\:ms-3 {
    margin-inline-start: 0.75rem;
  }
  .sm\:ms-3\.5 {
    margin-inline-start: 0.875rem;
  }
  .sm\:ms-32 {
    margin-inline-start: 8rem;
  }
  .sm\:ms-36 {
    margin-inline-start: 9rem;
  }
  .sm\:ms-4 {
    margin-inline-start: 1rem;
  }
  .sm\:ms-40 {
    margin-inline-start: 10rem;
  }
  .sm\:ms-44 {
    margin-inline-start: 11rem;
  }
  .sm\:ms-5 {
    margin-inline-start: 1.25rem;
  }
  .sm\:ms-52 {
    margin-inline-start: 13rem;
  }
  .sm\:ms-56 {
    margin-inline-start: 14rem;
  }
  .sm\:ms-6 {
    margin-inline-start: 1.5rem;
  }
  .sm\:ms-60 {
    margin-inline-start: 15rem;
  }
  .sm\:ms-64 {
    margin-inline-start: 16rem;
  }
  .sm\:ms-7 {
    margin-inline-start: 1.75rem;
  }
  .sm\:ms-8 {
    margin-inline-start: 2rem;
  }
  .sm\:ms-9 {
    margin-inline-start: 2.25rem;
  }
  .sm\:mt-0 {
    margin-top: 0px;
  }
  .sm\:mt-0\.5 {
    margin-top: 0.125rem;
  }
  .sm\:mt-1 {
    margin-top: 0.25rem;
  }
  .sm\:mt-1\.5 {
    margin-top: 0.375rem;
  }
  .sm\:mt-10 {
    margin-top: 2.5rem;
  }
  .sm\:mt-11 {
    margin-top: 2.75rem;
  }
  .sm\:mt-12 {
    margin-top: 3rem;
  }
  .sm\:mt-14 {
    margin-top: 3.5rem;
  }
  .sm\:mt-16 {
    margin-top: 4rem;
  }
  .sm\:mt-2 {
    margin-top: 0.5rem;
  }
  .sm\:mt-2\.5 {
    margin-top: 0.625rem;
  }
  .sm\:mt-20 {
    margin-top: 5rem;
  }
  .sm\:mt-24 {
    margin-top: 6rem;
  }
  .sm\:mt-3 {
    margin-top: 0.75rem;
  }
  .sm\:mt-3\.5 {
    margin-top: 0.875rem;
  }
  .sm\:mt-32 {
    margin-top: 8rem;
  }
  .sm\:mt-36 {
    margin-top: 9rem;
  }
  .sm\:mt-4 {
    margin-top: 1rem;
  }
  .sm\:mt-40 {
    margin-top: 10rem;
  }
  .sm\:mt-44 {
    margin-top: 11rem;
  }
  .sm\:mt-5 {
    margin-top: 1.25rem;
  }
  .sm\:mt-52 {
    margin-top: 13rem;
  }
  .sm\:mt-56 {
    margin-top: 14rem;
  }
  .sm\:mt-6 {
    margin-top: 1.5rem;
  }
  .sm\:mt-60 {
    margin-top: 15rem;
  }
  .sm\:mt-64 {
    margin-top: 16rem;
  }
  .sm\:mt-7 {
    margin-top: 1.75rem;
  }
  .sm\:mt-8 {
    margin-top: 2rem;
  }
  .sm\:mt-9 {
    margin-top: 2.25rem;
  }
  .sm\:block {
    display: block;
  }
  .sm\:grid {
    display: grid;
  }
  .sm\:w-auto {
    width: auto;
  }
  .sm\:flex-shrink {
    flex-shrink: 1;
  }
  .sm\:flex-shrink-0 {
    flex-shrink: 0;
  }
  .sm\:flex-grow {
    flex-grow: 1;
  }
  .sm\:flex-grow-0 {
    flex-grow: 0;
  }
  .sm\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sm\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .sm\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .sm\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .sm\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .sm\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .sm\:grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }
  .sm\:grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }
  .sm\:grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }
  .sm\:grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }
  .sm\:grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }
  .sm\:grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }
  .sm\:grid-rows-7 {
    grid-template-rows: repeat(7, minmax(0, 1fr));
  }
  .sm\:grid-rows-8 {
    grid-template-rows: repeat(8, minmax(0, 1fr));
  }
  .sm\:flex-row {
    flex-direction: row;
  }
  .sm\:flex-row-reverse {
    flex-direction: row-reverse;
  }
  .sm\:flex-col {
    flex-direction: column;
  }
  .sm\:flex-col-reverse {
    flex-direction: column-reverse;
  }
  .sm\:flex-wrap {
    flex-wrap: wrap;
  }
  .sm\:flex-wrap-reverse {
    flex-wrap: wrap-reverse;
  }
  .sm\:items-start {
    align-items: flex-start;
  }
  .sm\:items-end {
    align-items: flex-end;
  }
  .sm\:items-center {
    align-items: center;
  }
  .sm\:items-baseline {
    align-items: baseline;
  }
  .sm\:items-stretch {
    align-items: stretch;
  }
  .sm\:justify-start {
    justify-content: flex-start;
  }
  .sm\:justify-end {
    justify-content: flex-end;
  }
  .sm\:justify-center {
    justify-content: center;
  }
  .sm\:justify-between {
    justify-content: space-between;
  }
  .sm\:justify-around {
    justify-content: space-around;
  }
  .sm\:justify-evenly {
    justify-content: space-evenly;
  }
  .sm\:gap-0 {
    gap: 0px;
  }
  .sm\:gap-0\.5 {
    gap: 0.125rem;
  }
  .sm\:gap-1 {
    gap: 0.25rem;
  }
  .sm\:gap-1\.5 {
    gap: 0.375rem;
  }
  .sm\:gap-10 {
    gap: 2.5rem;
  }
  .sm\:gap-11 {
    gap: 2.75rem;
  }
  .sm\:gap-12 {
    gap: 3rem;
  }
  .sm\:gap-14 {
    gap: 3.5rem;
  }
  .sm\:gap-16 {
    gap: 4rem;
  }
  .sm\:gap-2 {
    gap: 0.5rem;
  }
  .sm\:gap-2\.5 {
    gap: 0.625rem;
  }
  .sm\:gap-20 {
    gap: 5rem;
  }
  .sm\:gap-24 {
    gap: 6rem;
  }
  .sm\:gap-3 {
    gap: 0.75rem;
  }
  .sm\:gap-3\.5 {
    gap: 0.875rem;
  }
  .sm\:gap-32 {
    gap: 8rem;
  }
  .sm\:gap-36 {
    gap: 9rem;
  }
  .sm\:gap-4 {
    gap: 1rem;
  }
  .sm\:gap-40 {
    gap: 10rem;
  }
  .sm\:gap-44 {
    gap: 11rem;
  }
  .sm\:gap-5 {
    gap: 1.25rem;
  }
  .sm\:gap-52 {
    gap: 13rem;
  }
  .sm\:gap-56 {
    gap: 14rem;
  }
  .sm\:gap-6 {
    gap: 1.5rem;
  }
  .sm\:gap-60 {
    gap: 15rem;
  }
  .sm\:gap-64 {
    gap: 16rem;
  }
  .sm\:gap-7 {
    gap: 1.75rem;
  }
  .sm\:gap-8 {
    gap: 2rem;
  }
  .sm\:gap-9 {
    gap: 2.25rem;
  }
  .sm\:divide-x > :not([hidden]) ~ :not([hidden]) {
    --tw-divide-x-reverse: 0;
    border-right-width: calc(1px * var(--tw-divide-x-reverse));
    border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
  }
  .sm\:divide-y-0 > :not([hidden]) ~ :not([hidden]) {
    --tw-divide-y-reverse: 0;
    border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(0px * var(--tw-divide-y-reverse));
  }
  .sm\:self-auto {
    align-self: auto;
  }
  .sm\:self-start {
    align-self: flex-start;
  }
  .sm\:self-end {
    align-self: flex-end;
  }
  .sm\:self-center {
    align-self: center;
  }
  .sm\:self-stretch {
    align-self: stretch;
  }
  .sm\:self-baseline {
    align-self: baseline;
  }
  .sm\:pb-0 {
    padding-bottom: 0px;
  }
  .sm\:pb-0\.5 {
    padding-bottom: 0.125rem;
  }
  .sm\:pb-1 {
    padding-bottom: 0.25rem;
  }
  .sm\:pb-1\.5 {
    padding-bottom: 0.375rem;
  }
  .sm\:pb-10 {
    padding-bottom: 2.5rem;
  }
  .sm\:pb-11 {
    padding-bottom: 2.75rem;
  }
  .sm\:pb-12 {
    padding-bottom: 3rem;
  }
  .sm\:pb-14 {
    padding-bottom: 3.5rem;
  }
  .sm\:pb-16 {
    padding-bottom: 4rem;
  }
  .sm\:pb-2 {
    padding-bottom: 0.5rem;
  }
  .sm\:pb-2\.5 {
    padding-bottom: 0.625rem;
  }
  .sm\:pb-20 {
    padding-bottom: 5rem;
  }
  .sm\:pb-24 {
    padding-bottom: 6rem;
  }
  .sm\:pb-3 {
    padding-bottom: 0.75rem;
  }
  .sm\:pb-3\.5 {
    padding-bottom: 0.875rem;
  }
  .sm\:pb-32 {
    padding-bottom: 8rem;
  }
  .sm\:pb-36 {
    padding-bottom: 9rem;
  }
  .sm\:pb-4 {
    padding-bottom: 1rem;
  }
  .sm\:pb-40 {
    padding-bottom: 10rem;
  }
  .sm\:pb-44 {
    padding-bottom: 11rem;
  }
  .sm\:pb-5 {
    padding-bottom: 1.25rem;
  }
  .sm\:pb-52 {
    padding-bottom: 13rem;
  }
  .sm\:pb-56 {
    padding-bottom: 14rem;
  }
  .sm\:pb-6 {
    padding-bottom: 1.5rem;
  }
  .sm\:pb-60 {
    padding-bottom: 15rem;
  }
  .sm\:pb-64 {
    padding-bottom: 16rem;
  }
  .sm\:pb-7 {
    padding-bottom: 1.75rem;
  }
  .sm\:pb-8 {
    padding-bottom: 2rem;
  }
  .sm\:pb-9 {
    padding-bottom: 2.25rem;
  }
  .sm\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .sm\:text-base {
    font-size: 16px;
    line-height: 28px;
  }
  .sm\:text-lead {
    font-size: 20px;
    line-height: 28px;
  }
  .sm\:text-lg {
    font-size: 38px;
    line-height: 42px;
  }
  .sm\:text-sm {
    font-size: 14px;
    line-height: 18px;
  }
  .sm\:text-xl\/relaxed {
    font-size: 1.25rem;
    line-height: 1.625;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
  .md\:order-2 {
    order: 2;
  }
  .md\:order-3 {
    order: 3;
  }
  .md\:order-first {
    order: -9999;
  }
  .md\:order-last {
    order: 9999;
  }
  .md\:col-span-1 {
    grid-column: span 1 / span 1;
  }
  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .md\:col-span-3 {
    grid-column: span 3 / span 3;
  }
  .md\:col-span-4 {
    grid-column: span 4 / span 4;
  }
  .md\:col-span-5 {
    grid-column: span 5 / span 5;
  }
  .md\:col-span-6 {
    grid-column: span 6 / span 6;
  }
  .md\:col-span-7 {
    grid-column: span 7 / span 7;
  }
  .md\:col-span-8 {
    grid-column: span 8 / span 8;
  }
  .md\:col-start-1 {
    grid-column-start: 1;
  }
  .md\:col-start-2 {
    grid-column-start: 2;
  }
  .md\:col-start-3 {
    grid-column-start: 3;
  }
  .md\:col-start-4 {
    grid-column-start: 4;
  }
  .md\:col-start-5 {
    grid-column-start: 5;
  }
  .md\:col-start-6 {
    grid-column-start: 6;
  }
  .md\:col-start-7 {
    grid-column-start: 7;
  }
  .md\:col-start-8 {
    grid-column-start: 8;
  }
  .md\:col-end-1 {
    grid-column-end: 1;
  }
  .md\:col-end-2 {
    grid-column-end: 2;
  }
  .md\:col-end-3 {
    grid-column-end: 3;
  }
  .md\:col-end-4 {
    grid-column-end: 4;
  }
  .md\:col-end-5 {
    grid-column-end: 5;
  }
  .md\:col-end-6 {
    grid-column-end: 6;
  }
  .md\:col-end-7 {
    grid-column-end: 7;
  }
  .md\:col-end-8 {
    grid-column-end: 8;
  }
  .md\:row-span-1 {
    grid-row: span 1 / span 1;
  }
  .md\:row-span-2 {
    grid-row: span 2 / span 2;
  }
  .md\:row-span-3 {
    grid-row: span 3 / span 3;
  }
  .md\:row-span-4 {
    grid-row: span 4 / span 4;
  }
  .md\:row-span-5 {
    grid-row: span 5 / span 5;
  }
  .md\:row-span-6 {
    grid-row: span 6 / span 6;
  }
  .md\:row-span-7 {
    grid-row: span 7 / span 7;
  }
  .md\:row-span-8 {
    grid-row: span 8 / span 8;
  }
  .md\:row-start-1 {
    grid-row-start: 1;
  }
  .md\:row-start-2 {
    grid-row-start: 2;
  }
  .md\:row-start-3 {
    grid-row-start: 3;
  }
  .md\:row-start-4 {
    grid-row-start: 4;
  }
  .md\:row-start-5 {
    grid-row-start: 5;
  }
  .md\:row-start-6 {
    grid-row-start: 6;
  }
  .md\:row-start-7 {
    grid-row-start: 7;
  }
  .md\:row-start-8 {
    grid-row-start: 8;
  }
  .md\:row-end-1 {
    grid-row-end: 1;
  }
  .md\:row-end-2 {
    grid-row-end: 2;
  }
  .md\:row-end-3 {
    grid-row-end: 3;
  }
  .md\:row-end-4 {
    grid-row-end: 4;
  }
  .md\:row-end-5 {
    grid-row-end: 5;
  }
  .md\:row-end-6 {
    grid-row-end: 6;
  }
  .md\:row-end-7 {
    grid-row-end: 7;
  }
  .md\:row-end-8 {
    grid-row-end: 8;
  }
  .md\:mb-0 {
    margin-bottom: 0px;
  }
  .md\:mb-0\.5 {
    margin-bottom: 0.125rem;
  }
  .md\:mb-1 {
    margin-bottom: 0.25rem;
  }
  .md\:mb-1\.5 {
    margin-bottom: 0.375rem;
  }
  .md\:mb-10 {
    margin-bottom: 2.5rem;
  }
  .md\:mb-11 {
    margin-bottom: 2.75rem;
  }
  .md\:mb-12 {
    margin-bottom: 3rem;
  }
  .md\:mb-14 {
    margin-bottom: 3.5rem;
  }
  .md\:mb-16 {
    margin-bottom: 4rem;
  }
  .md\:mb-2 {
    margin-bottom: 0.5rem;
  }
  .md\:mb-2\.5 {
    margin-bottom: 0.625rem;
  }
  .md\:mb-20 {
    margin-bottom: 5rem;
  }
  .md\:mb-24 {
    margin-bottom: 6rem;
  }
  .md\:mb-3 {
    margin-bottom: 0.75rem;
  }
  .md\:mb-3\.5 {
    margin-bottom: 0.875rem;
  }
  .md\:mb-32 {
    margin-bottom: 8rem;
  }
  .md\:mb-36 {
    margin-bottom: 9rem;
  }
  .md\:mb-4 {
    margin-bottom: 1rem;
  }
  .md\:mb-40 {
    margin-bottom: 10rem;
  }
  .md\:mb-44 {
    margin-bottom: 11rem;
  }
  .md\:mb-5 {
    margin-bottom: 1.25rem;
  }
  .md\:mb-52 {
    margin-bottom: 13rem;
  }
  .md\:mb-56 {
    margin-bottom: 14rem;
  }
  .md\:mb-6 {
    margin-bottom: 1.5rem;
  }
  .md\:mb-60 {
    margin-bottom: 15rem;
  }
  .md\:mb-64 {
    margin-bottom: 16rem;
  }
  .md\:mb-7 {
    margin-bottom: 1.75rem;
  }
  .md\:mb-8 {
    margin-bottom: 2rem;
  }
  .md\:mb-9 {
    margin-bottom: 2.25rem;
  }
  .md\:ms-0 {
    margin-inline-start: 0px;
  }
  .md\:ms-0\.5 {
    margin-inline-start: 0.125rem;
  }
  .md\:ms-1 {
    margin-inline-start: 0.25rem;
  }
  .md\:ms-1\.5 {
    margin-inline-start: 0.375rem;
  }
  .md\:ms-10 {
    margin-inline-start: 2.5rem;
  }
  .md\:ms-11 {
    margin-inline-start: 2.75rem;
  }
  .md\:ms-12 {
    margin-inline-start: 3rem;
  }
  .md\:ms-14 {
    margin-inline-start: 3.5rem;
  }
  .md\:ms-16 {
    margin-inline-start: 4rem;
  }
  .md\:ms-2 {
    margin-inline-start: 0.5rem;
  }
  .md\:ms-2\.5 {
    margin-inline-start: 0.625rem;
  }
  .md\:ms-20 {
    margin-inline-start: 5rem;
  }
  .md\:ms-24 {
    margin-inline-start: 6rem;
  }
  .md\:ms-3 {
    margin-inline-start: 0.75rem;
  }
  .md\:ms-3\.5 {
    margin-inline-start: 0.875rem;
  }
  .md\:ms-32 {
    margin-inline-start: 8rem;
  }
  .md\:ms-36 {
    margin-inline-start: 9rem;
  }
  .md\:ms-4 {
    margin-inline-start: 1rem;
  }
  .md\:ms-40 {
    margin-inline-start: 10rem;
  }
  .md\:ms-44 {
    margin-inline-start: 11rem;
  }
  .md\:ms-5 {
    margin-inline-start: 1.25rem;
  }
  .md\:ms-52 {
    margin-inline-start: 13rem;
  }
  .md\:ms-56 {
    margin-inline-start: 14rem;
  }
  .md\:ms-6 {
    margin-inline-start: 1.5rem;
  }
  .md\:ms-60 {
    margin-inline-start: 15rem;
  }
  .md\:ms-64 {
    margin-inline-start: 16rem;
  }
  .md\:ms-7 {
    margin-inline-start: 1.75rem;
  }
  .md\:ms-8 {
    margin-inline-start: 2rem;
  }
  .md\:ms-9 {
    margin-inline-start: 2.25rem;
  }
  .md\:mt-0 {
    margin-top: 0px;
  }
  .md\:mt-0\.5 {
    margin-top: 0.125rem;
  }
  .md\:mt-1 {
    margin-top: 0.25rem;
  }
  .md\:mt-1\.5 {
    margin-top: 0.375rem;
  }
  .md\:mt-10 {
    margin-top: 2.5rem;
  }
  .md\:mt-11 {
    margin-top: 2.75rem;
  }
  .md\:mt-12 {
    margin-top: 3rem;
  }
  .md\:mt-14 {
    margin-top: 3.5rem;
  }
  .md\:mt-16 {
    margin-top: 4rem;
  }
  .md\:mt-2 {
    margin-top: 0.5rem;
  }
  .md\:mt-2\.5 {
    margin-top: 0.625rem;
  }
  .md\:mt-20 {
    margin-top: 5rem;
  }
  .md\:mt-24 {
    margin-top: 6rem;
  }
  .md\:mt-3 {
    margin-top: 0.75rem;
  }
  .md\:mt-3\.5 {
    margin-top: 0.875rem;
  }
  .md\:mt-32 {
    margin-top: 8rem;
  }
  .md\:mt-36 {
    margin-top: 9rem;
  }
  .md\:mt-4 {
    margin-top: 1rem;
  }
  .md\:mt-40 {
    margin-top: 10rem;
  }
  .md\:mt-44 {
    margin-top: 11rem;
  }
  .md\:mt-5 {
    margin-top: 1.25rem;
  }
  .md\:mt-52 {
    margin-top: 13rem;
  }
  .md\:mt-56 {
    margin-top: 14rem;
  }
  .md\:mt-6 {
    margin-top: 1.5rem;
  }
  .md\:mt-60 {
    margin-top: 15rem;
  }
  .md\:mt-64 {
    margin-top: 16rem;
  }
  .md\:mt-7 {
    margin-top: 1.75rem;
  }
  .md\:mt-8 {
    margin-top: 2rem;
  }
  .md\:mt-9 {
    margin-top: 2.25rem;
  }
  .md\:flex {
    display: flex;
  }
  .md\:grid {
    display: grid;
  }
  .md\:flex-shrink {
    flex-shrink: 1;
  }
  .md\:flex-shrink-0 {
    flex-shrink: 0;
  }
  .md\:flex-grow {
    flex-grow: 1;
  }
  .md\:flex-grow-0 {
    flex-grow: 0;
  }
  .md\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .md\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .md\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .md\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .md\:grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }
  .md\:grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }
  .md\:grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }
  .md\:grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }
  .md\:grid-rows-7 {
    grid-template-rows: repeat(7, minmax(0, 1fr));
  }
  .md\:grid-rows-8 {
    grid-template-rows: repeat(8, minmax(0, 1fr));
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:flex-row-reverse {
    flex-direction: row-reverse;
  }
  .md\:flex-col {
    flex-direction: column;
  }
  .md\:flex-col-reverse {
    flex-direction: column-reverse;
  }
  .md\:flex-wrap {
    flex-wrap: wrap;
  }
  .md\:flex-wrap-reverse {
    flex-wrap: wrap-reverse;
  }
  .md\:items-start {
    align-items: flex-start;
  }
  .md\:items-end {
    align-items: flex-end;
  }
  .md\:items-center {
    align-items: center;
  }
  .md\:items-baseline {
    align-items: baseline;
  }
  .md\:items-stretch {
    align-items: stretch;
  }
  .md\:justify-start {
    justify-content: flex-start;
  }
  .md\:justify-end {
    justify-content: flex-end;
  }
  .md\:justify-center {
    justify-content: center;
  }
  .md\:justify-between {
    justify-content: space-between;
  }
  .md\:justify-around {
    justify-content: space-around;
  }
  .md\:justify-evenly {
    justify-content: space-evenly;
  }
  .md\:gap-0 {
    gap: 0px;
  }
  .md\:gap-0\.5 {
    gap: 0.125rem;
  }
  .md\:gap-1 {
    gap: 0.25rem;
  }
  .md\:gap-1\.5 {
    gap: 0.375rem;
  }
  .md\:gap-10 {
    gap: 2.5rem;
  }
  .md\:gap-11 {
    gap: 2.75rem;
  }
  .md\:gap-12 {
    gap: 3rem;
  }
  .md\:gap-14 {
    gap: 3.5rem;
  }
  .md\:gap-16 {
    gap: 4rem;
  }
  .md\:gap-2 {
    gap: 0.5rem;
  }
  .md\:gap-2\.5 {
    gap: 0.625rem;
  }
  .md\:gap-20 {
    gap: 5rem;
  }
  .md\:gap-24 {
    gap: 6rem;
  }
  .md\:gap-3 {
    gap: 0.75rem;
  }
  .md\:gap-3\.5 {
    gap: 0.875rem;
  }
  .md\:gap-32 {
    gap: 8rem;
  }
  .md\:gap-36 {
    gap: 9rem;
  }
  .md\:gap-4 {
    gap: 1rem;
  }
  .md\:gap-40 {
    gap: 10rem;
  }
  .md\:gap-44 {
    gap: 11rem;
  }
  .md\:gap-5 {
    gap: 1.25rem;
  }
  .md\:gap-52 {
    gap: 13rem;
  }
  .md\:gap-56 {
    gap: 14rem;
  }
  .md\:gap-6 {
    gap: 1.5rem;
  }
  .md\:gap-60 {
    gap: 15rem;
  }
  .md\:gap-64 {
    gap: 16rem;
  }
  .md\:gap-7 {
    gap: 1.75rem;
  }
  .md\:gap-8 {
    gap: 2rem;
  }
  .md\:gap-9 {
    gap: 2.25rem;
  }
  .md\:space-x-4 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
  }
  .md\:self-auto {
    align-self: auto;
  }
  .md\:self-start {
    align-self: flex-start;
  }
  .md\:self-end {
    align-self: flex-end;
  }
  .md\:self-center {
    align-self: center;
  }
  .md\:self-stretch {
    align-self: stretch;
  }
  .md\:self-baseline {
    align-self: baseline;
  }
  .md\:p-5 {
    padding: 1.25rem;
  }
  .md\:pb-0 {
    padding-bottom: 0px;
  }
  .md\:pb-0\.5 {
    padding-bottom: 0.125rem;
  }
  .md\:pb-1 {
    padding-bottom: 0.25rem;
  }
  .md\:pb-1\.5 {
    padding-bottom: 0.375rem;
  }
  .md\:pb-10 {
    padding-bottom: 2.5rem;
  }
  .md\:pb-11 {
    padding-bottom: 2.75rem;
  }
  .md\:pb-12 {
    padding-bottom: 3rem;
  }
  .md\:pb-14 {
    padding-bottom: 3.5rem;
  }
  .md\:pb-16 {
    padding-bottom: 4rem;
  }
  .md\:pb-2 {
    padding-bottom: 0.5rem;
  }
  .md\:pb-2\.5 {
    padding-bottom: 0.625rem;
  }
  .md\:pb-20 {
    padding-bottom: 5rem;
  }
  .md\:pb-24 {
    padding-bottom: 6rem;
  }
  .md\:pb-3 {
    padding-bottom: 0.75rem;
  }
  .md\:pb-3\.5 {
    padding-bottom: 0.875rem;
  }
  .md\:pb-32 {
    padding-bottom: 8rem;
  }
  .md\:pb-36 {
    padding-bottom: 9rem;
  }
  .md\:pb-4 {
    padding-bottom: 1rem;
  }
  .md\:pb-40 {
    padding-bottom: 10rem;
  }
  .md\:pb-44 {
    padding-bottom: 11rem;
  }
  .md\:pb-5 {
    padding-bottom: 1.25rem;
  }
  .md\:pb-52 {
    padding-bottom: 13rem;
  }
  .md\:pb-56 {
    padding-bottom: 14rem;
  }
  .md\:pb-6 {
    padding-bottom: 1.5rem;
  }
  .md\:pb-60 {
    padding-bottom: 15rem;
  }
  .md\:pb-64 {
    padding-bottom: 16rem;
  }
  .md\:pb-7 {
    padding-bottom: 1.75rem;
  }
  .md\:pb-8 {
    padding-bottom: 2rem;
  }
  .md\:pb-9 {
    padding-bottom: 2.25rem;
  }
  .md\:text-left {
    text-align: left;
  }
  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .md\:text-base {
    font-size: 16px;
    line-height: 28px;
  }
  .md\:text-lead {
    font-size: 20px;
    line-height: 28px;
  }
  .md\:text-lg {
    font-size: 38px;
    line-height: 42px;
  }
  .md\:text-sm {
    font-size: 14px;
    line-height: 18px;
  }
}
@media (min-width: 1024px) {
    h2 {
      font-size: 3rem;
      line-height: 3.25rem;
    }
    h3 {
      font-size: 2rem;
      line-height: 3rem;
    }
    .container {
    max-width: 1200px;
  }
    .lg\:order-2 {
    order: 2;
  }
    .lg\:order-3 {
    order: 3;
  }
    .lg\:order-first {
    order: -9999;
  }
    .lg\:order-last {
    order: 9999;
  }
    .lg\:col-span-1 {
    grid-column: span 1 / span 1;
  }
    .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }
    .lg\:col-span-3 {
    grid-column: span 3 / span 3;
  }
    .lg\:col-span-4 {
    grid-column: span 4 / span 4;
  }
    .lg\:col-span-5 {
    grid-column: span 5 / span 5;
  }
    .lg\:col-span-6 {
    grid-column: span 6 / span 6;
  }
    .lg\:col-span-7 {
    grid-column: span 7 / span 7;
  }
    .lg\:col-span-8 {
    grid-column: span 8 / span 8;
  }
    .lg\:col-start-1 {
    grid-column-start: 1;
  }
    .lg\:col-start-2 {
    grid-column-start: 2;
  }
    .lg\:col-start-3 {
    grid-column-start: 3;
  }
    .lg\:col-start-4 {
    grid-column-start: 4;
  }
    .lg\:col-start-5 {
    grid-column-start: 5;
  }
    .lg\:col-start-6 {
    grid-column-start: 6;
  }
    .lg\:col-start-7 {
    grid-column-start: 7;
  }
    .lg\:col-start-8 {
    grid-column-start: 8;
  }
    .lg\:col-end-1 {
    grid-column-end: 1;
  }
    .lg\:col-end-2 {
    grid-column-end: 2;
  }
    .lg\:col-end-3 {
    grid-column-end: 3;
  }
    .lg\:col-end-4 {
    grid-column-end: 4;
  }
    .lg\:col-end-5 {
    grid-column-end: 5;
  }
    .lg\:col-end-6 {
    grid-column-end: 6;
  }
    .lg\:col-end-7 {
    grid-column-end: 7;
  }
    .lg\:col-end-8 {
    grid-column-end: 8;
  }
    .lg\:row-span-1 {
    grid-row: span 1 / span 1;
  }
    .lg\:row-span-2 {
    grid-row: span 2 / span 2;
  }
    .lg\:row-span-3 {
    grid-row: span 3 / span 3;
  }
    .lg\:row-span-4 {
    grid-row: span 4 / span 4;
  }
    .lg\:row-span-5 {
    grid-row: span 5 / span 5;
  }
    .lg\:row-span-6 {
    grid-row: span 6 / span 6;
  }
    .lg\:row-span-7 {
    grid-row: span 7 / span 7;
  }
    .lg\:row-span-8 {
    grid-row: span 8 / span 8;
  }
    .lg\:row-start-1 {
    grid-row-start: 1;
  }
    .lg\:row-start-2 {
    grid-row-start: 2;
  }
    .lg\:row-start-3 {
    grid-row-start: 3;
  }
    .lg\:row-start-4 {
    grid-row-start: 4;
  }
    .lg\:row-start-5 {
    grid-row-start: 5;
  }
    .lg\:row-start-6 {
    grid-row-start: 6;
  }
    .lg\:row-start-7 {
    grid-row-start: 7;
  }
    .lg\:row-start-8 {
    grid-row-start: 8;
  }
    .lg\:row-end-1 {
    grid-row-end: 1;
  }
    .lg\:row-end-2 {
    grid-row-end: 2;
  }
    .lg\:row-end-3 {
    grid-row-end: 3;
  }
    .lg\:row-end-4 {
    grid-row-end: 4;
  }
    .lg\:row-end-5 {
    grid-row-end: 5;
  }
    .lg\:row-end-6 {
    grid-row-end: 6;
  }
    .lg\:row-end-7 {
    grid-row-end: 7;
  }
    .lg\:row-end-8 {
    grid-row-end: 8;
  }
    .lg\:-mx-6 {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
    .lg\:mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
    .lg\:mb-0 {
    margin-bottom: 0px;
  }
    .lg\:mb-0\.5 {
    margin-bottom: 0.125rem;
  }
    .lg\:mb-1 {
    margin-bottom: 0.25rem;
  }
    .lg\:mb-1\.5 {
    margin-bottom: 0.375rem;
  }
    .lg\:mb-10 {
    margin-bottom: 2.5rem;
  }
    .lg\:mb-11 {
    margin-bottom: 2.75rem;
  }
    .lg\:mb-12 {
    margin-bottom: 3rem;
  }
    .lg\:mb-14 {
    margin-bottom: 3.5rem;
  }
    .lg\:mb-16 {
    margin-bottom: 4rem;
  }
    .lg\:mb-2 {
    margin-bottom: 0.5rem;
  }
    .lg\:mb-2\.5 {
    margin-bottom: 0.625rem;
  }
    .lg\:mb-20 {
    margin-bottom: 5rem;
  }
    .lg\:mb-24 {
    margin-bottom: 6rem;
  }
    .lg\:mb-3 {
    margin-bottom: 0.75rem;
  }
    .lg\:mb-3\.5 {
    margin-bottom: 0.875rem;
  }
    .lg\:mb-32 {
    margin-bottom: 8rem;
  }
    .lg\:mb-36 {
    margin-bottom: 9rem;
  }
    .lg\:mb-4 {
    margin-bottom: 1rem;
  }
    .lg\:mb-40 {
    margin-bottom: 10rem;
  }
    .lg\:mb-44 {
    margin-bottom: 11rem;
  }
    .lg\:mb-5 {
    margin-bottom: 1.25rem;
  }
    .lg\:mb-52 {
    margin-bottom: 13rem;
  }
    .lg\:mb-56 {
    margin-bottom: 14rem;
  }
    .lg\:mb-6 {
    margin-bottom: 1.5rem;
  }
    .lg\:mb-60 {
    margin-bottom: 15rem;
  }
    .lg\:mb-64 {
    margin-bottom: 16rem;
  }
    .lg\:mb-7 {
    margin-bottom: 1.75rem;
  }
    .lg\:mb-8 {
    margin-bottom: 2rem;
  }
    .lg\:mb-9 {
    margin-bottom: 2.25rem;
  }
    .lg\:ml-12 {
    margin-left: 3rem;
  }
    .lg\:ms-0 {
    margin-inline-start: 0px;
  }
    .lg\:ms-0\.5 {
    margin-inline-start: 0.125rem;
  }
    .lg\:ms-1 {
    margin-inline-start: 0.25rem;
  }
    .lg\:ms-1\.5 {
    margin-inline-start: 0.375rem;
  }
    .lg\:ms-10 {
    margin-inline-start: 2.5rem;
  }
    .lg\:ms-11 {
    margin-inline-start: 2.75rem;
  }
    .lg\:ms-12 {
    margin-inline-start: 3rem;
  }
    .lg\:ms-14 {
    margin-inline-start: 3.5rem;
  }
    .lg\:ms-16 {
    margin-inline-start: 4rem;
  }
    .lg\:ms-2 {
    margin-inline-start: 0.5rem;
  }
    .lg\:ms-2\.5 {
    margin-inline-start: 0.625rem;
  }
    .lg\:ms-20 {
    margin-inline-start: 5rem;
  }
    .lg\:ms-24 {
    margin-inline-start: 6rem;
  }
    .lg\:ms-3 {
    margin-inline-start: 0.75rem;
  }
    .lg\:ms-3\.5 {
    margin-inline-start: 0.875rem;
  }
    .lg\:ms-32 {
    margin-inline-start: 8rem;
  }
    .lg\:ms-36 {
    margin-inline-start: 9rem;
  }
    .lg\:ms-4 {
    margin-inline-start: 1rem;
  }
    .lg\:ms-40 {
    margin-inline-start: 10rem;
  }
    .lg\:ms-44 {
    margin-inline-start: 11rem;
  }
    .lg\:ms-5 {
    margin-inline-start: 1.25rem;
  }
    .lg\:ms-52 {
    margin-inline-start: 13rem;
  }
    .lg\:ms-56 {
    margin-inline-start: 14rem;
  }
    .lg\:ms-6 {
    margin-inline-start: 1.5rem;
  }
    .lg\:ms-60 {
    margin-inline-start: 15rem;
  }
    .lg\:ms-64 {
    margin-inline-start: 16rem;
  }
    .lg\:ms-7 {
    margin-inline-start: 1.75rem;
  }
    .lg\:ms-8 {
    margin-inline-start: 2rem;
  }
    .lg\:ms-9 {
    margin-inline-start: 2.25rem;
  }
    .lg\:mt-0 {
    margin-top: 0px;
  }
    .lg\:mt-0\.5 {
    margin-top: 0.125rem;
  }
    .lg\:mt-1 {
    margin-top: 0.25rem;
  }
    .lg\:mt-1\.5 {
    margin-top: 0.375rem;
  }
    .lg\:mt-10 {
    margin-top: 2.5rem;
  }
    .lg\:mt-11 {
    margin-top: 2.75rem;
  }
    .lg\:mt-12 {
    margin-top: 3rem;
  }
    .lg\:mt-14 {
    margin-top: 3.5rem;
  }
    .lg\:mt-16 {
    margin-top: 4rem;
  }
    .lg\:mt-2 {
    margin-top: 0.5rem;
  }
    .lg\:mt-2\.5 {
    margin-top: 0.625rem;
  }
    .lg\:mt-20 {
    margin-top: 5rem;
  }
    .lg\:mt-24 {
    margin-top: 6rem;
  }
    .lg\:mt-3 {
    margin-top: 0.75rem;
  }
    .lg\:mt-3\.5 {
    margin-top: 0.875rem;
  }
    .lg\:mt-32 {
    margin-top: 8rem;
  }
    .lg\:mt-36 {
    margin-top: 9rem;
  }
    .lg\:mt-4 {
    margin-top: 1rem;
  }
    .lg\:mt-40 {
    margin-top: 10rem;
  }
    .lg\:mt-44 {
    margin-top: 11rem;
  }
    .lg\:mt-5 {
    margin-top: 1.25rem;
  }
    .lg\:mt-52 {
    margin-top: 13rem;
  }
    .lg\:mt-56 {
    margin-top: 14rem;
  }
    .lg\:mt-6 {
    margin-top: 1.5rem;
  }
    .lg\:mt-60 {
    margin-top: 15rem;
  }
    .lg\:mt-64 {
    margin-top: 16rem;
  }
    .lg\:mt-7 {
    margin-top: 1.75rem;
  }
    .lg\:mt-8 {
    margin-top: 2rem;
  }
    .lg\:mt-9 {
    margin-top: 2.25rem;
  }
    .lg\:\!flex {
    display: flex !important;
  }
    .lg\:flex {
    display: flex;
  }
    .lg\:grid {
    display: grid;
  }
    .lg\:hidden {
    display: none;
  }
    .lg\:\!h-auto {
    height: auto !important;
  }
    .lg\:h-96 {
    height: 24rem;
  }
    .lg\:h-screen {
    height: 100vh;
  }
    .lg\:w-1\/2 {
    width: 50%;
  }
    .lg\:flex-shrink {
    flex-shrink: 1;
  }
    .lg\:flex-shrink-0 {
    flex-shrink: 0;
  }
    .lg\:flex-grow {
    flex-grow: 1;
  }
    .lg\:flex-grow-0 {
    flex-grow: 0;
  }
    .lg\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
    .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
    .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
    .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
    .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
    .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
    .lg\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
    .lg\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
    .lg\:grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }
    .lg\:grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }
    .lg\:grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }
    .lg\:grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }
    .lg\:grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }
    .lg\:grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }
    .lg\:grid-rows-7 {
    grid-template-rows: repeat(7, minmax(0, 1fr));
  }
    .lg\:grid-rows-8 {
    grid-template-rows: repeat(8, minmax(0, 1fr));
  }
    .lg\:flex-row {
    flex-direction: row;
  }
    .lg\:flex-row-reverse {
    flex-direction: row-reverse;
  }
    .lg\:flex-col {
    flex-direction: column;
  }
    .lg\:flex-col-reverse {
    flex-direction: column-reverse;
  }
    .lg\:flex-wrap {
    flex-wrap: wrap;
  }
    .lg\:flex-wrap-reverse {
    flex-wrap: wrap-reverse;
  }
    .lg\:items-start {
    align-items: flex-start;
  }
    .lg\:items-end {
    align-items: flex-end;
  }
    .lg\:items-center {
    align-items: center;
  }
    .lg\:items-baseline {
    align-items: baseline;
  }
    .lg\:items-stretch {
    align-items: stretch;
  }
    .lg\:justify-start {
    justify-content: flex-start;
  }
    .lg\:justify-end {
    justify-content: flex-end;
  }
    .lg\:justify-center {
    justify-content: center;
  }
    .lg\:justify-between {
    justify-content: space-between;
  }
    .lg\:justify-around {
    justify-content: space-around;
  }
    .lg\:justify-evenly {
    justify-content: space-evenly;
  }
    .lg\:gap-0 {
    gap: 0px;
  }
    .lg\:gap-0\.5 {
    gap: 0.125rem;
  }
    .lg\:gap-1 {
    gap: 0.25rem;
  }
    .lg\:gap-1\.5 {
    gap: 0.375rem;
  }
    .lg\:gap-10 {
    gap: 2.5rem;
  }
    .lg\:gap-11 {
    gap: 2.75rem;
  }
    .lg\:gap-12 {
    gap: 3rem;
  }
    .lg\:gap-14 {
    gap: 3.5rem;
  }
    .lg\:gap-16 {
    gap: 4rem;
  }
    .lg\:gap-2 {
    gap: 0.5rem;
  }
    .lg\:gap-2\.5 {
    gap: 0.625rem;
  }
    .lg\:gap-20 {
    gap: 5rem;
  }
    .lg\:gap-24 {
    gap: 6rem;
  }
    .lg\:gap-3 {
    gap: 0.75rem;
  }
    .lg\:gap-3\.5 {
    gap: 0.875rem;
  }
    .lg\:gap-32 {
    gap: 8rem;
  }
    .lg\:gap-36 {
    gap: 9rem;
  }
    .lg\:gap-4 {
    gap: 1rem;
  }
    .lg\:gap-40 {
    gap: 10rem;
  }
    .lg\:gap-44 {
    gap: 11rem;
  }
    .lg\:gap-5 {
    gap: 1.25rem;
  }
    .lg\:gap-52 {
    gap: 13rem;
  }
    .lg\:gap-56 {
    gap: 14rem;
  }
    .lg\:gap-6 {
    gap: 1.5rem;
  }
    .lg\:gap-60 {
    gap: 15rem;
  }
    .lg\:gap-64 {
    gap: 16rem;
  }
    .lg\:gap-7 {
    gap: 1.75rem;
  }
    .lg\:gap-8 {
    gap: 2rem;
  }
    .lg\:gap-9 {
    gap: 2.25rem;
  }
    .lg\:space-x-8 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(2rem * var(--tw-space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
  }
    .lg\:self-auto {
    align-self: auto;
  }
    .lg\:self-start {
    align-self: flex-start;
  }
    .lg\:self-end {
    align-self: flex-end;
  }
    .lg\:self-center {
    align-self: center;
  }
    .lg\:self-stretch {
    align-self: stretch;
  }
    .lg\:self-baseline {
    align-self: baseline;
  }
    .lg\:\!overflow-visible {
    overflow: visible !important;
  }
    .lg\:bg-transparent {
    background-color: transparent;
  }
    .lg\:p-0 {
    padding: 0px;
  }
    .lg\:pb-0 {
    padding-bottom: 0px;
  }
    .lg\:pb-0\.5 {
    padding-bottom: 0.125rem;
  }
    .lg\:pb-1 {
    padding-bottom: 0.25rem;
  }
    .lg\:pb-1\.5 {
    padding-bottom: 0.375rem;
  }
    .lg\:pb-10 {
    padding-bottom: 2.5rem;
  }
    .lg\:pb-11 {
    padding-bottom: 2.75rem;
  }
    .lg\:pb-12 {
    padding-bottom: 3rem;
  }
    .lg\:pb-14 {
    padding-bottom: 3.5rem;
  }
    .lg\:pb-16 {
    padding-bottom: 4rem;
  }
    .lg\:pb-2 {
    padding-bottom: 0.5rem;
  }
    .lg\:pb-2\.5 {
    padding-bottom: 0.625rem;
  }
    .lg\:pb-20 {
    padding-bottom: 5rem;
  }
    .lg\:pb-24 {
    padding-bottom: 6rem;
  }
    .lg\:pb-3 {
    padding-bottom: 0.75rem;
  }
    .lg\:pb-3\.5 {
    padding-bottom: 0.875rem;
  }
    .lg\:pb-32 {
    padding-bottom: 8rem;
  }
    .lg\:pb-36 {
    padding-bottom: 9rem;
  }
    .lg\:pb-4 {
    padding-bottom: 1rem;
  }
    .lg\:pb-40 {
    padding-bottom: 10rem;
  }
    .lg\:pb-44 {
    padding-bottom: 11rem;
  }
    .lg\:pb-5 {
    padding-bottom: 1.25rem;
  }
    .lg\:pb-52 {
    padding-bottom: 13rem;
  }
    .lg\:pb-56 {
    padding-bottom: 14rem;
  }
    .lg\:pb-6 {
    padding-bottom: 1.5rem;
  }
    .lg\:pb-60 {
    padding-bottom: 15rem;
  }
    .lg\:pb-64 {
    padding-bottom: 16rem;
  }
    .lg\:pb-7 {
    padding-bottom: 1.75rem;
  }
    .lg\:pb-8 {
    padding-bottom: 2rem;
  }
    .lg\:pb-9 {
    padding-bottom: 2.25rem;
  }
    .lg\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
    .lg\:text-base {
    font-size: 16px;
    line-height: 28px;
  }
    .lg\:text-lead {
    font-size: 20px;
    line-height: 28px;
  }
    .lg\:text-lg {
    font-size: 38px;
    line-height: 42px;
  }
    .lg\:text-sm {
    font-size: 14px;
    line-height: 18px;
  }
    .lg\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .jonnitto-prettyembed--video {
    max-height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
    margin-top: 0;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1400px;
  }
  .xl\:order-2 {
    order: 2;
  }
  .xl\:order-3 {
    order: 3;
  }
  .xl\:order-first {
    order: -9999;
  }
  .xl\:order-last {
    order: 9999;
  }
  .xl\:col-span-1 {
    grid-column: span 1 / span 1;
  }
  .xl\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .xl\:col-span-3 {
    grid-column: span 3 / span 3;
  }
  .xl\:col-span-4 {
    grid-column: span 4 / span 4;
  }
  .xl\:col-span-5 {
    grid-column: span 5 / span 5;
  }
  .xl\:col-span-6 {
    grid-column: span 6 / span 6;
  }
  .xl\:col-span-7 {
    grid-column: span 7 / span 7;
  }
  .xl\:col-span-8 {
    grid-column: span 8 / span 8;
  }
  .xl\:col-start-1 {
    grid-column-start: 1;
  }
  .xl\:col-start-2 {
    grid-column-start: 2;
  }
  .xl\:col-start-3 {
    grid-column-start: 3;
  }
  .xl\:col-start-4 {
    grid-column-start: 4;
  }
  .xl\:col-start-5 {
    grid-column-start: 5;
  }
  .xl\:col-start-6 {
    grid-column-start: 6;
  }
  .xl\:col-start-7 {
    grid-column-start: 7;
  }
  .xl\:col-start-8 {
    grid-column-start: 8;
  }
  .xl\:col-end-1 {
    grid-column-end: 1;
  }
  .xl\:col-end-2 {
    grid-column-end: 2;
  }
  .xl\:col-end-3 {
    grid-column-end: 3;
  }
  .xl\:col-end-4 {
    grid-column-end: 4;
  }
  .xl\:col-end-5 {
    grid-column-end: 5;
  }
  .xl\:col-end-6 {
    grid-column-end: 6;
  }
  .xl\:col-end-7 {
    grid-column-end: 7;
  }
  .xl\:col-end-8 {
    grid-column-end: 8;
  }
  .xl\:row-span-1 {
    grid-row: span 1 / span 1;
  }
  .xl\:row-span-2 {
    grid-row: span 2 / span 2;
  }
  .xl\:row-span-3 {
    grid-row: span 3 / span 3;
  }
  .xl\:row-span-4 {
    grid-row: span 4 / span 4;
  }
  .xl\:row-span-5 {
    grid-row: span 5 / span 5;
  }
  .xl\:row-span-6 {
    grid-row: span 6 / span 6;
  }
  .xl\:row-span-7 {
    grid-row: span 7 / span 7;
  }
  .xl\:row-span-8 {
    grid-row: span 8 / span 8;
  }
  .xl\:row-start-1 {
    grid-row-start: 1;
  }
  .xl\:row-start-2 {
    grid-row-start: 2;
  }
  .xl\:row-start-3 {
    grid-row-start: 3;
  }
  .xl\:row-start-4 {
    grid-row-start: 4;
  }
  .xl\:row-start-5 {
    grid-row-start: 5;
  }
  .xl\:row-start-6 {
    grid-row-start: 6;
  }
  .xl\:row-start-7 {
    grid-row-start: 7;
  }
  .xl\:row-start-8 {
    grid-row-start: 8;
  }
  .xl\:row-end-1 {
    grid-row-end: 1;
  }
  .xl\:row-end-2 {
    grid-row-end: 2;
  }
  .xl\:row-end-3 {
    grid-row-end: 3;
  }
  .xl\:row-end-4 {
    grid-row-end: 4;
  }
  .xl\:row-end-5 {
    grid-row-end: 5;
  }
  .xl\:row-end-6 {
    grid-row-end: 6;
  }
  .xl\:row-end-7 {
    grid-row-end: 7;
  }
  .xl\:row-end-8 {
    grid-row-end: 8;
  }
  .xl\:mb-0 {
    margin-bottom: 0px;
  }
  .xl\:mb-0\.5 {
    margin-bottom: 0.125rem;
  }
  .xl\:mb-1 {
    margin-bottom: 0.25rem;
  }
  .xl\:mb-1\.5 {
    margin-bottom: 0.375rem;
  }
  .xl\:mb-10 {
    margin-bottom: 2.5rem;
  }
  .xl\:mb-11 {
    margin-bottom: 2.75rem;
  }
  .xl\:mb-12 {
    margin-bottom: 3rem;
  }
  .xl\:mb-14 {
    margin-bottom: 3.5rem;
  }
  .xl\:mb-16 {
    margin-bottom: 4rem;
  }
  .xl\:mb-2 {
    margin-bottom: 0.5rem;
  }
  .xl\:mb-2\.5 {
    margin-bottom: 0.625rem;
  }
  .xl\:mb-20 {
    margin-bottom: 5rem;
  }
  .xl\:mb-24 {
    margin-bottom: 6rem;
  }
  .xl\:mb-3 {
    margin-bottom: 0.75rem;
  }
  .xl\:mb-3\.5 {
    margin-bottom: 0.875rem;
  }
  .xl\:mb-32 {
    margin-bottom: 8rem;
  }
  .xl\:mb-36 {
    margin-bottom: 9rem;
  }
  .xl\:mb-4 {
    margin-bottom: 1rem;
  }
  .xl\:mb-40 {
    margin-bottom: 10rem;
  }
  .xl\:mb-44 {
    margin-bottom: 11rem;
  }
  .xl\:mb-5 {
    margin-bottom: 1.25rem;
  }
  .xl\:mb-52 {
    margin-bottom: 13rem;
  }
  .xl\:mb-56 {
    margin-bottom: 14rem;
  }
  .xl\:mb-6 {
    margin-bottom: 1.5rem;
  }
  .xl\:mb-60 {
    margin-bottom: 15rem;
  }
  .xl\:mb-64 {
    margin-bottom: 16rem;
  }
  .xl\:mb-7 {
    margin-bottom: 1.75rem;
  }
  .xl\:mb-8 {
    margin-bottom: 2rem;
  }
  .xl\:mb-9 {
    margin-bottom: 2.25rem;
  }
  .xl\:ms-0 {
    margin-inline-start: 0px;
  }
  .xl\:ms-0\.5 {
    margin-inline-start: 0.125rem;
  }
  .xl\:ms-1 {
    margin-inline-start: 0.25rem;
  }
  .xl\:ms-1\.5 {
    margin-inline-start: 0.375rem;
  }
  .xl\:ms-10 {
    margin-inline-start: 2.5rem;
  }
  .xl\:ms-11 {
    margin-inline-start: 2.75rem;
  }
  .xl\:ms-12 {
    margin-inline-start: 3rem;
  }
  .xl\:ms-14 {
    margin-inline-start: 3.5rem;
  }
  .xl\:ms-16 {
    margin-inline-start: 4rem;
  }
  .xl\:ms-2 {
    margin-inline-start: 0.5rem;
  }
  .xl\:ms-2\.5 {
    margin-inline-start: 0.625rem;
  }
  .xl\:ms-20 {
    margin-inline-start: 5rem;
  }
  .xl\:ms-24 {
    margin-inline-start: 6rem;
  }
  .xl\:ms-3 {
    margin-inline-start: 0.75rem;
  }
  .xl\:ms-3\.5 {
    margin-inline-start: 0.875rem;
  }
  .xl\:ms-32 {
    margin-inline-start: 8rem;
  }
  .xl\:ms-36 {
    margin-inline-start: 9rem;
  }
  .xl\:ms-4 {
    margin-inline-start: 1rem;
  }
  .xl\:ms-40 {
    margin-inline-start: 10rem;
  }
  .xl\:ms-44 {
    margin-inline-start: 11rem;
  }
  .xl\:ms-5 {
    margin-inline-start: 1.25rem;
  }
  .xl\:ms-52 {
    margin-inline-start: 13rem;
  }
  .xl\:ms-56 {
    margin-inline-start: 14rem;
  }
  .xl\:ms-6 {
    margin-inline-start: 1.5rem;
  }
  .xl\:ms-60 {
    margin-inline-start: 15rem;
  }
  .xl\:ms-64 {
    margin-inline-start: 16rem;
  }
  .xl\:ms-7 {
    margin-inline-start: 1.75rem;
  }
  .xl\:ms-8 {
    margin-inline-start: 2rem;
  }
  .xl\:ms-9 {
    margin-inline-start: 2.25rem;
  }
  .xl\:mt-0 {
    margin-top: 0px;
  }
  .xl\:mt-0\.5 {
    margin-top: 0.125rem;
  }
  .xl\:mt-1 {
    margin-top: 0.25rem;
  }
  .xl\:mt-1\.5 {
    margin-top: 0.375rem;
  }
  .xl\:mt-10 {
    margin-top: 2.5rem;
  }
  .xl\:mt-11 {
    margin-top: 2.75rem;
  }
  .xl\:mt-12 {
    margin-top: 3rem;
  }
  .xl\:mt-14 {
    margin-top: 3.5rem;
  }
  .xl\:mt-16 {
    margin-top: 4rem;
  }
  .xl\:mt-2 {
    margin-top: 0.5rem;
  }
  .xl\:mt-2\.5 {
    margin-top: 0.625rem;
  }
  .xl\:mt-20 {
    margin-top: 5rem;
  }
  .xl\:mt-24 {
    margin-top: 6rem;
  }
  .xl\:mt-3 {
    margin-top: 0.75rem;
  }
  .xl\:mt-3\.5 {
    margin-top: 0.875rem;
  }
  .xl\:mt-32 {
    margin-top: 8rem;
  }
  .xl\:mt-36 {
    margin-top: 9rem;
  }
  .xl\:mt-4 {
    margin-top: 1rem;
  }
  .xl\:mt-40 {
    margin-top: 10rem;
  }
  .xl\:mt-44 {
    margin-top: 11rem;
  }
  .xl\:mt-5 {
    margin-top: 1.25rem;
  }
  .xl\:mt-52 {
    margin-top: 13rem;
  }
  .xl\:mt-56 {
    margin-top: 14rem;
  }
  .xl\:mt-6 {
    margin-top: 1.5rem;
  }
  .xl\:mt-60 {
    margin-top: 15rem;
  }
  .xl\:mt-64 {
    margin-top: 16rem;
  }
  .xl\:mt-7 {
    margin-top: 1.75rem;
  }
  .xl\:mt-8 {
    margin-top: 2rem;
  }
  .xl\:mt-9 {
    margin-top: 2.25rem;
  }
  .xl\:grid {
    display: grid;
  }
  .xl\:flex-shrink {
    flex-shrink: 1;
  }
  .xl\:flex-shrink-0 {
    flex-shrink: 0;
  }
  .xl\:flex-grow {
    flex-grow: 1;
  }
  .xl\:flex-grow-0 {
    flex-grow: 0;
  }
  .xl\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .xl\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .xl\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .xl\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .xl\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .xl\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .xl\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .xl\:grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }
  .xl\:grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }
  .xl\:grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }
  .xl\:grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }
  .xl\:grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }
  .xl\:grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }
  .xl\:grid-rows-7 {
    grid-template-rows: repeat(7, minmax(0, 1fr));
  }
  .xl\:grid-rows-8 {
    grid-template-rows: repeat(8, minmax(0, 1fr));
  }
  .xl\:flex-row {
    flex-direction: row;
  }
  .xl\:flex-row-reverse {
    flex-direction: row-reverse;
  }
  .xl\:flex-col {
    flex-direction: column;
  }
  .xl\:flex-col-reverse {
    flex-direction: column-reverse;
  }
  .xl\:flex-wrap {
    flex-wrap: wrap;
  }
  .xl\:flex-wrap-reverse {
    flex-wrap: wrap-reverse;
  }
  .xl\:items-start {
    align-items: flex-start;
  }
  .xl\:items-end {
    align-items: flex-end;
  }
  .xl\:items-center {
    align-items: center;
  }
  .xl\:items-baseline {
    align-items: baseline;
  }
  .xl\:items-stretch {
    align-items: stretch;
  }
  .xl\:justify-start {
    justify-content: flex-start;
  }
  .xl\:justify-end {
    justify-content: flex-end;
  }
  .xl\:justify-center {
    justify-content: center;
  }
  .xl\:justify-between {
    justify-content: space-between;
  }
  .xl\:justify-around {
    justify-content: space-around;
  }
  .xl\:justify-evenly {
    justify-content: space-evenly;
  }
  .xl\:gap-0 {
    gap: 0px;
  }
  .xl\:gap-0\.5 {
    gap: 0.125rem;
  }
  .xl\:gap-1 {
    gap: 0.25rem;
  }
  .xl\:gap-1\.5 {
    gap: 0.375rem;
  }
  .xl\:gap-10 {
    gap: 2.5rem;
  }
  .xl\:gap-11 {
    gap: 2.75rem;
  }
  .xl\:gap-12 {
    gap: 3rem;
  }
  .xl\:gap-14 {
    gap: 3.5rem;
  }
  .xl\:gap-16 {
    gap: 4rem;
  }
  .xl\:gap-2 {
    gap: 0.5rem;
  }
  .xl\:gap-2\.5 {
    gap: 0.625rem;
  }
  .xl\:gap-20 {
    gap: 5rem;
  }
  .xl\:gap-24 {
    gap: 6rem;
  }
  .xl\:gap-3 {
    gap: 0.75rem;
  }
  .xl\:gap-3\.5 {
    gap: 0.875rem;
  }
  .xl\:gap-32 {
    gap: 8rem;
  }
  .xl\:gap-36 {
    gap: 9rem;
  }
  .xl\:gap-4 {
    gap: 1rem;
  }
  .xl\:gap-40 {
    gap: 10rem;
  }
  .xl\:gap-44 {
    gap: 11rem;
  }
  .xl\:gap-5 {
    gap: 1.25rem;
  }
  .xl\:gap-52 {
    gap: 13rem;
  }
  .xl\:gap-56 {
    gap: 14rem;
  }
  .xl\:gap-6 {
    gap: 1.5rem;
  }
  .xl\:gap-60 {
    gap: 15rem;
  }
  .xl\:gap-64 {
    gap: 16rem;
  }
  .xl\:gap-7 {
    gap: 1.75rem;
  }
  .xl\:gap-8 {
    gap: 2rem;
  }
  .xl\:gap-9 {
    gap: 2.25rem;
  }
  .xl\:self-auto {
    align-self: auto;
  }
  .xl\:self-start {
    align-self: flex-start;
  }
  .xl\:self-end {
    align-self: flex-end;
  }
  .xl\:self-center {
    align-self: center;
  }
  .xl\:self-stretch {
    align-self: stretch;
  }
  .xl\:self-baseline {
    align-self: baseline;
  }
  .xl\:pb-0 {
    padding-bottom: 0px;
  }
  .xl\:pb-0\.5 {
    padding-bottom: 0.125rem;
  }
  .xl\:pb-1 {
    padding-bottom: 0.25rem;
  }
  .xl\:pb-1\.5 {
    padding-bottom: 0.375rem;
  }
  .xl\:pb-10 {
    padding-bottom: 2.5rem;
  }
  .xl\:pb-11 {
    padding-bottom: 2.75rem;
  }
  .xl\:pb-12 {
    padding-bottom: 3rem;
  }
  .xl\:pb-14 {
    padding-bottom: 3.5rem;
  }
  .xl\:pb-16 {
    padding-bottom: 4rem;
  }
  .xl\:pb-2 {
    padding-bottom: 0.5rem;
  }
  .xl\:pb-2\.5 {
    padding-bottom: 0.625rem;
  }
  .xl\:pb-20 {
    padding-bottom: 5rem;
  }
  .xl\:pb-24 {
    padding-bottom: 6rem;
  }
  .xl\:pb-3 {
    padding-bottom: 0.75rem;
  }
  .xl\:pb-3\.5 {
    padding-bottom: 0.875rem;
  }
  .xl\:pb-32 {
    padding-bottom: 8rem;
  }
  .xl\:pb-36 {
    padding-bottom: 9rem;
  }
  .xl\:pb-4 {
    padding-bottom: 1rem;
  }
  .xl\:pb-40 {
    padding-bottom: 10rem;
  }
  .xl\:pb-44 {
    padding-bottom: 11rem;
  }
  .xl\:pb-5 {
    padding-bottom: 1.25rem;
  }
  .xl\:pb-52 {
    padding-bottom: 13rem;
  }
  .xl\:pb-56 {
    padding-bottom: 14rem;
  }
  .xl\:pb-6 {
    padding-bottom: 1.5rem;
  }
  .xl\:pb-60 {
    padding-bottom: 15rem;
  }
  .xl\:pb-64 {
    padding-bottom: 16rem;
  }
  .xl\:pb-7 {
    padding-bottom: 1.75rem;
  }
  .xl\:pb-8 {
    padding-bottom: 2rem;
  }
  .xl\:pb-9 {
    padding-bottom: 2.25rem;
  }
  .xl\:text-base {
    font-size: 16px;
    line-height: 28px;
  }
  .xl\:text-lead {
    font-size: 20px;
    line-height: 28px;
  }
  .xl\:text-lg {
    font-size: 38px;
    line-height: 42px;
  }
  .xl\:text-sm {
    font-size: 14px;
    line-height: 18px;
  }
}
@media only screen and (max-width: 1224px) {
  .gdpr-cookieconsent-settings__content {
    padding-inline: calc(var(--cookieconsent-spacing) * 3);
  }
  .gdpr-cookieconsent-settings__content__cta {
    flex: 0 0 100%;
    width: 100%;
    margin: calc(var(--cookieconsent-spacing) * 2) 0 0;
  }
  .gdpr-cookieconsent-settings__content__cta .gdpr-cc-button + .gdpr-cc-button {
    margin-top: var(--cookieconsent-spacing);
  }
}
@media (hover: none) {
  .gdpr-cookieconsent-switch > input:not(:disabled):hover::before {
    --_cookieconsent-switch-highlight-size: 0;
  }
}
@media (prefers-color-scheme: dark) {
  .dark\:bg-gray-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
  }
  .dark\:text-gray-200 {
    --tw-text-opacity: 1;
    color: rgb(229 231 235 / var(--tw-text-opacity, 1));
  }
  .dark\:text-gray-300 {
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1));
  }
  .dark\:text-gray-400 {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
  }
  .dark\:text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
}
/*# sourceMappingURL=Main.css.map */