@charset "UTF-8";
/**
 * This injects Tailwind's base styles, which is a combination of
 * Normalize.css and some additional base styles.
 */
@tailwind base;
/**
 * Import npm dependencies
 *
 * Prefix your imports with `~` to grab from node_modules/
 * @see https://github.com/webpack-contrib/sass-loader#imports
 */
/** Import variables */
/*! tailwindcss v2.2.17 | MIT License | https://tailwindcss.com
 */
/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
/*
Document
========
*/
/**
Use a better box model (opinionated).
*/
*,
::before,
::after {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
/**
Use a more readable tab size (opinionated).
*/
html {
	-moz-tab-size: 4;
	-o-tab-size: 4;
	   tab-size: 4;
}
/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
*/
html {
	line-height: 1.15; /* 1 */
	-webkit-text-size-adjust: 100%; /* 2 */
}
/*
Sections
========
*/
/**
Remove the margin in all browsers.
*/
body {
	margin: 0;
}
/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/
body {
	font-family:
		system-ui,
		-apple-system, /* Firefox supports this but not yet `system-ui` */
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
}
/*
Grouping content
================
*/
/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/
hr {
	height: 0; /* 1 */
	color: inherit; /* 2 */
}
/*
Text-level semantics
====================
*/
/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr[title] {
	-webkit-text-decoration: underline dotted;
	        text-decoration: underline dotted;
}
/**
Add the correct font weight in Edge and Safari.
*/
b,
strong {
	font-weight: bolder;
}
/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
	font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		monospace; /* 1 */
	font-size: 1em; /* 2 */
}
/**
Add the correct font size in all browsers.
*/
small {
	font-size: 80%;
}
/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}
/*
Tabular data
============
*/
/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/
table {
	text-indent: 0; /* 1 */
	border-color: inherit; /* 2 */
}
/*
Forms
=====
*/
/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
}
/**
Remove the inheritance of text transform in Edge and Firefox.
1. Remove the inheritance of text transform in Firefox.
*/
button,
select { /* 1 */
	text-transform: none;
}
/**
Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type='button'],
[type='reset'],
[type='submit'] {
	-webkit-appearance: button;
}
/**
Remove the inner border and padding in Firefox.
*/
::-moz-focus-inner {
	border-style: none;
	padding: 0;
}
/**
Restore the focus styles unset by the previous rule.
*/
:-moz-focusring {
	outline: 1px dotted ButtonText;
}
/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/
:-moz-ui-invalid {
	box-shadow: none;
}
/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/
legend {
	padding: 0;
}
/**
Add the correct vertical alignment in Chrome and Firefox.
*/
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 */
}
/*
Interactive
===========
*/
/*
Add the correct display in Chrome and Safari.
*/
summary {
	display: list-item;
}
/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */
/**
 * Removes the default spacing and border for appropriate elements.
 */
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
button {
  background-color: transparent;
  background-image: none;
}
fieldset {
  margin: 0;
  padding: 0;
}
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
/**
 * Tailwind custom reset styles
 */
/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */
html {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 1 */
  line-height: 1.5; /* 2 */
}
/**
 * Inherit font-family and line-height from `html` so users can set them as
 * a class directly on the `html` element.
 */
body {
  font-family: inherit;
  line-height: inherit;
}
/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}
/*
 * Ensure horizontal rules are visible by default
 */
hr {
  border-top-width: 1px;
}
/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */
img {
  border-style: solid;
}
textarea {
  resize: vertical;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  opacity: 1;
  color: #212121;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  color: #212121;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1;
  color: #212121;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  opacity: 1;
  color: #212121;
}
input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #212121;
}
button,
[role="button"] {
  cursor: pointer;
}
/**
 * Override legacy focus reset from Normalize with modern Firefox focus styles.
 *
 * This is actually an improvement over the new defaults in Firefox in our testing,
 * as it triggers the better focus styles even for links, which still use a dotted
 * outline in Firefox by default.
 */
:-moz-focusring {
	outline: auto;
}
table {
  border-collapse: collapse;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/**
 * Reset links to optimize for opt-in styling instead of
 * opt-out.
 */
a {
  color: inherit;
  text-decoration: inherit;
}
/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */
button,
input,
optgroup,
select,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}
/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */
pre,
code,
kbd,
samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
/**
 * 1. Make replaced elements `display: block` by default as that's
 *    the behavior you want almost all of the time. Inspired by
 *    CSS Remedy, with `svg` added as well.
 *
 *    https://github.com/mozdevs/cssremedy/issues/14
 * 
 * 2. Add `vertical-align: middle` to align replaced elements more
 *    sensibly by default when overriding `display` by adding a
 *    utility like `inline`.
 *
 *    This can trigger a poorly considered linting error in some
 *    tools but is included by design.
 * 
 *    https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
 */
img,
svg,
video,
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;
}
/**
 * Ensure the default browser behavior of the `hidden` attribute.
 */
[hidden] {
  display: none;
}
*, ::before, ::after{
	--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-transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
	--tw-border-opacity: 1;
	border-color: rgba(247, 245, 245, var(--tw-border-opacity));
	--tw-ring-offset-shadow: 0 0 #0000;
	--tw-ring-shadow: 0 0 #0000;
	--tw-shadow: 0 0 #0000;
	--tw-blur: var(--tw-empty,/*!*/ /*!*/);
	--tw-brightness: var(--tw-empty,/*!*/ /*!*/);
	--tw-contrast: var(--tw-empty,/*!*/ /*!*/);
	--tw-grayscale: var(--tw-empty,/*!*/ /*!*/);
	--tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/);
	--tw-invert: var(--tw-empty,/*!*/ /*!*/);
	--tw-saturate: var(--tw-empty,/*!*/ /*!*/);
	--tw-sepia: var(--tw-empty,/*!*/ /*!*/);
	--tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/);
	--tw-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);
}
@font-face {
    font-family: 'Maison';
    src: url("/wp-content/themes/roseville-2021/resources/assets/fonts/Maison/Maison-Bold.woff2") format("woff2"), url("/wp-content/themes/roseville-2021/resources/assets/fonts/Maison/Maison-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap; }
@font-face {
    font-family: 'Maison';
    src: url("/wp-content/themes/roseville-2021/resources/assets/fonts/Maison/Maison-BoldOblique.woff2") format("woff2"), url("/wp-content/themes/roseville-2021/resources/assets/fonts/Maison/Maison-BoldOblique.woff") format("woff");
    font-weight: 700;
    font-style: italic;
    font-display: swap; }
@font-face {
    font-family: 'Maison Demi';
    src: url("/wp-content/themes/roseville-2021/resources/assets/fonts/Maison/Maison-Demi.woff2") format("woff2"), url("/wp-content/themes/roseville-2021/resources/assets/fonts/Maison/Maison-Demi.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap; }
@font-face {
    font-family: 'Maison';
    src: url("/wp-content/themes/roseville-2021/resources/assets/fonts/Maison/Maison-DemiOblique.woff2") format("woff2"), url("/wp-content/themes/roseville-2021/resources/assets/fonts/Maison/Maison-DemiOblique.woff") format("woff");
    font-weight: 600;
    font-style: italic;
    font-display: swap; }
@font-face {
    font-family: 'Maison';
    src: url("/wp-content/themes/roseville-2021/resources/assets/fonts/Maison/Maison-Light.woff2") format("woff2"), url("/wp-content/themes/roseville-2021/resources/assets/fonts/Maison/Maison-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap; }
@font-face {
    font-family: 'Maison';
    src: url("/wp-content/themes/roseville-2021/resources/assets/fonts/Maison/Maison-LightOblique.woff2") format("woff2"), url("/wp-content/themes/roseville-2021/resources/assets/fonts/Maison/Maison-LightOblique.woff") format("woff");
    font-weight: 300;
    font-style: italic;
    font-display: swap; }
@font-face {
    font-family: 'Maison';
    src: url("/wp-content/themes/roseville-2021/resources/assets/fonts/Maison/Maison-Medium.woff2") format("woff2"), url("/wp-content/themes/roseville-2021/resources/assets/fonts/Maison/Maison-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap; }
@font-face {
    font-family: 'Maison';
    src: url("/wp-content/themes/roseville-2021/resources/assets/fonts/Maison/Maison-MediumOblique.woff2") format("woff2"), url("/wp-content/themes/roseville-2021/resources/assets/fonts/Maison/Maison-MediumOblique.woff") format("woff");
    font-weight: 500;
    font-style: italic;
    font-display: swap; }
@font-face {
    font-family: 'Maison';
    src: url("/wp-content/themes/roseville-2021/resources/assets/fonts/Maison/Maison-Regular.woff2") format("woff2"), url("/wp-content/themes/roseville-2021/resources/assets/fonts/Maison/Maison-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap; }
@font-face {
    font-family: 'Maison';
    src: url("/wp-content/themes/roseville-2021/resources/assets/fonts/Maison/Maison-RegularOblique.woff2") format("woff2"), url("/wp-content/themes/roseville-2021/resources/assets/fonts/Maison/Maison-RegularOblique.woff") format("woff");
    font-weight: 400;
    font-style: italic;
    font-display: swap; }
@font-face {
    font-family: 'Reckless Neue';
    src: url("/wp-content/themes/roseville-2021/resources/assets/fonts/Reckless-Neue/RecklessNeue-Regular.woff2") format("woff2"), url("/wp-content/themes/roseville-2021/resources/assets/fonts/Reckless-Neue/RecklessNeue-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap; }
@font-face {
    font-family: 'Reckless Neue';
    src: url("/wp-content/themes/roseville-2021/resources/assets/fonts/Reckless-Neue/RecklessNeue-RegularItalic.woff2") format("woff2"), url("/wp-content/themes/roseville-2021/resources/assets/fonts/Reckless-Neue/RecklessNeue-RegularItalic.woff") format("woff");
    font-weight: 400;
    font-style: italic;
    font-display: swap; }
@font-face {
    font-family: 'Reckless Neue';
    src: url("/wp-content/themes/roseville-2021/resources/assets/fonts/Reckless-Neue/RecklessNeue-Medium.woff2") format("woff2"), url("/wp-content/themes/roseville-2021/resources/assets/fonts/Reckless-Neue/RecklessNeue-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap; }
@font-face {
    font-family: 'Reckless Neue';
    src: url("/wp-content/themes/roseville-2021/resources/assets/fonts/Reckless-Neue/RecklessNeue-MediumItalic.woff2") format("woff2"), url("/wp-content/themes/roseville-2021/resources/assets/fonts/Reckless-Neue/RecklessNeue-MediumItalic.woff") format("woff");
    font-weight: 500;
    font-style: italic;
    font-display: swap; }
@font-face {
    font-family: 'Reckless Neue';
    src: url("/wp-content/themes/roseville-2021/resources/assets/fonts/Reckless-Neue/RecklessNeue-SemiBold.woff2") format("woff2"), url("/wp-content/themes/roseville-2021/resources/assets/fonts/Reckless-Neue/RecklessNeue-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap; }
@font-face {
    font-family: 'Reckless Neue';
    src: url("/wp-content/themes/roseville-2021/resources/assets/fonts/Reckless-Neue/RecklessNeue-SemiBoldItalic.woff2") format("woff2"), url("/wp-content/themes/roseville-2021/resources/assets/fonts/Reckless-Neue/RecklessNeue-SemiBoldItalic.woff") format("woff");
    font-weight: 600;
    font-style: italic;
    font-display: swap; }
@font-face {
    font-family: 'Reckless Neue';
    src: url("/wp-content/themes/roseville-2021/resources/assets/fonts/Reckless-Neue/RecklessNeue-SemiBold.woff2") format("woff2"), url("/wp-content/themes/roseville-2021/resources/assets/fonts/Reckless-Neue/RecklessNeue-SemiBold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap; }
@font-face {
    font-family: 'Reckless Neue';
    src: url("/wp-content/themes/roseville-2021/resources/assets/fonts/Reckless-Neue/RecklessNeue-Bold.woff2") format("woff2"), url("/wp-content/themes/roseville-2021/resources/assets/fonts/Reckless-Neue/RecklessNeue-Bold.woff") format("woff");
    font-weight: 700;
    font-style: italic;
    font-display: swap; }

/* line 2, resources/assets/styles/common/_forminator.scss */
.forminator-design--flat {
  /* .forminator-label {
			@apply text-fake-black font-reckless text-lg md:text-xl lg:text-2xl leading-6 lg:leading-8 font-medium !important;
		} */ }
  /* line 6, resources/assets/styles/common/_forminator.scss */
  .forminator-design--flat .forminator-label, .forminator-design--flat .forminator-checkbox, .forminator-design--flat .forminator-radio, .forminator-design--flat .forminator-response-message p{
	font-family: Maison, sans-serif !important;
	font-size: 0.8125rem !important;
	font-weight: 400 !important;
	line-height: 1.25rem !important;
	--tw-text-opacity: 1 !important;
	color: rgba(35, 33, 33, var(--tw-text-opacity)) !important;
}
  @media (min-width: 768px){
	.forminator-design--flat .forminator-label, .forminator-design--flat .forminator-checkbox, .forminator-design--flat .forminator-radio, .forminator-design--flat .forminator-response-message p{
		font-size: 1rem !important;
	}
	.forminator-design--flat .forminator-label, .forminator-design--flat .forminator-checkbox, .forminator-design--flat .forminator-radio, .forminator-design--flat .forminator-response-message p{
		line-height: 1.75rem !important;
	}
}
  /* line 12, resources/assets/styles/common/_forminator.scss */
  .forminator-design--flat .forminator-label{
	font-weight: 700 !important;
}
  /* line 15, resources/assets/styles/common/_forminator.scss */
  .forminator-design--flat .forminator-checkbox-box{
	--tw-text-opacity: 1 !important;
	color: rgba(91, 21, 46, var(--tw-text-opacity)) !important;
}
  /* line 18, resources/assets/styles/common/_forminator.scss */
  .forminator-design--flat .forminator-radio-bullet::before{
	content: "" !important;
	--tw-bg-opacity: 1 !important;
	background-color: rgba(91, 21, 46, var(--tw-bg-opacity)) !important;
}
  /* line 21, resources/assets/styles/common/_forminator.scss */
  .forminator-design--flat .forminator-button-submit {
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
    position: relative !important;
    display: inline-block !important;
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 220, 128, var(--tw-bg-opacity)) !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    text-align: center !important;
    font-family: Maison Demi, sans-serif !important;
    font-size: .875rem !important;
    font-weight: 700 !important;
    line-height: 1.5rem !important;
    --tw-text-opacity: 1 !important;
    color: rgba(91, 21, 46, var(--tw-text-opacity)) !important;
    -webkit-transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter !important;
    transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter !important;
    -o-transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, filter, backdrop-filter, -o-transform !important;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-box-shadow, -webkit-transform, -o-transform, -webkit-filter, -webkit-backdrop-filter !important;
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
         -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    -webkit-transition-duration: 150ms !important;
         -o-transition-duration: 150ms !important;
            transition-duration: 150ms !important;
    -webkit-transition-duration: 200ms !important;
         -o-transition-duration: 200ms !important;
            transition-duration: 200ms !important; }
  @media (min-width: 768px){
	.forminator-design--flat .forminator-button-submit{
		padding: 1rem !important;
	}
	.forminator-design--flat .forminator-button-submit{
		font-size: 1.125rem !important;
	}
	.forminator-design--flat .forminator-button-submit{
		line-height: 19px !important;
	}
}
    /* line 24, resources/assets/styles/common/_forminator.scss */
    .forminator-design--flat .forminator-button-submit:disabled, .forminator-design--flat .forminator-button-submit[disabled]{
	pointer-events: none !important;
	opacity: 0.3 !important;
}
    /* line 28, resources/assets/styles/common/_forminator.scss */
    .forminator-design--flat .forminator-button-submit:hover, .forminator-design--flat .forminator-button-submit:focus{
	--tw-bg-opacity: 1 !important;
	background-color: rgba(166, 196, 231, var(--tw-bg-opacity)) !important;
	opacity: 1 !important;
	--tw-shadow: 0 0 #0000 !important;
	-webkit-box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
	        box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
	outline: 2px solid transparent !important;
	outline-offset: 2px !important;
}

/* line 1, resources/assets/styles/common/_global.scss */
:root {
  --screen-height: 100vh;
  --screen-height-video: calc(100vh - 7.75rem); }

/* line 6, resources/assets/styles/common/_global.scss */
body{
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  width: 100%;
  font-family: Maison, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgba(35, 33, 33, var(--tw-text-opacity));
}

/* line 16, resources/assets/styles/common/_global.scss */
html {
  scroll-behavior: smooth;
  height: -webkit-fill-available;
  width: 100%; }

/* line 23, resources/assets/styles/common/_global.scss */
img{
	pointer-events: none;
}

/* Define general headings */
/* line 28, resources/assets/styles/common/_global.scss */
h1 {
  font-weight: 600;
  font-family: Reckless Neue, serif;
  font-size: 2.25rem;
  line-height: 2.5rem;
  --tw-text-opacity: 1;
  color: rgba(35, 33, 33, var(--tw-text-opacity)); }

/* line 33, resources/assets/styles/common/_global.scss */
h2{
	font-size: 1.5rem;
	line-height: 2rem;
}
  /* line 35, resources/assets/styles/common/_global.scss */
  h2.first-heading{
	font-family: Maison Demi, sans-serif;
	font-weight: 600;
}
  /* line 39, resources/assets/styles/common/_global.scss */
  h2.second-heading{
	font-family: Reckless Neue, serif;
	font-weight: 500;
}

/* line 44, resources/assets/styles/common/_global.scss */
h3{
	font-family: Maison Demi, sans-serif;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.5rem;
}

/* line 48, resources/assets/styles/common/_global.scss */
h4{
	font-family: Reckless Neue, serif;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.5rem;
}

/* line 54, resources/assets/styles/common/_global.scss */
p.large, span.large{
	font-family: Maison, sans-serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5rem;
}

/* line 58, resources/assets/styles/common/_global.scss */
p.small, span.small{
	font-family: Maison, sans-serif;
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.25rem;
}

/* line 63, resources/assets/styles/common/_global.scss */
.quote{
	font-family: Reckless Neue, serif;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.5rem;
	--tw-text-opacity: 1;
	color: rgba(166, 196, 231, var(--tw-text-opacity));
}

/* line 67, resources/assets/styles/common/_global.scss */
a{
	-webkit-transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter;
	transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter;
	-o-transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, filter, backdrop-filter, -o-transform;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-box-shadow, -webkit-transform, -o-transform, -webkit-filter, -webkit-backdrop-filter;
	-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	     -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-transition-duration: 150ms;
	     -o-transition-duration: 150ms;
	        transition-duration: 150ms;
	-webkit-transition-duration: 200ms;
	     -o-transition-duration: 200ms;
	        transition-duration: 200ms;
}
  /* line 70, resources/assets/styles/common/_global.scss */
  a:hover{
	opacity: 0.6;
}

/* line 75, resources/assets/styles/common/_global.scss */
a,
label,
button {
  -webkit-tap-highlight-color: transparent;
  outline: 2px solid transparent;
  outline-offset: 2px; }

@media (min-width: 768px) {
  /* line 83, resources/assets/styles/common/_global.scss */
  h1{
		font-size: 2.5rem;
	}
  h1{
		line-height: 2.625rem;
	}
  /* line 87, resources/assets/styles/common/_global.scss */
  h2{
		font-size: 1.75rem;
	}
  h2{
		line-height: 2rem;
	}
  /* line 91, resources/assets/styles/common/_global.scss */
  h3{
		font-size: 1.25rem;
	}
  h3{
		line-height: 1.5rem;
	}
  /* line 95, resources/assets/styles/common/_global.scss */
  h4{
		font-size: 1.25rem;
	}
  h4{
		line-height: 1.5rem;
	}
  /* line 101, resources/assets/styles/common/_global.scss */
  p.large, span.large{
		font-size: 1.125rem;
	}
  p.large, span.large{
		line-height: 1.625rem;
	}
  /* line 105, resources/assets/styles/common/_global.scss */
  p.small, span.small{
		font-size: .875rem;
	}
  p.small, span.small{
		line-height: 22px;
	}
  /* line 110, resources/assets/styles/common/_global.scss */
  .quote{
		font-size: 1.25rem;
	}
  .quote{
		line-height: 1.5rem;
	} }

@media (min-width: 1024px) {
  /* line 116, resources/assets/styles/common/_global.scss */
  h1{
		font-size: 3.5rem;
	}
  h1{
		line-height: 3.5rem;
	}
  /* line 120, resources/assets/styles/common/_global.scss */
  h2{
		font-size: 2.25rem;
	}
  h2{
		line-height: 3rem;
	}
  /* line 124, resources/assets/styles/common/_global.scss */
  h3{
		font-size: 1.5rem;
	}
  h3{
		line-height: 2rem;
	}
  /* line 128, resources/assets/styles/common/_global.scss */
  h4{
		font-size: 1.5rem;
	}
  h4{
		line-height: 2rem;
	}
  /* line 134, resources/assets/styles/common/_global.scss */
  p.large, span.large{
		font-size: 1.25rem;
	}
  p.large, span.large{
		line-height: 2rem;
	}
  /* line 138, resources/assets/styles/common/_global.scss */
  p.small, span.small{
		font-size: 1rem;
	}
  p.small, span.small{
		line-height: 1.75rem;
	}
  /* line 143, resources/assets/styles/common/_global.scss */
  .quote{
		font-size: 1.5rem;
	}
  .quote{
		line-height: 2rem;
	} }

/* line 149, resources/assets/styles/common/_global.scss */
.remove_padding--top{
	padding-top: 0px !important;
}

/* line 153, resources/assets/styles/common/_global.scss */
.remove_padding--bottom{
	padding-bottom: 0px !important;
}

/* line 158, resources/assets/styles/common/_global.scss */
.container {
  max-width: 90rem !important;
  padding-left: 22px;
  padding-right: 22px; }
@media (min-width: 768px){
	.container{
		padding-left: 34px;
		padding-right: 34px;
	}
}

/* line 163, resources/assets/styles/common/_global.scss */
.fade-in{
	-webkit-transition-delay: 500ms;
	     -o-transition-delay: 500ms;
	        transition-delay: 500ms;
}

/* line 1, resources/assets/styles/common/_theme.scss */
.category-theme--publication {
  --category-color: #f6dc80; }

/* line 5, resources/assets/styles/common/_theme.scss */
.category-theme--news,
.category-theme--event {
  --category-color: #a6c4e7; }

/* line 3, resources/assets/styles/common/_search.scss */
.search-results form.search-form, .search-no-results form.search-form{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	max-width: 437px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
  /* line 6, resources/assets/styles/common/_search.scss */
  .search-results form.search-form label, .search-no-results form.search-form label{
	position: relative;
	width: 100%;
}
    /* line 9, resources/assets/styles/common/_search.scss */
    .search-results form.search-form label:after,
    .search-no-results form.search-form label:after {
      content: '';
      background: url("/wp-content/themes/roseville-2021/resources/assets/icons/icon-search-gray.svg") no-repeat;
      position: absolute;
      top: 8px;
      right: 16px;
      height: 1.5rem;
      width: 1.5rem; }
    @media (min-width: 768px){
	.search-results form.search-form label:after, .search-no-results form.search-form label:after{
		top: 20px;
	}
}

/* line 18, resources/assets/styles/common/_search.scss */
.search-results input[type='search'], .search-no-results input[type='search']{
	height: 2.5rem;
	width: 100%;
	border-width: 2px;
	--tw-border-opacity: 1;
	border-color: rgba(151, 151, 151, var(--tw-border-opacity));
	padding-left: 17px;
	font-size: 1.25rem;
	line-height: 2rem;
	outline: 2px solid transparent;
	outline-offset: 2px;
}
@media (min-width: 768px){
	.search-results input[type='search'], .search-no-results input[type='search']{
		height: 4rem;
	}
}

/* line 22, resources/assets/styles/common/_search.scss */
.search-results input[type='submit'], .search-no-results input[type='submit']{
	display: none;
}

/* line 26, resources/assets/styles/common/_search.scss */
.search-results input[type='search']::-ms-clear,
.search-no-results input[type='search']::-ms-clear {
  display: none;
  width: 0;
  height: 0; }

/* line 31, resources/assets/styles/common/_search.scss */
.search-results input[type='search']::-ms-reveal,
.search-no-results input[type='search']::-ms-reveal {
  display: none;
  width: 0;
  height: 0; }

/* line 36, resources/assets/styles/common/_search.scss */
.search-results input[type='search']::-webkit-search-decoration,
.search-results input[type='search']::-webkit-search-cancel-button,
.search-results input[type='search']::-webkit-search-results-button,
.search-results input[type='search']::-webkit-search-results-decoration,
.search-no-results input[type='search']::-webkit-search-decoration,
.search-no-results input[type='search']::-webkit-search-cancel-button,
.search-no-results input[type='search']::-webkit-search-results-button,
.search-no-results input[type='search']::-webkit-search-results-decoration {
  display: none; }

/* line 43, resources/assets/styles/common/_search.scss */
.search-results .firstHover, .search-no-results .firstHover{
	border-left-width: 6px;
	padding-left: 1.25rem;
}

/**
 * Swiper 6.8.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: August 23, 2021
 */
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal; }

/* line 20, resources/assets/styles/common/_swiper.scss */
:root {
  --swiper-theme-color: #007aff; }

/* line 23, resources/assets/styles/common/_swiper.scss */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1; }

/* line 33, resources/assets/styles/common/_swiper.scss */
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

/* line 36, resources/assets/styles/common/_swiper.scss */
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: -o-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform, -o-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }

/* line 45, resources/assets/styles/common/_swiper.scss */
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0); }

/* line 49, resources/assets/styles/common/_swiper.scss */
.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

/* line 52, resources/assets/styles/common/_swiper.scss */
.swiper-container-multirow-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

/* line 56, resources/assets/styles/common/_swiper.scss */
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
       -o-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto; }

/* line 60, resources/assets/styles/common/_swiper.scss */
.swiper-container-pointer-events {
  -ms-touch-action: pan-y;
      touch-action: pan-y; }

/* line 63, resources/assets/styles/common/_swiper.scss */
.swiper-container-pointer-events.swiper-container-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x; }

/* line 66, resources/assets/styles/common/_swiper.scss */
.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: -o-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform, -o-transform;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden; }

/* line 74, resources/assets/styles/common/_swiper.scss */
.swiper-slide-invisible-blank {
  visibility: hidden; }

/* Auto Height */
/* line 78, resources/assets/styles/common/_swiper.scss */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto; }

/* line 82, resources/assets/styles/common/_swiper.scss */
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: height, -o-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform, -o-transform; }

/* 3D Effects */
/* line 87, resources/assets/styles/common/_swiper.scss */
.swiper-container-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px; }

/* line 90, resources/assets/styles/common/_swiper.scss */
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d; }

/* line 99, resources/assets/styles/common/_swiper.scss */
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10; }

/* line 111, resources/assets/styles/common/_swiper.scss */
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

/* line 118, resources/assets/styles/common/_swiper.scss */
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

/* line 125, resources/assets/styles/common/_swiper.scss */
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

/* line 132, resources/assets/styles/common/_swiper.scss */
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

/* CSS Mode */
/* line 140, resources/assets/styles/common/_swiper.scss */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */ }

/* line 147, resources/assets/styles/common/_swiper.scss */
.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none; }

/* line 150, resources/assets/styles/common/_swiper.scss */
.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start; }

/* line 153, resources/assets/styles/common/_swiper.scss */
.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory; }

/* line 156, resources/assets/styles/common/_swiper.scss */
.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory; }

/* line 159, resources/assets/styles/common/_swiper.scss */
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */ }

/* line 165, resources/assets/styles/common/_swiper.scss */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color)); }

