/*! tailwindcss v2.2.7 | 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;
  -o-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)
*/

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'],
[type='submit'] {
  -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;
}

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: koyak-sans, sans-serif;
  /* 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
 */

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::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  color: #a1a1aa;
}

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

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: ubuntu-mono, doma-archia-mono;
}

/**
 * 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,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

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

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

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

[hidden] {
  display: none;
}

*, ::before, ::after {
  border-color: currentColor;
}

.accent {
  --tw-bg-opacity: 1;
  background-color: rgba(237, 255, 219, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

.functional {
  --tw-bg-opacity: 1;
  background-color: rgba(151, 71, 255, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.functional-inverted {
  --tw-bg-opacity: 1;
  background-color: rgba(237, 255, 219, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(151, 71, 255, var(--tw-text-opacity));
}

.professional {
  --tw-bg-opacity: 1;
  background-color: rgba(220, 237, 247, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

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

.code {
  --tw-bg-opacity: 1 !important;
  background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  --tw-text-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
}

.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-height-with-animation {
  height: 100%;
  max-height: 100%;
  min-height: 100vh;
}

@media (min-width: 1024px) {
  .section-height-with-animation {
    min-height: 95vh;
    max-height: 95vh;
    height: 95vh;
  }

  .section-height-after-animation {
    min-height: 105vh;
  }
}

.text-container {
  width: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 768px) {
  .text-container {
    width: 776px;
  }
}

.full-container {
  width: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.button {
  --tw-bg-opacity: 1;
  background-color: rgba(151, 71, 255, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  border-radius: 10px;
  transition: all 0.15s ease 0s;
}

.test {
  --tw-bg-opacity: 1;
  background-color: rgba(45, 45, 45, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(151, 71, 255, var(--tw-text-opacity));
}

.button-primary:hover{
  margin: 0;
}

.button-primary {
  --tw-bg-opacity: 1;
  background-color: rgba(151, 71, 255, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  border-radius: 10px;
  transition: all 0.15s ease 0s;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgba(151, 71, 255, var(--tw-border-opacity));
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.button-primary:hover {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.button-primary {
  font-size: 1.125rem;
  line-height: 1.50;
  font-weight: 700;
}

.button-big:hover{
  margin: 0;
}

.button-big {
  --tw-bg-opacity: 1;
  background-color: rgba(151, 71, 255, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  border-radius: 10px;
  transition: all 0.15s ease 0s;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.button-big:hover {
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.button-big {
  font-size: 2.125rem;
  line-height: 1.159;
  font-weight: 700;
}

.button-arrow {
  background-color: transparent;
  font-size: 2.5rem;
  line-height: 1.159;
  --tw-text-opacity: 1;
  color: rgba(220, 220, 220, var(--tw-text-opacity));
}

@media (min-width: 768px) {
  .button-arrow {
    font-size: 3.375rem;
    line-height: 1.114;
  }
}

.button-arrow:hover {
  -webkit-text-stroke: 2px #9747ff;
}

.button-primary-inverted:hover{
  margin: 0;
}

.button-primary-inverted {
  --tw-bg-opacity: 1;
  background-color: rgba(151, 71, 255, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  border-radius: 10px;
  transition: all 0.15s ease 0s;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgba(151, 71, 255, var(--tw-border-opacity));
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.button-primary-inverted:hover {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.button-primary-inverted {
  font-size: 1.125rem;
  line-height: 1.50;
  font-weight: 700;
  --tw-border-opacity: 1;
  border-color: rgba(237, 255, 219, var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(237, 255, 219, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(151, 71, 255, var(--tw-text-opacity));
}

.input {
  border-radius: 10px;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgba(151, 71, 255, var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1.125rem;
  line-height: 1.50;
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

.input::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(151, 71, 255, var(--tw-placeholder-opacity));
}

.input:-ms-input-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(151, 71, 255, var(--tw-placeholder-opacity));
}

.input::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(151, 71, 255, var(--tw-placeholder-opacity));
}

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

@media (min-width: 640px) {
  .input {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.input-inverted {
  border-radius: 10px;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgba(151, 71, 255, var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1.125rem;
  line-height: 1.50;
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

.input-inverted::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(151, 71, 255, var(--tw-placeholder-opacity));
}

.input-inverted:-ms-input-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(151, 71, 255, var(--tw-placeholder-opacity));
}

.input-inverted::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(151, 71, 255, var(--tw-placeholder-opacity));
}

.input-inverted:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

@media (min-width: 640px) {
  .input-inverted {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.input-inverted {
  border-radius: 10px;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgba(237, 255, 219, var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(151, 71, 255, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.input-inverted::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(237, 255, 219, var(--tw-placeholder-opacity));
}

.input-inverted:-ms-input-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(237, 255, 219, var(--tw-placeholder-opacity));
}

.input-inverted::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(237, 255, 219, var(--tw-placeholder-opacity));
}

/* Toggle switch */

