/*! tailwindcss v2.2.17 | MIT License | https://tailwindcss.com */

/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

/*
Document
========
*/

/**
Use a better box model (opinionated).
*/

*,
::before,
::after {
  box-sizing: border-box;
}

/**
Use a more readable tab size (opinionated).
*/

html {
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

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

/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/

body {
  font-family:
		system-ui,
		-apple-system, /* Firefox supports this but not yet `system-ui` */
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
}

/*
Grouping content
================
*/

/**
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)
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
}

/*
Text-level semantics
====================
*/

/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/

/**
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

/**
Add the correct font size in all browsers.
*/

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/

/*
Tabular data
============
*/

/**
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)
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
}

/*
Forms
=====
*/

/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/

button,
input,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
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='submit'] {
  -webkit-appearance: button;
}

/**
Remove the inner border and padding in Firefox.
*/

/**
Restore the focus styles unset by the previous rule.
*/

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/

legend {
  padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/

/**
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.
*/

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/

/*
Interactive
===========
*/

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/**
 * 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,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p {
  margin: 0;
}

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

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: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 1 */
  line-height: 1.5; /* 2 */
}

/**
 * Inherit font-family and line-height from `html` so users can set them as
 * a class directly on the `html` element.
 */

body {
  font-family: inherit;
  line-height: inherit;
}

/**
 * 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: currentColor; /* 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 {
  opacity: 1;
  color: #a1a1aa;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1;
  color: #a1a1aa;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #a1a1aa;
}

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

/**
 * Override legacy focus reset from Normalize with modern Firefox focus styles.
 *
 * This is actually an improvement over the new defaults in Firefox in our testing,
 * as it triggers the better focus styles even for links, which still use a dotted
 * outline in Firefox by default.
 */

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,
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.
 */

/**
 * 1. 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
 * 
 * 2. Add `vertical-align: middle` to align replaced elements more
 *    sensibly by default when overriding `display` by adding a
 *    utility like `inline`.
 *
 *    This can trigger a poorly considered linting error in some
 *    tools but is included by design.
 * 
 *    https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
 */

img,
svg,
video,
iframe,
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;
}

/**
 * Ensure the default browser behavior of the `hidden` attribute.
 */

[hidden] {
  display: none;
}

*, ::before, ::after {
  border-color: currentColor;
}

.tw-container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
}

@media (min-width: 750px) {
  .tw-container {
    max-width: 750px;
  }
}

@media (min-width: 970px) {
  .tw-container {
    max-width: 970px;
  }
}

@media (min-width: 1230px) {
  .tw-container {
    max-width: 1230px;
  }
}

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

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

.tw-fixed {
  position: fixed;
}

.tw-absolute {
  position: absolute;
}

.tw-relative {
  position: relative;
}

.tw-top-0 {
  top: 0px;
}

.tw-top-1\/2 {
  top: 50%;
}

.tw-top-1\/4 {
  top: 25%;
}

.tw-top-full {
  top: 100%;
}

.tw--top-60px {
  top: -3.75rem;
}

.tw-right-0 {
  right: 0px;
}

.tw-right-3 {
  right: 0.75rem;
}

.tw-right-8 {
  right: 2rem;
}

.tw-left-0 {
  left: 0px;
}

.tw-z-5 {
  z-index: 5;
}

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

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

.tw--z-1 {
  z-index: -1;
}

.tw-order-last {
  order: 9999;
}

.tw-float-left {
  float: left;
}

.tw-float-none {
  float: none;
}

.tw-clear-both {
  clear: both;
}

.tw-m-0 {
  margin: 0px;
}

.tw-m-2 {
  margin: 0.5rem;
}

.tw-mx-0 {
  margin-left: 0px;
  margin-right: 0px;
}

.tw-mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

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

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

.tw-mx-10px {
  margin-left: 0.625rem;
  margin-right: 0.625rem;
}

.tw-my-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}

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

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

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

.tw-my-9 {
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
}

.tw-mt-0 {
  margin-top: 0px;
}

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

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

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

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

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

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

.tw-mt-7 {
  margin-top: 1.75rem;
}

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

.tw-mt-10 {
  margin-top: 2.5rem;
}

.tw-mt-11 {
  margin-top: 2.75rem;
}

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

.tw--mt-10 {
  margin-top: -2.5rem;
}

.tw-mt-8px {
  margin-top: 0.5rem;
}

.tw--mt-15px {
  margin-top: -0.9375rem;
}

.tw-mt-15px {
  margin-top: 0.9375rem;
}

.tw-mt-30px {
  margin-top: 1.875rem;
}

.tw-mt-60px {
  margin-top: 3.75rem;
}

.tw-mr-0 {
  margin-right: 0px;
}

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

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

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

.tw-mr-px {
  margin-right: 1px;
}

.tw-mr-5px {
  margin-right: 0.3125rem;
}

.tw--mr-15px {
  margin-right: -0.9375rem;
}

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

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

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

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

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

.tw-mb-5 {
  margin-bottom: 1.25rem;
}

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

.tw-mb-7 {
  margin-bottom: 1.75rem;
}

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

.tw-mb-9 {
  margin-bottom: 2.25rem;
}

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

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

