@charset "UTF-8";
/*! Flickity v2.3.0
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: 0;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: #fff;
  cursor: pointer;
}

.flickity-button:focus {
  outline: 0;
  box-shadow: 0 0 0 5px #19f;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/* flickity-fade */
.flickity-enabled.is-fade .flickity-slider > * {
  pointer-events: none;
  z-index: 0;
}

.flickity-enabled.is-fade .flickity-slider > .is-selected {
  pointer-events: auto;
  z-index: 1;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-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.
 */
[type=search]::-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 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */
/**
 * Removes the default spacing and border for appropriate elements.
 */
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

button {
  background-color: transparent;
  background-image: none;
}

/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 */
button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

fieldset {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/**
 * Tailwind custom reset styles
 */
/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */
html {
  font-family: LeagueSpartan, sans-serif; /* 1 */
  line-height: 1.5; /* 2 */
}

/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e0e0e0; /* 2 */
}

/*
 * Ensure horizontal rules are visible by default
 */
hr {
  border-top-width: 1px;
}

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */
img {
  border-style: solid;
}

textarea {
  resize: vertical;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #a0aec0;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #a0aec0;
}

input::placeholder,
textarea::placeholder {
  color: #a0aec0;
}

button,
[role=button] {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

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;
}

/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */
button,
input,
optgroup,
select,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}

/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */
pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/**
 * Make replaced elements `display: block` by default as that's
 * the behavior you want almost all of the time. Inspired by
 * CSS Remedy, with `svg` added as well.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}

/**
 * Constrain images and videos to the parent width and preserve
 * their instrinsic aspect ratio.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */
img,
video {
  max-width: 100%;
  height: auto;
}

html {
  font-size: 18px;
}

@font-face {
  font-family: "LeagueSpartan";
  font-weight: 400;
  src: url(/site-assets/fonts/LeagueSpartan-Regular.ttf) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "LeagueSpartan";
  font-weight: 700;
  src: url(/site-assets/fonts/LeagueSpartan-Bold.ttf) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "LeagueSpartan";
  font-weight: 300;
  src: url(/site-assets/fonts/LeagueSpartan-Thin.ttf) format("woff");
  font-display: swap;
}
.block--collapsible + .block--collapsible {
  margin-top: -4rem;
}

.block--collapsible + .block--collapsible > div {
  border-top-width: 0;
}

.flickity-viewport {
  overflow: visible;
}

.review-carousel .flickity-viewport {
  cursor: e-resize !important;
}

