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

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

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

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

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

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

html {
  -moz-tab-size: 4;
  tab-size: 4;
}

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

/*
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,
select {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

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

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

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

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

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

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

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

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

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

progress {
  vertical-align: baseline;
}

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

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

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

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

summary {
  display: list-item;
}

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

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


dl,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

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


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: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 1 */
  line-height: 1.5; /* 2 */
}

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

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

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

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}

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

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

input::placeholder {
  opacity: 1;
  color: #9ca3af;
}

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

/**
 * Override legacy focus reset from Normalize with modern Firefox focus styles.
 *
 * This is actually an improvement over the new defaults in Firefox in our testing,
 * as it triggers the better focus styles even for links, which still use a dotted
 * outline in Firefox by default.
 */

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,
select {
  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.
 */


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

/**
 * 1. 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
 * 
 * 2. Add `vertical-align: middle` to align replaced elements more
 *    sensibly by default when overriding `display` by adding a
 *    utility like `inline`.
 *
 *    This can trigger a poorly considered linting error in some
 *    tools but is included by design.
 * 
 *    https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
 */

img,
svg,
iframe,
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 {
  max-width: 100%;
  height: auto;
}

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

[hidden] {
  display: none;
}

*, ::before, ::after {
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, var(--tw-border-opacity));
}

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

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

.pointer-events-auto {
  pointer-events: auto
}

.visible {
  visibility: visible
}

.static {
  position: static
}

.fixed {
  position: fixed
}

.absolute {
  position: absolute
}

.relative {
  position: relative
}

.sticky {
  position: sticky
}

.inset-x-0 {
  left: 0px;
  right: 0px
}

.inset-y-0 {
  top: 0px;
  bottom: 0px
}

.top-0 {
  top: 0px
}

.top-1 {
  top: 0.25rem
}

.top-3 {
  top: 0.75rem
}

.top-4 {
  top: 1rem
}

.top-5 {
  top: 1.25rem
}

.top-6 {
  top: 1.5rem
}

.top-12 {
  top: 3rem
}

.top-14 {
  top: 3.5rem
}

.top-24 {
  top: 6rem
}

.top-28 {
  top: 7rem
}

.top-44 {
  top: 11rem
}

.top-auto {
  top: auto
}

.top-1\.5 {
  top: 0.375rem
}

.top-2\.5 {
  top: 0.625rem
}

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

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

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

.right-0 {
  right: 0px
}

.right-1 {
  right: 0.25rem
}

.right-2 {
  right: 0.5rem
}

.right-3 {
  right: 0.75rem
}

.right-4 {
  right: 1rem
}

.right-6 {
  right: 1.5rem
}

.right-8 {
  right: 2rem
}

.right-2\.5 {
  right: 0.625rem
}

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

.bottom-0 {
  bottom: 0px
}

.bottom-5 {
  bottom: 1.25rem
}

.left-0 {
  left: 0px
}

.left-2 {
  left: 0.5rem
}

.left-5 {
  left: 1.25rem
}

.left-8 {
  left: 2rem
}

.left-1\.5 {
  left: 0.375rem
}

.left-3\.5 {
  left: 0.875rem
}

.z-10 {
  z-index: 10
}

.z-20 {
  z-index: 20
}

.z-30 {
  z-index: 30
}

.z-40 {
  z-index: 40
}

.z-50 {
  z-index: 50
}

.order-last {
  order: 9999
}

.col-span-1 {
  grid-column: span 1 / span 1
}

.col-span-2 {
  grid-column: span 2 / span 2
}

.col-span-3 {
  grid-column: span 3 / span 3
}

.col-span-4 {
  grid-column: span 4 / span 4
}

.col-span-5 {
  grid-column: span 5 / span 5
}

.col-span-12 {
  grid-column: span 12 / span 12
}

.row-auto {
  grid-row: auto
}

.float-right {
  float: right
}

.m-0 {
  margin: 0px
}

.m-2 {
  margin: 0.5rem
}

.m-4 {
  margin: 1rem
}

.m-5 {
  margin: 1.25rem
}

.m-6 {
  margin: 1.5rem
}

.m-8 {
  margin: 2rem
}

.m-auto {
  margin: auto
}

.m-2\.5 {
  margin: 0.625rem
}

.-m-4 {
  margin: -1rem
}

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

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

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem
}

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

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

.mx-5 {
  margin-left: 1.25rem;
  margin-right: 1.25rem
}

.mx-6 {
  margin-left: 1.5rem;
  margin-right: 1.5rem
}

.mx-8 {
  margin-left: 2rem;
  margin-right: 2rem
}

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

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

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

.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem
}

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

.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem
}

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

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

.my-9 {
  margin-top: 2.25rem;
  margin-bottom: 2.25rem
}

.my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem
}

.my-14 {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem
}

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

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

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

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

.mt-3 {
  margin-top: 0.75rem
}

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

.mt-5 {
  margin-top: 1.25rem
}

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

.mt-7 {
  margin-top: 1.75rem
}

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

.mt-9 {
  margin-top: 2.25rem
}

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

.mt-12 {
  margin-top: 3rem
}

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

.mt-20 {
  margin-top: 5rem
}

.mt-auto {
  margin-top: auto
}

.mt-0\.5 {
  margin-top: 0.125rem
}

.mt-1\.5 {
  margin-top: 0.375rem
}

.mt-2\.5 {
  margin-top: 0.625rem
}

.-mt-11 {
  margin-top: -2.75rem
}

.mr-1 {
  margin-right: 0.25rem
}

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

.mr-4 {
  margin-right: 1rem
}

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

.mr-6 {
  margin-right: 1.5rem
}

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

.mr-28 {
  margin-right: 7rem
}

.mb-0 {
  margin-bottom: 0px
}

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

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

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

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

.mb-5 {
  margin-bottom: 1.25rem
}

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

.mb-7 {
  margin-bottom: 1.75rem
}

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

.mb-10 {
  margin-bottom: 2.5rem
}

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

.mb-14 {
  margin-bottom: 3.5rem
}

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

.mb-20 {
  margin-bottom: 5rem
}

.mb-28 {
  margin-bottom: 7rem
}

.mb-auto {
  margin-bottom: auto
}

.mb-0\.5 {
  margin-bottom: 0.125rem
}

.mb-3\.5 {
  margin-bottom: 0.875rem
}

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

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

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

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

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

.ml-9 {
  margin-left: 2.25rem
}

.-ml-6 {
  margin-left: -1.5rem
}

.ml-1\/10 {
  margin-left: 10%
}

.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-0 {
  height: 0px
}

.h-2 {
  height: 0.5rem
}

.h-4 {
  height: 1rem
}

.h-5 {
  height: 1.25rem
}

.h-6 {
  height: 1.5rem
}

.h-7 {
  height: 1.75rem
}

.h-8 {
  height: 2rem
}

.h-9 {
  height: 2.25rem
}

.h-10 {
  height: 2.5rem
}

.h-11 {
  height: 2.75rem
}

.h-12 {
  height: 3rem
}

.h-14 {
  height: 3.5rem
}

.h-16 {
  height: 4rem
}

.h-20 {
  height: 5rem
}

.h-24 {
  height: 6rem
}

.h-28 {
  height: 7rem
}

.h-32 {
  height: 8rem
}

.h-36 {
  height: 9rem
}

