/*!
Theme Name: bastion
Theme URI: https://underscoretw.com/
Author: ATT Labs
Author URI: http://attlabs.com.au
Description: A custom theme based on _tw
Version: 0.1.0
Tested up to: 6.2
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: bastion
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

bastion is based on _tw https://underscoretw.com/, (C) 2021-2023 Greg Sullivan
_tw is distributed under the terms of the GNU GPL v2 or later.

_tw is based on Underscores https://underscores.me/ and Varia https://github.com/Automattic/themes/tree/master/varia, (C) 2012-2023 Automattic, Inc.
Underscores and Varia are distributed under the terms of the GNU GPL v2 or later.
*/

/**
 * The line above injects the WordPress file header. It needs to be first,
 * before this comment.
 */

/**
 * This injects custom `@font-face` rules.
 */

/**
 * Custom `@font-face` rules
 *
 * These will be added immediately before Tailwind’s `base` layer.
 */

/* Bastion */

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

  src: url('./fonts/Bastion.woff2') format('woff2'),
    url('./fonts/Bastion.woff') format('woff');

  font-weight: 600;

  font-style: normal;

  font-display: swap;
}

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

  src: url('./fonts/Bastion.woff2') format('woff2'),
    url('./fonts/Bastion.woff') format('woff');

  font-weight: 600;

  font-style: italic;

  font-display: swap;
}

/* Vanguard */

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

  src: url('./fonts/VanguardLight.woff2') format('woff2'),
     url('./fonts/VanguardLight.woff') format('woff');

  font-weight: 300;

  font-style: normal;

  font-display: swap;
}

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

  src: url('./fonts/VanguardLightItalic.woff2') format('woff2'),
     url('./fonts/VanguardLightItalic.woff') format('woff');

  font-weight: 300;

  font-style: italic;

  font-display: swap;
}

/* Ivar */

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

  src: url('./fonts/IvarMedium.woff2') format('woff2'),
     url('./fonts/IvarMedium.woff') format('woff');

  font-weight: 500;

  font-style: normal;

  font-display: swap;
}

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

  src: url('./fonts/IvarMediumItalic.woff2') format('woff2'),
     url('./fonts/IvarMediumItalic.woff') format('woff');

  font-weight: 500;

  font-style: italic;

  font-display: swap;
}

/* Suisse */

@font-face {
  font-family: 'Suisse Intl';

  src: url('./fonts/SuisseIntl.woff2') format('woff2'),
     url('./fonts/SuisseIntl.woff') format('woff');

  font-weight: 400;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: 'Suisse Intl';

  src: url('./fonts/SuisseIntlItalic.woff2') format('woff2'),
     url('./fonts/SuisseIntlItalic.woff') format('woff');

  font-weight: 400;

  font-style: italic;

  font-display: swap;
}

@font-face {
  font-family: 'Suisse Intl';

  src: url('./fonts/SuisseIntlMedium.woff2') format('woff2'),
     url('./fonts/SuisseIntlMedium.woff') format('woff');

  font-weight: 500;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: 'Suisse Intl';

  src: url('./fonts/SuisseIntlMediumItalic.woff2') format('woff2'),
     url('./fonts/SuisseIntlMediumItalic.woff') format('woff');

  font-weight: 500;

  font-style: italic;

  font-display: swap;
}

/**
 * This injects Tailwind's base styles and any base styles registered by
 * plugins, then adds custom base styles.
 */

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

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

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

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

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

html,
:host {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  -webkit-tap-highlight-color: transparent;
  /* 7 */
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-feature-settings: normal;
  /* 2 */
  font-variation-settings: normal;
  /* 3 */
  font-size: 1em;
  /* 4 */
}

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

button,
select {
  text-transform: none;
}

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

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

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

:-moz-focusring {
  outline: auto;
}

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

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

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

summary {
  display: list-item;
}

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

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

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

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

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

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

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

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

/*
Set the default cursor for buttons.
*/

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

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

:disabled {
  cursor: default;
}

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

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

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

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

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

[hidden] {
  display: none;
}

[type='text'],input:where(:not([type])),[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}

[type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --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);
  border-color: #2563eb;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #6b7280;
  opacity: 1;
}

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

::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

::-webkit-date-and-time-value {
  min-height: 1.5em;
  text-align: inherit;
}

::-webkit-datetime-edit {
  display: inline-flex;
}

::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field {
  padding-top: 0;
  padding-bottom: 0;
}

select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}

[multiple],[size]:where(select:not([size="1"])) {
  background-image: initial;
  background-position: initial;
  background-repeat: unset;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: unset;
          print-color-adjust: unset;
}

[type='checkbox'],[type='radio'] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  --tw-shadow: 0 0 #0000;
}

[type='checkbox'] {
  border-radius: 0px;
}

[type='radio'] {
  border-radius: 100%;
}

[type='checkbox']:focus,[type='radio']:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --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(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}

[type='checkbox']:checked,[type='radio']:checked {
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

[type='checkbox']:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}

@media (forced-colors: active)  {
  [type='checkbox']:checked {
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}

[type='radio']:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}

@media (forced-colors: active)  {
  [type='radio']:checked {
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}

[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus {
  border-color: transparent;
  background-color: currentColor;
}

[type='checkbox']:indeterminate {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

@media (forced-colors: active)  {
  [type='checkbox']:indeterminate {
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}

[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus {
  border-color: transparent;
  background-color: currentColor;
}

[type='file'] {
  background: unset;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: unset;
  line-height: inherit;
}

[type='file']:focus {
  outline: 1px solid ButtonText;
  outline: 1px auto -webkit-focus-ring-color;
}

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

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

/**
 * Custom styles to immediately follow Tailwind’s `base` layer
 *
 * “Add things like base typography styles [or] opinionated global resets.”
 *
 * — from https://tailwindcss.com/docs/plugins#adding-base-styles
 */

/**
 * This uses the background and foreground colors declared in the
 * `theme.json` file and is applied both to the frontend and in the block
 * editor.
*/

/* Global Styles */

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

section:last-of-type {
  border-bottom: none;
}

.aspect-rectangle {
  aspect-ratio: 4 / 5;
}

/* Links Hover */

.header .links a, .footer a, #social-icons a {
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.header .links a:hover, .footer a:hover, #social-icons a:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

/* Social Icons */

.footer #social-icons span:last-of-type {
  display: none;
}

/* Bike Outline Text */

.bike a {
  color: #A8804F;
}

.bike:hover a {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #A8804F;
}

.bike a:hover {
  -webkit-text-fill-color: #A8804F;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #A8804F;
}

/* Header Menu */

#menu-navigation {
  display: none;
  pointer-events: none;
}

.show #menu-navigation {
  display: block;
  pointer-events: all;
}

#menu-overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease-in-out;
  will-change: opacity;
}

.show #menu-overlay {
  opacity: 1;
  pointer-events: all;
}

.featured-image {
  opacity: 0;
  transition: opacity 500ms ease-in-out;
  will-change: opacity;
}

.show.featured-image {
  opacity: 1;
}

.info,
.quote,
.navigation,
.bike,
.bike-image,
.bike-heading,
.bike-text,
.bike-cta {
  will-change: opacity;
}

.bike a.in-view span span {
  opacity: 1;
  transform: translateY(0) rotate(0);
  transition: all 1000ms cubic-bezier(0.25, 1, 0.5, 1);
}

.bike-heading,
.bike-text,
.bike-cta {
  opacity: 0;
  transform: translate(0, 6rem);
  transition: all 1000ms cubic-bezier(0.25, 1, 0.5, 1);
}

@media (prefers-reduced-motion: no-preference) {
  /* Header Menu */

  .navigation.in-view, .info.in-view {
    animation: fadeTranslate 500ms both;
  }

  .quote .in-view {
    animation: fadeTranslate 500ms both;
  }

  .active .bike-heading {
    animation: fadeTranslateHalf 1000ms 1000ms both;
  }

  .active .bike-text {
    animation: fadeTranslateHalf 1000ms 1100ms both;
  }

  .active .bike-cta {
    animation: fadeTranslateHalf 1000ms 1200ms both;
  }

  /* Base Animation */

  .in-view {
    animation: fadeIn 500ms both;
  }

  .not-in-view {
    opacity: 0;
  }
}