/* line 179, resources/assets/styles/common/_swiper.scss */
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none; }

/* line 185, resources/assets/styles/common/_swiper.scss */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1; }

/* line 195, resources/assets/styles/common/_swiper.scss */
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto; }

/* line 200, resources/assets/styles/common/_swiper.scss */
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: 'prev'; }

/* line 204, resources/assets/styles/common/_swiper.scss */
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto; }

/* line 209, resources/assets/styles/common/_swiper.scss */
.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: 'next'; }

/* line 213, resources/assets/styles/common/_swiper.scss */
.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff; }

/* line 217, resources/assets/styles/common/_swiper.scss */
.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000; }

/* line 221, resources/assets/styles/common/_swiper.scss */
.swiper-button-lock {
  display: none; }

/* line 224, resources/assets/styles/common/_swiper.scss */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */ }

/* line 229, resources/assets/styles/common/_swiper.scss */
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10; }

/* line 236, resources/assets/styles/common/_swiper.scss */
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0; }

/* Common Styles */
/* line 240, resources/assets/styles/common/_swiper.scss */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%; }

/* Bullets */
/* line 248, resources/assets/styles/common/_swiper.scss */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0; }

/* line 252, resources/assets/styles/common/_swiper.scss */
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
       -o-transform: scale(0.33);
          transform: scale(0.33);
  position: relative; }

/* line 256, resources/assets/styles/common/_swiper.scss */
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1); }

/* line 259, resources/assets/styles/common/_swiper.scss */
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1); }

/* line 262, resources/assets/styles/common/_swiper.scss */
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
       -o-transform: scale(0.66);
          transform: scale(0.66); }

/* line 265, resources/assets/styles/common/_swiper.scss */
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
       -o-transform: scale(0.33);
          transform: scale(0.33); }

/* line 268, resources/assets/styles/common/_swiper.scss */
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
       -o-transform: scale(0.66);
          transform: scale(0.66); }

/* line 271, resources/assets/styles/common/_swiper.scss */
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
       -o-transform: scale(0.33);
          transform: scale(0.33); }

/* line 274, resources/assets/styles/common/_swiper.scss */
.swiper-pagination-bullet{
	display: inline-block;
	height: 0.5rem;
	width: 0.5rem;
	border-radius: 9999px;
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
	opacity: 0.5;
}

/* line 284, resources/assets/styles/common/_swiper.scss */
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none; }

/* line 292, resources/assets/styles/common/_swiper.scss */
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer; }

/* line 295, resources/assets/styles/common/_swiper.scss */
.swiper-pagination-bullet:only-child {
  display: none !important; }

/* line 298, resources/assets/styles/common/_swiper.scss */
.swiper-pagination-bullet-active{
	height: 0.75rem;
	width: 0.75rem;
	opacity: 1;
}

/* line 301, resources/assets/styles/common/_swiper.scss */
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0); }

/* line 306, resources/assets/styles/common/_swiper.scss */
.swiper-container-vertical
> .swiper-pagination-bullets
.swiper-pagination-bullet {
  margin: 6px 0;
  display: block; }

/* line 312, resources/assets/styles/common/_swiper.scss */
.swiper-container-vertical
> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px; }

/* line 318, resources/assets/styles/common/_swiper.scss */
.swiper-container-vertical
> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
.swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms top, 200ms -o-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform, 200ms -o-transform; }

/* line 324, resources/assets/styles/common/_swiper.scss */
.swiper-container-horizontal
> .swiper-pagination-bullets
.swiper-pagination-bullet {
  margin: 0 4px; }

/* line 329, resources/assets/styles/common/_swiper.scss */
.swiper-container-horizontal
> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap; }

/* line 335, resources/assets/styles/common/_swiper.scss */
.swiper-container-horizontal
> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
.swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms left, 200ms -o-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform, 200ms -o-transform; }

/* line 340, resources/assets/styles/common/_swiper.scss */
.swiper-container-horizontal.swiper-container-rtl
> .swiper-pagination-bullets-dynamic
.swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms right, 200ms -o-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform, 200ms -o-transform; }

/* Progress */
/* line 346, resources/assets/styles/common/_swiper.scss */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute; }

/* line 350, resources/assets/styles/common/_swiper.scss */
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
       -o-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
       -o-transform-origin: left top;
          transform-origin: left top; }

/* line 360, resources/assets/styles/common/_swiper.scss */
.swiper-container-rtl
.swiper-pagination-progressbar
.swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
       -o-transform-origin: right top;
          transform-origin: right top; }

/* line 365, resources/assets/styles/common/_swiper.scss */
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical
> .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0; }

/* line 373, resources/assets/styles/common/_swiper.scss */
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal
> .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0; }

/* line 381, resources/assets/styles/common/_swiper.scss */
.swiper-pagination-white {
  --swiper-pagination-color: #ffffff; }

/* line 384, resources/assets/styles/common/_swiper.scss */
.swiper-pagination-black {
  --swiper-pagination-color: #000000; }

/* line 387, resources/assets/styles/common/_swiper.scss */
.swiper-pagination-lock {
  display: none; }

/* Scrollbar */
/* line 391, resources/assets/styles/common/_swiper.scss */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1); }

/* line 397, resources/assets/styles/common/_swiper.scss */
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%; }

/* line 405, resources/assets/styles/common/_swiper.scss */
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%; }

/* line 413, resources/assets/styles/common/_swiper.scss */
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0; }

/* line 422, resources/assets/styles/common/_swiper.scss */
.swiper-scrollbar-cursor-drag {
  cursor: move; }

/* line 425, resources/assets/styles/common/_swiper.scss */
.swiper-scrollbar-lock {
  display: none; }

/* line 428, resources/assets/styles/common/_swiper.scss */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center; }

/* line 436, resources/assets/styles/common/_swiper.scss */
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain; }

/* line 443, resources/assets/styles/common/_swiper.scss */
.swiper-slide-zoomed {
  cursor: move; }

/* Preloader */
/* line 447, resources/assets/styles/common/_swiper.scss */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
       -o-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
       -o-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent; }

/* line 463, resources/assets/styles/common/_swiper.scss */
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff; }

/* line 466, resources/assets/styles/common/_swiper.scss */
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000; }

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@-o-keyframes swiper-preloader-spin {
  100% {
    -o-transform: rotate(360deg);
       transform: rotate(360deg); } }

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
         -o-transform: rotate(360deg);
            transform: rotate(360deg); } }

/* a11y */
/* line 475, resources/assets/styles/common/_swiper.scss */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000; }

/* line 483, resources/assets/styles/common/_swiper.scss */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
       -o-transition-timing-function: ease-out;
          transition-timing-function: ease-out; }

/* line 486, resources/assets/styles/common/_swiper.scss */
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity; }

/* line 490, resources/assets/styles/common/_swiper.scss */
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none; }

/* line 493, resources/assets/styles/common/_swiper.scss */
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

/* line 497, resources/assets/styles/common/_swiper.scss */
.swiper-container-cube {
  overflow: visible; }

/* line 500, resources/assets/styles/common/_swiper.scss */
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
       -o-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%; }

/* line 510, resources/assets/styles/common/_swiper.scss */
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none; }

/* line 513, resources/assets/styles/common/_swiper.scss */
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
       -o-transform-origin: 100% 0;
          transform-origin: 100% 0; }

/* line 516, resources/assets/styles/common/_swiper.scss */
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

/* line 520, resources/assets/styles/common/_swiper.scss */
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible; }

/* line 527, resources/assets/styles/common/_swiper.scss */
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

/* line 535, resources/assets/styles/common/_swiper.scss */
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0; }

/* line 544, resources/assets/styles/common/_swiper.scss */
.swiper-container-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px); }

/* line 554, resources/assets/styles/common/_swiper.scss */
.swiper-container-flip {
  overflow: visible; }

/* line 557, resources/assets/styles/common/_swiper.scss */
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1; }

/* line 563, resources/assets/styles/common/_swiper.scss */
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none; }

/* line 566, resources/assets/styles/common/_swiper.scss */
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

/* line 570, resources/assets/styles/common/_swiper.scss */
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

/**
 * This injects any component classes registered by Tailwind plugins.
 */