.h-48 {
  height: 12rem
}

.h-60 {
  height: 15rem
}

.h-72 {
  height: 18rem
}

.h-96 {
  height: 24rem
}

.h-auto {
  height: auto
}

.h-1\.5 {
  height: 0.375rem
}

.h-3\.5 {
  height: 0.875rem
}

.h-600px {
  height: 600px
}

.h-1\/3 {
  height: 33.333333%
}

.h-2\/3 {
  height: 66.666667%
}

.h-3\/5 {
  height: 60%
}

.h-5\/6 {
  height: 83.333333%
}

.h-full {
  height: 100%
}

.h-screen {
  height: 100vh
}

.max-h-600px {
  max-height: 600px
}

.max-h-full {
  max-height: 100%
}

.min-h-full {
  min-height: 100%
}

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

.w-2 {
  width: 0.5rem
}

.w-4 {
  width: 1rem
}

.w-5 {
  width: 1.25rem
}

.w-6 {
  width: 1.5rem
}

.w-8 {
  width: 2rem
}

.w-10 {
  width: 2.5rem
}

.w-12 {
  width: 3rem
}

.w-14 {
  width: 3.5rem
}

.w-16 {
  width: 4rem
}

.w-20 {
  width: 5rem
}

.w-24 {
  width: 6rem
}

.w-28 {
  width: 7rem
}

.w-32 {
  width: 8rem
}

.w-36 {
  width: 9rem
}

.w-40 {
  width: 10rem
}

.w-48 {
  width: 12rem
}

.w-56 {
  width: 14rem
}

.w-60 {
  width: 15rem
}

.w-64 {
  width: 16rem
}

.w-72 {
  width: 18rem
}

.w-80 {
  width: 20rem
}

.w-96 {
  width: 24rem
}

.w-auto {
  width: auto
}

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

.w-1\/3 {
  width: 33.333333%
}

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

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

.w-9\/10 {
  width: 90%
}

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

.w-10\/12 {
  width: 83.333333%
}

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

.w-full {
  width: 100%
}

.w-screen {
  width: 100vw
}

.w-90vw {
  width: 90vw
}

.w-min {
  width: min-content
}

.w-max {
  width: max-content
}

.min-w-full {
  min-width: 100%
}

.min-w-min {
  min-width: min-content
}

.max-w-52 {
  max-width: 13rem
}

.max-w-2xs {
  max-width: 16rem
}

.max-w-xs {
  max-width: 20rem
}

.max-w-sm {
  max-width: 24rem
}

.max-w-lg {
  max-width: 32rem
}

.max-w-xl {
  max-width: 36rem
}

.max-w-4xl {
  max-width: 56rem
}

.max-w-5xl {
  max-width: 64rem
}

.max-w-content {
  max-width: 1655px
}

.max-w-full {
  max-width: 100%
}

.max-w-max {
  max-width: max-content
}

.max-w-screen-xl {
  max-width: 1210px
}

.flex-1 {
  flex: 1 1 0%
}

.flex-none {
  flex: none
}

.flex-shrink-0 {
  flex-shrink: 0
}

.flex-grow-0 {
  flex-grow: 0
}

.flex-grow {
  flex-grow: 1
}

.table-auto {
  table-layout: auto
}

.border-collapse {
  border-collapse: collapse
}

.origin-top-right {
  transform-origin: top right
}

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

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

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

.rotate-180 {
  --tw-rotate: 180deg
}

.scale-95 {
  --tw-scale-x: .95;
  --tw-scale-y: .95
}

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

@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)
  }
}

.cursor-pointer {
  cursor: pointer
}

.cursor-not-allowed {
  cursor: not-allowed
}

.disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed
}

.select-none {
  user-select: none
}

.resize {
  resize: both
}

.list-none {
  list-style-type: none
}

.list-disc {
  list-style-type: disc
}

.appearance-none {
  appearance: none
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr))
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr))
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr))
}

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr))
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr))
}

.grid-rows-0 {
  grid-template-rows: repeat(1, minmax(0, 0fr))
}

.grid-rows-1 {
  grid-template-rows: repeat(1, minmax(0, 1fr))
}

.grid-rows-2 {
  grid-template-rows: repeat(2, minmax(0, 1fr))
}

.grid-rows-3 {
  grid-template-rows: repeat(3, minmax(0, 1fr))
}

.grid-rows-3-auto {
  grid-template-rows: repeat(3, minmax(0, auto))
}

.flex-row {
  flex-direction: row
}

.flex-row-reverse {
  flex-direction: row-reverse
}

.flex-col {
  flex-direction: column
}

.flex-col-reverse {
  flex-direction: column-reverse
}

.flex-wrap {
  flex-wrap: wrap
}

.place-content-end {
  place-content: end
}

.place-items-center {
  place-items: center
}

.content-center {
  align-content: center
}

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

.items-start {
  align-items: flex-start
}

.items-end {
  align-items: flex-end
}

.items-center {
  align-items: center
}

.items-baseline {
  align-items: baseline
}

.items-stretch {
  align-items: stretch
}

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

.justify-center {
  justify-content: center
}

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

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

.justify-items-center {
  justify-items: center
}

.justify-items-stretch {
  justify-items: stretch
}

.gap-2 {
  gap: 0.5rem
}

.gap-3 {
  gap: 0.75rem
}

.gap-4 {
  gap: 1rem
}

.gap-5 {
  gap: 1.25rem
}

.gap-6 {
  gap: 1.5rem
}

.gap-7 {
  gap: 1.75rem
}

.gap-9 {
  gap: 2.25rem
}

.gap-24 {
  gap: 6rem
}

.gap-2\.5 {
  gap: 0.625rem
}

.gap-x-2 {
  column-gap: 0.5rem
}

.gap-x-6 {
  column-gap: 1.5rem
}

.gap-x-3\.5 {
  column-gap: 0.875rem
}

.gap-y-2 {
  row-gap: 0.5rem
}

.gap-y-4 {
  row-gap: 1rem
}

.gap-y-5 {
  row-gap: 1.25rem
}

.gap-y-2\.5 {
  row-gap: 0.625rem
}

.space-x-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.75rem * var(--tw-space-x-reverse));
  margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)))
}

.divide-y > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse))
}

.place-self-start {
  place-self: start
}

.place-self-end {
  place-self: end
}

.place-self-center {
  place-self: center
}

.self-start {
  align-self: flex-start
}

.self-center {
  align-self: center
}

.self-stretch {
  align-self: stretch
}

.justify-self-center {
  justify-self: center
}

.overflow-auto {
  overflow: auto
}

.overflow-hidden {
  overflow: hidden
}

.overflow-x-auto {
  overflow-x: auto
}

.overflow-y-auto {
  overflow-y: auto
}

.overflow-y-hidden {
  overflow-y: hidden
}

.overflow-y-scroll {
  overflow-y: scroll
}

.whitespace-nowrap {
  white-space: nowrap
}

.whitespace-pre-line {
  white-space: pre-line
}

.break-words {
  overflow-wrap: break-word
}

.break-all {
  word-break: break-all
}

.rounded-none {
  border-radius: 0px
}

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

.rounded {
  border-radius: 0.25rem
}

.rounded-md {
  border-radius: 0.375rem
}

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

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

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

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

.rounded-t {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem
}

