/*! 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;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

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

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  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;
}

/*
 *  STYLES
 */

/*
 ! tailwindcss v3.0.23 | 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: #ECECEC; /* 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 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     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 */
  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::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

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

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

/*
Set the default cursor for buttons.
*/

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

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

:disabled {
  cursor: default;
}

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

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

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

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

/*
Ensure the default browser behavior of the `hidden` attribute.
*/

[hidden] {
  display: none;
}

@font-face {
        font-family: 'shapiro';
        src: url('/fonts/tmpshapirovf.woff2') format('woff2');
        font-weight: normal;
        font-style: normal;
    }

@font-face {
        font-family: 'shapiro-headline';
        src: url('/fonts/ShapiroHeadline-Regular.woff2') format('woff2'),
        url('/fonts/ShapiroHeadline-Regular.woff') format('woff');
        font-weight: 400;
        font-style: normal;
    }

@font-face {
        font-family: 'shapiro-headline-medium';
        src: url('/fonts/ShapiroHeadline-Medium.woff2') format('woff2'),
        url('/fonts/ShapiroHeadline-Medium.woff') format('woff');
        font-weight: 400;
        font-style: normal;
    }

@font-face {
        font-family: 'shapiro-headline-bold';
        src: url('/fonts/ShapiroHeadline-Bold.woff2') format('woff2'),
        url('/fonts/ShapiroHeadline-Bold.woff') format('woff');
        font-weight: 700;
        font-style: normal;
    }

@font-face {
        font-family: 'shapiro-headline-62miles';
        src: url('/fonts/ShapiroHeadline62MILES.woff2') format('woff2'),
        url('/fonts/ShapiroHeadline62MILES.woff') format('woff');
        font-weight: 700;
        font-style: normal;
    }

*, ::before, ::after {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-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:  ;
}
.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;
  }
}
@media (min-width: 2500px) {

  .container {
    max-width: 2500px;
  }
}
.form-checkbox,.form-radio {
  -webkit-appearance: none;
     -moz-appearance: none;
          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;
     -moz-user-select: none;
      -ms-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;
}
.form-checkbox {
  border-radius: 0px;
}
.form-checkbox:focus,.form-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);
}
.form-checkbox:checked,.form-radio:checked {
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.form-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");
}
.form-checkbox:checked:hover,.form-checkbox:checked:focus,.form-radio:checked:hover,.form-radio:checked:focus {
  border-color: transparent;
  background-color: currentColor;
}
.form-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;
}
.form-checkbox:indeterminate:hover,.form-checkbox:indeterminate:focus {
  border-color: transparent;
  background-color: currentColor;
}
.custom-shadow {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
        box-shadow: 1px 1px 47px -13px rgba(0, 0, 0, 0.15);
}
.custom-shadow:hover {
        box-shadow: 1px 1px 47px -13px rgba(0, 0, 0, 0.35);
        transform: scale(1.01);
    }
