:root {
  /* Fonts */
  --font-sans: 'Public Sans', -apple-system, BlinkMacSystemFont, Segoe UI,
    Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue,
    sans-serif;
  --font-serif: 'Playfair Display', serif;
  /* Theme Colors */
  --white: #ffffff;
  --gray-05: #f3f3f3;
  --gray-10: #e7e7e7;
  --gray-20: #d0d0d0;
  --gray-40: #a0a0a0;
  --gray-60: #717171;
  --gray-80: #414141;
  --gray-90: #2a2a2a;
  --gray-95: #1e1e1e;
  --black: #121212;
  --black-a-30: rgba(0, 0, 0, 0.3);
  --pink: #ce3260;
  --pink-light: #fc7fa9;
  /* Theme Colors */
  --primary-a-30: var(--black-a-30);
  --primary: var(--black);
  --primary-95: var(--gray-95);
  --primary-90: var(--gray-90);
  --primary-80: var(--gray-80);
  --primary-60: var(--gray-60);
  --primary-40: var(--gray-40);
  --primary-20: var(--gray-20);
  --primary-10: var(--gray-10);
  --primary-05: var(--gray-05);
  --secondary: var(--white);
  --accent: var(--pink);
}

[data-theme='dark'] {
  /* Theme Colors */
  --primary: var(--white);
  --primary-95: var(--gray-05);
  --primary-90: var(--gray-10);
  --primary-80: var(--gray-20);
  --primary-60: var(--gray-40);
  --primary-40: var(--gray-60);
  --primary-20: var(--gray-80);
  --primary-10: var(--gray-90);
  --primary-05: var(--gray-95);
  --secondary: var(--black);
  --accent: var(--pink-light);
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  height: 100%;
  box-sizing: border-box;
  touch-action: manipulation;
  font-feature-settings: 'case' 1, 'rlig' 1, 'calt' 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  font-family: var(--font-sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--secondary);
  color: var(--primary);
}

body {
  position: relative;
  min-height: 100%;
  margin: 0;
}

@media screen and (max-width: 991px) {
  a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
}

/*! tailwindcss v2.1.1 | MIT License | https://tailwindcss.com */

/*! modern-normalize v1.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

/*
Document
========
*/

/**
Use a better box model (opinionated).
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

/**
Use a more readable tab size (opinionated).
*/

:root {
  tab-size: 4;
}

/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
*/

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/*
Sections
========
*/

/**
Remove the margin in all browsers.
*/

body {
  margin: 0;
}

/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/

body {
  font-family:
		system-ui,
		-apple-system, /* Firefox supports this but not yet `system-ui` */
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
}

/*
Grouping content
================
*/

/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
}

/*
Text-level semantics
====================
*/

/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
Tabular data
============
*/

/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
}

/*
Forms
=====
*/

/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
1. Remove the inheritance of text transform in Firefox.
*/

button,
select { /* 1 */
  text-transform: none;
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type='button'] {
  -webkit-appearance: button;
}

/**
Remove the inner border and padding in Firefox.
*/

/**
Restore the focus styles unset by the previous rule.
*/

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/