.rounded-r-none {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px
}

.rounded-r-md {
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem
}

.rounded-r-full {
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px
}

.rounded-b {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem
}

.rounded-b-xl {
  border-bottom-right-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem
}

.rounded-l-md {
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem
}

.rounded-l-2xl {
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem
}

.border-0 {
  border-width: 0px
}

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

.border-4 {
  border-width: 4px
}

.border {
  border-width: 1px
}

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

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

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

.border-r-4 {
  border-right-width: 4px
}

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

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

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

.border-l-0 {
  border-left-width: 0px
}

.border-l-4 {
  border-left-width: 4px
}

.border-solid {
  border-style: solid
}

.border-none {
  border-style: none
}

.border-transparent {
  border-color: transparent
}

.border-black {
  --tw-border-opacity: 1;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity))
}

.border-white {
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity))
}

.border-gray-100 {
  --tw-border-opacity: 1;
  border-color: rgba(243, 244, 246, var(--tw-border-opacity))
}

.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, var(--tw-border-opacity))
}

.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgba(209, 213, 219, var(--tw-border-opacity))
}

.border-gray-500 {
  --tw-border-opacity: 1;
  border-color: rgba(107, 114, 128, var(--tw-border-opacity))
}

.border-gray-600 {
  --tw-border-opacity: 1;
  border-color: rgba(75, 85, 99, var(--tw-border-opacity))
}

.border-red-400 {
  --tw-border-opacity: 1;
  border-color: rgba(248, 113, 113, var(--tw-border-opacity))
}

.border-amber-200 {
  --tw-border-opacity: 1;
  border-color: rgba(253, 230, 138, var(--tw-border-opacity))
}

.border-walden-green {
  --tw-border-opacity: 1;
  border-color: rgba(24, 48, 40, var(--tw-border-opacity))
}

.border-walden-dark-green {
  --tw-border-opacity: 1;
  border-color: rgba(30, 47, 40, var(--tw-border-opacity))
}

.border-walden-medium-green {
  --tw-border-opacity: 1;
  border-color: rgba(34, 112, 85, var(--tw-border-opacity))
}

.border-walden-green-light {
  --tw-border-opacity: 1;
  border-color: rgba(174, 187, 189, var(--tw-border-opacity))
}

.border-walden-green-medium {
  --tw-border-opacity: 1;
  border-color: rgba(47, 68, 62, var(--tw-border-opacity))
}

.border-walden-orange {
  --tw-border-opacity: 1;
  border-color: rgba(255, 105, 0, var(--tw-border-opacity))
}

.border-walden-gray-light {
  --tw-border-opacity: 1;
  border-color: rgba(197, 203, 201, var(--tw-border-opacity))
}

.border-walden-gray-x-light {
  --tw-border-opacity: 1;
  border-color: rgba(238, 238, 238, var(--tw-border-opacity))
}

.border-walden-light-gray {
  --tw-border-opacity: 1;
  border-color: rgba(222, 222, 222, var(--tw-border-opacity))
}

.border-walden-black-tint-04 {
  --tw-border-opacity: 1;
  border-color: rgba(195, 195, 195, var(--tw-border-opacity))
}

.border-walden-primary-dark-forest {
  --tw-border-opacity: 1;
  border-color: rgba(28, 58, 43, var(--tw-border-opacity))
}

.border-walden-primary-dark-forest-03 {
  --tw-border-opacity: 1;
  border-color: rgba(141, 156, 149, var(--tw-border-opacity))
}

.border-walden-primary-dark-forest-04 {
  --tw-border-opacity: 1;
  border-color: rgba(194, 202, 197, var(--tw-border-opacity))
}

.border-walden-primary-off-white {
  --tw-border-opacity: 1;
  border-color: rgba(249, 246, 232, var(--tw-border-opacity))
}

.border-walden-primary-sunrise {
  --tw-border-opacity: 1;
  border-color: rgba(227, 201, 103, var(--tw-border-opacity))
}

.border-walden-secondary-lush {
  --tw-border-opacity: 1;
  border-color: rgba(34, 97, 68, var(--tw-border-opacity))
}

.border-walden-secondary-fern {
  --tw-border-opacity: 1;
  border-color: rgba(182, 211, 187, var(--tw-border-opacity))
}

.border-walden-secondary-hay {
  --tw-border-opacity: 1;
  border-color: rgba(195, 177, 130, var(--tw-border-opacity))
}

.border-walden-secondary-cream {
  --tw-border-opacity: 1;
  border-color: rgba(243, 237, 211, var(--tw-border-opacity))
}

.focus\:border-blue-600:focus {
  --tw-border-opacity: 1;
  border-color: rgba(37, 99, 235, var(--tw-border-opacity))
}

.border-opacity-95 {
  --tw-border-opacity: 0.95
}

.bg-transparent {
  background-color: transparent
}

.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity))
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity))
}

.bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity))
}

.bg-gray-700 {
  --tw-bg-opacity: 1;
  background-color: rgba(55, 65, 81, var(--tw-bg-opacity))
}

.bg-red-100 {
  --tw-bg-opacity: 1;
  background-color: rgba(254, 226, 226, var(--tw-bg-opacity))
}

.bg-red-300 {
  --tw-bg-opacity: 1;
  background-color: rgba(252, 165, 165, var(--tw-bg-opacity))
}

.bg-red-500 {
  --tw-bg-opacity: 1;
  background-color: rgba(239, 68, 68, var(--tw-bg-opacity))
}

.bg-yellow-300 {
  --tw-bg-opacity: 1;
  background-color: rgba(252, 211, 77, var(--tw-bg-opacity))
}

.bg-yellow-400 {
  --tw-bg-opacity: 1;
  background-color: rgba(251, 191, 36, var(--tw-bg-opacity))
}

.bg-yellow-500 {
  --tw-bg-opacity: 1;
  background-color: rgba(245, 158, 11, var(--tw-bg-opacity))
}

.bg-green-500 {
  --tw-bg-opacity: 1;
  background-color: rgba(16, 185, 129, var(--tw-bg-opacity))
}

.bg-green-600 {
  --tw-bg-opacity: 1;
  background-color: rgba(5, 150, 105, var(--tw-bg-opacity))
}

.bg-walden-blue-faint {
  --tw-bg-opacity: 1;
  background-color: rgba(186, 201, 206, var(--tw-bg-opacity))
}

.bg-walden-green {
  --tw-bg-opacity: 1;
  background-color: rgba(24, 48, 40, var(--tw-bg-opacity))
}

.bg-walden-dark-green {
  --tw-bg-opacity: 1;
  background-color: rgba(30, 47, 40, var(--tw-bg-opacity))
}

.bg-walden-medium-green {
  --tw-bg-opacity: 1;
  background-color: rgba(34, 112, 85, var(--tw-bg-opacity))
}

.bg-walden-bright-green {
  --tw-bg-opacity: 1;
  background-color: rgba(174, 238, 195, var(--tw-bg-opacity))
}

.bg-walden-mint-green {
  --tw-bg-opacity: 1;
  background-color: rgba(197, 237, 211, var(--tw-bg-opacity))
}

.bg-walden-highlight-green {
  --tw-bg-opacity: 1;
  background-color: rgba(239, 253, 242, var(--tw-bg-opacity))
}