.custom-shadow:hover .button-arrow {
  --tw-bg-opacity: 1;
  background-color: rgb(255 100 144 / var(--tw-bg-opacity));
}
.button-green {
  box-sizing: border-box;
  --tw-bg-opacity: 1;
  background-color: rgb(0 150 100 / var(--tw-bg-opacity));
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  font-family: shapiro-headline-bold, sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.button-green:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(82 193 153 / var(--tw-bg-opacity));
}
.button-arrow {
  position: absolute;
  right: 0px;
  bottom: 0px;
  display: flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  --tw-bg-opacity: 1;
  background-color: rgb(0 150 100 / var(--tw-bg-opacity));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.button-arrow:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 100 144 / var(--tw-bg-opacity));
}
@media (min-width: 1024px) {

  .button-arrow {
    height: 4rem;
  }

  .button-arrow {
    width: 4rem;
  }
}
.nav-link {
  margin-left: 3.5rem;
  font-family: shapiro-headline-medium, sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.nav-link:hover {
  --tw-text-opacity: 1;
  color: rgb(255 100 144 / var(--tw-text-opacity));
}
.nav-link-mobile {
  margin-bottom: 2rem;
  padding-bottom: 0px;
  font-family: shapiro-headline-medium, sans-serif;
  font-size: 1.875rem;
  line-height: 2.25rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.nav-link-mobile:hover {
  --tw-text-opacity: 1;
  color: rgb(255 100 144 / var(--tw-text-opacity));
}
.tag {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(236 236 236 / var(--tw-bg-opacity));
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  font-family: shapiro-headline-medium, sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.tag:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(247 247 247 / var(--tw-bg-opacity));
}
@media (min-width: 1024px) {

  .tag {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .tag {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cases-link {
  margin-right: 1rem;
  border-bottom-width: 4px;
  border-color: transparent;
  padding-bottom: 0.5rem;
  font-family: shapiro-headline-medium, sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.cases-link:hover {
  --tw-border-opacity: 1;
  border-color: rgb(255 100 144 / var(--tw-border-opacity));
}
@media (min-width: 1024px) {

  .cases-link {
    margin-right: 4rem;
  }

  .cases-link {
    padding-bottom: 1.5rem;
  }

  .cases-link {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
.footer-link {
  margin-bottom: 1rem;
  font-family: shapiro-headline-medium, sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.footer-link:hover {
  --tw-text-opacity: 1;
  color: rgb(255 100 144 / var(--tw-text-opacity));
}
.footer-about-container {
  margin-bottom: 2.5rem;
  margin-right: 2.5rem;
  display: flex;
  width: 100%;
  flex-direction: column;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
@media (min-width: 1024px) {

  .footer-about-container {
    width: 40%;
  }
}
@media (min-width: 1280px) {

  .footer-about-container {
    margin-bottom: 0px;
  }
}
.footer-about-container p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
}
@media (min-width: 1024px) {

  .footer-about-container p {
    margin-bottom: 2rem;
  }
}
.section-title {
  margin-bottom: 1rem;
  font-family: shapiro-headline-bold, sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
@media (min-width: 1024px) {

  .section-title {
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
.section-description {
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity));
}
@media (min-width: 1024px) {

  .section-description {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
.container-paragraph {
  width: 91.666667%;
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity));
}
@media (min-width: 1024px) {

  .container-paragraph {
    width: 780px;
  }

  .container-paragraph {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
.container-paragraph > h1, .container-paragraph > h2, .container-paragraph > h3, .container-paragraph > h4 {
  margin-bottom: 1rem;
  font-family: shapiro-headline-bold, sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
@media (min-width: 1024px) {

  .container-paragraph > h1, .container-paragraph > h2, .container-paragraph > h3, .container-paragraph > h4 {
    margin-bottom: 1.5rem;
  }

  .container-paragraph > h1, .container-paragraph > h2, .container-paragraph > h3, .container-paragraph > h4 {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
.container-paragraph h1 h2 h3 h4 {
  margin-bottom: 1rem;
  font-family: shapiro-headline-bold, sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
@media (min-width: 1024px) {

  .container-paragraph h1 h2 h3 h4 {
    margin-bottom: 1.5rem;
  }

  .container-paragraph h1 h2 h3 h4 {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
.container-paragraph ul {
        list-style: none;
    }
.container-paragraph ul li::before {
        content: "\2022"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
        color: #FF6490; /* Change the color */
        font-weight: bold; /* If you want it to be bold */
        padding-right: 16px; /* to keep some space between icon and text */
    }
.container-paragraph li {
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity));
}
@media (min-width: 1024px) {

  .container-paragraph li {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
.container-paragraph li {
  margin-bottom: 1rem;
}
.container-paragraph li > p {
        display: inline;
    }
.container-paragraph p {
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity));
}
@media (min-width: 1024px) {

  .container-paragraph p {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
.container-paragraph p {
  margin-bottom: 1.5rem;
  line-height: 1.5rem;
}
@media (min-width: 1024px) {

  .container-paragraph p {
    line-height: 2rem;
  }
}
.container-paragraph p:last-child {
  margin-bottom: 0px;
}
.container-paragraph a {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
.pointer-events-none {
  pointer-events: none !important;
}
.fixed {
  position: fixed !important;
}
.absolute {
  position: absolute !important;
}
.relative {
  position: relative !important;
}
.inset-0 {
  top: 0px !important;
  right: 0px !important;
  bottom: 0px !important;
  left: 0px !important;
}
.top-0 {
  top: 0px !important;
}
.left-0 {
  left: 0px !important;
}
.right-0 {
  right: 0px !important;
}
.bottom-0 {
  bottom: 0px !important;
}
.top-20 {
  top: 5rem !important;
}
.z-0 {
  z-index: 0 !important;
}
.z-10 {
  z-index: 10 !important;
}
.z-20 {
  z-index: 20 !important;
}
.z-30 {
  z-index: 30 !important;
}
.z-50 {
  z-index: 50 !important;
}
.col-span-2 {
  grid-column: span 2 / span 2 !important;
}
.col-span-1 {
  grid-column: span 1 / span 1 !important;
}
.col-span-3 {
  grid-column: span 3 / span 3 !important;
}
.col-span-4 {
  grid-column: span 4 / span 4 !important;
}
.col-start-2 {
  grid-column-start: 2 !important;
}
.row-span-4 {
  grid-row: span 4 / span 4 !important;
}
.row-start-2 {
  grid-row-start: 2 !important;
}
.m-0 {
  margin: 0px !important;
}
.m-3 {
  margin: 0.75rem !important;
}
.-m-1 {
  margin: -0.25rem !important;
}
.my-12 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.-mx-2 {
  margin-left: -0.5rem !important;
  margin-right: -0.5rem !important;
}
.my-3 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}
.mb-4 {
  margin-bottom: 1rem !important;
}
.mb-12 {
  margin-bottom: 3rem !important;
}
.mb-6 {
  margin-bottom: 1.5rem !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mt-20 {
  margin-top: 5rem !important;
}
.mb-3 {
  margin-bottom: 0.75rem !important;
}
.mb-10 {
  margin-bottom: 2.5rem !important;
}
.mb-8 {
  margin-bottom: 2rem !important;
}
.mt-10 {
  margin-top: 2.5rem !important;
}
.mb-16 {
  margin-bottom: 4rem !important;
}
.-mb-20 {
  margin-bottom: -5rem !important;
}
.mr-2 {
  margin-right: 0.5rem !important;
}
.mt-6 {
  margin-top: 1.5rem !important;
}
.mr-6 {
  margin-right: 1.5rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mr-4 {
  margin-right: 1rem !important;
}
.mr-10 {
  margin-right: 2.5rem !important;
}
.ml-2 {
  margin-left: 0.5rem !important;
}
.mt-72 {
  margin-top: 18rem !important;
}
.mr-3 {
  margin-right: 0.75rem !important;
}
.ml-3 {
  margin-left: 0.75rem !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mt-1 {
  margin-top: 0.25rem !important;
}
.ml-1 {
  margin-left: 0.25rem !important;
}
.mb-px {
  margin-bottom: 1px !important;
}
.mt-px {
  margin-top: 1px !important;
}
.mr-1 {
  margin-right: 0.25rem !important;
}
.box-border {
  box-sizing: border-box !important;
}
.block {
  display: block !important;
}
.inline-block {
  display: inline-block !important;
}
.inline {
  display: inline !important;
}
.flex {
  display: flex !important;
}
.table {
  display: table !important;
}
.grid {
  display: grid !important;
}
.hidden {
  display: none !important;
}
.h-0 {
  height: 0px !important;
}
.h-96 {
  height: 24rem !important;
}
.h-full {
  height: 100% !important;
}
.h-40 {
  height: 10rem !important;
}
.h-auto {
  height: auto !important;
}
.h-6 {
  height: 1.5rem !important;
}
.h-14 {
  height: 3.5rem !important;
}
.h-44 {
  height: 11rem !important;
}
.h-32 {
  height: 8rem !important;
}
.h-3\/5 {
  height: 60% !important;
}
.h-1\/3 {
  height: 33.333333% !important;
}
.h-2\/3 {
  height: 66.666667% !important;
}
.h-5 {
  height: 1.25rem !important;
}
.h-1\/2 {
  height: 50% !important;
}
.h-4 {
  height: 1rem !important;
}
.h-8 {
  height: 2rem !important;
}
.h-screen {
  height: 100vh !important;
}
.h-3 {
  height: 0.75rem !important;
}
.h-10 {
  height: 2.5rem !important;
}
.h-52 {
  height: 13rem !important;
}
.h-34rem {
  height: 34rem !important;
}
.max-h-full {
  max-height: 100% !important;
}
.max-h-0 {
  max-height: 0px !important;
}
.max-h-screen {
  max-height: 100vh !important;
}
.min-h-section {
  min-height: 70vh !important;
}
.w-full {
  width: 100% !important;
}
.w-11\/12 {
  width: 91.666667% !important;
}
.w-screen {
  width: 100vw !important;
}
.w-4\/5 {
  width: 80% !important;
}
.w-1\/2 {
  width: 50% !important;
}
.w-6 {
  width: 1.5rem !important;
}
.w-2\/3 {
  width: 66.666667% !important;
}
.w-14 {
  width: 3.5rem !important;
}
.w-32 {
  width: 8rem !important;
}
.w-5 {
  width: 1.25rem !important;
}
.w-96 {
  width: 24rem !important;
}
.w-36 {
  width: 9rem !important;
}
.w-8 {
  width: 2rem !important;
}
.w-10\/12 {
  width: 83.333333% !important;
}
.w-3 {
  width: 0.75rem !important;
}
.w-10 {
  width: 2.5rem !important;
}
.w-52 {
  width: 13rem !important;
}
.w-24 {
  width: 6rem !important;
}
.w-2 {
  width: 0.5rem !important;
}
.w-4 {
  width: 1rem !important;
}
.min-w-full {
  min-width: 100% !important;
}
.max-w-lg {
  max-width: 32rem !important;
}
.max-w-full {
  max-width: 100% !important;
}
.max-w-3xl {
  max-width: 48rem !important;
}
.max-w-xl {
  max-width: 36rem !important;
}
.flex-auto {
  flex: 1 1 auto !important;
}
.flex-initial {
  flex: 0 1 auto !important;
}
.flex-1 {
  flex: 1 1 0% !important;
}
.flex-shrink-0 {
  flex-shrink: 0 !important;
}
.grow {
  flex-grow: 1 !important;
}
.basis-1\/2 {
  flex-basis: 50% !important;
}
.rotate-180 {
  --tw-rotate: 180deg !important;
  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)) !important;
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
}
.cursor-pointer {
  cursor: pointer !important;
}
.select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}
.appearance-none {
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
.grid-rows-6 {
  grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
}
.flex-row {
  flex-direction: row !important;
}
.flex-col {
  flex-direction: column !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
.flex-nowrap {
  flex-wrap: nowrap !important;
}
.items-start {
  align-items: flex-start !important;
}
.items-end {
  align-items: flex-end !important;
}
.items-center {
  align-items: center !important;
}
.justify-start {
  justify-content: flex-start !important;
}
.justify-end {
  justify-content: flex-end !important;
}
.justify-center {
  justify-content: center !important;
}
.justify-between {
  justify-content: space-between !important;
}
.justify-around {
  justify-content: space-around !important;
}
.gap-10 {
  gap: 2.5rem !important;
}
.gap-4 {
  gap: 1rem !important;
}
.gap-20 {
  gap: 5rem !important;
}
.gap-2 {
  gap: 0.5rem !important;
}
.gap-6 {
  gap: 1.5rem !important;
}
.gap-1 {
  gap: 0.25rem !important;
}
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)) !important;
}
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)) !important;
}
.self-start {
  align-self: flex-start !important;
}
.self-end {
  align-self: flex-end !important;
}
.self-center {
  align-self: center !important;
}
.overflow-hidden {
  overflow: hidden !important;
}
.overflow-visible {
  overflow: visible !important;
}
.overflow-scroll {
  overflow: scroll !important;
}
.overflow-y-auto {
  overflow-y: auto !important;
}
.rounded {
  border-radius: 0.25rem !important;
}
.rounded-full {
  border-radius: 9999px !important;
}
.rounded-sm {
  border-radius: 0.125rem !important;
}
.rounded-md {
  border-radius: 0.375rem !important;
}
.border {
  border-width: 1px !important;
}
.border-b {
  border-bottom-width: 1px !important;
}
.border-t {
  border-top-width: 1px !important;
}
.border-dashed {
  border-style: dashed !important;
}
.border-none {
  border-style: none !important;
}
.border-gray-300 {
  --tw-border-opacity: 1 !important;
  border-color: rgb(225 225 225 / var(--tw-border-opacity)) !important;
}
.border-secondary {
  --tw-border-opacity: 1 !important;
  border-color: rgb(255 100 144 / var(--tw-border-opacity)) !important;
}
.border-gray-200 {
  --tw-border-opacity: 1 !important;
  border-color: rgb(236 236 236 / var(--tw-border-opacity)) !important;
}
.border-red-500 {
  --tw-border-opacity: 1 !important;
  border-color: rgb(239 68 68 / var(--tw-border-opacity)) !important;
}
.bg-black {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity)) !important;
}
.bg-white {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity)) !important;
}
.bg-gray-100 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(247 247 247 / var(--tw-bg-opacity)) !important;
}
.bg-secondary {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 100 144 / var(--tw-bg-opacity)) !important;
}
.bg-primary {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(0 150 100 / var(--tw-bg-opacity)) !important;
}
.bg-gray-900 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(51 51 51 / var(--tw-bg-opacity)) !important;
}
.bg-gray-600 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(75 85 99 / var(--tw-bg-opacity)) !important;
}
.bg-gray-300 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(225 225 225 / var(--tw-bg-opacity)) !important;
}
.bg-green-300 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(134 239 172 / var(--tw-bg-opacity)) !important;
}
.bg-red-300 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(252 165 165 / var(--tw-bg-opacity)) !important;
}
.bg-transparent {
  background-color: transparent !important;
}
.bg-opacity-50 {
  --tw-bg-opacity: 0.5 !important;
}
.fill-current {
  fill: currentColor !important;
}
.object-contain {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}
.object-cover {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
.object-top {
  -o-object-position: top !important;
     object-position: top !important;
}
.object-right {
  -o-object-position: right !important;
     object-position: right !important;
}
.object-left {
  -o-object-position: left !important;
     object-position: left !important;
}
.object-center {
  -o-object-position: center !important;
     object-position: center !important;
}
.p-4 {
  padding: 1rem !important;
}
.p-6 {
  padding: 1.5rem !important;
}
.p-0 {
  padding: 0px !important;
}
.p-3 {
  padding: 0.75rem !important;
}
.p-8 {
  padding: 2rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.p-10 {
  padding: 2.5rem !important;
}
.p-5 {
  padding: 1.25rem !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.px-8 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}
.py-12 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.py-16 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}
.py-10 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}
.py-8 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
.py-6 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.px-4 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.px-6 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
.px-3 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}
.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}
.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}
.py-1\.5 {
  padding-top: 0.375rem !important;
  padding-bottom: 0.375rem !important;
}
.py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}
.pt-52 {
  padding-top: 13rem !important;
}
.pb-20 {
  padding-bottom: 5rem !important;
}
.pb-16 {
  padding-bottom: 4rem !important;
}
.pt-16 {
  padding-top: 4rem !important;
}
.pt-0 {
  padding-top: 0px !important;
}
.pt-32 {
  padding-top: 8rem !important;
}
.pt-20 {
  padding-top: 5rem !important;
}
.pb-10 {
  padding-bottom: 2.5rem !important;
}
.pt-12 {
  padding-top: 3rem !important;
}
.pt-24 {
  padding-top: 6rem !important;
}
.pb-8 {
  padding-bottom: 2rem !important;
}
.pr-0 {
  padding-right: 0px !important;
}
.pl-6 {
  padding-left: 1.5rem !important;
}
.pr-6 {
  padding-right: 1.5rem !important;
}
.pt-6 {
  padding-top: 1.5rem !important;
}
.pl-4 {
  padding-left: 1rem !important;
}
.pt-4 {
  padding-top: 1rem !important;
}
.pb-4 {
  padding-bottom: 1rem !important;
}
.pb-0 {
  padding-bottom: 0px !important;
}
.pt-14 {
  padding-top: 3.5rem !important;
}
.pr-2 {
  padding-right: 0.5rem !important;
}
.pb-24 {
  padding-bottom: 6rem !important;
}
.pt-1 {
  padding-top: 0.25rem !important;
}
.pl-0 {
  padding-left: 0px !important;
}
.pt-7 {
  padding-top: 1.75rem !important;
}
.pl-1 {
  padding-left: 0.25rem !important;
}
.text-left {
  text-align: left !important;
}
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !important;
}
.align-top {
  vertical-align: top !important;
}
.font-shapiro-headline-62miles {
  font-family: shapiro-headline-62miles, sans-serif !important;
}
.font-shapiro-headline-medium {
  font-family: shapiro-headline-medium, sans-serif !important;
}
.font-shapiro-headline-bold {
  font-family: shapiro-headline-bold, sans-serif !important;
}
.font-shapiro-headline {
  font-family: shapiro-headline, sans-serif !important;
}
.text-3xl {
  font-size: 1.875rem !important;
  line-height: 2.25rem !important;
}
.text-xl {
  font-size: 1.25rem !important;
  line-height: 1.75rem !important;
}
.text-base {
  font-size: 1rem !important;
  line-height: 1.5rem !important;
}
.text-4xl {
  font-size: 2.25rem !important;
  line-height: 2.5rem !important;
}
.text-2xl {
  font-size: 1.5rem !important;
  line-height: 2rem !important;
}
.text-lg {
  font-size: 1.125rem !important;
  line-height: 1.75rem !important;
}
.text-sm {
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
}
.text-xs {
  font-size: 0.75rem !important;
  line-height: 1rem !important;
}
.font-medium {
  font-weight: 500 !important;
}
.font-bold {
  font-weight: 700 !important;
}
.italic {
  font-style: italic !important;
}
.text-white {
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
}
.text-gray-900 {
  --tw-text-opacity: 1 !important;
  color: rgb(51 51 51 / var(--tw-text-opacity)) !important;
}
.text-black {
  --tw-text-opacity: 1 !important;
  color: rgb(0 0 0 / var(--tw-text-opacity)) !important;
}
.text-primary {
  --tw-text-opacity: 1 !important;
  color: rgb(0 150 100 / var(--tw-text-opacity)) !important;
}
.text-gray-600 {
  --tw-text-opacity: 1 !important;
  color: rgb(75 85 99 / var(--tw-text-opacity)) !important;
}
.text-secondary {
  --tw-text-opacity: 1 !important;
  color: rgb(255 100 144 / var(--tw-text-opacity)) !important;
}
.text-gray-500 {
  --tw-text-opacity: 1 !important;
  color: rgb(107 114 128 / var(--tw-text-opacity)) !important;
}
.text-gray-700 {
  --tw-text-opacity: 1 !important;
  color: rgb(55 65 81 / var(--tw-text-opacity)) !important;
}
.text-green-500 {
  --tw-text-opacity: 1 !important;
  color: rgb(34 197 94 / var(--tw-text-opacity)) !important;
}
.text-red-500 {
  --tw-text-opacity: 1 !important;
  color: rgb(239 68 68 / var(--tw-text-opacity)) !important;
}
.underline {
  -webkit-text-decoration-line: underline !important;
          text-decoration-line: underline !important;
}
.opacity-70 {
  opacity: 0.7 !important;
}
.opacity-0 {
  opacity: 0 !important;
}
.opacity-100 {
  opacity: 1 !important;
}
.opacity-5 {
  opacity: 0.05 !important;
}
.opacity-75 {
  opacity: 0.75 !important;
}
.opacity-50 {
  opacity: 0.5 !important;
}
.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1) !important;
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px 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;
}
.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05) !important;
  --tw-shadow-colored: 0 1px 2px 0 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;
}
.outline-none {
  outline: 2px solid transparent !important;
  outline-offset: 2px !important;
}
.invert {
  --tw-invert: invert(100%) !important;
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important;
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important;
}
.transition {
  transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter !important;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 150ms !important;
}
.transition-colors {
  transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color !important;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke !important;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 150ms !important;
}
.transition-opacity {
  transition-property: opacity !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 150ms !important;
}
.transition-all {
  transition-property: all !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 150ms !important;
}
.duration-500 {
  transition-duration: 500ms !important;
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}