/* Blog Styles */

.post section:last-of-type {
  padding-bottom: 0px;
}

.post .component-image-carousel {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 768px) {
  .post .component-image-carousel {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.post .component-title-offset-right {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .post .component-title-offset-right {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.post .component-text-center {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

@media (min-width: 768px) {
  .post .component-text-center {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
}

.stories .component-social-links {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* Blog Pagination */

.page-numbers {
  font-size: 12px;
  line-height: 12px;
  padding-bottom: 0.125rem;
  font-family: Suisse Intl, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.page-numbers.current {
  border-bottom-width: 1px;
  border-bottom-color: currentColor;
}

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

/* Hide Scroll */

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Burger Menu */

#menu-icon {
  display: inline-block;
  margin: 1px 0 0 0;
  cursor: pointer;
}

#menu-icon span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 2px 0;
}

#menu-icon span:nth-child(2) {
  opacity: 0;
}

.show #menu-icon span:nth-child(1) {
  transform: rotate(-45deg) translate(-1.5px, 4px);
}

.show #menu-icon span:nth-child(3) {
  transform: rotate(45deg) translate(-1.5px, -4px);
}

/* Slide Navigation */

.navigation-dots button {
  position: relative;
  width: 32px;
  height: 32px;
  font-size: 0;
}

@media (min-width: 768px) {
  .navigation-dots button {
    height: 48px;
  }
}

.navigation-dots button:before {
  position: absolute;
  content: '';
  top: 0;
  left: 15px;
  right: 15px;
  width: 2px;
  height: 100%;
  opacity: 0.5;
  background-color: currentColor;
  transition: opacity 300ms ease-in-out;
}

.navigation-dots button:hover:before {
  opacity: 1;
}

.navigation-dots button.active:before {
  opacity: 1;
}

/* Stats Animation */

.number-change {
  transition: opacity 200ms ease-in-out;
  opacity: 0.5;
}

.number-change.animated {
  opacity: 1;
}

/* Header Fade Out */

.fade-out {
  opacity: 0;
  will-change: opacity;
  transition: opacity 500ms ease-in-out;
}

/* Hero Loading Animation */

#intro-overlay {
  transition: transform 1s cubic-bezier(.645,.045,.355,1);
}

#intro-overlay.animate {
  transform: translateY(-100%);
  transition-delay: 1s;
}

#intro-text, #intro-button {
  opacity: 0;
  transition: opacity 300ms cubic-bezier(.645,.045,.355,1);
}

#intro-text.animate {
  opacity: 1;
  transition-delay: 2.6s;
}

#intro-marker {
  opacity: 0;
  transition: opacity 300ms ease-in-out;
}

#intro-marker.animate {
  opacity: 1;
  transition-delay: 2.6s;
}

#intro-button.animate {
  opacity: 1;
  transition-delay: 2.6s;
}

.animate #lottie-animation {
  opacity: 0;
  transition: opacity 800ms cubic-bezier(.645,.045,.355,1);
  transition-delay: 1s;
}

.progress {
  display: block;
  width: 0;
  height: 100%;
  transition: width 0.6s linear;
}

/* Custom Scroller */

.scroller {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow-x: scroll;
  overflow-y: hidden;
}

.scroller::-webkit-scrollbar {
  height: 2px;
  margin: 10px 0;
}

.scroller::-webkit-scrollbar-track-piece {
  margin: 0 auto;
  background-color: rgba(168, 128, 79, 0.2);
  border: solid 1px rgba(168, 128, 79, 0.2);
}

.scroller::-webkit-scrollbar-thumb {
  background-color: rgba(168, 128, 79, 1);
  -webkit-transition: background-color 300ms ease-in-out;
  transition: background-color 300ms ease-in-out;
}

.scroller::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 1);
}

.scroller::-webkit-scrollbar-button:start:increment,
.scroller::-webkit-scrollbar-button:end:increment {
  display: block;
  width: 20%;
  margin: 0 auto;
  background: transparent;
}

/* Plyr Video */

.plyr-video {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.plyr--video {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.plyr__video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.plyr__poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Gallery Slides */

.image-models {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
}

.image-models-left {
  grid-area: 1 / 1 / 2 / 2;
}

.image-models-right {
  grid-area: 1 / 1 / 2 / 3;
}

/* Swiper Slider */

.swiper-container {
  position: relative;
  overflow: hidden;
}

.swiper-container,
.swiper-wrapper {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  width: 100%;
  height: 100%;
  align-items: center;
  cursor: grab;
}

.swiper-plugin-pagination {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 1;
}

.component-hero-carousel .swiper-plugin-pagination {
  bottom: 32px;
  left: 32px;
  right: 32px;
  justify-content: flex-start;
  align-items: flex-start;
}

.swiper-plugin-pagination .swiper-plugin-pagination-item {
  position: relative;
  width: 24px;
  height: 24px;
  font-size: 0;
  pointer-events: auto;
  transition: all 200ms ease-in-out;
}

.swiper-plugin-pagination .swiper-plugin-pagination-item.active {
  width: 48px;
}

.swiper-plugin-pagination .swiper-plugin-pagination-item:before {
  position: absolute;
  content: '';
  top: calc(50% - 2px);
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  width: 100%;
  opacity: 0.5;
  background-color: currentColor;
  transition: opacity 300ms ease-in-out;
}

.swiper-plugin-pagination .swiper-plugin-pagination-item:hover:before {
  opacity: 1;
}

.swiper-plugin-pagination .swiper-plugin-pagination-item.active:before {
  opacity: 1;
}

@media (min-width: 768px) {
  .swiper-plugin-pagination {
    bottom: 32px;
  }

  .swiper-plugin-pagination .swiper-plugin-pagination-item {
    width: 32px;
  }

  .swiper-plugin-pagination .swiper-plugin-pagination-item.active {
    width: 64px;
  }
}

/* Swiper Lazy */

.swiper-lazy {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: all ease 300ms;
}

.swiper-lazy-preloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.swiper-lazy-loaded {
  opacity: 1;
}

.swiper-lazy-preloader::after {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -15px 0 0 -15px;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0, 0, 0, 0.88);
  border-radius: 50%;
  border-bottom-color: transparent;
  transform-origin: 50%;
  animation: spinner 1s infinite linear;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  grid-column-gap: 0px;
  grid-row-gap: 1.5rem;
}

.about-grid-one {
  grid-area: 2 / 1 / 3 / 3;
}

.about-grid-text {
  grid-area: 1 / 1 / 2 / 3;
}

.about-grid-two {
  grid-area: 3 / 1 / 4 / 3;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    grid-column-gap: 1.5rem;
    grid-row-gap: 2rem;
  }

  .about-grid-one {
    grid-area: 2 / 1 / 3 / 2;
  }

  .about-grid-text {
    grid-area: 1 / 1 / 2 / 3;
  }

  .about-grid-two {
    grid-area: 2 / 2 / 3 / 3;
  }
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(2, auto);
    grid-column-gap: 2rem;
    grid-row-gap: 8rem;
  }

  .about-grid-one {
    grid-area: 1 / 1 / 3 / 4;
  }

  .about-grid-two {
    grid-area: 2 / 7 / 3 / 9;
  }

  .about-grid-text {
    grid-area: 1 / 5 / 2 / 9;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeTranslate {
  0% {
    opacity: 0;
    transform: translate(0, 3rem);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes fadeTranslateHalf {
  0% {
    opacity: 0;
    transform: translate(0, 6rem);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes fadeTranslateFull {
  0% {
    opacity: 0;
    transform: translate(0, 100%);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

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

  50% {
    transform: translateX(-100%);
  }

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

@keyframes spinner {
  0% {
    transform: rotate3d(0, 0, 0, 0);
  }

  100% {
    transform: rotate3d(0, 0, 1, 360deg);
  }
}

#page *:focus {
  outline: none;
}

#page input:focus-visible {
  outline: rgba(255,255,255,1) solid 1px;
  transition: none !important;
}

#page a:focus-visible {
  outline: rgba(255,255,255,1) dotted 1px;
  transition: none !important;
}

#page button:focus-visible {
  outline: rgba(255,255,255,1) dotted 1px;
  transition: none !important;
}

#page ::-moz-selection {
  background: rgba(255,255,255,0.2);
}

#page ::selection {
  background: rgba(255,255,255,0.2);
}

/**
 * This injects Tailwind's component classes and any component classes
 * registered by plugins, then adds custom component classes.
 *
 * The `@import-glob` line imports all CSS files from the `components`
 * directory (except for `components.css`, which is imported on the following
 * line). This is meant to simplify the process of integrating styles from
 * JavaScript components or WordPress plugins.
 */

.container {
  width: 100%;
}

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

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

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

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

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

.prose {
  color: var(--tw-prose-body);
}

.prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.prose :where([class~="lead"], [class~="is-style-lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}

.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-links);
  text-decoration: underline;
  font-weight: 500;
}

.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-bold);
  font-weight: 600;
}

.prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}

.prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}

.prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}

.prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}

.prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}

.prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}

.prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}

.prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}

.prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}

.prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
}

.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}

.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  font-weight: 400;
  color: var(--tw-prose-counters);
}

.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  color: var(--tw-prose-bullets);
}

.prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.25em;
}

.prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
  border-bottom: none;
}

.prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-inline-start-width: 0.25rem;
  border-inline-start-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-inline-start: 1em;
  border-left-style: solid;
}

.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: open-quote;
}

.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: close-quote;
}

.prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 800;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}

.prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 900;
  color: inherit;
}

.prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}

.prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 800;
  color: inherit;
}

.prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}

.prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}

.prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}

.prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}

.prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-family: inherit;
  color: var(--tw-prose-kbd);
  box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
  font-size: 0.875em;
  border-radius: 0.3125rem;
  padding-top: 0.1875em;
  padding-inline-end: 0.375em;
  padding-bottom: 0.1875em;
  padding-inline-start: 0.375em;
}

.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-code);
  font-weight: 600;
  font-size: 0.875em;
}

.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: "`";
}

.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: "`";
}

.prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.875em;
}

.prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.9em;
}

.prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-inline-end: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-inline-start: 1.1428571em;
}

.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}

.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: none;
}

.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: none;
}

.prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  width: 100%;
  table-layout: auto;
  text-align: start;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}

.prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}

.prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}

.prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}

.prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 0;
}

.prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: baseline;
}

.prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}

.prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: top;
}

.prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}

.prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}

.prose {
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: 17 24 39;
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: 255 255 255;
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}

.prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}

.prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.375em;
}

.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.375em;
}

.prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.prose :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}

.prose :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}

.prose :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}

.prose :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}

.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  padding-inline-start: 1.625em;
}

.prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}

.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}

.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.5714286em;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}

.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}

.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}

.prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}

.prose :where(blockquote > cite):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-body);
  font-style: normal;
  font-weight: 400;
}

.prose :where(blockquote > cite):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: "\2014";
}

.prose :where(table.has-fixed-layout):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  table-layout: fixed;
  width: 100%;
}

.prose-neutral {
  --tw-prose-body: #404040;
  --tw-prose-headings: #171717;
  --tw-prose-lead: #525252;
  --tw-prose-links: #171717;
  --tw-prose-bold: #171717;
  --tw-prose-counters: #737373;
  --tw-prose-bullets: #d4d4d4;
  --tw-prose-hr: #e5e5e5;
  --tw-prose-quotes: #171717;
  --tw-prose-quote-borders: #e5e5e5;
  --tw-prose-captions: #737373;
  --tw-prose-kbd: #171717;
  --tw-prose-kbd-shadows: 23 23 23;
  --tw-prose-code: #171717;
  --tw-prose-pre-code: #e5e5e5;
  --tw-prose-pre-bg: #262626;
  --tw-prose-th-borders: #d4d4d4;
  --tw-prose-td-borders: #e5e5e5;
  --tw-prose-invert-body: #d4d4d4;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #a3a3a3;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #a3a3a3;
  --tw-prose-invert-bullets: #525252;
  --tw-prose-invert-hr: #404040;
  --tw-prose-invert-quotes: #f5f5f5;
  --tw-prose-invert-quote-borders: #404040;
  --tw-prose-invert-captions: #a3a3a3;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: 255 255 255;
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d4d4d4;
  --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
  --tw-prose-invert-th-borders: #525252;
  --tw-prose-invert-td-borders: #404040;
}

.html-text-block {
  color: var(--tw-prose-body);
}

.html-text-block :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.html-text-block :where([class~="lead"], [class~="is-style-lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}

.html-text-block :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-links);
  text-decoration: underline;
  font-weight: 500;
}

.html-text-block :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-bold);
  font-weight: 600;
}

.html-text-block :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.html-text-block :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.html-text-block :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.html-text-block :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}

.html-text-block :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}

.html-text-block :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}

.html-text-block :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}

.html-text-block :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}

.html-text-block :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}

.html-text-block :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}

.html-text-block :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}

.html-text-block :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}

.html-text-block :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
}

.html-text-block :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}

.html-text-block :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  font-weight: 400;
  color: var(--tw-prose-counters);
}

.html-text-block :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  color: var(--tw-prose-bullets);
}

.html-text-block :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.25em;
}

.html-text-block :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
  border-bottom: none;
}

.html-text-block :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-inline-start-width: 0.25rem;
  border-inline-start-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-inline-start: 1em;
  border-left-style: solid;
}

.html-text-block :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: open-quote;
}

.html-text-block :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: close-quote;
}

.html-text-block :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 800;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}

.html-text-block :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 900;
  color: inherit;
}

.html-text-block :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}

.html-text-block :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 800;
  color: inherit;
}

.html-text-block :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}

.html-text-block :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}

.html-text-block :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}

.html-text-block :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}

.html-text-block :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}

.html-text-block :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}

.html-text-block :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}

.html-text-block :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-family: inherit;
  color: var(--tw-prose-kbd);
  box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
  font-size: 0.875em;
  border-radius: 0.3125rem;
  padding-top: 0.1875em;
  padding-inline-end: 0.375em;
  padding-bottom: 0.1875em;
  padding-inline-start: 0.375em;
}

.html-text-block :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-code);
  font-weight: 600;
  font-size: 0.875em;
}

.html-text-block :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: "`";
}

.html-text-block :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: "`";
}

.html-text-block :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.html-text-block :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.html-text-block :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.875em;
}

.html-text-block :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.9em;
}

.html-text-block :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.html-text-block :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.html-text-block :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.html-text-block :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-inline-end: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-inline-start: 1.1428571em;
}

.html-text-block :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}

.html-text-block :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: none;
}

.html-text-block :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: none;
}

.html-text-block :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  width: 100%;
  table-layout: auto;
  text-align: start;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}

.html-text-block :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}

.html-text-block :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}

.html-text-block :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}

.html-text-block :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 0;
}

.html-text-block :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: baseline;
}

.html-text-block :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}

.html-text-block :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: top;
}

.html-text-block :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}

.html-text-block :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}

.html-text-block {
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: 17 24 39;
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: 255 255 255;
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}

.html-text-block :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}

.html-text-block :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.html-text-block :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.375em;
}

.html-text-block :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.375em;
}

.html-text-block :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.html-text-block :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}

.html-text-block :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}

.html-text-block :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}

.html-text-block :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}

.html-text-block :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.html-text-block :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.html-text-block :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  padding-inline-start: 1.625em;
}

.html-text-block :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.html-text-block :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.html-text-block :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.html-text-block :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.html-text-block :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}

.html-text-block :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}

.html-text-block :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.5714286em;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}

.html-text-block :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}

.html-text-block :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}

.html-text-block :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}

.html-text-block :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.html-text-block :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}

.html-text-block :where(blockquote > cite):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-body);
  font-style: normal;
  font-weight: 400;
}

.html-text-block :where(blockquote > cite):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: "\2014";
}

.html-text-block :where(table.has-fixed-layout):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  table-layout: fixed;
  width: 100%;
}

