/*
Tailwind setup
Settings and definitions are in tailwin.config.js

base.css is including the tailwind base and adding defaults for markup
*/

/*
the font paths are relative to the css file created with tailwind
/style.css
//assets/fonts/tt/...
*/

@font-face {
  font-family: 'TT';

  src: url('/assets/fonts/tt/nb_international_pro_regular-webfont.eot');

  src: url('/assets/fonts/tt/nb_international_pro_regular-webfont.eot?#iefix') format('embedded-opentype'),
        url('/assets/fonts/tt/nb_international_pro_regular-webfont.woff2') format('woff2'),
        url('/assets/fonts/tt/nb_international_pro_regular-webfont.woff') format('woff'),
        url('/assets/fonts/tt/nb_international_pro_regular-webfont.ttf') format('truetype');

  font-weight: normal;

  font-style: normal;

  font-display: swap
}

@font-face {
  font-family: 'TT';

  src: url('/assets/fonts/tt/nb_international_pro_italic-webfont.eot');

  src: url('/assets/fonts/tt/nb_international_pro_italic-webfont.eot?#iefix') format('embedded-opentype'),
        url('/assets/fonts/tt/nb_international_pro_italic-webfont.woff2') format('woff2'),
        url('/assets/fonts/tt/nb_international_pro_italic-webfont.woff') format('woff'),
        url('/assets/fonts/tt/nb_international_pro_italic-webfont.ttf') format('truetype');

  font-weight: normal;

  font-style: italic;

  font-display: swap
}

@font-face {
  font-family: 'TT';

  src: url('/assets/fonts/tt/nb_international_pro_bold_italic-webfont.eot');

  src: url('/assets/fonts/tt/nb_international_pro_bold_italic-webfont.eot?#iefix') format('embedded-opentype'),
        url('/assets/fonts/tt/nb_international_pro_bold_italic-webfont.woff2') format('woff2'),
        url('/assets/fonts/tt/nb_international_pro_bold_italic-webfont.woff') format('woff'),
        url('/assets/fonts/tt/nb_international_pro_bold_italic-webfont.ttf') format('truetype');

  font-weight: bold;

  font-style: italic;

  font-display: swap
}

@font-face {
  font-family: 'TT';

  src: url('/assets/fonts/tt/nb_international_pro_bold-webfont.eot');

  src: url('/assets/fonts/tt/nb_international_pro_bold-webfont.eot?#iefix') format('embedded-opentype'),
        url('/assets/fonts/tt/nb_international_pro_bold-webfont.woff2') format('woff2'),
        url('/assets/fonts/tt/nb_international_pro_bold-webfont.woff') format('woff'),
        url('/assets/fonts/tt/nb_international_pro_bold-webfont.ttf') format('truetype');

  font-weight: bold;

  font-style: normal;

  font-display: swap
}

@font-face {
  font-family: 'TT';

  src: url('/assets/fonts/tt/nb_international_pro_light-webfont.eot');

  src: url('/assets/fonts/tt/nb_international_pro_light-webfont.eot?#iefix') format('embedded-opentype'),
      url('/assets/fonts/tt/nb_international_pro_light-webfont.woff2') format('woff2'),
      url('/assets/fonts/tt/nb_international_pro_light-webfont.woff') format('woff'),
      url('/assets/fonts/tt/nb_international_pro_light-webfont.ttf') format('truetype');

  font-weight: 300;

  font-style: normal;

  font-display: swap
}

@font-face {
  font-family: 'TT';

  src: url('/assets/fonts/tt/nb_international_pro_light_italic-webfont.eot');

  src: url('/assets/fonts/tt/nb_international_pro_light_italic-webfont.eot?#iefix') format('embedded-opentype'),
        url('/assets/fonts/tt/nb_international_pro_light_italic-webfont.woff2') format('woff2'),
        url('/assets/fonts/tt/nb_international_pro_light_italic-webfont.woff') format('woff'),
        url('/assets/fonts/tt/nb_international_pro_light_italic-webfont.ttf') format('truetype');

  font-weight: 300;

  font-style: italic;

  font-display: swap
}

@font-face {
  font-family: 'TTmono';

  src: url('/assets/fonts/tt/nb_international_pro_mono-webfont.eot');

  src: url('/assets/fonts/tt/nb_international_pro_mono-webfont.eot?#iefix') format('embedded-opentype'),
        url('/assets/fonts/tt/nb_international_pro_mono-webfont.woff2') format('woff2'),
        url('/assets/fonts/tt/nb_international_pro_mono-webfont.woff') format('woff'),
        url('/assets/fonts/tt/nb_international_pro_mono-webfont.ttf') format('truetype');

  font-weight: normal;

  font-style: normal;

  font-display: swap
}

/* tailwind stuff */

/*
! tailwindcss v3.4.1 | MIT License | https://tailwindcss.com
*/

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  font-family: TT, Helvetica Neue, sans-serif;
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  -webkit-tap-highlight-color: transparent;
  /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

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

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

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

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: TTmono, Courier New, monospace;
  /* 1 */
  font-feature-settings: normal;
  /* 2 */
  font-variation-settings: normal;
  /* 3 */
  font-size: 1em;
  /* 4 */
}

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

small {
  font-size: 80%;
}

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

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

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

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

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-feature-settings: inherit;
  /* 1 */
  font-variation-settings: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

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

:-moz-ui-invalid {
  box-shadow: none;
}

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

progress {
  vertical-align: baseline;
}

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

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

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

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

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

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

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

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden] {
  display: none;
}

:root {
  interpolate-size: allow-keywords;
  --color-tint: #f3f3f3;
  --color-tint-dark: #D9D9D9;
  --color-tint-darker: #888888;
  --color-tint-darkest: #222222;
  --color-racing: #043623;
  --color-spring: #1EC95B;
  --color-red: #fa4646;
  --color-mist: #EFF5F0;
}

/* basefont */

html {
  font-family: TT, system-ui, sans-serif;
}

[x-cloak] {
  display: none !important;
}

a {
  color:#1ec95b;
}

a.alternative-a,
  .alternative-a a {
  --tw-text-opacity: 1;
  color: rgb(34 34 34 / var(--tw-text-opacity))
}

.section-dark a.alternative-a,.section-dark 
  .alternative-a a {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

a.alternative-a,
  .alternative-a a {
  text-decoration: underline;
}

/* Adding scroll-padding-top to the entire HTML document */

html {
  scroll-padding-top: 128px;
  /* Adjust the value based on your navbar height + desired space */
}

/* Card Framework */

/* Redactor */

.bg-spring .redactor-card a,
  .bg-racing .redactor-card a {
  color: white;
  text-decoration: underline;
}

.redactor-line-clamp-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

/* -------- */

/* h1 span,
  h2 span,
  h3 span,
  h4 span,
  h5 span,
  h6 span {
    @apply text-spring;
  } */

p {
  margin-top: 8px;
  margin-bottom: 8px
}

pre {
  --tw-bg-opacity: 1;
  background-color: rgb(246 246 246 / var(--tw-bg-opacity));
  font-family: TTmono, Courier New, monospace;
  --tw-text-opacity: 1;
  color: rgb(4 54 35 / var(--tw-text-opacity))
}

.section-dark pre {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

.section-dark pre.text-racing,
.section-dark pre .text-racing {
  color: rgb(4 54 35 / var(--tw-text-opacity))
}

.section-dark pre.bg-tint,
.section-dark .bg-tint pre,
.section-dark pre.bg-white, 
.section-dark .bg-white pre {
  color: rgb(4 54 35 / var(--tw-text-opacity))
}


.section-dark a pre {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

header .section-dark pre {
  background-color: rgb(34 34 34 / 0.5)
}

pre input[type="email"],pre input[type="text"],pre input[type="tel"] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity))
}


.section-dark pre input[type="email"].text-racing, 
.section-dark pre input[type="email"] .text-racing,
.section-dark pre input[type="text"].text-racing, 
.section-dark pre input[type="text"] .text-racing,
.section-dark pre input[type="tel"].text-racing, 
.section-dark pre input[type="tel"] .text-racing {
  color: rgb(4 54 35 / var(--tw-text-opacity))
}

pre input[type="email"],pre input[type="text"],pre input[type="tel"] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity))
}


.section-dark pre input[type="email"].text-racing, 
.section-dark pre input[type="email"] .text-racing,
.section-dark pre input[type="text"].text-racing, 
.section-dark pre input[type="text"] .text-racing,
.section-dark pre input[type="tel"].text-racing, 
.section-dark pre input[type="tel"] .text-racing {
  color: rgb(4 54 35 / var(--tw-text-opacity))
}

pre input[type="email"],pre input[type="text"],pre input[type="tel"] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity))
}


.section-dark pre input[type="email"].text-racing, 
.section-dark pre input[type="email"] .text-racing,
.section-dark pre input[type="text"].text-racing, 
.section-dark pre input[type="text"] .text-racing,
.section-dark pre input[type="tel"].text-racing, 
.section-dark pre input[type="tel"] .text-racing {
  color: rgb(4 54 35 / var(--tw-text-opacity))
}

.rangu pre {
  --tw-text-opacity: 1;
  color: rgb(34 34 34 / var(--tw-text-opacity))
}

.section-dark .rangu pre {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

pre {
  /* DIRTY FIX: This was added as every pre tag seems to be code tag, which doesn't wrap without this */
  white-space: break-spaces;
  overflow-wrap: break-word;
}

code {
  word-break: break-all;
  font-size: 0.8em;
  --tw-text-opacity: 1;
  color: rgb(4 54 35 / var(--tw-text-opacity));
}

.section-dark code {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

.section-dark code.bg-tint,
.section-dark .bg-tint code,
.section-dark code.bg-white, 
.section-dark .bg-white code {
  color: rgb(4 54 35 / var(--tw-text-opacity))
}


.section-dark a code {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

.rangu code {
  --tw-text-opacity: 1;
  color: rgb(34 34 34 / var(--tw-text-opacity))
}

.section-dark .rangu code {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

code {
  margin-right: 2px;
}

mark {
  background-color: rgb(30 201 91 / 0.2);
  padding-left: 16px;
  padding-right: 16px;
  --tw-text-opacity: 1;
  color: rgb(4 54 35 / var(--tw-text-opacity))
}

.section-dark mark {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

.section-dark mark.bg-tint,
.section-dark .bg-tint mark,
.section-dark mark.bg-white, 
.section-dark .bg-white mark {
  color: rgb(4 54 35 / var(--tw-text-opacity))
}


.section-dark a mark {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

.rangu mark {
  --tw-text-opacity: 1;
  color: rgb(34 34 34 / var(--tw-text-opacity))
}

.section-dark .rangu mark {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

blockquote {
  --tw-bg-opacity: 1;
  background-color: rgb(246 246 246 / var(--tw-bg-opacity));
  padding: 8px;
  font-size: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(4 54 35 / var(--tw-text-opacity))
}

.section-dark blockquote {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

.section-dark blockquote.text-racing,
.section-dark blockquote .text-racing {
  color: rgb(4 54 35 / var(--tw-text-opacity))
}

.section-dark blockquote.bg-tint,
.section-dark .bg-tint blockquote,
.section-dark blockquote.bg-white, 
.section-dark .bg-white blockquote {
  color: rgb(4 54 35 / var(--tw-text-opacity))
}


.section-dark a blockquote {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

header .section-dark blockquote {
  background-color: rgb(34 34 34 / 0.5)
}

blockquote input[type="email"],blockquote input[type="text"],blockquote input[type="tel"] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity))
}


.section-dark blockquote input[type="email"].text-racing, 
.section-dark blockquote input[type="email"] .text-racing,
.section-dark blockquote input[type="text"].text-racing, 
.section-dark blockquote input[type="text"] .text-racing,
.section-dark blockquote input[type="tel"].text-racing, 
.section-dark blockquote input[type="tel"] .text-racing {
  color: rgb(4 54 35 / var(--tw-text-opacity))
}

blockquote input[type="email"],blockquote input[type="text"],blockquote input[type="tel"] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity))
}


.section-dark blockquote input[type="email"].text-racing, 
.section-dark blockquote input[type="email"] .text-racing,
.section-dark blockquote input[type="text"].text-racing, 
.section-dark blockquote input[type="text"] .text-racing,
.section-dark blockquote input[type="tel"].text-racing, 
.section-dark blockquote input[type="tel"] .text-racing {
  color: rgb(4 54 35 / var(--tw-text-opacity))
}

blockquote input[type="email"],blockquote input[type="text"],blockquote input[type="tel"] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity))
}