p, h1, h2, h3, h4, h5, h6 {
    font-family: shapiro, Arial, Helvetica, sans-serif;
    font-variation-settings: "wght" 90, "wdth" 10, "ital" 0;
}

#app {
    min-height: 100vh;
}

.hover\:bg-secondary:hover {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 100 144 / var(--tw-bg-opacity)) !important;
}

.hover\:bg-gray-900:hover {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(51 51 51 / var(--tw-bg-opacity)) !important;
}

.hover\:text-secondary:hover {
  --tw-text-opacity: 1 !important;
  color: rgb(255 100 144 / var(--tw-text-opacity)) !important;
}

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

.hover\:underline:hover {
  -webkit-text-decoration-line: underline !important;
          text-decoration-line: underline !important;
}

.hover\:opacity-100:hover {
  opacity: 1 !important;
}

.hover\:opacity-75:hover {
  opacity: 0.75 !important;
}

.focus\:border-secondary:focus {
  --tw-border-opacity: 1 !important;
  border-color: rgb(255 100 144 / var(--tw-border-opacity)) !important;
}

.focus\:ring-opacity-25:focus {
  --tw-ring-opacity: 0.25 !important;
}

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

@media (min-width: 640px) {

  .sm\:absolute {
    position: absolute !important;
  }

  .sm\:col-span-3 {
    grid-column: span 3 / span 3 !important;
  }

  .sm\:col-span-2 {
    grid-column: span 2 / span 2 !important;
  }

  .sm\:flex {
    display: flex !important;
  }

  .sm\:hidden {
    display: none !important;
  }

  .sm\:h-44 {
    height: 11rem !important;
  }

  .sm\:h-full {
    height: 100% !important;
  }

  .sm\:w-4\/5 {
    width: 80% !important;
  }

  .sm\:w-3\/5 {
    width: 60% !important;
  }

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

  .sm\:w-2\/5 {
    width: 40% !important;
  }

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

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

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

  .sm\:gap-6 {
    gap: 1.5rem !important;
  }

  .sm\:px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .sm\:pt-16 {
    padding-top: 4rem !important;
  }

  .sm\:pb-16 {
    padding-bottom: 4rem !important;
  }
}

