/*! Lity - v2.4.1 - 2020-04-26
* http://sorgalla.com/lity/
* Copyright (c) 2015-2020 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.lity.lity-opened {
  opacity: 1;
}
.lity.lity-closed {
  opacity: 0;
}
.lity * {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}
.lity-wrap:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}
.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.lity-loading .lity-loader {
  opacity: 1;
}
.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}
.lity-content {
  z-index: 9993;
  width: 100%;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease, -o-transform 0.3s ease;
}
.lity-loading .lity-content,
.lity-closed .lity-content {
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
       -o-transform: scale(0.8);
          transform: scale(0.8);
}
.lity-content:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}
.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.lity-close:active {
  top: 1px;
}
/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}
/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}
.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}
.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}
.lity-hide {
  display: none;
}

/**
 * This injects Tailwind's base styles, which is a combination of
 * Normalize.css and some additional base styles.
 */
/*! tailwindcss v2.1.2 | 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;
}
/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 */
button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}
fieldset {
  margin: 0;
  padding: 0;
}
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
/**
 * Tailwind custom reset styles
 */
/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */
html {
  font-family: 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: #a1a1aa;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  color: #a1a1aa;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1;
  color: #a1a1aa;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  opacity: 1;
  color: #a1a1aa;
}
input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #a1a1aa;
}
button,
[role="button"] {
  cursor: pointer;
}
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;
}
/**
 * Make replaced elements `display: block` by default as that's
 * the behavior you want almost all of the time. Inspired by
 * CSS Remedy, with `svg` added as well.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}
/**
 * Constrain images and videos to the parent width and preserve
 * their intrinsic aspect ratio.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */
img,
video {
  max-width: 100%;
  height: auto;
}
*{
	--tw-shadow: 0 0 #0000;
	--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
	--tw-ring-offset-width: 0px;
	--tw-ring-offset-color: #fff;
	--tw-ring-color: rgba(59, 130, 246, 0.5);
	--tw-ring-offset-shadow: 0 0 #0000;
	--tw-ring-shadow: 0 0 #0000;
}
/** Import variables */
/** Hamburger icon */
/** Import everything from autoload */
/**
 * Import npm dependencies
 *
 * Prefix your imports with `~` to grab from node_modules/
 * @see https://github.com/webpack-contrib/sass-loader#imports
 */
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 8px 8px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  -o-transition-property: opacity, filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
       -o-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 1;
}
.hamburger.is-active:hover {
  opacity: 1;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000;
}

.hamburger-box {
  width: 24px;
  height: 15px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -0.5px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 24px;
  height: 1px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  -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-duration: 0.15s;
       -o-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -7px;
}
.hamburger-inner::after {
  bottom: -7px;
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  -webkit-transition-duration: 0.075s;
       -o-transition-duration: 0.075s;
          transition-duration: 0.075s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
       -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  -webkit-transition: top 0.075s 0.12s ease, opacity 0.075s ease;
  -o-transition: top 0.075s 0.12s ease, opacity 0.075s ease;
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  -webkit-transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: bottom 0.075s 0.12s ease, -o-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19), -o-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition-delay: 0.12s;
       -o-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
       -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.075s ease, opacity 0.075s 0.12s ease;
  -o-transition: top 0.075s ease, opacity 0.075s 0.12s ease;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: bottom 0.075s ease, -o-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -o-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/**
 * This injects any component classes registered by Tailwind plugins.
 */
