/*! 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;
  transition: opacity 0.3s ease;
}
.lity.lity-opened {
  opacity: 1;
}
.lity.lity-closed {
  opacity: 0;
}
.lity * {
  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;
  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%;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.lity-loading .lity-content,
.lity-closed .lity-content {
  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;
  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;
  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;
  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;
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}
.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}
.lity-hide {
  display: none;
}

/*! Flickity v2.3.0
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: grabbing;
}

/* ---- flickity-button ---- */

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/*
! tailwindcss v3.1.8 | MIT License | https://tailwindcss.com
*/
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
*/
html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */ /* 3 */
  tab-size: 4; /* 3 */
  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"; /* 4 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-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;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
[type='text'],[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select{
  appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}
[type='text']:focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}
input::placeholder,textarea::placeholder{
  color: #6b7280;
  opacity: 1;
}
::-webkit-datetime-edit-fields-wrapper{
  padding: 0;
}
::-webkit-date-and-time-value{
  min-height: 1.5em;
}
select{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
}
[multiple]{
  background-image: initial;
  background-position: initial;
  background-repeat: unset;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: unset;
          color-adjust: unset;
}
[type='checkbox'],[type='radio']{
  appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  --tw-shadow: 0 0 #0000;
}
[type='checkbox']{
  border-radius: 0px;
}
[type='radio']{
  border-radius: 100%;
}
[type='checkbox']:focus,[type='radio']:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
[type='checkbox']:checked,[type='radio']:checked{
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
[type='checkbox']:checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}
[type='radio']:checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}
[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus{
  border-color: transparent;
  background-color: currentColor;
}
[type='checkbox']:indeterminate{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus{
  border-color: transparent;
  background-color: currentColor;
}
[type='file']{
  background: unset;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: unset;
  line-height: inherit;
}
[type='file']:focus{
  outline: 1px auto -webkit-focus-ring-color;
}
*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
html{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

body{
  font-family: trade-gothic-next, sans-serif;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}

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

[x-cloak]{
  display: none;
}

.row-full {
  width: 100vw;
  position: relative;
  margin-left: -50vw;
  left: 50%;
}

.single .prose h2{
  font-weight: 300;
}
.single .prose .wp-block-quote{
  border-width: 0px;
  border-left-width: 4px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
}
.single .prose .wp-block-button a{
  display: inline-block;
  -webkit-text-decoration-line: none;
          text-decoration-line: none;
}
.single .prose .wp-block-button.aligncenter{
  text-align: center;
}
.single .prose .wp-block-button.is-style-outline{
  outline-style: solid;
  outline-width: 2px;
  outline-color: #000;
}
.single .prose .wp-block-embed .wp-block-embed__wrapper{
  position: relative;
  padding-bottom: calc(var(--tw-aspect-h) / var(--tw-aspect-w) * 100%);
  --tw-aspect-w: 16;
}
.single .prose .wp-block-embed .wp-block-embed__wrapper > *{
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.single .prose .wp-block-embed .wp-block-embed__wrapper{
  --tw-aspect-h: 9;
}
.single .prose .wp-block-image img{
  height: auto;
  width: 100%;
}
.single .prose .wp-block-gallery{
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (min-width: 768px){
  .single .prose .wp-block-gallery{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px){
  .single .prose .wp-block-gallery{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.single .prose .wp-block-gallery img{
  margin-top: 0px;
  margin-bottom: 0px;
}
.single .prose .aligncenter{
  text-align: center;
}
.single .prose .has-text-align-right{
  text-align: right;
}
.single .prose .has-text-align-center{
  text-align: center;
}

.page .prose h3{
  position: relative;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 800;
}

.page .prose h3::before{
  position: absolute;
  top: 0px;
  left: 0px;
  margin-top: -0.75rem;
  height: 8px;
  width: 100px;
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(245 102 0 / var(--tw-bg-opacity));
}

@media (min-width: 1280px){
  .page .prose h3{
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.slider-text span{
  font-size: 1.875rem;
  line-height: 2.25rem;
}

@media (min-width: 768px){
  .slider-text span{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

@media (min-width: 1280px){
  .slider-text span{
    font-size: 3.75rem;
    line-height: 1;
  }
}

.orange-bar{
  position: relative;
}

.orange-bar::before{
  position: absolute;
  top: 0px;
  left: 0px;
  margin-top: -0.75rem;
  height: 8px;
  width: 100px;
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(245 102 0 / var(--tw-bg-opacity));
}

.wp-block-custom-button .btn-orange{
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(245 102 0 / var(--tw-bg-opacity));
  padding-left: 4rem;
  padding-right: 4rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.wp-block-custom-button .btn-orange:hover{
  opacity: 0.6;
}

@media (min-width: 768px){
  .wp-block-custom-button .btn-orange{
    min-width: 325px;
  }
}
.wp-block-custom-button .btn-white{
  margin-top: 1rem;
  display: inline-block;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(245 102 0 / var(--tw-border-opacity));
  padding-left: 4rem;
  padding-right: 4rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(245 102 0 / var(--tw-text-opacity));
}
.wp-block-custom-button .btn-white:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(245 102 0 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
@media (min-width: 768px){
  .wp-block-custom-button .btn-white{
    min-width: 325px;
  }
}
.wp-block-custom-button .btn-gray{
  display: block;
  background-color: rgb(200 201 199 / var(--tw-bg-opacity));
  --tw-bg-opacity: 0.3;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 2rem;
  padding-right: 2rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(245 102 0 / var(--tw-text-opacity));
}
.wp-block-custom-button .btn-gray:hover{
  --tw-bg-opacity: 1;
}

.wp-block-leadership .column-container {
  column-rule: solid 1px #F56600;
  column-gap: 2rem;
}
@media (min-width: 1280px) {
  .wp-block-leadership .column-container {
    column-gap: 4rem;
  }
}

.wp-block-gray-box .gray-box a{
  --tw-text-opacity: 1;
  color: rgb(245 102 0 / var(--tw-text-opacity));
}

.wp-block-gray-box .gray-box a:hover{
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

@media (min-width: 1024px){
  .tribe-events{
    margin-top: 2rem;
  }
}

.tribe-events {
  /* .tribe-events-calendar-month__day-cell {
    &.has_events {
      @apply bg-c-gray-100 bg-opacity-20
    }
  } */
}
.tribe-events .tribe-events-calendar-month__day--current{
  background-color: rgb(245 102 0 / var(--tw-bg-opacity)) !important;
  --tw-bg-opacity: 0.2 !important;
}
.tribe-events .tribe-events-calendar-month__day--current .tribe-events-calendar-month__day-cell--mobile,  .tribe-events .tribe-events-calendar-month__day--current .tribe-events-calendar-month__day-cell--mobile.has_events{
  background-color: rgb(245 102 0 / var(--tw-bg-opacity));
  --tw-bg-opacity: 0.2;
}
.tribe-events .tribe-common-anchor-thin-alt{
  --tw-border-opacity: 1;
  border-color: rgb(245 102 0 / var(--tw-border-opacity));
}
.tribe-events .tribe-common-anchor-thin-alt:hover{
  --tw-text-opacity: 1;
  color: rgb(245 102 0 / var(--tw-text-opacity));
}
.tribe-events .tribe-common-anchor-thin-alt:focus{
  --tw-text-opacity: 1;
  color: rgb(245 102 0 / var(--tw-text-opacity));
}
.tribe-events .tribe-common-anchor-thin-alt:active{
  --tw-text-opacity: 1;
  color: rgb(245 102 0 / var(--tw-text-opacity));
}
.tribe-events .tribe-common-c-svgicon--messages-not-found .tribe-common-c-svgicon__svg-stroke{
  stroke: #F56600;
}
.tribe-events .tribe-events-c-subscribe-dropdown .tribe-common-c-btn-border{
  --tw-border-opacity: 1;
  border-color: rgb(245 102 0 / var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgb(245 102 0 / var(--tw-text-opacity));
}
.tribe-events .tribe-events-c-subscribe-dropdown .tribe-common-c-btn-border:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(245 102 0 / var(--tw-bg-opacity));
}
.tribe-events .tribe-events-c-subscribe-dropdown .tribe-common-c-btn-border:focus{
  --tw-bg-opacity: 1;
  background-color: rgb(245 102 0 / var(--tw-bg-opacity));
}
.tribe-events .tribe-events-c-subscribe-dropdown .tribe-common-c-btn-border:active{
  --tw-bg-opacity: 1;
  background-color: rgb(245 102 0 / var(--tw-bg-opacity));
}
.tribe-events .datepicker .table-condensed .month.focused.active{
  --tw-bg-opacity: 1;
  background-color: rgb(245 102 0 / var(--tw-bg-opacity));
}
.tribe-events .datepicker .table-condensed .month.focused.active:focus{
  --tw-bg-opacity: 1;
  background-color: rgb(245 102 0 / var(--tw-bg-opacity));
}
.tribe-events .datepicker .table-condensed .active.day{
  --tw-bg-opacity: 1;
  background-color: rgb(245 102 0 / var(--tw-bg-opacity));
}
.tribe-events .datepicker .table-condensed .active.day:focus{
  --tw-bg-opacity: 1;
  background-color: rgb(245 102 0 / var(--tw-bg-opacity));
}
.tribe-events .tribe-events-c-view-selector__button:before{
  --tw-bg-opacity: 1;
  background-color: rgb(245 102 0 / var(--tw-bg-opacity));
}
.tribe-events .tribe-events-calendar-month .tribe-events-calendar-month__calendar-event-title{
  font-weight: 700;
}
.tribe-events .tribe-common-l-container{
  max-width: none;
  padding: 0px;
}
@media (min-width: 1024px) {
  .tribe-events .tribe-common-l-container {
    padding: 0 !important;
  }
}
@media (min-width: 1536px) {
  .tribe-events .tribe-common-l-container {
    padding: 0 !important;
  }
}
.tribe-events .tribe-common-l-container h1{
  margin-bottom: 1rem !important;
  font-size: 1.875rem !important;
  line-height: 2.25rem !important;
  font-weight: 800 !important;
}
@media (min-width: 1024px){
  .tribe-events .tribe-common-l-container h1{
    margin-bottom: 1.5rem !important;
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
  }
}
.tribe-events .tribe-events-calendar-month__day-cell.has-events{
  background-color: rgb(200 201 199 / var(--tw-bg-opacity));
  --tw-bg-opacity: 0.2;
}
.tribe-events .tribe-common-c-svgicon{
  --tw-text-opacity: 1 !important;
  color: rgb(245 102 0 / var(--tw-text-opacity)) !important;
}
.tribe-events .tribe-events-calendar-month__mobile-events-icon{
  --tw-bg-opacity: 1;
  background-color: rgb(245 102 0 / var(--tw-bg-opacity));
}
.tribe-events .tribe-events-calendar-month__day-cell--mobile.has_events{
  background-color: rgb(200 201 199 / var(--tw-bg-opacity));
  --tw-bg-opacity: 0.2;
}
.tribe-events .tribe-events-calendar-month__day-cell--selected{
  background-color: rgb(245 102 0 / var(--tw-bg-opacity));
  --tw-bg-opacity: 0.5;
}
.tribe-events .tribe-events-calendar-month__day-cell--selected:hover{
  background-color: rgb(245 102 0 / var(--tw-bg-opacity));
  --tw-bg-opacity: 0.2;
}
.tribe-events .tribe-events-calendar-month__day-cell--selected:focus{
  background-color: rgb(245 102 0 / var(--tw-bg-opacity));
  --tw-bg-opacity: 0.5;
}
.tribe-events .tribe-events-calendar-month__day-cell--selected .tribe-events-calendar-month__mobile-events-icon{
  --tw-bg-opacity: 1;
  background-color: rgb(245 102 0 / var(--tw-bg-opacity));
}

.main-nav .current-menu-item{
  --tw-text-opacity: 1;
  color: rgb(140 130 121 / var(--tw-text-opacity));
}

.lity-active body {
  overflow: hidden;
  height: 100vw;
}

.event-modal .tribe-events-schedule{
  display: none;
}

.single-tribe_events #tribe-events-pg-template{
  max-width: none;
  padding: 0px;
}
.single-tribe_events .tribe-events-schedule .tribe-events-schedule__datetime{
  font-family: trade-gothic-next, sans-serif;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;
}
.single-tribe_events .tribe-events-schedule .tribe-events-schedule__separator--date{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}

.home-carousel .flickity-prev-next-button{
  z-index: 40;
}

.home-carousel .flickity-prev-next-button:hover{
  background-color: transparent;
}
.home-carousel .flickity-prev-next-button.previous{
  left: 0px;
}
@media (min-width: 1280px){
  .home-carousel .flickity-prev-next-button.previous{
    left: 0.5rem;
  }
}
.home-carousel .flickity-prev-next-button.next{
  right: 0px;
}
@media (min-width: 1280px){
  .home-carousel .flickity-prev-next-button.next{
    right: 0.5rem;
  }
}
@media (min-width: 768px){
  .home-carousel .flickity-viewport{
    height: 100%;
  }
}
.home-carousel .flickity-button-icon{
  fill: #fff;
}

.wp-block-social .fb-feed .cff-text a{
  --tw-text-opacity: 1;
  color: rgb(245 102 0 / var(--tw-text-opacity));
}

.wp-block-social .fb-feed .cff-text a:hover{
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
.wp-block-social .fb-feed .cff-expand a,  .wp-block-social .fb-feed .cff-expand .cff-more,  .wp-block-social .fb-feed .cff-expand .cff-less,  .wp-block-social .fb-feed .cff-expand a span{
  --tw-text-opacity: 1;
  color: rgb(245 102 0 / var(--tw-text-opacity));
}
.wp-block-social .fb-feed .cff-expand a:hover,  .wp-block-social .fb-feed .cff-expand .cff-more:hover,  .wp-block-social .fb-feed .cff-expand .cff-less:hover,  .wp-block-social .fb-feed .cff-expand a span:hover{
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
.wp-block-social .fb-feed .cff-post-text{
  margin-bottom: 1rem !important;
}
.wp-block-social .fb-feed .cff-masonry{
  margin-bottom: 0px;
}
.wp-block-social .fb-feed .cff-item{
  border-width: 1px !important;
  border-style: solid !important;
  --tw-border-opacity: 1 !important;
  border-color: rgb(229 231 235 / var(--tw-border-opacity)) !important;
  padding: 1.5rem !important;
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1) !important;
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}
.wp-block-social .fb-feed .cff-post-links{
  margin-top: 0.5rem !important;
}
.wp-block-social .fb-feed .cff-post-links a{
  --tw-text-opacity: 1;
  color: rgb(245 102 0 / var(--tw-text-opacity));
}
.wp-block-social .fb-feed .cff-post-links a:hover{
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

.prose .wp-block-columns.is-layout-flex{
  align-items: flex-start;
}

.gfield{
  margin-bottom: 1rem;
}
.gfield input,  .gfield select,  .gfield textarea{
  width: 100%;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(200 201 199 / var(--tw-border-opacity));
}
.gfield input::placeholder,  .gfield select::placeholder,  .gfield textarea::placeholder{
  font-style: italic;
}
.gfield input:focus,  .gfield select:focus,  .gfield textarea:focus{
  --tw-border-opacity: 1;
  border-color: rgb(245 102 0 / var(--tw-border-opacity));
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(245 102 0 / var(--tw-ring-opacity));
}
.gfield.gfield_error input,  .gfield.gfield_error select,  .gfield.gfield_error textarea{
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity));
}
.gfield.gform_validation_container{
  display: none;
}
.gfield .gfield_required{
  display: none;
}
.gfield textarea{
  height: 10rem;
}
.gfield label{
  margin-bottom: 0.25rem;
  display: block;
}

.gfield_radio{
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.gfield_radio .gchoice{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.gfield_radio .gchoice input{
  height: 1.25rem;
  width: 1.25rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(112 112 112 / var(--tw-border-opacity));
}
.gfield_radio .gchoice input:checked{
  --tw-border-opacity: 1;
  border-color: rgb(245 102 0 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(245 102 0 / var(--tw-bg-opacity));
}

.gform_submission_error{
  margin-bottom: 0.5rem;
  text-align: center;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity));
}

.hidden_label label{
  display: none;
}

.gfield_visibility_hidden{
  display: none !important;
}

.validation_message{
  display: none;
}

.validation_error{
  margin-bottom: 1rem;
  padding-left: 0px;
  padding-right: 0px;
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity));
}

@media (min-width: 768px){
  .validation_error{
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    width: 80%;
    text-align: center;
  }
}

/* .gform_ajax_spinner {
  @apply hidden !important;
} */
.gform_footer{
  position: relative;
  margin-top: 1rem;
  max-width: 250px;
}
.gform_footer .gform_button{
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(245 102 0 / var(--tw-bg-opacity));
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.gform_footer .gform_button:hover{
  cursor: pointer;
}

/* .gform_footer {
  .gform_button {
    @apply text-white uppercase font-bold py-3.5 w-full hover:cursor-pointer;
  }
} */
@media (min-width: 768px){
  .join-form .gform_fields{
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 1.25rem;
  }
}
.join-form .gfield{
  width: 100%;
}
@media (min-width: 768px){
  .join-form .gfield{
    margin-bottom: 0px;
  }
  .join-form .gfield:nth-child(1){
    grid-column: span 10 / span 10;
  }
  .join-form .gfield:nth-child(1) select {
    width: calc(50% - 0.625rem);
  }
  .join-form .gfield:nth-child(2),  .join-form .gfield:nth-child(3){
    grid-column: span 5 / span 5;
  }
  .join-form .gfield:nth-child(4){
    grid-column: span 10 / span 10;
  }
  .join-form .gfield:nth-child(5){
    grid-column: span 5 / span 5;
  }
  .join-form .gfield:nth-child(6){
    grid-column: span 5 / span 5;
  }
  .join-form .gfield:nth-child(7){
    grid-column: span 10 / span 10;
  }
  .join-form .gfield:nth-child(8){
    grid-column: span 5 / span 5;
  }
  .join-form .gfield:nth-child(9){
    grid-column: span 5 / span 5;
  }
  .join-form .gfield:nth-child(10){
    grid-column: span 7 / span 7;
  }
  .join-form .gfield:nth-child(11){
    grid-column: span 3 / span 3;
  }
  .join-form .gfield:nth-child(12){
    grid-column: span 3 / span 3;
  }
}
@media (min-width: 1280px){
  .join-form .gfield:nth-child(12){
    grid-column: span 2 / span 2;
  }
}
@media (min-width: 768px){
  .join-form .gfield:nth-child(13){
    grid-column: span 3 / span 3;
  }
}
@media (min-width: 1280px){
  .join-form .gfield:nth-child(13){
    grid-column: span 2 / span 2;
  }
}
@media (min-width: 768px){
  .join-form .gfield:nth-child(14){
    grid-column: span 3 / span 3;
  }
  .join-form .gfield:nth-child(15){
    grid-column: span 10 / span 10;
  }
  .join-form .gfield:nth-child(16){
    grid-column: span 3 / span 3;
  }
}
.join-form .gform_footer{
  position: relative;
  margin-top: 2rem;
  width: 100%;
}
@media (min-width: 768px){
  .join-form .gform_footer{
    max-width: 503px;
  }
}
@media (min-width: 1024px){
  .join-form .gform_footer{
    max-width: 491px;
  }
}
@media (min-width: 1280px){
  .join-form .gform_footer{
    max-width: 554px;
  }
}
@media (min-width: 1536px){
  .join-form .gform_footer{
    max-width: 574px;
  }
}
.join-form .gform_footer:before {
  content: url("../images/paw-join.svg");
  position: absolute;
  left: 0px;
  margin-left: calc(50% - 3.25rem);
  margin-top: 0.625rem;
  height: 1rem;
  width: 1rem;
}
.join-form .gform_footer .gform_button{
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(245 102 0 / var(--tw-bg-opacity));
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.join-form .gform_footer .gform_button:hover{
  cursor: pointer;
}
.join-form .gfield_description{
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-style: italic;
}
.join-form #field_1_20 .validation_message{
  display: block !important;
  --tw-text-opacity: 1 !important;
  color: rgb(239 68 68 / var(--tw-text-opacity)) !important;
}
.join-form #field_1_21 .validation_message{
  display: block !important;
  --tw-text-opacity: 1 !important;
  color: rgb(239 68 68 / var(--tw-text-opacity)) !important;
}
.join-form #field_1_22{
  display: none;
}
.join-form .gfield--type-address .gfield_label_before_complex{
  display: none;
}
@media (min-width: 768px){
  .join-form .gfield--type-address .ginput_container_address{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 1.25rem;
  }
}
.join-form .gfield--type-address .ginput_container_address > span{
  margin-bottom: 1rem;
  display: block;
}
@media (min-width: 768px){
  .join-form .gfield--type-address .ginput_container_address .ginput_full{
    grid-column: span 3 / span 3;
  }
  .join-form .gfield--type-address .ginput_container_address .address_city{
    grid-column: span 1 / span 1;
    margin-bottom: 0px;
  }
  .join-form .gfield--type-address .ginput_container_address .address_state{
    grid-column: span 1 / span 1;
    margin-bottom: 0px;
  }
  .join-form .gfield--type-address .ginput_container_address .address_zip{
    grid-column: span 1 / span 1;
    margin-bottom: 0px;
  }
  .join-form .gfield--type-square_creditcard{
    grid-column: span 7 / span 7 !important;
  }
}
@media (min-width: 1024px){
  .join-form .gfield--type-square_creditcard{
    grid-column: span 8 / span 8 !important;
  }
}
@media (min-width: 1280px){
  .join-form .gfield--type-square_creditcard{
    grid-column: span 7 / span 7 !important;
  }
}
@media (min-width: 1536px){
  .join-form .gfield--type-square_creditcard{
    grid-column: span 6 / span 6 !important;
  }
}
.join-form .gfield--type-square_creditcard .square-single-form{
  min-width: 0px;
}
.join-form .gfield--type-square_creditcard legend{
  margin-bottom: 0px;
  display: none;
}
.join-form .payment-heading-container{
  margin-bottom: 0.25rem;
}
@media (min-width: 768px){
  .join-form .payment-heading-container{
    margin-bottom: -1rem;
  }
}

.gform_ajax_spinner {
  box-sizing: border-box;
  margin-top: 11px;
  margin-left: auto;
  margin-right: auto;
  right: 0;
  left: 0;
  border: 3px solid #f79621;
  border-left: 3px solid rgba(247, 150, 33, 0);
  border-top: 3px solid rgba(247, 150, 33, 0.15);
  border-right: 3px solid rgba(247, 150, 33, 0.5);
  animation: spinner 1.1s infinite linear;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  position: absolute;
  z-index: 1;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.container{
  width: 100%;
}
@media (min-width: 640px){
  .container{
    max-width: 640px;
  }
}
@media (min-width: 768px){
  .container{
    max-width: 768px;
  }
}
@media (min-width: 1024px){
  .container{
    max-width: 1024px;
  }
}
@media (min-width: 1280px){
  .container{
    max-width: 1280px;
  }
}
@media (min-width: 1536px){
  .container{
    max-width: 1536px;
  }
}
.prose{
  color: var(--tw-prose-body);
  max-width: 65ch;
}
.prose :where([class~="lead"]):not(:where([class~="not-prose"] *)){
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.prose :where(a):not(:where([class~="not-prose"] *)){
  color: var(--tw-prose-links);
  text-decoration: underline;
  font-weight: 500;
}
.prose :where(strong):not(:where([class~="not-prose"] *)){
  color: var(--tw-prose-bold);
  font-weight: 600;
}
.prose :where(ol):not(:where([class~="not-prose"] *)){
  list-style-type: decimal;
  padding-left: 1.625em;
}
.prose :where(ol[type="A"]):not(:where([class~="not-prose"] *)){
  list-style-type: upper-alpha;
}
.prose :where(ol[type="a"]):not(:where([class~="not-prose"] *)){
  list-style-type: lower-alpha;
}
.prose :where(ol[type="A" s]):not(:where([class~="not-prose"] *)){
  list-style-type: upper-alpha;
}
.prose :where(ol[type="a" s]):not(:where([class~="not-prose"] *)){
  list-style-type: lower-alpha;
}
.prose :where(ol[type="I"]):not(:where([class~="not-prose"] *)){
  list-style-type: upper-roman;
}
.prose :where(ol[type="i"]):not(:where([class~="not-prose"] *)){
  list-style-type: lower-roman;
}
.prose :where(ol[type="I" s]):not(:where([class~="not-prose"] *)){
  list-style-type: upper-roman;
}
.prose :where(ol[type="i" s]):not(:where([class~="not-prose"] *)){
  list-style-type: lower-roman;
}
.prose :where(ol[type="1"]):not(:where([class~="not-prose"] *)){
  list-style-type: decimal;
}
.prose :where(ul):not(:where([class~="not-prose"] *)){
  list-style-type: disc;
  padding-left: 1.625em;
}
.prose :where(ol > li):not(:where([class~="not-prose"] *))::marker{
  font-weight: 400;
  color: var(--tw-prose-counters);
}
.prose :where(ul > li):not(:where([class~="not-prose"] *))::marker{
  color: var(--tw-prose-bullets);
}
.prose :where(hr):not(:where([class~="not-prose"] *)){
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}
.prose :where(blockquote):not(:where([class~="not-prose"] *)){
  font-weight: 500;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-left-width: 0.25rem;
  border-left-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-left: 1em;
}
.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"] *))::before{
  content: open-quote;
}
.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"] *))::after{
  content: close-quote;
}
.prose :where(h1):not(:where([class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 800;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}
.prose :where(h1 strong):not(:where([class~="not-prose"] *)){
  font-weight: 900;
}
.prose :where(h2):not(:where([class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}
.prose :where(h2 strong):not(:where([class~="not-prose"] *)){
  font-weight: 800;
}
.prose :where(h3):not(:where([class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}
.prose :where(h3 strong):not(:where([class~="not-prose"] *)){
  font-weight: 700;
}
.prose :where(h4):not(:where([class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}
.prose :where(h4 strong):not(:where([class~="not-prose"] *)){
  font-weight: 700;
}
.prose :where(figure > *):not(:where([class~="not-prose"] *)){
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where(figcaption):not(:where([class~="not-prose"] *)){
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}
.prose :where(code):not(:where([class~="not-prose"] *)){
  color: var(--tw-prose-code);
  font-weight: 600;
  font-size: 0.875em;
}
.prose :where(code):not(:where([class~="not-prose"] *))::before{
  content: "`";
}
.prose :where(code):not(:where([class~="not-prose"] *))::after{
  content: "`";
}
.prose :where(a code):not(:where([class~="not-prose"] *)){
  color: var(--tw-prose-links);
}
.prose :where(pre):not(:where([class~="not-prose"] *)){
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-right: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-left: 1.1428571em;
}
.prose :where(pre code):not(:where([class~="not-prose"] *)){
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
.prose :where(pre code):not(:where([class~="not-prose"] *))::before{
  content: none;
}
.prose :where(pre code):not(:where([class~="not-prose"] *))::after{
  content: none;
}
.prose :where(table):not(:where([class~="not-prose"] *)){
  width: 100%;
  table-layout: auto;
  text-align: left;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}
.prose :where(thead):not(:where([class~="not-prose"] *)){
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}
.prose :where(thead th):not(:where([class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}
.prose :where(tbody tr):not(:where([class~="not-prose"] *)){
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}
.prose :where(tbody tr:last-child):not(:where([class~="not-prose"] *)){
  border-bottom-width: 0;
}
.prose :where(tbody td):not(:where([class~="not-prose"] *)){
  vertical-align: baseline;
  padding-top: 0.5714286em;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}
.prose{
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}
.prose :where(p):not(:where([class~="not-prose"] *)){
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.prose :where(img):not(:where([class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(video):not(:where([class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(figure):not(:where([class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(h2 code):not(:where([class~="not-prose"] *)){
  font-size: 0.875em;
}
.prose :where(h3 code):not(:where([class~="not-prose"] *)){
  font-size: 0.9em;
}
.prose :where(li):not(:where([class~="not-prose"] *)){
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.prose :where(ol > li):not(:where([class~="not-prose"] *)){
  padding-left: 0.375em;
}
.prose :where(ul > li):not(:where([class~="not-prose"] *)){
  padding-left: 0.375em;
}
.prose > :where(ul > li p):not(:where([class~="not-prose"] *)){
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose > :where(ul > li > *:first-child):not(:where([class~="not-prose"] *)){
  margin-top: 1.25em;
}
.prose > :where(ul > li > *:last-child):not(:where([class~="not-prose"] *)){
  margin-bottom: 1.25em;
}
.prose > :where(ol > li > *:first-child):not(:where([class~="not-prose"] *)){
  margin-top: 1.25em;
}
.prose > :where(ol > li > *:last-child):not(:where([class~="not-prose"] *)){
  margin-bottom: 1.25em;
}
.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)){
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(hr + *):not(:where([class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(h2 + *):not(:where([class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(h3 + *):not(:where([class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(h4 + *):not(:where([class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(thead th:first-child):not(:where([class~="not-prose"] *)){
  padding-left: 0;
}
.prose :where(thead th:last-child):not(:where([class~="not-prose"] *)){
  padding-right: 0;
}
.prose :where(tbody td:first-child):not(:where([class~="not-prose"] *)){
  padding-left: 0;
}
.prose :where(tbody td:last-child):not(:where([class~="not-prose"] *)){
  padding-right: 0;
}
.prose > :where(:first-child):not(:where([class~="not-prose"] *)){
  margin-top: 0;
}
.prose > :where(:last-child):not(:where([class~="not-prose"] *)){
  margin-bottom: 0;
}
.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;
}
.invisible{
  visibility: hidden;
}
.static{
  position: static;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.inset-0{
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}
.inset-x-0{
  left: 0px;
  right: 0px;
}
.top-\[40\%\]{
  top: 40%;
}
.bottom-0{
  bottom: 0px;
}
.top-0{
  top: 0px;
}
.left-0{
  left: 0px;
}
.z-10{
  z-index: 10;
}
.z-20{
  z-index: 20;
}
.z-40{
  z-index: 40;
}
.z-30{
  z-index: 30;
}
.z-50{
  z-index: 50;
}
.float-left{
  float: left;
}
.clear-both{
  clear: both;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.my-5{
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.mb-10{
  margin-bottom: 2.5rem;
}
.mb-2{
  margin-bottom: 0.5rem;
}
.mb-0{
  margin-bottom: 0px;
}
.mt-8{
  margin-top: 2rem;
}
.mb-4{
  margin-bottom: 1rem;
}
.mb-1{
  margin-bottom: 0.25rem;
}
.mt-1{
  margin-top: 0.25rem;
}
.mt-4{
  margin-top: 1rem;
}
.mt-6{
  margin-top: 1.5rem;
}
.mb-6{
  margin-bottom: 1.5rem;
}
.mt-2{
  margin-top: 0.5rem;
}
.mt-3{
  margin-top: 0.75rem;
}
.mb-5{
  margin-bottom: 1.25rem;
}
.mt-1\.5{
  margin-top: 0.375rem;
}
.ml-4{
  margin-left: 1rem;
}
.mb-8{
  margin-bottom: 2rem;
}
.mt-5{
  margin-top: 1.25rem;
}
.mr-4{
  margin-right: 1rem;
}
.mt-10{
  margin-top: 2.5rem;
}
.ml-1\.5{
  margin-left: 0.375rem;
}
.ml-1{
  margin-left: 0.25rem;
}
.mt-0\.5{
  margin-top: 0.125rem;
}
.mt-0{
  margin-top: 0px;
}
.mb-0\.5{
  margin-bottom: 0.125rem;
}
.ml-0\.5{
  margin-left: 0.125rem;
}
.ml-0{
  margin-left: 0px;
}
.block{
  display: block;
}
.inline-block{
  display: inline-block;
}
.flex{
  display: flex;
}
.inline-flex{
  display: inline-flex;
}
.grid{
  display: grid;
}
.contents{
  display: contents;
}
.hidden{
  display: none;
}
.h-80{
  height: 20rem;
}
.h-4{
  height: 1rem;
}
.h-56{
  height: 14rem;
}
.h-5{
  height: 1.25rem;
}
.h-48{
  height: 12rem;
}
.h-\[90px\]{
  height: 90px;
}
.h-\[165px\]{
  height: 165px;
}
.h-\[300px\]{
  height: 300px;
}
.h-16{
  height: 4rem;
}
.h-32{
  height: 8rem;
}
.h-full{
  height: 100%;
}
.h-8{
  height: 2rem;
}
.h-28{
  height: 7rem;
}
.h-40{
  height: 10rem;
}
.h-1{
  height: 0.25rem;
}
.h-24{
  height: 6rem;
}
.h-12{
  height: 3rem;
}
.h-6{
  height: 1.5rem;
}
.h-auto{
  height: auto;
}
.h-10{
  height: 2.5rem;
}
.min-h-screen{
  min-height: 100vh;
}
.w-full{
  width: 100%;
}
.w-4{
  width: 1rem;
}
.w-5{
  width: 1.25rem;
}
.w-\[165px\]{
  width: 165px;
}
.w-\[300px\]{
  width: 300px;
}
.w-8{
  width: 2rem;
}
.w-1{
  width: 0.25rem;
}
.w-12{
  width: 3rem;
}
.w-6{
  width: 1.5rem;
}
.w-1\/2{
  width: 50%;
}
.w-auto{
  width: auto;
}
.w-48{
  width: 12rem;
}
.max-w-\[320px\]{
  max-width: 320px;
}
.max-w-none{
  max-width: none;
}
.max-w-\[875px\]{
  max-width: 875px;
}
.flex-\[0_0_100\%\]{
  flex: 0 0 100%;
}
.flex-shrink-0{
  flex-shrink: 0;
}
.flex-grow{
  flex-grow: 1;
}
.rotate-45{
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-180{
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.cursor-pointer{
  cursor: pointer;
}
.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.flex-col{
  flex-direction: column;
}
.items-start{
  align-items: flex-start;
}
.items-end{
  align-items: flex-end;
}
.items-center{
  align-items: center;
}
.items-stretch{
  align-items: stretch;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.gap-10{
  gap: 2.5rem;
}
.gap-5{
  gap: 1.25rem;
}
.gap-8{
  gap: 2rem;
}
.gap-4{
  gap: 1rem;
}
.gap-1{
  gap: 0.25rem;
}
.gap-2{
  gap: 0.5rem;
}
.gap-6{
  gap: 1.5rem;
}
.gap-1\.5{
  gap: 0.375rem;
}
.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));
}
.overflow-auto{
  overflow: auto;
}
.overflow-hidden{
  overflow: hidden;
}
.rounded-full{
  border-radius: 9999px;
}
.border{
  border-width: 1px;
}
.border-r-0{
  border-right-width: 0px;
}
.border-t{
  border-top-width: 1px;
}
.border-b{
  border-bottom-width: 1px;
}
.border-b-8{
  border-bottom-width: 8px;
}
.border-c-gray-300{
  --tw-border-opacity: 1;
  border-color: rgb(140 130 121 / var(--tw-border-opacity));
}
.border-black{
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity));
}
.border-c-gray-100{
  --tw-border-opacity: 1;
  border-color: rgb(200 201 199 / var(--tw-border-opacity));
}
.border-c-gray-200{
  --tw-border-opacity: 1;
  border-color: rgb(202 196 189 / var(--tw-border-opacity));
}
.border-c-orange-100{
  --tw-border-opacity: 1;
  border-color: rgb(245 102 0 / var(--tw-border-opacity));
}
.border-opacity-30{
  --tw-border-opacity: 0.3;
}
.bg-indigo-400{
  --tw-bg-opacity: 1;
  background-color: rgb(129 140 248 / var(--tw-bg-opacity));
}
.bg-green-400{
  --tw-bg-opacity: 1;
  background-color: rgb(74 222 128 / var(--tw-bg-opacity));
}
.bg-yellow-400{
  --tw-bg-opacity: 1;
  background-color: rgb(250 204 21 / var(--tw-bg-opacity));
}
.bg-red-400{
  --tw-bg-opacity: 1;
  background-color: rgb(248 113 113 / var(--tw-bg-opacity));
}
.bg-c-orange-100{
  --tw-bg-opacity: 1;
  background-color: rgb(245 102 0 / var(--tw-bg-opacity));
}
.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-c-gray-100{
  --tw-bg-opacity: 1;
  background-color: rgb(200 201 199 / var(--tw-bg-opacity));
}
.bg-black{
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}
.bg-indigo-500{
  --tw-bg-opacity: 1;
  background-color: rgb(99 102 241 / var(--tw-bg-opacity));
}
.bg-opacity-30{
  --tw-bg-opacity: 0.3;
}
.bg-opacity-25{
  --tw-bg-opacity: 0.25;
}
.bg-gradient-to-t{
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.from-black{
  --tw-gradient-from: #000;
  --tw-gradient-to: rgb(0 0 0 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.fill-c-orange-100{
  fill: #F56600;
}
.fill-white{
  fill: #fff;
}
.fill-black{
  fill: #000;
}
.stroke-white{
  stroke: #fff;
}
.stroke-\[\#333333\]{
  stroke: #333333;
}
.stroke-black{
  stroke: #000;
}
.object-contain{
  object-fit: contain;
}
.object-cover{
  object-fit: cover;
}
.object-center{
  object-position: center;
}
.p-6{
  padding: 1.5rem;
}
.p-5{
  padding: 1.25rem;
}
.p-0\.5{
  padding: 0.125rem;
}
.p-0{
  padding: 0px;
}
.p-4{
  padding: 1rem;
}
.px-5{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-16{
  padding-left: 4rem;
  padding-right: 4rem;
}
.py-2\.5{
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}
.py-6{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-5{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.px-8{
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-10{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.px-10{
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.px-3{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.px-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.py-8{
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.pb-12{
  padding-bottom: 3rem;
}
.pt-6{
  padding-top: 1.5rem;
}
.pb-4{
  padding-bottom: 1rem;
}
.pt-5{
  padding-top: 1.25rem;
}
.pb-10{
  padding-bottom: 2.5rem;
}
.pt-2{
  padding-top: 0.5rem;
}
.pb-6{
  padding-bottom: 1.5rem;
}
.pl-5{
  padding-left: 1.25rem;
}
.pl-4{
  padding-left: 1rem;
}
.text-left{
  text-align: left;
}
.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}
.text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-base{
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}
.font-extrabold{
  font-weight: 800;
}
.font-normal{
  font-weight: 400;
}
.font-bold{
  font-weight: 700;
}
.font-light{
  font-weight: 300;
}
.font-medium{
  font-weight: 500;
}
.uppercase{
  text-transform: uppercase;
}
.italic{
  font-style: italic;
}
.leading-none{
  line-height: 1;
}
.leading-tight{
  line-height: 1.25;
}
.text-indigo-50{
  --tw-text-opacity: 1;
  color: rgb(238 242 255 / var(--tw-text-opacity));
}
.text-green-50{
  --tw-text-opacity: 1;
  color: rgb(240 253 244 / var(--tw-text-opacity));
}
.text-yellow-50{
  --tw-text-opacity: 1;
  color: rgb(254 252 232 / var(--tw-text-opacity));
}
.text-red-50{
  --tw-text-opacity: 1;
  color: rgb(254 242 242 / var(--tw-text-opacity));
}
.text-c-orange-100{
  --tw-text-opacity: 1;
  color: rgb(245 102 0 / var(--tw-text-opacity));
}
.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.text-\[\#888B8D\]{
  --tw-text-opacity: 1;
  color: rgb(136 139 141 / var(--tw-text-opacity));
}
.text-c-gray-300{
  --tw-text-opacity: 1;
  color: rgb(140 130 121 / var(--tw-text-opacity));
}
.text-black{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.text-\[\#333333\]{
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity));
}
.\!text-c-orange-100{
  --tw-text-opacity: 1 !important;
  color: rgb(245 102 0 / var(--tw-text-opacity)) !important;
}
.opacity-25{
  opacity: 0.25;
}
.opacity-80{
  opacity: 0.8;
}
.opacity-50{
  opacity: 0.5;
}
.shadow-md{
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline{
  outline-style: solid;
}
.transition{
  transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-150{
  transition-duration: 150ms;
}
.duration-200{
  transition-duration: 200ms;
}
.duration-300{
  transition-duration: 300ms;
}
.line-clamp-2{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.line-clamp-3{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.line-clamp-6{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}
.marker\:text-black *::marker{
  color: rgb(0 0 0 );
}
.marker\:text-black::marker{
  color: rgb(0 0 0 );
}
.first\:border-t-0:first-child{
  border-top-width: 0px;
}
.first\:pl-0:first-child{
  padding-left: 0px;
}
.last\:border-b:last-child{
  border-bottom-width: 1px;
}
.last\:pr-0:last-child{
  padding-right: 0px;
}
.hover\:bg-opacity-100:hover{
  --tw-bg-opacity: 1;
}
.hover\:opacity-60:hover{
  opacity: 0.6;
}
.focus\:not-sr-only:focus{
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}
.focus\:outline-none:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.disabled\:opacity-75:disabled{
  opacity: 0.75;
}
.group:hover .group-hover\:text-c-orange-100{
  --tw-text-opacity: 1;
  color: rgb(245 102 0 / var(--tw-text-opacity));
}
.group:hover .group-hover\:text-black{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.prose-headings\:text-black :is(:where(h1, h2, h3, h4, th):not(:where([class~="not-prose"] *))){
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.prose-a\:text-c-orange-100 :is(:where(a):not(:where([class~="not-prose"] *))){
  --tw-text-opacity: 1;
  color: rgb(245 102 0 / var(--tw-text-opacity));
}
.prose-a\:no-underline :is(:where(a):not(:where([class~="not-prose"] *))){
  -webkit-text-decoration-line: none;
          text-decoration-line: none;
}
.prose-strong\:text-black :is(:where(strong):not(:where([class~="not-prose"] *))){
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
@media (min-width: 640px){
  .sm\:h-64{
    height: 16rem;
  }
  .sm\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sm\:gap-x-10{
    column-gap: 2.5rem;
  }
}
@media (min-width: 768px){
  .md\:aspect-w-8{
    position: relative;
    padding-bottom: calc(var(--tw-aspect-h) / var(--tw-aspect-w) * 100%);
    --tw-aspect-w: 8;
  }
  .md\:aspect-w-8 > *{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .md\:aspect-h-8{
    --tw-aspect-h: 8;
  }
  .md\:inset-0{
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
  }
  .md\:mb-6{
    margin-bottom: 1.5rem;
  }
  .md\:mt-0{
    margin-top: 0px;
  }
  .md\:ml-10{
    margin-left: 2.5rem;
  }
  .md\:mb-5{
    margin-bottom: 1.25rem;
  }
  .md\:mr-8{
    margin-right: 2rem;
  }
  .md\:mb-8{
    margin-bottom: 2rem;
  }
  .md\:mt-10{
    margin-top: 2.5rem;
  }
  .md\:flex{
    display: flex;
  }
  .md\:grid{
    display: grid;
  }
  .md\:h-\[375px\]{
    height: 375px;
  }
  .md\:h-full{
    height: 100%;
  }
  .md\:h-\[150px\]{
    height: 150px;
  }
  .md\:h-48{
    height: 12rem;
  }
  .md\:h-72{
    height: 18rem;
  }
  .md\:h-auto{
    height: auto;
  }
  .md\:w-1\/4{
    width: 25%;
  }
  .md\:w-full{
    width: 100%;
  }
  .md\:flex-1{
    flex: 1 1 0%;
  }
  .md\:flex-shrink-0{
    flex-shrink: 0;
  }
  .md\:shrink-0{
    flex-shrink: 0;
  }
  .md\:flex-grow{
    flex-grow: 1;
  }
  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:flex-row{
    flex-direction: row;
  }
  .md\:flex-col{
    flex-direction: column;
  }
  .md\:items-center{
    align-items: center;
  }
  .md\:gap-8{
    gap: 2rem;
  }
  .md\:gap-10{
    gap: 2.5rem;
  }
  .md\:gap-5{
    gap: 1.25rem;
  }
  .md\:gap-6{
    gap: 1.5rem;
  }
  .md\:gap-4{
    gap: 1rem;
  }
  .md\:space-x-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(1.5rem * var(--tw-space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
  }
  .md\:border-t{
    border-top-width: 1px;
  }
  .md\:border-black{
    --tw-border-opacity: 1;
    border-color: rgb(0 0 0 / var(--tw-border-opacity));
  }
  .md\:p-8{
    padding: 2rem;
  }
  .md\:p-10{
    padding: 2.5rem;
  }
  .md\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .md\:px-1{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .md\:py-8{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .md\:pb-12{
    padding-bottom: 3rem;
  }
  .md\:pl-24{
    padding-left: 6rem;
  }
  .md\:pr-12{
    padding-right: 3rem;
  }
  .md\:pb-0{
    padding-bottom: 0px;
  }
  .md\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .md\:text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .md\:text-base{
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .md\:opacity-100{
    opacity: 1;
  }
}
@media (min-width: 1024px){
  .lg\:col-span-2{
    grid-column: span 2 / span 2;
  }
  .lg\:my-8{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .lg\:mb-10{
    margin-bottom: 2.5rem;
  }
  .lg\:mb-6{
    margin-bottom: 1.5rem;
  }
  .lg\:mt-3{
    margin-top: 0.75rem;
  }
  .lg\:mb-8{
    margin-bottom: 2rem;
  }
  .lg\:block{
    display: block;
  }
  .lg\:flex{
    display: flex;
  }
  .lg\:grid{
    display: grid;
  }
  .lg\:hidden{
    display: none;
  }
  .lg\:h-\[135px\]{
    height: 135px;
  }
  .lg\:h-\[19\.5rem\]{
    height: 19.5rem;
  }
  .lg\:h-80{
    height: 20rem;
  }
  .lg\:h-14{
    height: 3.5rem;
  }
  .lg\:w-1\/3{
    width: 33.333333%;
  }
  .lg\:w-2\/3{
    width: 66.666667%;
  }
  .lg\:w-\[235px\]{
    width: 235px;
  }
  .lg\:max-w-4xl{
    max-width: 56rem;
  }
  .lg\:flex-1{
    flex: 1 1 0%;
  }
  .lg\:flex-shrink-0{
    flex-shrink: 0;
  }
  .lg\:auto-rows-\[1fr\]{
    grid-auto-rows: 1fr;
  }
  .lg\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:flex-col{
    flex-direction: column;
  }
  .lg\:gap-8{
    gap: 2rem;
  }
  .lg\:gap-12{
    gap: 3rem;
  }
  .lg\:gap-0{
    gap: 0px;
  }
  .lg\:gap-4{
    gap: 1rem;
  }
  .lg\:gap-5{
    gap: 1.25rem;
  }
  .lg\:gap-3{
    gap: 0.75rem;
  }
  .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\:border-t-8{
    border-top-width: 8px;
  }
  .lg\:border-c-orange-100{
    --tw-border-opacity: 1;
    border-color: rgb(245 102 0 / var(--tw-border-opacity));
  }
  .lg\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .lg\:px-10{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .lg\:py-8{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .lg\:py-10{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .lg\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .lg\:px-5{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .lg\:py-16{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .lg\:py-0{
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .lg\:py-7{
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }
  .lg\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }
  .lg\:pb-16{
    padding-bottom: 4rem;
  }
  .lg\:pr-0{
    padding-right: 0px;
  }
  .lg\:pt-3{
    padding-top: 0.75rem;
  }
  .lg\:pl-24{
    padding-left: 6rem;
  }
  .lg\:pl-8{
    padding-left: 2rem;
  }
  .lg\:text-sm{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .lg\:text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .lg\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .lg\:first\:pl-0:first-child{
    padding-left: 0px;
  }
}
@media (min-width: 1280px){
  .xl\:top-\[42\%\]{
    top: 42%;
  }
  .xl\:top-\[38\%\]{
    top: 38%;
  }
  .xl\:mt-6{
    margin-top: 1.5rem;
  }
  .xl\:mt-2\.5{
    margin-top: 0.625rem;
  }
  .xl\:mt-2{
    margin-top: 0.5rem;
  }
  .xl\:flex{
    display: flex;
  }
  .xl\:h-\[325px\]{
    height: 325px;
  }
  .xl\:h-60{
    height: 15rem;
  }
  .xl\:h-\[275px\]{
    height: 275px;
  }
  .xl\:h-20{
    height: 5rem;
  }
  .xl\:h-28{
    height: 7rem;
  }
  .xl\:h-\[29\.5rem\]{
    height: 29.5rem;
  }
  .xl\:h-12{
    height: 3rem;
  }
  .xl\:h-64{
    height: 16rem;
  }
  .xl\:h-48{
    height: 12rem;
  }
  .xl\:h-1\.5{
    height: 0.375rem;
  }
  .xl\:h-1{
    height: 0.25rem;
  }
  .xl\:h-96{
    height: 24rem;
  }
  .xl\:w-\[300px\]{
    width: 300px;
  }
  .xl\:w-12{
    width: 3rem;
  }
  .xl\:w-1\.5{
    width: 0.375rem;
  }
  .xl\:w-1{
    width: 0.25rem;
  }
  .xl\:max-w-5xl{
    max-width: 64rem;
  }
  .xl\:flex-shrink-0{
    flex-shrink: 0;
  }
  .xl\:flex-grow{
    flex-grow: 1;
  }
  .xl\:columns-2{
    columns: 2;
  }
  .xl\:columns-3{
    columns: 3;
  }
  .xl\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .xl\:grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .xl\:grid-cols-7{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .xl\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .xl\:flex-col{
    flex-direction: column;
  }
  .xl\:gap-8{
    gap: 2rem;
  }
  .xl\:gap-10{
    gap: 2.5rem;
  }
  .xl\:gap-3{
    gap: 0.75rem;
  }
  .xl\:gap-12{
    gap: 3rem;
  }
  .xl\:gap-x-16{
    column-gap: 4rem;
  }
  .xl\:divide-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0;
    border-right-width: calc(0px * var(--tw-divide-x-reverse));
    border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse)));
  }
  .xl\:border-t-0{
    border-top-width: 0px;
  }
  .xl\:border-t{
    border-top-width: 1px;
  }
  .xl\:border-black{
    --tw-border-opacity: 1;
    border-color: rgb(0 0 0 / var(--tw-border-opacity));
  }
  .xl\:p-5{
    padding: 1.25rem;
  }
  .xl\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .xl\:py-10{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .xl\:py-0{
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .xl\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }
  .xl\:py-6{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .xl\:pr-6{
    padding-right: 1.5rem;
  }
  .xl\:pl-6{
    padding-left: 1.5rem;
  }
  .xl\:text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .xl\:text-base{
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .xl\:text-3xl{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .xl\:text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .xl\:leading-snug{
    line-height: 1.375;
  }
  .xl\:line-clamp-3{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
  .xl\:first\:border-t-0:first-child{
    border-top-width: 0px;
  }
  .xl\:first\:pt-0:first-child{
    padding-top: 0px;
  }
}
@media (min-width: 1536px){
  .\32xl\:h-32{
    height: 8rem;
  }
  .\32xl\:h-\[500px\]{
    height: 500px;
  }
}