@media (min-width: 768px) {

  .md\:absolute {
    position: absolute !important;
  }

  .md\:bottom-8 {
    bottom: 2rem !important;
  }

  .md\:right-8 {
    right: 2rem !important;
  }

  .md\:left-auto {
    left: auto !important;
  }

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

  .md\:col-start-2 {
    grid-column-start: 2 !important;
  }

  .md\:row-start-1 {
    grid-row-start: 1 !important;
  }

  .md\:m-0 {
    margin: 0px !important;
  }

  .md\:mb-0 {
    margin-bottom: 0px !important;
  }

  .md\:mr-10 {
    margin-right: 2.5rem !important;
  }

  .md\:ml-10 {
    margin-left: 2.5rem !important;
  }

  .md\:mr-2 {
    margin-right: 0.5rem !important;
  }

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

  .md\:block {
    display: block !important;
  }

  .md\:flex {
    display: flex !important;
  }

  .md\:hidden {
    display: none !important;
  }

  .md\:h-5 {
    height: 1.25rem !important;
  }

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

  .md\:w-1\/2vw {
    width: 50vw !important;
  }

  .md\:w-40 {
    width: 10rem !important;
  }

  .md\:w-3\/5 {
    width: 60% !important;
  }

  .md\:w-2\/3 {
    width: 66.666667% !important;
  }

  .md\:w-2\/5 {
    width: 40% !important;
  }

  .md\:w-4\/5 {
    width: 80% !important;
  }

  .md\:w-5 {
    width: 1.25rem !important;
  }

  .md\:w-1\/3 {
    width: 33.333333% !important;
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

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

  .md\:grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  }

  .md\:flex-row {
    flex-direction: row !important;
  }

  .md\:justify-start {
    justify-content: flex-start !important;
  }

  .md\:justify-end {
    justify-content: flex-end !important;
  }

  .md\:gap-5 {
    gap: 1.25rem !important;
  }

  .md\:gap-4 {
    gap: 1rem !important;
  }

  .md\:p-10 {
    padding: 2.5rem !important;
  }

  .md\:p-0 {
    padding: 0px !important;
  }

  .md\:p-12 {
    padding: 3rem !important;
  }

  .md\:py-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }

  .md\:px-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .md\:py-40 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .md\:pr-20 {
    padding-right: 5rem !important;
  }

  .md\:pr-10 {
    padding-right: 2.5rem !important;
  }

  .md\:pt-16 {
    padding-top: 4rem !important;
  }

  .md\:pr-14 {
    padding-right: 3.5rem !important;
  }

  .md\:pl-1\/22 {
    padding-left: 4.5% !important;
  }

  .md\:pb-0 {
    padding-bottom: 0px !important;
  }

  .md\:pr-0 {
    padding-right: 0px !important;
  }

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

  .md\:pl-10 {
    padding-left: 2.5rem !important;
  }

  .md\:pl-3 {
    padding-left: 0.75rem !important;
  }

  .md\:pr-3 {
    padding-right: 0.75rem !important;
  }

  .md\:text-2xl {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
  }
}