.section-dark blockquote input[type="email"].text-racing, 
.section-dark blockquote input[type="email"] .text-racing,
.section-dark blockquote input[type="text"].text-racing, 
.section-dark blockquote input[type="text"] .text-racing,
.section-dark blockquote input[type="tel"].text-racing, 
.section-dark blockquote input[type="tel"] .text-racing {
  color: rgb(4 54 35 / var(--tw-text-opacity))
}

.rangu blockquote {
  --tw-text-opacity: 1;
  color: rgb(34 34 34 / var(--tw-text-opacity))
}

.section-dark .rangu blockquote {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

dl {
  margin-top: 16px
}

dt {
  font-weight: 700
}

nav ul {
  list-style-type: none
}

.arrow-clip {
  -webkit-clip-path: inset(0 3px 0 3px);
          clip-path: inset(0 3px 0 3px);
}

mobile {
  display: inline;
}

@media (min-width: 1024px) {
  mobile {
    display: none;
  }
}

dekstop {
  display: none;
}

@media (min-width: 1024px) {
  dekstop {
    display: inline;
  }
}

.alternative-markdown em {
  --tw-text-opacity: 1;
  color: rgb(136 136 136 / var(--tw-text-opacity))
}

.section-dark .alternative-markdown em {
  --tw-text-opacity: 1;
  color: rgb(246 246 246 / var(--tw-text-opacity))
}

.alternative-markdown em {
  font-style: normal;
}

.section-dark .alternative-markdown strong em,
  .alternative-markdown strong em,
  .alternative-markdown i strong {
  --tw-text-opacity: 1;
  color: rgb(30 201 91 / var(--tw-text-opacity));
  font-style: normal;
  font-weight: normal
}

.ignore-p-styling p {
  margin-top: 0px;
  margin-bottom: 0px;
}

.inner-a-text-tint-darker a {
  --tw-text-opacity: 1;
  color: rgb(136 136 136 / var(--tw-text-opacity))
}

.section-dark .inner-a-text-tint-darker a {
  --tw-text-opacity: 1;
  color: rgb(246 246 246 / var(--tw-text-opacity))
}

.inner-a-text-tint-darkest a {
  --tw-text-opacity: 1;
  color: rgb(34 34 34 / var(--tw-text-opacity))
}

.section-dark .inner-a-text-tint-darkest a {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

/*****************/

/* Special fixes */

/* 2024-03-01 Hides a WebinarSpot that is only supposed to be there when there is live content. */

/* article.spot-card:not(:has(.tt-spot-item)) {
    display: none;
  } */

/*************************/

/* Redactor applications */

.list-wrapper ul li {
  margin-bottom: 12px;
  display: flex;
  -moz-column-gap: 1em;
       column-gap: 1em;
  align-items: center
}

/* Inline list marker fix https://stackoverflow.com/questions/71911768/css-list-marker-not-inline-with-text */

.list-wrapper li::before {
  font-size: 0.6em;
  content: '•';
}

.list-wrapper ul li strong{
  display: contents;
}

/* form  */

label {
  display: inline-block;
  padding-bottom: 8px
}

label:hover {
  cursor: pointer
}

textarea,
  input[type="email"],
  input[type="text"],
  input[type="tel"] {
  height: 40px;
  width: 100%;
  border-width: 0px;
  --tw-bg-opacity: 1;
  background-color: rgb(246 246 246 / var(--tw-bg-opacity));
  padding: 8px;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(4 54 35 / var(--tw-text-opacity))
}

textarea::-moz-placeholder, input[type="email"]::-moz-placeholder, input[type="text"]::-moz-placeholder, input[type="tel"]::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(136 136 136 / var(--tw-placeholder-opacity))
}

textarea::placeholder,
  input[type="email"]::placeholder,
  input[type="text"]::placeholder,
  input[type="tel"]::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(136 136 136 / var(--tw-placeholder-opacity))
}

.section-dark textarea,.section-dark 
  input[type="email"],.section-dark 
  input[type="text"],.section-dark 
  input[type="tel"] {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

.section-dark textarea.text-racing,
.section-dark textarea .text-racing,.section-dark 
  input[type="email"].text-racing,
.section-dark 
  input[type="email"] .text-racing,.section-dark 
  input[type="text"].text-racing,
.section-dark 
  input[type="text"] .text-racing,.section-dark 
  input[type="tel"].text-racing,
.section-dark 
  input[type="tel"] .text-racing {
  color: rgb(4 54 35 / var(--tw-text-opacity))
}

.section-dark textarea.bg-tint,
.section-dark .bg-tint textarea,
.section-dark textarea.bg-white, 
.section-dark .bg-white textarea,.section-dark 
  input.bg-tint[type="email"],
.section-dark .bg-tint 
  input[type="email"],
.section-dark 
  input.bg-white[type="email"], 
.section-dark .bg-white 
  input[type="email"],.section-dark 
  input.bg-tint[type="text"],
.section-dark .bg-tint 
  input[type="text"],
.section-dark 
  input.bg-white[type="text"], 
.section-dark .bg-white 
  input[type="text"],.section-dark 
  input.bg-tint[type="tel"],
.section-dark .bg-tint 
  input[type="tel"],
.section-dark 
  input.bg-white[type="tel"], 
.section-dark .bg-white 
  input[type="tel"] {
  color: rgb(4 54 35 / var(--tw-text-opacity))
}


.section-dark a textarea,
.section-dark a 
  input[type="email"],
.section-dark a 
  input[type="text"],
.section-dark a 
  input[type="tel"] {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

header .section-dark textarea,header .section-dark 
  input[type="email"],header .section-dark 
  input[type="text"],header .section-dark 
  input[type="tel"] {
  background-color: rgb(34 34 34 / 0.5)
}

textarea input[type="email"],textarea input[type="text"],textarea input[type="tel"],
  input[type="email"] input[type="email"],
  input[type="email"] input[type="text"],
  input[type="email"] input[type="tel"],
  input[type="text"] input[type="email"],
  input[type="text"] input[type="text"],
  input[type="text"] input[type="tel"],
  input[type="tel"] input[type="email"],
  input[type="tel"] input[type="text"],
  input[type="tel"] input[type="tel"] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity))
}


.section-dark textarea input[type="email"].text-racing, 
.section-dark textarea input[type="email"] .text-racing,
.section-dark textarea input[type="text"].text-racing, 
.section-dark textarea input[type="text"] .text-racing,
.section-dark textarea input[type="tel"].text-racing, 
.section-dark textarea input[type="tel"] .text-racing,
.section-dark 
  input[type="email"] input[type="email"].text-racing, 
.section-dark 
  input[type="email"] input[type="email"] .text-racing,
.section-dark 
  input[type="email"] input[type="text"].text-racing, 
.section-dark 
  input[type="email"] input[type="text"] .text-racing,
.section-dark 
  input[type="email"] input[type="tel"].text-racing, 
.section-dark 
  input[type="email"] input[type="tel"] .text-racing,
.section-dark 
  input[type="text"] input[type="email"].text-racing, 
.section-dark 
  input[type="text"] input[type="email"] .text-racing,
.section-dark 
  input[type="text"] input[type="text"].text-racing, 
.section-dark 
  input[type="text"] input[type="text"] .text-racing,
.section-dark 
  input[type="text"] input[type="tel"].text-racing, 
.section-dark 
  input[type="text"] input[type="tel"] .text-racing,
.section-dark 
  input[type="tel"] input[type="email"].text-racing, 
.section-dark 
  input[type="tel"] input[type="email"] .text-racing,
.section-dark 
  input[type="tel"] input[type="text"].text-racing, 
.section-dark 
  input[type="tel"] input[type="text"] .text-racing,
.section-dark 
  input[type="tel"] input[type="tel"].text-racing, 
.section-dark 
  input[type="tel"] input[type="tel"] .text-racing {
  color: rgb(4 54 35 / var(--tw-text-opacity))
}

textarea input[type="email"],textarea input[type="text"],textarea input[type="tel"],
  input[type="email"] input[type="email"],
  input[type="email"] input[type="text"],
  input[type="email"] input[type="tel"],
  input[type="text"] input[type="email"],
  input[type="text"] input[type="text"],
  input[type="text"] input[type="tel"],
  input[type="tel"] input[type="email"],
  input[type="tel"] input[type="text"],
  input[type="tel"] input[type="tel"] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity))
}


.section-dark textarea input[type="email"].text-racing, 
.section-dark textarea input[type="email"] .text-racing,
.section-dark textarea input[type="text"].text-racing, 
.section-dark textarea input[type="text"] .text-racing,
.section-dark textarea input[type="tel"].text-racing, 
.section-dark textarea input[type="tel"] .text-racing,
.section-dark 
  input[type="email"] input[type="email"].text-racing, 
.section-dark 
  input[type="email"] input[type="email"] .text-racing,
.section-dark 
  input[type="email"] input[type="text"].text-racing, 
.section-dark 
  input[type="email"] input[type="text"] .text-racing,
.section-dark 
  input[type="email"] input[type="tel"].text-racing, 
.section-dark 
  input[type="email"] input[type="tel"] .text-racing,
.section-dark 
  input[type="text"] input[type="email"].text-racing, 
.section-dark 
  input[type="text"] input[type="email"] .text-racing,
.section-dark 
  input[type="text"] input[type="text"].text-racing, 
.section-dark 
  input[type="text"] input[type="text"] .text-racing,
.section-dark 
  input[type="text"] input[type="tel"].text-racing, 
.section-dark 
  input[type="text"] input[type="tel"] .text-racing,
.section-dark 
  input[type="tel"] input[type="email"].text-racing, 
.section-dark 
  input[type="tel"] input[type="email"] .text-racing,
.section-dark 
  input[type="tel"] input[type="text"].text-racing, 
.section-dark 
  input[type="tel"] input[type="text"] .text-racing,
.section-dark 
  input[type="tel"] input[type="tel"].text-racing, 