.html-text-block {
  --tw-text-opacity: 1;
  color: rgb(168 128 79 / var(--tw-text-opacity));
}

.html-text-block :is(:where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(168 128 79 / var(--tw-text-opacity));
}

.html-text-block :is(:where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(168 128 79 / var(--tw-text-opacity));
}

.html-text-block :is(:where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(168 128 79 / var(--tw-text-opacity));
}

.html-text-block :is(:where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(168 128 79 / var(--tw-text-opacity));
}

.html-text-block :is(:where(h5):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
  --tw-text-opacity: 1;
  color: rgb(168 128 79 / var(--tw-text-opacity));
}

.html-text-block :is(:where(h6):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
  --tw-text-opacity: 1;
  color: rgb(168 128 79 / var(--tw-text-opacity));
}

.html-text-block :is(:where(a):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(168 128 79 / var(--tw-text-opacity));
  text-decoration-line: none;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.html-text-block :is(:where(a):not(:where([class~="not-prose"],[class~="not-prose"] *))):hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.html-text-block strong, .html-text-block ::marker {
  --tw-text-opacity: 1;
  color: rgb(168 128 79 / var(--tw-text-opacity));
}

.bastion-heading-32 {
  font-size: 32px;
  line-height: 24px;
  letter-spacing: -2px;
  font-family: Bastion, sans-serif;
  font-weight: 700;
  text-transform: uppercase
}

.bastion-heading-48 {
  font-size: 48px;
  line-height: 40px;
  letter-spacing: -2px;
  font-family: Bastion, sans-serif;
  font-weight: 700;
  text-transform: uppercase
}

.bastion-heading-64 {
  font-size: 64px;
  line-height: 56px;
  letter-spacing: -2px;
  font-family: Bastion, sans-serif;
  font-weight: 700;
  text-transform: uppercase
}

.bastion-heading-80 {
  font-size: 80px;
  line-height: 72px;
  letter-spacing: -2px;
  font-family: Bastion, sans-serif;
  font-weight: 700;
  text-transform: uppercase
}

.bastion-heading-96 {
  font-size: 96px;
  line-height: 88px;
  letter-spacing: -2px;
  font-family: Bastion, sans-serif;
  font-weight: 700;
  text-transform: uppercase
}

.bastion-heading-120 {
  font-size: 120px;
  line-height: 112px;
  letter-spacing: -2px;
  font-family: Bastion, sans-serif;
  font-weight: 700;
  text-transform: uppercase
}

.bastion-heading-160 {
  font-size: 160px;
  line-height: 136px;
  letter-spacing: -2px;
  font-family: Bastion, sans-serif;
  font-weight: 700;
  text-transform: uppercase
}

.bastion-heading-240 {
  font-size: 240px;
  line-height: 224px;
  letter-spacing: -2px;
  font-family: Bastion, sans-serif;
  font-weight: 700;
  text-transform: uppercase
}

.vanguard-heading-16 {
  font-size: 16px;
  line-height: 20px;
  font-family: Vanguard, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em
}

.vanguard-heading-32 {
  font-size: 32px;
  line-height: 28px;
  font-family: Vanguard, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em
}

.vanguard-heading-80 {
  font-size: 80px;
  line-height: 72px;
  font-family: Vanguard, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em
}

.vanguard-heading-96 {
  font-size: 96px;
  line-height: 88px;
  font-family: Vanguard, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em
}

.vanguard-heading-120 {
  font-size: 120px;
  line-height: 104px;
  font-family: Vanguard, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em
}

.vanguard-heading-160 {
  font-size: 160px;
  line-height: 144px;
  font-family: Vanguard, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em
}

.ivar-body-16 {
  font-size: 16px;
  line-height: 20px;
  font-family: Ivar, serif;
  font-weight: 400
}

.ivar-body-20 {
  font-size: 20px;
  line-height: 24px;
  font-family: Ivar, serif;
  font-weight: 400
}

.ivar-body-24 {
  font-size: 24px;
  line-height: 24px;
  font-family: Ivar, serif;
  font-weight: 400
}

.ivar-body-32 {
  font-size: 32px;
  line-height: 32px;
  font-family: Ivar, serif;
  font-weight: 400
}

.ivar-body-48 {
  font-size: 48px;
  line-height: 48px;
  font-family: Ivar, serif;
  font-weight: 400
}

.ivar-body-64 {
  font-size: 64px;
  line-height: 64px;
  font-family: Ivar, serif;
  font-weight: 400
}

.suisse-body-12 {
  font-size: 12px;
  line-height: 16px;
  font-family: Suisse Intl, sans-serif;
  font-weight: 400
}

.suisse-body-14 {
  font-size: 14px;
  line-height: 18px;
  font-family: Suisse Intl, sans-serif;
  font-weight: 400
}

.suisse-body-16 {
  font-size: 16px;
  line-height: 20px;
  font-family: Suisse Intl, sans-serif;
  font-weight: 400
}

.suisse-body-18 {
  font-size: 18px;
  line-height: 22px;
  font-family: Suisse Intl, sans-serif;
  font-weight: 400
}

.suisse-body-20 {
  font-size: 20px;
  line-height: 24px;
  font-family: Suisse Intl, sans-serif;
  font-weight: 400
}

.suisse-body-24 {
  font-size: 24px;
  line-height: 32px;
  font-family: Suisse Intl, sans-serif;
  font-weight: 400
}

.suisse-body-32 {
  font-size: 32px;
  line-height: 32px;
  font-family: Suisse Intl, sans-serif;
  font-weight: 400
}

.suisse-body-40 {
  font-size: 40px;
  line-height: 40px;
  font-family: Suisse Intl, sans-serif;
  font-weight: 400
}

.suisse-body-48 {
  font-size: 48px;
  line-height: 48px;
  font-family: Suisse Intl, sans-serif;
  font-weight: 400
}

.suisse-body-64 {
  font-size: 64px;
  line-height: 64px;
  font-family: Suisse Intl, sans-serif;
  font-weight: 400
}

.suisse-btn-10 {
  font-size: 10px;
  line-height: 10px;
  display: inline;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-bottom-color: rgb(168 128 79 / var(--tw-border-opacity));
  padding-bottom: 0.125rem;
  font-family: Suisse Intl, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1)
}