.tw-mb-14 {
  margin-bottom: 3.5rem;
}

.tw-mb-15 {
  margin-bottom: 0.9375rem;
}

.tw-mb-5px {
  margin-bottom: 0.3125rem;
}

.tw-mb-15px {
  margin-bottom: 0.9375rem;
}

.tw-mb-25px {
  margin-bottom: 1.563rem;
}

.tw-mb-30px {
  margin-bottom: 1.875rem;
}

.tw-mb-50px {
  margin-bottom: 3.125rem;
}

.tw-ml-0 {
  margin-left: 0px;
}

.tw-ml-1 {
  margin-left: 0.25rem;
}

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

.tw-ml-15 {
  margin-left: 0.9375rem;
}

.tw-ml-auto {
  margin-left: auto;
}

.tw--ml-15px {
  margin-left: -0.9375rem;
}

.tw-ml-15px {
  margin-left: 0.9375rem;
}

.tw-box-border {
  box-sizing: border-box;
}

.tw-box-content {
  box-sizing: content-box;
}

.tw-block {
  display: block;
}

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

.tw-inline {
  display: inline;
}

.tw-flex {
  display: flex;
}

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

.tw-table {
  display: table;
}

.tw-grid {
  display: grid;
}

.tw-list-item {
  display: list-item;
}

.tw-hidden {
  display: none;
}

.tw-h-2 {
  height: 0.5rem;
}

.tw-h-5 {
  height: 1.25rem;
}

.tw-h-6 {
  height: 1.5rem;
}

.tw-h-8 {
  height: 2rem;
}

.tw-h-10 {
  height: 2.5rem;
}

.tw-h-14 {
  height: 3.5rem;
}

.tw-h-auto {
  height: auto;
}

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

.tw-h-25px {
  height: 1.563rem;
}

.tw-h-50px {
  height: 3.125rem;
}

.tw-max-h-49 {
  max-height: 12.5rem;
}

.tw-min-h-0 {
  min-height: 0px;
}

.tw-min-h-40px {
  min-height: 2.5rem;
}

.tw-min-h-200px {
  min-height: 12.5rem;
}

.tw-w-0 {
  width: 0px;
}

.tw-w-2 {
  width: 0.5rem;
}

.tw-w-5 {
  width: 1.25rem;
}

.tw-w-8 {
  width: 2rem;
}

.tw-w-10 {
  width: 2.5rem;
}

.tw-w-14 {
  width: 3.5rem;
}

.tw-w-48 {
  width: 12rem;
}

.tw-w-72 {
  width: 18rem;
}

.tw-w-auto {
  width: auto;
}

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

.tw-w-1\/3 {
  width: 33.333333%;
}

.tw-w-1\/4 {
  width: 25%;
}

.tw-w-2\/6 {
  width: 33.333333%;
}

.tw-w-3\/6 {
  width: 50%;
}

.tw-w-9\/12 {
  width: 75%;
}

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

.tw-w-max {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.tw-w-50px {
  width: 3.125rem;
}

.tw-min-w-0 {
  min-width: 0px;
}

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

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

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

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

.tw-table-fixed {
  table-layout: fixed;
}

.tw-transform {
  --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;
  transform: translateX(var(--tw-translate-x)) translateY(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));
}

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

.tw-scale-125 {
  --tw-scale-x: 1.25;
  --tw-scale-y: 1.25;
}

@-webkit-keyframes tw-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes tw-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes tw-ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes tw-pulse {
  50% {
    opacity: .5;
  }
}

@keyframes tw-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);
  }
}

.tw-cursor-default {
  cursor: default;
}

.tw-cursor-pointer {
  cursor: pointer;
}

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

.tw-list-inside {
  list-style-position: inside;
}

.tw-list-none {
  list-style-type: none;
}

.tw-list-decimal {
  list-style-type: decimal;
}

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

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

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

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

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

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

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

.tw-content-center {
  align-content: center;
}

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

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

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

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

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

.tw-gap-3 {
  gap: 0.75rem;
}

.tw-gap-5 {
  gap: 1.25rem;
}

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

.tw-gap-10 {
  gap: 2.5rem;
}

.tw-gap-14 {
  gap: 3.5rem;
}

.tw-gap-column {
  gap: 1.875rem;
}

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

.tw-overflow-hidden {
  overflow: hidden;
}

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

.tw-overflow-y-auto {
  overflow-y: auto;
}

.tw-overflow-y-scroll {
  overflow-y: scroll;
}

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

.tw-break-words {
  overflow-wrap: break-word;
}

.tw-rounded-sm {
  border-radius: 0.125rem;
}

.tw-rounded {
  border-radius: 0.25rem;
}

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

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

.tw-rounded-initial {
  border-radius: initial;
}

.tw-border-0 {
  border-width: 0px;
}

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

.tw-border-4 {
  border-width: 4px;
}

.tw-border {
  border-width: 1px;
}

.tw-border-t-8 {
  border-top-width: 8px;
}

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

.tw-border-t-9px {
  border-top-width: 0.563rem;
}

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

.tw-border-b-0 {
  border-bottom-width: 0px;
}

.tw-border-b-4 {
  border-bottom-width: 4px;
}

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

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