.section-dark 
  input[type="tel"] input[type="tel"] .text-racing {
  color: rgb(4 54 35 / var(--tw-text-opacity))
}

textarea input[type="email"],textarea input[type="text"],textarea input[type="tel"],
  input[type="email"] input[type="email"],
  input[type="email"] input[type="text"],
  input[type="email"] input[type="tel"],
  input[type="text"] input[type="email"],
  input[type="text"] input[type="text"],
  input[type="text"] input[type="tel"],
  input[type="tel"] input[type="email"],
  input[type="tel"] input[type="text"],
  input[type="tel"] input[type="tel"] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity))
}


.section-dark textarea input[type="email"].text-racing, 
.section-dark textarea input[type="email"] .text-racing,
.section-dark textarea input[type="text"].text-racing, 
.section-dark textarea input[type="text"] .text-racing,
.section-dark textarea input[type="tel"].text-racing, 
.section-dark textarea input[type="tel"] .text-racing,
.section-dark 
  input[type="email"] input[type="email"].text-racing, 
.section-dark 
  input[type="email"] input[type="email"] .text-racing,
.section-dark 
  input[type="email"] input[type="text"].text-racing, 
.section-dark 
  input[type="email"] input[type="text"] .text-racing,
.section-dark 
  input[type="email"] input[type="tel"].text-racing, 
.section-dark 
  input[type="email"] input[type="tel"] .text-racing,
.section-dark 
  input[type="text"] input[type="email"].text-racing, 
.section-dark 
  input[type="text"] input[type="email"] .text-racing,
.section-dark 
  input[type="text"] input[type="text"].text-racing, 
.section-dark 
  input[type="text"] input[type="text"] .text-racing,
.section-dark 
  input[type="text"] input[type="tel"].text-racing, 
.section-dark 
  input[type="text"] input[type="tel"] .text-racing,
.section-dark 
  input[type="tel"] input[type="email"].text-racing, 
.section-dark 
  input[type="tel"] input[type="email"] .text-racing,
.section-dark 
  input[type="tel"] input[type="text"].text-racing, 
.section-dark 
  input[type="tel"] input[type="text"] .text-racing,
.section-dark 
  input[type="tel"] input[type="tel"].text-racing, 
.section-dark 
  input[type="tel"] input[type="tel"] .text-racing {
  color: rgb(4 54 35 / var(--tw-text-opacity))
}

.rangu textarea,.rangu 
  input[type="email"],.rangu 
  input[type="text"],.rangu 
  input[type="tel"] {
  --tw-text-opacity: 1;
  color: rgb(34 34 34 / var(--tw-text-opacity))
}

.section-dark .rangu textarea,.section-dark .rangu 
  input[type="email"],.section-dark .rangu 
  input[type="text"],.section-dark .rangu 
  input[type="tel"] {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

textarea:focus,
  input[type="email"]:focus,
  input[type="text"]:focus,
  input[type="tel"]:focus {
  --tw-border-opacity: 1;
  border-color: rgb(30 201 91 / var(--tw-border-opacity));
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(30 201 91 / var(--tw-ring-opacity))
}

textarea:focus:required,
  input[type="email"]:focus:required,
  input[type="text"]:focus:required,
  input[type="tel"]:focus:required {
  --tw-border-opacity: 1;
  border-color: rgb(30 201 91 / var(--tw-border-opacity));
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(30 201 91 / var(--tw-ring-opacity))
}

textarea:focus-visible,
  input[type="email"]:focus-visible,
  input[type="text"]:focus-visible,
  input[type="tel"]:focus-visible {
  --tw-border-opacity: 1;
  border-color: rgb(30 201 91 / var(--tw-border-opacity));
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(30 201 91 / var(--tw-ring-opacity))
}

textarea:disabled,
  input[type="email"]:disabled,
  input[type="text"]:disabled,
  input[type="tel"]:disabled {
  --tw-border-opacity: 1;
  border-color: rgb(246 246 246 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(246 246 246 / var(--tw-bg-opacity))
}

input[type="checkbox"] {
  margin-right: 16px;
  height: 24px !important;
  width: 24px !important;
  accent-color: #1EC95B
}

input[type="checkbox"]:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(30 201 91 / var(--tw-ring-opacity))
}

input[type="checkbox"]:disabled {
  border: none;
  background-color: aqua;
}

input[type="radio"] {
  margin-right: 16px;
  height: 24px !important;
  width: 24px !important;
  accent-color: #1EC95B
}

input[type="radio"]:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}

input[type="checkbox"].js-button-checkbox {
  margin-right: 0px;
  height: 100% !important;
  width: 100% !important
}

select {
  height: 40px;
  border-radius: 0.125rem;
  --tw-bg-opacity: 1;
  background-color: rgb(246 246 246 / var(--tw-bg-opacity));
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  accent-color: #1EC95B
}

.section-dark select.text-racing,
.section-dark select .text-racing {
  color: rgb(4 54 35 / var(--tw-text-opacity))
}

header .section-dark select {
  background-color: rgb(34 34 34 / 0.5)
}

select input[type="email"],select input[type="text"],select input[type="tel"] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity))
}


.section-dark select input[type="email"].text-racing, 
.section-dark select input[type="email"] .text-racing,
.section-dark select input[type="text"].text-racing, 
.section-dark select input[type="text"] .text-racing,
.section-dark select input[type="tel"].text-racing, 
.section-dark select input[type="tel"] .text-racing {
  color: rgb(4 54 35 / var(--tw-text-opacity))
}

select input[type="email"],select input[type="text"],select input[type="tel"] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity))
}


.section-dark select input[type="email"].text-racing, 
.section-dark select input[type="email"] .text-racing,
.section-dark select input[type="text"].text-racing, 
.section-dark select input[type="text"] .text-racing,
.section-dark select input[type="tel"].text-racing, 
.section-dark select input[type="tel"] .text-racing {
  color: rgb(4 54 35 / var(--tw-text-opacity))
}

select input[type="email"],select input[type="text"],select input[type="tel"] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity))
}


.section-dark select input[type="email"].text-racing, 
.section-dark select input[type="email"] .text-racing,
.section-dark select input[type="text"].text-racing, 
.section-dark select input[type="text"] .text-racing,
.section-dark select input[type="tel"].text-racing, 
.section-dark select input[type="tel"] .text-racing {
  color: rgb(4 54 35 / var(--tw-text-opacity))
}

textarea {
  height: 10rem;
  width: 50%;
  border-radius: 0.125rem;
  padding: 8px;
  font-weight: 400
}

textarea::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(217 217 217 / var(--tw-placeholder-opacity))
}

textarea::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(217 217 217 / var(--tw-placeholder-opacity))
}

fieldset {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(246 246 246 / var(--tw-border-opacity));
  padding-top: 16px;
  padding-bottom: 16px;
  --tw-text-opacity: 1;
  color: rgb(4 54 35 / var(--tw-text-opacity))
}