legend {
  padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/

/**
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.
*/

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/

/*
Interactive
===========
*/

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */

/**
 * Removes the default spacing and border for appropriate elements.
 */

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

button {
  background-color: transparent;
  background-image: none;
}

/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 */

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

fieldset {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/**
 * Tailwind custom reset styles
 */

/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */

html {
  font-family: var(--font-sans); /* 1 */
  line-height: 1.5; /* 2 */
}

/**
 * Inherit font-family and line-height from `html` so users can set them as
 * a class directly on the `html` element.
 */

body {
  font-family: inherit;
  line-height: inherit;
}

/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: var(--primary-20); /* 2 */
}

/*
 * Ensure horizontal rules are visible by default
 */

hr {
  border-top-width: 1px;
}

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */

img {
  border-style: solid;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #a1a1aa;
}

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

table {
  border-collapse: collapse;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/**
 * Reset links to optimize for opt-in styling instead of
 * opt-out.
 */

a {
  color: inherit;
  text-decoration: inherit;
}

/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */

button,
input,
optgroup,
select,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}

/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */

pre,
code,
kbd,
samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/**
 * Make replaced elements `display: block` by default as that's
 * the behavior you want almost all of the time. Inspired by
 * CSS Remedy, with `svg` added as well.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

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

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

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

@media (min-width: 640px) {
}

@media (min-width: 768px) {
}

@media (min-width: 1024px) {
}

@media (min-width: 1280px) {
}

@media (min-width: 1536px) {
}

@media (display-mode: standalone) {
}

.bg-transparent {
  background-color: transparent
}

.bg-primary-20 {
  background-color: var(--primary-20)
}

.bg-primary {
  background-color: var(--primary)
}

.bg-primary-05 {
  background-color: var(--primary-05)
}

.bg-secondary {
  background-color: var(--secondary)
}

.bg-accent {
  background-color: var(--accent)
}

.hover\:bg-primary-05:hover {
  background-color: var(--primary-05)
}

.border-primary {
  border-color: var(--primary)
}

.border-accent {
  border-color: var(--accent)
}

.focus-within\:border-primary:focus-within {
  border-color: var(--primary)
}

.rounded-sm {
  border-radius: 0.125rem
}

.rounded-lg {
  border-radius: 0.5rem
}

.rounded-xl {
  border-radius: 0.75rem
}

.rounded-2xl {
  border-radius: 1rem
}

.rounded-full {
  border-radius: 9999px
}

.border {
  border-width: 1px
}

.border-b-2 {
  border-bottom-width: 2px
}

.border-t {
  border-top-width: 1px
}

.border-b {
  border-bottom-width: 1px
}

.cursor-pointer {
  cursor: pointer
}

.block {
  display: block
}

.inline-block {
  display: inline-block
}

.flex {
  display: flex
}

.table {
  display: table
}

.hidden {
  display: none
}

.flex-col {
  flex-direction: column
}

.flex-wrap {
  flex-wrap: wrap
}

.items-center {
  align-items: center
}

.justify-end {
  justify-content: flex-end
}

.justify-center {
  justify-content: center
}

.justify-between {
  justify-content: space-between
}

.font-serif {
  font-family: var(--font-serif)
}

.font-normal {
  font-weight: 400
}

.font-bold {
  font-weight: 700
}

.h-2 {
  height: 0.5rem
}

.h-12 {
  height: 3rem
}

.h-14 {
  height: 3.5rem
}

.h-16 {
  height: 4rem
}

.h-24 {
  height: 6rem
}

.h-auto {
  height: auto
}

.h-full {
  height: 100%
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem
}

.leading-none {
  line-height: 1
}

.leading-tight {
  line-height: 1.25
}

.m-0 {
  margin: 0px
}

.my-0 {
  margin-top: 0px;
  margin-bottom: 0px
}

.mx-0 {
  margin-left: 0px;
  margin-right: 0px
}

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem
}

.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem
}

.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem
}

.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto
}

.mx-auto {
  margin-left: auto;
  margin-right: auto
}

.mt-0 {
  margin-top: 0px
}

.mt-1 {
  margin-top: 0.25rem
}

.ml-1 {
  margin-left: 0.25rem
}

.mt-2 {
  margin-top: 0.5rem
}

.mr-2 {
  margin-right: 0.5rem
}

.mb-2 {
  margin-bottom: 0.5rem
}

.mb-3 {
  margin-bottom: 0.75rem
}

.mt-4 {
  margin-top: 1rem
}

.mb-4 {
  margin-bottom: 1rem
}

.mr-5 {
  margin-right: 1.25rem
}

.ml-5 {
  margin-left: 1.25rem
}

.mt-6 {
  margin-top: 1.5rem
}

.mb-6 {
  margin-bottom: 1.5rem
}

.mt-8 {
  margin-top: 2rem
}

.mb-8 {
  margin-bottom: 2rem
}

.mt-10 {
  margin-top: 2.5rem
}

.mt-24 {
  margin-top: 6rem
}

.-ml-2 {
  margin-left: -0.5rem
}

.max-h-28 {
  max-height: 7rem
}

.min-h-screen {
  min-height: 100vh
}

.object-cover {
  object-fit: cover
}

.opacity-60 {
  opacity: 0.6
}

.opacity-70 {
  opacity: 0.7
}

.opacity-80 {
  opacity: 0.8
}

.hover\:opacity-100:hover {
  opacity: 1
}

.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px
}

.overflow-hidden {
  overflow: hidden
}

.overflow-x-scroll {
  overflow-x: scroll
}

.p-0 {
  padding: 0px
}

.p-2 {
  padding: 0.5rem
}

.p-3 {
  padding: 0.75rem
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem
}

.pt-1 {
  padding-top: 0.25rem
}

.pl-1 {
  padding-left: 0.25rem
}

.pt-2 {
  padding-top: 0.5rem
}

.pr-2 {
  padding-right: 0.5rem
}

.pl-2 {
  padding-left: 0.5rem
}

.pl-3 {
  padding-left: 0.75rem
}

.pt-4 {
  padding-top: 1rem
}

.pb-4 {
  padding-bottom: 1rem
}

.pl-4 {
  padding-left: 1rem
}

.pb-5 {
  padding-bottom: 1.25rem
}

.pt-6 {
  padding-top: 1.5rem
}

.pb-6 {
  padding-bottom: 1.5rem
}

.pl-6 {
  padding-left: 1.5rem
}

.pt-8 {
  padding-top: 2rem
}

.pr-9 {
  padding-right: 2.25rem
}

.pl-9 {
  padding-left: 2.25rem
}

.pb-20 {
  padding-bottom: 5rem
}

.pt-24 {
  padding-top: 6rem
}

.pointer-events-none {
  pointer-events: none
}

.static {
  position: static
}

.fixed {
  position: fixed
}

.absolute {
  position: absolute
}

.relative {
  position: relative
}

.sticky {
  position: sticky
}

.top-0 {
  top: 0px
}

.right-0 {
  right: 0px
}

.bottom-0 {
  bottom: 0px
}

.left-0 {
  left: 0px
}

.right-2 {
  right: 0.5rem
}

.right-3 {
  right: 0.75rem
}

.bottom-4 {
  bottom: 1rem
}

.right-6 {
  right: 1.5rem
}

.left-6 {
  left: 1.5rem
}

.bottom-8 {
  bottom: 2rem
}

.top-14 {
  top: 3.5rem
}

.top-1\/2 {
  top: 50%
}

* {
  --tw-shadow: 0 0 #0000
}

.shadow {
  --tw-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

* {
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000
}

.text-center {
  text-align: center
}

.text-primary-60 {
  color: var(--primary-60)
}

.text-primary-90 {
  color: var(--primary-90)
}

.text-primary {
  color: var(--primary)
}

.text-secondary {
  color: var(--secondary)
}

.text-accent {
  color: var(--accent)
}

.overflow-ellipsis {
  text-overflow: ellipsis
}

.uppercase {
  text-transform: uppercase
}

.capitalize {
  text-transform: capitalize
}

.hover\:underline:hover {
  text-decoration: underline
}

.whitespace-nowrap {
  white-space: nowrap
}

.w-2 {
  width: 0.5rem
}

.w-12 {
  width: 3rem
}

.w-16 {
  width: 4rem
}

.w-24 {
  width: 6rem
}

.w-full {
  width: 100%
}

.w-11\/12 {
  width: 91.666667%
}

.w-screen {
  width: 100vw
}

.w-max {
  width: max-content
}

.z-10 {
  z-index: 10
}

.z-20 {
  z-index: 20
}

.transform {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.scale-100 {
  --tw-scale-x: 1;
  --tw-scale-y: 1
}

.hover\:scale-105:hover {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05
}

.translate-y-0 {
  --tw-translate-y: 0px
}

.-translate-y-1\/2 {
  --tw-translate-y: -50%
}

.-translate-y-full {
  --tw-translate-y: -100%
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms
}

.duration-300 {
  transition-duration: 300ms
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0
  }
}

@keyframes pulse {
  50% {
    opacity: .5
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8,0,1,1)
  }

  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0,0,0.2,1)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50%)
  }

  to {
    transform: translateY(0)
  }
}

.animate-fade-in {
  animation: fadeIn 0.15s ease-in-out
}

.animate-slide-up {
  animation: slideUp 0.15s ease-in-out
}

.animate-fade-in-up {
  animation: fadeIn 0.15s ease-in-out, slideUp 0.15s ease-in-out
}

.filter {
  --tw-blur: var(--tw-empty,/*!*/ /*!*/);
  --tw-brightness: var(--tw-empty,/*!*/ /*!*/);
  --tw-contrast: var(--tw-empty,/*!*/ /*!*/);
  --tw-grayscale: var(--tw-empty,/*!*/ /*!*/);
  --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/);
  --tw-invert: var(--tw-empty,/*!*/ /*!*/);
  --tw-saturate: var(--tw-empty,/*!*/ /*!*/);
  --tw-sepia: var(--tw-empty,/*!*/ /*!*/);
  --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/);
  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)
}