.container{
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}
@media (min-width: 375px){
	.container{
		max-width: 375px;
	}
}
@media (min-width: 425px){
	.container{
		max-width: 425px;
	}
}
@media (min-width: 500px){
	.container{
		max-width: 500px;
	}
}
@media (min-width: 640px){
	.container{
		max-width: 640px;
	}
}
@media (min-width: 768px){
	.container{
		max-width: 768px;
	}
}
@media (min-width: 900px){
	.container{
		max-width: 900px;
	}
}
@media (min-width: 1024px){
	.container{
		max-width: 1024px;
	}
}
@media (min-width: 1280px){
	.container{
		max-width: 1280px;
	}
}
@media (min-width: 1500px){
	.container{
		max-width: 1500px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  /* line 3, resources/assets/styles/components/common/_leadership-listing-item.scss */
  .leadership_listing_item-container:nth-child(3n + 1){
		padding-left: 0px;
	}
  /* line 7, resources/assets/styles/components/common/_leadership-listing-item.scss */
  .leadership_listing_item-container:nth-child(3n){
		padding-right: 0px;
	} }

@media only screen and (min-width: 500px) and (max-width: 767px) {
  /* line 13, resources/assets/styles/components/common/_leadership-listing-item.scss */
  .leadership_listing_item-container:nth-child(odd){
		padding-left: 0px;
	}
  /* line 17, resources/assets/styles/components/common/_leadership-listing-item.scss */
  .leadership_listing_item-container:nth-child(even){
		padding-right: 0px;
	} }

/* line 1, resources/assets/styles/components/general/_buttons.scss */
.h-button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  display: inline-block;
  text-align: center;
  -webkit-transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter;
  -o-transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, filter, backdrop-filter, -o-transform;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-box-shadow, -webkit-transform, -o-transform, -webkit-filter, -webkit-backdrop-filter;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
       -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: 150ms;
       -o-transition-duration: 150ms;
          transition-duration: 150ms;
  -webkit-transition-duration: 200ms;
       -o-transition-duration: 200ms;
          transition-duration: 200ms; }
  /* line 5, resources/assets/styles/components/general/_buttons.scss */
  .h-button:disabled, .h-button[disabled]{
	pointer-events: none;
	opacity: 0.3;
}
  /* line 10, resources/assets/styles/components/general/_buttons.scss */
  .h-button:hover, .h-button:focus{
	opacity: 1;
	outline: 2px solid transparent;
	outline-offset: 2px;
}
  /* line 15, resources/assets/styles/components/general/_buttons.scss */
  .h-button--icon{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
    /* line 18, resources/assets/styles/components/general/_buttons.scss */
    .h-button--icon svg {
      color: currentColor;
      margin-left: 0.5rem;
      display: inline-block;
      height: 22px;
      width: 22px; }
  /* line 24, resources/assets/styles/components/general/_buttons.scss */
  .h-button--primary{
	--tw-bg-opacity: 1;
	background-color: rgba(246, 220, 128, var(--tw-bg-opacity));
	padding-left: 1rem;
	padding-right: 1rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	--tw-text-opacity: 1;
	color: rgba(91, 21, 46, var(--tw-text-opacity));
}
  @media (min-width: 768px){
	.h-button--primary{
		padding: 1rem;
	}
}
    /* line 27, resources/assets/styles/components/general/_buttons.scss */
    .h-button--primary .h-button-content{
	text-align: center;
	font-family: Maison Demi, sans-serif;
	font-size: .875rem;
	font-weight: 700;
	line-height: 1.5rem;
	--tw-text-opacity: 1;
	color: rgba(91, 21, 46, var(--tw-text-opacity));
}
    @media (min-width: 768px){
	.h-button--primary .h-button-content{
		font-size: 1.125rem;
	}
  /* line 32, resources/assets/styles/components/general/_buttons.scss */
  .h-button--primary .h-button-content {
    line-height: 1.1875rem; }
}
    /* line 37, resources/assets/styles/components/general/_buttons.scss */
    .h-button--primary:hover, .h-button--primary:focus{
	--tw-bg-opacity: 1;
	background-color: rgba(166, 196, 231, var(--tw-bg-opacity));
}
  /* line 43, resources/assets/styles/components/general/_buttons.scss */
  .h-button--secondary{
	--tw-text-opacity: 1;
	color: rgba(242, 68, 104, var(--tw-text-opacity));
}
    /* line 46, resources/assets/styles/components/general/_buttons.scss */
    .h-button--secondary::after {
      content: '';
      position: absolute;
      bottom: 0px;
      left: 0px;
      display: block;
      height: 2px;
      width: 100%;
      -webkit-transform-origin: left;
           -o-transform-origin: left;
              transform-origin: left;
      --tw-scale-x: 0;
      -webkit-transform: var(--tw-transform);
           -o-transform: var(--tw-transform);
              transform: var(--tw-transform);
      transform: var(--tw-transform);
      --tw-bg-opacity: 1;
      background-color: rgba(242, 68, 104, var(--tw-bg-opacity));
      -webkit-transition-property: -webkit-transform;
      transition-property: -webkit-transform;
      -o-transition-property: -o-transform;
      transition-property: transform;
      transition-property: transform, -webkit-transform, -o-transform;
      -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
           -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
              transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
      -webkit-transition-duration: 150ms;
           -o-transition-duration: 150ms;
              transition-duration: 150ms; }
    .group:hover .h-button--secondary::after{
	--tw-scale-x: 1;
	-webkit-transform: var(--tw-transform);
	     -o-transform: var(--tw-transform);
	        transform: var(--tw-transform);
}
    /* line 53, resources/assets/styles/components/general/_buttons.scss */
    .h-button--secondary:hover::after, .h-button--secondary:focus::after{
	--tw-scale-x: 1;
	-webkit-transform: var(--tw-transform);
	     -o-transform: var(--tw-transform);
	        transform: var(--tw-transform);
}
    /* line 58, resources/assets/styles/components/general/_buttons.scss */
    .h-button--secondary .h-button-content {
      line-height: 1.0625rem;
      letter-spacing: 0.175rem;
      text-align: center;
      font-family: Maison, sans-serif;
      font-size: 0.8125rem;
      font-weight: 700;
      text-transform: uppercase;
      --tw-text-opacity: 1;
      color: rgba(242, 68, 104, var(--tw-text-opacity)); }

@media (min-width: 768px) {
  /* line 65, resources/assets/styles/components/general/_buttons.scss */
  .h-button--secondary .h-button-content {
    line-height: 1.3125rem;
    letter-spacing: 0.25rem; }
  .h-button--secondary .h-button-content{
		font-size: 1rem;
	} }
  /* line 73, resources/assets/styles/components/general/_buttons.scss */
  .h-button--s_icon{
	position: relative;
	height: 48px;
	width: 48px;
	border-radius: 9999px;
	border-width: 2px;
	--tw-border-opacity: 1;
	border-color: rgba(255, 255, 255, var(--tw-border-opacity));
	padding: 0px;
}
    /* line 76, resources/assets/styles/components/general/_buttons.scss */
    .h-button--s_icon .svg-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	--tw-translate-x: -50%;
	-webkit-transform: var(--tw-transform);
	     -o-transform: var(--tw-transform);
	        transform: var(--tw-transform);
	--tw-translate-y: -50%;
	transform: var(--tw-transform);
	transform: var(--tw-transform);
}
      /* line 79, resources/assets/styles/components/general/_buttons.scss */
      .h-button--s_icon .svg-icon .icon{
	height: 1rem;
	width: 1rem;
}

/* line 87, resources/assets/styles/components/general/_buttons.scss */
[data-play-button] .svg-icon{
	margin-left: 1px;
	width: 0.75rem;
}
  /* line 90, resources/assets/styles/components/general/_buttons.scss */
  [data-play-button] .svg-icon .icon{
	height: auto;
	width: auto;
}

/* line 1, resources/assets/styles/components/general/_button-text.scss */
.h-button-text{
	display: inline-block;
	text-align: center;
}
  /* line 4, resources/assets/styles/components/general/_button-text.scss */
  .h-button-text:disabled, .h-button-text[disabled]{
	pointer-events: none;
	opacity: 0.3;
}
  /* line 9, resources/assets/styles/components/general/_button-text.scss */
  .h-button-text .h-button-text-content {
    line-height: 1.0625rem;
    letter-spacing: 0.175rem;
    text-align: center;
    font-family: Maison, sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    --tw-text-opacity: 1;
    color: rgba(242, 68, 104, var(--tw-text-opacity)); }

@media (min-width: 768px) {
  /* line 18, resources/assets/styles/components/general/_button-text.scss */
  .h-button-text .h-button-text-content {
    line-height: 1.3125rem;
    letter-spacing: 0.25rem; }
  .h-button-text .h-button-text-content{
		font-size: 1rem;
	} }

/* line 1, resources/assets/styles/components/general/_button_video.scss */
.button_video{
	display: block;
}
  /* line 6, resources/assets/styles/components/general/_button_video.scss */
  .button_video.playing .button_video-content:before {
    width: 0.625rem;
    height: 1rem;
    border-left-width: 0.1875rem;
    border-right-width: 0.1875rem;
    border-right-color: currentColor;
    border-top-width: 0rem;
    border-bottom-width: 0rem; }

/* line 18, resources/assets/styles/components/general/_button_video.scss */
.button_video-content{
	position: relative;
	display: block;
	height: 3rem;
	width: 3rem;
	border-radius: 9999px;
	border-width: 1px;
}
  /* line 21, resources/assets/styles/components/general/_button_video.scss */
  .button_video-content:before {
    content: '';
    position: absolute;
    display: block;
    -webkit-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
         -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition-duration: 150ms;
         -o-transition-duration: 150ms;
            transition-duration: 150ms;
    top: 50%;
    left: 50%;
    width: 0.625rem;
    height: 1rem;
    border-left: 0.625rem solid;
    border-right: 0rem solid transparent;
    border-top: 0.5rem solid transparent;
    border-bottom: 0.5rem solid transparent;
    -webkit-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }

/* line 1, resources/assets/styles/components/general/_post-listing-pagination.scss */
span[data-prev-btn].inactive, span[data-next-btn].inactive{
	pointer-events: none;
	opacity: 0.5;
}

/**
 * WordPress Generated Classes
 * @see http://codex.wordpress.org/CSS#WordPress_Generated_Classes
 */
/** Media alignment */
/* line 7, resources/assets/styles/components/general/_wp-classes.scss */
.alignnone {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  height: auto; }

/* line 14, resources/assets/styles/components/general/_wp-classes.scss */
.aligncenter{
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	margin-left: auto;
	margin-right: auto;
  display: block;
  height: auto;
}

/* line 21, resources/assets/styles/components/general/_wp-classes.scss */
.alignleft, .alignright{
	margin-bottom: 1rem;
  height: auto;
}

@media (min-width: 640px) {
  /* line 29, resources/assets/styles/components/general/_wp-classes.scss */
  .alignleft{
		margin-right: 1rem;
	}
  .alignleft {
    float: left; }
  /* line 35, resources/assets/styles/components/general/_wp-classes.scss */
  .alignright{
		margin-left: 1rem;
	}
  .alignright {
    float: right; } }

/** Captions */
/* line 43, resources/assets/styles/components/general/_wp-classes.scss */
.wp-caption{
	margin-bottom: 1rem;
	display: inline-block;
}

/* line 47, resources/assets/styles/components/general/_wp-classes.scss */
.wp-caption img{
	margin-bottom: 0.5rem;
	height: auto;
	max-width: 100%;
	line-height: 1;
}

/* line 51, resources/assets/styles/components/general/_wp-classes.scss */
.wp-caption-text {
  font-size: 90%;
  color: #6c757d; }

/** Text meant only for screen readers */
/* line 57, resources/assets/styles/components/general/_wp-classes.scss */
.sr-only,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0; }

/* line 69, resources/assets/styles/components/general/_wp-classes.scss */
.sr-only-focusable:active,
.screen-reader-text:active,
.sr-only-focusable:focus,
.screen-reader-text:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal; }