.bg-walden-green-faint {
  --tw-bg-opacity: 1;
  background-color: rgba(100, 107, 100, var(--tw-bg-opacity))
}

.bg-walden-green-light {
  --tw-bg-opacity: 1;
  background-color: rgba(174, 187, 189, var(--tw-bg-opacity))
}

.bg-walden-green-medium {
  --tw-bg-opacity: 1;
  background-color: rgba(47, 68, 62, var(--tw-bg-opacity))
}

.bg-walden-red {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 69, 69, var(--tw-bg-opacity))
}

.bg-walden-error-pink {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 213, 207, var(--tw-bg-opacity))
}

.bg-walden-danger-red {
  --tw-bg-opacity: 1;
  background-color: rgba(231, 77, 60, var(--tw-bg-opacity))
}

.bg-walden-orange {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 105, 0, var(--tw-bg-opacity))
}

.bg-walden-dark-orange {
  --tw-bg-opacity: 1;
  background-color: rgba(217, 89, 0, var(--tw-bg-opacity))
}

.bg-walden-gray-light {
  --tw-bg-opacity: 1;
  background-color: rgba(197, 203, 201, var(--tw-bg-opacity))
}

.bg-walden-gray-medium {
  --tw-bg-opacity: 1;
  background-color: rgba(105, 120, 115, var(--tw-bg-opacity))
}

.bg-walden-gray-dark {
  --tw-bg-opacity: 1;
  background-color: rgba(73, 80, 87, var(--tw-bg-opacity))
}

.bg-walden-gray-x-light {
  --tw-bg-opacity: 1;
  background-color: rgba(238, 238, 238, var(--tw-bg-opacity))
}

.bg-walden-gray-3x-light {
  --tw-bg-opacity: 1;
  background-color: rgba(248, 249, 250, var(--tw-bg-opacity))
}

.bg-walden-beige {
  --tw-bg-opacity: 1;
  background-color: rgba(247, 247, 240, var(--tw-bg-opacity))
}

.bg-walden-cream {
  --tw-bg-opacity: 1;
  background-color: rgba(248, 240, 225, var(--tw-bg-opacity))
}

.bg-walden-light-gray {
  --tw-bg-opacity: 1;
  background-color: rgba(222, 222, 222, var(--tw-bg-opacity))
}

.bg-walden-black-tint-03 {
  --tw-bg-opacity: 1;
  background-color: rgba(160, 160, 161, var(--tw-bg-opacity))
}

.bg-walden-primary-dark-forest {
  --tw-bg-opacity: 1;
  background-color: rgba(28, 58, 43, var(--tw-bg-opacity))
}

.bg-walden-primary-dark-forest-05 {
  --tw-bg-opacity: 1;
  background-color: rgba(239, 241, 240, var(--tw-bg-opacity))
}

.bg-walden-primary-off-white {
  --tw-bg-opacity: 1;
  background-color: rgba(249, 246, 232, var(--tw-bg-opacity))
}

.bg-walden-primary-sunrise {
  --tw-bg-opacity: 1;
  background-color: rgba(227, 201, 103, var(--tw-bg-opacity))
}

.bg-walden-primary-white {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity))
}

.bg-walden-secondary-lush {
  --tw-bg-opacity: 1;
  background-color: rgba(34, 97, 68, var(--tw-bg-opacity))
}

.bg-walden-secondary-fern {
  --tw-bg-opacity: 1;
  background-color: rgba(182, 211, 187, var(--tw-bg-opacity))
}

.bg-walden-secondary-soil {
  --tw-bg-opacity: 1;
  background-color: rgba(130, 106, 82, var(--tw-bg-opacity))
}

.bg-walden-secondary-hay {
  --tw-bg-opacity: 1;
  background-color: rgba(195, 177, 130, var(--tw-bg-opacity))
}

.bg-walden-secondary-cream {
  --tw-bg-opacity: 1;
  background-color: rgba(243, 237, 211, var(--tw-bg-opacity))
}

.bg-walden-tertiary-red-compliant {
  --tw-bg-opacity: 1;
  background-color: rgba(211, 67, 34, var(--tw-bg-opacity))
}

.hover\:bg-white:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity))
}

.hover\:bg-gray-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity))
}

.hover\:bg-red-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(239, 68, 68, var(--tw-bg-opacity))
}

.hover\:bg-green-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(16, 185, 129, var(--tw-bg-opacity))
}

.hover\:bg-walden-green-medium:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(47, 68, 62, var(--tw-bg-opacity))
}

.hover\:bg-walden-orange:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 105, 0, var(--tw-bg-opacity))
}

.hover\:bg-walden-dark-orange:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(217, 89, 0, var(--tw-bg-opacity))
}

.hover\:bg-walden-gray-x-light:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(238, 238, 238, var(--tw-bg-opacity))
}

.hover\:bg-walden-primary-dark-forest:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(28, 58, 43, var(--tw-bg-opacity))
}

.hover\:bg-walden-primary-dark-forest-05:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(239, 241, 240, var(--tw-bg-opacity))
}

.hover\:bg-walden-secondary-hay:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(195, 177, 130, var(--tw-bg-opacity))
}

.focus\:bg-white:focus {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity))
}

.disabled\:bg-walden-primary-dark-forest:disabled {
  --tw-bg-opacity: 1;
  background-color: rgba(28, 58, 43, var(--tw-bg-opacity))
}

.bg-opacity-25 {
  --tw-bg-opacity: 0.25
}

.bg-opacity-50 {
  --tw-bg-opacity: 0.5
}

.bg-opacity-70 {
  --tw-bg-opacity: 0.7
}

.focus\:bg-opacity-25:focus {
  --tw-bg-opacity: 0.25
}

.disabled\:bg-opacity-30:disabled {
  --tw-bg-opacity: 0.3
}

.bg-cover {
  background-size: cover
}

.bg-clip-padding {
  background-clip: padding-box
}

.bg-center {
  background-position: center
}

.bg-no-repeat {
  background-repeat: no-repeat
}

.object-cover {
  object-fit: cover
}

.object-center {
  object-position: center
}

.p-1 {
  padding: 0.25rem
}

.p-2 {
  padding: 0.5rem
}

.p-3 {
  padding: 0.75rem
}

.p-4 {
  padding: 1rem
}

.p-5 {
  padding: 1.25rem
}

.p-6 {
  padding: 1.5rem
}

.p-7 {
  padding: 1.75rem
}

.p-8 {
  padding: 2rem
}

.p-12 {
  padding: 3rem
}

.p-1\.5 {
  padding: 0.375rem
}

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

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

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem
}

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

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem
}

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

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

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem
}

.px-12 {
  padding-left: 3rem;
  padding-right: 3rem
}

.px-20 {
  padding-left: 5rem;
  padding-right: 5rem
}

.px-0\.5 {
  padding-left: 0.125rem;
  padding-right: 0.125rem
}

.px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem
}

.px-3\.5 {
  padding-left: 0.875rem;
  padding-right: 0.875rem
}

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

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

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem
}

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

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem
}

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

.py-7 {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem
}

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

.py-9 {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem
}

.py-14 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem
}

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

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

.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem
}

.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem
}

.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem
}

.pt-0 {
  padding-top: 0px
}

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

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

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

.pt-5 {
  padding-top: 1.25rem
}

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

.pt-10 {
  padding-top: 2.5rem
}

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