.no-flicker {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.body-text a {
  text-decoration: underline;
}

.body-text ul, .info-text ul {
  list-style-type: disc;
  list-style-position: inside;
}

h1, h2, h3 {
  /* @apply leading-snug; */
  line-height: 1.15;
}

.body-text p, .body-text ul, .body-text h1, .body-text h2, .body-text h3, .body-text h4, .body-text figure {
  margin-bottom: 1.25rem;
}

.body-text p:last-child, .body-text ul:last-child, .body-text h1:last-child .body-text h2:last-child .body-text h3:last-child, .body-text h4:last-child, .body-text figure:last-child {
  margin-bottom: 0;
}

.body-text h1 {
  font-size: 2.25rem;
}

.body-text h2 {
  font-size: 1.75rem;
}

.body-text h3 {
  font-size: 1.5rem;
}

.body-text h4 {
  font-size: 1.5rem;
}

.body-text h1,
.body-text h2,
.body-text h3,
.body-text h4 {
  text-align: center;
}

.body-text figure {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

.body-text figure iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.body-text-content.truncate figure, .body-text-content.truncate ul, .body-text-content.truncate ol, .body-text-content.truncate h1, .body-text-content.truncate h2, .body-text-content.truncate h3, .body-text-content.truncate p:not(:first-child) {
  display: none;
}

.body-text-content.truncate p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.homepage-header {
  /*height: 460px;*/
}

#container {
  margin-top: 64px;
}

.menu.active {
  display: block;
}

body.no-overflow {
  height: 100vh;
  overflow: hidden;
}

.menu-btn.active .menu-btn__open-icon {
  display: none;
}

.menu-btn__close-icon {
  display: none;
}

.menu-btn.active .menu-btn__close-icon {
  display: block;
}

footer a:hover {
  color: rgba(0, 0, 0, 0.5);
}

footer a:hover .icon {
  opacity: 0.5;
}

.flickity-prev-next-button {
  width: 32px;
  height: 32px;
}

.flickity-prev-next-button .flickity-button-icon {
  width: 30%;
  left: 35%;
}

.flickity-prev-next-button.prev {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

.lazy {
  opacity: 0;
  position: relative;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1), transform 1.25s cubic-bezier(0.075, 0.8, 0.15, 1);
}

.lazy.loaded {
  transform: translateY(0px);
  opacity: 1;
}

.faq__question.active span {
  --transform-rotate: 45deg;
}

.anchor-bar-link.anchor-bar-link-active {
  border-bottom-width: 2px;
  --border-opacity: 1;
  border-color: #215B71;
  border-color: rgba(33, 91, 113, var(--border-opacity));
  --text-opacity: 1;
  color: #215B71;
  color: rgba(33, 91, 113, var(--text-opacity));
}

.anchor-bar-link.anchor-bar-link-active a:hover {
  opacity: 1;
}

.anchor-bar-link a:hover {
  opacity: 0.75;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.script-container * {
  font-family: LeagueSpartan, sans-serif;
  font-weight: 300;
  font-weight: 300 !important;
}

/* FOCUS
------------------------------------------------------------------------------*/
/* Focusing the button with a keyboard will show a dashed black line. */
.freeform input:focus-visible,
.freeform textarea:focus-visible,
.freeform select:focus-visible {
  outline: 1px solid #FE8C23;
  outline-offset: 1px;
}

/* Focusing the button with a mouse, touch, or stylus will show a subtle drop shadow. */
.freeform input:focus:not(:focus-visible),
.freeform textarea:focus:not(:focus-visible),
.freeform select:focus:not(:focus-visible) {
  outline: none;
}

.freeform input:focus-visible,
.freeform textarea:focus-visible,
.freeform select:focus-visible,
.freeform input:focus:not(:focus-visible),
.freeform textarea:focus:not(:focus-visible),
.freeform select:focus:not(:focus-visible) {
  border-color: #000;
}

.freeform input:focus-visible + .instructions,
.freeform textarea:focus-visible + .instructions,
.freeform select:focus-visible + .instructions,
.freeform input:focus:not(:focus-visible) + .instructions,
.freeform textarea:focus:not(:focus-visible) + .instructions,
.freeform select:focus:not(:focus-visible) + .instructions {
  color: #000;
}

/* ERROR
------------------------------------------------------------------------------*/
.freeform .form__error {
  border: 2px solid #C20B0B;
}

.freeform .errors {
  color: #C20B0B;
  margin-top: 6px;
}

.freeform .form__message {
  padding: 16px;
  border: 1px solid #000;
  margin-bottom: 24px;
}

.freeform .form__message--error {
  color: #C20B0B;
  background-color: #fff0f0;
  border-color: #FFCACD;
}

.freeform .form__message--success {
  color: #000;
  background-color: #f4f8f4;
  border-color: #237121;
}

/* SELECT
------------------------------------------------------------------------------*/
.select.ss-main {
  color: #000;
}

.select.ss-main .ss-single-selected {
  padding: 16px;
  line-height: 24px;
  height: auto;
  border-radius: 0;
  border-color: #616161;
}

.select.ss-main .ss-single-selected.ss-open-above,
.select.ss-main .ss-single-selected.ss-open-below {
  border-color: #000;
  outline: 1px solid #FE8C23;
  outline-offset: 1px;
}

.select.ss-main .ss-single-selected .ss-arrow span {
  border: solid #000;
  border-width: 0 1px 1px 0;
  padding: 4px;
}

.select.ss-main .ss-single-selected .ss-arrow span.arrow-down {
  margin: -4px 0 0;
}

.select.ss-main .ss-single-selected .placeholder {
  line-height: 18px;
}

.select.ss-main .ss-single-selected .placeholder .ss-disabled {
  color: #616161;
}

.select .ss-content {
  border-color: #000;
}

.select .ss-content .ss-list .ss-option {
  padding: 4px 16px;
}

.select .ss-content .ss-list .ss-option.ss-highlighted,
.select .ss-content .ss-list .ss-option:hover {
  color: #000;
  background-color: #E0E0E0;
}

.select .ss-content .ss-list .ss-option.ss-disabled {
  color: #616161;
  background-color: #f5f5f5;
}

/* FORM OPTION (CHECKBOX/RADIO)
------------------------------------------------------------------------------*/
.form__option {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  opacity: 0;
}

.form__option + .form__label {
  position: relative;
  padding-left: 38px;
  margin-left: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: inline-block;
  font-size: 16px;
}

.form__option + .form__label::before,
.form__option + .form__label::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  box-sizing: border-box;
}

.form__option + .form__label::before {
  border: 1px solid #000;
  background-color: #fff;
}

.form__option + .form__label::after {
  opacity: 0;
}

/* FORM OPTION STATE CHECKED -------------------------------------------------*/
.form__option:checked + .form__label::after {
  opacity: 1;
}

/* FORM RADIO ----------------------------------------------------------------*/
.form__option.form__radio + .form__label::before,
.form__option.form__radio + .form__label::after {
  border-radius: 50%;
}

.form__option.form__radio + .form__label::after {
  background-color: #000;
  width: 22px;
  height: 22px;
  border: 3px solid #fff;
  top: 1px;
  left: 1px;
}

.form__option.form__radio:not(:checked):hover + .form__label::after,
.form__option.form__radio:not(:checked) + .form__label:hover::after {
  opacity: 1;
  background-color: #E0E0E0;
}

.form__option.form__radio:focus-visible + .form__label::after {
  opacity: 1;
  outline: 1px solid #FE8C23;
  outline-offset: 3px;
}

/* FORM CHECKBOX -------------------------------------------------------------*/
.form__option.form__checkbox {
  opacity: 1; /* inherit focus states */
}

.form__option.form__checkbox + .form__label::after {
  border: 2px solid #000;
  border-top: none;
  border-left: none;
  width: 8px;
  height: 16px;
  left: 8px;
  top: 2px;
  transform: rotate(45deg);
}

.form__option.form__checkbox:not(:checked):hover + .form__label::before,
.form__option.form__checkbox:not(:checked) + .form__label:hover::before {
  background-color: #E0E0E0;
}

/* ICON ----------------------------------------------------------------------*/
.icon {
  height: 24px;
}

.icon svg {
  height: 100%;
  width: auto;
}

.icon--blue svg *[stroke="#000"],
.icon--blue svg *[stroke="#000000"] {
  stroke: #215B71;
}

.icon--blue svg *[fill="#000"],
.icon--blue svg *[fill="#000000"] {
  fill: #215B71;
}

.icon--blue svg rect[fill=none]:not([stroke]) {
  display: none;
}

.icon--mr {
  margin-right: 1rem;
}

/* FOOTER BLOCK --------------------------------------------------------------*/
.fblock__heading {
  font-size: 1.125rem;
}

.fblock__body {
  font-size: 1rem;
  line-height: 1.2;
}

.fblock__heading + .fblock__body,
.fblock__body p:not(:first-child) {
  margin-top: 1rem;
}

.fblock__body strong a,
.fblock__body a strong {
  transition-property: background-color, border-color, color, fill, stroke;
  transition-duration: 150ms;
  background-color: #215B71;
  padding: 8px 16px;
  min-width: 48px;
  color: white;
  display: inline-block;
  text-align: center;
  font-weight: 300;
}

.fblock__body a:hover strong,
.fblock__body strong a:hover {
  background-color: #194455;
}

/* FOOTER BLOCK ORDER --------------------------------------------------------*/
.fblock:nth-of-type(1) {
  order: 1;
}

.fblock:nth-of-type(2) {
  order: 2;
}

.fblock:nth-of-type(3) {
  order: 3;
}

.fblock:nth-of-type(4) {
  order: 4;
}

.fblock:nth-of-type(5) {
  order: 5;
}

.fblock:nth-of-type(6) {
  order: 6;
}

.fblock:nth-of-type(7) {
  order: 7;
}

.fblock:nth-of-type(8) {
  order: 8;
}

.fblock:nth-of-type(9) {
  order: 9;
}

.fblock:nth-of-type(10) {
  order: 10;
}

.fblock:nth-of-type(11) {
  order: 11;
}

.fblock:nth-of-type(12) {
  order: 12;
}

.fblock.fblock--sticky {
  order: 0;
}

@media (min-width: 640px) {
  .fblock.fblock--sticky {
    order: 1;
  }
  .fblock.fblock--sticky:nth-of-type(1) {
    order: 3;
  }
  .fblock__body:first-child p:first-child a:first-child:last-child strong {
    margin-top: -7px;
  }
}
@media (min-width: 1024px) {
  .fblock.fblock--sticky {
    order: 2;
  }
  .fblock.fblock--sticky:nth-of-type(1),
  .fblock.fblock--sticky:nth-of-type(2) {
    order: 4;
  }
  /* .fblocks {
  	margin-top: 46px;
  } */
}
@media (min-width: 1280px) {
  .fblock.fblock--sticky {
    order: 3;
  }
  .fblock.fblock--sticky:nth-of-type(1),
  .fblock.fblock--sticky:nth-of-type(2) {
    order: 5;
  }
}
/* BUTTON --------------------------------------------------------------------*/
.button::after {
  content: "→";
}

.button--light {
  color: #000;
  background-color: #fff;
}

.button--light:hover {
  background-color: #E0E0E0;
}

.button--dark {
  color: #fff;
  background-color: #215B71;
}

.button--dark:hover {
  background-color: #194455;
}

/* BREAKPOINTS
------------------------------------------------------------------------------*/
@media (min-width: 640px) {
  .flickity-prev-next-button {
    width: 44px;
    height: 44px;
  }
  .flickity-prev-next-button .flickity-button-icon {
    width: 30%;
    left: 35%;
  }
  .flickity-prev-next-button.prev {
    left: 20px;
  }
  .flickity-prev-next-button.next {
    right: 20px;
  }
  .body-text h1 {
    font-size: 2.5rem;
  }
  .body-text h2 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .block--collapsible + .block--collapsible {
    margin-top: -5rem;
  }
  .homepage-header {
    /*height: calc(100vh - 82px);*/
  }
  #container {
    margin-top: 82px;
  }
  .anchor-bar {
    top: 82px;
  }
  .body-text h1 {
    font-size: 4.5rem;
  }
  .body-text h2 {
    font-size: 2.5rem;
  }
  .body-text h3 {
    font-size: 1.75rem;
  }
}
.datepicker-hidden {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  overflow: hidden;
  cursor: pointer;
  /*border-radius: 100px;*/
  text-align: center;
  background-color: transparent;
  color: transparent;
}
.datepicker-hidden::-webkit-calendar-picker-indicator {
  position: absolute;
  top: -150%;
  left: -150%;
  width: 300%;
  height: 300%;
  cursor: pointer;
}
.datepicker-hidden::-webkit-datetime-edit-day-field:focus, .datepicker-hidden::-webkit-datetime-edit-month-field:focus, .datepicker-hidden::-webkit-datetime-edit-year-field:focus {
  background-color: red;
  color: white;
  outline: none;
}