@media (min-width: 640px) {
}

@media (min-width: 768px) {
  .md\:flex-row {
    flex-direction: row
  }

  .md\:justify-center {
    justify-content: center
  }

  .md\:justify-between {
    justify-content: space-between
  }

  .md\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem
  }

  .md\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem
  }

  .md\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem
  }

  .md\:px-32 {
    padding-left: 8rem;
    padding-right: 8rem
  }

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

  .md\:right-4 {
    right: 1rem
  }

  .md\:bottom-4 {
    bottom: 1rem
  }

  .md\:w-96 {
    width: 24rem
  }

  .md\:w-3\/4 {
    width: 75%
  }

  .md\:w-full {
    width: 100%
  }
}

@media (min-width: 1024px) {
  .lg\:flex {
    display: flex
  }

  .lg\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem
  }

  .lg\:mx-auto {
    margin-left: auto;
    margin-right: auto
  }

  .lg\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem
  }

  .lg\:px-48 {
    padding-left: 12rem;
    padding-right: 12rem
  }

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

  .lg\:w-2\/3 {
    width: 66.666667%
  }

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

  .lg\:w-4\/6 {
    width: 66.666667%
  }

  .lg\:w-7\/12 {
    width: 58.333333%
  }

  .lg\:gap-28 {
    gap: 7rem
  }
}