.pt-3\.5 {
  padding-top: 0.875rem
}

.pr-1 {
  padding-right: 0.25rem
}

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

.pr-3 {
  padding-right: 0.75rem
}

.pr-4 {
  padding-right: 1rem
}

.pr-5 {
  padding-right: 1.25rem
}

.pr-6 {
  padding-right: 1.5rem
}

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

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

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

.pb-2 {
  padding-bottom: 0.5rem
}

.pb-3 {
  padding-bottom: 0.75rem
}

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

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

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

.pb-7 {
  padding-bottom: 1.75rem
}

.pb-8 {
  padding-bottom: 2rem
}

.pb-9 {
  padding-bottom: 2.25rem
}

.pb-11 {
  padding-bottom: 2.75rem
}

.pb-12 {
  padding-bottom: 3rem
}

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

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

.pb-0\.5 {
  padding-bottom: 0.125rem
}

.pb-1\.5 {
  padding-bottom: 0.375rem
}

.pl-0 {
  padding-left: 0px
}

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

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

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

.pl-5 {
  padding-left: 1.25rem
}

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

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

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

.pl-20 {
  padding-left: 5rem
}

.text-left {
  text-align: left
}

.text-center {
  text-align: center
}

.text-right {
  text-align: right
}

.align-middle {
  vertical-align: middle
}

.font-campton {
  font-family: RB Campton Neue
}

.font-family {
  font-family: Family Medium
}

.font-saa_series {
  font-family: Saa Series
}

.font-dm {
  font-family: "DM Sans", sans-serif
}

.text-2xs {
  font-size: 0.625rem
}

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

.text-sm {
  font-size: 0.875rem;
  line-height: 1.375rem;
  letter-spacing: -0.0175rem
}

.text-base {
  font-size: 1rem;
  line-height: 1.625rem;
  letter-spacing: -0.01rem
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
  letter-spacing: -0.01125rem
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.875rem;
  letter-spacing: -0.0125rem
}

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

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
  letter-spacing: -0.05625rem
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.625rem;
  letter-spacing: -0.0675rem
}

.text-4\.5xl {
  font-size: 2.5rem;
  line-height: 3rem;
  letter-spacing: -0.075rem
}

.text-xs-body {
  font-size: .75rem;
  line-height: 1.375rem;
  letter-spacing: -0.007rem
}

.text-sm-body {
  font-size: .875rem;
  line-height: 1.5rem;
  letter-spacing: -0.009rem
}

.text-md-body {
  font-size: 1rem;
  line-height: 1.75rem;
  letter-spacing: -0.01rem
}

.text-lg-body {
  font-size: 1.25rem;
  line-height: 2.125rem
}

.text-xl-body {
  font-size: 1.625rem;
  line-height: 2.5rem;
  letter-spacing: -0.033rem
}

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

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

.text-md-tag {
  font-size: 1rem;
  line-height: 1.375rem;
  letter-spacing: 0.04rem
}

.text-3xs-heading {
  font-size: 1.125rem;
  line-height: 1.75rem;
  letter-spacing: -0.011rem
}

.text-2xs-heading {
  font-size: 1.25rem;
  line-height: 1.5rem;
  letter-spacing: -0.013rem
}

.text-xs-heading {
  font-size: 1.5rem;
  line-height: 2.25rem;
  letter-spacing: -0.015rem
}

.text-sm-alt-heading {
  font-size: 2.25rem;
  line-height: 3rem;
  letter-spacing: -0.022rem
}

.text-sm-heading {
  font-size: 2.25rem;
  line-height: 2.375rem;
  letter-spacing: -0.045rem
}

.text-md-alt-heading {
  font-size: 3rem;
  line-height: 3.375rem;
  letter-spacing: -0.03rem
}

.text-md-heading {
  font-size: 3rem;
  line-height: 3.125rem;
  letter-spacing: -0.06rem
}

.text-mobile-lg-heading {
  font-size: 2.375rem;
  line-height: 2.5rem;
  letter-spacing: -0.0475rem
}

.text-mobile-sm-body {
  font-size: 0.8125rem;
  line-height: 1rem;
  letter-spacing: -0.01625rem
}

.font-normal {
  font-weight: 400
}

.font-medium {
  font-weight: 500
}

.font-semibold {
  font-weight: 600
}

.font-bold {
  font-weight: 700
}

.font-extrabold {
  font-weight: 800
}

.font-black {
  font-weight: 900
}

.uppercase {
  text-transform: uppercase
}

.italic {
  font-style: italic
}

.leading-4 {
  line-height: 1rem
}

.leading-5 {
  line-height: 1.25rem
}

.leading-6 {
  line-height: 1.5rem
}

.leading-7 {
  line-height: 1.75rem
}

.leading-none {
  line-height: 1
}

.leading-normal {
  line-height: 1.5
}

.tracking-wide {
  letter-spacing: 0.025em
}

.tracking-wider {
  letter-spacing: 0.05em
}

.text-black {
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity))
}

.text-white {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity))
}

.text-gray-200 {
  --tw-text-opacity: 1;
  color: rgba(229, 231, 235, var(--tw-text-opacity))
}

.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, var(--tw-text-opacity))
}

.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, var(--tw-text-opacity))
}

.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, var(--tw-text-opacity))
}

.text-red-500 {
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, var(--tw-text-opacity))
}

.text-red-700 {
  --tw-text-opacity: 1;
  color: rgba(185, 28, 28, var(--tw-text-opacity))
}

.text-blue-200 {
  --tw-text-opacity: 1;
  color: rgba(191, 219, 254, var(--tw-text-opacity))
}

.text-blue-500 {
  --tw-text-opacity: 1;
  color: rgba(59, 130, 246, var(--tw-text-opacity))
}

.text-blue-800 {
  --tw-text-opacity: 1;
  color: rgba(30, 64, 175, var(--tw-text-opacity))
}

.text-blue-900 {
  --tw-text-opacity: 1;
  color: rgba(30, 58, 138, var(--tw-text-opacity))
}

.text-walden-green {
  --tw-text-opacity: 1;
  color: rgba(24, 48, 40, var(--tw-text-opacity))
}

.text-walden-dark-green {
  --tw-text-opacity: 1;
  color: rgba(30, 47, 40, var(--tw-text-opacity))
}

.text-walden-medium-green {
  --tw-text-opacity: 1;
  color: rgba(34, 112, 85, var(--tw-text-opacity))
}

.text-walden-green-faint {
  --tw-text-opacity: 1;
  color: rgba(100, 107, 100, var(--tw-text-opacity))
}

.text-walden-green-light {
  --tw-text-opacity: 1;
  color: rgba(174, 187, 189, var(--tw-text-opacity))
}

.text-walden-green-medium {
  --tw-text-opacity: 1;
  color: rgba(47, 68, 62, var(--tw-text-opacity))
}

.text-walden-green-dark {
  --tw-text-opacity: 1;
  color: rgba(33, 37, 41, var(--tw-text-opacity))
}

.text-walden-error-red {
  --tw-text-opacity: 1;
  color: rgba(195, 5, 16, var(--tw-text-opacity))
}

.text-walden-danger-red {
  --tw-text-opacity: 1;
  color: rgba(231, 77, 60, var(--tw-text-opacity))
}