.container{
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}
@media (min-width: 640px){
	.container{
		max-width: 640px;
	}
}
@media (min-width: 768px){
	.container{
		max-width: 768px;
	}
}
@media (min-width: 1024px){
	.container{
		max-width: 1024px;
	}
}
@media (min-width: 1280px){
	.container{
		max-width: 1280px;
	}
}
@media (min-width: 1536px){
	.container{
		max-width: 1536px;
	}
}
.prose{
	color: #000;
	max-width: 65ch;
}
.prose [class~="lead"]{
	color: #4b5563;
	font-size: 1.25em;
	line-height: 1.6;
	margin-top: 1.2em;
	margin-bottom: 1.2em;
}
.prose a{
	color: #F48E2A;
	text-decoration: none;
	font-weight: 500;
}
.prose a:hover{
	color: #F15843;
}
.prose strong{
	color: #111827;
	font-weight: 800;
}
.prose ol[type="A"]{
	--list-counter-style: upper-alpha;
}
.prose ol[type="a"]{
	--list-counter-style: lower-alpha;
}
.prose ol[type="A" s]{
	--list-counter-style: upper-alpha;
}
.prose ol[type="a" s]{
	--list-counter-style: lower-alpha;
}
.prose ol[type="I"]{
	--list-counter-style: upper-roman;
}
.prose ol[type="i"]{
	--list-counter-style: lower-roman;
}
.prose ol[type="I" s]{
	--list-counter-style: upper-roman;
}
.prose ol[type="i" s]{
	--list-counter-style: lower-roman;
}
.prose ol[type="1"]{
	--list-counter-style: decimal;
}
.prose ol > li{
	position: relative;
	padding-left: 1.75em;
}
.prose ol > li::before{
	content: counter(list-item, var(--list-counter-style, decimal)) ".";
	position: absolute;
	font-weight: 400;
	color: #6b7280;
	left: 0;
}
.prose ul > li{
	position: relative;
	padding-left: 1.75em;
}
.prose ul > li::before{
	content: "";
	position: absolute;
	background-color: #d1d5db;
	border-radius: 50%;
	width: 0.375em;
	height: 0.375em;
	top: calc(0.875em - 0.1875em);
	left: 0.25em;
}
.prose hr{
	border-color: #e5e7eb;
	border-top-width: 1px;
	margin-top: 3em;
	margin-bottom: 3em;
}
.prose blockquote{
	font-weight: 500;
	font-style: italic;
	color: #111827;
	border-left-width: 0.25rem;
	border-left-color: #e5e7eb;
	quotes: "\201C""\201D""\2018""\2019";
	margin-top: 1.6em;
	margin-bottom: 1.6em;
	padding-left: 1em;
}
.prose blockquote p:first-of-type::before{
	content: open-quote;
}
.prose blockquote p:last-of-type::after{
	content: close-quote;
}
.prose h1{
	color: #111827;
	font-weight: light;
	font-size: 2.25em;
	margin-top: 0;
	margin-bottom: 0.8888889em;
	line-height: 1.1111111;
}
.prose h2{
	color: #111827;
	font-weight: 700;
	font-size: 1.5em;
	margin-top: 2em;
	margin-bottom: 1em;
	line-height: 1.3333333;
}
.prose h3{
	color: #111827;
	font-weight: 600;
	font-size: 1.25em;
	margin-top: 1.6em;
	margin-bottom: 0.6em;
	line-height: 1.6;
}
.prose h4{
	color: #111827;
	font-weight: 600;
	margin-top: 1.5em;
	margin-bottom: 0.5em;
	line-height: 1.5;
}
.prose figure figcaption{
	color: #6b7280;
	font-size: 0.875em;
	line-height: 1.4285714;
	margin-top: 0.8571429em;
}
.prose code{
	color: #111827;
	font-weight: 600;
	font-size: 0.875em;
}
.prose code::before{
	content: "`";
}
.prose code::after{
	content: "`";
}
.prose a code{
	color: #111827;
}
.prose pre{
	color: #e5e7eb;
	background-color: #1f2937;
	overflow-x: auto;
	font-size: 0.875em;
	line-height: 1.7142857;
	margin-top: 1.7142857em;
	margin-bottom: 1.7142857em;
	border-radius: 0.375rem;
	padding-top: 0.8571429em;
	padding-right: 1.1428571em;
	padding-bottom: 0.8571429em;
	padding-left: 1.1428571em;
}
.prose pre code{
	background-color: transparent;
	border-width: 0;
	border-radius: 0;
	padding: 0;
	font-weight: 400;
	color: inherit;
	font-size: inherit;
	font-family: inherit;
	line-height: inherit;
}
.prose pre code::before{
	content: none;
}
.prose pre code::after{
	content: none;
}
.prose table{
	width: 100%;
	table-layout: auto;
	text-align: left;
	margin-top: 2em;
	margin-bottom: 2em;
	font-size: 0.875em;
	line-height: 1.7142857;
}
.prose thead{
	color: #111827;
	font-weight: 600;
	border-bottom-width: 1px;
	border-bottom-color: #d1d5db;
}
.prose thead th{
	vertical-align: bottom;
	padding-right: 0.5714286em;
	padding-bottom: 0.5714286em;
	padding-left: 0.5714286em;
}
.prose tbody tr{
	border-bottom-width: 1px;
	border-bottom-color: #e5e7eb;
}
.prose tbody tr:last-child{
	border-bottom-width: 0;
}
.prose tbody td{
	vertical-align: top;
	padding-top: 0.5714286em;
	padding-right: 0.5714286em;
	padding-bottom: 0.5714286em;
	padding-left: 0.5714286em;
}
.prose{
	font-size: 1rem;
	line-height: 1.75;
}
.prose p{
	margin-top: 1.25em;
	margin-bottom: 1.25em;
	line-height: 1.5em;
}
.prose img{
	margin-top: 2em;
	margin-bottom: 2em;
}
.prose video{
	margin-top: 2em;
	margin-bottom: 2em;
}
.prose figure{
	margin-top: 2em;
	margin-bottom: 2em;
}
.prose figure > *{
	margin-top: 0;
	margin-bottom: 0;
}
.prose h2 code{
	font-size: 0.875em;
}
.prose h3 code{
	font-size: 0.9em;
}
.prose ol{
	margin-top: 1.25em;
	margin-bottom: 1.25em;
}
.prose ul{
	margin-top: 1.25em;
	margin-bottom: 1.25em;
}
.prose li{
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}
.prose > ul > li p{
	margin-top: 0.75em;
	margin-bottom: 0.75em;
}
.prose > ul > li > *:first-child{
	margin-top: 1.25em;
}
.prose > ul > li > *:last-child{
	margin-bottom: 1.25em;
}
.prose > ol > li > *:first-child{
	margin-top: 1.25em;
}
.prose > ol > li > *:last-child{
	margin-bottom: 1.25em;
}
.prose ul ul, .prose ul ol, .prose ol ul, .prose ol ol{
	margin-top: 0.75em;
	margin-bottom: 0.75em;
}
.prose hr + *{
	margin-top: 0;
}
.prose h2 + *{
	margin-top: 0;
}
.prose h3 + *{
	margin-top: 0;
}
.prose h4 + *{
	margin-top: 0;
}
.prose thead th:first-child{
	padding-left: 0;
}
.prose thead th:last-child{
	padding-right: 0;
}
.prose tbody td:first-child{
	padding-left: 0;
}
.prose tbody td:last-child{
	padding-right: 0;
}
.prose > :first-child{
	margin-top: 0;
}
.prose > :last-child{
	margin-bottom: 0;
}
.prose-lg{
	font-size: 1.125rem;
	line-height: 1.7777778;
}
.prose-lg p{
	margin-top: 1.3333333em;
	margin-bottom: 1.3333333em;
}
.prose-lg [class~="lead"]{
	font-size: 1.2222222em;
	line-height: 1.4545455;
	margin-top: 1.0909091em;
	margin-bottom: 1.0909091em;
}
.prose-lg blockquote{
	margin-top: 1.6666667em;
	margin-bottom: 1.6666667em;
	padding-left: 1em;
}
.prose-lg h1{
	font-size: 2.6666667em;
	margin-top: 0;
	margin-bottom: 0.8333333em;
	line-height: 1;
}
.prose-lg h2{
	font-size: 1.6666667em;
	margin-top: 1.8666667em;
	margin-bottom: 1.0666667em;
	line-height: 1.3333333;
}
.prose-lg h3{
	font-size: 1.3333333em;
	margin-top: 1.6666667em;
	margin-bottom: 0.6666667em;
	line-height: 1.5;
}
.prose-lg h4{
	margin-top: 1.7777778em;
	margin-bottom: 0.4444444em;
	line-height: 1.5555556;
}
.prose-lg img{
	margin-top: 1.7777778em;
	margin-bottom: 1.7777778em;
}
.prose-lg video{
	margin-top: 1.7777778em;
	margin-bottom: 1.7777778em;
}
.prose-lg figure{
	margin-top: 1.7777778em;
	margin-bottom: 1.7777778em;
}
.prose-lg figure > *{
	margin-top: 0;
	margin-bottom: 0;
}
.prose-lg figure figcaption{
	font-size: 0.8888889em;
	line-height: 1.5;
	margin-top: 1em;
}
.prose-lg code{
	font-size: 0.8888889em;
}
.prose-lg h2 code{
	font-size: 0.8666667em;
}
.prose-lg h3 code{
	font-size: 0.875em;
}
.prose-lg pre{
	font-size: 0.8888889em;
	line-height: 1.75;
	margin-top: 2em;
	margin-bottom: 2em;
	border-radius: 0.375rem;
	padding-top: 1em;
	padding-right: 1.5em;
	padding-bottom: 1em;
	padding-left: 1.5em;
}
.prose-lg ol{
	margin-top: 1.3333333em;
	margin-bottom: 1.3333333em;
}
.prose-lg ul{
	margin-top: 1.3333333em;
	margin-bottom: 1.3333333em;
}
.prose-lg li{
	margin-top: 0.6666667em;
	margin-bottom: 0.6666667em;
}
.prose-lg ol > li{
	padding-left: 1.6666667em;
}
.prose-lg ol > li::before{
	left: 0;
}
.prose-lg ul > li{
	padding-left: 1.6666667em;
}
.prose-lg ul > li::before{
	width: 0.3333333em;
	height: 0.3333333em;
	top: calc(0.8888889em - 0.1666667em);
	left: 0.2222222em;
}
.prose-lg > ul > li p{
	margin-top: 0.8888889em;
	margin-bottom: 0.8888889em;
}
.prose-lg > ul > li > *:first-child{
	margin-top: 1.3333333em;
}
.prose-lg > ul > li > *:last-child{
	margin-bottom: 1.3333333em;
}
.prose-lg > ol > li > *:first-child{
	margin-top: 1.3333333em;
}
.prose-lg > ol > li > *:last-child{
	margin-bottom: 1.3333333em;
}
.prose-lg ul ul, .prose-lg ul ol, .prose-lg ol ul, .prose-lg ol ol{
	margin-top: 0.8888889em;
	margin-bottom: 0.8888889em;
}
.prose-lg hr{
	margin-top: 3.1111111em;
	margin-bottom: 3.1111111em;
}
.prose-lg hr + *{
	margin-top: 0;
}
.prose-lg h2 + *{
	margin-top: 0;
}
.prose-lg h3 + *{
	margin-top: 0;
}
.prose-lg h4 + *{
	margin-top: 0;
}
.prose-lg table{
	font-size: 0.8888889em;
	line-height: 1.5;
}
.prose-lg thead th{
	padding-right: 0.75em;
	padding-bottom: 0.75em;
	padding-left: 0.75em;
}
.prose-lg thead th:first-child{
	padding-left: 0;
}
.prose-lg thead th:last-child{
	padding-right: 0;
}
.prose-lg tbody td{
	padding-top: 0.75em;
	padding-right: 0.75em;
	padding-bottom: 0.75em;
	padding-left: 0.75em;
}
.prose-lg tbody td:first-child{
	padding-left: 0;
}
.prose-lg tbody td:last-child{
	padding-right: 0;
}
.prose-lg > :first-child{
	margin-top: 0;
}
.prose-lg > :last-child{
	margin-bottom: 0;
}
/** Import theme styles */
#__bs_notify__ {
  /* Move notification to bottom */
  top: auto !important;
  bottom: 0 !important;
  border-top-left-radius: 5px !important;
  border-bottom-left-radius: 0 !important;
}