/* line 2, resources/assets/styles/components/header/_header.scss */
.header__main{
	border-bottom-width: 1px;
	--tw-border-opacity: 1;
	border-color: rgba(200, 191, 183, var(--tw-border-opacity));
	-webkit-transition-property: background-color, border-color, color, fill, stroke;
	-o-transition-property: background-color, border-color, color, fill, stroke;
	transition-property: background-color, border-color, color, fill, stroke;
	-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	     -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-transition-duration: 150ms;
	     -o-transition-duration: 150ms;
	        transition-duration: 150ms;
}
@media (min-width: 1024px){
	.header__main{
		position: relative;
	}
}
  /* line 5, resources/assets/styles/components/header/_header.scss */
  .home .header__main{
	position: absolute;
	left: 0px;
	right: 0px;
	border-color: transparent;
}
  /* line 8, resources/assets/styles/components/header/_header.scss */
  .scrolled .header__main{
	--tw-border-opacity: 1;
	border-color: rgba(200, 191, 183, var(--tw-border-opacity));
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

@media (min-width: 1024px) {
  /* line 2, resources/assets/styles/components/header/_header.scss */
  .header__main {
    background: -webkit-gradient(linear, left top, right top, color-stop(20%, white), color-stop(60%, #f7f5f5), to(#f7f5f5));
    background: -webkit-linear-gradient(left, white 20%, #f7f5f5 60%, #f7f5f5 100%);
    background: -o-linear-gradient(left, white 20%, #f7f5f5 60%, #f7f5f5 100%);
    background: linear-gradient(90deg, white 20%, #f7f5f5 60%, #f7f5f5 100%);
    background-size: 100% 2.5rem;
    height: 7.4375rem !important; }
  .header__main{
		background-repeat: no-repeat;
	}
    /* line 22, resources/assets/styles/components/header/_header.scss */
    .home .header__main{
		background-image: none;
	}
    /* line 27, resources/assets/styles/components/header/_header.scss */
    .home .header__main::before {
      content: ''; }
    .home .header__main::before{
		position: absolute;
	}
    .home .header__main::before{
		top: 0px;
	}
    .home .header__main::before{
		left: 0px;
	}
    .home .header__main::before{
		right: 0px;
	}
    .home .header__main::before{
		height: 2.5rem;
	}
    .home .header__main::before{
		opacity: 0;
	}
    .home .header__main::before{
		-webkit-transition-property: opacity;
		-o-transition-property: opacity;
		transition-property: opacity;
		-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
		     -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
		        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
		-webkit-transition-duration: 150ms;
		     -o-transition-duration: 150ms;
		        transition-duration: 150ms;
	}
    .home .header__main::before {
      background: -webkit-gradient(linear, left top, right top, color-stop(20%, white), color-stop(60%, #f7f5f5), to(#f7f5f5));
      background: -webkit-linear-gradient(left, white 20%, #f7f5f5 60%, #f7f5f5 100%);
      background: -o-linear-gradient(left, white 20%, #f7f5f5 60%, #f7f5f5 100%);
      background: linear-gradient(90deg, white 20%, #f7f5f5 60%, #f7f5f5 100%); }
    /* line 37, resources/assets/styles/components/header/_header.scss */
    .home.scrolled .header__main::before{
		opacity: 1;
	} }

/* line 43, resources/assets/styles/components/header/_header.scss */
.header__image-logo{
	display: none;
}
@media (min-width: 1024px){
	.header__image-logo{
		display: block;
	}
	.header__image-logo{
		padding-top: 0.375rem;
		padding-bottom: 0.375rem;
	}
}
  /* line 45, resources/assets/styles/components/header/_header.scss */
  .header__image-logo img{
	width: 4.75rem;
	-webkit-transition-property: all;
	-o-transition-property: all;
	transition-property: all;
	-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	     -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-transition-duration: 150ms;
	     -o-transition-duration: 150ms;
	        transition-duration: 150ms;
}
  /* line 48, resources/assets/styles/components/header/_header.scss */
  .home .header__image-logo{
	display: block;
	height: 3.125rem;
	padding-top: 0.5rem;
	-webkit-transition-property: all;
	-o-transition-property: all;
	transition-property: all;
	-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	     -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-transition-duration: 150ms;
	     -o-transition-duration: 150ms;
	        transition-duration: 150ms;
}
  @media (min-width: 1024px){
	.home .header__image-logo{
		height: auto;
	}
	.home .header__image-logo{
		padding-top: 1rem;
	}
}
    /* line 50, resources/assets/styles/components/header/_header.scss */
    @media (min-width: 1024px){
	.home .header__image-logo img{
		width: 8rem;
	}
}
  /* line 54, resources/assets/styles/components/header/_header.scss */
  .home.scrolled .header__image-logo{
	visibility: hidden;
	--tw-translate-y: -0.5rem;
	-webkit-transform: var(--tw-transform);
	     -o-transform: var(--tw-transform);
	        transform: var(--tw-transform);
	transform: var(--tw-transform);
	opacity: 0;
}
  @media (min-width: 1024px){
	.home.scrolled .header__image-logo{
		visibility: visible;
	}
	.home.scrolled .header__image-logo{
		--tw-translate-y: 0px;
		-webkit-transform: var(--tw-transform);
		     -o-transform: var(--tw-transform);
		        transform: var(--tw-transform);
	}
	.home.scrolled .header__image-logo{
		padding-top: 0.5rem;
	}
	.home.scrolled .header__image-logo{
		opacity: 1;
	}
}
    /* line 56, resources/assets/styles/components/header/_header.scss */
    @media (min-width: 1024px){
	.home.scrolled .header__image-logo img{
		width: 4.75rem;
	}
}
  /* line 62, resources/assets/styles/components/header/_header.scss */
  @media (min-width: 1024px){
	.home .header__image-logo--small img{
		width: 4.75rem;
	}
}
  /* line 68, resources/assets/styles/components/header/_header.scss */
  .header__image-logo:hover{
	opacity: 1;
}

/* line 72, resources/assets/styles/components/header/_header.scss */
.header__text-logo{
	display: block;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}
@media (min-width: 1024px){
	.header__text-logo{
		display: none;
	}
}
  /* line 74, resources/assets/styles/components/header/_header.scss */
  .header__text-logo img{
	width: 6.5625rem;
}
  /* line 77, resources/assets/styles/components/header/_header.scss */
  .home .header__text-logo{
	position: absolute;
	opacity: 0;
	-webkit-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity;
	-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	     -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-transition-duration: 150ms;
	     -o-transition-duration: 150ms;
	        transition-duration: 150ms;
}
  /* line 80, resources/assets/styles/components/header/_header.scss */
  .home.scrolled .header__text-logo{
	opacity: 1;
}

/* line 84, resources/assets/styles/components/header/_header.scss */
.header__main-cta{
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	--tw-text-opacity: 1;
	color: rgba(242, 68, 104, var(--tw-text-opacity));
}
  /* line 86, resources/assets/styles/components/header/_header.scss */
  .home .header__main-cta{
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
  /* line 89, resources/assets/styles/components/header/_header.scss */
  .home.scrolled .header__main-cta{
	--tw-text-opacity: 1;
	color: rgba(242, 68, 104, var(--tw-text-opacity));
}

/* line 93, resources/assets/styles/components/header/_header.scss */
.header__menu-toggle{
	margin-left: 1.75rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 1.0625rem;
	width: 1.25rem;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	border-top-width: 2px;
	border-bottom-width: 2px;
	--tw-border-opacity: 1;
	border-color: rgba(91, 21, 46, var(--tw-border-opacity));
}
@media (min-width: 1024px){
	.header__menu-toggle{
		display: none;
	}
}
  /* line 95, resources/assets/styles/components/header/_header.scss */
  .home .header__menu-toggle{
	--tw-border-opacity: 1;
	border-color: rgba(255, 255, 255, var(--tw-border-opacity));
	-webkit-transition-property: background-color, border-color, color, fill, stroke;
	-o-transition-property: background-color, border-color, color, fill, stroke;
	transition-property: background-color, border-color, color, fill, stroke;
	-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	     -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-transition-duration: 150ms;
	     -o-transition-duration: 150ms;
	        transition-duration: 150ms;
}
    /* line 97, resources/assets/styles/components/header/_header.scss */
    .home .header__menu-toggle span{
	--tw-border-opacity: 1;
	border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}
  /* line 101, resources/assets/styles/components/header/_header.scss */
  .home.scrolled .header__menu-toggle{
	--tw-border-opacity: 1;
	border-color: rgba(91, 21, 46, var(--tw-border-opacity));
	-webkit-transition-property: background-color, border-color, color, fill, stroke;
	-o-transition-property: background-color, border-color, color, fill, stroke;
	transition-property: background-color, border-color, color, fill, stroke;
	-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	     -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-transition-duration: 150ms;
	     -o-transition-duration: 150ms;
	        transition-duration: 150ms;
}
    /* line 103, resources/assets/styles/components/header/_header.scss */
    .home.scrolled .header__menu-toggle span{
	--tw-border-opacity: 1;
	border-color: rgba(91, 21, 46, var(--tw-border-opacity));
}

/* line 108, resources/assets/styles/components/header/_header.scss */
.header__menu{
	visibility: hidden;
	position: fixed;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	overflow: auto;
	--tw-bg-opacity: 1;
	background-color: rgba(91, 21, 46, var(--tw-bg-opacity));
	padding-left: 3rem;
	padding-right: 3rem;
	padding-top: 3.5rem;
	padding-bottom: 3.5rem;
	text-align: center;
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
	opacity: 0;
}
@media (min-width: 1024px){
	.header__menu{
		visibility: visible;
	}
	.header__menu{
		position: relative;
	}
	.header__menu{
		top: auto;
		right: auto;
		bottom: auto;
		left: auto;
	}
	.header__menu{
		overflow: visible;
	}
	.header__menu{
		background-color: transparent;
	}
	.header__menu{
		padding: 0px;
	}
	.header__menu{
		text-align: left;
	}
	.header__menu{
		--tw-text-opacity: 1;
		color: rgba(91, 21, 46, var(--tw-text-opacity));
	}
	.header__menu{
		opacity: 1;
	}
}
  /* line 111, resources/assets/styles/components/header/_header.scss */
  #menu:checked ~ .header__menu{
	visibility: visible;
	opacity: 1;
}

@media (min-width: 1024px) {
  /* line 118, resources/assets/styles/components/header/_header.scss */
  .header__menu-content {
    line-height: 2.5rem; } }

/* line 124, resources/assets/styles/components/header/_header.scss */
.header__global-links{
	margin-top: 4.5rem;
}
@media (min-width: 1024px){
	.header__global-links{
		margin-top: 0px;
	}
}
  /* line 126, resources/assets/styles/components/header/_header.scss */
  .header__global-links li{
	margin-top: 1.5rem;
}
  @media (min-width: 1024px){
	.header__global-links li{
		position: relative;
	}
	.header__global-links li{
		margin-top: 0px;
	}
	.header__global-links li{
		margin-left: -1px;
	}
	.header__global-links li{
		padding-left: 0.5rem;
		padding-right: 0.5rem;
	}
  /* line 129, resources/assets/styles/components/header/_header.scss */
  .header__global-links li::after {
    content: ''; }
  .header__global-links li::after{
		position: absolute;
	}
  .header__global-links li::after{
		right: 0px;
	}
  .header__global-links li::after{
		top: 0.25rem;
	}
  .header__global-links li::after{
		bottom: 0.25rem;
	}
  .header__global-links li::after{
		display: block;
	}
  .header__global-links li::after{
		width: 1px;
	}
  .header__global-links li::after{
		--tw-bg-opacity: 1;
		background-color: rgba(200, 191, 183, var(--tw-bg-opacity));
	}
  .header__global-links li::after{
		-webkit-transition-property: background-color, border-color, color, fill, stroke;
		-o-transition-property: background-color, border-color, color, fill, stroke;
		transition-property: background-color, border-color, color, fill, stroke;
		-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
		     -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
		        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
		-webkit-transition-duration: 150ms;
		     -o-transition-duration: 150ms;
		        transition-duration: 150ms;
	}
    /* line 132, resources/assets/styles/components/header/_header.scss */
    .home .header__global-links li::after{
		background-color: transparent;
	}
    /* line 135, resources/assets/styles/components/header/_header.scss */
    .home.scrolled .header__global-links li::after{
		--tw-bg-opacity: 1;
		background-color: rgba(200, 191, 183, var(--tw-bg-opacity));
	}
}
    /* line 140, resources/assets/styles/components/header/_header.scss */
    @media (min-width: 1024px){
	.header__global-links li a{
		display: block;
	}
	.header__global-links li a{
		padding-left: 1rem;
		padding-right: 1rem;
	}
	.header__global-links li a:hover{
		--tw-bg-opacity: 1;
		background-color: rgba(246, 220, 128, var(--tw-bg-opacity));
	}
	.header__global-links li a:hover{
		--tw-text-opacity: 1;
		color: rgba(91, 21, 46, var(--tw-text-opacity));
	}
	.header__global-links li a:hover{
		opacity: 1;
	}
}
      /* line 142, resources/assets/styles/components/header/_header.scss */
      @media (min-width: 1024px){
	.home .header__global-links li a{
		--tw-text-opacity: 1;
		color: rgba(255, 255, 255, var(--tw-text-opacity));
	}
	.home .header__global-links li a:hover{
		--tw-text-opacity: 1;
		color: rgba(91, 21, 46, var(--tw-text-opacity));
	}
}
      /* line 145, resources/assets/styles/components/header/_header.scss */
      @media (min-width: 1024px){
	.home.scrolled .header__global-links li a{
		--tw-text-opacity: 1;
		color: rgba(151, 143, 138, var(--tw-text-opacity));
	}
	.home.scrolled .header__global-links li a:hover{
		--tw-text-opacity: 1;
		color: rgba(91, 21, 46, var(--tw-text-opacity));
	}
}

/* line 151, resources/assets/styles/components/header/_header.scss */
.header__search-toggle{
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
@media (min-width: 1024px){
	.header__search-toggle{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.header__search-toggle{
		padding-right: 1rem;
	}
	.header__search-toggle:hover{
		--tw-bg-opacity: 1;
		background-color: rgba(246, 220, 128, var(--tw-bg-opacity));
	}
	.header__search-toggle:hover{
		--tw-text-opacity: 1;
		color: rgba(91, 21, 46, var(--tw-text-opacity));
	}
	.header__search-toggle:hover{
		opacity: 1;
	}
}
  /* line 153, resources/assets/styles/components/header/_header.scss */
  @media (min-width: 1024px){
	.home .header__search-toggle{
		--tw-text-opacity: 1;
		color: rgba(255, 255, 255, var(--tw-text-opacity));
	}
	.home .header__search-toggle:hover{
		--tw-text-opacity: 1;
		color: rgba(91, 21, 46, var(--tw-text-opacity));
	}
}
  /* line 156, resources/assets/styles/components/header/_header.scss */
  @media (min-width: 1024px){
	.home.scrolled .header__search-toggle{
		--tw-text-opacity: 1;
		color: rgba(151, 143, 138, var(--tw-text-opacity));
	}
	.home.scrolled .header__search-toggle:hover{
		--tw-text-opacity: 1;
		color: rgba(91, 21, 46, var(--tw-text-opacity));
	}
}

/* line 160, resources/assets/styles/components/header/_header.scss */
.header__search-close{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-weight: 700;
	text-transform: uppercase;
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}

/* line 163, resources/assets/styles/components/header/_header.scss */
.header__search{
	visibility: hidden;
	position: fixed;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	top: 3.5rem;
	z-index: -1;
	--tw-bg-opacity: 1;
	background-color: rgba(91, 21, 46, var(--tw-bg-opacity));
	opacity: 0;
	-webkit-transition-property: all;
	-o-transition-property: all;
	transition-property: all;
	-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	     -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-transition-duration: 150ms;
	     -o-transition-duration: 150ms;
	        transition-duration: 150ms;
}
@media (min-width: 1024px){
	.header__search{
		position: absolute;
	}
	.header__search{
		top: 0px;
	}
	.header__search{
		z-index: 10;
	}
	.header__search{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.header__search{
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
}
  /* line 165, resources/assets/styles/components/header/_header.scss */
  .header__search--active{
	visibility: visible;
	z-index: 10;
	opacity: 1;
}
  /* line 169, resources/assets/styles/components/header/_header.scss */
  .header__search .search-field{
	width: 100%;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	background-color: transparent;
	text-align: center;
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
  .header__search .search-field::-webkit-input-placeholder{
	--tw-placeholder-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
}
  .header__search .search-field::-moz-placeholder{
	--tw-placeholder-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
}
  .header__search .search-field:-ms-input-placeholder{
	--tw-placeholder-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
}
  .header__search .search-field::-ms-input-placeholder{
	--tw-placeholder-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
}
  .header__search .search-field::placeholder{
	--tw-placeholder-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
}
  .header__search .search-field{
	outline: 2px solid transparent;
	outline-offset: 2px;
}
  @media (min-width: 1024px){
	.header__search .search-field{
		text-align: left;
	}
	.header__search .search-field{
		font-size: 1.5rem;
	}
}
    /* line 171, resources/assets/styles/components/header/_header.scss */
    .header__search .search-field::-webkit-input-placeholder{
	font-style: italic;
}
    .header__search .search-field::-moz-placeholder{
	font-style: italic;
}
    .header__search .search-field:-ms-input-placeholder{
	font-style: italic;
}
    .header__search .search-field::-ms-input-placeholder{
	font-style: italic;
}
    .header__search .search-field::placeholder{
	font-style: italic;
}
    /* line 174, resources/assets/styles/components/header/_header.scss */
    .header__search .search-field::-webkit-search-decoration, .header__search .search-field::-webkit-search-cancel-button, .header__search .search-field::-webkit-search-results-button, .header__search .search-field::-webkit-search-results-decoration {
      -webkit-appearance: none; }
  /* line 182, resources/assets/styles/components/header/_header.scss */
  .header__search .search-form > label{
	display: block;
}
  /* line 186, resources/assets/styles/components/header/_header.scss */
  .header__search .search-submit{
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

@media (min-width: 1024px) {
  /* line 163, resources/assets/styles/components/header/_header.scss */
  .header__search {
    height: 7.375rem; } }

/* line 194, resources/assets/styles/components/header/_header.scss */
.header__nav-toggle{
	font-weight: 700;
	-webkit-transition-property: all;
	-o-transition-property: all;
	transition-property: all;
	-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	     -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-transition-duration: 150ms;
	     -o-transition-duration: 150ms;
	        transition-duration: 150ms;
}
@media (min-width: 1024px){
	.header__nav-toggle{
		white-space: nowrap;
	}
	.header__nav-toggle{
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
	.header__nav-toggle{
		font-size: 1rem;
	}
	.header__nav-toggle{
		--tw-text-opacity: 1;
		color: rgba(91, 21, 46, var(--tw-text-opacity));
	}
	.header__nav-toggle:hover{
		--tw-bg-opacity: 1;
		background-color: rgba(246, 220, 128, var(--tw-bg-opacity));
	}
}
  /* line 196, resources/assets/styles/components/header/_header.scss */
  .header__nav-toggle--defocus{
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
	opacity: 0.4;
}
  @media (min-width: 1024px){
	.header__nav-toggle--defocus{
		--tw-text-opacity: 1;
		color: rgba(91, 21, 46, var(--tw-text-opacity));
	}
	.header__nav-toggle--defocus{
		opacity: 1;
	}
}
  /* line 199, resources/assets/styles/components/header/_header.scss */
  @media (min-width: 1024px){
	.header__nav-toggle[aria-expanded='true']{
		--tw-bg-opacity: 1;
		background-color: rgba(246, 220, 128, var(--tw-bg-opacity));
	}
}
    /* line 201, resources/assets/styles/components/header/_header.scss */
    @media (min-width: 1024px){
	.home .header__nav-toggle[aria-expanded='true']{
		--tw-text-opacity: 1;
		color: rgba(91, 21, 46, var(--tw-text-opacity));
	}
}
  /* line 205, resources/assets/styles/components/header/_header.scss */
  @media (min-width: 1024px){
	.home .header__nav-toggle{
		--tw-text-opacity: 1;
		color: rgba(255, 255, 255, var(--tw-text-opacity));
	}
	.home .header__nav-toggle:hover{
		--tw-text-opacity: 1;
		color: rgba(91, 21, 46, var(--tw-text-opacity));
	}
}
  /* line 208, resources/assets/styles/components/header/_header.scss */
  @media (min-width: 1024px){
	.home.scrolled .header__nav-toggle{
		--tw-text-opacity: 1;
		color: rgba(91, 21, 46, var(--tw-text-opacity));
	}
  /* line 194, resources/assets/styles/components/header/_header.scss */
  .header__nav-toggle {
    line-height: 4.875rem; }
}

/* line 215, resources/assets/styles/components/header/_header.scss */
.header__nav-link{
	display: block;
	white-space: nowrap;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	--tw-text-opacity: 1;
	color: rgba(242, 68, 104, var(--tw-text-opacity));
}
.header__nav-link:hover{
	--tw-bg-opacity: 1;
	background-color: rgba(242, 68, 104, var(--tw-bg-opacity));
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
	opacity: 1;
}
.header__nav-link {
  line-height: 4.875rem; }
  /* line 218, resources/assets/styles/components/header/_header.scss */
  @media (min-width: 1024px){
	.home .header__nav-link{
		--tw-text-opacity: 1;
		color: rgba(255, 255, 255, var(--tw-text-opacity));
	}
}
  /* line 221, resources/assets/styles/components/header/_header.scss */
  @media (min-width: 1024px){
	.home.scrolled .header__nav-link{
		--tw-text-opacity: 1;
		color: rgba(242, 68, 104, var(--tw-text-opacity));
	}
	.home.scrolled .header__nav-link:hover{
		--tw-text-opacity: 1;
		color: rgba(255, 255, 255, var(--tw-text-opacity));
	}
}

/* line 225, resources/assets/styles/components/header/_header.scss */
.header__nav{
	right: 0px;
	top: 2.5rem;
}
@media (min-width: 1024px){
	.header__nav{
		position: absolute;
	}
}

/* line 228, resources/assets/styles/components/header/_header.scss */
.header__sub-nav{
	max-height: 0px;
	overflow: hidden;
	opacity: 0;
	-webkit-transition-property: all;
	-o-transition-property: all;
	transition-property: all;
	-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	     -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-transition-duration: 150ms;
	     -o-transition-duration: 150ms;
	        transition-duration: 150ms;
}
@media (min-width: 1024px){
	.header__sub-nav{
		position: absolute;
	}
	.header__sub-nav{
		top: 100%;
	}
	.header__sub-nav{
		left: 0px;
	}
	.header__sub-nav{
		margin-top: 1px;
	}
	.header__sub-nav{
		white-space: nowrap;
	}
	.header__sub-nav{
		--tw-bg-opacity: 1;
		background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
	}
}
  /* line 230, resources/assets/styles/components/header/_header.scss */
  [aria-expanded='true'] ~ .header__sub-nav{
	max-height: 48rem;
	opacity: 1;
	-webkit-transition-property: all;
	-o-transition-property: all;
	transition-property: all;
	-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	     -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-transition-duration: 150ms;
	     -o-transition-duration: 150ms;
	        transition-duration: 150ms;
}
  /* line 233, resources/assets/styles/components/header/_header.scss */
  @media (min-width: 1024px){
	.home .header__sub-nav{
		margin-top: 0px;
	}
}
  /* line 236, resources/assets/styles/components/header/_header.scss */
  @media (min-width: 1024px){
	.home.scrolled .header__sub-nav{
		margin-top: 1px;
	}
  /* line 242, resources/assets/styles/components/header/_header.scss */
  .header__current-path::before {
    content: ''; }
  .header__current-path::before{
		position: absolute;
	}
  .header__current-path::before{
		bottom: 1rem;
	}
  .header__current-path::before{
		left: 1.5rem;
	}
  .header__current-path::before{
		right: 1.5rem;
	}
  .header__current-path::before{
		display: block;
	}
  .header__current-path::before{
		height: 0.375rem;
	}
  .header__current-path::before{
		--tw-bg-opacity: 1;
		background-color: rgba(246, 220, 128, var(--tw-bg-opacity));
	}
}

@-webkit-keyframes modalBackdropAppear {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-o-keyframes modalBackdropAppear {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes modalBackdropAppear {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes modalAppear {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@-o-keyframes modalAppear {
  0% {
    opacity: 0;
    -o-transform: translateY(3rem);
       transform: translateY(3rem); }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
       transform: translateY(0); } }

@keyframes modalAppear {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3rem);
         -o-transform: translateY(3rem);
            transform: translateY(3rem); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0); } }

@-webkit-keyframes modalBackdropDisappear {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-o-keyframes modalBackdropDisappear {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes modalBackdropDisappear {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-webkit-keyframes modalDisappear {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem); } }

@-o-keyframes modalDisappear {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
       transform: translateY(0); }
  100% {
    opacity: 0;
    -o-transform: translateY(3rem);
       transform: translateY(3rem); } }

@keyframes modalDisappear {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(3rem);
         -o-transform: translateY(3rem);
            transform: translateY(3rem); } }

/* Class for the body */
/* line 42, resources/assets/styles/components/modal/_modal.scss */
.no_scroll {
  overflow: hidden; }

/* line 46, resources/assets/styles/components/modal/_modal.scss */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity)); }
  /* line 56, resources/assets/styles/components/modal/_modal.scss */
  .modal--active, .modal--inactive {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    /* line 62, resources/assets/styles/components/modal/_modal.scss */
    .modal--active .modal-backdrop,
    .modal--active .modal-wrapper, .modal--inactive .modal-backdrop,
    .modal--inactive .modal-wrapper {
      -webkit-animation-timing-function: ease-out;
           -o-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
      -webkit-animation-fill-mode: forwards;
           -o-animation-fill-mode: forwards;
              animation-fill-mode: forwards; }
  /* line 70, resources/assets/styles/components/modal/_modal.scss */
  .modal--active .modal-backdrop,
  .modal--active .modal-wrapper {
    -webkit-animation-duration: 300ms;
         -o-animation-duration: 300ms;
            animation-duration: 300ms; }
  /* line 74, resources/assets/styles/components/modal/_modal.scss */
  .modal--active .modal-backdrop {
    -webkit-animation-name: modalBackdropAppear;
         -o-animation-name: modalBackdropAppear;
            animation-name: modalBackdropAppear; }
  /* line 77, resources/assets/styles/components/modal/_modal.scss */
  .modal--active .modal-wrapper {
    -webkit-animation-name: modalAppear;
         -o-animation-name: modalAppear;
            animation-name: modalAppear; }
  /* line 83, resources/assets/styles/components/modal/_modal.scss */
  .modal--inactive .modal-backdrop,
  .modal--inactive .modal-wrapper {
    -webkit-animation-duration: 200ms;
         -o-animation-duration: 200ms;
            animation-duration: 200ms; }
  /* line 87, resources/assets/styles/components/modal/_modal.scss */
  .modal--inactive .modal-backdrop {
    -webkit-animation-name: modalBackdropDisappear;
         -o-animation-name: modalBackdropDisappear;
            animation-name: modalBackdropDisappear; }
  /* line 90, resources/assets/styles/components/modal/_modal.scss */
  .modal--inactive .modal-wrapper {
    -webkit-animation-name: modalDisappear;
         -o-animation-name: modalDisappear;
            animation-name: modalDisappear; }

/* line 96, resources/assets/styles/components/modal/_modal.scss */
.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity)); }

/* line 108, resources/assets/styles/components/modal/_modal.scss */
.modal-wrapper {
  position: relative;
  opacity: 0; }

/* line 113, resources/assets/styles/components/modal/_modal.scss */
.modal-close {
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }

/* line 118, resources/assets/styles/components/modal/_modal.scss */
.modal-close-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	height: 0.75rem;
	width: 0.75rem;
	--tw-translate-x: -50%;
	-webkit-transform: var(--tw-transform);
	     -o-transform: var(--tw-transform);
	        transform: var(--tw-transform);
	--tw-translate-y: -50%;
	transform: var(--tw-transform);
	transform: var(--tw-transform);
	text-align: center;
}
  /* line 121, resources/assets/styles/components/modal/_modal.scss */
  .modal-close-icon svg {
    fill: currentColor;
    display: block;
    display: block;
    height: 0.75rem;
    width: 0.75rem; }

/* line 4, resources/assets/styles/sections/_accordion.scss */
.accordion__item--expanded > .accordion__header .accordion__icon::before{
	display: none;
}

/* line 13, resources/assets/styles/sections/_accordion.scss */
.accordion__header:hover .accordion__icon{
	--tw-bg-opacity: 1;
	background-color: rgba(166, 196, 231, var(--tw-bg-opacity));
	-webkit-transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter;
	transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter;
	-o-transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, filter, backdrop-filter, -o-transform;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-box-shadow, -webkit-transform, -o-transform, -webkit-filter, -webkit-backdrop-filter;
	-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	     -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-transition-duration: 150ms;
	     -o-transition-duration: 150ms;
	        transition-duration: 150ms;
	-webkit-transition-duration: 200ms;
	     -o-transition-duration: 200ms;
	        transition-duration: 200ms;
}

/* line 19, resources/assets/styles/sections/_accordion.scss */
.accordion__item{
	--tw-bg-opacity: 1;
	background-color: rgba(233, 230, 226, var(--tw-bg-opacity));
}
  /* line 22, resources/assets/styles/sections/_accordion.scss */
  .accordion__item--0, .accordion__item--6{
	--tw-bg-opacity: 1;
	background-color: rgba(247, 245, 245, var(--tw-bg-opacity));
}
  /* line 27, resources/assets/styles/sections/_accordion.scss */
  .accordion__item--1, .accordion__item--5{
	--tw-bg-opacity: 1;
	background-color: rgba(243, 241, 239, var(--tw-bg-opacity));
}
  /* line 32, resources/assets/styles/sections/_accordion.scss */
  .accordion__item--2, .accordion__item--4{
	--tw-bg-opacity: 1;
	background-color: rgba(238, 236, 233, var(--tw-bg-opacity));
}

/* line 38, resources/assets/styles/sections/_accordion.scss */
.accordion__icon{
	position: relative;
	margin-left: 0.625rem;
	height: 1.25rem;
	width: 1.25rem;
	border-radius: 9999px;
	--tw-bg-opacity: 1;
	background-color: rgba(242, 68, 104, var(--tw-bg-opacity));
	padding-bottom: 0px;
}
  /* line 40, resources/assets/styles/sections/_accordion.scss */
  .accordion__icon::before, .accordion__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: -o-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform, -o-transform;
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
         -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition-duration: 150ms;
         -o-transition-duration: 150ms;
            transition-duration: 150ms;
    -webkit-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%); }
  /* line 46, resources/assets/styles/sections/_accordion.scss */
  .accordion__icon::before{
	right: 0.375rem;
	height: 0.75rem;
	width: 0.125rem;
    margin-right: 3px;
}
  /* line 50, resources/assets/styles/sections/_accordion.scss */
  .accordion__icon::after{
	right: 0.25rem;
	height: 0.125rem;
	width: 0.75rem;
}

/* line 2, resources/assets/styles/sections/_call-to-action.scss */
.call_to_action-section--blue {
  background-color: #e5ecf6; }

/* line 6, resources/assets/styles/sections/_call-to-action.scss */
.call_to_action-section:not(.text-white) h2, .call_to_action-section:not(.text-white) .subheading{
	--tw-text-opacity: 1;
	color: rgba(91, 21, 46, var(--tw-text-opacity));
}

/* line 11, resources/assets/styles/sections/_call-to-action.scss */
.call_to_action-section .subheading{
	font-family: Maison, sans-serif;
	font-size: 1rem;
}

/* line 2, resources/assets/styles/sections/_careers-opportunity.scss */
.careers_opportunity-section__description{
	font-family: Maison, sans-serif;
	font-size: 1.125rem;
}

/* line 6, resources/assets/styles/sections/_careers-opportunity.scss */
@media (min-width: 768px){
	.careers_opportunity-section__box{
		padding-left: 100px;
		padding-right: 100px;
	}
}
@media (min-width: 1024px){
	.careers_opportunity-section__box{
		padding-left: 120px;
		padding-right: 120px;
	}
}

/* line 12, resources/assets/styles/sections/_careers-opportunity.scss */
.careers_opportunity-item__title{
	font-family: Reckless Neue, serif;
	font-size: 1.5rem;
	font-weight: 500;
	--tw-text-opacity: 1;
	color: rgba(91, 21, 46, var(--tw-text-opacity));
}

/* line 16, resources/assets/styles/sections/_careers-opportunity.scss */
.careers_opportunity-item__description{
	font-family: Maison, sans-serif;
	font-size: 1rem;
	--tw-text-opacity: 1;
	color: rgba(35, 33, 33, var(--tw-text-opacity));
}

/* line 20, resources/assets/styles/sections/_careers-opportunity.scss */
.careers_opportunity-item__link{
	font-family: Maison, sans-serif;
	font-weight: 500;
	--tw-text-opacity: 1;
	color: rgba(242, 68, 104, var(--tw-text-opacity));
}
  /* line 23, resources/assets/styles/sections/_careers-opportunity.scss */
  .careers_opportunity-item__link:hover{
	text-decoration: underline;
}

/* line 28, resources/assets/styles/sections/_careers-opportunity.scss */
.careers_opportunity-item__divider{
	--tw-text-opacity: 1;
	color: rgba(242, 68, 104, var(--tw-text-opacity));
}

/* line 1, resources/assets/styles/sections/_homepage-hero.scss */
.homepage_hero-iframe{
	pointer-events: none;
	position: absolute;
	top: 50%;
	left: 50%;
  width: 200vw;
  height: 150vh;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (min-aspect-ratio: 16 / 9) {
  /* line 9, resources/assets/styles/sections/_homepage-hero.scss */
  .homepage_hero-iframe {
    height: 56.25vw; } }

@media (max-aspect-ratio: 16 / 9) {
  /* line 14, resources/assets/styles/sections/_homepage-hero.scss */
  .homepage_hero-iframe {
    width: 177.78vh; } }

/* line 1, resources/assets/styles/sections/_image-hero.scss */
.hero_gradiant {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#232121), to(#494545));
  background-image: -webkit-linear-gradient(top, #232121 0%, #494545 100%);
  background-image: -o-linear-gradient(top, #232121 0%, #494545 100%);
  background-image: linear-gradient(180deg, #232121 0%, #494545 100%);
  opacity: 0.2; }

/* line 10, resources/assets/styles/sections/_image-hero.scss */
.image_hero-iframe{
	position: absolute;
	top: 50%;
	left: 50%;
  width: 200vw;
  height: 150vh;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (min-aspect-ratio: 16 / 9) {
  /* line 19, resources/assets/styles/sections/_image-hero.scss */
  .image_hero-container iframe {
    height: 56.25vw; } }

@media (max-aspect-ratio: 16 / 9) {
  /* line 26, resources/assets/styles/sections/_image-hero.scss */
  .image_hero-container iframe {
    width: 177.78vh; } }

/* line 2, resources/assets/styles/sections/_image-left-right.scss */
.image_left_right-section--red{
	--tw-bg-opacity: 1;
	background-color: rgba(91, 21, 46, var(--tw-bg-opacity));
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}

/* line 6, resources/assets/styles/sections/_image-left-right.scss */
.image_left_right-section--yellow{
	--tw-bg-opacity: 1;
	background-color: rgba(246, 220, 128, var(--tw-bg-opacity));
}

/* line 10, resources/assets/styles/sections/_image-left-right.scss */
.image_left_right-section--blue{
	--tw-bg-opacity: 1;
	background-color: rgba(166, 196, 231, var(--tw-bg-opacity));
}

/* line 14, resources/assets/styles/sections/_image-left-right.scss */
.image_left_right-section--gray{
	--tw-bg-opacity: 1;
	background-color: rgba(247, 245, 245, var(--tw-bg-opacity));
}

/* line 20, resources/assets/styles/sections/_image-left-right.scss */
.image_left_right-cta-container .h-button{
	margin-left: 2.25rem;
	margin-right: 2.25rem;
	margin-top: 1rem;
	margin-bottom: 1rem;
}

/* line 25, resources/assets/styles/sections/_image-left-right.scss */
.image_left_right-iframe{
	position: absolute;
	top: 50%;
	left: 50%;
  width: 200vw;
  height: 150vh;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (min-aspect-ratio: 16 / 9) {
  /* line 34, resources/assets/styles/sections/_image-left-right.scss */
  .image_left_right-iframe iframe {
    height: 56.25vw; } }

@media (max-aspect-ratio: 16 / 9) {
  /* line 41, resources/assets/styles/sections/_image-left-right.scss */
  .image_left_right-iframe iframe {
    width: 177.78vh; } }

/* line 2, resources/assets/styles/sections/_latest-news-callout.scss */
.latest_news_callout-section .swiper-pagination{
	bottom: -2.5rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
@media (min-width: 768px){
	.latest_news_callout-section .swiper-pagination{
		display: none;
	}
}
  /* line 5, resources/assets/styles/sections/_latest-news-callout.scss */
  .latest_news_callout-section .swiper-pagination .swiper-pagination-bullet{
	--tw-bg-opacity: 1;
	background-color: rgba(200, 191, 183, var(--tw-bg-opacity));
}
    /* line 8, resources/assets/styles/sections/_latest-news-callout.scss */
    .latest_news_callout-section .swiper-pagination .swiper-pagination-bullet-active{
	height: 0.5rem;
	width: 0.5rem;
	--tw-bg-opacity: 1;
	background-color: rgba(242, 68, 104, var(--tw-bg-opacity));
}

/* line 16, resources/assets/styles/sections/_latest-news-callout.scss */
.latest_news_callout-section .swiper-slide:nth-child(1) .fade-in {
  -webkit-transition-delay: 0.65s;
       -o-transition-delay: 0.65s;
          transition-delay: 0.65s; }

/* line 16, resources/assets/styles/sections/_latest-news-callout.scss */
.latest_news_callout-section .swiper-slide:nth-child(2) .fade-in {
  -webkit-transition-delay: 0.8s;
       -o-transition-delay: 0.8s;
          transition-delay: 0.8s; }

/* line 16, resources/assets/styles/sections/_latest-news-callout.scss */
.latest_news_callout-section .swiper-slide:nth-child(3) .fade-in {
  -webkit-transition-delay: 0.95s;
       -o-transition-delay: 0.95s;
          transition-delay: 0.95s; }

/* line 16, resources/assets/styles/sections/_latest-news-callout.scss */
.latest_news_callout-section .swiper-slide:nth-child(4) .fade-in {
  -webkit-transition-delay: 1.1s;
       -o-transition-delay: 1.1s;
          transition-delay: 1.1s; }

/* line 16, resources/assets/styles/sections/_latest-news-callout.scss */
.latest_news_callout-section .swiper-slide:nth-child(5) .fade-in {
  -webkit-transition-delay: 1.25s;
       -o-transition-delay: 1.25s;
          transition-delay: 1.25s; }

/* line 16, resources/assets/styles/sections/_latest-news-callout.scss */
.latest_news_callout-section .swiper-slide:nth-child(6) .fade-in {
  -webkit-transition-delay: 1.4s;
       -o-transition-delay: 1.4s;
          transition-delay: 1.4s; }

/* line 16, resources/assets/styles/sections/_latest-news-callout.scss */
.latest_news_callout-section .swiper-slide:nth-child(7) .fade-in {
  -webkit-transition-delay: 1.55s;
       -o-transition-delay: 1.55s;
          transition-delay: 1.55s; }

/* line 16, resources/assets/styles/sections/_latest-news-callout.scss */
.latest_news_callout-section .swiper-slide:nth-child(8) .fade-in {
  -webkit-transition-delay: 1.7s;
       -o-transition-delay: 1.7s;
          transition-delay: 1.7s; }

/* line 16, resources/assets/styles/sections/_latest-news-callout.scss */
.latest_news_callout-section .swiper-slide:nth-child(9) .fade-in {
  -webkit-transition-delay: 1.85s;
       -o-transition-delay: 1.85s;
          transition-delay: 1.85s; }

/* line 1, resources/assets/styles/sections/_news-end-publication-listing.scss */
.tabbed-content__pane{
	display: none;
}
  /* line 4, resources/assets/styles/sections/_news-end-publication-listing.scss */
  .tabbed-content__pane.is-visible{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

/* line 8, resources/assets/styles/sections/_news-end-publication-listing.scss */
.tabbed-content__posts {
  -webkit-animation: fadein 1.5s;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  row-gap: 14px; }
@media (min-width: 500px){
	.tabbed-content__posts{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.tabbed-content__posts{
		-webkit-column-gap: 14px;
		   -moz-column-gap: 14px;
		        column-gap: 14px;
	}
}
@media (min-width: 640px){
	.tabbed-content__posts{
		-webkit-column-gap: 30px;
		   -moz-column-gap: 30px;
		        column-gap: 30px;
	}
}
@media (min-width: 768px){
	.tabbed-content__posts{
		row-gap: 42px;
	}
}
@media (min-width: 900px){
	.tabbed-content__posts{
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
@media (min-width: 1280px){
	.tabbed-content__posts{
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

/* line 15, resources/assets/styles/sections/_news-end-publication-listing.scss */
.tab-list__btn.is-active::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  display: block;
  height: 3px;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgba(246, 220, 128, var(--tw-bg-opacity)); }

/* line 2, resources/assets/styles/sections/_quote-content-block.scss */
.quote_content_block-section .container {
  max-width: 72rem !important; }

/* line 7, resources/assets/styles/sections/_quote-content-block.scss */
.quote_content_block-section .quote-column blockquote{
	font-family: Reckless Neue, serif;
	font-size: 26px;
	font-style: italic;
	line-height: 1.3;
	--tw-text-opacity: 1;
	color: rgba(91, 21, 46, var(--tw-text-opacity));
}
  /* line 10, resources/assets/styles/sections/_quote-content-block.scss */
  .quote_content_block-section .quote-column blockquote p + p{
	margin-top: 1rem;
}

/* line 15, resources/assets/styles/sections/_quote-content-block.scss */
.quote_content_block-section .quote-column cite{
	font-family: Maison, sans-serif;
	font-size: .875rem;
	font-style: normal;
	--tw-text-opacity: 1;
	color: rgba(0, 0, 0, var(--tw-text-opacity));
}

/* line 21, resources/assets/styles/sections/_quote-content-block.scss */
.quote_content_block-section .content-column h2{
	--tw-text-opacity: 1;
	color: rgba(12, 5, 3, var(--tw-text-opacity));
}

/* line 2, resources/assets/styles/sections/_staff-profile.scss */
.staff_profile-section .container {
  max-width: 72rem !important;
  border-radius: 35px;
  --tw-bg-opacity: 1;
  background-color: rgba(246, 249, 252, var(--tw-bg-opacity));
  padding: 2.5rem; }
@media (min-width: 768px){
	.staff_profile-section .container{
		padding: 4rem;
	}
}

/* line 8, resources/assets/styles/sections/_staff-profile.scss */
.staff_profile-section .content-column h2{
	--tw-text-opacity: 1;
	color: rgba(91, 21, 46, var(--tw-text-opacity));
}

/* line 12, resources/assets/styles/sections/_staff-profile.scss */
.staff_profile-section .content-column .staff-name, .staff_profile-section .content-column .staff-title{
	font-family: Maison, sans-serif;
	font-size: 1rem;
	--tw-text-opacity: 1;
	color: rgba(91, 21, 46, var(--tw-text-opacity));
}

/* line 19, resources/assets/styles/sections/_staff-profile.scss */
.staff_profile-section .image-column img{
	display: block;
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

/* line 2, resources/assets/styles/sections/_standard-hero.scss */
.standard_hero-section.bg-blazer{
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
  /* line 5, resources/assets/styles/sections/_standard-hero.scss */
  .standard_hero-section.bg-blazer h1{
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}

/* line 2, resources/assets/styles/sections/_team-carousel.scss */
.team_carousel-section .swiper-slide {
  height: auto; }

/* line 6, resources/assets/styles/sections/_team-carousel.scss */
.team_carousel-section .swiper-pagination{
	position: static;
	margin-left: -0.25rem;
	margin-right: -0.25rem;
	margin-top: 1.5rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
  /* line 9, resources/assets/styles/sections/_team-carousel.scss */
  .team_carousel-section .swiper-pagination-bullet{
	height: 0.625rem;
	width: 0.625rem;
	--tw-bg-opacity: 1;
	background-color: rgba(200, 191, 183, var(--tw-bg-opacity));
	-webkit-transition-property: background-color, border-color, color, fill, stroke;
	-o-transition-property: background-color, border-color, color, fill, stroke;
	transition-property: background-color, border-color, color, fill, stroke;
	-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	     -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-transition-duration: 150ms;
	     -o-transition-duration: 150ms;
	        transition-duration: 150ms;
    margin-left: 0.3125rem !important;
    margin-right: 0.3125rem !important;
}
    /* line 14, resources/assets/styles/sections/_team-carousel.scss */
    .team_carousel-section .swiper-pagination-bullet-active{
	--tw-bg-opacity: 1;
	background-color: rgba(242, 68, 104, var(--tw-bg-opacity));
}

/* line 2, resources/assets/styles/sections/_team-profile.scss */
.team_profile_item-container img{
	display: block;
}

/* line 6, resources/assets/styles/sections/_team-profile.scss */
.team_profile_item-container .team_profile_item-overlay{
	--tw-bg-opacity: 1;
	background-color: rgba(91, 21, 46, var(--tw-bg-opacity));
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}

/* line 10, resources/assets/styles/sections/_team-profile.scss */
.team_profile_item-container .team_profile_item-name{
	font-family: Reckless Neue, serif;
	font-size: 1.125rem;
}

/* line 14, resources/assets/styles/sections/_team-profile.scss */
.team_profile_item-container .team_profile_item-designation{
	margin-top: 0.125rem;
	font-family: Maison, sans-serif;
	font-size: .875rem;
	--tw-text-opacity: 1;
	color: rgba(200, 191, 183, var(--tw-text-opacity));
}

/* line 18, resources/assets/styles/sections/_team-profile.scss */
.team_profile_item-container .team_profile_item-info{
	margin-top: 0.5rem;
	font-family: Maison, sans-serif;
	font-size: .875rem;
}
  /* line 21, resources/assets/styles/sections/_team-profile.scss */
  .team_profile_item-container .team_profile_item-info p + p{
	margin-top: 0.5rem;
}

/* line 2, resources/assets/styles/sections/_text-image-carousel.scss */
.text_image_carousel-section__swiper {
  -webkit-clip-path: inset(-50vw 0 0 -50vw);
          clip-path: inset(-50vw 0 0 -50vw); }
  /* line 4, resources/assets/styles/sections/_text-image-carousel.scss */
  [class*='order-2'] .text_image_carousel-section__swiper {
    -webkit-clip-path: inset(0 -50vw -50vw 0);
            clip-path: inset(0 -50vw -50vw 0); }
    /* line 6, resources/assets/styles/sections/_text-image-carousel.scss */
    [class*='order-2'] .text_image_carousel-section__swiper .swiper-pagination{
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}

/* line 12, resources/assets/styles/sections/_text-image-carousel.scss */
.text_image_carousel-section .swiper-pagination{
	position: static;
	margin-left: -0.25rem;
	margin-right: -0.25rem;
	margin-top: 0.625rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: auto;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}
@media (min-width: 1024px){
	.text_image_carousel-section .swiper-pagination{
		margin-top: 1.5rem;
	}
}
  /* line 14, resources/assets/styles/sections/_text-image-carousel.scss */
  .text_image_carousel-section .swiper-pagination-bullet{
	height: 0.625rem;
	width: 0.625rem;
	--tw-bg-opacity: 1;
	background-color: rgba(200, 191, 183, var(--tw-bg-opacity));
	-webkit-transition-property: background-color, border-color, color, fill, stroke;
	-o-transition-property: background-color, border-color, color, fill, stroke;
	transition-property: background-color, border-color, color, fill, stroke;
	-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	     -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-transition-duration: 150ms;
	     -o-transition-duration: 150ms;
	        transition-duration: 150ms;
    margin-left: 0.3125rem !important;
    margin-right: 0.3125rem !important;
}
    /* line 18, resources/assets/styles/sections/_text-image-carousel.scss */
    .text_image_carousel-section .swiper-pagination-bullet-active{
	height: 0.625rem;
	width: 0.625rem;
	--tw-bg-opacity: 1;
	background-color: rgba(242, 68, 104, var(--tw-bg-opacity));
}

/* line 25, resources/assets/styles/sections/_text-image-carousel.scss */
.text_image_carousel-iframe{
	pointer-events: none;
	position: absolute;
	top: 50%;
	left: 50%;
  width: 200vw;
  height: 150vh;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (min-aspect-ratio: 16 / 9) {
  /* line 33, resources/assets/styles/sections/_text-image-carousel.scss */
  .text_image_carousel-iframe {
    height: 56.25vw; } }

@media (max-aspect-ratio: 16 / 9) {
  /* line 38, resources/assets/styles/sections/_text-image-carousel.scss */
  .text_image_carousel-iframe {
    width: 177.78vh; } }

/* line 2, resources/assets/styles/sections/_wysiwyg.scss */
.wysiwyg-content > p:first-child{
	margin-top: 0px;
}

/* line 6, resources/assets/styles/sections/_wysiwyg.scss */
.wysiwyg-content h2{
	display: block;
	font-family: Maison Demi, sans-serif;
	font-weight: 600;
}

/* line 10, resources/assets/styles/sections/_wysiwyg.scss */
.wysiwyg-content p, .wysiwyg-content li{
	margin-top: 1rem;
	font-family: Maison, sans-serif;
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.25rem;
}
@media (min-width: 768px){
	.wysiwyg-content p, .wysiwyg-content li{
		margin-top: 1.25rem;
	}
	.wysiwyg-content p, .wysiwyg-content li{
		font-size: 1rem;
	}
	.wysiwyg-content p, .wysiwyg-content li{
		line-height: 1.75rem;
	}
}

/* line 15, resources/assets/styles/sections/_wysiwyg.scss */
.wysiwyg-content a:not(a.h-button){
	font-family: Maison Demi, sans-serif;
	--tw-text-opacity: 1;
	color: rgba(242, 68, 104, var(--tw-text-opacity));
	-webkit-transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter;
	transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter;
	-o-transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, filter, backdrop-filter, -o-transform;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-box-shadow, -webkit-transform, -o-transform, -webkit-filter, -webkit-backdrop-filter;
	-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	     -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-transition-duration: 150ms;
	     -o-transition-duration: 150ms;
	        transition-duration: 150ms;
	-webkit-transition-duration: 200ms;
	     -o-transition-duration: 200ms;
	        transition-duration: 200ms;
}
  /* line 18, resources/assets/styles/sections/_wysiwyg.scss */
  .wysiwyg-content a:not(a.h-button):hover{
	text-decoration: underline;
}

/* line 23, resources/assets/styles/sections/_wysiwyg.scss */
.wysiwyg-content ul{
	list-style-type: none;
	padding-left: 0px;
}
  /* line 25, resources/assets/styles/sections/_wysiwyg.scss */
  .wysiwyg-content ul li{
	margin-top: 1rem;
	margin-left: 2rem;
}
  @media (min-width: 768px){
	.wysiwyg-content ul li{
		margin-top: 1.25rem;
	}
}
    /* line 27, resources/assets/styles/sections/_wysiwyg.scss */
    .wysiwyg-content ul li::before {
      content: '';
      margin-bottom: 0.25rem;
      margin-right: 1.75rem;
      margin-left: -2rem;
      display: inline-block;
      height: 0.25rem;
      width: 0.25rem;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      border-radius: 0.25rem;
      --tw-bg-opacity: 1;
      background-color: rgba(35, 33, 33, var(--tw-bg-opacity)); }

/* line 34, resources/assets/styles/sections/_wysiwyg.scss */
.wysiwyg-content ol{
	list-style-type: decimal;
	padding-left: 0px;
}
  /* line 37, resources/assets/styles/sections/_wysiwyg.scss */
  .wysiwyg-content ol li{
	margin-left: 1rem;
	display: list-item;
}

/* line 42, resources/assets/styles/sections/_wysiwyg.scss */
.wysiwyg-content img{
	margin-top: 1.5rem;
	width: 100%;
}

/* line 46, resources/assets/styles/sections/_wysiwyg.scss */
.wysiwyg-content iframe, .wysiwyg-content div.wp-video{
	margin-top: 1.5rem;
	width: 100%;
}
@media (min-width: 768px){
	.wysiwyg-content iframe, .wysiwyg-content div.wp-video{
		height: 24rem;
	}
}

/* line 51, resources/assets/styles/sections/_wysiwyg.scss */
.wysiwyg-content .h-button{
	margin-top: 1rem;
}
@media (min-width: 768px){
	.wysiwyg-content .h-button{
		margin-top: 1.25rem;
	}
}

/* line 56, resources/assets/styles/sections/_wysiwyg.scss */
.wysiwyg-content blockquote p{
	font-family: Reckless Neue, serif;
	font-size: 1.125rem;
	line-height: 1.33333333;
	--tw-text-opacity: 1;
	color: rgba(166, 196, 231, var(--tw-text-opacity));
}
@media (min-width: 768px){
	.wysiwyg-content blockquote p{
		font-size: 1.5rem;
	}
}
  /* line 59, resources/assets/styles/sections/_wysiwyg.scss */
  .wysiwyg-content blockquote p:first-child::before {
    content: '\2018'; }
  /* line 64, resources/assets/styles/sections/_wysiwyg.scss */
  .wysiwyg-content blockquote p:last-child::after {
    content: '\2019'; }

/* line 73, resources/assets/styles/sections/_wysiwyg.scss */
.book_hero-section + .wysiwyg{
	margin-top: -5rem;
	padding-top: 8rem;
}

/* line 77, resources/assets/styles/sections/_wysiwyg.scss */
.book_hero-section + .wellbeing_library_listing-section{
	margin-top: -5rem;
	padding-top: 8rem;
}

/* line 81, resources/assets/styles/sections/_wysiwyg.scss */
.book_hero-section + .news_and_publication_listing-section{
	margin-top: -5rem;
	padding-top: 8rem;
}

/**
 * This injects all of Tailwind's utility classes, generated based on your
 * config file.
 */
.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;
}
.invisible{
	visibility: hidden;
}
.static{
	position: static;
}
.fixed{
	position: fixed;
}
.absolute{
	position: absolute;
}
.relative{
	position: relative;
}
.sticky{
	position: sticky;
}
.inset-0{
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}
.right-4{
	right: 1rem;
}
.bottom-4{
	bottom: 1rem;
}
.left-4{
	left: 1rem;
}
.top-0{
	top: 0px;
}
.left-0{
	left: 0px;
}
.-top-0\.25{
	top: -0.0625rem;
}
.-top-0{
	top: 0px;
}
.right-0{
	right: 0px;
}
.right-16{
	right: 4rem;
}
.bottom-20{
	bottom: 5rem;
}
.bottom-8{
	bottom: 2rem;
}
.bottom-0{
	bottom: 0px;
}
.top-1\/2{
	top: 50%;
}
.left-1\/2{
	left: 50%;
}
.top-\[8px\]{
	top: 8px;
}
.right-\[16px\]{
	right: 16px;
}
.right-1{
	right: 0.25rem;
}
.-bottom-10{
	bottom: -2.5rem;
}
.top-1{
	top: 0.25rem;
}
.bottom-1{
	bottom: 0.25rem;
}
.top-14{
	top: 3.5rem;
}
.left-6{
	left: 1.5rem;
}
.right-6{
	right: 1.5rem;
}
.z-50{
	z-index: 50;
}
.z-30{
	z-index: 30;
}
.z-10{
	z-index: 10;
}
.z-0{
	z-index: 0;
}
.z-5{
	z-index: 5;
}
.z-\[-1\]{
	z-index: -1;
}
.order-2{
	-webkit-box-ordinal-group: 3;
	    -ms-flex-order: 2;
	        order: 2;
}
.col-span-1{
	grid-column: span 1 / span 1;
}
.m-0{
	margin: 0px;
}
.mx-auto{
	margin-left: auto;
	margin-right: auto;
}
.mx-9{
	margin-left: 2.25rem;
	margin-right: 2.25rem;
}
.-mx-1{
	margin-left: -0.25rem;
	margin-right: -0.25rem;
}
.my-2{
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}
.mb-0{
	margin-bottom: 0px;
}
.mt-4{
	margin-top: 1rem;
}
.mt-6{
	margin-top: 1.5rem;
}
.mt-8{
	margin-top: 2rem;
}
.mt-\[14px\]{
	margin-top: 14px;
}
.mt-3{
	margin-top: 0.75rem;
}
.-ml-1{
	margin-left: -0.25rem;
}
.mt-3\.5{
	margin-top: 0.875rem;
}
.mt-1{
	margin-top: 0.25rem;
}
.ml-2{
	margin-left: 0.5rem;
}
.ml-8{
	margin-left: 2rem;
}
.mb-4{
	margin-bottom: 1rem;
}
.mt-7{
	margin-top: 1.75rem;
}
.mt-10{
	margin-top: 2.5rem;
}
.mt-\[60px\]{
	margin-top: 60px;
}
.mt-5{
	margin-top: 1.25rem;
}
.mt-9{
	margin-top: 2.25rem;
}
.mt-2{
	margin-top: 0.5rem;
}
.mt-10\.5{
	margin-top: 2.625rem;
}
.mt-0{
	margin-top: 0px;
}
.mt-2\.5{
	margin-top: 0.625rem;
}
.mb-1{
	margin-bottom: 0.25rem;
}
.mr-7{
	margin-right: 1.75rem;
}
.ml-\[1px\]{
	margin-left: 1px;
}
.mb-2{
	margin-bottom: 0.5rem;
}
.ml-7{
	margin-left: 1.75rem;
}
.mt-18{
	margin-top: 4.5rem;
}
.block{
	display: block;
}
.inline-block{
	display: inline-block;
}
.flex{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.inline-flex{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
}
.grid{
	display: grid;
}
.list-item{
	display: list-item;
}
.hidden{
	display: none;
}
.h-16{
	height: 4rem;
}
.h-7{
	height: 1.75rem;
}
.h-1\.75{
	height: 0.4375rem;
}
.h-1{
	height: 0.25rem;
}
.h-auto{
	height: auto;
}
.h-28{
	height: 7rem;
}
.h-full{
	height: 100%;
}
.h-\[197px\]{
	height: 197px;
}
.h-8{
	height: 2rem;
}
.h-\[203px\]{
	height: 203px;
}
.h-\[168px\]{
	height: 168px;
}
.h-\[23px\]{
	height: 23px;
}
.h-5{
	height: 1.25rem;
}
.h-2\.5{
	height: 0.625rem;
}
.h-2{
	height: 0.5rem;
}
.h-9{
	height: 2.25rem;
}
.h-10{
	height: 2.5rem;
}
.h-25{
	height: 6.25rem;
}
.h-\[80px\]{
	height: 80px;
}
.h-\[314px\]{
	height: 314px;
}
.h-\[163px\]{
	height: 163px;
}
.h-\[152px\]{
	height: 152px;
}
.h-30{
	height: 7.5rem;
}
.h-screen-video{
	height: var(--screen-height-video);
}
.h-\[470px\]{
	height: 470px;
}
.h-3{
	height: 0.75rem;
}
.h-\[590px\]{
	height: 590px;
}
.h-\[204px\]{
	height: 204px;
}
.h-6{
	height: 1.5rem;
}
.h-0\.5{
	height: 0.125rem;
}
.h-0{
	height: 0px;
}
.h-\[3px\]{
	height: 3px;
}
.h-\[22px\]{
	height: 22px;
}
.h-\[2px\]{
	height: 2px;
}
.h-\[48px\]{
	height: 48px;
}
.h-4{
	height: 1rem;
}
.h-12{
	height: 3rem;
}
.h-12\.5{
	height: 3.125rem;
}
.h-4\.25{
	height: 1.0625rem;
}
.h-1\.5{
	height: 0.375rem;
}
.max-h-\[314px\]{
	max-height: 314px;
}
.max-h-\[163px\]{
	max-height: 163px;
}
.max-h-\[680px\]{
	max-height: 680px;
}
.max-h-\[678px\]{
	max-height: 678px;
}
.max-h-\[346px\]{
	max-height: 346px;
}
.max-h-\[204px\]{
	max-height: 204px;
}
.max-h-0{
	max-height: 0px;
}
.max-h-192{
	max-height: 48rem;
}
.min-h-\[660px\]{
	min-height: 660px;
}
.min-h-\[800px\]{
	min-height: 800px;
}
.min-h-66{
	min-height: 4.125rem;
}
.min-h-\[447px\]{
	min-height: 447px;
}
.w-full{
	width: 100%;
}
.w-7{
	width: 1.75rem;
}
.w-5{
	width: 1.25rem;
}
.w-16{
	width: 4rem;
}
.w-51{
	width: 12.6875rem;
}
.w-28{
	width: 7rem;
}
.w-2\.5{
	width: 0.625rem;
}
.w-2{
	width: 0.5rem;
}
.w-max{
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
}
.w-9{
	width: 2.25rem;
}
.w-10{
	width: 2.5rem;
}
.w-auto{
	width: auto;
}
.w-25{
	width: 6.25rem;
}
.w-3{
	width: 0.75rem;
}
.w-6{
	width: 1.5rem;
}
.w-0\.5{
	width: 0.125rem;
}
.w-0{
	width: 0px;
}
.w-1{
	width: 0.25rem;
}
.w-\[22px\]{
	width: 22px;
}
.w-\[48px\]{
	width: 48px;
}
.w-12{
	width: 3rem;
}
.w-19{
	width: 4.75rem;
}
.w-px{
	width: 1px;
}
.min-w-26\.25{
	min-width: 6.5625rem;
}
.min-w-\[100px\]{
	min-width: 100px;
}
.min-w-full{
	min-width: 100%;
}
.max-w-\[620px\]{
	max-width: 620px;
}
.max-w-2xl{
	max-width: 42rem;
}
.max-w-\[437px\]{
	max-width: 437px;
}
.max-w-33{
	max-width: 8.25rem;
}
.max-w-\[600px\]{
	max-width: 600px;
}
.max-w-\[670px\]{
	max-width: 670px;
}
.max-w-\[320px\]{
	max-width: 320px;
}
.max-w-lg{
	max-width: 32rem;
}
.max-w-\[642px\]{
	max-width: 642px;
}
.max-w-\[459px\]{
	max-width: 459px;
}
.max-w-\[170px\]{
	max-width: 170px;
}
.max-w-\[1137px\]{
	max-width: 1137px;
}
.max-w-full{
	max-width: 100%;
}
.flex-shrink-0{
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
.flex-shrink{
	-ms-flex-negative: 1;
	    flex-shrink: 1;
}
.flex-grow{
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
}
.origin-left{
	-webkit-transform-origin: left;
	     -o-transform-origin: left;
	        transform-origin: left;
}
.-translate-x-1\/2{
	--tw-translate-x: -50%;
	-webkit-transform: var(--tw-transform);
	     -o-transform: var(--tw-transform);
	        transform: var(--tw-transform);
}
.-translate-y-1\/2{
	--tw-translate-y: -50%;
	-webkit-transform: var(--tw-transform);
	     -o-transform: var(--tw-transform);
	        transform: var(--tw-transform);
}
.translate-y-full{
	--tw-translate-y: 100%;
	-webkit-transform: var(--tw-transform);
	     -o-transform: var(--tw-transform);
	        transform: var(--tw-transform);
}
.-translate-y-2{
	--tw-translate-y: -0.5rem;
	-webkit-transform: var(--tw-transform);
	     -o-transform: var(--tw-transform);
	        transform: var(--tw-transform);
}
.translate-y-2{
	--tw-translate-y: 0.5rem;
	-webkit-transform: var(--tw-transform);
	     -o-transform: var(--tw-transform);
	        transform: var(--tw-transform);
}
.scale-x-0{
	--tw-scale-x: 0;
	-webkit-transform: var(--tw-transform);
	     -o-transform: var(--tw-transform);
	        transform: var(--tw-transform);
}
.transform{
	-webkit-transform: var(--tw-transform);
	     -o-transform: var(--tw-transform);
	        transform: var(--tw-transform);
}
.cursor-pointer{
	cursor: pointer;
}
.resize{
	resize: both;
}
.list-none{
	list-style-type: none;
}
.list-decimal{
	list-style-type: decimal;
}
.appearance-none{
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
}
.grid-cols-2{
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-1{
	grid-template-columns: repeat(1, minmax(0, 1fr));
}
.flex-row{
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
}
.flex-row-reverse{
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: row-reverse;
	        flex-direction: row-reverse;
}
.flex-col{
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.flex-col-reverse{
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: column-reverse;
	        flex-direction: column-reverse;
}
.flex-wrap{
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.flex-nowrap{
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
}
.items-start{
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.items-end{
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}
.items-center{
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.justify-start{
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}
.justify-end{
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}
.justify-center{
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.justify-between{
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.gap-x-2{
	-webkit-column-gap: 0.5rem;
	   -moz-column-gap: 0.5rem;
	        column-gap: 0.5rem;
}
.gap-x-7{
	-webkit-column-gap: 1.75rem;
	   -moz-column-gap: 1.75rem;
	        column-gap: 1.75rem;
}
.gap-y-10{
	row-gap: 2.5rem;
}
.gap-y-7{
	row-gap: 1.75rem;
}
.gap-x-4{
	-webkit-column-gap: 1rem;
	   -moz-column-gap: 1rem;
	        column-gap: 1rem;
}
.gap-y-4{
	row-gap: 1rem;
}
.gap-x-3{
	-webkit-column-gap: 0.75rem;
	   -moz-column-gap: 0.75rem;
	        column-gap: 0.75rem;
}
.gap-y-8{
	row-gap: 2rem;
}
.gap-y-\[14px\]{
	row-gap: 14px;
}
.overflow-auto{
	overflow: auto;
}
.overflow-hidden{
	overflow: hidden;
}
.overflow-x-hidden{
	overflow-x: hidden;
}
.whitespace-nowrap{
	white-space: nowrap;
}
.rounded-full{
	border-radius: 9999px;
}
.rounded-\[35px\]{
	border-radius: 35px;
}
.rounded{
	border-radius: 0.25rem;
}
.border-2{
	border-width: 2px;
}
.border{
	border-width: 1px;
}
.border-t-2{
	border-top-width: 2px;
}
.border-b-2{
	border-bottom-width: 2px;
}
.border-b-3{
	border-bottom-width: 3px;
}
.border-b{
	border-bottom-width: 1px;
}
.border-t{
	border-top-width: 1px;
}
.border-l-\[6px\]{
	border-left-width: 6px;
}
.border-solid{
	border-style: solid;
}
.border-heritage{
	--tw-border-opacity: 1;
	border-color: rgba(166, 196, 231, var(--tw-border-opacity));
}
.border-gray-900{
	--tw-border-opacity: 1;
	border-color: rgba(151, 151, 151, var(--tw-border-opacity));
}
.border-blazer{
	--tw-border-opacity: 1;
	border-color: rgba(91, 21, 46, var(--tw-border-opacity));
}
.border-rose{
	--tw-border-opacity: 1;
	border-color: rgba(242, 68, 104, var(--tw-border-opacity));
}
.border-fake-black{
	--tw-border-opacity: 1;
	border-color: rgba(35, 33, 33, var(--tw-border-opacity));
}
.border-white{
	--tw-border-opacity: 1;
	border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}
.border-sandstone{
	--tw-border-opacity: 1;
	border-color: rgba(246, 220, 128, var(--tw-border-opacity));
}
.border-gray-300{
	--tw-border-opacity: 1;
	border-color: rgba(200, 191, 183, var(--tw-border-opacity));
}
.border-transparent{
	border-color: transparent;
}
.border-opacity-50{
	--tw-border-opacity: 0.5;
}
.border-opacity-30{
	--tw-border-opacity: 0.3;
}
.bg-gray-200{
	--tw-bg-opacity: 1;
	background-color: rgba(247, 245, 245, var(--tw-bg-opacity));
}
.bg-blazer{
	--tw-bg-opacity: 1;
	background-color: rgba(91, 21, 46, var(--tw-bg-opacity));
}
.bg-white{
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}
.bg-heritage{
	--tw-bg-opacity: 1;
	background-color: rgba(166, 196, 231, var(--tw-bg-opacity));
}
.bg-sandstone{
	--tw-bg-opacity: 1;
	background-color: rgba(246, 220, 128, var(--tw-bg-opacity));
}
.bg-rose{
	--tw-bg-opacity: 1;
	background-color: rgba(242, 68, 104, var(--tw-bg-opacity));
}
.bg-transparent{
	background-color: transparent;
}
.bg-\[\#f8f8f8\]{
	--tw-bg-opacity: 1;
	background-color: rgba(248, 248, 248, var(--tw-bg-opacity));
}
.bg-fake-black{
	--tw-bg-opacity: 1;
	background-color: rgba(35, 33, 33, var(--tw-bg-opacity));
}
.bg-category_color{
	background-color: var(--category-color);
}
.bg-\[\#F7F5F5\]{
	--tw-bg-opacity: 1;
	background-color: rgba(247, 245, 245, var(--tw-bg-opacity));
}
.bg-\[\#f6f9fc\]{
	--tw-bg-opacity: 1;
	background-color: rgba(246, 249, 252, var(--tw-bg-opacity));
}
.bg-gray-300{
	--tw-bg-opacity: 1;
	background-color: rgba(200, 191, 183, var(--tw-bg-opacity));
}
.object-cover{
	-o-object-fit: cover;
	   object-fit: cover;
}
.object-top{
	-o-object-position: top;
	   object-position: top;
}
.p-1{
	padding: 0.25rem;
}
.p-10{
	padding: 2.5rem;
}
.p-0{
	padding: 0px;
}
.px-3{
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}
.py-5{
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
}
.py-4{
	padding-top: 1rem;
	padding-bottom: 1rem;
}
.py-\[13px\]{
	padding-top: 13px;
	padding-bottom: 13px;
}
.py-10{
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}
.px-\[22px\]{
	padding-left: 22px;
	padding-right: 22px;
}
.py-8{
	padding-top: 2rem;
	padding-bottom: 2rem;
}
.py-12{
	padding-top: 3rem;
	padding-bottom: 3rem;
}
.px-6{
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
.py-\[83px\]{
	padding-top: 83px;
	padding-bottom: 83px;
}
.px-4{
	padding-left: 1rem;
	padding-right: 1rem;
}
.px-0{
	padding-left: 0px;
	padding-right: 0px;
}
.px-5\.375{
	padding-left: 1.375rem;
	padding-right: 1.375rem;
}
.px-5{
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}
.py-18{
	padding-top: 4.5rem;
	padding-bottom: 4.5rem;
}
.py-\[30px\]{
	padding-top: 30px;
	padding-bottom: 30px;
}
.py-6{
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}
.py-2{
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}
.px-12{
	padding-left: 3rem;
	padding-right: 3rem;
}
.py-14{
	padding-top: 3.5rem;
	padding-bottom: 3.5rem;
}
.pt-8{
	padding-top: 2rem;
}
.pb-18{
	padding-bottom: 4.5rem;
}
.pt-2{
	padding-top: 0.5rem;
}
.pl-\[17px\]{
	padding-left: 17px;
}
.pb-14{
	padding-bottom: 3.5rem;
}
.pb-7{
	padding-bottom: 1.75rem;
}
.pr-2{
	padding-right: 0.5rem;
}
.pl-0{
	padding-left: 0px;
}
.pt-\[33px\]{
	padding-top: 33px;
}
.pb-10{
	padding-bottom: 2.5rem;
}
.pt-11{
	padding-top: 2.75rem;
}
.pt-12{
	padding-top: 3rem;
}
.pb-1{
	padding-bottom: 0.25rem;
}
.pb-8{
	padding-bottom: 2rem;
}
.pb-video{
	padding-bottom: 56.25%;
}
.pt-\[90px\]{
	padding-top: 90px;
}
.pb-20{
	padding-bottom: 5rem;
}
.pt-26{
	padding-top: 6.5rem;
}
.pb-\[86px\]{
	padding-bottom: 86px;
}
.pt-\[54px\]{
	padding-top: 54px;
}
.pb-\[51px\]{
	padding-bottom: 51px;
}
.pt-24{
	padding-top: 6rem;
}
.pt-6{
	padding-top: 1.5rem;
}
.pt-20{
	padding-top: 5rem;
}
.pt-9{
	padding-top: 2.25rem;
}
.pb-\[59px\]{
	padding-bottom: 59px;
}
.pt-7{
	padding-top: 1.75rem;
}
.pl-2{
	padding-left: 0.5rem;
}
.pt-10{
	padding-top: 2.5rem;
}
.pb-6{
	padding-bottom: 1.5rem;
}
.pb-\[56\.25\%\]{
	padding-bottom: 56.25%;
}
.pt-22{
	padding-top: 5.5rem;
}
.pt-5{
	padding-top: 1.25rem;
}
.pt-0{
	padding-top: 0px;
}
.pb-0{
	padding-bottom: 0px;
}
.pt-32{
	padding-top: 8rem;
}
.text-left{
	text-align: left;
}
.text-center{
	text-align: center;
}
.font-reckless{
	font-family: Reckless Neue, serif;
}
.font-maison{
	font-family: Maison, sans-serif;
}
.font-reckless-book{
	font-family: Reckless Neue Book, serif;
}
.font-maison-demi{
	font-family: Maison Demi, sans-serif;
}
.text-xl{
	font-size: 1.25rem;
}
.text-xs{
	font-size: 0.75rem;
}
.text-2xs{
	font-size: 0.6875rem;
}
.text-base{
	font-size: 1rem;
}
.text-xsm{
	font-size: 0.8125rem;
}
.text-xxs{
	font-size: 0.5625rem;
}
.text-\[13px\]{
	font-size: 13px;
}
.text-sm{
	font-size: .875rem;
}
.text-3xl{
	font-size: 1.875rem;
}
.text-5xl{
	font-size: 2rem;
}
.text-lg{
	font-size: 1.125rem;
}
.text-6xl{
	font-size: 2.25rem;
}
.text-2xl{
	font-size: 1.5rem;
}
.text-7xl{
	font-size: 2.5rem;
}
.text-4xl{
	font-size: 1.75rem;
}
.text-tiny{
	font-size: .875rem;
}
.text-9xl{
	font-size: 3.5rem;
}
.text-\[26px\]{
	font-size: 26px;
}
.font-bold{
	font-weight: 700;
}
.font-medium{
	font-weight: 500;
}
.font-normal{
	font-weight: 400;
}
.font-semibold{
	font-weight: 600;
}
.uppercase{
	text-transform: uppercase;
}
.italic{
	font-style: italic;
}
.not-italic{
	font-style: normal;
}
.leading-8{
	line-height: 2rem;
}
.leading-6{
	line-height: 1.5rem;
}
.leading-4{
	line-height: 1rem;
}
.leading-5{
	line-height: 1.25rem;
}
.leading-\[14px\]{
	line-height: 14px;
}
.leading-9{
	line-height: 2.25rem;
}
.leading-7{
	line-height: 1.75rem;
}
.leading-\[21px\]{
	line-height: 21px;
}
.leading-10{
	line-height: 2.5rem;
}
.leading-\[22px\]{
	line-height: 22px;
}
.leading-\[1\.3\]{
	line-height: 1.3;
}
.leading-none{
	line-height: 1;
}
.tracking-widest{
	letter-spacing: 0.25em;
}
.tracking-extra-normal{
	letter-spacing: 0.015rem;
}
.tracking-tightest{
	letter-spacing: -0.03125rem;
}
.text-fake-black{
	--tw-text-opacity: 1;
	color: rgba(35, 33, 33, var(--tw-text-opacity));
}
.text-blazer{
	--tw-text-opacity: 1;
	color: rgba(91, 21, 46, var(--tw-text-opacity));
}
.text-gray-350{
	--tw-text-opacity: 1;
	color: rgba(151, 143, 138, var(--tw-text-opacity));
}
.text-white{
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.text-rose{
	--tw-text-opacity: 1;
	color: rgba(242, 68, 104, var(--tw-text-opacity));
}
.text-sandstone{
	--tw-text-opacity: 1;
	color: rgba(246, 220, 128, var(--tw-text-opacity));
}
.text-heritage{
	--tw-text-opacity: 1;
	color: rgba(166, 196, 231, var(--tw-text-opacity));
}
.text-\[\#5b152e\]{
	--tw-text-opacity: 1;
	color: rgba(91, 21, 46, var(--tw-text-opacity));
}
.text-\[\#0c0503\]{
	--tw-text-opacity: 1;
	color: rgba(12, 5, 3, var(--tw-text-opacity));
}
.text-gray-300{
	--tw-text-opacity: 1;
	color: rgba(200, 191, 183, var(--tw-text-opacity));
}
.placeholder-white::-webkit-input-placeholder{
	--tw-placeholder-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
}
.placeholder-white::-moz-placeholder{
	--tw-placeholder-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
}
.placeholder-white:-ms-input-placeholder{
	--tw-placeholder-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
}
.placeholder-white::-ms-input-placeholder{
	--tw-placeholder-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
}
.placeholder-white::placeholder{
	--tw-placeholder-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
}
.opacity-30{
	opacity: 0.3;
}
.opacity-100{
	opacity: 1;
}
.opacity-0{
	opacity: 0;
}
.opacity-40{
	opacity: 0.4;
}
.shadow-none{
	--tw-shadow: 0 0 #0000;
	-webkit-box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
	        box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline-none{
	outline: 2px solid transparent;
	outline-offset: 2px;
}
.blur{
	--tw-blur: blur(8px);
	-webkit-filter: var(--tw-filter);
	        filter: var(--tw-filter);
}
.filter{
	-webkit-filter: var(--tw-filter);
	        filter: var(--tw-filter);
}
.transition-all{
	-webkit-transition-property: all;
	-o-transition-property: all;
	transition-property: all;
	-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	     -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-transition-duration: 150ms;
	     -o-transition-duration: 150ms;
	        transition-duration: 150ms;
}
.transition-transform{
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: -o-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform, -o-transform;
	-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	     -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-transition-duration: 150ms;
	     -o-transition-duration: 150ms;
	        transition-duration: 150ms;
}
.transition{
	-webkit-transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter;
	transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter;
	-o-transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, filter, backdrop-filter, -o-transform;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-box-shadow, -webkit-transform, -o-transform, -webkit-filter, -webkit-backdrop-filter;
	-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	     -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-transition-duration: 150ms;
	     -o-transition-duration: 150ms;
	        transition-duration: 150ms;
}
.transition-colors{
	-webkit-transition-property: background-color, border-color, color, fill, stroke;
	-o-transition-property: background-color, border-color, color, fill, stroke;
	transition-property: background-color, border-color, color, fill, stroke;
	-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	     -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-transition-duration: 150ms;
	     -o-transition-duration: 150ms;
	        transition-duration: 150ms;
}
.delay-200{
	-webkit-transition-delay: 200ms;
	     -o-transition-delay: 200ms;
	        transition-delay: 200ms;
}
.duration-200{
	-webkit-transition-duration: 200ms;
	     -o-transition-duration: 200ms;
	        transition-duration: 200ms;
}
.duration-500{
	-webkit-transition-duration: 500ms;
	     -o-transition-duration: 500ms;
	        transition-duration: 500ms;
}
.ease-in-out{
	-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	     -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.before\:bg-blazer::before{
	content: "";
	--tw-bg-opacity: 1;
	background-color: rgba(91, 21, 46, var(--tw-bg-opacity));
}
.first\:mt-0:first-child{
	margin-top: 0px;
}
.first\:ml-0:first-child{
	margin-left: 0px;
}
.last\:items-end:last-child{
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}
.hover\:border-l-\[6px\]:hover{
	border-left-width: 6px;
}
.hover\:bg-rose:hover{
	--tw-bg-opacity: 1;
	background-color: rgba(242, 68, 104, var(--tw-bg-opacity));
}
.hover\:pl-5:hover{
	padding-left: 1.25rem;
}
.hover\:text-rose:hover{
	--tw-text-opacity: 1;
	color: rgba(242, 68, 104, var(--tw-text-opacity));
}
.hover\:text-heritage:hover{
	--tw-text-opacity: 1;
	color: rgba(166, 196, 231, var(--tw-text-opacity));
}
.hover\:text-white:hover{
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.hover\:opacity-100:hover{
	opacity: 1;
}
.focus\:border-l-\[6px\]:focus{
	border-left-width: 6px;
}
.focus\:pl-5:focus{
	padding-left: 1.25rem;
}
.focus\:outline-none:focus{
	outline: 2px solid transparent;
	outline-offset: 2px;
}
.group:hover .group-hover\:translate-y-0{
	--tw-translate-y: 0px;
	-webkit-transform: var(--tw-transform);
	     -o-transform: var(--tw-transform);
	        transform: var(--tw-transform);
}
.group:hover .group-hover\:cursor-pointer{
	cursor: pointer;
}
.group:hover .group-hover\:text-opacity-50{
	--tw-text-opacity: 0.5;
}
.group:hover .group-hover\:transition{
	-webkit-transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter;
	transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter;
	-o-transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, filter, backdrop-filter, -o-transform;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-box-shadow, -webkit-transform, -o-transform, -webkit-filter, -webkit-backdrop-filter;
	-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	     -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-transition-duration: 150ms;
	     -o-transition-duration: 150ms;
	        transition-duration: 150ms;
}
.group:hover .group-hover\:duration-200{
	-webkit-transition-duration: 200ms;
	     -o-transition-duration: 200ms;
	        transition-duration: 200ms;
}
@media (min-width: 375px){
	.smmd\:block{
		display: block;
	}
	.smmd\:hidden{
		display: none;
	}
}
@media (min-width: 425px){
	.smlg\:top-1\/5{
		top: 20%;
	}
	.smlg\:block{
		display: block;
	}
	.smlg\:hidden{
		display: none;
	}
	.smlg\:h-\[370px\]{
		height: 370px;
	}
	.smlg\:max-h-\[496px\]{
		max-height: 496px;
	}
}
@media (min-width: 500px){
	.xsm\:w-1\/2{
		width: 50%;
	}
	.xsm\:grid-cols-2{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.xsm\:gap-x-\[14px\]{
		-webkit-column-gap: 14px;
		   -moz-column-gap: 14px;
		        column-gap: 14px;
	}
	.xsm\:px-4{
		padding-left: 1rem;
		padding-right: 1rem;
	}
}
@media (min-width: 640px){
	.sm\:block{
		display: block;
	}
	.sm\:hidden{
		display: none;
	}
	.sm\:h-\[228px\]{
		height: 228px;
	}
	.sm\:h-auto{
		height: auto;
	}
	.sm\:h-\[496px\]{
		height: 496px;
	}
	.sm\:max-w-33{
		max-width: 8.25rem;
	}
	.sm\:max-w-\[672px\]{
		max-width: 672px;
	}
	.sm\:gap-x-\[30px\]{
		-webkit-column-gap: 30px;
		   -moz-column-gap: 30px;
		        column-gap: 30px;
	}
	.sm\:px-8{
		padding-left: 2rem;
		padding-right: 2rem;
	}
	.sm\:text-base{
		font-size: 1rem;
	}
	.sm\:text-9xl{
		font-size: 3.5rem;
	}
	.sm\:leading-7{
		line-height: 1.75rem;
	}
	.sm\:leading-6{
		line-height: 1.5rem;
	}
	.sm\:leading-13{
		line-height: 3.5rem;
	}
}
@media (min-width: 768px){
	.md\:absolute{
		position: absolute;
	}
	.md\:relative{
		position: relative;
	}
	.md\:bottom-\[88px\]{
		bottom: 88px;
	}
	.md\:top-0{
		top: 0px;
	}
	.md\:left-0{
		left: 0px;
	}
	.md\:top-\[20px\]{
		top: 20px;
	}
	.md\:mt-10{
		margin-top: 2.5rem;
	}
	.md\:mt-18{
		margin-top: 4.5rem;
	}
	.md\:ml-3{
		margin-left: 0.75rem;
	}
	.md\:mt-1{
		margin-top: 0.25rem;
	}
	.md\:mt-0{
		margin-top: 0px;
	}
	.md\:mt-2{
		margin-top: 0.5rem;
	}
	.md\:mt-14{
		margin-top: 3.5rem;
	}
	.md\:mt-4{
		margin-top: 1rem;
	}
	.md\:mt-12{
		margin-top: 3rem;
	}
	.md\:mt-7{
		margin-top: 1.75rem;
	}
	.md\:mt-\[61px\]{
		margin-top: 61px;
	}
	.md\:mt-5{
		margin-top: 1.25rem;
	}
	.md\:mt-9{
		margin-top: 2.25rem;
	}
	.md\:block{
		display: block;
	}
	.md\:inline-block{
		display: inline-block;
	}
	.md\:flex{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.md\:grid{
		display: grid;
	}
	.md\:hidden{
		display: none;
	}
	.md\:h-34{
		height: 8.375rem;
	}
	.md\:h-8{
		height: 2rem;
	}
	.md\:h-full{
		height: 100%;
	}
	.md\:h-\[136px\]{
		height: 136px;
	}
	.md\:h-\[600px\]{
		height: 600px;
	}
	.md\:h-170{
		height: 42.5rem;
	}
	.md\:h-\[678px\]{
		height: 678px;
	}
	.md\:h-16{
		height: 4rem;
	}
	.md\:min-h-\[320px\]{
		min-height: 320px;
	}
	.md\:min-h-\[460px\]{
		min-height: 460px;
	}
	.md\:w-34{
		width: 8.375rem;
	}
	.md\:w-1\/3{
		width: 33.333333%;
	}
	.md\:w-\[125px\]{
		width: 125px;
	}
	.md\:w-full{
		width: 100%;
	}
	.md\:w-\[250px\]{
		width: 250px;
	}
	.md\:w-2\/5{
		width: 40%;
	}
	.md\:w-3\/5{
		width: 60%;
	}
	.md\:w-1\/2{
		width: 50%;
	}
	.md\:max-w-full{
		max-width: 100%;
	}
	.md\:max-w-51{
		max-width: 12.6875rem;
	}
	.md\:max-w-2xl{
		max-width: 42rem;
	}
	.md\:max-w-\[561px\]{
		max-width: 561px;
	}
	.md\:max-w-147{
		max-width: 36.875rem;
	}
	.md\:max-w-\[278px\]{
		max-width: 278px;
	}
	.md\:flex-1{
		-webkit-box-flex: 1;
		    -ms-flex: 1 1 0%;
		        flex: 1 1 0%;
	}
	.md\:grid-cols-2{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.md\:flex-row{
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
	}
	.md\:flex-row-reverse{
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: row-reverse;
		        flex-direction: row-reverse;
	}
	.md\:flex-col{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.md\:flex-wrap{
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
	.md\:items-start{
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}
	.md\:items-end{
		-webkit-box-align: end;
		    -ms-flex-align: end;
		        align-items: flex-end;
	}
	.md\:items-center{
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
	.md\:justify-start{
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
	}
	.md\:justify-end{
		-webkit-box-pack: end;
		    -ms-flex-pack: end;
		        justify-content: flex-end;
	}
	.md\:justify-between{
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}
	.md\:gap-\[30px\]{
		gap: 30px;
	}
	.md\:gap-x-16{
		-webkit-column-gap: 4rem;
		   -moz-column-gap: 4rem;
		        column-gap: 4rem;
	}
	.md\:gap-x-7{
		-webkit-column-gap: 1.75rem;
		   -moz-column-gap: 1.75rem;
		        column-gap: 1.75rem;
	}
	.md\:gap-y-10{
		row-gap: 2.5rem;
	}
	.md\:gap-y-\[42px\]{
		row-gap: 42px;
	}
	.md\:overflow-hidden{
		overflow: hidden;
	}
	.md\:p-5{
		padding: 1.25rem;
	}
	.md\:p-4{
		padding: 1rem;
	}
	.md\:py-\[93px\]{
		padding-top: 93px;
		padding-bottom: 93px;
	}
	.md\:px-0{
		padding-left: 0px;
		padding-right: 0px;
	}
	.md\:py-20{
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
	.md\:px-14{
		padding-left: 3.5rem;
		padding-right: 3.5rem;
	}
	.md\:py-14{
		padding-top: 3.5rem;
		padding-bottom: 3.5rem;
	}
	.md\:px-30{
		padding-left: 7.5rem;
		padding-right: 7.5rem;
	}
	.md\:py-0{
		padding-top: 0px;
		padding-bottom: 0px;
	}
	.md\:py-11{
		padding-top: 2.75rem;
		padding-bottom: 2.75rem;
	}
	.md\:px-12{
		padding-left: 3rem;
		padding-right: 3rem;
	}
	.md\:py-18{
		padding-top: 4.5rem;
		padding-bottom: 4.5rem;
	}
	.md\:px-\[34px\]{
		padding-left: 34px;
		padding-right: 34px;
	}
	.md\:px-\[100px\]{
		padding-left: 100px;
		padding-right: 100px;
	}
	.md\:pb-11{
		padding-bottom: 2.75rem;
	}
	.md\:pr-\[113px\]{
		padding-right: 113px;
	}
	.md\:pt-7\.8125{
		padding-top: 1.8125rem;
	}
	.md\:pb-14{
		padding-bottom: 3.5rem;
	}
	.md\:pt-7{
		padding-top: 1.75rem;
	}
	.md\:pt-0{
		padding-top: 0px;
	}
	.md\:pt-9{
		padding-top: 2.25rem;
	}
	.md\:pt-12{
		padding-top: 3rem;
	}
	.md\:pt-\[51px\]{
		padding-top: 51px;
	}
	.md\:pb-\[97px\]{
		padding-bottom: 97px;
	}
	.md\:pr-10{
		padding-right: 2.5rem;
	}
	.md\:pt-25{
		padding-top: 6.25rem;
	}
	.md\:pb-33{
		padding-bottom: 8.25rem;
	}
	.md\:pb-22{
		padding-bottom: 5.5rem;
	}
	.md\:pb-0{
		padding-bottom: 0px;
	}
	.md\:pr-9{
		padding-right: 2.25rem;
	}
	.md\:pl-9{
		padding-left: 2.25rem;
	}
	.md\:pt-33{
		padding-top: 8.25rem;
	}
	.md\:pb-28{
		padding-bottom: 7rem;
	}
	.md\:pt-\[99px\]{
		padding-top: 99px;
	}
	.md\:pb-\[124px\]{
		padding-bottom: 124px;
	}
	.md\:pb-\[82px\]{
		padding-bottom: 82px;
	}
	.md\:pt-24{
		padding-top: 6rem;
	}
	.md\:pb-8{
		padding-bottom: 2rem;
	}
	.md\:pt-6{
		padding-top: 1.5rem;
	}
	.md\:pt-10{
		padding-top: 2.5rem;
	}
	.md\:pb-\[34px\]{
		padding-bottom: 34px;
	}
	.md\:pt-29{
		padding-top: 7.25rem;
	}
	.md\:pt-\[74px\]{
		padding-top: 74px;
	}
	.md\:pt-14{
		padding-top: 3.5rem;
	}
	.md\:pb-16{
		padding-bottom: 4rem;
	}
	.md\:text-left{
		text-align: left;
	}
	.md\:text-center{
		text-align: center;
	}
	.md\:text-xl{
		font-size: 1.25rem;
	}
	.md\:text-tiny{
		font-size: .875rem;
	}
	.md\:text-sm{
		font-size: .875rem;
	}
	.md\:text-5xl{
		font-size: 2rem;
	}
	.md\:text-8\.5xl{
		font-size: 3.125rem;
	}
	.md\:text-base{
		font-size: 1rem;
	}
	.md\:text-8xl{
		font-size: 3rem;
	}
	.md\:text-lg{
		font-size: 1.125rem;
	}
	.md\:text-2xl{
		font-size: 1.5rem;
	}
	.md\:leading-\[22px\]{
		line-height: 22px;
	}
	.md\:leading-6{
		line-height: 1.5rem;
	}
	.md\:leading-9{
		line-height: 2.25rem;
	}
	.md\:leading-5{
		line-height: 1.25rem;
	}
	.md\:leading-13{
		line-height: 3.5rem;
	}
	.md\:leading-7{
		line-height: 1.75rem;
	}
	.md\:leading-\[52px\]{
		line-height: 52px;
	}
	.md\:leading-6\.5{
		line-height: 1.625rem;
	}
	.md\:leading-14{
		line-height: 3.875rem;
	}
	.md\:leading-\[19px\]{
		line-height: 19px;
	}
	.md\:first\:mt-0:first-child{
		margin-top: 0px;
	}
	.md\:last\:items-start:last-child{
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}
	.md\:last\:pr-0:last-child{
		padding-right: 0px;
	}
}
@media (min-width: 900px){
	.mdlg\:grid-cols-3{
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
@media (min-width: 1024px){
	.lg\:visible{
		visibility: visible;
	}
	.lg\:static{
		position: static;
	}
	.lg\:absolute{
		position: absolute;
	}
	.lg\:relative{
		position: relative;
	}
	.lg\:inset-auto{
		top: auto;
		right: auto;
		bottom: auto;
		left: auto;
	}
	.lg\:left-1{
		left: 0.25rem;
	}
	.lg\:-top-0\.25{
		top: -0.0625rem;
	}
	.lg\:-top-0{
		top: 0px;
	}
	.lg\:top-0{
		top: 0px;
	}
	.lg\:top-full{
		top: 100%;
	}
	.lg\:left-0{
		left: 0px;
	}
	.lg\:order-2{
		-webkit-box-ordinal-group: 3;
		    -ms-flex-order: 2;
		        order: 2;
	}
	.lg\:order-1{
		-webkit-box-ordinal-group: 2;
		    -ms-flex-order: 1;
		        order: 1;
	}
	.lg\:-m-1{
		margin: -0.25rem;
	}
	.lg\:mt-0{
		margin-top: 0px;
	}
	.lg\:ml-3{
		margin-left: 0.75rem;
	}
	.lg\:mt-5{
		margin-top: 1.25rem;
	}
	.lg\:ml-\[17px\]{
		margin-left: 17px;
	}
	.lg\:mr-\[17px\]{
		margin-right: 17px;
	}
	.lg\:mr-10{
		margin-right: 2.5rem;
	}
	.lg\:ml-10{
		margin-left: 2.5rem;
	}
	.lg\:mt-6{
		margin-top: 1.5rem;
	}
	.lg\:block{
		display: block;
	}
	.lg\:flex{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.lg\:grid{
		display: grid;
	}
	.lg\:hidden{
		display: none;
	}
	.lg\:h-64{
		height: 16rem;
	}
	.lg\:h-auto{
		height: auto;
	}
	.lg\:w-1\/4{
		width: 25%;
	}
	.lg\:w-\[150px\]{
		width: 150px;
	}
	.lg\:min-w-0{
		min-width: 0px;
	}
	.lg\:max-w-\[203px\]{
		max-width: 203px;
	}
	.lg\:max-w-51{
		max-width: 12.6875rem;
	}
	.lg\:max-w-\[902px\]{
		max-width: 902px;
	}
	.lg\:flex-grow{
		-webkit-box-flex: 1;
		    -ms-flex-positive: 1;
		        flex-grow: 1;
	}
	.lg\:translate-y-0{
		--tw-translate-y: 0px;
		-webkit-transform: var(--tw-transform);
		     -o-transform: var(--tw-transform);
		        transform: var(--tw-transform);
	}
	.lg\:scale-75{
		--tw-scale-x: .75;
		--tw-scale-y: .75;
		-webkit-transform: var(--tw-transform);
		     -o-transform: var(--tw-transform);
		        transform: var(--tw-transform);
	}
	.lg\:transform-none{
		-webkit-transform: none;
		     -o-transform: none;
		        transform: none;
	}
	.lg\:grid-cols-3{
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.lg\:grid-cols-2{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.lg\:items-start{
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}
	.lg\:items-center{
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
	.lg\:gap-x-\[30px\]{
		-webkit-column-gap: 30px;
		   -moz-column-gap: 30px;
		        column-gap: 30px;
	}
	.lg\:self-center{
		-ms-flex-item-align: center;
		    align-self: center;
	}
	.lg\:overflow-visible{
		overflow: visible;
	}
	.lg\:whitespace-nowrap{
		white-space: nowrap;
	}
	.lg\:bg-transparent{
		background-color: transparent;
	}
	.lg\:bg-white{
		--tw-bg-opacity: 1;
		background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
	}
	.lg\:p-0{
		padding: 0px;
	}
	.lg\:px-6{
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
	.lg\:py-3{
		padding-top: 0.75rem;
		padding-bottom: 0.75rem;
	}
	.lg\:px-0{
		padding-left: 0px;
		padding-right: 0px;
	}
	.lg\:px-10{
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
	.lg\:px-\[120px\]{
		padding-left: 120px;
		padding-right: 120px;
	}
	.lg\:py-1{
		padding-top: 0.25rem;
		padding-bottom: 0.25rem;
	}
	.lg\:px-2{
		padding-left: 0.5rem;
		padding-right: 0.5rem;
	}
	.lg\:px-4{
		padding-left: 1rem;
		padding-right: 1rem;
	}
	.lg\:pl-2{
		padding-left: 0.5rem;
	}
	.lg\:pb-20{
		padding-bottom: 5rem;
	}
	.lg\:pt-14{
		padding-top: 3.5rem;
	}
	.lg\:pt-0{
		padding-top: 0px;
	}
	.lg\:pt-22{
		padding-top: 5.5rem;
	}
	.lg\:pb-12{
		padding-bottom: 3rem;
	}
	.lg\:pt-12{
		padding-top: 3rem;
	}
	.lg\:pb-16{
		padding-bottom: 4rem;
	}
	.lg\:pt-4{
		padding-top: 1rem;
	}
	.lg\:pr-4{
		padding-right: 1rem;
	}
	.lg\:text-left{
		text-align: left;
	}
	.lg\:text-xsm{
		font-size: 0.8125rem;
	}
	.lg\:text-base{
		font-size: 1rem;
	}
	@media (min-width: 1024px){
		.lg\:lg\:text-xsm{
			font-size: 0.8125rem;
		}
	}
	.lg\:text-2xl{
		font-size: 1.5rem;
	}
	.lg\:font-medium{
		font-weight: 500;
	}
	.lg\:leading-7{
		line-height: 1.75rem;
	}
	.lg\:leading-8{
		line-height: 2rem;
	}
	.lg\:text-gray-350{
		--tw-text-opacity: 1;
		color: rgba(151, 143, 138, var(--tw-text-opacity));
	}
	.lg\:text-blazer{
		--tw-text-opacity: 1;
		color: rgba(91, 21, 46, var(--tw-text-opacity));
	}
	.lg\:text-white{
		--tw-text-opacity: 1;
		color: rgba(255, 255, 255, var(--tw-text-opacity));
	}
	.lg\:text-rose{
		--tw-text-opacity: 1;
		color: rgba(242, 68, 104, var(--tw-text-opacity));
	}
	.lg\:opacity-100{
		opacity: 1;
	}
	.lg\:last\:col-start-2:last-child{
		grid-column-start: 2;
	}
	.lg\:hover\:bg-sandstone:hover{
		--tw-bg-opacity: 1;
		background-color: rgba(246, 220, 128, var(--tw-bg-opacity));
	}
	.lg\:hover\:bg-sandstone-light:hover{
		--tw-bg-opacity: 1;
		background-color: rgba(250, 237, 191, var(--tw-bg-opacity));
	}
	.lg\:hover\:bg-heritage-light:hover{
		--tw-bg-opacity: 1;
		background-color: rgba(211, 226, 243, var(--tw-bg-opacity));
	}
	.lg\:hover\:text-blazer:hover{
		--tw-text-opacity: 1;
		color: rgba(91, 21, 46, var(--tw-text-opacity));
	}
	.lg\:hover\:opacity-100:hover{
		opacity: 1;
	}
	.group:hover .lg\:group-hover\:scale-125{
		--tw-scale-x: 1.25;
		--tw-scale-y: 1.25;
		-webkit-transform: var(--tw-transform);
		     -o-transform: var(--tw-transform);
		        transform: var(--tw-transform);
	}
	.group:hover .lg\:group-hover\:bg-sandstone-light{
		--tw-bg-opacity: 1;
		background-color: rgba(250, 237, 191, var(--tw-bg-opacity));
	}
	.group:hover .lg\:group-hover\:bg-heritage-light{
		--tw-bg-opacity: 1;
		background-color: rgba(211, 226, 243, var(--tw-bg-opacity));
	}
}
@media (min-width: 1280px){
	.xl\:mt-0{
		margin-top: 0px;
	}
	.xl\:mr-18{
		margin-right: 4.5rem;
	}
	.xl\:ml-14{
		margin-left: 3.5rem;
	}
	.xl\:ml-\[123px\]{
		margin-left: 123px;
	}
	.xl\:block{
		display: block;
	}
	.xl\:hidden{
		display: none;
	}
	.xl\:h-\[1058px\]{
		height: 1058px;
	}
	.xl\:grid-cols-4{
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	.xl\:pt-37{
		padding-top: 9.25rem;
	}
	.xl\:pb-30{
		padding-bottom: 7.5rem;
	}
	.xl\:last\:col-start-4:last-child{
		grid-column-start: 4;
	}
}
@media (min-width: 1500px){
	.\32xl\:block{
		display: block;
	}
	.\32xl\:hidden{
		display: none;
	}
	.\32xl\:w-1\/2{
		width: 50%;
	}
	.\32xl\:max-w-none{
		max-width: none;
	}
}

/*# sourceMappingURL=main.css.map*/