@media (min-width: 1280px) {
  .xl\:px-1\/5 {
    padding-left: 20%;
    padding-right: 20%
  }

  .xl\:w-7\/12 {
    width: 58.333333%
  }

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

@media (min-width: 1536px) {
}

@media (display-mode: standalone) {
}

p, ul, ol, li {
  color: var(--primary);
}

h6 {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--primary);
  text-transform: capitalize;
}

h5 {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: var(--primary);
  text-transform: capitalize;
}

h4 {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: var(--primary);
  text-transform: capitalize;
}

h3 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
  color: var(--primary);
  text-transform: capitalize;
}

h2 {
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 2.25rem;
  color: var(--primary);
  text-transform: capitalize;
}

h1 {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 2.5rem;
  color: var(--primary);
  text-transform: capitalize;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.serif {
  font-family: var(--font-serif);
  font-weight: 400;
}

.select-primary:focus {
  border-color: var(--primary);
}

.select-primary {
  border-radius: 0.5rem;
  border-width: 1px;
  cursor: pointer;
}

.select-primary:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.select-primary {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 1rem;
  padding-right: 2.5rem;
}

.markdown {
  font-size: 1.125rem;
  line-height: 1.75rem;
  line-height: 1.675;
  max-width: 100%
}

.markdown > * {
    margin-bottom: 1rem;
  }

.markdown a {
    text-decoration: underline;
  }

.markdown img {
    border-radius: 0.25rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    width: auto;
  }

.markdown h2, .markdown h3 {
    font-family: var(--font-serif);
    font-weight: 400;
  }

.markdown h2 {
    margin-top: 4rem;
  }

.markdown h3 {
    margin-top: 2.5rem;
  }

.markdown h4 {
    margin-top: 2rem;
  }

.markdown h5 {
    margin-top: 1.5rem;
  }

.markdown hr {
    border-color: var(--primary-20);
    margin-top: 5rem;
  }

.markdown blockquote {
    background-color: var(--primary-05);
    border-color: var(--primary);
    border-left-width: 4px;
    line-height: 1.25;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-right: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--secondary);
  }

.markdown blockquote p {
    font-size: 1rem;
    line-height: 1.5rem;
  }

.markdown {
  /* Code Snippets */
}

.markdown *:not(pre) > code {
    background-color: var(--primary-05);
    border-radius: 0.125rem;
    font-size: 1rem;
    line-height: 1.5rem;
    padding: 0.25rem;
  }

.markdown *:not(pre) > code::before,
    .markdown *:not(pre) > code::after {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

.markdown pre {
    background-color: var(--primary-05);
    border-radius: 0.25rem;
    font-size: 1rem;
    line-height: 1.5rem;
    line-height: 1.5rem;
    overflow-x: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

.markdown {
  /* Unordered List */
}

.markdown ul {
    line-height: 1.5;
    list-style-position: inside;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

.markdown ul li {
    line-height: 1.5rem;
    list-style-type: disc;
    padding: 0.25rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

.markdown ul li strong {
    font-weight: 700;
  }

.markdown {
  /* Order List */
}

.markdown ol {
    line-height: 1.5;
    list-style-position: outside;
    list-style-type: decimal;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

.markdown ol li {
    line-height: 1.5rem;
    padding: 0.5rem;
  }

.scroll-snap-x-mandatory {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.scrollbar-none::-webkit-scrollbar {
  display: none;
}

.search-btn-none::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