@media (min-width: 1024px) {

  .lg\:absolute {
    position: absolute !important;
  }

  .lg\:right-1\/22 {
    right: 4.5% !important;
  }

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

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

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

  .lg\:row-start-2 {
    grid-row-start: 2 !important;
  }

  .lg\:mb-6 {
    margin-bottom: 1.5rem !important;
  }

  .lg\:mb-0 {
    margin-bottom: 0px !important;
  }

  .lg\:mt-20 {
    margin-top: 5rem !important;
  }

  .lg\:mb-20 {
    margin-bottom: 5rem !important;
  }

  .lg\:mb-28 {
    margin-bottom: 7rem !important;
  }

  .lg\:mr-10 {
    margin-right: 2.5rem !important;
  }

  .lg\:mb-8 {
    margin-bottom: 2rem !important;
  }

  .lg\:mb-24 {
    margin-bottom: 6rem !important;
  }

  .lg\:flex {
    display: flex !important;
  }

  .lg\:hidden {
    display: none !important;
  }

  .lg\:h-full {
    height: 100% !important;
  }

  .lg\:h-6 {
    height: 1.5rem !important;
  }

  .lg\:h-2\/3 {
    height: 66.666667% !important;
  }

  .lg\:h-img-section {
    height: 760px !important;
  }

  .lg\:w-4\/5 {
    width: 80% !important;
  }

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

  .lg\:w-1\/3 {
    width: 33.333333% !important;
  }

  .lg\:w-3\/5 {
    width: 60% !important;
  }

  .lg\:w-5\/6 {
    width: 83.333333% !important;
  }

  .lg\:w-full {
    width: 100% !important;
  }

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

  .lg\:w-\[1215px\] {
    width: 1215px !important;
  }

  .lg\:w-article-container {
    width: 780px !important;
  }

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

  .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }

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

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .lg\:grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
  }

  .lg\:flex-row {
    flex-direction: row !important;
  }

  .lg\:justify-end {
    justify-content: flex-end !important;
  }

  .lg\:justify-center {
    justify-content: center !important;
  }

  .lg\:justify-between {
    justify-content: space-between !important;
  }

  .lg\:gap-20 {
    gap: 5rem !important;
  }

  .lg\:overflow-auto {
    overflow: auto !important;
  }

  .lg\:p-10 {
    padding: 2.5rem !important;
  }

  .lg\:p-5 {
    padding: 1.25rem !important;
  }

  .lg\:p-16 {
    padding: 4rem !important;
  }

  .lg\:p-20 {
    padding: 5rem !important;
  }

  .lg\:p-12 {
    padding: 3rem !important;
  }

  .lg\:py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .lg\:py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .lg\:px-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .lg\:pb-0 {
    padding-bottom: 0px !important;
  }

  .lg\:pl-48 {
    padding-left: 12rem !important;
  }

  .lg\:pl-20 {
    padding-left: 5rem !important;
  }

  .lg\:pb-24 {
    padding-bottom: 6rem !important;
  }

  .lg\:pt-52 {
    padding-top: 13rem !important;
  }

  .lg\:pt-24 {
    padding-top: 6rem !important;
  }

  .lg\:pl-10 {
    padding-left: 2.5rem !important;
  }

  .lg\:pt-28 {
    padding-top: 7rem !important;
  }

  .lg\:pt-32 {
    padding-top: 8rem !important;
  }

  .lg\:pt-20 {
    padding-top: 5rem !important;
  }

  .lg\:pr-32 {
    padding-right: 8rem !important;
  }

  .lg\:pr-10 {
    padding-right: 2.5rem !important;
  }

  .lg\:pt-16 {
    padding-top: 4rem !important;
  }

  .lg\:pt-6 {
    padding-top: 1.5rem !important;
  }

  .lg\:text-left {
    text-align: left !important;
  }

  .lg\:text-xl {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
  }

  .lg\:text-2xl {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
  }

  .lg\:text-4xl {
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
  }

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