.big-circle {
  position: absolute;
  right: 0px;
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  height: 500px;
  width: 250px;
}

.min-h-big-circle {
  min-height: 500px;
}

button {
  --tw-bg-opacity: 1;
  background-color: rgba(151, 71, 255, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  border-radius: 10px;
  transition: all 0.15s ease 0s;
}

input {
  border-radius: 10px;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgba(151, 71, 255, var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1.125rem;
  line-height: 1.50;
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

input::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(151, 71, 255, var(--tw-placeholder-opacity));
}

input:-ms-input-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(151, 71, 255, var(--tw-placeholder-opacity));
}

input::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(151, 71, 255, var(--tw-placeholder-opacity));
}

input:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

@media (min-width: 640px) {
  input {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

textarea {
  border-radius: 10px;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgba(151, 71, 255, var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1.125rem;
  line-height: 1.50;
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

textarea::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(151, 71, 255, var(--tw-placeholder-opacity));
}

textarea:-ms-input-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(151, 71, 255, var(--tw-placeholder-opacity));
}

textarea::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(151, 71, 255, var(--tw-placeholder-opacity));
}

textarea:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

@media (min-width: 640px) {
  textarea {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

textarea {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

h1 {
  font-size: 2.357rem;
  line-height: 1.114;
  font-weight: 700;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.375rem;
    line-height: 1.114;
  }
}

h2 {
  font-size: 1.625rem;
  line-height: 1.159;
  font-weight: 700;
}

@media (min-width: 768px) {
  h2 {
    font-size: 2.5rem;
    line-height: 1.159;
  }
}

h3 {
  font-size: 1.357rem;
  line-height: 1.245;
  font-weight: 700;
}

@media (min-width: 768px) {
  h3 {
    font-size: 2.125rem;
    line-height: 1.159;
  }
}

h4 {
  font-size: 1rem;
  line-height: 1.159;
  font-weight: 700;
}

@media (min-width: 768px) {
  h4 {
    font-size: 1.357rem;
    line-height: 1.245;
  }
}

p {
  text-align: justify;
}

@media (min-width: 768px) {
  p {
    text-align: left;
  }
}

ul {
  margin-left: 1.75rem;
  list-style-type: disc;
  font-size: 1.125rem;
  line-height: 1.50;
}

ul > li {
  padding-top: 1rem;
  padding-left: 0.75rem;
  /* list-style-image: url("https://pngset.com/images/bullet-icon-arrow-bullet-points-triangle-star-symbol-transparent-png-2617721.png"); */
}

ul > li::marker {
  font-size: 2.125rem;
  line-height: 1.159;
  font-weight: 100;
  --tw-text-opacity: 1;
  color: rgba(151, 71, 255, var(--tw-text-opacity));
}

@media (min-width: 1024px) {
  ul > li::marker {
    font-weight: 700;
  }
}

ul > li::marker {
  /* content: '▬ '; */
}

ol {
  margin-left: 0.75rem;
  list-style-type: none;
  counter-reset: steps;
}

ol > li{
  padding-top: 1rem;
  counter-increment: steps;
}

ol > li::before {
  margin-right: 0.75rem;
  display: inline-grid;
  height: 1.25rem;
  width: 1.25rem;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgba(151, 71, 255, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  content: counter(steps);
  place-items: center;
  line-height: 1.2em;
}

ul > li > ul {
  padding-left: 0px;
}

ol > li > ul {
  padding-left: 2rem;
}

li > ol {
  padding-left: 1.75rem;
}

section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

pre {
  --tw-bg-opacity: 1 !important;
  background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  --tw-text-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  overflow-x: auto;
  border-radius: 10px;
  font-family: ubuntu-mono, doma-archia-mono;
  font-size: 1rem;
  line-height: 1.46;
}

code {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.zola a {
  text-decoration: underline;
}

.zola > h1 {
  width: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 768px) {
  .zola > h1 {
    width: 776px;
  }
}

.zola > h1 {
  padding-top: 4rem;
  padding-bottom: 1rem;
}

.zola > h2 {
  width: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 768px) {
  .zola > h2 {
    width: 776px;
  }
}

.zola > h2 {
  padding-top: 3rem;
  padding-bottom: 1rem;
}

.zola > h3 {
  width: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 768px) {
  .zola > h3 {
    width: 776px;
  }
}

.zola > h3 {
  padding-top: 2.5rem;
  padding-bottom: 0.75rem;
}

.zola > h4 {
  width: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 768px) {
  .zola > h4 {
    width: 776px;
  }
}

.zola > h4 {
  font-weight: 700;
}

.zola > p {
  width: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 768px) {
  .zola > p {
    width: 776px;
  }
}

.zola > p {
  padding-top: 1rem;
}

.zola > ul {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
  padding: 1.75rem;
}

@media (min-width: 768px) {
  .zola > ul {
    width: 736px;
  }
}

.zola > ol {
  width: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 768px) {
  .zola > ol {
    width: 776px;
  }
}

.zola > ol {
  margin-left: 0.25rem;
  padding-top: 1.5rem;
}

.zola > blockquote {
  width: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 768px) {
  .zola > blockquote {
    width: 776px;
  }
}

.zola > blockquote {
  border-left-width: 4px;
  --tw-border-opacity: 1;
  border-color: rgba(151, 71, 255, var(--tw-border-opacity));
  font-size: 1.357rem;
  line-height: 1.245;
  font-weight: 700;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 1rem;
}

.zola > pre {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
  padding: 1.75rem;
}

@media (min-width: 768px) {
  .zola > pre {
    width: 736px;
  }
}

.zola > pre {
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

@media (min-width: 1124px) {
  .container {
    max-width: 1124px;
  }
}

.invisible {
  visibility: hidden !important;
}

.fixed {
  position: fixed !important;
}

.absolute {
  position: absolute !important;
}

.relative {
  position: relative !important;
}

.top-0 {
  top: 0px !important;
}

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

.top-1\/4 {
  top: 25% !important;
}

.right-0 {
  right: 0px !important;
}

.right-2 {
  right: 0.5rem !important;
}

.left-0 {
  left: 0px !important;
}

.left-1\/2 {
  left: 50% !important;
}

.z-10 {
  z-index: 10 !important;
}

.z-20 {
  z-index: 20 !important;
}

.z-40 {
  z-index: 40 !important;
}

.z-50 {
  z-index: 50 !important;
}

.m-3 {
  margin: 0.75rem !important;
}

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

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

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-6 {
  margin-top: 1.5rem !important;
}

.mt-10 {
  margin-top: 2.5rem !important;
}

.mt-12 {
  margin-top: 3rem !important;
}

.mt-28 {
  margin-top: 7rem !important;
}

.mt-32 {
  margin-top: 8rem !important;
}

.-mt-32 {
  margin-top: -8rem !important;
}

.mr-4 {
  margin-right: 1rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.mb-5 {
  margin-bottom: 1.25rem !important;
}

.mb-7 {
  margin-bottom: 1.75rem !important;
}

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

.mb-10 {
  margin-bottom: 2.5rem !important;
}

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

.mb-32 {
  margin-bottom: 8rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ml-4 {
  margin-left: 1rem !important;
}

.ml-5 {
  margin-left: 1.25rem !important;
}

.-ml-32 {
  margin-left: -8rem !important;
}

.box-border {
  box-sizing: border-box !important;
}

.block {
  display: block !important;
}

.flex {
  display: flex !important;
}

.table {
  display: table !important;
}

.grid {
  display: grid !important;
}

.contents {
  display: contents !important;
}

.hidden {
  display: none !important;
}

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

.h-10 {
  height: 2.5rem !important;
}

.h-14 {
  height: 3.5rem !important;
}

.h-20 {
  height: 5rem !important;
}

.h-28 {
  height: 7rem !important;
}

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

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

.h-96 {
  height: 24rem !important;
}

.h-m-calendly-height {
  height: 1200px !important;
}

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

.h-screen {
  height: 100vh !important;
}

.max-h-toc-height {
  max-height: 600px !important;
}

.min-h-0 {
  min-height: 0px !important;
}

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

.min-h-screen {
  min-height: 100vh !important;
}

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

.w-10 {
  width: 2.5rem !important;
}

.w-14 {
  width: 3.5rem !important;
}

.w-16 {
  width: 4rem !important;
}

.w-20 {
  width: 5rem !important;
}

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

.w-52 {
  width: 13rem !important;
}

.w-56 {
  width: 14rem !important;
}

.w-60 {
  width: 15rem !important;
}

.w-80 {
  width: 20rem !important;
}

.w-auto {
  width: auto !important;
}

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

.max-w-md {
  max-width: 28rem !important;
}

.max-w-xl {
  max-width: 36rem !important;
}

.flex-1 {
  flex: 1 1 0% !important;
}

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

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

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

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

@-webkit-keyframes pulse {
  50% {
    opacity: .5;
  }
}

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

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

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

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

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

.list-none {
  list-style-type: none !important;
}

.list-disc {
  list-style-type: disc !important;
}

.appearance-none {
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
}

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

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

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

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

.flex-col {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.items-center {
  align-items: center !important;
}

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

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

.gap-1 {
  gap: 0.25rem !important;
}

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

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

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

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

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

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

.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)) !important;
}

.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(1rem * var(--tw-space-y-reverse)) !important;
}

.space-y-5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)) !important;
}

.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)) !important;
}