.text-walden-orange {
  --tw-text-opacity: 1;
  color: rgba(255, 105, 0, var(--tw-text-opacity))
}

.text-walden-gray-light {
  --tw-text-opacity: 1;
  color: rgba(197, 203, 201, var(--tw-text-opacity))
}

.text-walden-gray-medium {
  --tw-text-opacity: 1;
  color: rgba(105, 120, 115, var(--tw-text-opacity))
}

.text-walden-gray-dark {
  --tw-text-opacity: 1;
  color: rgba(73, 80, 87, var(--tw-text-opacity))
}

.text-walden-light-gray {
  --tw-text-opacity: 1;
  color: rgba(222, 222, 222, var(--tw-text-opacity))
}

.text-walden-black-tint-02 {
  --tw-text-opacity: 1;
  color: rgba(136, 136, 136, var(--tw-text-opacity))
}

.text-walden-black-tint-01 {
  --tw-text-opacity: 1;
  color: rgba(103, 103, 103, var(--tw-text-opacity))
}

.text-walden-black {
  --tw-text-opacity: 1;
  color: rgba(18, 18, 19, var(--tw-text-opacity))
}

.text-walden-primary-dark-forest {
  --tw-text-opacity: 1;
  color: rgba(28, 58, 43, var(--tw-text-opacity))
}

.text-walden-primary-dark-forest-02 {
  --tw-text-opacity: 1;
  color: rgba(92, 113, 102, var(--tw-text-opacity))
}

.text-walden-primary-dark-forest-03 {
  --tw-text-opacity: 1;
  color: rgba(141, 156, 149, var(--tw-text-opacity))
}

.text-walden-primary-dark-forest-04 {
  --tw-text-opacity: 1;
  color: rgba(194, 202, 197, var(--tw-text-opacity))
}

.text-walden-primary-off-white {
  --tw-text-opacity: 1;
  color: rgba(249, 246, 232, var(--tw-text-opacity))
}

.text-walden-primary-sunrise {
  --tw-text-opacity: 1;
  color: rgba(227, 201, 103, var(--tw-text-opacity))
}

.text-walden-primary-almost-black {
  --tw-text-opacity: 1;
  color: rgba(14, 30, 22, var(--tw-text-opacity))
}

.text-walden-primary-white {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity))
}

.text-walden-secondary-lush {
  --tw-text-opacity: 1;
  color: rgba(34, 97, 68, var(--tw-text-opacity))
}

.text-walden-secondary-grass {
  --tw-text-opacity: 1;
  color: rgba(95, 148, 87, var(--tw-text-opacity))
}

.text-walden-secondary-lighter-grass {
  --tw-text-opacity: 1;
  color: rgba(126, 167, 118, var(--tw-text-opacity))
}

.text-walden-secondary-soil {
  --tw-text-opacity: 1;
  color: rgba(130, 106, 82, var(--tw-text-opacity))
}

.text-walden-secondary-hay {
  --tw-text-opacity: 1;
  color: rgba(195, 177, 130, var(--tw-text-opacity))
}

.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity))
}

.hover\:text-blue-500:hover {
  --tw-text-opacity: 1;
  color: rgba(59, 130, 246, var(--tw-text-opacity))
}

.hover\:text-walden-primary-dark-forest:hover {
  --tw-text-opacity: 1;
  color: rgba(28, 58, 43, var(--tw-text-opacity))
}

.hover\:text-walden-primary-sunrise:hover {
  --tw-text-opacity: 1;
  color: rgba(227, 201, 103, var(--tw-text-opacity))
}

.hover\:text-walden-secondary-lush:hover {
  --tw-text-opacity: 1;
  color: rgba(34, 97, 68, var(--tw-text-opacity))
}

.focus\:text-gray-700:focus {
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, var(--tw-text-opacity))
}

.underline {
  text-decoration: underline
}

.line-through {
  text-decoration: line-through
}

.no-underline {
  text-decoration: none
}

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

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

.opacity-0 {
  opacity: 0
}

.opacity-30 {
  opacity: 0.3
}

.opacity-50 {
  opacity: 0.5
}

.opacity-100 {
  opacity: 1
}

*, ::before, ::after {
  --tw-shadow: 0 0 #0000
}

.shadow {
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  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 rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

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

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

*, ::before, ::after {
  --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
}

.ring-4 {
  --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(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}

.focus\:ring-2:focus {
  --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, 0 0 #0000)
}

.ring-blue-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity))
}

.focus\:ring-walden-orange:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(255, 105, 0, var(--tw-ring-opacity))
}

.ring-offset-2 {
  --tw-ring-offset-width: 2px
}

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

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

.transition {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  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
}

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

.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1)
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1)
}

@media (min-width: 576px) {

  .xs\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr))
  }

  .xs\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
    letter-spacing: -0.01125rem
  }

  .xs\:text-xl {
    font-size: 1.25rem;
    line-height: 1.875rem;
    letter-spacing: -0.0125rem
  }
}

@media (min-width: 640px) {

  .sm\:float-none {
    float: none
  }

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

  .sm\:inline {
    display: inline
  }

  .sm\:flex {
    display: flex
  }

  .sm\:hidden {
    display: none
  }

  .sm\:h-64 {
    height: 16rem
  }

  .sm\:h-auto {
    height: auto
  }

  .sm\:w-72 {
    width: 18rem
  }

  .sm\:w-auto {
    width: auto
  }

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

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

  .sm\:flex-1 {
    flex: 1 1 0%
  }

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

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

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

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

  .sm\:grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr))
  }

  .sm\:flex-row {
    flex-direction: row
  }

  .sm\:items-center {
    align-items: center
  }

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

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

  .sm\:gap-4 {
    gap: 1rem
  }

  .sm\:whitespace-pre {
    white-space: pre
  }

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

  .sm\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem
  }

  .sm\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem
  }

  .sm\:pr-4 {
    padding-right: 1rem
  }

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

  .sm\:text-sm-body {
    font-size: .875rem;
    line-height: 1.5rem;
    letter-spacing: -0.009rem
  }

  .sm\:text-md-body {
    font-size: 1rem;
    line-height: 1.75rem;
    letter-spacing: -0.01rem
  }

  .sm\:text-mobile-xs-heading {
    font-size: 1.125rem;
    line-height: 1.625rem;
    letter-spacing: -0.0125rem
  }
}