.border-middle {
  /*@media (min-width: 768px) {*/
  /*}*/
}
.border-middle:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: calc(50% - 1.25rem);
  transform: translate(-50%, -50%);
  height: calc(100% - 14px);
  width: 2px;
  background-color: #FFA200;
  z-index: 11;
}

.js-carousel .flickity-page-dots {
  bottom: 10px;
}
.js-carousel .flickity-page-dots .dot {
  background-color: #fff;
}

@media (min-width: 768px) {
  .md\:w-auto {
    width: auto !important;
  }
}

@media (min-width: 768px) {
  .md\:ml-auto {
    margin-left: auto !important;
  }
}

footer .bg-red-100.border.border-red-400 {
  width: 100%;
}

/**
 * Tours search widget
 */
.tour-search-widget.same-page:not(.filtered) + .tours {
  display: none;
}

.tour-search-widget.same-page:not(.filtered) + .tours + .destionations {
  display: block;
}

.tour-search-widget.same-page.filtered + .tours {
  display: block;
}

.tour-search-widget.same-page.filtered + .tours + .destionations {
  display: none;
}

/**
 * Rich Text
 */
.rich-text > h1 {
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  --text-opacity: 1;
  color: #424242;
  color: rgba(66, 66, 66, var(--text-opacity));
}
@media (min-width: 640px) {
  .rich-text > h1 {
    font-size: 1.75rem;
  }
}
@media (min-width: 768px) {
  .rich-text > h1 {
    margin-bottom: 1.5rem;
  }
}
.rich-text > h2 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  --text-opacity: 1;
  color: #424242;
  color: rgba(66, 66, 66, var(--text-opacity));
}
@media (min-width: 640px) {
  .rich-text > h2 {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .rich-text > h2 {
    margin-bottom: 1rem;
  }
}
.rich-text > h2.text-blue {
  --text-opacity: 1;
  color: #215B71;
  color: rgba(33, 91, 113, var(--text-opacity));
}
.rich-text > p {
  margin-bottom: 1.5rem;
  --text-opacity: 1;
  color: #424242;
  color: rgba(66, 66, 66, var(--text-opacity));
}
@media (min-width: 640px) {
  .rich-text > p {
    font-size: 1.125rem;
  }
}
@media (min-width: 768px) {
  .rich-text > p {
    margin-bottom: 2rem;
  }
}
.rich-text > ul {
  margin-bottom: 1.5rem;
  list-style-position: inside;
  list-style-type: disc;
  --text-opacity: 1;
  color: #424242;
  color: rgba(66, 66, 66, var(--text-opacity));
}
@media (min-width: 640px) {
  .rich-text > ul {
    font-size: 1.125rem;
  }
}
@media (min-width: 768px) {
  .rich-text > ul {
    margin-bottom: 2rem;
  }
}
.rich-text > ul li p {
  display: inline;
}
.rich-text > ul li ul {
  list-style-position: inside;
  list-style-type: disc;
  margin-left: 2rem;
}
.rich-text > ol {
  margin-bottom: 1.5rem;
  list-style-position: inside;
  list-style-type: decimal;
  --text-opacity: 1;
  color: #424242;
  color: rgba(66, 66, 66, var(--text-opacity));
}
@media (min-width: 640px) {
  .rich-text > ol {
    font-size: 1.125rem;
  }
}
@media (min-width: 768px) {
  .rich-text > ol {
    margin-bottom: 2rem;
  }
}
.rich-text > ol li p {
  display: inline;
}
.rich-text > ol li ol {
  list-style-position: inside;
  list-style-type: decimal;
  margin-left: 2rem;
}
.rich-text > blockquote {
  margin-bottom: 1.5rem;
  border-left-width: 4px;
  padding-left: 1rem;
  font-style: italic;
}
@media (min-width: 640px) {
  .rich-text > blockquote {
    font-size: 1.125rem;
  }
}
@media (min-width: 768px) {
  .rich-text > blockquote {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
  }
}
.rich-text > blockquote p {
  --text-opacity: 1;
  color: #9e9e9e;
  color: rgba(158, 158, 158, var(--text-opacity));
}
.rich-text > figure {
  /* relative mb-6 overflow-hidden rounded-lg bg-gray-100 shadow-lg md:mb-8 */
  position: relative;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 0.5rem;
  --bg-opacity: 1;
  background-color: #f5f5f5;
  background-color: rgba(245, 245, 245, var(--bg-opacity));
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .rich-text > figure {
    margin-bottom: 2rem;
  }
}
.rich-text > figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.rich-text > figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem;
  --bg-opacity: 1;
  background-color: #212121;
  background-color: rgba(33, 33, 33, var(--bg-opacity));
  --bg-opacity: 0.5;
  --text-opacity: 1;
  color: #FFFFFF;
  color: rgba(255, 255, 255, var(--text-opacity));
  text-align: center;
}
.rich-text > figure.table {
  width: 100%;
  border-radius: 0;
}
.rich-text > figure.table table {
  width: 100%;
}
.rich-text > figure.table table th, .rich-text > figure.table table td {
  padding: 0.5rem;
  border-width: 1px;
  --border-opacity: 1;
  border-color: #e0e0e0;
  border-color: rgba(224, 224, 224, var(--border-opacity));
}
.rich-text > hr {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-top-width: 1px;
  --border-opacity: 1;
  border-color: #e0e0e0;
  border-color: rgba(224, 224, 224, var(--border-opacity));
}
@media (min-width: 768px) {
  .rich-text > hr {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
.rich-text > *:last-child {
  margin-bottom: 0;
}

/**
.embed-responsive.embed-responsive-16by9
.embed-responsive-item
 */
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive-16by9 {
  padding-top: 56.25%;
}

.embed-responsive-item {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

figure.media.video {
  border-radius: 0;
}

@media (max-width: 768px) {
  .main-carousel .flickity-viewport {
    overflow: hidden;
    transition: height 0.2s;
  }
}

.container {
  width: 100%;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
.space-x-1 > :not(template) ~ :not(template) {
  --space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--space-x-reverse));
  margin-left: calc(0.25rem * (1 - var(--space-x-reverse)));
}

.space-x-2 > :not(template) ~ :not(template) {
  --space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--space-x-reverse));
  margin-left: calc(0.5rem * (1 - var(--space-x-reverse)));
}