.section-dark fieldset {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

.section-dark fieldset.bg-tint,
.section-dark .bg-tint fieldset,
.section-dark fieldset.bg-white, 
.section-dark .bg-white fieldset {
  color: rgb(4 54 35 / var(--tw-text-opacity))
}


.section-dark a fieldset {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

.rangu fieldset {
  --tw-text-opacity: 1;
  color: rgb(34 34 34 / var(--tw-text-opacity))
}

.section-dark .rangu fieldset {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

.alternative-form .hs-form-private fieldset {
  margin-bottom: 16px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

.alternative-form .hs-fieldtype-select .input {
  --tw-text-opacity: 1;
  color: rgb(4 54 35 / var(--tw-text-opacity))
}

.section-dark .alternative-form .hs-fieldtype-select .input {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

.section-dark .bg-tint.alternative-form .hs-fieldtype-select .input,
.section-dark .bg-tint .alternative-form .hs-fieldtype-select .input,
.section-dark .bg-white.alternative-form .hs-fieldtype-select .input, 
.section-dark .bg-white .alternative-form .hs-fieldtype-select .input {
  color: rgb(4 54 35 / var(--tw-text-opacity))
}


.section-dark a .alternative-form .hs-fieldtype-select .input {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

.rangu .alternative-form .hs-fieldtype-select .input {
  --tw-text-opacity: 1;
  color: rgb(34 34 34 / var(--tw-text-opacity))
}

.section-dark .rangu .alternative-form .hs-fieldtype-select .input {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

.alternative-form .hs-fieldtype-select .\!input {
  --tw-text-opacity: 1;
  color: rgb(4 54 35 / var(--tw-text-opacity))
}

.section-dark .alternative-form .hs-fieldtype-select .\!input {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

.section-dark .bg-tint.alternative-form .hs-fieldtype-select .\!input,
.section-dark .bg-tint .alternative-form .hs-fieldtype-select .\!input,
.section-dark .bg-white.alternative-form .hs-fieldtype-select .\!input, 
.section-dark .bg-white .alternative-form .hs-fieldtype-select .\!input {
  color: rgb(4 54 35 / var(--tw-text-opacity))
}


.section-dark a .alternative-form .hs-fieldtype-select .\!input {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

.rangu .alternative-form .hs-fieldtype-select .\!input {
  --tw-text-opacity: 1;
  color: rgb(34 34 34 / var(--tw-text-opacity))
}

.section-dark .rangu .alternative-form .hs-fieldtype-select .\!input {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

.alternative-form .submitted-message,
  .alternative-form .hs-form-required,
  .alternative-form a {
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity)) !important
}

.alternative-form .hs-form-field > label {
  padding-bottom: 12px
}

.alternative-form input[type="submit"],
  .button {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(4 54 35 / var(--tw-text-opacity))
}

.section-dark .alternative-form input[type="submit"],.section-dark 
  .button {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}


.section-dark .alternative-form input[type="submit"].text-racing, 
.section-dark .alternative-form input[type="submit"] .text-racing,
.section-dark 
  .button.text-racing, 
.section-dark 
  .button .text-racing {
  color: rgb(4 54 35 / var(--tw-text-opacity))
}

.section-dark .bg-tint.alternative-form input[type="submit"],
.section-dark .bg-tint .alternative-form input[type="submit"],
.section-dark .bg-white.alternative-form input[type="submit"], 
.section-dark .bg-white .alternative-form input[type="submit"],.section-dark .bg-tint
  .button,
.section-dark .bg-tint 
  .button,
.section-dark .bg-white
  .button, 
.section-dark .bg-white 
  .button {
  color: rgb(4 54 35 / var(--tw-text-opacity))
}


.section-dark a .alternative-form input[type="submit"],
.section-dark a 
  .button {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

.rangu .alternative-form input[type="submit"],.rangu 
  .button {
  --tw-text-opacity: 1;
  color: rgb(34 34 34 / var(--tw-text-opacity))
}

.section-dark .rangu .alternative-form input[type="submit"],.section-dark .rangu 
  .button {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

.alternative-form input[type="submit"]:hover,
  .button:hover {
  background-color: rgb(255 255 255 / 0.8)
}

.alternative-form input[type="submit"]:focus,
  .button:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity))
}

.alternative-form input[type="submit"]:active,
  .button:active {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity))
}

input[type="submit"] .redactor-card a,
  .button .redactor-card a {
  color: white;
  text-decoration: underline;
}

input[type="submit"],
  .button {
  height: 40px;
  border-radius: 9999px;
  border-width: 0px;
  --tw-bg-opacity: 1;
  background-color: rgb(30 201 91 / var(--tw-bg-opacity));
  padding-left: 40px;
  padding-right: 40px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  text-decoration-line: none
}

.rangu input[type="submit"],.rangu 
  .button {
  --tw-bg-opacity: 1;
  background-color: rgb(0 165 255 / var(--tw-bg-opacity))
}

.rangu input[type="submit"]:hover:hover,.rangu 
  .button:hover:hover {
  background-color: rgb(0 165 255 / 0.8)
}

input[type="submit"]:active .redactor-card a,
  .button:active .redactor-card a {
  color: white;
  text-decoration: underline;
}

input[type="submit"]:hover,
  .button:hover {
  cursor: pointer;
  background-color: rgb(30 201 91 / 0.8)
}

input[type="submit"]:focus,
  .button:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(30 201 91 / var(--tw-ring-opacity))
}

input[type="submit"]:active,
  .button:active {
  --tw-bg-opacity: 1;
  background-color: rgb(30 201 91 / var(--tw-bg-opacity))
}

input[type="reset"] {
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(217 217 217 / var(--tw-bg-opacity));
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  text-decoration-line: none
}

input[type="reset"]:hover {
  cursor: pointer;
  --tw-bg-opacity: 1;
  background-color: rgb(217 217 217 / var(--tw-bg-opacity))
}

input[type="reset"]:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(217 217 217 / var(--tw-ring-opacity))
}

input[type="reset"]:active {
  --tw-bg-opacity: 1;
  background-color: rgb(217 217 217 / var(--tw-bg-opacity))
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  height: 20px;
  width: 20px;
  background-image: url("/assets/icon/clear.svg");
  background-size: 20px 20px;
  cursor: pointer;
}

input[type="search"]:focus {
  outline: none;
  /* Additional styling for the input when focused, if needed */
}

/** Hide Arrows From Input Number **/

/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
  input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */

input[type=number] {
  -moz-appearance: textfield;
}

/*  Prevents glithing before Alpine.js is loaded https://alpinejs.dev/directives/cloak */

[x-cloak] {
  display: none !important;
}

/* Animations */

.flowing-icon-hitbox:hover .flowing-icon {
  animation: flowRightTrimmed 0.5s cubic-bezier(0,.63,.3,1) 1;
}

.flowing-icon {
  position: absolute;
  height: 100%;
  width: auto;
}

@keyframes flowRightTrimmed {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(80%);
  }

  50.01% {
    transform: translateX(-80%);
  }

  100% {
    transform: translateX(0%);
  }
}

/* Google Map embed responsiveness. Used for partner page. */

.google-map {
  padding-bottom: 100%;
  position: relative;
}

.google-map iframe {
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
}

/*** Standard hover states ***/

/* Core */

.standard-hover-core {
  position: relative;
}

.standard-hover-core::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  transition: background-color 0.5s ease, margin 0.15s ease;
  /* Smooth transition effect for scaling */
  z-index: -1;
  border-radius: 8px;
  background-color: transparent;
}

.standard-hover-core:hover::before {
  background-color: rgb(217 217 217 / 0.1);
  border-radius: 8px
}

/* Large */

.standard-hover-size-lg::before {
  margin: -12px;
}

.standard-hover-size-lg:hover::before {
  margin: -16px;
}

/* Medium */

.standard-hover-size-md::before {
  margin: 0px;
  margin-left: -8px;
  margin-right: -8px;
}

.standard-hover-size-md:hover::before {
  margin: -4px;
  margin-left: -12px;
  margin-right: -12px;
}

/* Small */

.standard-hover-size-sm::before {
  margin: 4px;
}

.standard-hover-size-sm:hover::before {
  margin: 0px;
}

.speaker-card-animation-fade:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 10;
  opacity: 0.3;
  transition: opacity 0.5s;
  background: linear-gradient(0deg, #000 0%, rgba(0,0,0,0.1) 32.46%),rgba(34,34,34,0.5);
}

.speaker-card-animation-hitbox:hover .speaker-card-animation-fade:before {
  opacity: 1;
}

.speaker-card-animation-height {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 1.2s, opacity 1s;
}

.speaker-card-animation-hitbox:hover .speaker-card-animation-height {
  max-height: 200px;
  opacity: 1;
}

@media print {
  .print-hidden {
    display: none;
  }
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  
}

.\!container {
  width: 100% !important
}

.container {
  width: 100%
}

@media (min-width: 640px) {
  .\!container {
    max-width: 640px !important
  }

  .container {
    max-width: 640px
  }
}

@media (min-width: 768px) {
  .\!container {
    max-width: 768px !important
  }

  .container {
    max-width: 768px
  }
}

@media (min-width: 1024px) {
  .\!container {
    max-width: 1024px !important
  }

  .container {
    max-width: 1024px
  }
}

@media (min-width: 1280px) {
  .\!container {
    max-width: 1280px !important
  }

  .container {
    max-width: 1280px
  }
}

@media (min-width: 1536px) {
  .\!container {
    max-width: 1536px !important
  }

  .container {
    max-width: 1536px
  }
}

.pagewidth {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px
}

@media (min-width: 1024px) {
  .pagewidth {
    max-width: 1024px;
    padding-left: 0px;
    padding-right: 0px
  }
}

@media (min-width: 1280px) {
  .pagewidth {
    max-width: 1280px
  }
}

@media (min-width: 1536px) {
  .pagewidth {
    max-width: 1536px
  }
}

/* redactor fixes */

.redactor h2,
  .redactor h3,
  .redactor h4 {
  margin-bottom: 24px;
  margin-top: 48px;
  font-size: 1.25rem
}

.redactor p {
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(136 136 136 / var(--tw-text-opacity))
}

.section-dark .redactor p {
  --tw-text-opacity: 1;
  color: rgb(246 246 246 / var(--tw-text-opacity))
}

.redactor ul,
  .redactor ol {
  list-style-position: outside;
  padding-left: 24px;
  font-size: 1rem;
  --tw-text-opacity: 1;
  color: rgb(136 136 136 / var(--tw-text-opacity))
}

.section-dark .redactor ul,.section-dark 
  .redactor ol {
  --tw-text-opacity: 1;
  color: rgb(246 246 246 / var(--tw-text-opacity))
}

.redactor ul {
  list-style-type: disc
}

.redactor ol {
  list-style-type: decimal
}

.redactor li {
  padding-top: 8px;
  padding-bottom: 8px
}

.redactor figure {
  padding-top: 32px;
  padding-bottom: 32px
}

.redactor .tableizer-table th .redactor-card a {
  color: white;
  text-decoration: underline;
}

.redactor .tableizer-table th {
  --tw-bg-opacity: 1;
  background-color: rgb(4 54 35 / var(--tw-bg-opacity))
}

.rangu .redactor .tableizer-table th {
  --tw-bg-opacity: 1;
  background-color: rgb(48 0 255 / var(--tw-bg-opacity))
}

.redactor .tableizer-table th {
  color: white;
}

.redactor .tableizer-table td, .tableizer-table th {
  padding: 6px 8px 6px 8px;
}

.redactor .tableizer-table td {
  vertical-align: top;
}

/* CK Editor - Medium Read Card */

.medium-read-card .text-tiny {
  font-size: 1.25rem
}

.medium-read-card .text-small {
  font-size: 1.5rem;
  line-height: 1
  /* since its in <span> it messes with the leading */
}

.medium-read-card .text-big {
  font-size: 3rem;
  line-height: 1
}

.medium-read-card .text-huge {
  font-size: 4rem;
  line-height: 1
}

.medium-read-card p:first-child {
  margin-top: 0px
}

.medium-read-card p:last-child {
  margin-bottom: 0px
}

.medium-read-card p {
  margin-top: 40px;
  margin-bottom: 40px
}

.medium-read-card ol,
  .medium-read-card ul {
  list-style: revert;
  /* margin: revert; */
  padding: revert;
}

/* ---- HS forms ----  */

.hs-error-msgs {
  font-size: 0.875rem;
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity))
}

.form-columns-1 {
  max-width: 100% !important
}

.form-columns-2 {
  max-width: 100% !important
}

.hs-form-booleancheckbox-display {
  display: flex;
  flex-direction: row
}

.hs-form-booleancheckbox-display > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(8px * var(--tw-space-x-reverse));
  margin-left: calc(8px * calc(1 - var(--tw-space-x-reverse)))
}

.hs-input.error {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(250 70 70 / var(--tw-border-opacity))
}

.hs-richtext a {
  --tw-text-opacity: 1;
  color: rgb(30 201 91 / var(--tw-text-opacity));
  text-decoration-line: underline
}

.hs-input {
  margin-right: 0px !important;
  width: 100% !important
}

.hs_submit {
  padding-top: 20px
}

.hs-input.error,
  .hs-form-required {
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity))
}

.hs-form-field > label {
  margin-top: 12px;
  padding-bottom: 4px
}

/*** Section Color Modes ***/

/* A dirty fix for some weird issue. Move to components.css if it compiles properly */

/* .legal-consent-container p {
    @apply mt-3;
} */

header a {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity))
}

