/* import via postcss */
.logos-ticker {
  --speed: 90s;
  --gap: 3em;

  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  gap: var(--gap);
  -webkit-mask-image: linear-gradient(
    to right,
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 1) 20%,
    hsl(0 0% 0% / 1) 80%,
    hsl(0 0% 0% / 0)
  );
          mask-image: linear-gradient(
    to right,
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 1) 20%,
    hsl(0 0% 0% / 1) 80%,
    hsl(0 0% 0% / 0)
  );
}
.logos-ticker-container {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: slide var(--speed) linear infinite;
}
.logos-ticker-container svg {
  flex: 0 0 auto;
  fill: #646e73;
}
@media (prefers-reduced-motion: reduce) {
  .logos-ticker-container {
    animation-play-state: paused;
  }
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap, 0px)));
  }
}
.hs-form .hs-input {
  margin-bottom: 0.75rem;
  padding: 0.5rem;
}
:is(.dark .hs-form .hs-input) {
  --tw-bg-opacity: 1;
  background-color: rgb(90 95 117 / var(--tw-bg-opacity));
}
.hs-form .hs-input {
  width: 100%;
}
:is(.dark .hs-form .hs-input) {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.hs-form .hs-form-required {
  display: none;
}
.hs-form .hs-form-field label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 700;
}
.hs-form .hs-form-field label.hs-error-msg {
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity));
}
:is(.dark .hs-form .hs-form-field label.hs-error-msg) {
  --tw-text-opacity: 1;
  color: rgb(252 165 165 / var(--tw-text-opacity));
}
.hs-form .hs-form-field label.hs-error-msg {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
}
.hs-form .hs-button {
  display: inline-block;
  --tw-bg-opacity: 1;
  background-color: rgb(209 3 111 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  border-radius: 9999px;
  font-weight: 600;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-style: none;
  margin-top: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.hs-form .hs-button:hover,
.hs-form .hs-button:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(223 74 31 / var(--tw-bg-opacity));
  box-shadow: 0px 3px 15px rgba(241, 86, 77, 0.6);
}
.survey-form .hs-form {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: 1em;
}
@media (min-width: 40em) { /* 640px */
  .survey-form .hs-form {
    grid-template-columns: repeat(auto-fit, minmax(17em, 1fr));
  }
}
.survey-form .hs_email,
.survey-form .hs_jamstack_survey_promo,
.survey-form .hs_address {
  grid-column: 1 / -1;
}
/* purgecss start ignore */
/* ! tailwindcss v3.3.2 | 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: #D8DEEC; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
*/
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 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
}
/*
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::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #5A5F75; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #5A5F75; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}
h1,
  h2,
  h3 {
  --tw-text-opacity: 1;
  color: rgb(22 26 43 / var(--tw-text-opacity));
}
:is(.dark h1),:is(.dark 
  h2),:is(.dark 
  h3) {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
h1 {
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
}
@media (min-width: 768px) {
    h1 {
    font-size: 3rem;
    line-height: 1;
  }
  }
h2 {
  margin-bottom: 0.5rem;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 768px) {
    h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  }
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
.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;
  }
}
/* purgecss end ignore */
/*
  Content sections conventions
*/
section {
  padding: 2rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}