.space-x-6 > :not(template) ~ :not(template) {
  --space-x-reverse: 0;
  margin-right: calc(1.5rem * var(--space-x-reverse));
  margin-left: calc(1.5rem * (1 - var(--space-x-reverse)));
}

.space-y-10 > :not(template) ~ :not(template) {
  --space-y-reverse: 0;
  margin-top: calc(2.5rem * (1 - var(--space-y-reverse)));
  margin-bottom: calc(2.5rem * var(--space-y-reverse));
}

.appearance-none {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.bg-black {
  --bg-opacity: 1;
  background-color: #000000;
  background-color: rgba(0, 0, 0, var(--bg-opacity));
}

.bg-white {
  --bg-opacity: 1;
  background-color: #FFFFFF;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
}

.bg-gray-100 {
  --bg-opacity: 1;
  background-color: #f5f5f5;
  background-color: rgba(245, 245, 245, var(--bg-opacity));
}

.bg-gray-200 {
  --bg-opacity: 1;
  background-color: #eeeeee;
  background-color: rgba(238, 238, 238, var(--bg-opacity));
}

.bg-gray-400 {
  --bg-opacity: 1;
  background-color: #bdbdbd;
  background-color: rgba(189, 189, 189, var(--bg-opacity));
}

.bg-gray-600 {
  --bg-opacity: 1;
  background-color: #757575;
  background-color: rgba(117, 117, 117, var(--bg-opacity));
}

.bg-gray-700 {
  --bg-opacity: 1;
  background-color: #616161;
  background-color: rgba(97, 97, 97, var(--bg-opacity));
}

.bg-gray-900 {
  --bg-opacity: 1;
  background-color: #212121;
  background-color: rgba(33, 33, 33, var(--bg-opacity));
}

.bg-gray-lighter {
  --bg-opacity: 1;
  background-color: #F5F5F5;
  background-color: rgba(245, 245, 245, var(--bg-opacity));
}

.bg-gray {
  --bg-opacity: 1;
  background-color: #E0E0E0;
  background-color: rgba(224, 224, 224, var(--bg-opacity));
}

.bg-red-100 {
  --bg-opacity: 1;
  background-color: #fff5f5;
  background-color: rgba(255, 245, 245, var(--bg-opacity));
}

.bg-red-500 {
  --bg-opacity: 1;
  background-color: #f56565;
  background-color: rgba(245, 101, 101, var(--bg-opacity));
}

.bg-orange-lighter {
  --bg-opacity: 1;
  background-color: #FFC766;
  background-color: rgba(255, 199, 102, var(--bg-opacity));
}

.bg-orange {
  --bg-opacity: 1;
  background-color: #FFA200;
  background-color: rgba(255, 162, 0, var(--bg-opacity));
}

.bg-green-100 {
  --bg-opacity: 1;
  background-color: #f0fff4;
  background-color: rgba(240, 255, 244, var(--bg-opacity));
}

.bg-green-500 {
  --bg-opacity: 1;
  background-color: #48bb78;
  background-color: rgba(72, 187, 120, var(--bg-opacity));
}

.bg-blue {
  --bg-opacity: 1;
  background-color: #215B71;
  background-color: rgba(33, 91, 113, var(--bg-opacity));
}

.bg-blue-dark {
  --bg-opacity: 1;
  background-color: #092e41;
  background-color: rgba(9, 46, 65, var(--bg-opacity));
}

.bg-pink-darker {
  --bg-opacity: 1;
  background-color: #F9BFC5;
  background-color: rgba(249, 191, 197, var(--bg-opacity));
}

.bg-cyan-lighter {
  --bg-opacity: 1;
  background-color: #D9E9EB;
  background-color: rgba(217, 233, 235, var(--bg-opacity));
}

.bg-brown {
  --bg-opacity: 1;
  background-color: #C2AC97;
  background-color: rgba(194, 172, 151, var(--bg-opacity));
}

.hover\:bg-gray-100:hover {
  --bg-opacity: 1;
  background-color: #f5f5f5;
  background-color: rgba(245, 245, 245, var(--bg-opacity));
}

.hover\:bg-gray-400:hover {
  --bg-opacity: 1;
  background-color: #bdbdbd;
  background-color: rgba(189, 189, 189, var(--bg-opacity));
}

.hover\:bg-gray-500:hover {
  --bg-opacity: 1;
  background-color: #9e9e9e;
  background-color: rgba(158, 158, 158, var(--bg-opacity));
}

.hover\:bg-gray-700:hover {
  --bg-opacity: 1;
  background-color: #616161;
  background-color: rgba(97, 97, 97, var(--bg-opacity));
}

.hover\:bg-gray-900:hover {
  --bg-opacity: 1;
  background-color: #212121;
  background-color: rgba(33, 33, 33, var(--bg-opacity));
}

.hover\:bg-gray:hover {
  --bg-opacity: 1;
  background-color: #E0E0E0;
  background-color: rgba(224, 224, 224, var(--bg-opacity));
}

.hover\:bg-red-700:hover {
  --bg-opacity: 1;
  background-color: #c53030;
  background-color: rgba(197, 48, 48, var(--bg-opacity));
}

.hover\:bg-orange-lighter:hover {
  --bg-opacity: 1;
  background-color: #FFC766;
  background-color: rgba(255, 199, 102, var(--bg-opacity));
}

.hover\:bg-green-700:hover {
  --bg-opacity: 1;
  background-color: #2f855a;
  background-color: rgba(47, 133, 90, var(--bg-opacity));
}

.hover\:bg-blue:hover {
  --bg-opacity: 1;
  background-color: #215B71;
  background-color: rgba(33, 91, 113, var(--bg-opacity));
}

.hover\:bg-blue-darker:hover {
  --bg-opacity: 1;
  background-color: #194455;
  background-color: rgba(25, 68, 85, var(--bg-opacity));
}

.focus\:bg-white:focus {
  --bg-opacity: 1;
  background-color: #FFFFFF;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
}

.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--gradient-color-stops));
}

.from-gray-800 {
  --gradient-from-color: #424242;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 66, 66, 0));
}

.from-blue-darker {
  --gradient-from-color: #194455;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(25, 68, 85, 0));
}

.via-transparent {
  --gradient-via-color: transparent;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
}