.tw-border-solid {
  border-style: solid;
}

.tw-border-none {
  border-style: none;
}

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

.tw-border-black {
  --tw-border-opacity: 1;
  border-color: rgba(68, 78, 90, var(--tw-border-opacity));
}

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

.tw-border-white-10 {
  border-color: rgba(255, 255, 255, 0.1);
}

.tw-border-grey-1 {
  --tw-border-opacity: 1;
  border-color: rgba(204, 204, 204, var(--tw-border-opacity));
}

.tw-border-grey-7 {
  --tw-border-opacity: 1;
  border-color: rgba(63, 77, 89, var(--tw-border-opacity));
}

.tw-border-grey-8 {
  --tw-border-opacity: 1;
  border-color: rgba(232, 232, 232, var(--tw-border-opacity));
}

.tw-border-grey-9 {
  --tw-border-opacity: 1;
  border-color: rgba(219, 219, 219, var(--tw-border-opacity));
}

.tw-border-grey-10 {
  --tw-border-opacity: 1;
  border-color: rgba(153, 153, 153, var(--tw-border-opacity));
}

.tw-border-grey-11 {
  --tw-border-opacity: 1;
  border-color: rgba(237, 237, 237, var(--tw-border-opacity));
}

.tw-border-grey-13 {
  --tw-border-opacity: 1;
  border-color: rgba(228, 229, 230, var(--tw-border-opacity));
}

.tw-border-grey-14 {
  --tw-border-opacity: 1;
  border-color: rgba(217, 217, 217, var(--tw-border-opacity));
}

.tw-border-grey-15 {
  --tw-border-opacity: 1;
  border-color: rgba(209, 213, 216, var(--tw-border-opacity));
}

.tw-border-grey-16 {
  --tw-border-opacity: 1;
  border-color: rgba(230, 230, 230, var(--tw-border-opacity));
}

.tw-border-grey-19 {
  --tw-border-opacity: 1;
  border-color: rgba(220, 220, 220, var(--tw-border-opacity));
}

.tw-border-grey-22 {
  --tw-border-opacity: 1;
  border-color: rgba(242, 241, 239, var(--tw-border-opacity));
}

.tw-border-grey {
  --tw-border-opacity: 1;
  border-color: rgba(214, 219, 222, var(--tw-border-opacity));
}

.tw-border-grey-lighter {
  --tw-border-opacity: 1;
  border-color: rgba(241, 241, 241, var(--tw-border-opacity));
}

.tw-border-blue-21 {
  --tw-border-opacity: 1;
  border-color: rgba(184, 212, 236, var(--tw-border-opacity));
}

.tw-border-blue {
  --tw-border-opacity: 1;
  border-color: rgba(131, 200, 239, var(--tw-border-opacity));
}

.tw-border-blue-bright {
  --tw-border-opacity: 1;
  border-color: rgba(18, 104, 210, var(--tw-border-opacity));
}

.tw-border-orange-1 {
  --tw-border-opacity: 1;
  border-color: rgba(222, 133, 60, var(--tw-border-opacity));
}

.tw-bg-transparent {
  background-color: transparent;
}

.tw-bg-black-60 {
  background-color: #0009;
}

.tw-bg-black {
  --tw-bg-opacity: 1;
  background-color: rgba(68, 78, 90, var(--tw-bg-opacity));
}

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

.tw-bg-grey-2 {
  --tw-bg-opacity: 1;
  background-color: rgba(245, 245, 245, var(--tw-bg-opacity));
}

.tw-bg-grey-3 {
  --tw-bg-opacity: 1;
  background-color: rgba(224, 224, 224, var(--tw-bg-opacity));
}

.tw-bg-grey-12 {
  --tw-bg-opacity: 1;
  background-color: rgba(246, 246, 246, var(--tw-bg-opacity));
}

.tw-bg-grey-18 {
  --tw-bg-opacity: 1;
  background-color: rgba(243, 243, 243, var(--tw-bg-opacity));
}

.tw-bg-grey-20 {
  --tw-bg-opacity: 1;
  background-color: rgba(249, 249, 249, var(--tw-bg-opacity));
}

.tw-bg-grey-21 {
  --tw-bg-opacity: 1;
  background-color: rgba(227, 228, 232, var(--tw-bg-opacity));
}

.tw-bg-grey-26 {
  --tw-bg-opacity: 1;
  background-color: rgba(68, 78, 90, var(--tw-bg-opacity));
}

.tw-bg-grey {
  --tw-bg-opacity: 1;
  background-color: rgba(214, 219, 222, var(--tw-bg-opacity));
}

.tw-bg-grey-light {
  --tw-bg-opacity: 1;
  background-color: rgba(242, 242, 242, var(--tw-bg-opacity));
}

.tw-bg-grey-lighter {
  --tw-bg-opacity: 1;
  background-color: rgba(241, 241, 241, var(--tw-bg-opacity));
}

.tw-bg-grey-dark {
  --tw-bg-opacity: 1;
  background-color: rgba(82, 96, 107, var(--tw-bg-opacity));
}

.tw-bg-blue-20 {
  --tw-bg-opacity: 1;
  background-color: rgba(248, 253, 254, var(--tw-bg-opacity));
}