:is(.dark :where(section a)),:is(.dark 
:where(dd a)) {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
:where(section a),
:where(dd a) {
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(22 26 43 / var(--tw-border-opacity));
}
:is(.dark :where(section a)),:is(.dark 
:where(dd a)) {
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / var(--tw-border-opacity));
}
section:not(.cards):not(.no-underline) a:hover,
section:not(.cards):not(.no-underline) a:focus,
dd a:hover,
dd a:focus {
  --tw-border-opacity: 1;
  border-color: rgb(240 4 127 / var(--tw-border-opacity));
}
p + p {
  margin-top: 1rem;
}
/*
  CTA links
*/
a.cta:link,
a.cta:visited {
  display: inline-block;
  --tw-bg-opacity: 1;
  background-color: rgb(209 3 111 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  border-radius: 9999px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-style: none;
  margin-top: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
a.cta:hover,
a.cta:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(223 74 31 / var(--tw-bg-opacity));
  box-shadow: 0px 3px 15px rgba(241, 86, 77, 0.6);
}
/*
  Footer links
*/
footer p a {
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / var(--tw-border-opacity));
  white-space: nowrap;
}
footer p a:hover,
footer p a:focus {
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity));
}
/*
  left/right flip-flopping lists
*/
@media (min-width: 768px) {
  .flip-flop > div:nth-child(even) {
    text-align: right;
    margin-left: auto;
  }
}
/* Color theme selector */
.color-theme-selector-wrapper {
  --padding-inline: 0.5rem;
  --icon-size: 1rem;
  visibility: hidden;
  position: relative;
  display: flex;
  height: 2rem;
  width: 8rem;
  align-items: center;
  border-radius: .25rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(216 222 236 / var(--tw-border-opacity));
}
:is(.dark .color-theme-selector-wrapper) {
  border-color: transparent;
}
.color-theme-selector-wrapper {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.color-theme-selector-wrapper-icon {
  width: var(--icon-size);
  max-height: 100%;
  margin-left: var(--padding-inline);
}
.color-theme-selector-wrapper::after {
  position: absolute;
  top: 50%;
  right: var(--padding-inline);
  transform: translateY(-50%);
  content: "";
  width: var(--icon-size);
  height: var(--icon-size);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.color-theme-selector-wrapper select {
  position: absolute;
  display: flex;
  width: 100%;
  align-items: center;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-left: calc(var(--icon-size) + var(--padding-inline) + 0.5rem);
}
.videowrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.videowrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* purgecss start ignore */
.bg-gradient-jams {
  background: #d1036f linear-gradient(91.78deg, #d1036f 2.57%, #b6005f 96.33%);
}
.bg-gradient-pink-orange,
.hover\:bg-gradient-pink-orange:hover,
.hover\:bg-gradient-pink-orange:focus {
  background: #e7017a linear-gradient(91.78deg, #e7017a 2.57%, #df4a1f 96.33%);
}
.bg-gradient-blue-green {
  background: #0090ca linear-gradient(101.87deg, #0090ca 0%, #00bfad 105.55%);
}
.bg-gradient-card-sunrise {
  --tw-gradient-stops: #f0047f 0%, #fc814a 100%;
}
.bg-gradient-card-blue {
  --tw-gradient-stops: #04a2dd 0%, #4ff3ea 100%;
}
.bg-gradient-card-seafoam {
  --tw-gradient-stops: #88f9ed 0%, #00ffb2 100%;
}
.bg-gradient-card-gold {
  --tw-gradient-stops: #ffc803 0%, #fc814a 100%;
}
.bg-gradient-card-blue-seafoam.bg-gradient-card-blue-seafoam {
  background: linear-gradient(101.87deg, #0090ca 0%, #00bfad 105.55%),
    linear-gradient(180deg, #009ddc 0%, #58fcec 100%);
}
.card-shadow {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@supports (outline: none) {
  .group:hover .group-hover\:card-shadow-blue-seafoam,
  .group:focus .group-hover\:card-shadow-blue-seafoam,
  .hover\:card-shadow-blue-seafoam:hover,
  .hover\:card-shadow-blue-seafoam:focus {
    outline: none;
    box-shadow: 0px 3px 20px rgba(1, 159, 220, 0.6);
  }
  .group:hover .group-hover\:card-shadow-seafoam,
  .group:focus .group-hover\:card-shadow-seafoam,
  .hover\:card-shadow-seafoam:hover,
  .hover\:card-shadow-seafoam:focus {
    outline: none;
    box-shadow: 0px 3px 20px rgba(135, 249, 237, 0.7);
  }
  .group:hover .group-hover\:card-shadow-sunrise,
  .group:focus .group-hover\:card-shadow-sunrise,
  .hover\:card-shadow-sunrise:hover,
  .hover\:card-shadow-sunrise:focus {
    outline: none;
    box-shadow: 0px 3px 20px rgba(246, 62, 103, 0.6);
  }
  .group:hover .group-hover\:card-shadow-gold,
  .group:focus .group-hover\:card-shadow-gold,
  .hover\:card-shadow-gold:hover,
  .hover\:card-shadow-gold:focus {
    outline: none;
    box-shadow: 0px 3px 20px rgba(255, 199, 4, 0.6);
  }
}
.list-jams-logo > li,
.list-jams-logo-pink > li,
.list-jams-logo-border > li {
  position: relative;
}
.list-jams-logo > li:after,
.list-jams-logo-pink > li:after,
.list-jams-logo-border > li:after {
  content: "";
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  top: 0;
  width: 8px;
  height: 100%;
  pointer-events: none;
}
.list-jams-logo > li:after {
  background-image: url("data:image/svg+xml,%3Csvg width='8' viewBox='0 0 12 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 0C2.68226 0 0 2.90578 0 6.5C0 10.0942 2.68226 13 6 13C9.31774 13 12 10.0942 12 6.5V0H6Z' fill='%235A5F75'/%3E%3C/svg%3E%0A");
  left: 3em;
}
.list-jams-logo-pink > li:after {
  background-image: url("data:image/svg+xml,%3Csvg width='8' viewBox='0 0 12 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 0C2.68226 0 0 2.90578 0 6.5C0 10.0942 2.68226 13 6 13C9.31774 13 12 10.0942 12 6.5V0H6Z' fill='%23F0047F'/%3E%3C/svg%3E%0A");
  left: 1.5em;
}
.list-jams-logo-border > li:before {
  --tw-text-opacity: 1;
  color: rgb(90 95 117 / var(--tw-text-opacity));
  content: "";
  position: absolute;
  left: 3.25em; /* 36px /16 */
  top: 0;
  bottom: 0;
  border-left: 1px solid;
}
.list-jams-logo-border > li:first-child:before {
  top: 1.25em; /* 20px /16 */
}
.list-jams-logo-border > li:last-child:before {
  bottom: 1.25em; /* 20px /16 */
}
.list-jams-no-bullet:after {
  display: none;
}
.summary-no-arrow {
  list-style: none;
}
.summary-no-arrow::-webkit-details-marker {
  display: none;
}
details .summary-swap-open,
details[open] .summary-swap-closed {
  display: none;
}
details .summary-swap-closed,
details[open] .summary-swap-open {
  display: block;
}
@media (min-width: 768px) {
  .sm\:page-layout {
    grid-template-columns: 16.875em minmax(0, 1fr);
  }
}
.text-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Desktop sticky nav */
@media (min-width: 768px) { /* 860px */
  .page-header {
    position: sticky;
    top: 0;
    overflow-y: auto;
  }
  .page-nav {
    justify-content: space-between;
    /* Warning: this is the height of the logo */
    /* Workaround for an issue with <details> and `flex` */
    height: calc(100vh - 95px);
  }
}
/* special text treatment on home page */
.hero-text {
  font-size: 2.5em;
}
@media (min-width: 40em) {
  /* 640px */
  .hero-text {
    font-size: 3em; /* 48px /16 */
  }
}
@media (min-width: 64em) {
  /* 1024px */
  .hero-text {
    font-size: 4em; /* 64px /16 */
  }
}
.rounded-xl-embed {
  border-radius: 0.9375rem; /* 15px /16 */
}
/* Tool layout */
.tool-content h1,
.tool-content h2,
.tool-content h3 {
  margin: 0.5em 0;
  font-size: 1.5em;
  font-weight: 700;
}
.tool-content h1 ~ h2 {
  font-size: 1.25em;
}
.tool-content h2 ~ h3 {
  font-size: 1em;
}
.tool-content a[href] {
  text-decoration: underline;
}
.tool-content ul {
  list-style: disc;
  padding-left: 1.5em;
}
.tool-content img {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
/* Filters */
.filter-form {
  opacity: 0.4;
  pointer-events: none;
}
.filter-container--js .filter-form {
  opacity: 1;
  pointer-events: auto;
}
.filter-opensource--hide,
.filter-typeofcms--hide,
.filter-language--hide,
.filter-template--hide,
.filter-license--hide,
.filter-country--hide {
  display: none !important;
}
/* Jamstack TV */
.ais-SearchBox-input {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
:is(.dark .ais-SearchBox-input) {
  --tw-bg-opacity: 1;
  background-color: rgb(22 26 43 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.ais-SearchBox-input {
  font-weight: 700;
  padding: 0.75rem;
  padding-left: 3.5rem;
  margin-left: auto;
  margin-right: auto;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(216 222 236 / var(--tw-border-opacity));
}
:is(.dark .ais-SearchBox-input) {
  --tw-border-opacity: 1;
  border-color: rgb(90 95 117 / var(--tw-border-opacity));
}
.ais-SearchBox-input {
  border-radius: 9999px;
  display: block;
  width: 100%;
  background-image: url(/img/svg/icon-search.svg);
  background-repeat: no-repeat;
  background-position: 1em 50%;
  position: relative;
}
.ais-SearchBox-input:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3em;
  background-color: #2b3350;
}
@supports (box-shadow: none) {
  .ais-SearchBox-input:focus {
    outline: none;
    box-shadow: 0 0 1px 4px #e7017a;
  }
}
.jamstacktv-link {
  display: flex;
  flex-wrap: wrap;
}
.jamstacktv-card {
  flex-basis: 18.75em; /* 300px /16 */
}
.jamstacktv-item {
  flex-basis: 18.75em; /* 300px /16 */
  flex-grow: 3;
}
.jamstacktv-card,
.jamstacktv-img {
  border-radius: 1em 0 1em 1em;
}
.jamstacktv-img {
  width: 100%;
}
.jamstacktv-duration {
  display: inline-block;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(226 232 240 / var(--tw-text-opacity));
  position: absolute;
  right: 0.4em;
  top: 0.4em;
}
.jamstacktv-time {
  display: inline-block;
  margin-right: 0.25em; /* 4px /16 */
}
.jamstacktv-time > b {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid currentColor;
}
.jamstacktv-time > b + b {
  margin-right: 3px;
}
.jamstacktv-item {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.jamstacktv-item mark {
  --tw-bg-opacity: 1;
  background-color: rgb(209 3 111 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.jamstacktv-meta {
  line-height: 1.5;
}
.jamstacktv-category:after {
  content: ": ";
}
.jamstacktv-no-skip .jamstacktv-category:after {
  content: "";
}
.jamstacktv-no-skip .jamstacktv-category {
  display: block;
}
.jamstacktv-caption {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 400;
}
.jamstacktv-caption-quote {
  font-style: italic;
}
.jamstacktv-caption-quote:before {
  content: "“";
}
.jamstacktv-caption-quote:after {
  content: "”";
}
.jamstacktv-no-skip .jamstacktv-title {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
}
.jamstacktv-no-skip .jamstacktv-caption {
  display: none;
}
.js .jamstacktv-js {
  display: none;
}
.jamstacktv-scrubber {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
  height: 1em;
  border-radius: 0 0 1em 1em;
  overflow: hidden;
}
.jamstacktv-scrubber > div {
  height: 4px;
  background-color: red;
}
/* Survey */
.chart-data-table-head {
  border-bottom-width: 2px;
  --tw-bg-opacity: 1;
  background-color: rgb(216 222 236 / var(--tw-bg-opacity));
}
:is(.dark .chart-data-table-head) {
  --tw-bg-opacity: 1;
  background-color: rgb(45 50 71 / var(--tw-bg-opacity));
}
.permalink-heading {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.permalink-heading-anchor {
  border-width: 0px;
}
.permalink-heading-icon {
  width: 1rem;
  opacity: 0.5;
}
.permalink-heading-icon:hover {
  opacity: 1;
}
.survey-grid {
  --gap: 2rem;
  --full: minmax(var(--gap), 1fr);
  --content: min(52rem, 100% - var(--gap) * 2);
  --popout: minmax(0, 2rem);
  --feature: minmax(0, 5rem);

  display: grid;
  grid-template-columns:
    [full-start] var(--full)
    [feature-start] var(--feature)
    [popout-start] var(--popout)
    [content-start] var(--content) [content-end]
    var(--popout) [popout-end]
    var(--feature) [feature-end]
    var(--full) [full-end];
}
.survey-grid > * {
  grid-column: content;
}
.stack > * + * {
  -webkit-margin-after: 0;
          margin-block-end: 0;
  -webkit-margin-before: var(--stack-space);
          margin-block-start: var(--stack-space);
}
:where(.survey) section {
  padding: 0;
  margin: 0;
  max-width: none;
}
:where(.survey) h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}
.survey-intro-headings {
  grid-column: popout;
}
.survey-intro-heading {
  max-width: 20ch;
  font-weight: 800;
}
.survey-intro-subheading {
  margin-top: 1.5rem;
  line-height: 1.25;
}
.survey h3 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
}
.survey h4 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
}
.survey h5 {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
}
.survey {
  -webkit-margin-before: 4.5rem;
          margin-block-start: 4.5rem;
}
.survey > * + * {
  -webkit-margin-before: 6rem;
          margin-block-start: 6rem;
}
.survey-toc,
.survey-toc + * {
  -webkit-margin-before: 3rem;
          margin-block-start: 3rem;
}
.survey-section > * + * {
  -webkit-margin-before: 1.5rem;
          margin-block-start: 1.5rem;
}
.survey-section:not(:first-of-type) {
  padding-bottom: 6rem;
}
.survey-section h3,
.survey-section h4,
.survey-section h5 {
  -webkit-margin-before: 3rem;
          margin-block-start: 3rem;
}
.survey-chart h4,
.survey-chart h5 {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}
.survey-section .survey-chart,
.survey-section .survey-chart + * {
  -webkit-margin-before: 3rem;
          margin-block-start: 3rem;
}
.survey-section .survey-chart-split,
.survey-section .survey-chart-split + * {
  -webkit-margin-before: 4.5rem;
          margin-block-start: 4.5rem;
}
.survey-section ul {
  list-style-position: inside;
  list-style-type: disc;
}
.survey-section ul > * + * {
  -webkit-margin-before: 0.375rem;
          margin-block-start: 0.375rem;
}
.survey-chart > * + * {
  -webkit-margin-before: 1.5rem;
          margin-block-start: 1.5rem;
}
.survey-chart > div:first-of-type {
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.survey-section:first-of-type p:first-of-type {
  -webkit-margin-before: 4.5rem;
          margin-block-start: 4.5rem;
}
.survey-chart-split {
  display: flex;
  --min: 24rem;
  --gap: 1.5rem;

  grid-column: feature;
  display: grid;
  grid-column-gap: var(--gap);
  grid-row-gap: 4.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--min)), 1fr));
}
.survey-chart-split .survey-chart {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}
.survey-chart-respondents {
  text-align: right;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}
:is(.dark .survey-chart-respondents) {
  --tw-text-opacity: 1;
  color: rgb(154 160 182 / var(--tw-text-opacity));
}
.survey-chart-subheading {
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}
:is(.dark .survey-chart-subheading) {
  --tw-text-opacity: 1;
  color: rgb(154 160 182 / var(--tw-text-opacity));
}
.survey-chart-subheading {
  margin-top: 0.375rem;
}
.survey .final-heading {
  font-weight: 800;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  background: #e7017a linear-gradient(91.78deg, #e7017a 2.57%, #df4a1f 96.33%);
  grid-column: full;
  text-align: center;
  margin: 2em 0 1em 0;
  font-size: clamp(1.5rem, 0.7857rem + 3.5714vw, 4rem);
  padding: 0.5em 1em;
  line-height: 1.125;
  margin-inline: auto;
}
.survey table {
  display: block;
  max-width: -moz-fit-content;
  max-width: fit-content;
  overflow-x: auto;
  white-space: nowrap;
}
/* purgecss end ignore */
.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;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.right-0 {
  right: 0px;
}
.top-0 {
  top: 0px;
}
.col-span-2 {
  grid-column: span 2 / span 2;
}
.col-span-3 {
  grid-column: span 3 / span 3;
}
.float-left {
  float: left;
}
.m-2 {
  margin: 0.5rem;
}
.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}
.mx-8 {
  margin-left: 2rem;
  margin-right: 2rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.my-16 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-20 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-20 {
  margin-bottom: 5rem;
}
.mb-32 {
  margin-bottom: 8rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-9 {
  margin-bottom: 2.25rem;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-4 {
  margin-left: 1rem;
}
.ml-8 {
  margin-left: 2rem;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mr-4 {
  margin-right: 1rem;
}
.mr-6 {
  margin-right: 1.5rem;
}
.mt-0 {
  margin-top: 0px;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-20 {
  margin-top: 5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-32 {
  margin-top: 8rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.contents {
  display: contents;
}
.hidden {
  display: none;
}
.h-auto {
  height: auto;
}
.h-full {
  height: 100%;
}
.w-2\/3 {
  width: 66.666667%;
}
.w-3\/4 {
  width: 75%;
}
.w-4\/5 {
  width: 80%;
}
.w-auto {
  width: auto;
}
.w-full {
  width: 100%;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-5xl {
  max-width: 64rem;
}
.max-w-6xl {
  max-width: 72rem;
}
.max-w-lg {
  max-width: 32rem;
}
.flex-\[1_0_33\%\] {
  flex: 1 0 33%;
}
.flex-none {
  flex: none;
}
.flex-grow {
  flex-grow: 1;
}
.grow {
  flex-grow: 1;
}
.table-auto {
  table-layout: auto;
}
.border-collapse {
  border-collapse: collapse;
}
.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));
}
.resize {
  resize: both;
}
.list-inside {
  list-style-position: inside;
}
.list-outside {
  list-style-position: outside;
}
.list-decimal {
  list-style-type: decimal;
}
.list-disc {
  list-style-type: disc;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-x-2 {
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.gap-y-2 {
  row-gap: 0.5rem;
}
.divide-x > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-x-reverse: 0;
  border-right-width: calc(1px * var(--tw-divide-x-reverse));
  border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
}
.divide-gray-200 > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgb(216 222 236 / var(--tw-divide-opacity));
}
.overflow-hidden {
  overflow: hidden;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-ellipsis {
  text-overflow: ellipsis;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.rounded-default {
  border-radius: .25rem;
}
.rounded-lg {
  border-radius: .5rem;
}
.rounded-sm {
  border-radius: .125rem;
}
.rounded-xl {
  border-radius: 1rem;
}
.rounded-b-lg {
  border-bottom-right-radius: .5rem;
  border-bottom-left-radius: .5rem;
}
.rounded-t-lg {
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
}
.rounded-t-none {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.rounded-tr-none {
  border-top-right-radius: 0;
}
.border {
  border-width: 1px;
}
.border-0 {
  border-width: 0px;
}
.border-2 {
  border-width: 2px;
}
.border-4 {
  border-width: 4px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-b-0 {
  border-bottom-width: 0px;
}
.border-l {
  border-left-width: 1px;
}
.border-r {
  border-right-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-t-2 {
  border-top-width: 2px;
}
.border-solid {
  border-style: solid;
}
.border-none {
  border-style: none;
}
.border-black {
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity));
}
.border-blue-100 {
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / var(--tw-border-opacity));
}
.border-gray-100 {
  --tw-border-opacity: 1;
  border-color: rgb(248 250 255 / var(--tw-border-opacity));
}
.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgb(216 222 236 / var(--tw-border-opacity));
}
.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(154 160 182 / var(--tw-border-opacity));
}
.border-pink-500 {
  --tw-border-opacity: 1;
  border-color: rgb(240 4 127 / var(--tw-border-opacity));
}
.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}
.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}
.bg-blue-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(37 45 59 / var(--tw-bg-opacity));
}
.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 255 / var(--tw-bg-opacity));
}
.bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(216 222 236 / var(--tw-bg-opacity));
}
.bg-gray-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(75 85 99 / var(--tw-bg-opacity));
}
.bg-pink-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(209 3 111 / var(--tw-bg-opacity));
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.bg-clip-text {
  -webkit-background-clip: text;
          background-clip: text;
}
.fill-current {
  fill: currentColor;
}
.p-0 {
  padding: 0px;
}
.p-1 {
  padding: 0.25rem;
}
.p-10 {
  padding: 2.5rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.pb-16 {
  padding-bottom: 4rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.pb-20 {
  padding-bottom: 5rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pl-16 {
  padding-left: 4rem;
}
.pl-4 {
  padding-left: 1rem;
}
.pr-10 {
  padding-right: 2.5rem;
}
.pr-2 {
  padding-right: 0.5rem;
}
.pr-4 {
  padding-right: 1rem;
}
.pr-8 {
  padding-right: 2rem;
}
.pt-16 {
  padding-top: 4rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.pt-8 {
  padding-top: 2rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-xxs {
  font-size: 0.625rem;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
.italic {
  font-style: italic;
}
.leading-5 {
  line-height: 1.25rem;
}
.leading-relaxed {
  line-height: 1.625;
}
.leading-tight {
  line-height: 1.25;
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.text-blue-800 {
  --tw-text-opacity: 1;
  color: rgb(37 45 59 / var(--tw-text-opacity));
}
.text-gray-300 {
  --tw-text-opacity: 1;
  color: rgb(154 160 182 / var(--tw-text-opacity));
}
.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(90 95 117 / var(--tw-text-opacity));
}
.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}
.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}
.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(45 50 71 / var(--tw-text-opacity));
}
.text-pink-500 {
  --tw-text-opacity: 1;
  color: rgb(240 4 127 / var(--tw-text-opacity));
}
.text-transparent {
  color: transparent;
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.underline {
  text-decoration-line: underline;
}
.no-underline {
  text-decoration-line: none;
}
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.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);
}
.last\:rounded-b-lg:last-child {
  border-bottom-right-radius: .5rem;
  border-bottom-left-radius: .5rem;
}
.hover\:bg-red-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity));
}
.hover\:text-gray-800:hover {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity));
}
.hover\:text-pink-500:hover {
  --tw-text-opacity: 1;
  color: rgb(240 4 127 / var(--tw-text-opacity));
}
.hover\:text-red-500:hover {
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity));
}
.hover\:underline:hover {
  text-decoration-line: underline;
}
.group:hover .group-hover\:no-underline {
  text-decoration-line: none;
}
:is(.dark .dark\:inline) {
  display: inline;
}
:is(.dark .dark\:hidden) {
  display: none;
}
:is(.dark .dark\:divide-gray-700) > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgb(45 50 71 / var(--tw-divide-opacity));
}
:is(.dark .dark\:border-b) {
  border-bottom-width: 1px;
}
:is(.dark .dark\:border-blue-800) {
  --tw-border-opacity: 1;
  border-color: rgb(37 45 59 / var(--tw-border-opacity));
}
:is(.dark .dark\:border-gray-400) {
  --tw-border-opacity: 1;
  border-color: rgb(90 95 117 / var(--tw-border-opacity));
}
:is(.dark .dark\:border-gray-900) {
  --tw-border-opacity: 1;
  border-color: rgb(13 15 24 / var(--tw-border-opacity));
}
:is(.dark .dark\:border-transparent) {
  border-color: transparent;
}
:is(.dark .dark\:bg-blue-900) {
  --tw-bg-opacity: 1;
  background-color: rgb(22 26 43 / var(--tw-bg-opacity));
}
:is(.dark .dark\:bg-gray-900) {
  --tw-bg-opacity: 1;
  background-color: rgb(13 15 24 / var(--tw-bg-opacity));
}
:is(.dark .dark\:text-blue-100) {
  --tw-text-opacity: 1;
  color: rgb(226 232 240 / var(--tw-text-opacity));
}
:is(.dark .dark\:text-blue-200) {
  --tw-text-opacity: 1;
  color: rgb(203 213 224 / var(--tw-text-opacity));
}
:is(.dark .dark\:text-gray-300) {
  --tw-text-opacity: 1;
  color: rgb(154 160 182 / var(--tw-text-opacity));
}
:is(.dark .dark\:text-white) {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
@media (min-width: 640px) {
  .sm\:flex {
    display: flex;
  }
  .sm\:flex-col {
    flex-direction: column;
  }
  .sm\:content-start {
    align-content: flex-start;
  }
  .sm\:space-x-8 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(2rem * var(--tw-space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
  }
}
@media (min-width: 768px) {
  .md\:m-0 {
    margin: 0px;
  }
  .md\:mt-12 {
    margin-top: 3rem;
  }
  .md\:mt-20 {
    margin-top: 5rem;
  }
  .md\:inline-block {
    display: inline-block;
  }
  .md\:flex {
    display: flex;
  }
  .md\:table-cell {
    display: table-cell;
  }
  .md\:grid {
    display: grid;
  }
  .md\:hidden {
    display: none;
  }
  .md\:h-screen {
    height: 100vh;
  }
  .md\:w-1\/2 {
    width: 50%;
  }
  .md\:w-2\/3 {
    width: 66.666667%;
  }
  .md\:w-8\/12 {
    width: 66.666667%;
  }
  .md\:flex-grow {
    flex-grow: 1;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:flex-col {
    flex-direction: column;
  }
  .md\:gap-6 {
    gap: 1.5rem;
  }
  .md\:p-4 {
    padding: 1rem;
  }
  .md\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .md\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .lg\:w-1\/3 {
    width: 33.333333%;
  }
  .lg\:w-2\/3 {
    width: 66.666667%;
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:justify-between {
    justify-content: space-between;
  }
  .lg\:gap-8 {
    gap: 2rem;
  }
  .lg\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