@media (min-width: 1280px) {

  .xl\:static {
    position: static !important;
  }

  .xl\:absolute {
    position: absolute !important;
  }

  .xl\:right-1\/10 {
    right: 10% !important;
  }

  .xl\:top-24 {
    top: 6rem !important;
  }

  .xl\:col-span-2 {
    grid-column: span 2 / span 2 !important;
  }

  .xl\:mb-20 {
    margin-bottom: 5rem !important;
  }

  .xl\:mb-0 {
    margin-bottom: 0px !important;
  }

  .xl\:mt-24 {
    margin-top: 6rem !important;
  }

  .xl\:mt-40 {
    margin-top: 10rem !important;
  }

  .xl\:mt-36 {
    margin-top: 9rem !important;
  }

  .xl\:mb-24 {
    margin-bottom: 6rem !important;
  }

  .xl\:flex {
    display: flex !important;
  }

  .xl\:h-52 {
    height: 13rem !important;
  }

  .xl\:h-full {
    height: 100% !important;
  }

  .xl\:w-4\/5 {
    width: 80% !important;
  }

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

  .xl\:w-2\/3 {
    width: 66.666667% !important;
  }

  .xl\:w-11\/12 {
    width: 91.666667% !important;
  }

  .xl\:w-3\/5 {
    width: 60% !important;
  }

  .xl\:w-2\/5 {
    width: 40% !important;
  }

  .xl\:w-full {
    width: 100% !important;
  }

  .xl\:w-8\/12 {
    width: 66.666667% !important;
  }

  .xl\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .xl\:flex-row {
    flex-direction: row !important;
  }

  .xl\:gap-20 {
    gap: 5rem !important;
  }

  .xl\:gap-8 {
    gap: 2rem !important;
  }

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

  .xl\:px-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .xl\:py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .xl\:pb-24 {
    padding-bottom: 6rem !important;
  }

  .xl\:pt-24 {
    padding-top: 6rem !important;
  }

  .xl\:pt-0 {
    padding-top: 0px !important;
  }

  .xl\:pt-20 {
    padding-top: 5rem !important;
  }

  .xl\:pr-32 {
    padding-right: 8rem !important;
  }

  .xl\:pl-1\/10 {
    padding-left: 10% !important;
  }

  .xl\:pl-12 {
    padding-left: 3rem !important;
  }

  .xl\:pl-4 {
    padding-left: 1rem !important;
  }

  .xl\:pl-10 {
    padding-left: 2.5rem !important;
  }

  .xl\:pr-10 {
    padding-right: 2.5rem !important;
  }

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

  .xl\:text-4xl {
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
  }
}

@media (min-width: 1536px) {

  .\32xl\:col-span-2 {
    grid-column: span 2 / span 2 !important;
  }

  .\32xl\:block {
    display: block !important;
  }

  .\32xl\:flex-row {
    flex-direction: row !important;
  }
}

@media (min-width: 2500px) {

  .\33xl\:right-1\/5 {
    right: 20% !important;
  }

  .\33xl\:right-1\/10 {
    right: 10% !important;
  }

  .\33xl\:col-span-8 {
    grid-column: span 8 / span 8 !important;
  }

  .\33xl\:col-span-4 {
    grid-column: span 4 / span 4 !important;
  }

  .\33xl\:h-section {
    height: 70vh !important;
  }

  .\33xl\:w-3\/5 {
    width: 60% !important;
  }

  .\33xl\:w-2\/5 {
    width: 40% !important;
  }

  .\33xl\:w-2\/10 {
    width: 20% !important;
  }

  .\33xl\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }

  .\33xl\:pl-2\/10 {
    padding-left: 20% !important;
  }
}