.space-y-7 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)) !important;
}

.space-y-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(2rem * var(--tw-space-y-reverse)) !important;
}

.space-y-10 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)) !important;
}

.space-y-12 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(3rem * var(--tw-space-y-reverse)) !important;
}

.space-y-32 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(8rem * var(--tw-space-y-reverse)) !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-y-auto {
  overflow-y: auto !important;
}

.rounded {
  border-radius: 10px !important;
}

.rounded-lg {
  border-radius: 0.5rem !important;
}

.rounded-full {
  border-radius: 9999px !important;
}

.rounded-t {
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border {
  border-width: 1px !important;
}

.border-l-4 {
  border-left-width: 4px !important;
}

.border-functional-background {
  --tw-border-opacity: 1 !important;
  border-color: rgba(151, 71, 255, var(--tw-border-opacity)) !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.bg-purple {
  --tw-bg-opacity: 1 !important;
  background-color: rgba(151, 71, 255, var(--tw-bg-opacity)) !important;
}

.bg-gray-light {
  --tw-bg-opacity: 1 !important;
  background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
}

.bg-accent-background {
  --tw-bg-opacity: 1 !important;
  background-color: rgba(237, 255, 219, var(--tw-bg-opacity)) !important;
}

.bg-functional-background {
  --tw-bg-opacity: 1 !important;
  background-color: rgba(151, 71, 255, var(--tw-bg-opacity)) !important;
}

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

.object-cover {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

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

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-4 {
  padding: 1rem !important;
}

.p-6 {
  padding: 1.5rem !important;
}

.p-2\.5 {
  padding: 0.625rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

.pt-8 {
  padding-top: 2rem !important;
}

.pt-10 {
  padding-top: 2.5rem !important;
}

.pt-11 {
  padding-top: 2.75rem !important;
}

.pt-12 {
  padding-top: 3rem !important;
}

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

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

.pt-36 {
  padding-top: 9rem !important;
}

.pb-3 {
  padding-bottom: 0.75rem !important;
}

.pb-4 {
  padding-bottom: 1rem !important;
}

.pb-5 {
  padding-bottom: 1.25rem !important;
}

.pb-6 {
  padding-bottom: 1.5rem !important;
}

.pb-8 {
  padding-bottom: 2rem !important;
}

.pb-12 {
  padding-bottom: 3rem !important;
}

.pb-14 {
  padding-bottom: 3.5rem !important;
}

.pb-20 {
  padding-bottom: 5rem !important;
}

.pb-32 {
  padding-bottom: 8rem !important;
}

.pl-5 {
  padding-left: 1.25rem !important;
}

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

.text-center {
  text-align: center !important;
}

.text-justify {
  text-align: justify !important;
}

.font-sans {
  font-family: koyak-sans, sans-serif !important;
}

.text-sm {
  font-size: 1rem !important;
  line-height: 1.46 !important;
}

.text-base {
  font-size: 1.125rem !important;
  line-height: 1.50 !important;
}

.text-lg {
  font-size: 1.357rem !important;
  line-height: 1.245 !important;
}

.text-xl {
  font-size: 2.125rem !important;
  line-height: 1.159 !important;
}

.text-3xl {
  font-size: 3.375rem !important;
  line-height: 1.114 !important;
}

.text-base-auto {
  font-size: 1.125rem !important;
  line-height: auto !important;
}

.text-m_xl {
  font-size: 1.625rem !important;
  line-height: 1.159 !important;
}

.font-bold {
  font-weight: 700 !important;
}

.uppercase {
  text-transform: uppercase !important;
}

.leading-tight {
  line-height: 1.25 !important;
}

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

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

.text-functional-foreground {
  --tw-text-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
}

.text-content-foreground {
  --tw-text-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
}

.opacity-20 {
  opacity: 0.2 !important;
}

*, ::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) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

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

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

*, ::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;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center
}

@media (min-width: 640px) {
  .sm\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

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

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

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

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

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

  .sm\:h-135 {
    height: 33.75rem !important;
  }

  .sm\:h-auto {
    height: auto !important;
  }

  .sm\:w-20 {
    width: 5rem !important;
  }

  .sm\:w-24 {
    width: 6rem !important;
  }

  .sm\:w-28 {
    width: 7rem !important;
  }

  .sm\:w-32 {
    width: 8rem !important;
  }

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

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

  .sm\:w-96 {
    width: 24rem !important;
  }

  .sm\:items-center {
    align-items: center !important;
  }

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

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

  .sm\:space-x-5 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .sm\:space-y-32 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(8rem * var(--tw-space-y-reverse)) !important;
  }

  .sm\:py-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .sm\:py-36 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }

  .sm\:py-52 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }

  .sm\:py-60 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

  .sm\:pt-48 {
    padding-top: 12rem !important;
  }

  .sm\:pb-9 {
    padding-bottom: 2.25rem !important;
  }

  .sm\:pb-60 {
    padding-bottom: 15rem !important;
  }

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

  .sm\:text-2xl {
    font-size: 2.5rem !important;
    line-height: 1.159 !important;
  }
}