.section-dark a header a {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

.hs-richtext {
  padding-top: 4px
}

label.hs-error-msg.hs-main-font-element {
  padding-bottom: 0px;
  padding-top: 4px
}

.hs-fieldtype-booleancheckbox {
  margin-top: 12px
}

.hs-form-required {
  padding-left: 2px;
}

/* RANDOM */

/* Fixes the legal monster shadow effect being clipped */

div.legalmonster-cleanslate.lm-base-root.lm-modal-root {
  overflow: visible !important;
}

.section-dark .text-racing {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

.section-dark .text-tint-darkest {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

.section-dark .text-tint-darker {
  --tw-text-opacity: 1;
  color: rgb(246 246 246 / var(--tw-text-opacity))
}

.section-dark .fill-tint-darkest {
  fill: #fff
}

.section-dark .bg-tint.text-racing,
.section-dark .bg-tint .text-racing,
.section-dark .bg-white.text-racing, 
.section-dark .bg-white .text-racing {
  color: rgb(4 54 35 / var(--tw-text-opacity))
}

.section-dark a .text-black,
.section-dark a .text-racing {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

.section-dark {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

.section-dark .svg-theme-responsive-color svg path,
.section-dark .svg-theme-responsive-color svg rect {
  fill: white ;
}

.section-dark svg.svg-theme-responsive-color path,
.section-dark svg.svg-theme-responsive-color rect {
  fill: white;
}

.section-spring a {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

.section-spring .hs-button {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(30 201 91 / var(--tw-text-opacity))
}


.section-dark .section-spring .hs-button.text-racing, 
.section-dark .section-spring .hs-button .text-racing {
  color: rgb(4 54 35 / var(--tw-text-opacity))
}

.section-spring .hs-button {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(30 201 91 / var(--tw-text-opacity))
}


.section-dark .section-spring .hs-button.text-racing, 
.section-dark .section-spring .hs-button .text-racing {
  color: rgb(4 54 35 / var(--tw-text-opacity))
}

.section-spring input[type="submit"]:hover, .button:hover {
  background-color: rgb(255 255 255 / 0.8)
}

.section-dark input.hs-input {
  color: black;
}

.section-dark .standard-hover-core::before {
  background-color: transparent;
}

.section-dark .standard-hover-core:hover::before {
  background-color: rgb(34 34 34 / 0.5)
}

.section-dark .hs-error-msg {
  color: #fa4646;
}

.section-dark .hs-form-required {
  color: #fa4646;
}

.section-dark .hs-input.error {
  border-color: #fa4646;
}

header .section-dark a {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

header .section-dark .bg-tint {
  background-color: rgb(34 34 34 / 0.5)
}

.bg-tint input[type="email"],
.bg-tint input[type="text"],
.bg-tint input[type="tel"] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity))
}


.section-dark .bg-tint input[type="email"].text-racing, 
.section-dark .bg-tint input[type="email"] .text-racing,
.section-dark 
.bg-tint input[type="text"].text-racing, 
.section-dark 
.bg-tint input[type="text"] .text-racing,
.section-dark 
.bg-tint input[type="tel"].text-racing, 
.section-dark 
.bg-tint input[type="tel"] .text-racing {
  color: rgb(4 54 35 / var(--tw-text-opacity))
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0
}

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

.visible {
  visibility: visible
}

.invisible {
  visibility: hidden
}

.fixed {
  position: fixed
}

.absolute {
  position: absolute
}

.relative {
  position: relative
}

.sticky {
  position: sticky
}

.inset-0 {
  inset: 0px
}

.-top-13 {
  top: -120px
}

.bottom-0 {
  bottom: 0px
}

.bottom-4 {
  bottom: 16px
}

.left-0 {
  left: 0px
}

.left-1\/2 {
  left: 50%
}

.left-4 {
  left: 16px
}

.right-0 {
  right: 0px
}

.right-2 {
  right: 8px
}

.right-6 {
  right: 24px
}

.top-0 {
  top: 0px
}

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

.top-1\/3 {
  top: 33.333333%
}

.top-11 {
  top: 80px
}

.top-4 {
  top: 16px
}

.top-\[80px\] {
  top: 80px
}

.z-10 {
  z-index: 10
}

.z-20 {
  z-index: 20
}

.z-30 {
  z-index: 30
}

.z-40 {
  z-index: 40
}

.z-50 {
  z-index: 50
}

.z-\[5\] {
  z-index: 5
}

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

.col-span-12 {
  grid-column: span 12 / span 12
}

.col-span-2 {
  grid-column: span 2 / span 2
}

.col-span-3 {
  grid-column: span 3 / span 3
}

.col-span-4 {
  grid-column: span 4 / span 4
}

.col-span-5 {
  grid-column: span 5 / span 5
}

.col-span-6 {
  grid-column: span 6 / span 6
}

.col-span-9 {
  grid-column: span 9 / span 9
}

.col-start-1 {
  grid-column-start: 1
}

.col-start-6 {
  grid-column-start: 6
}

.col-start-8 {
  grid-column-start: 8
}

.row-span-1 {
  grid-row: span 1 / span 1
}

.row-span-2 {
  grid-row: span 2 / span 2
}

.row-span-3 {
  grid-row: span 3 / span 3
}

.m-0 {
  margin: 0px
}

.mx-4 {
  margin-left: 16px;
  margin-right: 16px
}

.mx-6 {
  margin-left: 24px;
  margin-right: 24px
}

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

.my-2 {
  margin-top: 8px;
  margin-bottom: 8px
}

.my-8 {
  margin-top: 40px;
  margin-bottom: 40px
}

.-mb-3 {
  margin-bottom: -12px
}

.-mb-7 {
  margin-bottom: -32px
}

.-ml-1 {
  margin-left: -4px
}

.-mt-2 {
  margin-top: -8px
}

.-mt-\[0\.14em\] {
  margin-top: -0.14em
}

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

.mb-1 {
  margin-bottom: 4px
}

.mb-10 {
  margin-bottom: 64px
}

.mb-13 {
  margin-bottom: 120px
}

.mb-2 {
  margin-bottom: 8px
}

.mb-3 {
  margin-bottom: 12px
}

.mb-4 {
  margin-bottom: 16px
}

.mb-5 {
  margin-bottom: 20px
}

.mb-6 {
  margin-bottom: 24px
}

.mb-7 {
  margin-bottom: 32px
}

.mb-8 {
  margin-bottom: 40px
}

.mb-9 {
  margin-bottom: 48px
}

.ml-2 {
  margin-left: 8px
}

.ml-4 {
  margin-left: 16px
}

.ml-6 {
  margin-left: 24px
}

.ml-\[6px\] {
  margin-left: 6px
}

.mr-4 {
  margin-right: 16px
}

.mr-6 {
  margin-right: 24px
}

.mr-8 {
  margin-right: 40px
}

.mr-\[2px\] {
  margin-right: 2px
}

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

.mt-1 {
  margin-top: 4px
}

.mt-10 {
  margin-top: 64px
}

.mt-11 {
  margin-top: 80px
}

.mt-2 {
  margin-top: 8px
}

.mt-24 {
  margin-top: 6rem
}

.mt-3 {
  margin-top: 12px
}

.mt-4 {
  margin-top: 16px
}

.mt-5 {
  margin-top: 20px
}

.mt-6 {
  margin-top: 24px
}

.mt-7 {
  margin-top: 32px
}

.mt-8 {
  margin-top: 40px
}

.mt-9 {
  margin-top: 48px
}

.mt-\[1px\] {
  margin-top: 1px
}

.mt-auto {
  margin-top: auto
}

.line-clamp-5 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5
}

.block {
  display: block
}

.inline-block {
  display: inline-block
}

.inline {
  display: inline
}

.flex {
  display: flex
}

.table {
  display: table
}

.grid {
  display: grid
}

.hidden {
  display: none
}

.aspect-\[3\/4\] {
  aspect-ratio: 3/4
}

.aspect-auto {
  aspect-ratio: auto
}

.aspect-square {
  aspect-ratio: 1 / 1
}

.aspect-video {
  aspect-ratio: 16 / 9
}

.aspect-video-inverse {
  aspect-ratio: 9 / 16
}

.size-4 {
  width: 16px;
  height: 16px
}

.h-0 {
  height: 0px
}

.h-12 {
  height: 96px
}

.h-13 {
  height: 120px
}

.h-16 {
  height: 4rem
}

.h-2\/5 {
  height: 40%
}

.h-20 {
  height: 5rem
}

.h-4 {
  height: 16px
}

.h-40 {
  height: 10rem
}

.h-5 {
  height: 20px
}

.h-6 {
  height: 24px
}

.h-7 {
  height: 32px
}

.h-8 {
  height: 40px
}

.h-80 {
  height: 20rem
}

.h-9 {
  height: 48px
}

.h-\[120px\] {
  height: 120px
}

.h-\[36px\] {
  height: 36px
}

.h-\[48px\] {
  height: 48px
}

.h-\[52px\] {
  height: 52px
}

.h-auto {
  height: auto
}

.h-full {
  height: 100%
}

.h-min {
  height: -moz-min-content;
  height: min-content
}

.h-px {
  height: 1px
}

.h-viewport-below-header {
  height: calc(100vh - 120px)
}

.max-h-96 {
  max-height: 24rem
}

.min-h-12 {
  min-height: 96px
}

.min-h-\[1\.5rem\] {
  min-height: 1.5rem
}

.min-h-\[28px\] {
  min-height: 28px
}

.min-h-\[300px\] {
  min-height: 300px
}

.min-h-\[3rem\] {
  min-height: 3rem
}

.min-h-\[712px\] {
  min-height: 712px
}

.min-h-\[80px\] {
  min-height: 80px
}

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

.w-1 {
  width: 4px
}

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

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

.w-10 {
  width: 64px
}

.w-12 {
  width: 96px
}

.w-2\/3 {
  width: 66.666667%
}

.w-3 {
  width: 12px
}

.w-3\/5 {
  width: 60%
}

.w-4 {
  width: 16px
}

.w-4\/5 {
  width: 80%
}

.w-5 {
  width: 20px
}

.w-5\/6 {
  width: 83.333333%
}

.w-56 {
  width: 14rem
}

.w-6 {
  width: 24px
}

.w-7 {
  width: 32px
}

.w-8 {
  width: 40px
}

.w-96 {
  width: 24rem
}

.w-\[75px\] {
  width: 75px
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content
}

.w-full {
  width: 100%
}

.w-min {
  width: -moz-min-content;
  width: min-content
}

.w-px {
  width: 1px
}

.w-screen {
  width: 100vw
}

.min-w-10 {
  min-width: 64px
}

.min-w-5 {
  min-width: 20px
}

.min-w-6 {
  min-width: 24px
}

.min-w-\[136px\] {
  min-width: 136px
}

.min-w-\[33px\] {
  min-width: 33px
}

.min-w-full {
  min-width: 100%
}

.max-w-2xl {
  max-width: 42rem
}

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

.max-w-\[20px\] {
  max-width: 20px
}

.max-w-\[35\] {
  max-width: 35
}

.max-w-\[500px\] {
  max-width: 500px
}

.max-w-\[75\%\] {
  max-width: 75%
}

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

.flex-grow {
  flex-grow: 1
}

.grow {
  flex-grow: 1
}

.basis-1\/2 {
  flex-basis: 50%
}

.border-separate {
  border-collapse: separate
}

.-translate-x-full {
  --tw-translate-x: -100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.-translate-y-2 {
  --tw-translate-y: -8px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.-translate-y-full {
  --tw-translate-y: -100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.translate-x-0 {
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.translate-y-0 {
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.scale-x-\[-1\] {
  --tw-scale-x: -1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.cursor-pointer {
  cursor: pointer
}

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

.resize {
  resize: both
}

.list-disc {
  list-style-type: disc
}

.break-after-page {
  -moz-column-break-after: page;
       break-after: page
}

.auto-cols-fr {
  grid-auto-columns: minmax(0, 1fr)
}

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

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

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

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

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

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

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

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

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

.grid-rows-auto-4 {
  grid-template-rows: repeat(4, auto)
}

.flex-row {
  flex-direction: row
}

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

.flex-col {
  flex-direction: column
}

.flex-wrap {
  flex-wrap: wrap
}

.items-start {
  align-items: flex-start
}

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

.items-center {
  align-items: center
}

.justify-start {
  justify-content: flex-start
}

.justify-end {
  justify-content: flex-end
}

.justify-center {
  justify-content: center
}

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

.justify-items-center {
  justify-items: center
}

.gap-1 {
  gap: 4px
}

.gap-2 {
  gap: 8px
}

.gap-3 {
  gap: 12px
}

.gap-4 {
  gap: 16px
}

.gap-5 {
  gap: 20px
}

.gap-7 {
  gap: 32px
}

.gap-8 {
  gap: 40px
}

.gap-9 {
  gap: 48px
}

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

.gap-x-2 {
  -moz-column-gap: 8px;
       column-gap: 8px
}

.gap-x-4 {
  -moz-column-gap: 16px;
       column-gap: 16px
}

.gap-y-10 {
  row-gap: 64px
}

.gap-y-2 {
  row-gap: 8px
}

.gap-y-3 {
  row-gap: 12px
}

.gap-y-4 {
  row-gap: 16px
}

.gap-y-7 {
  row-gap: 32px
}

.gap-y-8 {
  row-gap: 40px
}

.gap-y-9 {
  row-gap: 48px
}

.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(8px * var(--tw-space-x-reverse));
  margin-left: calc(8px * calc(1 - var(--tw-space-x-reverse)))
}

.space-x-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(12px * var(--tw-space-x-reverse));
  margin-left: calc(12px * calc(1 - var(--tw-space-x-reverse)))
}

.self-start {
  align-self: flex-start
}

.self-center {
  align-self: center
}

.justify-self-end {
  justify-self: end
}

.justify-self-center {
  justify-self: center
}

.overflow-hidden {
  overflow: hidden
}

.overflow-clip {
  overflow: clip
}

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

.overflow-x-hidden {
  overflow-x: hidden
}

.overflow-y-hidden {
  overflow-y: hidden
}

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

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

.scroll-smooth {
  scroll-behavior: smooth
}

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

.whitespace-nowrap {
  white-space: nowrap
}

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

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

.rounded-md {
  border-radius: 0.375rem
}

.rounded-xl {
  border-radius: 0.75rem
}

.border {
  border-width: 1px
}

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

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

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

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

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

.border-solid {
  border-style: solid
}

.border-ranguDark {
  --tw-border-opacity: 1;
  border-color: rgb(48 0 255 / var(--tw-border-opacity))
}

.border-spring {
  --tw-border-opacity: 1;
  border-color: rgb(30 201 91 / var(--tw-border-opacity))
}

.border-tint {
  --tw-border-opacity: 1;
  border-color: rgb(246 246 246 / var(--tw-border-opacity))
}

.border-tint-dark {
  --tw-border-opacity: 1;
  border-color: rgb(217 217 217 / var(--tw-border-opacity))
}

.border-tint-darker {
  --tw-border-opacity: 1;
  border-color: rgb(136 136 136 / var(--tw-border-opacity))
}

.border-transparent {
  border-color: transparent
}

.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity))
}

.bg-green-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(134 239 172 / var(--tw-bg-opacity))
}

.bg-orange-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(253 186 116 / var(--tw-bg-opacity))
}

.bg-racing {
  --tw-bg-opacity: 1;
  background-color: rgb(4 54 35 / var(--tw-bg-opacity))
}

.bg-ranguDark {
  --tw-bg-opacity: 1;
  background-color: rgb(48 0 255 / var(--tw-bg-opacity))
}

.bg-slate-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(30 41 59 / var(--tw-bg-opacity))
}

.bg-spring {
  --tw-bg-opacity: 1;
  background-color: rgb(30 201 91 / var(--tw-bg-opacity))
}

.bg-tint {
  --tw-bg-opacity: 1;
  background-color: rgb(246 246 246 / var(--tw-bg-opacity))
}

.bg-tint-dark {
  --tw-bg-opacity: 1;
  background-color: rgb(217 217 217 / var(--tw-bg-opacity))
}

.bg-tint-dark\/10 {
  background-color: rgb(217 217 217 / 0.1)
}

.bg-tint-darker {
  --tw-bg-opacity: 1;
  background-color: rgb(136 136 136 / var(--tw-bg-opacity))
}

.bg-tint-darkest {
  --tw-bg-opacity: 1;
  background-color: rgb(34 34 34 / var(--tw-bg-opacity))
}

.bg-transparent {
  background-color: transparent
}

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

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

.bg-opacity-40 {
  --tw-bg-opacity: 0.4
}

.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops))
}

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