.tw-bg-blue {
  --tw-bg-opacity: 1;
  background-color: rgba(131, 200, 239, var(--tw-bg-opacity));
}

.tw-bg-blue-bright {
  --tw-bg-opacity: 1;
  background-color: rgba(18, 104, 210, var(--tw-bg-opacity));
}

.tw-bg-blue-lighter {
  --tw-bg-opacity: 1;
  background-color: rgba(235, 242, 252, var(--tw-bg-opacity));
}

.tw-bg-blue-dark {
  --tw-bg-opacity: 1;
  background-color: rgba(0, 51, 160, var(--tw-bg-opacity));
}

.tw-bg-red-dark {
  --tw-bg-opacity: 1;
  background-color: rgba(178, 0, 20, var(--tw-bg-opacity));
}

.tw-bg-linkOverlay {
  background-color: rgba(0, 0, 0, 0.4);
}

.tw-bg-linkOverlayHover {
  background-color: rgba(0, 0, 0, 0.1);
}

.hover\:tw-bg-transparent:hover {
  background-color: transparent;
}

.hover\:tw-bg-black:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(68, 78, 90, var(--tw-bg-opacity));
}

.hover\:tw-bg-black-hover:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(44, 55, 64, var(--tw-bg-opacity));
}

.hover\:tw-bg-white:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.hover\:tw-bg-grey-2:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(245, 245, 245, var(--tw-bg-opacity));
}

.hover\:tw-bg-grey-light:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(242, 242, 242, var(--tw-bg-opacity));
}

.hover\:tw-bg-blue-bright:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(18, 104, 210, var(--tw-bg-opacity));
}

.focus\:tw-bg-transparent:focus {
  background-color: transparent;
}

.tw-bg-none {
  background-image: none;
}

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

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

.tw-bg-left {
  background-position: left;
}

.tw-bg-left-top {
  background-position: left top;
}

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

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

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

.tw-p-0 {
  padding: 0px;
}

.tw-p-2 {
  padding: 0.5rem;
}

.tw-p-3 {
  padding: 0.75rem;
}

.tw-p-4 {
  padding: 1rem;
}

.tw-p-5 {
  padding: 1.25rem;
}

.tw-p-6 {
  padding: 1.5rem;
}

.tw-p-5px {
  padding: 0.3125rem;
}

.tw-p-15px {
  padding: 0.9375rem;
}

.tw-p-30px {
  padding: 1.875rem;
}

.tw-px-0 {
  padding-left: 0px;
  padding-right: 0px;
}

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

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

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

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

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

.tw-px-7 {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

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

.tw-px-9 {
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}

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

.tw-px-15 {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
}

.tw-px-13px {
  padding-left: 0.813rem;
  padding-right: 0.813rem;
}

.tw-px-15px {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
}

.tw-px-30px {
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}

.tw-py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}

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

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

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

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

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

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