@media (min-width: 768px) {
  .md\:container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  @media (min-width: 1124px) {
    .md\:container {
      max-width: 1124px;
    }
  }

  .md\:visible {
    visibility: visible !important;
  }

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

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

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

  .md\:-left-6 {
    left: -1.5rem !important;
  }

  .md\:row-span-2 {
    grid-row: span 2 / span 2 !important;
  }

  .md\:mx-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

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

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

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

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

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

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

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

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

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

  .md\:h-48 {
    height: 12rem !important;
  }

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

  .md\:min-h-screen {
    min-height: 100vh !important;
  }

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

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

  .md\:w-36 {
    width: 9rem !important;
  }

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

  .md\:w-auto {
    width: auto !important;
  }

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

  .md\:w-min {
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .md\:w-max {
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }

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

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

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

  .md\:items-center {
    align-items: center !important;
  }

  .md\:space-x-0 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .md\:space-x-5 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .md\:space-x-8 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .md\:space-x-11 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .md\:space-x-16 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(4rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .md\:space-x-40 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(10rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .md\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important;
  }

  .md\:space-y-8 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(2rem * var(--tw-space-y-reverse)) !important;
  }

  .md\:space-y-32 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(8rem * var(--tw-space-y-reverse)) !important;
  }

  .md\:rounded-none {
    border-radius: 0 !important;
  }

  .md\:rounded-t-none {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .md\:rounded-l {
    border-top-left-radius: 10px !important;
    border-bottom-left-radius: 10px !important;
  }

  .md\:bg-transparent {
    background-color: transparent !important;
  }

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

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

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

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

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

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

  .md\:text-base {
    font-size: 1.125rem !important;
    line-height: 1.50 !important;
  }

  .md\:shadow-none {
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }
}

@media (min-width: 1024px) {
  .lg\:mx-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

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

  .lg\:ml-6 {
    margin-left: 1.5rem !important;
  }

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

  .lg\:w-16 {
    width: 4rem !important;
  }

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

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

  .lg\:w-32 {
    width: 8rem !important;
  }

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

  .lg\:w-52 {
    width: 13rem !important;
  }

  .lg\:w-56 {
    width: 14rem !important;
  }

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

  .lg\:max-w-sm {
    max-width: 24rem !important;
  }

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

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

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

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

  .lg\:items-start {
    align-items: flex-start !important;
  }

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

  .lg\:space-x-0 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

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

  .lg\:space-x-40 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(10rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .lg\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important;
  }

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

  .lg\:pb-40 {
    padding-bottom: 10rem !important;
  }

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

  .lg\:text-m_xl {
    font-size: 1.625rem !important;
    line-height: 1.159 !important;
  }
}

@media (min-width: 1280px) {
  .xl\:h-52 {
    height: 13rem !important;
  }

  .xl\:h-calendly-height {
    height: 700px !important;
  }

  .xl\:w-28 {
    width: 7rem !important;
  }

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

  .xl\:w-72 {
    width: 18rem !important;
  }

  .xl\:max-w-sm {
    max-width: 24rem !important;
  }

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

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

@media (min-width: 1337px) {
  .toc\:fixed {
    position: fixed !important;
  }

  .toc\:ml-text-container {
    margin-left: 776px !important;
  }

  .toc\:inline {
    display: inline !important;
  }

  .toc\:w-sidenotes {
    width: 258px !important;
  }
}