@media (min-width: 768px) {

  .md\:top-2 {
    top: 0.5rem
  }

  .md\:right-7 {
    right: 1.75rem
  }

  .md\:bottom-7 {
    bottom: 1.75rem
  }

  .md\:left-7 {
    left: 1.75rem
  }

  .md\:col-span-2 {
    grid-column: span 2 / span 2
  }

  .md\:col-span-6 {
    grid-column: span 6 / span 6
  }

  .md\:m-auto {
    margin: auto
  }

  .md\:mx-16 {
    margin-left: 4rem;
    margin-right: 4rem
  }

  .md\:mx-52 {
    margin-left: 13rem;
    margin-right: 13rem
  }

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

  .md\:my-9 {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem
  }

  .md\:my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem
  }

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

  .md\:mt-3 {
    margin-top: 0.75rem
  }

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

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

  .md\:mt-7 {
    margin-top: 1.75rem
  }

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

  .md\:mt-12 {
    margin-top: 3rem
  }

  .md\:mt-16 {
    margin-top: 4rem
  }

  .md\:mt-2\.5 {
    margin-top: 0.625rem
  }

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

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

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

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

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

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

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

  .md\:mb-9 {
    margin-bottom: 2.25rem
  }

  .md\:mb-10 {
    margin-bottom: 2.5rem
  }

  .md\:mb-12 {
    margin-bottom: 3rem
  }

  .md\:ml-0 {
    margin-left: 0px
  }

  .md\:ml-4 {
    margin-left: 1rem
  }

  .md\:ml-6 {
    margin-left: 1.5rem
  }

  .md\:block {
    display: block
  }

  .md\:inline-block {
    display: inline-block
  }

  .md\:flex {
    display: flex
  }

  .md\:grid {
    display: grid
  }

  .md\:hidden {
    display: none
  }

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

  .md\:h-11 {
    height: 2.75rem
  }

  .md\:h-14 {
    height: 3.5rem
  }

  .md\:h-20 {
    height: 5rem
  }

  .md\:h-24 {
    height: 6rem
  }

  .md\:h-40 {
    height: 10rem
  }

  .md\:h-72 {
    height: 18rem
  }

  .md\:h-full {
    height: 100%
  }

  .md\:w-3 {
    width: 0.75rem
  }

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

  .md\:w-14 {
    width: 3.5rem
  }

  .md\:w-20 {
    width: 5rem
  }

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

  .md\:w-32 {
    width: 8rem
  }

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

  .md\:w-48 {
    width: 12rem
  }

  .md\:w-60 {
    width: 15rem
  }

  .md\:w-72 {
    width: 18rem
  }

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

  .md\:w-120 {
    width: 30rem
  }

  .md\:w-192 {
    width: 48rem
  }

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

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

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

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

  .md\:w-5\/12 {
    width: 41.666667%
  }

  .md\:w-9\/12 {
    width: 75%
  }

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

  .md\:w-screen-md {
    width: 768px
  }

  .md\:max-w-xs {
    max-width: 20rem
  }

  .md\:max-w-lg {
    max-width: 32rem
  }

  .md\:max-w-2xl {
    max-width: 42rem
  }

  .md\:max-w-max {
    max-width: max-content
  }

  .md\:max-w-screen-2xl {
    max-width: 1536px
  }

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

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

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

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr))
  }

  .md\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr))
  }

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

  .md\:flex-row {
    flex-direction: row
  }

  .md\:flex-wrap {
    flex-wrap: wrap
  }

  .md\:items-center {
    align-items: center
  }

  .md\:justify-start {
    justify-content: flex-start
  }

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

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

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

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

  .md\:gap-6 {
    gap: 1.5rem
  }

  .md\:gap-7 {
    gap: 1.75rem
  }

  .md\:gap-8 {
    gap: 2rem
  }

  .md\:gap-10 {
    gap: 2.5rem
  }

  .md\:gap-40 {
    gap: 10rem
  }

  .md\:gap-2\.5 {
    gap: 0.625rem
  }

  .md\:gap-x-6 {
    column-gap: 1.5rem
  }

  .md\:self-end {
    align-self: flex-end
  }

  .md\:rounded-md {
    border-radius: 0.375rem
  }

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

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

  .md\:border-none {
    border-style: none
  }

  .md\:bg-black {
    --tw-bg-opacity: 1;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity))
  }

  .md\:p-4 {
    padding: 1rem
  }

  .md\:p-5 {
    padding: 1.25rem
  }

  .md\:p-6 {
    padding: 1.5rem
  }

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

  .md\:px-0 {
    padding-left: 0px;
    padding-right: 0px
  }

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

  .md\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem
  }

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

  .md\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem
  }

  .md\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem
  }

  .md\:px-36 {
    padding-left: 9rem;
    padding-right: 9rem
  }

  .md\:px-52 {
    padding-left: 13rem;
    padding-right: 13rem
  }

  .md\:py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem
  }

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

  .md\:py-14 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem
  }

  .md\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem
  }

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

  .md\:pt-12 {
    padding-top: 3rem
  }

  .md\:pt-14 {
    padding-top: 3.5rem
  }

  .md\:pr-8 {
    padding-right: 2rem
  }

  .md\:pr-28 {
    padding-right: 7rem
  }

  .md\:pb-3 {
    padding-bottom: 0.75rem
  }

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

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

  .md\:pb-8 {
    padding-bottom: 2rem
  }

  .md\:pb-12 {
    padding-bottom: 3rem
  }

  .md\:pb-16 {
    padding-bottom: 4rem
  }

  .md\:pb-2\.5 {
    padding-bottom: 0.625rem
  }

  .md\:pl-5 {
    padding-left: 1.25rem
  }

  .md\:pl-8 {
    padding-left: 2rem
  }

  .md\:pl-12 {
    padding-left: 3rem
  }

  .md\:pl-24 {
    padding-left: 6rem
  }

  .md\:pl-28 {
    padding-left: 7rem
  }

  .md\:text-left {
    text-align: left
  }

  .md\:text-center {
    text-align: center
  }

  .md\:text-sm {
    font-size: 0.875rem;
    line-height: 1.375rem;
    letter-spacing: -0.0175rem
  }

  .md\:text-base {
    font-size: 1rem;
    line-height: 1.625rem;
    letter-spacing: -0.01rem
  }

  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
    letter-spacing: -0.01125rem
  }

  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.875rem;
    letter-spacing: -0.0125rem
  }

  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: -0.045rem
  }

  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.625rem;
    letter-spacing: -0.0675rem
  }

  .md\:text-5xl {
    font-size: 3rem;
    line-height: 3.375rem;
    letter-spacing: -0.09rem
  }

  .md\:text-6xl {
    font-size: 3.5rem;
    line-height: 4rem;
    letter-spacing: -0.105rem
  }

  .md\:text-7xl {
    font-size: 4.5rem;
    line-height: 4.875rem;
    letter-spacing: -0.135rem
  }

  .md\:text-md-body {
    font-size: 1rem;
    line-height: 1.75rem;
    letter-spacing: -0.01rem
  }

  .md\:text-xl-body {
    font-size: 1.625rem;
    line-height: 2.5rem;
    letter-spacing: -0.033rem
  }

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

  .md\:text-md-tag {
    font-size: 1rem;
    line-height: 1.375rem;
    letter-spacing: 0.04rem
  }

  .md\:text-sm-heading {
    font-size: 2.25rem;
    line-height: 2.375rem;
    letter-spacing: -0.045rem
  }

  .md\:text-md-heading {
    font-size: 3rem;
    line-height: 3.125rem;
    letter-spacing: -0.06rem
  }

  .md\:text-xl-heading {
    font-size: 4.5rem;
    line-height: 4.5rem;
    letter-spacing: -0.09rem
  }

  .md\:leading-7 {
    line-height: 1.75rem
  }

  .md\:opacity-30 {
    opacity: 0.3
  }

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