.suisse-btn-10:hover {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(255 255 255 / var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.suisse-btn-12 {
  font-size: 12px;
  line-height: 12px;
  display: inline;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-bottom-color: rgb(168 128 79 / var(--tw-border-opacity));
  padding-bottom: 0.125rem;
  font-family: Suisse Intl, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1)
}

.suisse-btn-12:hover {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(255 255 255 / var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.suisse-btn-16 {
  font-size: 16px;
  line-height: 16px;
  display: inline;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-bottom-color: rgb(168 128 79 / var(--tw-border-opacity));
  padding-bottom: 0.125rem;
  font-family: Suisse Intl, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1)
}

.suisse-btn-16:hover {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(255 255 255 / var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.hero-sans-24 {
  font-size: 23px;
  line-height: 24px;
  font-family: Suisse Intl, sans-serif;
  font-weight: 400
}

.hero-serif-24 {
  font-size: 24px;
  line-height: 24px;
  font-family: Ivar, serif;
  font-weight: 400;
  font-style: italic
}

/**
 * Custom styles to immediately follow Tailwind’s `components` layer
 *
 * “Add more opinionated, complex classes like buttons, form controls, alerts,
 * etc; the sort of pre-built components you often see in other frameworks that
 * you might need to override with utility classes.”
 *
 * — from https://tailwindcss.com/docs/plugins#adding-components
 */

/**
 * Post title styles
 *
 * These will be applied to all headings with a `page-title` or `entry-title`
 * class on the frontend and to the post title in the block editor.
 *
 * The supplied styles are meant to match the default `h1` classes from
 * Tailwind Typography.
 */

.page-title,
.entry-title {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  max-width: 40rem;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 800;
  --tw-text-opacity: 1;
  color: rgb(23 23 23 / var(--tw-text-opacity));
}

/**
 * Layout styles for centered content areas
 *
 * If you are controlling the width of your content area with styles applied
 * to its container, you can delete the following styles whose selectors begin
 * with `.page-content >` and `.entry-content >`. For more details, please see
 * the following:
 *
 * https://make.wordpress.org/core/2021/06/29/on-layout-and-content-width-in-wordpress-5-8/
 */

.page-content > *,
.entry-content > * {
  /* Content width from the `theme.json` file */
  margin-left: auto;
  margin-right: auto;
  max-width: 40rem;
}

.entry-content > .alignwide {
  /* Wide width from the `theme.json` file */
  max-width: 60rem;
}

.entry-content > .alignfull {
  max-width: none;
}

.entry-content > .alignleft {
  float: left;
  margin-right: 2rem;
}

.entry-content > .alignright {
  float: right;
  margin-left: 2rem;
}

/**
 * This injects Tailwind's utility classes and any utility classes registered
 * by plugins, then adds custom utility classes.
 */

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

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

.visible {
  visibility: visible;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.inset-0 {
  inset: 0px;
}

.-bottom-\[32px\] {
  bottom: -32px;
}

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

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

.bottom-0 {
  bottom: 0px;
}

.bottom-16 {
  bottom: 4rem;
}

.bottom-8 {
  bottom: 2rem;
}

.bottom-auto {
  bottom: auto;
}

.left-0 {
  left: 0px;
}

.left-6 {
  left: 1.5rem;
}

.left-8 {
  left: 2rem;
}

.left-auto {
  left: auto;
}

.right-0 {
  right: 0px;
}

.right-6 {
  right: 1.5rem;
}

.right-auto {
  right: auto;
}

.top-0 {
  top: 0px;
}

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

.top-8 {
  top: 2rem;
}

.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-\[100\] {
  z-index: 100;
}

.z-\[80\] {
  z-index: 80;
}

.z-\[90\] {
  z-index: 90;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mb-20 {
  margin-bottom: 5rem;
}

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

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

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

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

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

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

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

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

.mt-28 {
  margin-top: 7rem;
}

.mt-40 {
  margin-top: 10rem;
}

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

.block {
  display: block;
}

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

.flex {
  display: flex;
}

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

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

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

.grid {
  display: grid;
}

.hidden {
  display: none;
}

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

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

.h-24 {
  height: 6rem;
}

.h-\[160px\] {
  height: 160px;
}

.h-\[208px\] {
  height: 208px;
}

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

.h-\[96px\] {
  height: 96px;
}

.h-\[calc\(100vh_-_48px\)\] {
  height: calc(100vh - 48px);
}

.h-full {
  height: 100%;
}

.h-px {
  height: 1px;
}

.h-screen {
  height: 100vh;
}

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

.w-10 {
  width: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.w-17\.5 {
  width: 70px;
}

.w-3\/4 {
  width: 75%;
}

.w-\[120px\] {
  width: 120px;
}

.w-\[200px\] {
  width: 200px;
}

.w-\[27px\] {
  width: 27px;
}

.w-\[60px\] {
  width: 60px;
}

.w-auto {
  width: auto;
}

.w-full {
  width: 100%;
}

.w-px {
  width: 1px;
}

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

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

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

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

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

.max-w-none {
  max-width: none;
}

.origin-top-left {
  transform-origin: top left;
}

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

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

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

.rotate-\[4deg\] {
  --tw-rotate: 4deg;
  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-auto {
  cursor: auto;
}

.cursor-pointer {
  cursor: pointer;
}

.resize {
  resize: both;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-x-0 {
  -moz-column-gap: 0px;
       column-gap: 0px;
}

.gap-x-2 {
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

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

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

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

.gap-y-0 {
  row-gap: 0px;
}

.gap-y-12 {
  row-gap: 3rem;
}

.gap-y-16 {
  row-gap: 4rem;
}

.gap-y-2 {
  row-gap: 0.5rem;
}

.gap-y-20 {
  row-gap: 5rem;
}

.gap-y-3 {
  row-gap: 0.75rem;
}

.gap-y-4 {
  row-gap: 1rem;
}

.gap-y-40 {
  row-gap: 10rem;
}

.gap-y-5 {
  row-gap: 1.25rem;
}

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

.gap-y-8 {
  row-gap: 2rem;
}

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

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

.overflow-hidden {
  overflow: hidden;
}

.text-balance {
  text-wrap: balance;
}

.break-all {
  word-break: break-all;
}

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

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

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

.border-gold {
  --tw-border-opacity: 1;
  border-color: rgb(168 128 79 / var(--tw-border-opacity));
}

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

.bg-black\/60 {
  background-color: rgb(0 0 0 / 0.6);
}

.bg-gold {
  --tw-bg-opacity: 1;
  background-color: rgb(168 128 79 / var(--tw-bg-opacity));
}

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

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

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

.p-12 {
  padding: 3rem;
}

.p-6 {
  padding: 1.5rem;
}

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

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

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

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

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

.pb-1\.5 {
  padding-bottom: 0.375rem;
}

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

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

.pb-20 {
  padding-bottom: 5rem;
}

.pb-30 {
  padding-bottom: 7.5rem;
}

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

.pb-40 {
  padding-bottom: 10rem;
}

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

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

.pl-14 {
  padding-left: 3.5rem;
}

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

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

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

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

.pr-24 {
  padding-right: 6rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.align-bottom {
  vertical-align: bottom;
}

.font-suisse {
  font-family: Suisse Intl, sans-serif;
}

.uppercase {
  text-transform: uppercase;
}

.italic {
  font-style: italic;
}

.text-gold {
  --tw-text-opacity: 1;
  color: rgb(168 128 79 / var(--tw-text-opacity));
}

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

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

.opacity-0 {
  opacity: 0;
}

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

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

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

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

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

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

.will-change-transform {
  will-change: transform;
}

.content-none {
  --tw-content: none;
  content: var(--tw-content);
}

/**
 * Custom styles to immediately follow Tailwind’s `utilities` layer
 *
 * Add your own utility classes to this theme. Complex utility classes should
 * be added using Tailwind’s plugin system:
 *
 * https://tailwindcss.com/docs/plugins#adding-utilities
 */

/**
 * This injects other stylesheets.
 */

/* Contact Form 7 */

.wpcf7-form {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.wpcf7-form label {
  font-size: 12px;
  line-height: 16px;
  font-family: Suisse Intl, sans-serif;
  margin-top: 2rem;
  display: block;
  font-weight: 500;
  text-transform: uppercase
}

.wpcf7-form input.wpcf7-text {
  font-size: 12px;
  line-height: 16px;
  font-family: Suisse Intl, sans-serif;
  display: block;
  width: 100%;
  border-top-width: 0px;
  border-bottom-width: 1px;
  border-left-width: 0px;
  border-right-width: 0px;
  --tw-border-opacity: 1;
  border-color: rgb(168 128 79 / var(--tw-border-opacity));
  background-color: transparent;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-weight: 500
}

.wpcf7-form input.wpcf7-text::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(168 128 79 / var(--tw-placeholder-opacity));
}

.wpcf7-form input.wpcf7-text::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(168 128 79 / var(--tw-placeholder-opacity));
}

.wpcf7-form input.wpcf7-text {
  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: 200ms;
}

.wpcf7-form input.wpcf7-text::-moz-placeholder {
  text-transform: uppercase;
}

.wpcf7-form input.wpcf7-text::placeholder {
  text-transform: uppercase;
}

.wpcf7-form input.wpcf7-text:focus {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  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);
}

.wpcf7-form textarea.wpcf7-textarea {
  font-size: 12px;
  line-height: 16px;
  font-family: Suisse Intl, sans-serif;
  display: block;
  width: 100%;
  border-top-width: 0px;
  border-bottom-width: 1px;
  border-left-width: 0px;
  border-right-width: 0px;
  --tw-border-opacity: 1;
  border-color: rgb(168 128 79 / var(--tw-border-opacity));
  background-color: transparent;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-weight: 500
}

.wpcf7-form textarea.wpcf7-textarea::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(168 128 79 / var(--tw-placeholder-opacity));
}

.wpcf7-form textarea.wpcf7-textarea::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(168 128 79 / var(--tw-placeholder-opacity));
}

.wpcf7-form textarea.wpcf7-textarea {
  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: 200ms;
}

.wpcf7-form textarea.wpcf7-textarea::-moz-placeholder {
  text-transform: uppercase;
}

.wpcf7-form textarea.wpcf7-textarea::placeholder {
  text-transform: uppercase;
}

.wpcf7-form textarea.wpcf7-textarea:focus {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  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);
}

.wpcf7-form input.wpcf7-submit {
  font-size: 12px;
  line-height: 16px;
  font-family: Suisse Intl, sans-serif;
  margin-top: 4rem;
  display: block;
  width: 100%;
  cursor: pointer;
  border-radius: 0.25rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(168 128 79 / var(--tw-border-opacity));
  background-color: transparent;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-weight: 500;
  text-transform: uppercase
}

.wpcf7-form input.wpcf7-submit::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(168 128 79 / var(--tw-placeholder-opacity));
}

.wpcf7-form input.wpcf7-submit::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(168 128 79 / var(--tw-placeholder-opacity));
}

.wpcf7-form input.wpcf7-submit {
  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: 200ms;
}

.wpcf7-form input.wpcf7-submit:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(168 128 79 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.wpcf7-form input.wpcf7-submit:focus {
  --tw-border-opacity: 1;
  border-color: rgb(168 128 79 / var(--tw-border-opacity));
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  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);
}

@media (min-width: 768px) {
  .wpcf7-form input.wpcf7-submit {
    margin-bottom: 1rem;
  }
}

/* Not valid styles */

.wpcf7-not-valid {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.wpcf7-not-valid-tip {
  font-size: 12px;
  line-height: 16px;
  font-family: Suisse Intl, sans-serif;
  margin-top: 0.5rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity));
  outline: 2px solid transparent;
  outline-offset: 2px
}

/* Response output styles */

.wpcf7-response-output,
.wpcf7-response-output.wpcf7-validation-errors,
.wpcf7-response-output.wpcf7-mail-sent-ok,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  font-size: 12px;
  line-height: 16px;
  font-family: Suisse Intl, sans-serif;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 1rem;
  margin-bottom: 0px;
  padding: 0px;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity));
  outline: 2px solid transparent;
  outline-offset: 2px
}