.from-transparent {
  --tw-gradient-from: transparent var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.to-racing {
  --tw-gradient-to: #043623 var(--tw-gradient-to-position)
}

.fill-tint-darkest {
  fill: #222222
}

.fill-white {
  fill: #fff
}

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

.object-scale-down {
  -o-object-fit: scale-down;
     object-fit: scale-down
}

.p-2 {
  padding: 8px
}

.p-3 {
  padding: 12px
}

.p-4 {
  padding: 16px
}

.p-6 {
  padding: 24px
}

.p-8 {
  padding: 40px
}

.p-\[4px\] {
  padding: 4px
}

.p-\[5px\] {
  padding: 5px
}

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

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

.px-4 {
  padding-left: 16px;
  padding-right: 16px
}

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

.px-6 {
  padding-left: 24px;
  padding-right: 24px
}

.px-\[10px\] {
  padding-left: 10px;
  padding-right: 10px
}

.px-\[12px\] {
  padding-left: 12px;
  padding-right: 12px
}

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

.py-10 {
  padding-top: 64px;
  padding-bottom: 64px
}

.py-11 {
  padding-top: 80px;
  padding-bottom: 80px
}

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

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

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

.py-7 {
  padding-top: 32px;
  padding-bottom: 32px
}

.py-8 {
  padding-top: 40px;
  padding-bottom: 40px
}

.py-\[2px\] {
  padding-top: 2px;
  padding-bottom: 2px
}

.py-\[3px\] {
  padding-top: 3px;
  padding-bottom: 3px
}

.py-\[6px\] {
  padding-top: 6px;
  padding-bottom: 6px
}

.py-\[8px\] {
  padding-top: 8px;
  padding-bottom: 8px
}

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

.pb-11 {
  padding-bottom: 80px
}

.pb-13 {
  padding-bottom: 120px
}

.pb-2 {
  padding-bottom: 8px
}

.pb-3 {
  padding-bottom: 12px
}

.pb-4 {
  padding-bottom: 16px
}

.pb-6 {
  padding-bottom: 24px
}

.pb-7 {
  padding-bottom: 32px
}

.pb-8 {
  padding-bottom: 40px
}

.pb-9 {
  padding-bottom: 48px
}

.pb-\[5px\] {
  padding-bottom: 5px
}

.pl-1 {
  padding-left: 4px
}

.pl-2 {
  padding-left: 8px
}

.pl-4 {
  padding-left: 16px
}

.pl-40 {
  padding-left: 10rem
}

.pl-7 {
  padding-left: 32px
}

.pr-2 {
  padding-right: 8px
}

.pr-4 {
  padding-right: 16px
}

.pr-7 {
  padding-right: 32px
}

.pr-\[15\%\] {
  padding-right: 15%
}

.pt-1 {
  padding-top: 4px
}

.pt-10 {
  padding-top: 64px
}

.pt-11 {
  padding-top: 80px
}

.pt-13 {
  padding-top: 120px
}

.pt-2 {
  padding-top: 8px
}

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

.pt-3 {
  padding-top: 12px
}

.pt-4 {
  padding-top: 16px
}

.pt-5 {
  padding-top: 20px
}

.pt-6 {
  padding-top: 24px
}

.pt-7 {
  padding-top: 32px
}

.pt-8 {
  padding-top: 40px
}

.pt-\[176px\] {
  padding-top: 176px
}

.pt-\[80px\] {
  padding-top: 80px
}

.text-center {
  text-align: center
}

.text-justify {
  text-align: justify
}

.font-mono {
  font-family: TTmono, Courier New, monospace
}

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

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

.text-6xl {
  font-size: 3.75rem;
  line-height: 1
}

.text-7xl {
  font-size: 4.5rem;
  line-height: 1
}

.text-9xl {
  font-size: 8rem;
  line-height: 1
}

.text-\[100px\] {
  font-size: 100px
}

.text-\[14px\] {
  font-size: 14px
}

.text-\[18px\] {
  font-size: 18px
}

.text-\[248px\] {
  font-size: 248px
}

.text-\[24px\] {
  font-size: 24px
}

.text-base {
  font-size: 1rem
}

.text-h1 {
  font-size: 5rem;
  line-height: 1
}

.text-h2 {
  font-size: 4rem;
  line-height: 1
}

.text-h3 {
  font-size: 3rem;
  line-height: 1
}

.text-h4 {
  font-size: 2rem;
  line-height: 1
}

.text-h5 {
  font-size: 1.625rem;
  line-height: 1.2
}

.text-h6 {
  font-size: 1.5rem;
  line-height: 1.25
}

.text-lg {
  font-size: 1.25rem
}

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

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

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

.text-xxs {
  font-size: 11px
}

.font-bold {
  font-weight: 700
}

.font-medium {
  font-weight: 500
}

.font-normal {
  font-weight: 400
}

.capitalize {
  text-transform: capitalize
}

.italic {
  font-style: italic
}

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

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

.leading-6 {
  line-height: 1.5rem
}

.leading-\[1\.12REM\] {
  line-height: 1.12REM
}

.leading-\[1\.2\] {
  line-height: 1.2
}

.leading-\[248px\] {
  line-height: 248px
}

.leading-\[normal\] {
  line-height: normal
}

.leading-none {
  line-height: 1
}

.leading-tight {
  line-height: 1.25
}

.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity))
}

.text-racing {
  --tw-text-opacity: 1;
  color: rgb(4 54 35 / var(--tw-text-opacity))
}

.text-red {
  --tw-text-opacity: 1;
  color: rgb(250 70 70 / var(--tw-text-opacity))
}

.text-spring {
  --tw-text-opacity: 1;
  color: rgb(30 201 91 / var(--tw-text-opacity))
}

.text-tint-dark {
  --tw-text-opacity: 1;
  color: rgb(217 217 217 / var(--tw-text-opacity))
}

.text-tint-darker {
  --tw-text-opacity: 1;
  color: rgb(136 136 136 / var(--tw-text-opacity))
}

.text-tint-darkest {
  --tw-text-opacity: 1;
  color: rgb(34 34 34 / var(--tw-text-opacity))
}

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

.underline {
  text-decoration-line: underline
}

.no-underline {
  text-decoration-line: none
}

.opacity-0 {
  opacity: 0
}

.opacity-100 {
  opacity: 1
}

.opacity-30 {
  opacity: 0.3
}

.opacity-50 {
  opacity: 0.5
}

.opacity-95 {
  opacity: 0.95
}

.shadow-card {
  --tw-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.3);
  --tw-shadow-colored: 0px 4px 40px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.backdrop-blur-\[7px\] {
  --tw-backdrop-blur: blur(7px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
          backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms
}

.transition-\[transform\2c opacity\2c height\] {
  transition-property: transform,opacity,height;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms
}

.transition-\[transform\2c opacity\] {
  transition-property: transform,opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms
}

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

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

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

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

.duration-\[500ms\] {
  transition-duration: 500ms
}

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

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

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

/* Could be improved by making a separte output css fie */

/* New */

/* Overrides */

.rangu .bg-spring {
  --tw-bg-opacity: 1;
  background-color: rgb(0 165 255 / var(--tw-bg-opacity))
}

.rangu .bg-racing {
  --tw-bg-opacity: 1;
  background-color: rgb(48 0 255 / var(--tw-bg-opacity))
}

.rangu .hover\:bg-spring\/80:hover:hover {
  background-color: rgb(0 165 255 / 0.8)
}

.rangu .hover\:text-spring:hover:hover {
  --tw-text-opacity: 1;
  color: rgb(0 165 255 / var(--tw-text-opacity))
}

.rangu .border-spring {
  --tw-border-opacity: 1;
  border-color: rgb(0 165 255 / var(--tw-border-opacity))
}

.rangu .hover\:border-spring:hover {
  --tw-border-opacity: 1;
  border-color: rgb(0 165 255 / var(--tw-border-opacity))
}

.rangu .text-racing {
  --tw-text-opacity: 1;
  color: rgb(34 34 34 / var(--tw-text-opacity))
}

.section-dark .rangu .text-racing {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

/* TODO: Spaghetti code, fix it */

.rangu .forcewhite {
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity)) !important
}