.to-transparent {
  --gradient-to-color: transparent;
}

.bg-opacity-50 {
  --bg-opacity: 0.5;
}

.bg-center {
  background-position: center;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.bg-cover {
  background-size: cover;
}

.border-transparent {
  border-color: transparent;
}

.border-white {
  --border-opacity: 1;
  border-color: #FFFFFF;
  border-color: rgba(255, 255, 255, var(--border-opacity));
}

.border-gray-200 {
  --border-opacity: 1;
  border-color: #eeeeee;
  border-color: rgba(238, 238, 238, var(--border-opacity));
}

.border-gray-700 {
  --border-opacity: 1;
  border-color: #616161;
  border-color: rgba(97, 97, 97, var(--border-opacity));
}

.border-gray-lighter {
  --border-opacity: 1;
  border-color: #F5F5F5;
  border-color: rgba(245, 245, 245, var(--border-opacity));
}

.border-gray {
  --border-opacity: 1;
  border-color: #E0E0E0;
  border-color: rgba(224, 224, 224, var(--border-opacity));
}

.border-red-400 {
  --border-opacity: 1;
  border-color: #fc8181;
  border-color: rgba(252, 129, 129, var(--border-opacity));
}

.border-red-500 {
  --border-opacity: 1;
  border-color: #f56565;
  border-color: rgba(245, 101, 101, var(--border-opacity));
}

.border-green-400 {
  --border-opacity: 1;
  border-color: #68d391;
  border-color: rgba(104, 211, 145, var(--border-opacity));
}

.border-blue {
  --border-opacity: 1;
  border-color: #215B71;
  border-color: rgba(33, 91, 113, var(--border-opacity));
}

.hover\:border-gray:hover {
  --border-opacity: 1;
  border-color: #E0E0E0;
  border-color: rgba(224, 224, 224, var(--border-opacity));
}

.focus\:border-gray-500:focus {
  --border-opacity: 1;
  border-color: #9e9e9e;
  border-color: rgba(158, 158, 158, var(--border-opacity));
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-t {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.rounded-tl {
  border-top-left-radius: 0.25rem;
}

.rounded-tr {
  border-top-right-radius: 0.25rem;
}

.rounded-br {
  border-bottom-right-radius: 0.25rem;
}

.rounded-bl {
  border-bottom-left-radius: 0.25rem;
}

.border-2 {
  border-width: 2px;
}

.border {
  border-width: 1px;
}

.border-b-2 {
  border-bottom-width: 2px;
}

.border-t {
  border-top-width: 1px;
}

.border-r {
  border-right-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-l {
  border-left-width: 1px;
}

.border-t-1\.5 {
  border-top-width: 1.5px;
}

.last\:border-b:last-child {
  border-bottom-width: 1px;
}

.cursor-pointer {
  cursor: pointer;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.table {
  display: table;
}

.table-row {
  display: table-row;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.self-center {
  align-self: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-grow {
  flex-grow: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.order-first {
  order: -9999;
}

.float-left {
  float: left;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-8 {
  height: 2rem;
}

.h-12 {
  height: 3rem;
}

.h-16 {
  height: 4rem;
}

.h-24 {
  height: 6rem;
}

.h-32 {
  height: 8rem;
}

.h-48 {
  height: 12rem;
}

.h-64 {
  height: 16rem;
}

.h-auto {
  height: auto;
}

.h-full {
  height: 100%;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.75rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.leading-8 {
  line-height: 2rem;
}

.leading-tight {
  line-height: 1.25;
}

.leading-snug {
  line-height: 1.375;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-squeeze {
  line-height: 1.125;
}

.m-1 {
  margin: 0.25rem;
}

.m-4 {
  margin: 1rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.mx-6 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.my-16 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.my-20 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.-mx-3 {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.-mx-4 {
  margin-left: -1rem;
  margin-right: -1rem;
}

.-mx-6 {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.mx-05 {
  margin-left: 0.125rem;
  margin-right: 0.125rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.ml-4 {
  margin-left: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mr-5 {
  margin-right: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mb-24 {
  margin-bottom: 6rem;
}

.mt-auto {
  margin-top: auto;
}

.-mt-1 {
  margin-top: -0.25rem;
}

.-mt-2 {
  margin-top: -0.5rem;
}

.-ml-8 {
  margin-left: -2rem;
}

.mt-1\.5 {
  margin-top: 0.375rem;
}

.mb-1\.5 {
  margin-bottom: 0.375rem;
}

.last\:mb-0:last-child {
  margin-bottom: 0;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-full {
  max-width: 100%;
}

.max-w-screen-md {
  max-width: 768px;
}

.max-w-screen-xl {
  max-width: 1280px;
}

.min-h-full {
  min-height: 100%;
}

.min-h-screen {
  min-height: 100vh;
}

.min-h-carouselMobile {
  min-height: 20rem;
}

.min-w-32 {
  min-width: 8rem;
}

.object-cover {
  -o-object-fit: cover;
  object-fit: cover;
}

.object-center {
  -o-object-position: center;
  object-position: center;
}

.opacity-0 {
  opacity: 0;
}

.opacity-20 {
  opacity: 0.2;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-60 {
  opacity: 0.6;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-100 {
  opacity: 1;
}

.hover\:opacity-50:hover {
  opacity: 0.5;
}

.hover\:opacity-60:hover {
  opacity: 0.6;
}

.hover\:opacity-75:hover {
  opacity: 0.75;
}

.group:hover .group-hover\:opacity-75 {
  opacity: 0.75;
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-scroll {
  overflow-x: scroll;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-5 {
  padding: 1.25rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.px-20 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.py-48 {
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.px-48 {
  padding-left: 12rem;
  padding-right: 12rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pr-3 {
  padding-right: 0.75rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pr-8 {
  padding-right: 2rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pl-8 {
  padding-left: 2rem;
}

.pt-12 {
  padding-top: 3rem;
}

.pt-16 {
  padding-top: 4rem;
}

.pb-16 {
  padding-bottom: 4rem;
}

.pr-20 {
  padding-right: 5rem;
}

.pl-20 {
  padding-left: 5rem;
}

.pt-24 {
  padding-top: 6rem;
}

.pt-40 {
  padding-top: 10rem;
}

.pr-64 {
  padding-right: 16rem;
}

.pl-64 {
  padding-left: 16rem;
}

.last\:pr-6:last-child {
  padding-right: 1.5rem;
}

.placeholder-gray-500::-moz-placeholder {
  --placeholder-opacity: 1;
  color: #9e9e9e;
  color: rgba(158, 158, 158, var(--placeholder-opacity));
}

.placeholder-gray-500:-ms-input-placeholder {
  --placeholder-opacity: 1;
  color: #9e9e9e;
  color: rgba(158, 158, 158, var(--placeholder-opacity));
}

.placeholder-gray-500::placeholder {
  --placeholder-opacity: 1;
  color: #9e9e9e;
  color: rgba(158, 158, 158, var(--placeholder-opacity));
}

.placeholder-gray-700::-moz-placeholder {
  --placeholder-opacity: 1;
  color: #616161;
  color: rgba(97, 97, 97, var(--placeholder-opacity));
}

.placeholder-gray-700:-ms-input-placeholder {
  --placeholder-opacity: 1;
  color: #616161;
  color: rgba(97, 97, 97, var(--placeholder-opacity));
}

.placeholder-gray-700::placeholder {
  --placeholder-opacity: 1;
  color: #616161;
  color: rgba(97, 97, 97, var(--placeholder-opacity));
}

.pointer-events-none {
  pointer-events: none;
}

.pointer-events-auto {
  pointer-events: auto;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.inset-3 {
  top: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
}

.inset-1px {
  top: 1px;
  right: 1px;
  bottom: 1px;
  left: 1px;
}

.inset-y-0 {
  top: 0;
  bottom: 0;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.resize {
  resize: both;
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.fill-current {
  fill: currentColor;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-black {
  --text-opacity: 1;
  color: #000000;
  color: rgba(0, 0, 0, var(--text-opacity));
}

.text-white {
  --text-opacity: 1;
  color: #FFFFFF;
  color: rgba(255, 255, 255, var(--text-opacity));
}

.text-gray-100 {
  --text-opacity: 1;
  color: #f5f5f5;
  color: rgba(245, 245, 245, var(--text-opacity));
}

.text-gray-200 {
  --text-opacity: 1;
  color: #eeeeee;
  color: rgba(238, 238, 238, var(--text-opacity));
}

.text-gray-400 {
  --text-opacity: 1;
  color: #bdbdbd;
  color: rgba(189, 189, 189, var(--text-opacity));
}

.text-gray-500 {
  --text-opacity: 1;
  color: #9e9e9e;
  color: rgba(158, 158, 158, var(--text-opacity));
}

.text-gray-700 {
  --text-opacity: 1;
  color: #616161;
  color: rgba(97, 97, 97, var(--text-opacity));
}

.text-gray-800 {
  --text-opacity: 1;
  color: #424242;
  color: rgba(66, 66, 66, var(--text-opacity));
}

.text-gray-900 {
  --text-opacity: 1;
  color: #212121;
  color: rgba(33, 33, 33, var(--text-opacity));
}

.text-red-500 {
  --text-opacity: 1;
  color: #f56565;
  color: rgba(245, 101, 101, var(--text-opacity));
}

.text-red-700 {
  --text-opacity: 1;
  color: #c53030;
  color: rgba(197, 48, 48, var(--text-opacity));
}

.text-orange {
  --text-opacity: 1;
  color: #FFA200;
  color: rgba(255, 162, 0, var(--text-opacity));
}

.text-green-700 {
  --text-opacity: 1;
  color: #2f855a;
  color: rgba(47, 133, 90, var(--text-opacity));
}

.text-blue {
  --text-opacity: 1;
  color: #215B71;
  color: rgba(33, 91, 113, var(--text-opacity));
}

.text-cyan-lighter {
  --text-opacity: 1;
  color: #D9E9EB;
  color: rgba(217, 233, 235, var(--text-opacity));
}

.hover\:text-white:hover {
  --text-opacity: 1;
  color: #FFFFFF;
  color: rgba(255, 255, 255, var(--text-opacity));
}

.hover\:text-gray-500:hover {
  --text-opacity: 1;
  color: #9e9e9e;
  color: rgba(158, 158, 158, var(--text-opacity));
}

.hover\:text-cyan-lighter:hover {
  --text-opacity: 1;
  color: #D9E9EB;
  color: rgba(217, 233, 235, var(--text-opacity));
}

.group:hover .group-hover\:text-blue {
  --text-opacity: 1;
  color: #215B71;
  color: rgba(33, 91, 113, var(--text-opacity));
}

.text-opacity-50 {
  --text-opacity: 0.5;
}

.text-opacity-60 {
  --text-opacity: 0.60;
}

.text-opacity-75 {
  --text-opacity: 0.75;
}

.hover\:text-opacity-100:hover {
  --text-opacity: 1;
}

.italic {
  font-style: italic;
}

.uppercase {
  text-transform: uppercase;
}

.underline {
  text-decoration: underline;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.select-none {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.visible {
  visibility: visible;
}

.whitespace-no-wrap {
  white-space: nowrap;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-8 {
  width: 2rem;
}

.w-10 {
  width: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.w-16 {
  width: 4rem;
}

.w-24 {
  width: 6rem;
}

.w-32 {
  width: 8rem;
}

.w-64 {
  width: 16rem;
}

.w-80 {
  width: 20rem;
}

.w-auto {
  width: auto;
}

.w-1\/2 {
  width: 50%;
}

.w-11\/12 {
  width: 91.666667%;
}

.w-full {
  width: 100%;
}

.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}

.z-11 {
  z-index: 11;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-40 {
  z-index: 40;
}

.gap-2 {
  grid-gap: 0.5rem;
  gap: 0.5rem;
}

.gap-4 {
  grid-gap: 1rem;
  gap: 1rem;
}

.gap-8 {
  grid-gap: 2rem;
  gap: 2rem;
}

.gap-12 {
  grid-gap: 3rem;
  gap: 3rem;
}

.col-gap-20 {
  grid-column-gap: 5rem;
  -moz-column-gap: 5rem;
  column-gap: 5rem;
}

.gap-x-4 {
  grid-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
}

.gap-x-12 {
  grid-column-gap: 3rem;
  -moz-column-gap: 3rem;
  column-gap: 3rem;
}

.row-gap-6 {
  grid-row-gap: 1.5rem;
  row-gap: 1.5rem;
}

.gap-y-6 {
  grid-row-gap: 1.5rem;
  row-gap: 1.5rem;
}

.grid-flow-col {
  grid-auto-flow: column;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.col-span-full {
  grid-column: 1/-1;
}

.grid-rows-2 {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.transform {
  --transform-translate-x: 0;
  --transform-translate-y: 0;
  --transform-rotate: 0;
  --transform-skew-x: 0;
  --transform-skew-y: 0;
  --transform-scale-x: 1;
  --transform-scale-y: 1;
  transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
}

.scale-75 {
  --transform-scale-x: .75;
  --transform-scale-y: .75;
}

.scale-95 {
  --transform-scale-x: .95;
  --transform-scale-y: .95;
}

.scale-100 {
  --transform-scale-x: 1;
  --transform-scale-y: 1;
}

.group:hover .group-hover\:scale-105 {
  --transform-scale-x: 1.05;
  --transform-scale-y: 1.05;
}

.group:hover .group-hover\:scale-110 {
  --transform-scale-x: 1.1;
  --transform-scale-y: 1.1;
}

.rotate-180 {
  --transform-rotate: 180deg;
}

.translate-x-2 {
  --transform-translate-x: 0.5rem;
}

.translate-x-3 {
  --transform-translate-x: 0.75rem;
}

.group:hover .group-hover\:translate-x-3 {
  --transform-translate-x: 0.75rem;
}

.group:hover .group-hover\:translate-x-4 {
  --transform-translate-x: 1rem;
}

.transition {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
}

.transition-colors {
  transition-property: background-color, border-color, color, fill, stroke;
}

.transition-opacity {
  transition-property: opacity;
}

.transition-transform {
  transition-property: transform;
}

.ease-in {
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.duration-75 {
  transition-duration: 75ms;
}

.duration-100 {
  transition-duration: 100ms;
}

.duration-150 {
  transition-duration: 150ms;
}

.duration-200 {
  transition-duration: 200ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

@-webkit-keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}
@-webkit-keyframes pulse {
  50% {
    opacity: 0.5;
  }
}
@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}
@-webkit-keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
@media (min-width: 640px) {
  .sm\:container {
    width: 100%;
  }
}
@media (min-width: 640px) and (min-width: 640px) {
  .sm\:container {
    max-width: 640px;
  }
}
@media (min-width: 640px) and (min-width: 768px) {
  .sm\:container {
    max-width: 768px;
  }
}
@media (min-width: 640px) and (min-width: 1024px) {
  .sm\:container {
    max-width: 1024px;
  }
}
@media (min-width: 640px) and (min-width: 1280px) {
  .sm\:container {
    max-width: 1280px;
  }
}
@media (min-width: 640px) {
  .sm\:hidden {
    display: none;
  }
  .sm\:flex-row {
    flex-direction: row;
  }
  .sm\:content-evenly {
    align-content: space-evenly;
  }
  .sm\:order-none {
    order: 0;
  }
  .sm\:h-10 {
    height: 2.5rem;
  }
  .sm\:h-24 {
    height: 6rem;
  }
  .sm\:h-auto {
    height: auto;
  }
  .sm\:text-base {
    font-size: 1rem;
  }
  .sm\:text-2xl {
    font-size: 1.5rem;
  }
  .sm\:text-5xl {
    font-size: 2.5rem;
  }
  .sm\:max-w-xl {
    max-width: 36rem;
  }
  .sm\:p-8 {
    padding: 2rem;
  }
  .sm\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .sm\:pr-8 {
    padding-right: 2rem;
  }
  .sm\:text-left {
    text-align: left;
  }
  .sm\:w-1\/2 {
    width: 50%;
  }
  .sm\:gap-y-8 {
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }
  .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\:col-span-1 {
    grid-column: span 1/span 1;
  }
  .sm\:scale-100 {
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }
}
@media (min-width: 768px) {
  .md\:container {
    width: 100%;
  }
}
@media (min-width: 768px) and (min-width: 640px) {
  .md\:container {
    max-width: 640px;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .md\:container {
    max-width: 768px;
  }
}
@media (min-width: 768px) and (min-width: 1024px) {
  .md\:container {
    max-width: 1024px;
  }
}
@media (min-width: 768px) and (min-width: 1280px) {
  .md\:container {
    max-width: 1280px;
  }
}
@media (min-width: 768px) {
  .md\:space-x-3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0;
    margin-right: calc(0.75rem * var(--space-x-reverse));
    margin-left: calc(0.75rem * (1 - var(--space-x-reverse)));
  }
  .md\:divide-x > :not(template) ~ :not(template) {
    --divide-x-reverse: 0;
    border-right-width: calc(1px * var(--divide-x-reverse));
    border-left-width: calc(1px * (1 - var(--divide-x-reverse)));
  }
  .md\:via-transparent {
    --gradient-via-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }
  .md\:rounded-xl {
    border-radius: 0.75rem;
  }
  .md\:flex {
    display: flex;
  }
  .md\:inline-flex {
    display: inline-flex;
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:flex-row-reverse {
    flex-direction: row-reverse;
  }
  .md\:h-32 {
    height: 8rem;
  }
  .md\:h-64 {
    height: 16rem;
  }
  .md\:h-80 {
    height: 20rem;
  }
  .md\:h-full {
    height: 100%;
  }
  .md\:text-sm {
    font-size: 0.875rem;
  }
  .md\:text-base {
    font-size: 1rem;
  }
  .md\:text-lg {
    font-size: 1.125rem;
  }
  .md\:text-xl {
    font-size: 1.25rem;
  }
  .md\:text-2xl {
    font-size: 1.5rem;
  }
  .md\:text-3xl {
    font-size: 1.75rem;
  }
  .md\:text-4xl {
    font-size: 2.25rem;
  }
  .md\:text-5xl {
    font-size: 2.5rem;
  }
  .md\:text-6xl {
    font-size: 4rem;
  }
  .md\:leading-10 {
    line-height: 2.5rem;
  }
  .md\:leading-normal {
    line-height: 1.5;
  }
  .md\:mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .md\:mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .md\:mt-0 {
    margin-top: 0;
  }
  .md\:mb-0 {
    margin-bottom: 0;
  }
  .md\:mt-4 {
    margin-top: 1rem;
  }
  .md\:ml-5 {
    margin-left: 1.25rem;
  }
  .md\:mt-6 {
    margin-top: 1.5rem;
  }
  .md\:mr-6 {
    margin-right: 1.5rem;
  }
  .md\:mb-6 {
    margin-bottom: 1.5rem;
  }
  .md\:mb-8 {
    margin-bottom: 2rem;
  }
  .md\:mb-10 {
    margin-bottom: 2.5rem;
  }
  .md\:mb-12 {
    margin-bottom: 3rem;
  }
  .md\:mb-16 {
    margin-bottom: 4rem;
  }
  .md\:max-w-md {
    max-width: 28rem;
  }
  .md\:max-w-2xl {
    max-width: 42rem;
  }
  .md\:max-w-full {
    max-width: 100%;
  }
  .md\:min-h-carousel {
    min-height: 30rem;
  }
  .md\:p-4 {
    padding: 1rem;
  }
  .md\:p-8 {
    padding: 2rem;
  }
  .md\:p-12 {
    padding: 3rem;
  }
  .md\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .md\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .md\:py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .md\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .md\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .md\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .md\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .md\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .md\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .md\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .md\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .md\:py-64 {
    padding-top: 16rem;
    padding-bottom: 16rem;
  }
  .md\:pr-8 {
    padding-right: 2rem;
  }
  .md\:pl-8 {
    padding-left: 2rem;
  }
  .md\:pb-12 {
    padding-bottom: 3rem;
  }
  .md\:pr-16 {
    padding-right: 4rem;
  }
  .md\:pl-16 {
    padding-left: 4rem;
  }
  .md\:pb-24 {
    padding-bottom: 6rem;
  }
  .md\:text-left {
    text-align: left;
  }
  .md\:w-10 {
    width: 2.5rem;
  }
  .md\:w-16 {
    width: 4rem;
  }
  .md\:w-32 {
    width: 8rem;
  }
  .md\:w-48 {
    width: 12rem;
  }
  .md\:w-96 {
    width: 24rem;
  }
  .md\:w-1\/2 {
    width: 50%;
  }
  .md\:w-1\/4 {
    width: 25%;
  }
  .md\:w-5\/12 {
    width: 41.666667%;
  }
  .md\:w-6\/12 {
    width: 50%;
  }
  .md\:w-7\/12 {
    width: 58.333333%;
  }
  .md\:w-full {
    width: 100%;
  }
  .md\:gap-0 {
    grid-gap: 0;
    gap: 0;
  }
  .md\:gap-4 {
    grid-gap: 1rem;
    gap: 1rem;
  }
  .md\:gap-6 {
    grid-gap: 1.5rem;
    gap: 1.5rem;
  }
  .md\:gap-12 {
    grid-gap: 3rem;
    gap: 3rem;
  }
  .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\:col-span-2 {
    grid-column: span 2/span 2;
  }
}
@media (min-width: 1024px) {
  .lg\:container {
    width: 100%;
  }
}
@media (min-width: 1024px) and (min-width: 640px) {
  .lg\:container {
    max-width: 640px;
  }
}
@media (min-width: 1024px) and (min-width: 768px) {
  .lg\:container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .lg\:container {
    max-width: 1024px;
  }
}
@media (min-width: 1024px) and (min-width: 1280px) {
  .lg\:container {
    max-width: 1280px;
  }
}
@media (min-width: 1024px) {
  .lg\:space-y-0 > :not(template) ~ :not(template) {
    --space-y-reverse: 0;
    margin-top: calc(0px * (1 - var(--space-y-reverse)));
    margin-bottom: calc(0px * var(--space-y-reverse));
  }
  .lg\:space-x-2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--space-x-reverse));
    margin-left: calc(0.5rem * (1 - var(--space-x-reverse)));
  }
  .lg\:space-x-10 > :not(template) ~ :not(template) {
    --space-x-reverse: 0;
    margin-right: calc(2.5rem * var(--space-x-reverse));
    margin-left: calc(2.5rem * (1 - var(--space-x-reverse)));
  }
  .lg\:block {
    display: block;
  }
  .lg\:flex {
    display: flex;
  }
  .lg\:grid {
    display: grid;
  }
  .lg\:hidden {
    display: none;
  }
  .lg\:flex-row {
    flex-direction: row;
  }
  .lg\:h-20 {
    height: 5rem;
  }
  .lg\:text-base {
    font-size: 1rem;
  }
  .lg\:text-lg {
    font-size: 1.125rem;
  }
  .lg\:text-xl {
    font-size: 1.25rem;
  }
  .lg\:text-2xl {
    font-size: 1.5rem;
  }
  .lg\:text-3xl {
    font-size: 1.75rem;
  }
  .lg\:text-4xl {
    font-size: 2.25rem;
  }
  .lg\:text-5xl {
    font-size: 2.5rem;
  }
  .lg\:text-7xl {
    font-size: 4.5rem;
  }
  .lg\:mx-10 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }
  .lg\:mx-12 {
    margin-left: 3rem;
    margin-right: 3rem;
  }
  .lg\:my-16 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
  .lg\:my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
  .lg\:mr-0 {
    margin-right: 0;
  }
  .lg\:mb-0 {
    margin-bottom: 0;
  }
  .lg\:mt-4 {
    margin-top: 1rem;
  }
  .lg\:mb-4 {
    margin-bottom: 1rem;
  }
  .lg\:mb-5 {
    margin-bottom: 1.25rem;
  }
  .lg\:mb-6 {
    margin-bottom: 1.5rem;
  }
  .lg\:mt-8 {
    margin-top: 2rem;
  }
  .lg\:mb-8 {
    margin-bottom: 2rem;
  }
  .lg\:mb-12 {
    margin-bottom: 3rem;
  }
  .lg\:mt-16 {
    margin-top: 4rem;
  }
  .lg\:mb-16 {
    margin-bottom: 4rem;
  }
  .lg\:mt-20 {
    margin-top: 5rem;
  }
  .lg\:mb-20 {
    margin-bottom: 5rem;
  }
  .lg\:mb-32 {
    margin-bottom: 8rem;
  }
  .lg\:-mt-2 {
    margin-top: -0.5rem;
  }
  .lg\:p-16 {
    padding: 4rem;
  }
  .lg\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .lg\:py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .lg\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .lg\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .lg\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .lg\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .lg\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .lg\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .lg\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .lg\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .lg\:py-40 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .lg\:py-80 {
    padding-top: 20rem;
    padding-bottom: 20rem;
  }
  .lg\:pb-4 {
    padding-bottom: 1rem;
  }
  .lg\:pb-6 {
    padding-bottom: 1.5rem;
  }
  .lg\:pt-16 {
    padding-top: 4rem;
  }
  .lg\:pr-16 {
    padding-right: 4rem;
  }
  .lg\:pl-16 {
    padding-left: 4rem;
  }
  .lg\:pt-20 {
    padding-top: 5rem;
  }
  .lg\:pr-32 {
    padding-right: 8rem;
  }
  .lg\:pb-32 {
    padding-bottom: 8rem;
  }
  .lg\:pl-32 {
    padding-left: 8rem;
  }
  .lg\:w-20 {
    width: 5rem;
  }
  .lg\:w-128 {
    width: 32rem;
  }
  .lg\:w-1\/2 {
    width: 50%;
  }
  .lg\:w-1\/3 {
    width: 33.333333%;
  }
  .lg\:w-2\/3 {
    width: 66.666667%;
  }
  .lg\:w-1\/4 {
    width: 25%;
  }
  .lg\:w-2\/5 {
    width: 40%;
  }
  .lg\:w-3\/5 {
    width: 60%;
  }
  .lg\:w-3\/12 {
    width: 25%;
  }
  .lg\:w-9\/12 {
    width: 75%;
  }
  .lg\:w-full {
    width: 100%;
  }
  .lg\:gap-6 {
    grid-gap: 1.5rem;
    gap: 1.5rem;
  }
  .lg\:gap-8 {
    grid-gap: 2rem;
    gap: 2rem;
  }
  .lg\:gap-16 {
    grid-gap: 4rem;
    gap: 4rem;
  }
  .lg\:gap-x-8 {
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
  }
  .lg\:row-gap-10 {
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }
  .lg\:gap-y-12 {
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .lg\:col-span-2 {
    grid-column: span 2/span 2;
  }
  .lg\:col-start-2 {
    grid-column-start: 2;
  }
  .lg\:grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  .xl\:container {
    width: 100%;
  }
}
@media (min-width: 1280px) and (min-width: 640px) {
  .xl\:container {
    max-width: 640px;
  }
}
@media (min-width: 1280px) and (min-width: 768px) {
  .xl\:container {
    max-width: 768px;
  }
}
@media (min-width: 1280px) and (min-width: 1024px) {
  .xl\:container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) and (min-width: 1280px) {
  .xl\:container {
    max-width: 1280px;
  }
}
@media (min-width: 1280px) {
  .xl\:h-96 {
    height: 24rem;
  }
  .xl\:w-full {
    width: 100%;
  }
  .xl\:gap-8 {
    grid-gap: 2rem;
    gap: 2rem;
  }
  .xl\:gap-16 {
    grid-gap: 4rem;
    gap: 4rem;
  }
  .xl\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}