@media (min-width: 768px) {
  .wpcf7-response-output,
.wpcf7-response-output.wpcf7-validation-errors,
.wpcf7-response-output.wpcf7-mail-sent-ok,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    margin-top: 0.5rem;
  }
}

.wpcf7-response-output,
.wpcf7-response-output.wpcf7-validation-errors,
.wpcf7-response-output.wpcf7-mail-sent-ok,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  font-size: 12px;
  line-height: 16px;
  font-family: Suisse Intl, sans-serif;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 1rem;
  margin-bottom: 0px;
  padding: 0px;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / var(--tw-text-opacity));
  outline: 2px solid transparent;
  outline-offset: 2px
}

@media (min-width: 768px) {
  .wpcf7 form.sent .wpcf7-response-output {
    margin-top: 0.5rem;
  }
}

.wpcf7 form.sent .wpcf7-response-output {
  border: none;
}

/* Spinner styles */

.wpcf7-spinner {
  display: none;
}

/* Radio button styles */

.wpcf7-form-control-wrap {
  margin-top: 4rem;
}

.wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .wpcf7-form-control.wpcf7-radio {
    flex-direction: row;
    align-items: center;
  }
}

.wpcf7-list-item {
  margin: 0px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.wpcf7-list-item.first {
  margin: 0px;
}

.wpcf7-list-item input[type="radio"] {
  height: 1rem;
  width: 1rem;
  cursor: pointer;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(168 128 79 / var(--tw-border-opacity));
  background-color: transparent;
}

.wpcf7-list-item input[type="radio"]:focus {
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  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);
}

.wpcf7-list-item input[type="radio"]:checked {
  height: 1rem;
  width: 1rem;
  --tw-bg-opacity: 1;
  background-color: rgb(168 128 79 / var(--tw-bg-opacity));
  background-image: none;
}

.wpcf7-list-item input[type="radio"]:checked:focus {
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  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);
}

.wpcf7-list-item-label {
  font-size: 12px;
  line-height: 16px;
  font-family: Suisse Intl, sans-serif;
  font-weight: 500;
  text-transform: uppercase
}

.prose-em\:ivar-body-24 :is(:where(em):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
  font-size: 24px;
  line-height: 24px;
  font-family: Ivar, serif;
  font-weight: 400
}

.prose-em\:ivar-body-48 :is(:where(em):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
  font-size: 48px;
  line-height: 48px;
  font-family: Ivar, serif;
  font-weight: 400
}

@media (min-width: 640px) {
  .sm\:bastion-heading-64 {
    font-size: 64px;
    line-height: 56px;
    letter-spacing: -2px;
    font-family: Bastion, sans-serif;
    font-weight: 700;
    text-transform: uppercase
  }
}