.rangu .forcedark a {
  --tw-text-opacity: 1 !important;
  color: rgb(34 34 34 / var(--tw-text-opacity)) !important
}

.section-dark .rangu .forcedark a {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

.rangu .forcedark {
  --tw-text-opacity: 1 !important;
  color: rgb(34 34 34 / var(--tw-text-opacity)) !important
}

.section-dark .rangu .forcedark {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

.rangu .to-racing {
  --tw-gradient-to: #3000FF var(--tw-gradient-to-position)
}

/* END Overrides */

/* Rangu Header Footer quick fix*/

@media (min-width: 1024px) {
  .rangu .lg\:flex.hidden {
    display: flex !important;
    visibility: visible !important;
  }

  .rangu .hidden.lg\:block.lg\:w-52 {
    display: flex !important;
    visibility: visible !important;
  }

  .rangu footer .hidden.lg\:block {
    display: block !important;
    visibility: visible !important;
  }

  header.rangu .no-bs-hidden.lg\:block {
    display: block;
  }
}

/* no-bs - no bootstrap classname collision */

.no-bs-hidden {
  display: none;
}

body.rangu {
  font-size: 16px;
}

.rangu .with-navbar-fixed-top {
  padding-top: 0px !important;
}

html.rangu {
  font-size: 16px !important;
}

.rangu #footer {
  position: unset;
}

.rangu #header nav a {
  font-size: 16px !important;
}

.rangu #main.container {
  padding-top: 80px;
}

.rangu input[type="submit"], .button {
  border-radius: 0px;
  --tw-bg-opacity: 1;
  background-color: rgb(48 0 255 / var(--tw-bg-opacity));
}

.hover\:bg-spring:hover .redactor-card a {
  color: white;
  text-decoration: underline;
}

.active\:bg-spring:active .redactor-card a {
  color: white;
  text-decoration: underline;
}

.active\:bg-racing:active .redactor-card a {
  color: white;
  text-decoration: underline;
}

@media (min-width: 1024px) {
  .lg\:bg-spring .redactor-card a {
    color: white;
    text-decoration: underline;
  }

  .lg\:bg-racing .redactor-card a {
    color: white;
    text-decoration: underline;
  }
}

.first\:pl-3:first-child {
  padding-left: 12px
}

.last\:pr-3:last-child {
  padding-right: 12px
}

.odd\:bg-tint:nth-child(odd) {
  --tw-bg-opacity: 1;
  background-color: rgb(246 246 246 / var(--tw-bg-opacity))
}

.hover\:border-ranguDark:hover {
  --tw-border-opacity: 1;
  border-color: rgb(48 0 255 / var(--tw-border-opacity))
}

.hover\:bg-black\/80:hover {
  background-color: rgb(0 0 0 / 0.8)
}

.hover\:bg-racing\/80:hover {
  background-color: rgb(4 54 35 / 0.8)
}

.hover\:bg-ranguDark\/80:hover {
  background-color: rgb(48 0 255 / 0.8)
}

.hover\:bg-spring:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(30 201 91 / var(--tw-bg-opacity))
}

.hover\:bg-spring\/70:hover {
  background-color: rgb(30 201 91 / 0.7)
}

.hover\:bg-spring\/80:hover {
  background-color: rgb(30 201 91 / 0.8)
}

.hover\:bg-tint:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(246 246 246 / var(--tw-bg-opacity))
}

.hover\:bg-tint-dark:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(217 217 217 / var(--tw-bg-opacity))
}

.hover\:bg-tint-dark\/30:hover {
  background-color: rgb(217 217 217 / 0.3)
}

.hover\:bg-tint-dark\/80:hover {
  background-color: rgb(217 217 217 / 0.8)
}

.hover\:bg-tint\/80:hover {
  background-color: rgb(246 246 246 / 0.8)
}

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

.hover\:bg-white\/80:hover {
  background-color: rgb(255 255 255 / 0.8)
}

.hover\:text-ranguDark:hover {
  --tw-text-opacity: 1;
  color: rgb(48 0 255 / var(--tw-text-opacity))
}

.hover\:text-spring:hover {
  --tw-text-opacity: 1;
  color: rgb(30 201 91 / var(--tw-text-opacity))
}

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

.focus\:not-sr-only:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal
}

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

.focus\:ring:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}

.focus\:ring-spring:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(30 201 91 / var(--tw-ring-opacity))
}

.active\:bg-black:active {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity))
}

.active\:bg-racing:active {
  --tw-bg-opacity: 1;
  background-color: rgb(4 54 35 / var(--tw-bg-opacity))
}

.active\:bg-spring:active {
  --tw-bg-opacity: 1;
  background-color: rgb(30 201 91 / var(--tw-bg-opacity))
}

.active\:bg-tint:active {
  --tw-bg-opacity: 1;
  background-color: rgb(246 246 246 / var(--tw-bg-opacity))
}

.active\:bg-tint-dark:active {
  --tw-bg-opacity: 1;
  background-color: rgb(217 217 217 / var(--tw-bg-opacity))
}

.active\:bg-white:active {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity))
}

.group:hover .group-hover\:opacity-0 {
  opacity: 0
}

@media (min-width: 640px) {
  .sm\:px-5 {
    padding-left: 20px;
    padding-right: 20px
  }

  .sm\:text-5xl {
    font-size: 3rem;
    line-height: 1
  }

  .sm\:text-base {
    font-size: 1rem
  }

  .sm\:text-h3 {
    font-size: 3rem;
    line-height: 1
  }

  .sm\:text-h4 {
    font-size: 2rem;
    line-height: 1
  }

  .sm\:first\:pl-5:first-child {
    padding-left: 20px
  }

  .sm\:last\:pr-5:last-child {
    padding-right: 20px
  }
}

@media (min-width: 768px) {
  .md\:col-span-10 {
    grid-column: span 10 / span 10
  }

  .md\:col-span-3 {
    grid-column: span 3 / span 3
  }

  .md\:col-span-4 {
    grid-column: span 4 / span 4
  }

  .md\:col-span-6 {
    grid-column: span 6 / span 6
  }

  .md\:col-span-8 {
    grid-column: span 8 / span 8
  }

  .md\:col-start-3 {
    grid-column-start: 3
  }

  .md\:col-start-4 {
    grid-column-start: 4
  }

  .md\:mb-8 {
    margin-bottom: 40px
  }

  .md\:ml-\[50\%\] {
    margin-left: 50%
  }

  .md\:mt-2 {
    margin-top: 8px
  }

  .md\:mt-4 {
    margin-top: 16px
  }

  .md\:mt-6 {
    margin-top: 24px
  }

  .md\:line-clamp-\[9\] {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 9
  }

  .md\:size-6 {
    width: 24px;
    height: 24px
  }

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

  .md\:w-\[60\%\] {
    width: 60%
  }

  .md\:min-w-\[360px\] {
    min-width: 360px
  }

  .md\:auto-cols-fr {
    grid-auto-columns: minmax(0, 1fr)
  }

  .md\:grid-flow-col {
    grid-auto-flow: column
  }

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

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

  .md\:grid-rows-auto-3 {
    grid-template-rows: repeat(3, auto)
  }

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

  .md\:gap-y-13 {
    row-gap: 120px
  }

  .md\:gap-y-6 {
    row-gap: 24px
  }

  .md\:overflow-hidden {
    overflow: hidden
  }

  .md\:p-4 {
    padding: 16px
  }

  .md\:p-\[5px\] {
    padding: 5px
  }

  .md\:p-\[7px\] {
    padding: 7px
  }

  .md\:py-13 {
    padding-top: 120px;
    padding-bottom: 120px
  }

  .md\:pl-2 {
    padding-left: 8px
  }

  .md\:pt-0 {
    padding-top: 0px
  }

  .md\:pt-4 {
    padding-top: 16px
  }

  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1
  }

  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1
  }

  .md\:text-\[100px\] {
    font-size: 100px
  }

  .md\:text-\[110px\] {
    font-size: 110px
  }

  .md\:text-\[11rem\] {
    font-size: 11rem
  }

  .md\:text-\[140px\] {
    font-size: 140px
  }

  .md\:text-\[8rem\] {
    font-size: 8rem
  }

  .md\:text-base {
    font-size: 1rem
  }

  .md\:text-h1 {
    font-size: 5rem;
    line-height: 1
  }

  .md\:text-h2 {
    font-size: 4rem;
    line-height: 1
  }

  .md\:text-h3 {
    font-size: 3rem;
    line-height: 1
  }

  .md\:text-h5 {
    font-size: 1.625rem;
    line-height: 1.2
  }

  .md\:text-h6 {
    font-size: 1.5rem;
    line-height: 1.25
  }

  .md\:leading-none {
    line-height: 1
  }
}