.gradient-shadow{
	position: relative;
}
.gradient-shadow::before{
	position: absolute;
	height: 100%;
	width: 100%;
	--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;
	-webkit-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));
	     -o-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));
	        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-scale-x: .5;
	--tw-scale-y: .5;
	background-image: -webkit-gradient(linear, left top, right top, from(var(--tw-gradient-stops)));
	background-image: -webkit-linear-gradient(left, var(--tw-gradient-stops));
	background-image: -o-linear-gradient(left, var(--tw-gradient-stops));
	background-image: linear-gradient(to right, var(--tw-gradient-stops));
	--tw-gradient-from: #FF8C1C;
	--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 140, 28, 0));
	--tw-gradient-to: #FF5B92;
	-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: 500ms;
	     -o-transition-duration: 500ms;
	        transition-duration: 500ms;
  content: "";
}
.gradient-shadow--top-left::before{
	left: -1rem;
	top: -1rem;
	-webkit-transform-origin: top left;
	     -o-transform-origin: top left;
	        transform-origin: top left;
}
.gradient-shadow--bottom-left::before{
	left: -1rem;
	bottom: -1rem;
	-webkit-transform-origin: bottom left;
	     -o-transform-origin: bottom left;
	        transform-origin: bottom left;
}
.gradient-shadow--bottom-right::before{
	right: -1rem;
	bottom: -1rem;
	-webkit-transform-origin: bottom right;
	     -o-transform-origin: bottom right;
	        transform-origin: bottom right;
}
a .gradient-shadow:hover::before, a .gradient-shadow:focus::before, a .gradient-shadow:active::before{
	--tw-scale-x: 1;
	--tw-scale-y: 1;
}

.gradient-shadow-circle{
	position: relative;
}
.gradient-shadow-circle::before{
	position: absolute;
	height: 100%;
	width: 100%;
	--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;
	-webkit-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));
	     -o-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));
	        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));
	border-radius: 9999px;
	background-image: -webkit-gradient(linear, left top, right top, from(var(--tw-gradient-stops)));
	background-image: -webkit-linear-gradient(left, var(--tw-gradient-stops));
	background-image: -o-linear-gradient(left, var(--tw-gradient-stops));
	background-image: linear-gradient(to right, var(--tw-gradient-stops));
	--tw-gradient-from: #FF8C1C;
	--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 140, 28, 0));
	--tw-gradient-to: #FF5B92;
  content: "";
}
.gradient-shadow-circle--small::before{
	--tw-translate-y: 0.5rem;
}
.gradient-shadow-circle--large::before{
	--tw-translate-y: 1rem;
}