@media (min-width: 768px) {
  .md\:bastion-heading-48 {
    font-size: 48px;
    line-height: 40px;
    letter-spacing: -2px;
    font-family: Bastion, sans-serif;
    font-weight: 700;
    text-transform: uppercase
  }

  .md\:bastion-heading-64 {
    font-size: 64px;
    line-height: 56px;
    letter-spacing: -2px;
    font-family: Bastion, sans-serif;
    font-weight: 700;
    text-transform: uppercase
  }

  .md\:bastion-heading-80 {
    font-size: 80px;
    line-height: 72px;
    letter-spacing: -2px;
    font-family: Bastion, sans-serif;
    font-weight: 700;
    text-transform: uppercase
  }

  .md\:bastion-heading-96 {
    font-size: 96px;
    line-height: 88px;
    letter-spacing: -2px;
    font-family: Bastion, sans-serif;
    font-weight: 700;
    text-transform: uppercase
  }

  .md\:bastion-heading-120 {
    font-size: 120px;
    line-height: 112px;
    letter-spacing: -2px;
    font-family: Bastion, sans-serif;
    font-weight: 700;
    text-transform: uppercase
  }

  .md\:bastion-heading-160 {
    font-size: 160px;
    line-height: 136px;
    letter-spacing: -2px;
    font-family: Bastion, sans-serif;
    font-weight: 700;
    text-transform: uppercase
  }

  .md\:bastion-heading-240 {
    font-size: 240px;
    line-height: 224px;
    letter-spacing: -2px;
    font-family: Bastion, sans-serif;
    font-weight: 700;
    text-transform: uppercase
  }

  .md\:vanguard-heading-16 {
    font-size: 16px;
    line-height: 20px;
    font-family: Vanguard, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em
  }

  .md\:vanguard-heading-32 {
    font-size: 32px;
    line-height: 28px;
    font-family: Vanguard, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em
  }

  .md\:vanguard-heading-80 {
    font-size: 80px;
    line-height: 72px;
    font-family: Vanguard, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em
  }

  .md\:vanguard-heading-96 {
    font-size: 96px;
    line-height: 88px;
    font-family: Vanguard, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em
  }

  .md\:vanguard-heading-120 {
    font-size: 120px;
    line-height: 104px;
    font-family: Vanguard, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em
  }

  .md\:vanguard-heading-160 {
    font-size: 160px;
    line-height: 144px;
    font-family: Vanguard, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em
  }

  .md\:ivar-body-16 {
    font-size: 16px;
    line-height: 20px;
    font-family: Ivar, serif;
    font-weight: 400
  }

  .md\:ivar-body-20 {
    font-size: 20px;
    line-height: 24px;
    font-family: Ivar, serif;
    font-weight: 400
  }

  .md\:ivar-body-24 {
    font-size: 24px;
    line-height: 24px;
    font-family: Ivar, serif;
    font-weight: 400
  }

  .md\:ivar-body-32 {
    font-size: 32px;
    line-height: 32px;
    font-family: Ivar, serif;
    font-weight: 400
  }

  .md\:ivar-body-48 {
    font-size: 48px;
    line-height: 48px;
    font-family: Ivar, serif;
    font-weight: 400
  }

  .md\:ivar-body-64 {
    font-size: 64px;
    line-height: 64px;
    font-family: Ivar, serif;
    font-weight: 400
  }

  .md\:suisse-body-12 {
    font-size: 12px;
    line-height: 16px;
    font-family: Suisse Intl, sans-serif;
    font-weight: 400
  }

  .md\:suisse-body-14 {
    font-size: 14px;
    line-height: 18px;
    font-family: Suisse Intl, sans-serif;
    font-weight: 400
  }

  .md\:suisse-body-16 {
    font-size: 16px;
    line-height: 20px;
    font-family: Suisse Intl, sans-serif;
    font-weight: 400
  }

  .md\:suisse-body-20 {
    font-size: 20px;
    line-height: 24px;
    font-family: Suisse Intl, sans-serif;
    font-weight: 400
  }

  .md\:suisse-body-24 {
    font-size: 24px;
    line-height: 32px;
    font-family: Suisse Intl, sans-serif;
    font-weight: 400
  }

  .md\:suisse-body-32 {
    font-size: 32px;
    line-height: 32px;
    font-family: Suisse Intl, sans-serif;
    font-weight: 400
  }

  .md\:suisse-body-40 {
    font-size: 40px;
    line-height: 40px;
    font-family: Suisse Intl, sans-serif;
    font-weight: 400
  }

  .md\:suisse-body-48 {
    font-size: 48px;
    line-height: 48px;
    font-family: Suisse Intl, sans-serif;
    font-weight: 400
  }

  .md\:suisse-body-64 {
    font-size: 64px;
    line-height: 64px;
    font-family: Suisse Intl, sans-serif;
    font-weight: 400
  }

  .md\:suisse-btn-10 {
    font-size: 10px;
    line-height: 10px;
    display: inline;
    border-bottom-width: 1px;
    --tw-border-opacity: 1;
    border-bottom-color: rgb(168 128 79 / var(--tw-border-opacity));
    padding-bottom: 0.125rem;
    font-family: Suisse Intl, sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1)
  }

  .md\:suisse-btn-10:hover {
    --tw-border-opacity: 1;
    border-bottom-color: rgb(255 255 255 / var(--tw-border-opacity));
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }

  .md\:suisse-btn-12 {
    font-size: 12px;
    line-height: 12px;
    display: inline;
    border-bottom-width: 1px;
    --tw-border-opacity: 1;
    border-bottom-color: rgb(168 128 79 / var(--tw-border-opacity));
    padding-bottom: 0.125rem;
    font-family: Suisse Intl, sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1)
  }

  .md\:suisse-btn-12:hover {
    --tw-border-opacity: 1;
    border-bottom-color: rgb(255 255 255 / var(--tw-border-opacity));
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }

  .md\:suisse-btn-16 {
    font-size: 16px;
    line-height: 16px;
    display: inline;
    border-bottom-width: 1px;
    --tw-border-opacity: 1;
    border-bottom-color: rgb(168 128 79 / var(--tw-border-opacity));
    padding-bottom: 0.125rem;
    font-family: Suisse Intl, sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1)
  }

  .md\:suisse-btn-16:hover {
    --tw-border-opacity: 1;
    border-bottom-color: rgb(255 255 255 / var(--tw-border-opacity));
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }

  .md\:hero-sans-32 {
    font-size: 31px;
    line-height: 32px;
    font-family: Suisse Intl, sans-serif;
    font-weight: 400
  }

  .md\:hero-serif-32 {
    font-size: 32px;
    line-height: 32px;
    font-family: Ivar, serif;
    font-weight: 400;
    font-style: italic
  }

  .md\:prose-em\:ivar-body-32 :is(:where(em):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    font-size: 32px;
    line-height: 32px;
    font-family: Ivar, serif;
    font-weight: 400
  }

  .md\:prose-em\:ivar-body-64 :is(:where(em):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    font-size: 64px;
    line-height: 64px;
    font-family: Ivar, serif;
    font-weight: 400
  }
}

@media (min-width: 1024px) {
  .lg\:bastion-heading-64 {
    font-size: 64px;
    line-height: 56px;
    letter-spacing: -2px;
    font-family: Bastion, sans-serif;
    font-weight: 700;
    text-transform: uppercase
  }

  .lg\:bastion-heading-120 {
    font-size: 120px;
    line-height: 112px;
    letter-spacing: -2px;
    font-family: Bastion, sans-serif;
    font-weight: 700;
    text-transform: uppercase
  }

  .lg\:bastion-heading-160 {
    font-size: 160px;
    line-height: 136px;
    letter-spacing: -2px;
    font-family: Bastion, sans-serif;
    font-weight: 700;
    text-transform: uppercase
  }

  .lg\:suisse-body-20 {
    font-size: 20px;
    line-height: 24px;
    font-family: Suisse Intl, sans-serif;
    font-weight: 400
  }

  .lg\:suisse-body-32 {
    font-size: 32px;
    line-height: 32px;
    font-family: Suisse Intl, sans-serif;
    font-weight: 400
  }

  .lg\:suisse-body-40 {
    font-size: 40px;
    line-height: 40px;
    font-family: Suisse Intl, sans-serif;
    font-weight: 400
  }

  .lg\:suisse-body-64 {
    font-size: 64px;
    line-height: 64px;
    font-family: Suisse Intl, sans-serif;
    font-weight: 400
  }
}

@media (min-width: 1280px) {
  .xl\:bastion-heading-80 {
    font-size: 80px;
    line-height: 72px;
    letter-spacing: -2px;
    font-family: Bastion, sans-serif;
    font-weight: 700;
    text-transform: uppercase
  }

  .xl\:vanguard-heading-96 {
    font-size: 96px;
    line-height: 88px;
    font-family: Vanguard, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em
  }

  .xl\:suisse-body-20 {
    font-size: 20px;
    line-height: 24px;
    font-family: Suisse Intl, sans-serif;
    font-weight: 400
  }

  .xl\:suisse-body-24 {
    font-size: 24px;
    line-height: 32px;
    font-family: Suisse Intl, sans-serif;
    font-weight: 400
  }
}

.last\:pb-0:last-child {
  padding-bottom: 0px;
}

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

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

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

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

.prose-a\:text-primary :is(:where(a):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
  --tw-text-opacity: 1;
  color: rgb(168 128 79 / var(--tw-text-opacity));
}