.tw-py-7 {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

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

.tw-py-14 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.tw-py-13px {
  padding-top: 0.813rem;
  padding-bottom: 0.813rem;
}

.tw-py-25px {
  padding-top: 1.563rem;
  padding-bottom: 1.563rem;
}

.tw-py-30px {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}

.tw-py-45px {
  padding-top: 2.8125rem;
  padding-bottom: 2.8125rem;
}

.tw-py-50px {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}

.tw-pt-0 {
  padding-top: 0px;
}

.tw-pt-1 {
  padding-top: 0.25rem;
}

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

.tw-pt-4 {
  padding-top: 1rem;
}

.tw-pt-5 {
  padding-top: 1.25rem;
}

.tw-pt-6 {
  padding-top: 1.5rem;
}

.tw-pt-7 {
  padding-top: 1.75rem;
}

.tw-pt-8 {
  padding-top: 2rem;
}

.tw-pt-20 {
  padding-top: 5rem;
}

.tw-pt-22px {
  padding-top: 1.375rem;
}

.tw-pt-30px {
  padding-top: 1.875rem;
}

.tw-pr-0 {
  padding-right: 0px;
}

.tw-pr-2 {
  padding-right: 0.5rem;
}

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

.tw-pr-5 {
  padding-right: 1.25rem;
}

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

.tw-pr-px {
  padding-right: 1px;
}

.tw-pr-30px {
  padding-right: 1.875rem;
}

.tw-pr-70px {
  padding-right: 4.375rem;
}

.tw-pb-0 {
  padding-bottom: 0px;
}

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

.tw-pb-2 {
  padding-bottom: 0.5rem;
}

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

.tw-pb-5 {
  padding-bottom: 1.25rem;
}

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

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

.tw-pb-9 {
  padding-bottom: 2.25rem;
}

.tw-pb-10 {
  padding-bottom: 2.5rem;
}

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

.tw-pb-15px {
  padding-bottom: 0.9375rem;
}

.tw-pb-17px {
  padding-bottom: 1.063rem;
}

.tw-pb-25px {
  padding-bottom: 1.563rem;
}

.tw-pb-30px {
  padding-bottom: 1.875rem;
}

.tw-pb-34px {
  padding-bottom: 2.125rem;
}

.tw-pb-50px {
  padding-bottom: 3.125rem;
}

.tw-pl-0 {
  padding-left: 0px;
}

.tw-pl-2 {
  padding-left: 0.5rem;
}

.tw-pl-3 {
  padding-left: 0.75rem;
}

.tw-pl-4 {
  padding-left: 1rem;
}

.tw-pl-5 {
  padding-left: 1.25rem;
}

.tw-pl-6 {
  padding-left: 1.5rem;
}

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

.tw-pl-9 {
  padding-left: 2.25rem;
}

.tw-pl-10 {
  padding-left: 2.5rem;
}

.tw-pl-15 {
  padding-left: 0.9375rem;
}

.tw-pl-15px {
  padding-left: 0.9375rem;
}

.tw-pl-25px {
  padding-left: 1.563rem;
}

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

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

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

.tw-align-top {
  vertical-align: top;
}

.tw-align-middle {
  vertical-align: middle;
}

.tw-font-arial {
  font-family: Arial, Helvetica, sans-serif;
}

.tw-font-helvetica {
  font-family: Helvetica, sans-serif;
}

.tw-text-0 {
  font-size: 0px;
}

.tw-text-1 {
  font-size: 2.5rem;
  line-height: 3.5rem;
}

.tw-text-2 {
  font-size: 0.810rem;
  line-height: 1.25rem;
}

.tw-text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.tw-text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.tw-text-base {
  font-size: 1rem;
  line-height: 1.75;
}

.tw-text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.tw-text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

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

.tw-text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.tw-text-13px {
  font-size: 0.8125rem;
}

.tw-text-14px {
  font-size: 0.875rem;
}

.tw-text-18px {
  font-size: 1.125rem;
  line-height: normal;
}

.tw-text-16px {
  font-size: 1rem;
}

.tw-text-22px {
  font-size: 1.375rem;
}

.tw-text-24px {
  font-size: 1.5rem;
}

.tw-text-25px {
  font-size: 1.5625rem;
}

.tw-text-28px {
  font-size: 1.75rem;
}

.tw-text-32px {
  font-size: 2rem;
}

.tw-text-36px {
  font-size: 2.25rem;
}

.tw-text-13vw {
  font-size: 13.2vw;
}

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

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

.tw-font-black {
  font-weight: 900;
}

.tw-uppercase {
  text-transform: uppercase;
}

.tw-lowercase {
  text-transform: lowercase;
}

.tw-capitalize {
  text-transform: capitalize;
}

.tw-italic {
  font-style: italic;
}

.tw-leading-4 {
  line-height: 1rem;
}

.tw-leading-5 {
  line-height: 1.25rem;
}

.tw-leading-7 {
  line-height: 1.75rem;
}

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

.tw-leading-10 {
  line-height: 2.5rem;
}

.tw-leading-none {
  line-height: 1;
}

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

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

.tw-leading-normal {
  line-height: 1.5;
}

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

.tw-leading-loose {
  line-height: 2;
}

.tw-leading-initial {
  line-height: initial;
}

.tw-text-transparent {
  color: transparent;
}

.tw-text-black {
  --tw-text-opacity: 1;
  color: rgba(68, 78, 90, var(--tw-text-opacity));
}

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

.tw-text-grey-4 {
  --tw-text-opacity: 1;
  color: rgba(119, 119, 119, var(--tw-text-opacity));
}

.tw-text-grey-7 {
  --tw-text-opacity: 1;
  color: rgba(63, 77, 89, var(--tw-text-opacity));
}

.tw-text-grey-10 {
  --tw-text-opacity: 1;
  color: rgba(153, 153, 153, var(--tw-text-opacity));
}

.tw-text-grey-22 {
  --tw-text-opacity: 1;
  color: rgba(242, 241, 239, var(--tw-text-opacity));
}

.tw-text-grey-25 {
  --tw-text-opacity: 1;
  color: rgba(30, 30, 30, var(--tw-text-opacity));
}

.tw-text-grey-28 {
  --tw-text-opacity: 1;
  color: rgba(115, 121, 124, var(--tw-text-opacity));
}

.tw-text-blue {
  --tw-text-opacity: 1;
  color: rgba(131, 200, 239, var(--tw-text-opacity));
}

.tw-text-blue-bright {
  --tw-text-opacity: 1;
  color: rgba(18, 104, 210, var(--tw-text-opacity));
}

.tw-text-blue-light {
  --tw-text-opacity: 1;
  color: rgba(131, 200, 239, var(--tw-text-opacity));
}

.tw-text-blue-dark {
  --tw-text-opacity: 1;
  color: rgba(0, 51, 160, var(--tw-text-opacity));
}

.hover\:tw-text-black:hover {
  --tw-text-opacity: 1;
  color: rgba(68, 78, 90, var(--tw-text-opacity));
}

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

.hover\:tw-text-grey-23:hover {
  --tw-text-opacity: 1;
  color: rgba(208, 208, 208, var(--tw-text-opacity));
}

.hover\:tw-text-blue:hover {
  --tw-text-opacity: 1;
  color: rgba(131, 200, 239, var(--tw-text-opacity));
}

.hover\:tw-text-blue-bright:hover {
  --tw-text-opacity: 1;
  color: rgba(18, 104, 210, var(--tw-text-opacity));
}

.hover\:tw-text-blue-light:hover {
  --tw-text-opacity: 1;
  color: rgba(131, 200, 239, var(--tw-text-opacity));
}

.hover\:tw-text-blue-dark:hover {
  --tw-text-opacity: 1;
  color: rgba(0, 51, 160, var(--tw-text-opacity));
}

.hover\:tw-text-yellow-1:hover {
  --tw-text-opacity: 1;
  color: rgba(245, 247, 73, var(--tw-text-opacity));
}

.focus\:tw-text-transparent:focus {
  color: transparent;
}

.focus\:tw-text-blue-bright:focus {
  --tw-text-opacity: 1;
  color: rgba(18, 104, 210, var(--tw-text-opacity));
}

.tw-text-opacity-20 {
  --tw-text-opacity: 0.2;
}

.tw-underline {
  text-decoration: underline;
}

.tw-no-underline {
  text-decoration: none;
}

.hover\:tw-underline:hover {
  text-decoration: underline;
}

.hover\:tw-no-underline:hover {
  text-decoration: none;
}

.focus\:tw-underline:focus {
  text-decoration: underline;
}

.tw-opacity-0 {
  opacity: 0;
}

.tw-opacity-70 {
  opacity: 0.7;
}

.tw-opacity-100 {
  opacity: 1;
}

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

.hover\:tw-opacity-70:hover {
  opacity: 0.7;
}

*, ::before, ::after {
  --tw-shadow: 0 0 #0000;
}

.tw-shadow-nice-select {
  --tw-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

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

.tw-outline-whiteCustom {
  outline: 4px solid rgba(255, 255, 255, 0.8);
  outline-offset: -25px;
}

.tw-outline-blue {
  outline: 2px solid #1268d2;
  outline-offset: 0;
}

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

.focus\:tw-outline-blue:focus {
  outline: 2px solid #1268d2;
  outline-offset: 0;
}

*, ::before, ::after {
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
}

.tw-ring-offset-white {
  --tw-ring-offset-color: #fff;
}

.tw-ring-offset-blue-bright {
  --tw-ring-offset-color: #1268d2;
}

.tw-transition-none {
  transition-property: none;
}

.tw-transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.tw-transition {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: background-color, border-color, 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;
}

.tw-transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

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

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

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

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

@media (max-width: 599px) {

  .xs\:tw-order-first {
    order: -9999;
  }

  .xs\:tw-mx-10px {
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }

  .xs\:tw--mr-15px {
    margin-right: -0.9375rem;
  }

  .xs\:tw-w-full {
    width: 100%;
  }

  .xs\:tw-flex-col {
    flex-direction: column;
  }

  .xs\:tw-justify-center {
    justify-content: center;
  }

  .xs\:tw-justify-between {
    justify-content: space-between;
  }

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

@media (min-width: 600px) {

  .sm\:tw-flex {
    display: flex;
  }

  .sm\:tw-hidden {
    display: none;
  }

  .sm\:tw-h-full {
    height: 100%;
  }

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

  .sm\:tw-w-full {
    width: 100%;
  }

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

  .sm\:tw-flex-col {
    flex-direction: column;
  }

  .sm\:tw-gap-column {
    gap: 1.875rem;
  }

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

  .sm\:tw-pb-17px {
    padding-bottom: 1.063rem;
  }
}

@media (max-width: 767px) {

  .smmax\:tw-order-first {
    order: -9999;
  }

  .smmax\:tw-w-full {
    width: 100%;
  }

  .smmax\:tw-flex-col {
    flex-direction: column;
  }

  .smmax\:tw-justify-center {
    justify-content: center;
  }
}

@media (min-width: 768px) {

  .md\:tw-col-span-5 {
    grid-column: span 5 / span 5;
  }

  .md\:tw-col-span-7 {
    grid-column: span 7 / span 7;
  }

  .md\:tw-mt-auto {
    margin-top: auto;
  }

  .md\:tw-flex {
    display: flex;
  }

  .md\:tw-hidden {
    display: none;
  }

  .md\:tw-h-6 {
    height: 1.5rem;
  }

  .md\:tw-h-full {
    height: 100%;
  }

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

  .md\:tw-w-1\/4 {
    width: 25%;
  }

  .md\:tw-w-9\/12 {
    width: 75%;
  }

  .md\:tw-w-full {
    width: 100%;
  }

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

  .md\:tw-flex-1 {
    flex: 1 1 0%;
  }

  .md\:tw-transform {
    --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;
    transform: translateX(var(--tw-translate-x)) translateY(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));
  }

  .md\:tw--translate-y-1\/2 {
    --tw-translate-y: -50%;
  }

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

  .md\:tw-flex-row {
    flex-direction: row;
  }

  .md\:tw-flex-col {
    flex-direction: column;
  }

  .md\:tw-flex-wrap {
    flex-wrap: wrap;
  }

  .md\:tw-items-center {
    align-items: center;
  }

  .md\:tw-justify-start {
    justify-content: flex-start;
  }

  .md\:tw-justify-between {
    justify-content: space-between;
  }

  .md\:tw-border-t-0 {
    border-top-width: 0px;
  }

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

  .md\:tw-p-0 {
    padding: 0px;
  }

  .md\:tw-p-30px {
    padding: 1.875rem;
  }

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

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

  .md\:tw-px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .md\:tw-px-30px {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }

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

  .md\:tw-py-15px {
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem;
  }

  .md\:tw-pt-9 {
    padding-top: 2.25rem;
  }

  .md\:tw-pr-30px {
    padding-right: 1.875rem;
  }

  .md\:tw-pl-5 {
    padding-left: 1.25rem;
  }

  .md\:tw-text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .md\:tw-text-18px {
    font-size: 1.125rem;
    line-height: normal;
  }

  .md\:tw-text-17px {
    font-size: 1.063rem;
  }

  .md\:tw-text-24px {
    font-size: 1.5rem;
  }

  .md\:tw-text-32px {
    font-size: 2rem;
  }

  .md\:tw-opacity-0 {
    opacity: 0;
  }
}

@media (min-width: 1024px) {

  .lg\:tw-pointer-events-none {
    pointer-events: none;
  }

  .lg\:tw-order-first {
    order: -9999;
  }

  .lg\:tw-col-span-3 {
    grid-column: span 3 / span 3;
  }

  .lg\:tw-col-span-4 {
    grid-column: span 4 / span 4;
  }

  .lg\:tw-col-span-8 {
    grid-column: span 8 / span 8;
  }

  .lg\:tw-col-span-9 {
    grid-column: span 9 / span 9;
  }

  .lg\:tw-mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .lg\:tw-mt-0 {
    margin-top: 0px;
  }

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

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

  .lg\:tw-mt-30px {
    margin-top: 1.875rem;
  }

  .lg\:tw-mb-0 {
    margin-bottom: 0px;
  }

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

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

  .lg\:tw-mb-60px {
    margin-bottom: 3.75rem;
  }

  .lg\:tw-ml-0 {
    margin-left: 0px;
  }

  .lg\:tw-ml-15px {
    margin-left: 0.9375rem;
  }

  .lg\:tw-block {
    display: block;
  }

  .lg\:tw-inline-block {
    display: inline-block;
  }

  .lg\:tw-flex {
    display: flex;
  }

  .lg\:tw-grid {
    display: grid;
  }

  .lg\:tw-hidden {
    display: none;
  }

  .lg\:tw-h-180px {
    height: 11.25rem;
  }

  .lg\:tw-max-h-0 {
    max-height: 0px;
  }

  .lg\:tw-max-h-600px {
    max-height: 37.5rem;
  }

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

  .lg\:tw-w-2\/5 {
    width: 40%;
  }

  .lg\:tw-w-full {
    width: 100%;
  }

  .lg\:tw-flex-shrink-0 {
    flex-shrink: 0;
  }

  .lg\:tw-transform {
    --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;
    transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .lg\:tw--translate-y-4 {
    --tw-translate-y: -1rem;
  }

  .lg\:tw-scale-110 {
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
  }

  .lg\:tw-cursor-text {
    cursor: text;
  }

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

  .lg\:tw-gap-6 {
    gap: 1.5rem;
  }

  .lg\:tw-gap-10 {
    gap: 2.5rem;
  }

  .lg\:tw-gap-16 {
    gap: 4rem;
  }

  .lg\:tw-gap-column {
    gap: 1.875rem;
  }

  .lg\:tw-overflow-hidden {
    overflow: hidden;
  }

  .lg\:tw-overflow-y-auto {
    overflow-y: auto;
  }

  .lg\:tw-border-none {
    border-style: none;
  }

  .lg\:tw-bg-linkOverlay {
    background-color: rgba(0, 0, 0, 0.4);
  }

  .lg\:hover\:tw-bg-transparent:hover {
    background-color: transparent;
  }

  .lg\:tw-p-15px {
    padding: 0.9375rem;
  }

  .lg\:tw-px-60px {
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }

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

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

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

  .lg\:tw-py-30px {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }

  .lg\:tw-py-100px {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }

  .lg\:tw-pt-1 {
    padding-top: 0.25rem;
  }

  .lg\:tw-pr-2 {
    padding-right: 0.5rem;
  }

  .lg\:tw-pr-15px {
    padding-right: 0.9375rem;
  }

  .lg\:tw-pr-70px {
    padding-right: 4.375rem;
  }

  .lg\:tw-pb-5px {
    padding-bottom: 0.3125rem;
  }

  .lg\:tw-pl-15px {
    padding-left: 0.9375rem;
  }

  .lg\:tw-pl-30px {
    padding-left: 1.875rem;
  }

  .lg\:tw-text-left {
    text-align: left;
  }

  .lg\:tw-text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .lg\:tw-text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .lg\:tw-text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .lg\:tw-text-24px {
    font-size: 1.5rem;
  }

  .lg\:tw-text-26px {
    font-size: 1.625rem;
  }

  .lg\:tw-text-36px {
    font-size: 2.25rem;
  }

  .lg\:tw-text-48px {
    font-size: 3rem;
  }

  .lg\:tw-text-80px {
    font-size: 5rem;
  }

  .lg\:tw-font-normal {
    font-weight: 400;
  }

  .lg\:tw-capitalize {
    text-transform: capitalize;
  }

  .lg\:tw-text-black {
    --tw-text-opacity: 1;
    color: rgba(68, 78, 90, var(--tw-text-opacity));
  }

  .lg\:tw-text-grey-4 {
    --tw-text-opacity: 1;
    color: rgba(119, 119, 119, var(--tw-text-opacity));
  }

  .lg\:hover\:tw-text-black:hover {
    --tw-text-opacity: 1;
    color: rgba(68, 78, 90, var(--tw-text-opacity));
  }

  .lg\:tw-no-underline {
    text-decoration: none;
  }

  .lg\:tw-opacity-0 {
    opacity: 0;
  }

  .lg\:tw-opacity-80 {
    opacity: 0.8;
  }

  .lg\:tw-opacity-100 {
    opacity: 1;
  }
}

@media (max-width: 1229px) {

  .lgmax\:tw-absolute {
    position: absolute;
  }

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

  .lgmax\:tw-mb-9 {
    margin-bottom: 2.25rem;
  }

  .lgmax\:tw-hidden {
    display: none;
  }

  .lgmax\:tw-max-h-0 {
    max-height: 0px;
  }

  .lgmax\:tw-w-full {
    width: 100%;
  }

  .lgmax\:tw-flex-1 {
    flex: 1 1 0%;
  }

  .lgmax\:tw-overflow-hidden {
    overflow: hidden;
  }

  .lgmax\:tw-overflow-y-auto {
    overflow-y: auto;
  }

  .lgmax\:tw-bg-white {
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  }

  .lgmax\:tw-px-15px {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }

  .lgmax\:tw-py-10px {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .lgmax\:tw-text-9px {
    font-size: 0.563rem;
  }

  .lgmax\:tw-text-grey-25 {
    --tw-text-opacity: 1;
    color: rgba(30, 30, 30, var(--tw-text-opacity));
  }
}

@media (min-width: 1230px) {
  .xl\:tw-container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }

  @media (min-width: 750px) {
    .xl\:tw-container {
      max-width: 750px;
    }
  }

  @media (min-width: 970px) {
    .xl\:tw-container {
      max-width: 970px;
    }
  }

  @media (min-width: 1230px) {
    .xl\:tw-container {
      max-width: 1230px;
    }
  }

  .xl\:tw-absolute {
    position: absolute;
  }

  .xl\:tw-sticky {
    position: -webkit-sticky;
    position: sticky;
  }

  .xl\:tw-bottom-28 {
    bottom: 7rem;
  }

  .xl\:tw-left-4 {
    left: 1rem;
  }

  .xl\:tw-mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .xl\:tw-mx-15px {
    margin-left: 0.9375rem;
    margin-right: 0.9375rem;
  }

  .xl\:tw-mt-0 {
    margin-top: 0px;
  }

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

  .xl\:tw-mr-30px {
    margin-right: 1.875rem;
  }

  .xl\:tw-ml-0 {
    margin-left: 0px;
  }

  .xl\:tw-ml-auto {
    margin-left: auto;
  }

  .xl\:tw-block {
    display: block;
  }

  .xl\:tw-flex {
    display: flex;
  }

  .xl\:tw-grid {
    display: grid;
  }

  .xl\:tw-hidden {
    display: none;
  }

  .xl\:tw-h-68px {
    height: 4.25rem;
  }

  .xl\:tw-w-40 {
    width: 10rem;
  }

  .xl\:tw-w-72 {
    width: 18rem;
  }

  .xl\:tw-w-1\/4 {
    width: 25%;
  }

  .xl\:tw-w-full {
    width: 100%;
  }

  .xl\:tw-w-1200px {
    width: 75rem;
  }

  .xl\:tw-max-w-screen-xl {
    max-width: 1230px;
  }

  .xl\:tw-flex-1 {
    flex: 1 1 0%;
  }

  .xl\:tw-flex-shrink-0 {
    flex-shrink: 0;
  }

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

  .xl\:tw-flex-row {
    flex-direction: row;
  }

  .xl\:tw-flex-col-reverse {
    flex-direction: column-reverse;
  }

  .xl\:tw-items-center {
    align-items: center;
  }

  .xl\:tw-justify-end {
    justify-content: flex-end;
  }

  .xl\:tw-justify-between {
    justify-content: space-between;
  }

  .xl\:tw-gap-column {
    gap: 1.875rem;
  }

  .xl\:tw-gap-x-column {
    -moz-column-gap: 1.875rem;
         column-gap: 1.875rem;
  }

  .xl\:tw-gap-y-0 {
    row-gap: 0px;
  }

  .xl\:tw-p-7 {
    padding: 1.75rem;
  }

  .xl\:tw-px-60px {
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }

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

  .xl\:tw-py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

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

  .xl\:tw-py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .xl\:tw-py-100px {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }

  .xl\:tw-pt-0 {
    padding-top: 0px;
  }

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

  .xl\:tw-pb-10 {
    padding-bottom: 2.5rem;
  }

  .xl\:tw-pb-60px {
    padding-bottom: 3.75rem;
  }
}