.bg-darken-bottom {
  background: -webkit-gradient(linear, left bottom, left top, from(#182436), color-stop(50%, rgba(24, 36, 54, 0)));
  background: -webkit-linear-gradient(bottom, #182436 0%, rgba(24, 36, 54, 0) 50%);
  background: -o-linear-gradient(bottom, #182436 0%, rgba(24, 36, 54, 0) 50%);
  background: linear-gradient(0deg, #182436 0%, rgba(24, 36, 54, 0) 50%);
}

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

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

.button{
	cursor: pointer;
	border-radius: 9999px;
	padding-left: 3rem;
	padding-right: 3rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
	text-align: center;
	font-size: 0.75rem;
	line-height: 1rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
	-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;
	-webkit-transition-duration: 300ms;
	     -o-transition-duration: 300ms;
	        transition-duration: 300ms;
  background-size: 400% 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(#FF8C1C), color-stop(25%, #FF5B92), color-stop(75%, #FF5B92), to(#FF8C1C));
  background-image: -webkit-linear-gradient(left, #FF8C1C, #FF5B92 25%, #FF5B92 75%, #FF8C1C);
  background-image: -o-linear-gradient(left, #FF8C1C, #FF5B92 25%, #FF5B92 75%, #FF8C1C);
  background-image: linear-gradient(90deg, #FF8C1C, #FF5B92 25%, #FF5B92 75%, #FF8C1C);
}
.button:hover, .button:focus, .button:active {
  background-position: 100% 0;
}

fieldset > :not([hidden]) ~ :not([hidden]){
	--tw-space-y-reverse: 0;
	margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
	margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

input[type=text]{
	width: 100%;
	border-radius: 9999px;
	--tw-bg-opacity: 1;
	background-color: rgba(236, 238, 245, var(--tw-bg-opacity));
	padding-left: 2rem;
	padding-right: 2rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

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

/* stylelint-disable no-descending-specificity */
.pagination ul.page-numbers{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.pagination a, .pagination span{
	padding-left: 1rem;
	padding-right: 1rem;
}
.pagination a:hover, .pagination span:hover{
	--tw-text-opacity: 1;
	color: rgba(255, 91, 146, var(--tw-text-opacity));
}
.pagination a.current, .pagination span.current{
	font-weight: 700;
}
.pagination li:not(:last-child) a,
.pagination li:not(:last-child) span {
  border-right: 1px solid #000;
}
.pagination .prev, .pagination .next{
	--tw-text-opacity: 1;
	color: rgba(255, 91, 146, var(--tw-text-opacity));
}
.pagination .prev:hover, .pagination .next:hover{
	--tw-text-opacity: 1;
	color: rgba(255, 140, 28, var(--tw-text-opacity));
}

/* stylelint-enable */
/**
 * WordPress Generated Classes
 * @see http://codex.wordpress.org/CSS#WordPress_Generated_Classes
 */
/** Media alignment */
.alignnone {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  height: auto;
}

.aligncenter{
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	margin-left: auto;
	margin-right: auto;
  display: block;
  height: auto;
}

.alignleft, .alignright{
	margin-bottom: 1rem;
}

.alignleft,
.alignright {
  height: auto;
}

@media (min-width: 640px) {
  .alignleft{
		margin-right: 1rem;
	}
  .alignleft {
    float: left;
  }

  .alignright{
		margin-left: 1rem;
	}

  .alignright {
    float: right;
  }
}
/** Captions */
.wp-caption{
	margin-bottom: 1rem;
	display: inline-block;
}

.wp-caption img{
	margin-bottom: 0.5rem;
	height: auto;
	max-width: 100%;
	line-height: 1;
}

.wp-caption-text {
  font-size: 90%;
  color: #6c757d;
}

/** Text meant only for screen readers */
.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;
}

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

.single-album__spotify iframe{
	width: 100%;
}
@media (min-width: 1024px) {
  .single-album__spotify iframe{
		height: 100%;
	}
}

body#tinymce {
  margin: 12px !important;
}

/**
 * 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;
}
.relative{
	position: relative;
}
.absolute{
	position: absolute;
}
.inset-0{
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}
.bottom-0{
	bottom: 0px;
}
.right-0{
	right: 0px;
}
.top-0{
	top: 0px;
}
.left-0{
	left: 0px;
}
.z-30{
	z-index: 30;
}
.z-20{
	z-index: 20;
}
.z-10{
	z-index: 10;
}
.order-last{
	-webkit-box-ordinal-group: 10000;
	    -ms-flex-order: 9999;
	        order: 9999;
}
.order-first{
	-webkit-box-ordinal-group: -9998;
	    -ms-flex-order: -9999;
	        order: -9999;
}
.mx-auto{
	margin-left: auto;
	margin-right: auto;
}
.my-16{
	margin-top: 4rem;
	margin-bottom: 4rem;
}
.-mx-2{
	margin-left: -0.5rem;
	margin-right: -0.5rem;
}
.mt-12{
	margin-top: 3rem;
}
.ml-1{
	margin-left: 0.25rem;
}
.mt-4{
	margin-top: 1rem;
}
.mt-8{
	margin-top: 2rem;
}
.-mt-3{
	margin-top: -0.75rem;
}
.mt-2{
	margin-top: 0.5rem;
}
.mt-16{
	margin-top: 4rem;
}
.mt-6{
	margin-top: 1.5rem;
}
.mb-16{
	margin-bottom: 4rem;
}
.mr-2{
	margin-right: 0.5rem;
}
.mr-1{
	margin-right: 0.25rem;
}
.ml-2{
	margin-left: 0.5rem;
}
.-mt-8{
	margin-top: -2rem;
}
.ml-4{
	margin-left: 1rem;
}
.mt-1{
	margin-top: 0.25rem;
}
.ml-8{
	margin-left: 2rem;
}
.mr-auto{
	margin-right: auto;
}
.mb-2{
	margin-bottom: 0.5rem;
}
.block{
	display: block;
}
.inline-block{
	display: inline-block;
}
.flex{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.grid{
	display: grid;
}
.hidden{
	display: none;
}
.h-full{
	height: 100%;
}
.h-auto{
	height: auto;
}
.min-h-screen{
	min-height: 100vh;
}
.w-full{
	width: 100%;
}
.w-24{
	width: 6rem;
}
.w-logo-mobile{
	width: 43px;
}
.w-\[480px\]{
	width: 480px;
}
.max-w-7xl{
	max-width: 80rem;
}
.max-w-sm{
	max-width: 24rem;
}
.max-w-6xl{
	max-width: 72rem;
}
.max-w-4xl{
	max-width: 56rem;
}
.max-w-5xl{
	max-width: 64rem;
}
.max-w-md{
	max-width: 28rem;
}
.max-w-full{
	max-width: 100%;
}
.max-w-xs{
	max-width: 20rem;
}
.max-w-2xl{
	max-width: 42rem;
}
.flex-1{
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 0%;
	        flex: 1 1 0%;
}
.transform{
	--tw-translate-x: 0;
	--tw-translate-y: 0;
	--tw-rotate: 0;
	--tw-skew-x: 0;
	--tw-skew-y: 0;
	--tw-scale-x: 1;
	--tw-scale-y: 1;
	-webkit-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));
	     -o-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));
	        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));
}
.translate-y-px{
	--tw-translate-y: 1px;
}
.translate-y-2{
	--tw-translate-y: 0.5rem;
}
.cursor-pointer{
	cursor: pointer;
}
.grid-cols-2{
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-1{
	grid-template-columns: repeat(1, minmax(0, 1fr));
}
.flex-col{
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.flex-wrap{
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.items-center{
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.items-start{
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.items-stretch{
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
}
.justify-start{
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}
.justify-center{
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.justify-end{
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}
.justify-between{
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.gap-4{
	gap: 1rem;
}
.space-y-4 > :not([hidden]) ~ :not([hidden]){
	--tw-space-y-reverse: 0;
	margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
	margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-x-8 > :not([hidden]) ~ :not([hidden]){
	--tw-space-x-reverse: 0;
	margin-right: calc(2rem * var(--tw-space-x-reverse));
	margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-4 > :not([hidden]) ~ :not([hidden]){
	--tw-space-x-reverse: 0;
	margin-right: calc(1rem * var(--tw-space-x-reverse));
	margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-2 > :not([hidden]) ~ :not([hidden]){
	--tw-space-x-reverse: 0;
	margin-right: calc(0.5rem * var(--tw-space-x-reverse));
	margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-3 > :not([hidden]) ~ :not([hidden]){
	--tw-space-x-reverse: 0;
	margin-right: calc(0.75rem * var(--tw-space-x-reverse));
	margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]){
	--tw-space-y-reverse: 0;
	margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
	margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]){
	--tw-space-y-reverse: 0;
	margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
	margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.divide-x > :not([hidden]) ~ :not([hidden]){
	--tw-divide-x-reverse: 0;
	border-right-width: calc(1px * var(--tw-divide-x-reverse));
	border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
}
.overflow-hidden{
	overflow: hidden;
}
.rounded-full{
	border-radius: 9999px;
}
.border-2{
	border-width: 2px;
}
.border{
	border-width: 1px;
}
.border-4{
	border-width: 4px;
}
.border-b{
	border-bottom-width: 1px;
}
.border-secondary{
	--tw-border-opacity: 1;
	border-color: rgba(255, 91, 146, var(--tw-border-opacity));
}
.border-transparent{
	border-color: transparent;
}
.bg-secondary{
	--tw-bg-opacity: 1;
	background-color: rgba(255, 91, 146, var(--tw-bg-opacity));
}
.bg-dark{
	--tw-bg-opacity: 1;
	background-color: rgba(24, 36, 54, var(--tw-bg-opacity));
}
.bg-primary{
	--tw-bg-opacity: 1;
	background-color: rgba(255, 140, 28, var(--tw-bg-opacity));
}
.bg-gray{
	--tw-bg-opacity: 1;
	background-color: rgba(236, 238, 245, var(--tw-bg-opacity));
}
.bg-white{
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}
.bg-black{
	--tw-bg-opacity: 1;
	background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}
.bg-gradient-to-r{
	background-image: -webkit-gradient(linear, left top, right top, from(var(--tw-gradient-stops)));
	background-image: -webkit-linear-gradient(left, var(--tw-gradient-stops));
	background-image: -o-linear-gradient(left, var(--tw-gradient-stops));
	background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.from-secondary{
	--tw-gradient-from: #FF5B92;
	--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 91, 146, 0));
}
.to-primary{
	--tw-gradient-to: #FF8C1C;
}
.bg-cover{
	background-size: cover;
}
.bg-full{
	background-size: 100%;
}
.bg-center{
	background-position: center;
}
.bg-top{
	background-position: top;
}
.bg-no-repeat{
	background-repeat: no-repeat;
}
.object-cover{
	-o-object-fit: cover;
	   object-fit: cover;
}
.object-top{
	-o-object-position: top;
	   object-position: top;
}
.p-0{
	padding: 0px;
}
.px-4{
	padding-left: 1rem;
	padding-right: 1rem;
}
.px-12{
	padding-left: 3rem;
	padding-right: 3rem;
}
.py-\[14px\]{
	padding-top: 14px;
	padding-bottom: 14px;
}
.py-8{
	padding-top: 2rem;
	padding-bottom: 2rem;
}
.px-8{
	padding-left: 2rem;
	padding-right: 2rem;
}
.px-6{
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
.py-16{
	padding-top: 4rem;
	padding-bottom: 4rem;
}
.py-12{
	padding-top: 3rem;
	padding-bottom: 3rem;
}
.py-4{
	padding-top: 1rem;
	padding-bottom: 1rem;
}
.px-0{
	padding-left: 0px;
	padding-right: 0px;
}
.py-1{
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}
.py-5{
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
}
.px-3{
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}
.py-10{
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}
.px-16{
	padding-left: 4rem;
	padding-right: 4rem;
}
.px-2{
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}
.pb-24{
	padding-bottom: 6rem;
}
.pt-4{
	padding-top: 1rem;
}
.pb-3{
	padding-bottom: 0.75rem;
}
.pb-full{
	padding-bottom: 100%;
}
.pb-2\/3{
	padding-bottom: 66.6666%;
}
.pl-1{
	padding-left: 0.25rem;
}
.pb-32{
	padding-bottom: 8rem;
}
.pl-5{
	padding-left: 1.25rem;
}
.pt-8{
	padding-top: 2rem;
}
.pl-8{
	padding-left: 2rem;
}
.pr-4{
	padding-right: 1rem;
}
.pb-12{
	padding-bottom: 3rem;
}
.pt-24{
	padding-top: 6rem;
}
.pb-16{
	padding-bottom: 4rem;
}
.pt-16{
	padding-top: 4rem;
}
.pt-\[75vw\]{
	padding-top: 75vw;
}
.pb-16x9{
	padding-bottom: 56.25%;
}
.text-center{
	text-align: center;
}
.align-text-top{
	vertical-align: text-top;
}
.font-body{
	font-family: futura-pt, sans-serif;;
}
.text-xs{
	font-size: 0.75rem;
	line-height: 1rem;
}
.text-2xl{
	font-size: 1.5rem;
	line-height: 2rem;
}
.text-7xl{
	font-size: 4.25rem;
	line-height: 1;
}
.text-6xl{
	font-size: 2.5rem;
	line-height: 1;
}
.text-xl{
	font-size: 1.375rem;
	line-height: 1.75rem;
}
.text-5xl{
	font-size: 2.125rem;
	line-height: 1;
}
.text-sm{
	font-size: 0.875rem;
	line-height: 1.25rem;
}
.text-3xl{
	font-size: 1.75rem;
	line-height: 2.25rem;
}
.text-lg{
	font-size: 1.25rem;
	line-height: 1.75rem;
}
.text-base{
	font-size: 1rem;
	line-height: 1.5rem;
}
.text-4xl{
	font-size: 2rem;
	line-height: 2.5rem;
}
.font-black{
	font-weight: 900;
}
.font-bold{
	font-weight: 700;
}
.font-semibold{
	font-weight: 600;
}
.font-light{
	font-weight: 300;
}
.uppercase{
	text-transform: uppercase;
}
.lowercase{
	text-transform: lowercase;
}
.leading-none{
	line-height: 1;
}
.leading-tight{
	line-height: 1.25;
}
.tracking-widest{
	letter-spacing: 0.1em;
}
.text-white{
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.text-dark{
	--tw-text-opacity: 1;
	color: rgba(24, 36, 54, var(--tw-text-opacity));
}
.text-primary{
	--tw-text-opacity: 1;
	color: rgba(255, 140, 28, var(--tw-text-opacity));
}
.text-secondary{
	--tw-text-opacity: 1;
	color: rgba(255, 91, 146, var(--tw-text-opacity));
}
.antialiased{
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.opacity-0{
	opacity: 0;
}
.grayscale{
	--tw-grayscale: grayscale(100%);
}
.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{
	-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;
}
.duration-300{
	-webkit-transition-duration: 300ms;
	     -o-transition-duration: 300ms;
	        transition-duration: 300ms;
}
.duration-500{
	-webkit-transition-duration: 500ms;
	     -o-transition-duration: 500ms;
	        transition-duration: 500ms;
}
.duration-200{
	-webkit-transition-duration: 200ms;
	     -o-transition-duration: 200ms;
	        transition-duration: 200ms;
}
.hover\:border-primary:hover{
	--tw-border-opacity: 1;
	border-color: rgba(255, 140, 28, var(--tw-border-opacity));
}
.hover\:bg-secondary:hover{
	--tw-bg-opacity: 1;
	background-color: rgba(255, 91, 146, var(--tw-bg-opacity));
}
.hover\:text-white:hover{
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.hover\:text-secondary:hover{
	--tw-text-opacity: 1;
	color: rgba(255, 91, 146, var(--tw-text-opacity));
}
.hover\:text-primary:hover{
	--tw-text-opacity: 1;
	color: rgba(255, 140, 28, var(--tw-text-opacity));
}
.hover\:text-dark:hover{
	--tw-text-opacity: 1;
	color: rgba(24, 36, 54, var(--tw-text-opacity));
}
.hover\:underline:hover{
	text-decoration: underline;
}
.focus\:text-primary:focus{
	--tw-text-opacity: 1;
	color: rgba(255, 140, 28, var(--tw-text-opacity));
}
.group:hover .group-hover\:-translate-y-2{
	--tw-translate-y: -0.5rem;
}
.group:hover .group-hover\:-translate-y-4{
	--tw-translate-y: -1rem;
}
.group:hover .group-hover\:-translate-y-1{
	--tw-translate-y: -0.25rem;
}
.group:hover .group-hover\:border-primary{
	--tw-border-opacity: 1;
	border-color: rgba(255, 140, 28, var(--tw-border-opacity));
}
.group:hover .group-hover\:bg-secondary{
	--tw-bg-opacity: 1;
	background-color: rgba(255, 91, 146, var(--tw-bg-opacity));
}
.group:hover .group-hover\:text-white{
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.group:hover .group-hover\:opacity-100{
	opacity: 1;
}
@media (min-width: 640px){
	.sm\:w-1\/2{
		width: 50%;
	}
}
@media (min-width: 768px){
	.md\:w-1\/2{
		width: 50%;
	}
	.md\:grid-cols-3{
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.md\:px-12{
		padding-left: 3rem;
		padding-right: 3rem;
	}
}
@media (min-width: 1024px){
	.lg\:prose-lg{
		font-size: 1.125rem;
		line-height: 1.7777778;
	}
	.lg\:prose-lg p{
		margin-top: 1.3333333em;
		margin-bottom: 1.3333333em;
	}
	.lg\:prose-lg [class~="lead"]{
		font-size: 1.2222222em;
		line-height: 1.4545455;
		margin-top: 1.0909091em;
		margin-bottom: 1.0909091em;
	}
	.lg\:prose-lg blockquote{
		margin-top: 1.6666667em;
		margin-bottom: 1.6666667em;
		padding-left: 1em;
	}
	.lg\:prose-lg h1{
		font-size: 2.6666667em;
		margin-top: 0;
		margin-bottom: 0.8333333em;
		line-height: 1;
	}
	.lg\:prose-lg h2{
		font-size: 1.6666667em;
		margin-top: 1.8666667em;
		margin-bottom: 1.0666667em;
		line-height: 1.3333333;
	}
	.lg\:prose-lg h3{
		font-size: 1.3333333em;
		margin-top: 1.6666667em;
		margin-bottom: 0.6666667em;
		line-height: 1.5;
	}
	.lg\:prose-lg h4{
		margin-top: 1.7777778em;
		margin-bottom: 0.4444444em;
		line-height: 1.5555556;
	}
	.lg\:prose-lg img{
		margin-top: 1.7777778em;
		margin-bottom: 1.7777778em;
	}
	.lg\:prose-lg video{
		margin-top: 1.7777778em;
		margin-bottom: 1.7777778em;
	}
	.lg\:prose-lg figure{
		margin-top: 1.7777778em;
		margin-bottom: 1.7777778em;
	}
	.lg\:prose-lg figure > *{
		margin-top: 0;
		margin-bottom: 0;
	}
	.lg\:prose-lg figure figcaption{
		font-size: 0.8888889em;
		line-height: 1.5;
		margin-top: 1em;
	}
	.lg\:prose-lg code{
		font-size: 0.8888889em;
	}
	.lg\:prose-lg h2 code{
		font-size: 0.8666667em;
	}
	.lg\:prose-lg h3 code{
		font-size: 0.875em;
	}
	.lg\:prose-lg pre{
		font-size: 0.8888889em;
		line-height: 1.75;
		margin-top: 2em;
		margin-bottom: 2em;
		border-radius: 0.375rem;
		padding-top: 1em;
		padding-right: 1.5em;
		padding-bottom: 1em;
		padding-left: 1.5em;
	}
	.lg\:prose-lg ol{
		margin-top: 1.3333333em;
		margin-bottom: 1.3333333em;
	}
	.lg\:prose-lg ul{
		margin-top: 1.3333333em;
		margin-bottom: 1.3333333em;
	}
	.lg\:prose-lg li{
		margin-top: 0.6666667em;
		margin-bottom: 0.6666667em;
	}
	.lg\:prose-lg ol > li{
		padding-left: 1.6666667em;
	}
	.lg\:prose-lg ol > li::before{
		left: 0;
	}
	.lg\:prose-lg ul > li{
		padding-left: 1.6666667em;
	}
	.lg\:prose-lg ul > li::before{
		width: 0.3333333em;
		height: 0.3333333em;
		top: calc(0.8888889em - 0.1666667em);
		left: 0.2222222em;
	}
	.lg\:prose-lg > ul > li p{
		margin-top: 0.8888889em;
		margin-bottom: 0.8888889em;
	}
	.lg\:prose-lg > ul > li > *:first-child{
		margin-top: 1.3333333em;
	}
	.lg\:prose-lg > ul > li > *:last-child{
		margin-bottom: 1.3333333em;
	}
	.lg\:prose-lg > ol > li > *:first-child{
		margin-top: 1.3333333em;
	}
	.lg\:prose-lg > ol > li > *:last-child{
		margin-bottom: 1.3333333em;
	}
	.lg\:prose-lg ul ul, .lg\:prose-lg ul ol, .lg\:prose-lg ol ul, .lg\:prose-lg ol ol{
		margin-top: 0.8888889em;
		margin-bottom: 0.8888889em;
	}
	.lg\:prose-lg ul ul, .lg\:prose-lg ul ol, .lg\:prose-lg ol ul, .lg\:prose-lg ol ol{
		margin-top: 0.8888889em;
		margin-bottom: 0.8888889em;
	}
	.lg\:prose-lg ul ul, .lg\:prose-lg ul ol, .lg\:prose-lg ol ul, .lg\:prose-lg ol ol{
		margin-top: 0.8888889em;
		margin-bottom: 0.8888889em;
	}
	.lg\:prose-lg ul ul, .lg\:prose-lg ul ol, .lg\:prose-lg ol ul, .lg\:prose-lg ol ol{
		margin-top: 0.8888889em;
		margin-bottom: 0.8888889em;
	}
	.lg\:prose-lg hr{
		margin-top: 3.1111111em;
		margin-bottom: 3.1111111em;
	}
	.lg\:prose-lg hr + *{
		margin-top: 0;
	}
	.lg\:prose-lg h2 + *{
		margin-top: 0;
	}
	.lg\:prose-lg h3 + *{
		margin-top: 0;
	}
	.lg\:prose-lg h4 + *{
		margin-top: 0;
	}
	.lg\:prose-lg table{
		font-size: 0.8888889em;
		line-height: 1.5;
	}
	.lg\:prose-lg thead th{
		padding-right: 0.75em;
		padding-bottom: 0.75em;
		padding-left: 0.75em;
	}
	.lg\:prose-lg thead th:first-child{
		padding-left: 0;
	}
	.lg\:prose-lg thead th:last-child{
		padding-right: 0;
	}
	.lg\:prose-lg tbody td{
		padding-top: 0.75em;
		padding-right: 0.75em;
		padding-bottom: 0.75em;
		padding-left: 0.75em;
	}
	.lg\:prose-lg tbody td:first-child{
		padding-left: 0;
	}
	.lg\:prose-lg tbody td:last-child{
		padding-right: 0;
	}
	.lg\:prose-lg > :first-child{
		margin-top: 0;
	}
	.lg\:prose-lg > :last-child{
		margin-bottom: 0;
	}
	.lg\:absolute{
		position: absolute;
	}
	.lg\:right-0{
		right: 0px;
	}
	.lg\:top-1\/2{
		top: 50%;
	}
	.lg\:order-last{
		-webkit-box-ordinal-group: 10000;
		    -ms-flex-order: 9999;
		        order: 9999;
	}
	.lg\:order-first{
		-webkit-box-ordinal-group: -9998;
		    -ms-flex-order: -9999;
		        order: -9999;
	}
	.lg\:order-2{
		-webkit-box-ordinal-group: 3;
		    -ms-flex-order: 2;
		        order: 2;
	}
	.lg\:my-32{
		margin-top: 8rem;
		margin-bottom: 8rem;
	}
	.lg\:mt-0{
		margin-top: 0px;
	}
	.lg\:mt-6{
		margin-top: 1.5rem;
	}
	.lg\:mt-12{
		margin-top: 3rem;
	}
	.lg\:mb-32{
		margin-bottom: 8rem;
	}
	.lg\:mt-16{
		margin-top: 4rem;
	}
	.lg\:ml-8{
		margin-left: 2rem;
	}
	.lg\:ml-4{
		margin-left: 1rem;
	}
	.lg\:mt-32{
		margin-top: 8rem;
	}
	.lg\:mb-4{
		margin-bottom: 1rem;
	}
	.lg\:block{
		display: block;
	}
	.lg\:flex{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.lg\:hidden{
		display: none;
	}
	.lg\:h-full{
		height: 100%;
	}
	.lg\:w-1\/2{
		width: 50%;
	}
	.lg\:w-1\/3{
		width: 33.333333%;
	}
	.lg\:w-2\/5{
		width: 40%;
	}
	.lg\:w-3\/5{
		width: 60%;
	}
	.lg\:w-36{
		width: 9rem;
	}
	.lg\:w-logo-desktop{
		width: 84px;
	}
	.lg\:w-auto{
		width: auto;
	}
	.lg\:w-4\/5{
		width: 80%;
	}
	.lg\:w-1\/5{
		width: 20%;
	}
	.lg\:max-w-4xl{
		max-width: 56rem;
	}
	.lg\:max-w-xl{
		max-width: 36rem;
	}
	.lg\:max-w-3xl{
		max-width: 48rem;
	}
	.lg\:max-w-full{
		max-width: 100%;
	}
	.lg\:transform{
		--tw-translate-x: 0;
		--tw-translate-y: 0;
		--tw-rotate: 0;
		--tw-skew-x: 0;
		--tw-skew-y: 0;
		--tw-scale-x: 1;
		--tw-scale-y: 1;
		-webkit-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));
		     -o-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));
		        transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
	}
	.lg\:translate-y-\[-160px\]{
		--tw-translate-y: -160px;
	}
	.lg\:translate-y-4{
		--tw-translate-y: 1rem;
	}
	.lg\:grid-cols-4{
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	.lg\:grid-cols-2{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.lg\:flex-row{
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
	}
	.lg\:flex-col{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.lg\:items-start{
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}
	.lg\:justify-end{
		-webkit-box-pack: end;
		    -ms-flex-pack: end;
		        justify-content: flex-end;
	}
	.lg\:space-y-0 > :not([hidden]) ~ :not([hidden]){
		--tw-space-y-reverse: 0;
		margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
		margin-bottom: calc(0px * var(--tw-space-y-reverse));
	}
	.lg\:space-x-4 > :not([hidden]) ~ :not([hidden]){
		--tw-space-x-reverse: 0;
		margin-right: calc(1rem * var(--tw-space-x-reverse));
		margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
	}
	.lg\:space-x-2 > :not([hidden]) ~ :not([hidden]){
		--tw-space-x-reverse: 0;
		margin-right: calc(0.5rem * var(--tw-space-x-reverse));
		margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
	}
	.lg\:space-x-8 > :not([hidden]) ~ :not([hidden]){
		--tw-space-x-reverse: 0;
		margin-right: calc(2rem * var(--tw-space-x-reverse));
		margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
	}
	.lg\:space-y-4 > :not([hidden]) ~ :not([hidden]){
		--tw-space-y-reverse: 0;
		margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
		margin-bottom: calc(1rem * var(--tw-space-y-reverse));
	}
	.lg\:space-x-0 > :not([hidden]) ~ :not([hidden]){
		--tw-space-x-reverse: 0;
		margin-right: calc(0px * var(--tw-space-x-reverse));
		margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse)));
	}
	.lg\:px-12{
		padding-left: 3rem;
		padding-right: 3rem;
	}
	.lg\:px-8{
		padding-left: 2rem;
		padding-right: 2rem;
	}
	.lg\:py-32{
		padding-top: 8rem;
		padding-bottom: 8rem;
	}
	.lg\:py-16{
		padding-top: 4rem;
		padding-bottom: 4rem;
	}
	.lg\:py-8{
		padding-top: 2rem;
		padding-bottom: 2rem;
	}
	.lg\:py-0{
		padding-top: 0px;
		padding-bottom: 0px;
	}
	.lg\:py-24{
		padding-top: 6rem;
		padding-bottom: 6rem;
	}
	.lg\:px-4{
		padding-left: 1rem;
		padding-right: 1rem;
	}
	.lg\:px-32{
		padding-left: 8rem;
		padding-right: 8rem;
	}
	.lg\:pl-4{
		padding-left: 1rem;
	}
	.lg\:pr-16{
		padding-right: 4rem;
	}
	.lg\:pl-16{
		padding-left: 4rem;
	}
	.lg\:pl-8{
		padding-left: 2rem;
	}
	.lg\:pb-32{
		padding-bottom: 8rem;
	}
	.lg\:pt-16{
		padding-top: 4rem;
	}
	.lg\:pb-40{
		padding-bottom: 10rem;
	}
	.lg\:pl-24{
		padding-left: 6rem;
	}
	.lg\:pt-0{
		padding-top: 0px;
	}
	.lg\:pt-48{
		padding-top: 12rem;
	}
	.lg\:text-left{
		text-align: left;
	}
	.lg\:text-8xl{
		font-size: 6.25rem;
		line-height: 1;
	}
	.lg\:text-lg{
		font-size: 1.25rem;
		line-height: 1.75rem;
	}
	.lg\:text-3xl{
		font-size: 1.75rem;
		line-height: 2.25rem;
	}
	.lg\:text-7xl{
		font-size: 4.25rem;
		line-height: 1;
	}
	.lg\:text-2xl{
		font-size: 1.5rem;
		line-height: 2rem;
	}
	.lg\:text-6xl{
		font-size: 2.5rem;
		line-height: 1;
	}
	.lg\:text-5xl{
		font-size: 2.125rem;
		line-height: 1;
	}
	.lg\:text-4xl{
		font-size: 2rem;
		line-height: 2.5rem;
	}
	.lg\:text-sm{
		font-size: 0.875rem;
		line-height: 1.25rem;
	}
}
@media (min-width: 1280px){
	.xl\:w-2\/4{
		width: 50%;
	}
	.xl\:space-x-8 > :not([hidden]) ~ :not([hidden]){
		--tw-space-x-reverse: 0;
		margin-right: calc(2rem * var(--tw-space-x-reverse));
		margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
	}
	.xl\:pr-0{
		padding-right: 0px;
	}
	.xl\:text-lg{
		font-size: 1.25rem;
		line-height: 1.75rem;
	}
}

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