@media (min-width: 1024px) {
  .lg\:absolute {
    position: absolute
  }

  .lg\:bottom-0 {
    bottom: 0px
  }

  .lg\:left-0 {
    left: 0px
  }

  .lg\:left-4 {
    left: 16px
  }

  .lg\:left-8 {
    left: 40px
  }

  .lg\:right-0 {
    right: 0px
  }

  .lg\:top-0 {
    top: 0px
  }

  .lg\:top-24 {
    top: 6rem
  }

  .lg\:top-40 {
    top: 10rem
  }

  .lg\:top-8 {
    top: 40px
  }

  .lg\:top-\[25\%\] {
    top: 25%
  }

  .lg\:z-10 {
    z-index: 10
  }

  .lg\:col-span-10 {
    grid-column: span 10 / span 10
  }

  .lg\:col-span-11 {
    grid-column: span 11 / span 11
  }

  .lg\:col-span-12 {
    grid-column: span 12 / span 12
  }

  .lg\:col-span-2 {
    grid-column: span 2 / span 2
  }

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

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

  .lg\:col-span-6 {
    grid-column: span 6 / span 6
  }

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

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

  .lg\:col-start-1 {
    grid-column-start: 1
  }

  .lg\:col-start-2 {
    grid-column-start: 2
  }

  .lg\:col-start-3 {
    grid-column-start: 3
  }

  .lg\:col-start-4 {
    grid-column-start: 4
  }

  .lg\:col-start-9 {
    grid-column-start: 9
  }

  .lg\:row-span-1 {
    grid-row: span 1 / span 1
  }

  .lg\:row-span-12 {
    grid-row: span 12 / span 12
  }

  .lg\:row-span-2 {
    grid-row: span 2 / span 2
  }

  .lg\:row-span-3 {
    grid-row: span 3 / span 3
  }

  .lg\:row-span-4 {
    grid-row: span 4 / span 4
  }

  .lg\:row-span-6 {
    grid-row: span 6 / span 6
  }

  .lg\:row-span-8 {
    grid-row: span 8 / span 8
  }

  .lg\:row-span-9 {
    grid-row: span 9 / span 9
  }

  .lg\:mx-7 {
    margin-left: 32px;
    margin-right: 32px
  }

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

  .lg\:-mb-10 {
    margin-bottom: -64px
  }

  .lg\:-mb-7 {
    margin-bottom: -32px
  }

  .lg\:-mt-6 {
    margin-top: -24px
  }

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

  .lg\:mb-10 {
    margin-bottom: 64px
  }

  .lg\:mb-11 {
    margin-bottom: 80px
  }

  .lg\:mb-13 {
    margin-bottom: 120px
  }

  .lg\:mb-4 {
    margin-bottom: 16px
  }

  .lg\:mb-7 {
    margin-bottom: 32px
  }

  .lg\:mb-8 {
    margin-bottom: 40px
  }

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

  .lg\:mt-10 {
    margin-top: 64px
  }

  .lg\:mt-2 {
    margin-top: 8px
  }

  .lg\:mt-6 {
    margin-top: 24px
  }

  .lg\:block {
    display: block
  }

  .lg\:inline {
    display: inline
  }

  .lg\:flex {
    display: flex
  }

  .lg\:grid {
    display: grid
  }

  .lg\:hidden {
    display: none
  }

  .lg\:aspect-\[12\/3\] {
    aspect-ratio: 12/3
  }

  .lg\:aspect-square {
    aspect-ratio: 1 / 1
  }

  .lg\:aspect-video {
    aspect-ratio: 16 / 9
  }

  .lg\:h-20 {
    height: 5rem
  }

  .lg\:h-60 {
    height: 15rem
  }

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

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

  .lg\:w-2\/3 {
    width: 66.666667%
  }

  .lg\:w-3\/4 {
    width: 75%
  }

  .lg\:w-3\/5 {
    width: 60%
  }

  .lg\:w-4\/12 {
    width: 33.333333%
  }

  .lg\:w-5\/6 {
    width: 83.333333%
  }

  .lg\:w-52 {
    width: 13rem
  }

  .lg\:w-8\/12 {
    width: 66.666667%
  }

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

  .lg\:max-w-\[300px\] {
    max-width: 300px
  }

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

  .lg\:scale-100 {
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
  }

  .lg\:scale-\[1\.5\] {
    --tw-scale-x: 1.5;
    --tw-scale-y: 1.5;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
  }

  .lg\:auto-cols-fr {
    grid-auto-columns: minmax(0, 1fr)
  }

  .lg\:grid-flow-col {
    grid-auto-flow: column
  }

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

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

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

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

  .lg\:grid-rows-auto-6 {
    grid-template-rows: repeat(6, auto)
  }

  .lg\:flex-row {
    flex-direction: row
  }

  .lg\:justify-between {
    justify-content: space-between
  }

  .lg\:gap-4 {
    gap: 16px
  }

  .lg\:gap-9 {
    gap: 48px
  }

  .lg\:gap-x-4 {
    -moz-column-gap: 16px;
         column-gap: 16px
  }

  .lg\:gap-y-10 {
    row-gap: 64px
  }

  .lg\:gap-y-13 {
    row-gap: 120px
  }

  .lg\:gap-y-4 {
    row-gap: 16px
  }

  .lg\:bg-racing {
    --tw-bg-opacity: 1;
    background-color: rgb(4 54 35 / var(--tw-bg-opacity))
  }

  .lg\:bg-spring {
    --tw-bg-opacity: 1;
    background-color: rgb(30 201 91 / var(--tw-bg-opacity))
  }

  .lg\:bg-tint {
    --tw-bg-opacity: 1;
    background-color: rgb(246 246 246 / var(--tw-bg-opacity))
  }

  .lg\:bg-tint-dark {
    --tw-bg-opacity: 1;
    background-color: rgb(217 217 217 / var(--tw-bg-opacity))
  }

  .lg\:bg-tint-darkest {
    --tw-bg-opacity: 1;
    background-color: rgb(34 34 34 / var(--tw-bg-opacity))
  }

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

  .lg\:bg-opacity-20 {
    --tw-bg-opacity: 0.2
  }

  .lg\:bg-opacity-40 {
    --tw-bg-opacity: 0.4
  }

  .lg\:bg-opacity-60 {
    --tw-bg-opacity: 0.6
  }

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

  .lg\:p-0 {
    padding: 0px
  }

  .lg\:p-4 {
    padding: 16px
  }

  .lg\:p-6 {
    padding: 24px
  }

  .lg\:px-0 {
    padding-left: 0px;
    padding-right: 0px
  }

  .lg\:px-3 {
    padding-left: 12px;
    padding-right: 12px
  }

  .lg\:px-6 {
    padding-left: 24px;
    padding-right: 24px
  }

  .lg\:py-10 {
    padding-top: 64px;
    padding-bottom: 64px
  }

  .lg\:py-13 {
    padding-top: 120px;
    padding-bottom: 120px
  }

  .lg\:pb-0 {
    padding-bottom: 0px
  }

  .lg\:pb-10 {
    padding-bottom: 64px
  }

  .lg\:pb-13 {
    padding-bottom: 120px
  }

  .lg\:pb-2 {
    padding-bottom: 8px
  }

  .lg\:pb-4 {
    padding-bottom: 16px
  }

  .lg\:pl-3 {
    padding-left: 12px
  }

  .lg\:pr-0 {
    padding-right: 0px
  }

  .lg\:pr-8 {
    padding-right: 40px
  }

  .lg\:pt-12 {
    padding-top: 96px
  }

  .lg\:pt-13 {
    padding-top: 120px
  }

  .lg\:pt-20 {
    padding-top: 5rem
  }

  .lg\:pt-44 {
    padding-top: 11rem
  }

  .lg\:pt-6 {
    padding-top: 24px
  }

  .lg\:pt-7 {
    padding-top: 32px
  }

  .lg\:pt-9 {
    padding-top: 48px
  }

  .lg\:pt-\[180px\] {
    padding-top: 180px
  }

  .lg\:text-center {
    text-align: center
  }

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

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

  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1
  }

  .lg\:text-\[120px\] {
    font-size: 120px
  }

  .lg\:text-\[150px\] {
    font-size: 150px
  }

  .lg\:text-\[160px\] {
    font-size: 160px
  }

  .lg\:text-\[185px\] {
    font-size: 185px
  }

  .lg\:text-\[18px\] {
    font-size: 18px
  }

  .lg\:text-\[372px\] {
    font-size: 372px
  }

  .lg\:text-\[60px\] {
    font-size: 60px
  }

  .lg\:text-base {
    font-size: 1rem
  }

  .lg\:text-display {
    font-size: 9rem;
    line-height: 1
  }

  .lg\:text-h1 {
    font-size: 5rem;
    line-height: 1
  }

  .lg\:text-h2 {
    font-size: 4rem;
    line-height: 1
  }

  .lg\:text-h3 {
    font-size: 3rem;
    line-height: 1
  }

  .lg\:text-h4 {
    font-size: 2rem;
    line-height: 1
  }

  .lg\:text-h5 {
    font-size: 1.625rem;
    line-height: 1.2
  }

  .lg\:text-h6 {
    font-size: 1.5rem;
    line-height: 1.25
  }

  .lg\:text-lg {
    font-size: 1.25rem
  }

  .lg\:text-sm {
    font-size: 0.875rem
  }

  .lg\:leading-5 {
    line-height: 1.25rem
  }

  .lg\:leading-6 {
    line-height: 1.5rem
  }

  .lg\:leading-\[372px\] {
    line-height: 372px
  }

  .lg\:text-racing {
    --tw-text-opacity: 1;
    color: rgb(4 54 35 / var(--tw-text-opacity))
  }
}

@media (min-width: 1280px) {
  .xl\:absolute {
    position: absolute
  }

  .xl\:bottom-0 {
    bottom: 0px
  }

  .xl\:top-32 {
    top: 8rem
  }

  .xl\:top-48 {
    top: 12rem
  }

  .xl\:top-64 {
    top: 16rem
  }

  .xl\:top-\[38\%\] {
    top: 38%
  }

  .xl\:top-\[8\%\] {
    top: 8%
  }

  .xl\:col-span-6 {
    grid-column: span 6 / span 6
  }

  .xl\:col-span-8 {
    grid-column: span 8 / span 8
  }

  .xl\:col-start-3 {
    grid-column-start: 3
  }

  .xl\:col-start-4 {
    grid-column-start: 4
  }

  .xl\:block {
    display: block
  }

  .xl\:w-2\/3 {
    width: 66.666667%
  }

  .xl\:basis-1\/3 {
    flex-basis: 33.333333%
  }

  .xl\:scale-\[1\.3\] {
    --tw-scale-x: 1.3;
    --tw-scale-y: 1.3;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
  }

  .xl\:items-end {
    align-items: flex-end
  }

  .xl\:gap-5 {
    gap: 20px
  }

  .xl\:space-x-8 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(40px * var(--tw-space-x-reverse));
    margin-left: calc(40px * calc(1 - var(--tw-space-x-reverse)))
  }

  .xl\:overflow-x-hidden {
    overflow-x: hidden
  }

  .xl\:pr-24 {
    padding-right: 6rem
  }

  .xl\:text-\[150px\] {
    font-size: 150px
  }

  .xl\:text-\[190px\] {
    font-size: 190px
  }

  .xl\:text-\[225px\] {
    font-size: 225px
  }

  .xl\:text-h1 {
    font-size: 5rem;
    line-height: 1
  }

  .xl\:text-h3 {
    font-size: 3rem;
    line-height: 1
  }

  .xl\:text-h4 {
    font-size: 2rem;
    line-height: 1
  }
}

@media (min-width: 1536px) {
  .\32xl\:top-0 {
    top: 0px
  }

  .\32xl\:col-span-10 {
    grid-column: span 10 / span 10
  }

  .\32xl\:col-span-6 {
    grid-column: span 6 / span 6
  }

  .\32xl\:col-span-8 {
    grid-column: span 8 / span 8
  }

  .\32xl\:col-start-2 {
    grid-column-start: 2
  }

  .\32xl\:col-start-3 {
    grid-column-start: 3
  }

  .\32xl\:col-start-4 {
    grid-column-start: 4
  }

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

  .\32xl\:max-w-\[450px\] {
    max-width: 450px
  }

  .\32xl\:scale-100 {
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
  }

  .\32xl\:text-\[100px\] {
    font-size: 100px
  }

  .\32xl\:text-\[140px\] {
    font-size: 140px
  }

  .\32xl\:text-\[180px\] {
    font-size: 180px
  }

  .\32xl\:text-\[200px\] {
    font-size: 200px
  }

  .\32xl\:text-\[240px\] {
    font-size: 240px
  }

  .\32xl\:text-\[270px\] {
    font-size: 270px
  }

  .\32xl\:text-\[30px\] {
    font-size: 30px
  }

  .\32xl\:text-\[50px\] {
    font-size: 50px
  }

  .\32xl\:text-h2 {
    font-size: 4rem;
    line-height: 1
  }

  .\32xl\:text-h3 {
    font-size: 3rem;
    line-height: 1
  }

  .\32xl\:text-h5 {
    font-size: 1.625rem;
    line-height: 1.2
  }
}

.\[\&\>\*\:first-child\]\:mt-0>*:first-child {
  margin-top: 0px
}

.\[\&\>\*\:last-child\]\:mb-0>*:last-child {
  margin-bottom: 0px
} 