@media (min-width: 640px) {
  .sm\:order-1 {
    order: 1;
  }

  .sm\:order-2 {
    order: 2;
  }

  .sm\:order-3 {
    order: 3;
  }

  .sm\:order-4 {
    order: 4;
  }

  .sm\:order-5 {
    order: 5;
  }

  .sm\:order-6 {
    order: 6;
  }

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

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

  .sm\:mt-40 {
    margin-top: 10rem;
  }

  .sm\:block {
    display: block;
  }

  .sm\:grid {
    display: grid;
  }

  .sm\:hidden {
    display: none;
  }

  .sm\:w-16 {
    width: 4rem;
  }

  .sm\:w-auto {
    width: auto;
  }

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

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

  .sm\:justify-start {
    justify-content: flex-start;
  }

  .sm\:gap-x-6 {
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

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

  .sm\:self-end {
    align-self: flex-end;
  }

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

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

@media (min-width: 768px) {
  .md\:absolute {
    position: absolute;
  }

  .md\:-bottom-\[96px\] {
    bottom: -96px;
  }

  .md\:-left-12 {
    left: -3rem;
  }

  .md\:bottom-0 {
    bottom: 0px;
  }

  .md\:bottom-12 {
    bottom: 3rem;
  }

  .md\:bottom-16 {
    bottom: 4rem;
  }

  .md\:left-0 {
    left: 0px;
  }

  .md\:left-12 {
    left: 3rem;
  }

  .md\:right-12 {
    right: 3rem;
  }

  .md\:right-6 {
    right: 1.5rem;
  }

  .md\:right-auto {
    right: auto;
  }

  .md\:top-12 {
    top: 3rem;
  }

  .md\:order-1 {
    order: 1;
  }

  .md\:order-2 {
    order: 2;
  }

  .md\:order-3 {
    order: 3;
  }

  .md\:order-4 {
    order: 4;
  }

  .md\:order-none {
    order: 0;
  }

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

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

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

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

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

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

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

  .md\:col-start-1 {
    grid-column-start: 1;
  }

  .md\:col-start-5 {
    grid-column-start: 5;
  }

  .md\:col-start-6 {
    grid-column-start: 6;
  }

  .md\:col-start-8 {
    grid-column-start: 8;
  }

  .md\:-mx-12 {
    margin-left: -3rem;
    margin-right: -3rem;
  }

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

  .md\:mx-12 {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .md\:my-14 {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .md\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .md\:-ml-12 {
    margin-left: -3rem;
  }

  .md\:-ml-6 {
    margin-left: -1.5rem;
  }

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

  .md\:mb-40 {
    margin-bottom: 10rem;
  }

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

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

  .md\:mb-60 {
    margin-bottom: 15rem;
  }

  .md\:ml-12 {
    margin-left: 3rem;
  }

  .md\:mr-0 {
    margin-right: 0px;
  }

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

  .md\:mt-60 {
    margin-top: 15rem;
  }

  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:grid {
    display: grid;
  }

  .md\:hidden {
    display: none;
  }

  .md\:h-\[192px\] {
    height: 192px;
  }

  .md\:h-\[200px\] {
    height: 200px;
  }

  .md\:h-\[280px\] {
    height: 280px;
  }

  .md\:h-\[calc\(100vh_-_96px\)\] {
    height: calc(100vh - 96px);
  }

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

  .md\:w-24 {
    width: 6rem;
  }

  .md\:w-37\.5 {
    width: 150px;
  }

  .md\:w-\[468px\] {
    width: 468px;
  }

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

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

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

  .md\:max-w-\[468px\] {
    max-width: 468px;
  }

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

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

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

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

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

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

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

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

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

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

  .md\:gap-8 {
    gap: 2rem;
  }

  .md\:gap-x-0 {
    -moz-column-gap: 0px;
         column-gap: 0px;
  }

  .md\:gap-x-16 {
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .md\:gap-x-6 {
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .md\:gap-x-8 {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

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

  .md\:gap-y-12 {
    row-gap: 3rem;
  }

  .md\:gap-y-16 {
    row-gap: 4rem;
  }

  .md\:gap-y-2 {
    row-gap: 0.5rem;
  }

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

  .md\:gap-y-36 {
    row-gap: 9rem;
  }

  .md\:gap-y-4 {
    row-gap: 1rem;
  }

  .md\:gap-y-40 {
    row-gap: 10rem;
  }

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

  .md\:gap-y-60 {
    row-gap: 15rem;
  }

  .md\:gap-y-8 {
    row-gap: 2rem;
  }

  .md\:bg-transparent {
    background-color: transparent;
  }

  .md\:bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
  }

  .md\:from-black\/60 {
    --tw-gradient-from: rgb(0 0 0 / 0.6) 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);
  }

  .md\:to-white\/0 {
    --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
  }

  .md\:p-12 {
    padding: 3rem;
  }

  .md\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

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

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

  .md\:py-60 {
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .md\:py-70 {
    padding-top: 17.5rem;
    padding-bottom: 17.5rem;
  }

  .md\:pb-12 {
    padding-bottom: 3rem;
  }

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

  .md\:pb-28 {
    padding-bottom: 7rem;
  }

  .md\:pb-30 {
    padding-bottom: 7.5rem;
  }

  .md\:pb-32 {
    padding-bottom: 8rem;
  }

  .md\:pb-40 {
    padding-bottom: 10rem;
  }

  .md\:pb-60 {
    padding-bottom: 15rem;
  }

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

  .md\:pl-0 {
    padding-left: 0px;
  }

  .md\:pl-12 {
    padding-left: 3rem;
  }

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

  .md\:pr-0 {
    padding-right: 0px;
  }

  .md\:pr-\[25\%\] {
    padding-right: 25%;
  }

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

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

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

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

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

  .md\:pt-60 {
    padding-top: 15rem;
  }

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

  .md\:pt-\[12\.5rem\] {
    padding-top: 12.5rem;
  }

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

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

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

  .md\:last\:col-start-5:last-child {
    grid-column-start: 5;
  }
}

@media (min-width: 1024px) {
  .lg\:order-none {
    order: 0;
  }

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

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

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

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

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

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

  .lg\:col-start-5 {
    grid-column-start: 5;
  }

  .lg\:col-start-6 {
    grid-column-start: 6;
  }

  .lg\:mr-12 {
    margin-right: 3rem;
  }

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

  .lg\:mt-60 {
    margin-top: 15rem;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:h-\[240px\] {
    height: 240px;
  }

  .lg\:w-17\.5 {
    width: 70px;
  }

  .lg\:w-\[280px\] {
    width: 280px;
  }

  .lg\:max-w-\[360px\] {
    max-width: 360px;
  }

  .lg\:max-w-\[840px\] {
    max-width: 840px;
  }

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

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

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

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

  .lg\:gap-x-8 {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

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

  .lg\:gap-y-12 {
    row-gap: 3rem;
  }

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

  .lg\:gap-y-24 {
    row-gap: 6rem;
  }

  .lg\:gap-y-40 {
    row-gap: 10rem;
  }

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

  .lg\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

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

  .lg\:pb-60 {
    padding-bottom: 15rem;
  }

  .lg\:pr-0 {
    padding-right: 0px;
  }

  .lg\:pr-12 {
    padding-right: 3rem;
  }

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

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

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

  .lg\:last\:pb-0:last-child {
    padding-bottom: 0px;
  }
}

@media (min-width: 1280px) {
  .xl\:sticky {
    position: sticky;
  }

  .xl\:-right-12 {
    right: -3rem;
  }

  .xl\:bottom-0 {
    bottom: 0px;
  }

  .xl\:left-auto {
    left: auto;
  }

  .xl\:top-\[3\.1rem\] {
    top: 3.1rem;
  }

  .xl\:top-auto {
    top: auto;
  }

  .xl\:order-1 {
    order: 1;
  }

  .xl\:order-2 {
    order: 2;
  }

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

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

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

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

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

  .xl\:col-start-3 {
    grid-column-start: 3;
  }

  .xl\:col-start-4 {
    grid-column-start: 4;
  }

  .xl\:col-start-5 {
    grid-column-start: 5;
  }

  .xl\:col-start-6 {
    grid-column-start: 6;
  }

  .xl\:col-start-7 {
    grid-column-start: 7;
  }

  .xl\:col-end-9 {
    grid-column-end: 9;
  }

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

  .xl\:mt-\[240px\] {
    margin-top: 240px;
  }

  .xl\:flex {
    display: flex;
  }

  .xl\:h-\[240px\] {
    height: 240px;
  }

  .xl\:w-37\.5 {
    width: 150px;
  }

  .xl\:w-auto {
    width: auto;
  }

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

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

  .xl\:gap-x-8 {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

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

  .xl\:gap-y-16 {
    row-gap: 4rem;
  }

  .xl\:gap-y-60 {
    row-gap: 15rem;
  }

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

  .xl\:pr-0 {
    padding-right: 0px;
  }

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

  .xl\:pt-60 {
    padding-top: 15rem;
  }
}

@media (min-width: 1536px) {
  .\32xl\:col-span-1 {
    grid-column: span 1 / span 1;
  }

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


/** SA */
.dealer_info {
	display: flex;
	color: #000 !important;
	font-size: 1rem;
	text-decoration: none;
}

.dealer_info .dealer_logo {
	flex: 60px;
	background-color: #000;
  border-radius: 5px;
  margin-right: 8px;
  width: 94px;
	height: 94px;
  position: relative !important;
}

.dealer_info .dealer_details {
  max-width: 430px;
}

.dealer_info .dealer_logo img {
	top: 0;
  bottom: 0;
  position: absolute;
  max-height: 82%;
  max-width: 82%;
  width: auto;
  height: auto;
  left: 0;
  right: 0;
  margin: auto;
}

.dealer_info .dealer_name {
	font-weight: bold;
	margin-bottom: 5px !important;
}

.dealer_info p {
	margin: 2px 0;
}

.dealer_info a {
	color: #000 !important;
	text-decoration: none;
}

.dealer_info a {
	color: #000 !important;
	text-decoration: underline;
}