@media (min-width: 1000px) {

  .lg\:absolute {
    position: absolute
  }

  .lg\:top-2\.5 {
    top: 0.625rem
  }

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

  .lg\:right-0 {
    right: 0px
  }

  .lg\:right-2\.5 {
    right: 0.625rem
  }

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

  .lg\:order-first {
    order: -9999
  }

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

  .lg\:col-span-3 {
    grid-column: span 3 / span 3
  }

  .lg\:col-span-5 {
    grid-column: span 5 / span 5
  }

  .lg\:col-span-7 {
    grid-column: span 7 / span 7
  }

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

  .lg\:m-0 {
    margin: 0px
  }

  .lg\:m-2 {
    margin: 0.5rem
  }

  .lg\:mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem
  }

  .lg\:my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem
  }

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

  .lg\:mt-7 {
    margin-top: 1.75rem
  }

  .lg\:mt-11 {
    margin-top: 2.75rem
  }

  .lg\:mr-8 {
    margin-right: 2rem
  }

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

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

  .lg\:mb-7 {
    margin-bottom: 1.75rem
  }

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

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

  .lg\:mb-96 {
    margin-bottom: 24rem
  }

  .lg\:-ml-20 {
    margin-left: -5rem
  }

  .lg\:block {
    display: block
  }

  .lg\:inline {
    display: inline
  }

  .lg\:flex {
    display: flex
  }

  .lg\:hidden {
    display: none
  }

  .lg\:h-20 {
    height: 5rem
  }

  .lg\:h-24 {
    height: 6rem
  }

  .lg\:h-36 {
    height: 9rem
  }

  .lg\:h-56 {
    height: 14rem
  }

  .lg\:h-72 {
    height: 18rem
  }

  .lg\:w-24 {
    width: 6rem
  }

  .lg\:w-36 {
    width: 9rem
  }

  .lg\:w-40 {
    width: 10rem
  }

  .lg\:w-44 {
    width: 11rem
  }

  .lg\:w-72 {
    width: 18rem
  }

  .lg\:w-auto {
    width: auto
  }

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

  .lg\:w-1\/4 {
    width: 25%
  }

  .lg\:w-screen-lg {
    width: 1000px
  }

  .lg\:max-w-lg {
    max-width: 32rem
  }

  .lg\:max-w-2xl {
    max-width: 42rem
  }

  .lg\:max-w-screen-xl {
    max-width: 1210px
  }

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

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

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

  .lg\:auto-cols-fr {
    grid-auto-columns: minmax(0, 1fr)
  }

  .lg\:grid-flow-col {
    grid-auto-flow: column
  }

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

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

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

  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr))
  }

  .lg\:flex-row {
    flex-direction: row
  }

  .lg\:flex-wrap {
    flex-wrap: wrap
  }

  .lg\:items-center {
    align-items: center
  }

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

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

  .lg\:gap-6 {
    gap: 1.5rem
  }

  .lg\:gap-9 {
    gap: 2.25rem
  }

  .lg\:gap-y-6 {
    row-gap: 1.5rem
  }

  .lg\:gap-y-12 {
    row-gap: 3rem
  }

  .lg\:overflow-visible {
    overflow: visible
  }

  .lg\:rounded-none {
    border-radius: 0px
  }

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

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

  .lg\:rounded-r {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem
  }

  .lg\:rounded-l {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem
  }

  .lg\:border-l-0 {
    border-left-width: 0px
  }

  .lg\:bg-current {
    background-color: currentColor
  }

  .lg\:bg-walden-green {
    --tw-bg-opacity: 1;
    background-color: rgba(24, 48, 40, var(--tw-bg-opacity))
  }

  .lg\:p-0 {
    padding: 0px
  }

  .lg\:p-4 {
    padding: 1rem
  }

  .lg\:p-9 {
    padding: 2.25rem
  }

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

  .lg\:px-14 {
    padding-left: 3.5rem;
    padding-right: 3.5rem
  }

  .lg\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem
  }

  .lg\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem
  }

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

  .lg\:px-64 {
    padding-left: 16rem;
    padding-right: 16rem
  }

  .lg\:py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem
  }

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

  .lg\:pr-8 {
    padding-right: 2rem
  }

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

  .lg\:pb-2 {
    padding-bottom: 0.5rem
  }

  .lg\:pb-8 {
    padding-bottom: 2rem
  }

  .lg\:pb-16 {
    padding-bottom: 4rem
  }

  .lg\:pl-14 {
    padding-left: 3.5rem
  }

  .lg\:text-left {
    text-align: left
  }

  .lg\:text-center {
    text-align: center
  }

  .lg\:text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
    letter-spacing: -0.0075rem
  }

  .lg\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
    letter-spacing: -0.01125rem
  }

  .lg\:text-md-body {
    font-size: 1rem;
    line-height: 1.75rem;
    letter-spacing: -0.01rem
  }

  .lg\:text-lg-body {
    font-size: 1.25rem;
    line-height: 2.125rem
  }

  .lg\:text-2xl-body {
    font-size: 1.875rem;
    line-height: 2.625rem
  }

  .lg\:text-sm-heading {
    font-size: 2.25rem;
    line-height: 2.375rem;
    letter-spacing: -0.045rem
  }

  .lg\:text-lg-heading {
    font-size: 3.75rem;
    line-height: 3.75rem;
    letter-spacing: -0.075rem
  }

  .lg\:leading-7 {
    line-height: 1.75rem
  }
}

@media (min-width: 1210px) {

  .xl\:top-4 {
    top: 1rem
  }

  .xl\:right-10 {
    right: 2.5rem
  }

  .xl\:left-3\.5 {
    left: 0.875rem
  }

  .xl\:mx-9 {
    margin-left: 2.25rem;
    margin-right: 2.25rem
  }

  .xl\:mr-24 {
    margin-right: 6rem
  }

  .xl\:mr-40 {
    margin-right: 10rem
  }

  .xl\:block {
    display: block
  }

  .xl\:flex {
    display: flex
  }

  .xl\:hidden {
    display: none
  }

  .xl\:h-56 {
    height: 14rem
  }

  .xl\:h-64 {
    height: 16rem
  }

  .xl\:w-44 {
    width: 11rem
  }

  .xl\:w-48 {
    width: 12rem
  }

  .xl\:w-52 {
    width: 13rem
  }

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

  .xl\:w-2\/6 {
    width: 33.333333%
  }

  .xl\:w-80vw {
    width: 80vw
  }

  .xl\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

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

  .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr))
  }

  .xl\:gap-6 {
    gap: 1.5rem
  }

  .xl\:gap-7 {
    gap: 1.75rem
  }

  .xl\:px-9 {
    padding-left: 2.25rem;
    padding-right: 2.25rem
  }

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

  .xl\:pr-48 {
    padding-right: 12rem
  }

  .xl\:pl-60 {
    padding-left: 15rem
  }

  .xl\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
    letter-spacing: -0.01125rem
  }

  .xl\:text-3xs-heading {
    font-size: 1.125rem;
    line-height: 1.75rem;
    letter-spacing: -0.011rem
  }
}

@media (min-width: 1536px) {

  .\32xl\:w-5\/12 {
    width: 41.666667%
  }

  .\32xl\:w-full {
    width: 100%
  }

  .\32xl\:gap-8 {
    gap: 2rem
  }

  .\32xl\:gap-20 {
    gap: 5rem
  }

  .\32xl\:self-center {
    align-self: center
  }

  .\32xl\:px-28 {
    padding-left: 7rem;
    padding-right: 7rem
  }
}

@media print {

  .print\:block {
    display: block
  }

  .print\:hidden {
    display: none
  }
}


/*# sourceMappingURL=690-36403db0.css.map*/