/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

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

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

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

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

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

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

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

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

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, 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;
}

/* 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="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

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

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

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

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 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, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

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

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-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.
 */

[type="search"]::-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 Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* Header DND sections */

.header .dnd-section {
  padding: 0;
}

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 112px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}



  .hs-search-field__form {
    position: relative;
  }

  .header__search .hs-search-field__label {
    flex-basis: auto;
  }



.header__search .hs-search-field__input {
  
  height: 45px;
  padding: 0 0.7rem;
}



  .header__search .hs-search-field__button {
    padding: 0;
    fill: #000;
    background-color: transparent;
    border: none;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .header__search .hs-search-field__button svg {
    height: 25px;
  }


.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

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

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}



/* Front Brand Styles */



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

:after,
:before {
    --tw-content: ""
}

:host,
html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    font-family: Suisse Intl, Helvetica Neue LT Std, -apple-system, BlinkMacSystemFont, Helvetica Neue, Helvetica, sans-serif;
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent
}

body {
    margin: 0;
    line-height: inherit
}

hr {
    height: 0;
    color: inherit;
    border-top-width: 1px
}

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

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

a {
    text-decoration: inherit
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
pre,
samp {
    font-family: Suisse Intl Mono, monospace;
    font-feature-settings: normal;
    font-variation-settings: normal;
    font-size: 1em
}

small {
    font-size: 80%
}

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

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

table {
    text-indent: 0;
    border-color: inherit
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
    padding: 0
}

button,
select {
    text-transform: none
}

button,
input:where([type=button]),
input:where([type=reset]),
input:where([type=submit]) {
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none
}

:-moz-focusring {
    outline: auto
}

:-moz-ui-invalid {
    box-shadow: none
}

progress {
    vertical-align: baseline
}

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

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

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

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

summary {
    display: list-item
}

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

fieldset {
    margin: 0
}

fieldset,
legend {
    padding: 0
}

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

dialog {
    padding: 0
}

textarea {
    resize: vertical
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    opacity: 1;
    color: #9ca3af
}

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

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

:disabled {
    cursor: default
}

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

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

[hidden] {
    display: none
}

*,
:after,
:before {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgba(59, 130, 246, .5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style:
}

::backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgba(59, 130, 246, .5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style:
}

.container {
    width: 100%
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.link-opacity.\!active {
    opacity: 1 !important
}

.link-opacity.active,
.link-opacity:hover {
    opacity: 1
}

.link-opacity-hover.\!active {
    opacity: .5 !important
}

.link-opacity-hover.active,
.link-opacity-hover:hover {
    opacity: .5
}

.link-underline {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    text-decoration-color: currentColor;
    transition: text-decoration-color .3s cubic-bezier(.455, .03, .515, .955)
}

.link-underline.active,
.link-underline:hover {
    text-decoration-color: transparent
}

.link-underline.\!active {
    text-decoration-color: transparent !important
}

.link-underline-hover.\!active {
    text-decoration-color: currentColor !important
}

.link-underline-hover.active,
.link-underline-hover:hover {
    text-decoration-color: currentColor
}

.link-arrow {
    position: relative
}

.link-arrow .link-arrow__icon {
    transition: opacity .2s cubic-bezier(.455, .03, .515, .955), transform .4s cubic-bezier(.16, 1, .3, 1);
    opacity: 0;
    transform: translateX(5px)
}

.link-arrow.active .link-arrow__icon,
.link-arrow:focus .link-arrow__icon,
.link-arrow:hover .link-arrow__icon {
    opacity: 1;
    transform: translateX(0)
}

.link-arrow.\!active .link-arrow__icon {
    opacity: 1 !important;
    transform: translateX(0) !important
}

.link-arrow-external .link-arrow__icon {
    transition: transform .4s cubic-bezier(.16, 1, .3, 1)
}

.link-arrow-external.\!active .link-arrow__icon {
    transform: translate(5px, -5px) !important
}

.link-arrow-external.active .link-arrow__icon,
.link-arrow-external:focus .link-arrow__icon,
.link-arrow-external:hover .link-arrow__icon {
    transform: translate(5px, -5px)
}

.link-cover:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.button.button-size-small-medium {
    padding-left: 16px;
    padding-right: 16px;
    font-weight: 500;
    height: 33px;
    font-size: 12px;
    line-height: 33px;
    border-radius: 33px
}

.button.button-size-medium {
    height: 40px;
    line-height: 40px;
    border-radius: 40px
}

.button.button-size-medium,
.button.button-size-medium-ai {
    padding-left: 16px;
    padding-right: 16px;
    font-weight: 500;
    font-size: 16px
}

.button.button-size-medium-ai {
    height: 44px;
    line-height: 44px;
    border-radius: 44px
}

.button.button-size-medium-large-padding {
    padding-left: 64px;
    padding-right: 64px;
    font-weight: 500;
    height: 40px;
    font-size: 16px;
    line-height: 40px;
    border-radius: 40px
}

.button.button-size-large {
    height: 56px;
    font-size: 22px;
    line-height: 56px;
    border-radius: 56px
}

.button.button-size-large,
.button.button-size-xxl {
    padding-left: 24px;
    padding-right: 24px;
    font-weight: 500
}

.button.button-size-xxl {
    height: 68px;
    font-size: 23px;
    line-height: 68px;
    border-radius: 68px
}

.button.button-size-circle-medium {
    width: 44px;
    height: 44px;
    line-height: 44px;
    border-radius: 44px
}

.button.button-primary-citron {
    --tw-bg-opacity: 1;
    background-color: rgb(222 233 72/var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(0 27 56/var(--tw-text-opacity));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1)
}

.button.button-primary-citron:active,
.button.button-primary-citron:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(211 209 64/var(--tw-bg-opacity))
}

.button.button-primary-citron.focus-visible,
.button.button-primary-citron:focus-visible {
    outline: 1px solid #5b1f76;
    outline-offset: 2px
}

.button.button-primary-violet {
    --tw-bg-opacity: 1;
    background-color: rgb(91 31 118/var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1)
}

.button.button-primary-violet:active,
.button.button-primary-violet:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(48 12 65/var(--tw-bg-opacity))
}

.button.button-primary-violet.focus-visible,
.button.button-primary-violet:focus-visible {
    outline: 1px solid #5b1f76;
    outline-offset: 2px
}

.button.button-primary-violet-lighter {
    --tw-bg-opacity: 1;
    background-color: rgb(128 52 191/var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1)
}

.button.button-primary-violet-lighter:active,
.button.button-primary-violet-lighter:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(91 31 118/var(--tw-bg-opacity))
}

.button.button-primary-violet-lighter.focus-visible,
.button.button-primary-violet-lighter:focus-visible {
    outline: 1px solid #5b1f76;
    outline-offset: 2px
}

.button.button-primary-violet-xxl {
    --tw-bg-opacity: 1;
    background-color: rgb(128 52 191/var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity));
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1);
    outline: 7px solid #fff;
    box-shadow: -7.334px 84.341px 23.836px 0 transparent, -4.584px 54.088px 22.002px 0 rgba(0, 0, 0, .02), -2.75px 30.253px 18.335px 0 rgba(0, 0, 0, .05), -.917px 13.751px 13.751px 0 rgba(0, 0, 0, .09), 0 3.667px 7.334px 0 rgba(0, 0, 0, .1)
}

.button.button-primary-violet-xxl.\!active,
.button.button-primary-violet-xxl.active,
.button.button-primary-violet-xxl:focus,
.button.button-primary-violet-xxl:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(168 87 241/var(--tw-bg-opacity))
}

.button.button-primary-violet-xxl.active,
.button.button-primary-violet-xxl:focus,
.button.button-primary-violet-xxl:hover {
    outline: 7px solid #fff
}

.button.button-primary-violet-xxl.\!active {
    outline: 7px solid #fff !important
}

.button.button-primary-violet-xxl:active {
    --tw-bg-opacity: 1;
    background-color: rgb(91 31 118/var(--tw-bg-opacity));
    transform: scale(.9) translateY(10%);
    outline: 7px solid #fff
}

.button.button-primary-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255/var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(48 12 65/var(--tw-text-opacity));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1)
}

.button.button-primary-white:active,
.button.button-primary-white:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(226 220 246/var(--tw-bg-opacity))
}

.button.button-primary-white.focus-visible,
.button.button-primary-white:focus-visible {
    outline: 1px solid #fff;
    outline-offset: 2px
}

.button.button-primary-blue-light {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255/var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(13 29 57/var(--tw-text-opacity));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1)
}

.button.button-primary-blue-light:active,
.button.button-primary-blue-light:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(212 223 252/var(--tw-bg-opacity))
}

.button.button-primary-blue-light.focus-visible,
.button.button-primary-blue-light:focus-visible {
    outline: 1px solid #fff;
    outline-offset: 2px
}

.button.button-primary-blue-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(13 29 57/var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1)
}

.button.button-primary-blue-900:active,
.button.button-primary-blue-900:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(13 56 131/var(--tw-bg-opacity))
}

.button.button-primary-blue-900.focus-visible,
.button.button-primary-blue-900:focus-visible {
    outline: 1px solid #300c41;
    outline-offset: 2px
}

.button.button-secondary-blue-900 {
    --tw-text-opacity: 1;
    color: rgb(13 29 57/var(--tw-text-opacity));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1);
    box-shadow: inset 0 0 0 1px #300c41
}

.button.button-secondary-blue-900:hover {
    background-color: rgb(13 29 57/var(--tw-bg-opacity));
    --tw-bg-opacity: 0.1
}

.button.button-secondary-blue-900.\!active,
.button.button-secondary-blue-900.active,
.button.button-secondary-blue-900:active {
    background-color: rgb(13 56 131/var(--tw-bg-opacity));
    --tw-bg-opacity: 1;
    --tw-text-opacity: 1;
    color: rgb(240 244 254/var(--tw-text-opacity))
}

.button.button-secondary-blue-900.focus-visible,
.button.button-secondary-blue-900:focus-visible {
    outline: 1px solid #0d1d39;
    outline-offset: 2px
}

.button.button-primary-link-header {
    --tw-text-opacity: 1;
    color: rgb(91 93 99/var(--tw-text-opacity));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1)
}

.button.button-primary-link-header.\!active,
.button.button-primary-link-header.active,
.button.button-primary-link-header:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(243 243 244/var(--tw-bg-opacity))
}

.button.button-primary-link-header:active {
    --tw-bg-opacity: 1;
    background-color: rgb(222 223 226/var(--tw-bg-opacity))
}

.button.button-primary-link-header.focus-visible,
.button.button-primary-link-header:focus-visible {
    outline: 1px solid #dedfe2;
    outline-offset: 2px
}

.button.button-primary-link-header-invert {
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1)
}

.button.button-primary-link-header-invert.\!active,
.button.button-primary-link-header-invert.active,
.button.button-primary-link-header-invert:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(91 31 118/var(--tw-bg-opacity))
}

.button.button-primary-link-header-invert:active {
    --tw-bg-opacity: 1;
    background-color: rgb(128 52 191/var(--tw-bg-opacity))
}

.button.button-primary-link-header-invert.focus-visible,
.button.button-primary-link-header-invert:focus-visible {
    outline: 1px solid #8034bf;
    outline-offset: 2px
}

.button.button-secondary-gray {
    --tw-text-opacity: 1;
    color: rgb(0 0 0/var(--tw-text-opacity));
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1);
    box-shadow: inset 0 0 0 1px #caccd0
}

.button.button-secondary-gray.active,
.button.button-secondary-gray:focus,
.button.button-secondary-gray:hover {
    box-shadow: inset 0 0 0 1px #a1a5ad
}

.button.button-secondary-gray.\!active {
    box-shadow: inset 0 0 0 1px #a1a5ad !important
}

.button.button-secondary-blue {
    --tw-text-opacity: 1;
    color: rgb(13 29 57/var(--tw-text-opacity));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1);
    box-shadow: inset 0 0 0 1px #0d3883
}

.button.button-secondary-blue:hover {
    background-color: rgb(13 29 57/var(--tw-bg-opacity));
    --tw-bg-opacity: 0.1
}

.button.button-secondary-blue.\!active,
.button.button-secondary-blue.active,
.button.button-secondary-blue:active {
    background-color: rgb(13 29 57/var(--tw-bg-opacity));
    --tw-bg-opacity: 1;
    --tw-text-opacity: 1;
    color: rgb(240 244 254/var(--tw-text-opacity))
}

.button.button-secondary-blue.focus-visible,
.button.button-secondary-blue:focus-visible {
    outline: 1px solid #0d1d39;
    outline-offset: 2px
}

.button.button-secondary-violet {
    --tw-text-opacity: 1;
    color: rgb(91 31 118/var(--tw-text-opacity));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1);
    box-shadow: inset 0 0 0 1px #5b1f76
}

.button.button-secondary-violet:hover {
    background-color: rgb(91 31 118/var(--tw-bg-opacity));
    --tw-bg-opacity: 0.1
}

.button.button-secondary-violet.\!active,
.button.button-secondary-violet.active,
.button.button-secondary-violet:active {
    background-color: rgb(91 31 118/var(--tw-bg-opacity));
    --tw-bg-opacity: 1;
    --tw-text-opacity: 1;
    color: rgb(248 241 254/var(--tw-text-opacity))
}

.button.button-secondary-violet.focus-visible,
.button.button-secondary-violet:focus-visible {
    outline: 1px solid #5b1f76;
    outline-offset: 2px
}

.button.button-secondary-violet-900 {
    --tw-text-opacity: 1;
    color: rgb(91 31 118/var(--tw-text-opacity));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1);
    box-shadow: inset 0 0 0 1px #300c41
}

.button.button-secondary-violet-900:hover {
    background-color: rgb(48 12 65/var(--tw-bg-opacity));
    --tw-bg-opacity: 0.1
}

.button.button-secondary-violet-900.\!active,
.button.button-secondary-violet-900.active,
.button.button-secondary-violet-900:active {
    background-color: rgb(48 12 65/var(--tw-bg-opacity));
    --tw-bg-opacity: 1;
    --tw-text-opacity: 1;
    color: rgb(248 241 254/var(--tw-text-opacity))
}

.button.button-secondary-violet-900.focus-visible,
.button.button-secondary-violet-900:focus-visible {
    outline: 1px solid #300c41;
    outline-offset: 2px
}

.button.button-secondary-violet-300 {
    --tw-text-opacity: 1;
    color: rgb(208 198 240/var(--tw-text-opacity));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1);
    box-shadow: inset 0 0 0 1px #d0c6f0
}

.button.button-secondary-violet-300:hover {
    background-color: rgb(248 241 254/var(--tw-bg-opacity));
    --tw-bg-opacity: 0.2;
    box-shadow: inset 0 0 0 1px #f8f1fe
}

.button.button-secondary-violet-300.\!active,
.button.button-secondary-violet-300.active,
.button.button-secondary-violet-300:active {
    background-color: rgb(248 241 254/var(--tw-bg-opacity));
    --tw-bg-opacity: 1;
    --tw-text-opacity: 1;
    color: rgb(48 12 65/var(--tw-text-opacity))
}

.button.button-secondary-violet-300.focus-visible,
.button.button-secondary-violet-300:focus-visible {
    outline: 1px solid #f8f1fe;
    outline-offset: 2px
}

.button.button-secondary-violet-400 {
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1);
    box-shadow: inset 0 0 0 1px #af96f6
}

.button.button-secondary-violet-400:hover {
    background-color: rgb(226 220 246/var(--tw-bg-opacity));
    --tw-bg-opacity: 0.2;
    box-shadow: inset 0 0 0 1px #e2dcf6
}

.button.button-secondary-violet-400.\!active,
.button.button-secondary-violet-400.active,
.button.button-secondary-violet-400:active {
    background-color: rgb(226 220 246/var(--tw-bg-opacity));
    --tw-bg-opacity: 1;
    --tw-text-opacity: 1;
    color: rgb(48 12 65/var(--tw-text-opacity))
}

.button.button-secondary-violet-400.focus-visible,
.button.button-secondary-violet-400:focus-visible {
    outline: 1px solid #e2dcf6;
    outline-offset: 2px
}

.button.button-secondary-citron-300 {
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1);
    box-shadow: inset 0 0 0 1px #dee948
}

.button.button-secondary-citron-300:hover {
    background-color: rgb(238 252 151/var(--tw-bg-opacity));
    --tw-bg-opacity: 0.2;
    box-shadow: inset 0 0 0 1px #eefc97
}

.button.button-secondary-citron-300.\!active,
.button.button-secondary-citron-300.active,
.button.button-secondary-citron-300:active {
    background-color: rgb(238 252 151/var(--tw-bg-opacity));
    --tw-bg-opacity: 1;
    --tw-text-opacity: 1;
    color: rgb(29 31 4/var(--tw-text-opacity))
}

.button.button-secondary-citron-300.focus-visible,
.button.button-secondary-citron-300:focus-visible {
    outline: 1px solid #eefc97;
    outline-offset: 2px
}

.button.button-mobile-menu-trigger {
    --tw-bg-opacity: 1;
    background-color: rgb(243 243 244/var(--tw-bg-opacity));
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1)
}

.button.button-mobile-menu-trigger.\!active,
.button.button-mobile-menu-trigger.active,
.button.button-mobile-menu-trigger:focus,
.button.button-mobile-menu-trigger:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(222 223 226/var(--tw-bg-opacity))
}

.button.button-drawer-violet {
    color: rgb(124 128 136/var(--tw-text-opacity))
}

.button.button-drawer-violet:hover {
    background-color: rgb(243 243 244/var(--tw-bg-opacity));
    color: rgb(91 93 99/var(--tw-text-opacity))
}

.button.button-drawer-violet:active {
    background-color: rgb(222 223 226/var(--tw-bg-opacity))
}

.button.button-drawer-violet.focus-visible,
.button.button-drawer-violet:focus-visible {
    outline: 1px solid #dedfe2
}

.button.button-drawer-violet.\!active,
.button.button-drawer-violet.active {
    color: rgb(128 52 191/var(--tw-text-opacity))
}

.button.button-drawer-violet.\!active:hover,
.button.button-drawer-violet.active:hover {
    background-color: rgb(248 241 254/var(--tw-bg-opacity))
}

.button.button-drawer-violet.\!active:active,
.button.button-drawer-violet.active:active {
    background-color: rgb(226 220 246/var(--tw-bg-opacity))
}

.button.button-drawer-violet.active.focus-visible,
.button.button-drawer-violet.active:focus-visible {
    outline: 1px solid #e2dcf6
}

.button.button-drawer-violet.\!active.focus-visible,
.button.button-drawer-violet.\!active:focus-visible {
    outline: 1px solid #e2dcf6 !important
}

.button.button-drawer-green {
    --tw-text-opacity: 1;
    color: rgb(202 204 208/var(--tw-text-opacity));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1)
}

.button.button-drawer-green:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(243 243 244/var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(91 93 99/var(--tw-text-opacity))
}

.button.button-drawer-green:active {
    --tw-bg-opacity: 1;
    background-color: rgb(222 223 226/var(--tw-bg-opacity))
}

.button.button-drawer-green.focus-visible,
.button.button-drawer-green:focus-visible {
    outline: 1px solid #dedfe2;
    outline-offset: 2px
}

.button.button-drawer-green.\!active,
.button.button-drawer-green.active {
    --tw-text-opacity: 1;
    color: rgb(44 104 69/var(--tw-text-opacity))
}

.button.button-drawer-green.\!active:hover,
.button.button-drawer-green.active:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(230 248 240/var(--tw-bg-opacity))
}

.button.button-drawer-green.\!active:active,
.button.button-drawer-green.active:active {
    --tw-bg-opacity: 1;
    background-color: rgb(193 232 207/var(--tw-bg-opacity))
}

.button.button-drawer-green.active.focus-visible,
.button.button-drawer-green.active:focus-visible {
    outline: 1px solid #c1e8cf;
    outline-offset: 2px
}

.button.button-drawer-green.\!active.focus-visible,
.button.button-drawer-green.\!active:focus-visible {
    outline: 1px solid #c1e8cf !important;
    outline-offset: 2px !important
}

.button.button-drawer-violet {
    --tw-text-opacity: 1;
    color: rgb(208 198 240/var(--tw-text-opacity));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1)
}

.button.button-drawer-violet:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(91 31 118/var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity))
}

.button.button-drawer-violet:active {
    --tw-bg-opacity: 1;
    background-color: rgb(91 31 118/var(--tw-bg-opacity))
}

.button.button-drawer-violet.focus-visible,
.button.button-drawer-violet:focus-visible {
    outline: 1px solid #fff;
    outline-offset: 2px
}

.button.button-drawer-violet.\!active,
.button.button-drawer-violet.active {
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity))
}

.button.button-drawer-violet.\!active:active,
.button.button-drawer-violet.\!active:hover,
.button.button-drawer-violet.active:active,
.button.button-drawer-violet.active:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(91 31 118/var(--tw-bg-opacity))
}

.button.button-drawer-violet.active.focus-visible,
.button.button-drawer-violet.active:focus-visible {
    outline: 1px solid #fff;
    outline-offset: 2px
}

.button.button-drawer-violet.\!active.focus-visible,
.button.button-drawer-violet.\!active:focus-visible {
    outline: 1px solid #fff !important;
    outline-offset: 2px !important
}

.button.button-sparkle-violet {
    position: relative;
    background: #300c41;
    transition: .4s cubic-bezier(.16, 1, .3, 1);
    box-shadow: 0 0 20px rgba(168, 87, 241, .25)
}

.button.button-sparkle-violet .button-sparkle-bg,
.button.button-sparkle-violet .button-sparkle-glow,
.button.button-sparkle-violet .button-sparkle-gradient,
.button.button-sparkle-violet .button-sparkle-spark,
.button.button-sparkle-violet .button-sparkle-text {
    display: block
}

.button.button-sparkle-violet .button-sparkle-spark {
    display: block;
    position: absolute;
    inset: 2px;
    border-radius: 100px;
    background: #5b1f76;
    overflow: hidden
}

.button.button-sparkle-violet .button-sparkle-spark:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 150%;
    aspect-ratio: 1/1;
    background: conic-gradient(transparent 50%, #fff 95%, transparent 100%);
    animation: button-sparkle-ai-rotate 4s linear infinite
}

.button.button-sparkle-violet .button-sparkle-bg {
    display: block;
    position: absolute;
    inset: 3px;
    border-radius: 100px;
    background: #5b1f76
}

.button.button-sparkle-violet .button-sparkle-glow {
    display: block;
    position: absolute;
    inset: 3px;
    border-radius: 100px;
    overflow: hidden
}

.button.button-sparkle-violet .button-sparkle-glow:after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background: radial-gradient(40% 90% at center 100%, #a857f1, transparent);
    transform: translateY(10px);
    transition: .4s cubic-bezier(.16, 1, .3, 1)
}

.button.button-sparkle-violet .button-sparkle-text {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 2px rgba(0, 0, 0, .5)
}

.button.button-sparkle-violet.active,
.button.button-sparkle-violet:focus,
.button.button-sparkle-violet:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(168, 87, 241, .5)
}

.button.button-sparkle-violet.\!active {
    transform: scale(1.05) !important;
    box-shadow: 0 0 30px rgba(168, 87, 241, .5) !important
}

.button.button-sparkle-violet.active .button-sparkle-glow:after,
.button.button-sparkle-violet:focus .button-sparkle-glow:after,
.button.button-sparkle-violet:hover .button-sparkle-glow:after {
    transform: translateY(0)
}

.button.button-sparkle-violet.\!active .button-sparkle-glow:after {
    transform: translateY(0) !important
}

.rich-text a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    text-decoration-color: currentColor;
    transition: text-decoration-color .3s cubic-bezier(.455, .03, .515, .955)
}

.rich-text a.active,
.rich-text a:hover {
    text-decoration-color: transparent
}

.rich-text a.\!active {
    text-decoration-color: transparent !important
}

.rich-text b,
.rich-text strong {
    font-weight: 700
}

.rich-text em,
.rich-text i {
    font-style: italic
}

.rich-text ul li {
    position: relative;
    padding-left: 15px
}

.rich-text ul li:before {
    content: "·";
    display: inline;
    position: absolute;
    left: 0
}

.rich-text ul li ul li:before {
    content: "◦"
}

.rich-text ul li ul li ul li:before {
    content: "‣"
}

.rich-text ol {
    counter-reset: section
}

.rich-text ol li {
    position: relative;
    padding-left: 30px
}

.rich-text ol li:before {
    counter-increment: section;
    content: counter(section) ".";
    display: inline;
    position: absolute;
    left: 0
}

.rich-text ol li ol li:before {
    content: counter(section, lower-alpha) "."
}

.rich-text ol li ol li ol li:before {
    content: counter(section, lower-roman) "."
}

.keen-slider.keen-slider.overflow-visible {
    overflow: visible
}

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

.visible {
    visibility: visible
}

.collapse {
    visibility: collapse
}

.static {
    position: static
}

.fixed {
    position: fixed
}

.absolute {
    position: absolute
}

.relative {
    position: relative
}

.sticky {
    position: sticky
}

.inset-0 {
    inset: 0
}

.inset-\[-8px\] {
    inset: -8px
}

.bottom-0 {
    bottom: 0
}

.bottom-2 {
    bottom: 16px
}

.bottom-\[-1px\] {
    bottom: -1px
}

.bottom-\[-300px\] {
    bottom: -300px
}

.bottom-full {
    bottom: 100%
}

.left-0 {
    left: 0
}

.left-2 {
    left: 16px
}

.left-4 {
    left: 32px
}

.left-\[-10\%\] {
    left: -10%
}

.left-\[-100vw\] {
    left: -100vw
}

.left-\[-12px\] {
    left: -12px
}

.left-\[-17px\] {
    left: -17px
}

.left-\[-4px\] {
    left: -4px
}

.left-\[-5px\] {
    left: -5px
}

.left-\[12px\] {
    left: 12px
}

.left-\[40px\] {
    left: 40px
}

.left-\[50\%\] {
    left: 50%
}

.left-\[5vw\] {
    left: 5vw
}

.left-\[6px\] {
    left: 6px
}

.right-0 {
    right: 0
}

.right-2 {
    right: 16px
}

.right-\[-100vw\] {
    right: -100vw
}

.right-\[-18px\] {
    right: -18px
}

.top-0 {
    top: 0
}

.top-10 {
    top: 80px
}

.top-12 {
    top: 96px
}

.top-\[-15px\] {
    top: -15px
}

.top-\[-17px\] {
    top: -17px
}

.top-\[-24px\] {
    top: -24px
}

.top-\[-30px\] {
    top: -30px
}

.top-\[-35px\] {
    top: -35px
}

.top-\[-4px\] {
    top: -4px
}

.top-\[180px\] {
    top: 180px
}

.top-\[1px\] {
    top: 1px
}

.top-\[2px\] {
    top: 2px
}

.top-\[45\%\] {
    top: 45%
}

.top-\[50\%\] {
    top: 50%
}

.top-\[65\%\] {
    top: 65%
}

.top-\[6px\] {
    top: 6px
}

.top-\[80px\] {
    top: 80px
}

.top-\[8px\] {
    top: 8px
}

.top-header-height-mobile {
    top: 96px
}

.isolate {
    isolation: isolate
}

.z-0 {
    z-index: 0
}

.z-1 {
    z-index: 10
}

.z-10 {
    z-index: 100
}

.z-20 {
    z-index: 200
}

.z-9 {
    z-index: 90
}

.z-\[100\] {
    z-index: 100
}

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

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

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

.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-6 {
    grid-column: span 6/span 6
}

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

.col-start-1 {
    grid-column-start: 1
}

.col-start-2 {
    grid-column-start: 2
}

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

.col-start-7 {
    grid-column-start: 7
}

.col-start-8 {
    grid-column-start: 8
}

.col-end-12 {
    grid-column-end: 12
}

.col-end-2 {
    grid-column-end: 2
}

.row-start-2 {
    grid-row-start: 2
}

.row-start-3 {
    grid-row-start: 3
}

.m-auto {
    margin: auto
}

.-mx-2 {
    margin-left: -16px;
    margin-right: -16px
}

.-mx-3 {
    margin-left: -24px;
    margin-right: -24px
}

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

.mx-1 {
    margin-left: 8px;
    margin-right: 8px
}

.mx-2 {
    margin-left: 16px;
    margin-right: 16px
}

.mx-\[-5\%\] {
    margin-left: -5%;
    margin-right: -5%
}

.mx-\[16px\] {
    margin-left: 16px;
    margin-right: 16px
}

.mx-\[24px\] {
    margin-left: 24px;
    margin-right: 24px
}

.mx-\[32px\] {
    margin-left: 32px;
    margin-right: 32px
}

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

.my-16 {
    margin-top: 128px;
    margin-bottom: 128px
}

.my-2 {
    margin-top: 16px;
    margin-bottom: 16px
}

.my-6 {
    margin-top: 48px;
    margin-bottom: 48px
}

.my-8 {
    margin-top: 64px;
    margin-bottom: 64px
}

.my-\[120px\] {
    margin-top: 120px;
    margin-bottom: 120px
}

.my-\[12px\] {
    margin-top: 12px;
    margin-bottom: 12px
}

.my-\[24px\] {
    margin-top: 24px;
    margin-bottom: 24px
}

.\!ml-\[12px\] {
    margin-left: 12px !important
}

.-mt-header-height-mobile {
    margin-top: -96px
}

.mb-0 {
    margin-bottom: 0
}

.mb-2 {
    margin-bottom: 16px
}

.mb-3 {
    margin-bottom: 24px
}

.mb-4 {
    margin-bottom: 32px
}

.mb-8 {
    margin-bottom: 64px
}

.mb-\[10px\] {
    margin-bottom: 10px
}

.mb-\[12px\] {
    margin-bottom: 12px
}

.mb-\[150px\] {
    margin-bottom: 150px
}

.mb-\[16px\] {
    margin-bottom: 16px
}

.mb-\[17px\] {
    margin-bottom: 17px
}

.mb-\[18px\] {
    margin-bottom: 18px
}

.mb-\[20px\] {
    margin-bottom: 20px
}

.mb-\[24px\] {
    margin-bottom: 24px
}

.mb-\[25px\] {
    margin-bottom: 25px
}

.mb-\[2px\] {
    margin-bottom: 2px
}

.mb-\[30px\] {
    margin-bottom: 30px
}

.mb-\[32px\] {
    margin-bottom: 32px
}

.mb-\[34px\] {
    margin-bottom: 34px
}

.mb-\[48px\] {
    margin-bottom: 48px
}

.mb-\[4px\] {
    margin-bottom: 4px
}

.mb-\[50px\] {
    margin-bottom: 50px
}

.mb-\[54px\] {
    margin-bottom: 54px
}

.mb-\[55px\] {
    margin-bottom: 55px
}

.mb-\[60px\] {
    margin-bottom: 60px
}

.mb-\[64px\] {
    margin-bottom: 64px
}

.mb-\[6px\] {
    margin-bottom: 6px
}

.mb-\[80px\] {
    margin-bottom: 80px
}

.mb-\[8px\] {
    margin-bottom: 8px
}

.mb-\[96px\] {
    margin-bottom: 96px
}

.mb-\[9px\] {
    margin-bottom: 9px
}

.ml-0 {
    margin-left: 0
}

.ml-1 {
    margin-left: 8px
}

.ml-\[-8px\] {
    margin-left: -8px
}

.ml-\[10px\] {
    margin-left: 10px
}

.ml-\[12px\] {
    margin-left: 12px
}

.ml-\[15px\] {
    margin-left: 15px
}

.ml-\[16px\] {
    margin-left: 16px
}

.ml-\[20px\] {
    margin-left: 20px
}

.ml-\[23px\] {
    margin-left: 23px
}

.ml-\[2px\] {
    margin-left: 2px
}

.ml-\[32px\] {
    margin-left: 32px
}

.ml-\[4\%\] {
    margin-left: 4%
}

.ml-\[40px\] {
    margin-left: 40px
}

.ml-\[4px\] {
    margin-left: 4px
}

.ml-\[50px\] {
    margin-left: 50px
}

.ml-\[8px\] {
    margin-left: 8px
}

.ml-auto {
    margin-left: auto
}

.mr-0 {
    margin-right: 0
}

.mr-1 {
    margin-right: 8px
}

.mr-\[-5px\] {
    margin-right: -5px
}

.mr-\[12px\] {
    margin-right: 12px
}

.mr-\[13px\] {
    margin-right: 13px
}

.mr-\[16px\] {
    margin-right: 16px
}

.mr-\[18px\] {
    margin-right: 18px
}

.mr-\[20px\] {
    margin-right: 20px
}

.mr-\[30px\] {
    margin-right: 30px
}

.mr-\[4\%\] {
    margin-right: 4%
}

.mr-\[48px\] {
    margin-right: 48px
}

.mr-\[4px\] {
    margin-right: 4px
}

.mr-\[6px\] {
    margin-right: 6px
}

.mr-\[8px\] {
    margin-right: 8px
}

.mr-auto {
    margin-right: auto
}

.mt-0 {
    margin-top: 0
}

.mt-14 {
    margin-top: 112px
}

.mt-2 {
    margin-top: 16px
}

.mt-3 {
    margin-top: 24px
}

.mt-4 {
    margin-top: 32px
}

.mt-6 {
    margin-top: 48px
}

.mt-8 {
    margin-top: 64px
}

.mt-\[-120px\] {
    margin-top: -120px
}

.mt-\[-24px\] {
    margin-top: -24px
}

.mt-\[-30px\] {
    margin-top: -30px
}

.mt-\[-34px\] {
    margin-top: -34px
}

.mt-\[-80px\] {
    margin-top: -80px
}

.mt-\[-8px\] {
    margin-top: -8px
}

.mt-\[100px\] {
    margin-top: 100px
}

.mt-\[10px\] {
    margin-top: 10px
}

.mt-\[120px\] {
    margin-top: 120px
}

.mt-\[12px\] {
    margin-top: 12px
}

.mt-\[150px\] {
    margin-top: 150px
}

.mt-\[16px\] {
    margin-top: 16px
}

.mt-\[18px\] {
    margin-top: 18px
}

.mt-\[20px\] {
    margin-top: 20px
}

.mt-\[24px\] {
    margin-top: 24px
}

.mt-\[2px\] {
    margin-top: 2px
}

.mt-\[30px\] {
    margin-top: 30px
}

.mt-\[32px\] {
    margin-top: 32px
}

.mt-\[36px\] {
    margin-top: 36px
}

.mt-\[40px\] {
    margin-top: 40px
}

.mt-\[44px\] {
    margin-top: 44px
}

.mt-\[48px\] {
    margin-top: 48px
}

.mt-\[50px\] {
    margin-top: 50px
}

.mt-\[54px\] {
    margin-top: 54px
}

.mt-\[56px\] {
    margin-top: 56px
}

.mt-\[58px\] {
    margin-top: 58px
}

.mt-\[60px\] {
    margin-top: 60px
}

.mt-\[64px\] {
    margin-top: 64px
}

.mt-\[70px\] {
    margin-top: 70px
}

.mt-\[72px\] {
    margin-top: 72px
}

.mt-\[75px\] {
    margin-top: 75px
}

.mt-\[8px\] {
    margin-top: 8px
}

.mt-\[96px\] {
    margin-top: 96px
}

.mt-\[9px\] {
    margin-top: 9px
}

.mt-auto {
    margin-top: auto
}

.\!block {
    display: block !important
}

.block {
    display: block
}

.inline-block {
    display: inline-block
}

.inline {
    display: inline
}

.flex {
    display: flex
}

.\!table {
    display: table !important
}

.table {
    display: table
}

.table-cell {
    display: table-cell
}

.grid {
    display: grid
}

.contents {
    display: contents
}

.hidden {
    display: none
}

.aspect-\[1222\/688\] {
    aspect-ratio: 1222/688
}

.aspect-\[1253\/652\] {
    aspect-ratio: 1253/652
}

.aspect-\[396\/348\] {
    aspect-ratio: 396/348
}

.aspect-\[844\/844\] {
    aspect-ratio: 844/844
}

.aspect-square {
    aspect-ratio: 1/1
}

.aspect-video {
    aspect-ratio: 1920/1080
}

.h-12 {
    height: 96px
}

.h-3 {
    height: 24px
}

.h-30 {
    height: 240px
}

.h-4 {
    height: 32px
}

.h-5 {
    height: 40px
}

.h-6 {
    height: 48px
}

.h-\[15px\] {
    height: 15px
}

.h-\[16px\] {
    height: 16px
}

.h-\[1px\] {
    height: 1px
}

.h-\[20px\] {
    height: 20px
}

.h-\[24px\] {
    height: 24px
}

.h-\[26px\] {
    height: 26px
}

.h-\[295px\] {
    height: 295px
}

.h-\[32px\] {
    height: 32px
}

.h-\[34px\] {
    height: 34px
}

.h-\[36px\] {
    height: 36px
}

.h-\[40px\] {
    height: 40px
}

.h-\[48px\] {
    height: 48px
}

.h-\[50vw\] {
    height: 50vw
}

.h-\[56px\] {
    height: 56px
}

.h-\[65px\] {
    height: 65px
}

.h-\[6px\] {
    height: 6px
}

.h-\[70vw\] {
    height: 70vw
}

.h-\[80px\] {
    height: 80px
}

.h-\[83px\] {
    height: 83px
}

.h-\[90px\] {
    height: 90px
}

.h-\[9px\] {
    height: 9px
}

.h-auto {
    height: auto
}

.h-full {
    height: 100%
}

.max-h-10 {
    max-height: 80px
}

.max-h-4 {
    max-height: 32px
}

.max-h-6 {
    max-height: 48px
}

.max-h-\[322px\] {
    max-height: 322px
}

.max-h-\[40px\] {
    max-height: 40px
}

.min-h-\[348px\] {
    min-height: 348px
}

.min-h-\[55px\] {
    min-height: 55px
}

.min-h-\[80px\] {
    min-height: 80px
}

.min-h-\[90px\] {
    min-height: 90px
}

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

.w-25 {
    width: 200px
}

.w-27 {
    width: 216px
}

.w-3 {
    width: 24px
}

.w-30 {
    width: 240px
}

.w-37 {
    width: 296px
}

.w-5 {
    width: 40px
}

.w-55 {
    width: 440px
}

.w-6 {
    width: 48px
}

.w-75 {
    width: 600px
}

.w-9 {
    width: 72px
}

.w-\[0px\] {
    width: 0
}

.w-\[112px\] {
    width: 112px
}

.w-\[12px\] {
    width: 12px
}

.w-\[135px\] {
    width: 135px
}

.w-\[140px\] {
    width: 140px
}

.w-\[143px\] {
    width: 143px
}

.w-\[160px\] {
    width: 160px
}

.w-\[16px\] {
    width: 16px
}

.w-\[172px\] {
    width: 172px
}

.w-\[20\%\] {
    width: 20%
}

.w-\[200px\] {
    width: 200px
}

.w-\[20px\] {
    width: 20px
}

.w-\[24px\] {
    width: 24px
}

.w-\[25\%\] {
    width: 25%
}

.w-\[26px\] {
    width: 26px
}

.w-\[280px\] {
    width: 280px
}

.w-\[282px\] {
    width: 282px
}

.w-\[295px\] {
    width: 295px
}

.w-\[30\%\] {
    width: 30%
}

.w-\[300vw\] {
    width: 300vw
}

.w-\[325px\] {
    width: 325px
}

.w-\[32px\] {
    width: 32px
}

.w-\[33\%\] {
    width: 33%
}

.w-\[40px\] {
    width: 40px
}

.w-\[480px\] {
    width: 480px
}

.w-\[48px\] {
    width: 48px
}

.w-\[50\%\] {
    width: 50%
}

.w-\[56px\] {
    width: 56px
}

.w-\[60\%\] {
    width: 60%
}

.w-\[66px\] {
    width: 66px
}

.w-\[6px\] {
    width: 6px
}

.w-\[83px\] {
    width: 83px
}

.w-\[90\%\] {
    width: 90%
}

.w-\[95vw\] {
    width: 95vw
}

.w-\[9px\] {
    width: 9px
}

.w-auto {
    width: auto
}

.w-full {
    width: 100%
}

.min-w-\[200px\] {
    min-width: 200px
}

.min-w-\[240px\] {
    min-width: 240px
}

.min-w-\[256px\] {
    min-width: 256px
}

.min-w-\[90px\] {
    min-width: 90px
}

.max-w-20 {
    max-width: 160px
}

.max-w-44 {
    max-width: 352px
}

.max-w-62 {
    max-width: 496px
}

.max-w-80 {
    max-width: 640px
}

.max-w-90 {
    max-width: 720px
}

.max-w-98 {
    max-width: 784px
}

.max-w-\[100\%\] {
    max-width: 100%
}

.max-w-\[1024px\] {
    max-width: 1024px
}

.max-w-\[1036px\] {
    max-width: 1036px
}

.max-w-\[1140px\] {
    max-width: 1140px
}

.max-w-\[1253px\] {
    max-width: 1253px
}

.max-w-\[1254px\] {
    max-width: 1254px
}

.max-w-\[1320px\] {
    max-width: 1320px
}

.max-w-\[1384px\] {
    max-width: 1384px
}

.max-w-\[1385px\] {
    max-width: 1385px
}

.max-w-\[200px\] {
    max-width: 200px
}

.max-w-\[205px\] {
    max-width: 205px
}

.max-w-\[292px\] {
    max-width: 292px
}

.max-w-\[360px\] {
    max-width: 360px
}

.max-w-\[396px\] {
    max-width: 396px
}

.max-w-\[468px\] {
    max-width: 468px
}

.max-w-\[480px\] {
    max-width: 480px
}

.max-w-\[500px\] {
    max-width: 500px
}

.max-w-\[505px\] {
    max-width: 505px
}

.max-w-\[700px\] {
    max-width: 700px
}

.max-w-\[718px\] {
    max-width: 718px
}

.max-w-\[750px\] {
    max-width: 750px
}

.max-w-\[780px\] {
    max-width: 780px
}

.max-w-grid {
    max-width: 1300px
}

.flex-shrink {
    flex-shrink: 1
}

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

.flex-grow,
.grow {
    flex-grow: 1
}

.table-fixed {
    table-layout: fixed
}

.border-collapse {
    border-collapse: collapse
}

.-translate-x-1\/2,
.translate-x-\[-50\%\] {
    --tw-translate-x: -50%
}

.-translate-x-1\/2,
.translate-x-\[-50\%\],
.translate-y-\[-50\%\] {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.translate-y-\[-50\%\] {
    --tw-translate-y: -50%
}

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

.rotate-180,
.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.cursor-pointer {
    cursor: pointer
}

.select-none {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.resize {
    resize: both
}

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

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

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

.grid-cols-12 {
    grid-template-columns: repeat(12, 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-\[repeat\(4\2c minmax\(150px\2c 1fr\)\)\] {
    grid-template-columns: repeat(4, minmax(150px, 1fr))
}

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

.flex-col {
    flex-direction: column
}

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

.flex-wrap {
    flex-wrap: wrap
}

.flex-nowrap {
    flex-wrap: nowrap
}

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

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

.items-center {
    align-items: center
}

.items-baseline {
    align-items: baseline
}

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

.justify-center {
    justify-content: center
}

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

.gap-0 {
    gap: 0
}

.gap-1 {
    gap: 8px
}

.gap-2 {
    gap: 16px
}

.gap-3 {
    gap: 24px
}

.gap-4 {
    gap: 32px
}

.gap-5 {
    gap: 40px
}

.gap-6 {
    gap: 48px
}

.gap-8 {
    gap: 64px
}

.gap-\[12px\] {
    gap: 12px
}

.gap-\[15px\] {
    gap: 15px
}

.gap-\[16px\] {
    gap: 16px
}

.gap-\[3px\] {
    gap: 3px
}

.gap-gutter-mobile {
    gap: 32px
}

.gap-half {
    gap: 5px
}

.gap-x-0 {
    -moz-column-gap: 0;
    column-gap: 0
}

.gap-x-2 {
    -moz-column-gap: 16px;
    column-gap: 16px
}

.gap-x-gutter-desktop {
    -moz-column-gap: 24px;
    column-gap: 24px
}

.gap-x-gutter-mobile {
    -moz-column-gap: 32px;
    column-gap: 32px
}

.gap-y-0 {
    row-gap: 0
}

.gap-y-10 {
    row-gap: 80px
}

.gap-y-2 {
    row-gap: 16px
}

.gap-y-3 {
    row-gap: 24px
}

.gap-y-4 {
    row-gap: 32px
}

.gap-y-5 {
    row-gap: 40px
}

.gap-y-6 {
    row-gap: 48px
}

.gap-y-8 {
    row-gap: 64px
}

.gap-y-9 {
    row-gap: 72px
}

.overflow-hidden {
    overflow: hidden
}

.overflow-visible {
    overflow: visible
}

.overflow-scroll {
    overflow: scroll
}

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

.scroll-smooth {
    scroll-behavior: smooth
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis
}

.truncate,
.whitespace-nowrap {
    white-space: nowrap
}

.text-wrap {
    text-wrap: wrap
}

.text-balance {
    text-wrap: balance
}

.text-pretty {
    text-wrap: pretty
}

.rounded-10 {
    border-radius: 10px
}

.rounded-20 {
    border-radius: 20px
}

.rounded-30 {
    border-radius: 30px
}

.rounded-4 {
    border-radius: 4px
}

.rounded-40 {
    border-radius: 40px
}

.rounded-\[12px\] {
    border-radius: 12px
}

.rounded-\[16px\] {
    border-radius: 16px
}

.rounded-\[20px\] {
    border-radius: 20px
}

.rounded-\[24px\] {
    border-radius: 24px
}

.rounded-\[40\%\] {
    border-radius: 40%
}

.rounded-\[4px\] {
    border-radius: 4px
}

.rounded-\[50\%\] {
    border-radius: 50%
}

.rounded-\[8px\] {
    border-radius: 8px
}

.rounded-\[9px\] {
    border-radius: 9px
}

.rounded-full {
    border-radius: 100%
}

.rounded-b-20 {
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px
}

.rounded-b-\[12px\] {
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px
}

.rounded-b-\[16px\] {
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px
}

.rounded-t-20 {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px
}

.rounded-t-\[24px\] {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px
}

.rounded-bl-\[16px\] {
    border-bottom-left-radius: 16px
}

.rounded-br-20 {
    border-bottom-right-radius: 20px
}

.rounded-br-\[16px\] {
    border-bottom-right-radius: 16px
}

.rounded-tl-\[16px\] {
    border-top-left-radius: 16px
}

.rounded-tl-\[8px\] {
    border-top-left-radius: 8px
}

.rounded-tr-20 {
    border-top-right-radius: 20px
}

.rounded-tr-\[16px\] {
    border-top-right-radius: 16px
}

.rounded-tr-\[8px\] {
    border-top-right-radius: 8px
}

.border {
    border-width: 1px
}

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

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

.border-\[1px\] {
    border-width: 1px
}

.border-\[5px\] {
    border-width: 5px
}

.border-\[8px\] {
    border-width: 8px
}

.border-x {
    border-left-width: 1px;
    border-right-width: 1px
}

.border-b,
.border-b-\[1px\] {
    border-bottom-width: 1px
}

.border-l-\[3px\] {
    border-left-width: 3px
}

.border-r-0 {
    border-right-width: 0
}

.border-r-\[1px\] {
    border-right-width: 1px
}

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

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

.border-t-\[1px\] {
    border-top-width: 1px
}

.border-t-\[4px\] {
    border-top-width: 4px
}

.border-solid {
    border-style: solid
}

.border-dotted {
    border-style: dotted
}

.border-none {
    border-style: none
}

.border-\[\#D3B4F4\] {
    --tw-border-opacity: 1;
    border-color: rgb(211 180 244/var(--tw-border-opacity))
}

.border-\[\#b275f4\]\/50 {
    border-color: rgba(178, 117, 244, .5)
}

.border-gray-100 {
    --tw-border-opacity: 1;
    border-color: rgb(243 243 244/var(--tw-border-opacity))
}

.border-gray-200 {
    --tw-border-opacity: 1;
    border-color: rgb(222 223 226/var(--tw-border-opacity))
}

.border-gray-300 {
    --tw-border-opacity: 1;
    border-color: rgb(202 204 208/var(--tw-border-opacity))
}

.border-gray-500 {
    --tw-border-opacity: 1;
    border-color: rgb(142 146 155/var(--tw-border-opacity))
}

.border-gray-700 {
    --tw-border-opacity: 1;
    border-color: rgb(91 93 99/var(--tw-border-opacity))
}

.border-transparent {
    border-color: transparent
}

.border-violet-200 {
    --tw-border-opacity: 1;
    border-color: rgb(226 220 246/var(--tw-border-opacity))
}

.border-violet-300 {
    --tw-border-opacity: 1;
    border-color: rgb(208 198 240/var(--tw-border-opacity))
}

.border-violet-400 {
    --tw-border-opacity: 1;
    border-color: rgb(175 150 246/var(--tw-border-opacity))
}

.border-violet-500 {
    --tw-border-opacity: 1;
    border-color: rgb(179 117 244/var(--tw-border-opacity))
}

.border-violet-600 {
    --tw-border-opacity: 1;
    border-color: rgb(168 87 241/var(--tw-border-opacity))
}

.border-violet-700 {
    --tw-border-opacity: 1;
    border-color: rgb(128 52 191/var(--tw-border-opacity))
}

.border-violet-800 {
    --tw-border-opacity: 1;
    border-color: rgb(91 31 118/var(--tw-border-opacity))
}

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

.border-opacity-40 {
    --tw-border-opacity: 0.4
}

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

.bg-blue-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(240 244 254/var(--tw-bg-opacity))
}

.bg-blue-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(212 223 252/var(--tw-bg-opacity))
}

.bg-blue-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(183 204 250/var(--tw-bg-opacity))
}

.bg-blue-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(13 56 131/var(--tw-bg-opacity))
}

.bg-blue-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(13 29 57/var(--tw-bg-opacity))
}

.bg-citron-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(238 252 151/var(--tw-bg-opacity))
}

.bg-citron-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(222 233 72/var(--tw-bg-opacity))
}

.bg-current {
    background-color: currentColor
}

.bg-gray-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(243 243 244/var(--tw-bg-opacity))
}

.bg-gray-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(222 223 226/var(--tw-bg-opacity))
}

.bg-gray-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(202 204 208/var(--tw-bg-opacity))
}

.bg-gray-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(28 30 32/var(--tw-bg-opacity))
}

.bg-green-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(193 232 207/var(--tw-bg-opacity))
}

.bg-green-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(158 217 179/var(--tw-bg-opacity))
}

.bg-green-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(82 185 107/var(--tw-bg-opacity))
}

.bg-green-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(44 104 69/var(--tw-bg-opacity))
}

.bg-green-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(26 68 44/var(--tw-bg-opacity))
}

.bg-orange-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 237 213/var(--tw-bg-opacity))
}

.bg-orange-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 215 170/var(--tw-bg-opacity))
}

.bg-pink-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(246 214 237/var(--tw-bg-opacity))
}

.bg-pink-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(169 31 125/var(--tw-bg-opacity))
}

.bg-pink-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(111 18 88/var(--tw-bg-opacity))
}

.bg-pink-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(61 5 43/var(--tw-bg-opacity))
}

.bg-salmon-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 215 210/var(--tw-bg-opacity))
}

.bg-transparent {
    background-color: transparent
}

.bg-violet-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(248 241 254/var(--tw-bg-opacity))
}

.bg-violet-1000 {
    --tw-bg-opacity: 1;
    background-color: rgb(36 6 49/var(--tw-bg-opacity))
}

.bg-violet-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(226 220 246/var(--tw-bg-opacity))
}

.bg-violet-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(208 198 240/var(--tw-bg-opacity))
}

.bg-violet-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(175 150 246/var(--tw-bg-opacity))
}

.bg-violet-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(245 243 255/var(--tw-bg-opacity))
}

.bg-violet-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(168 87 241/var(--tw-bg-opacity))
}

.bg-violet-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(128 52 191/var(--tw-bg-opacity))
}

.bg-violet-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(91 31 118/var(--tw-bg-opacity))
}

.bg-violet-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(48 12 65/var(--tw-bg-opacity))
}

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

.bg-white-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(245 245 245/var(--tw-bg-opacity))
}

.bg-yellow-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(244 222 155/var(--tw-bg-opacity))
}

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

.bg-\[url\(\'https\:\/\/front\.com\/webassets\/rebrand\/ai-blur\.svg\'\)\] {
    background-image: url(https://front.com/webassets/rebrand/ai-blur.svg)
}

.bg-\[url\(\'https\:\/\/front\.com\/webassets\/rebrand\/header-blur\.svg\'\)\] {
    background-image: url(https://front.com/webassets/rebrand/header-blur.svg)
}

.bg-\[url\(\'https\:\/\/front\.com\/webassets\/rebrand\/innovation-blur\.svg\'\)\] {
    background-image: url(https://front.com/webassets/rebrand/innovation-blur.svg)
}

.bg-\[url\(https\:\/\/front\.com\/webassets\/rebrand\/arrow-right\.png\)\] {
    background-image: url(https://front.com/webassets/rebrand/arrow-right.png)
}

.bg-\[url\(https\:\/\/front\.com\/webassets\/rebrand\/black-right-arrow\.png\)\] {
    background-image: url(https://front.com/webassets/rebrand/black-right-arrow.png)
}

.bg-\[url\(https\:\/\/front\.com\/webassets\/rebrand\/black-right-arrows\.png\)\] {
    background-image: url(https://front.com/webassets/rebrand/black-right-arrows.png)
}

.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops))
}

.bg-gradient-to-l {
    background-image: linear-gradient(to left, var(--tw-gradient-stops))
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops))
}

.from-transparent {
    --tw-gradient-from: transparent var(--tw-gradient-from-position);
    --tw-gradient-to: transparent var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-white {
    --tw-gradient-from: #fff var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 0%, 100%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.via-white {
    --tw-gradient-to: hsla(0, 0%, 100%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), #fff var(--tw-gradient-via-position), var(--tw-gradient-to)
}

.to-transparent {
    --tw-gradient-to: transparent var(--tw-gradient-to-position)
}

.to-white {
    --tw-gradient-to: #fff var(--tw-gradient-to-position)
}

.bg-cover {
    background-size: cover
}

.bg-center {
    background-position: 50%
}

.bg-right-top {
    background-position: 100% 0
}

.bg-top {
    background-position: top
}

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

.stroke-blue-900 {
    stroke: #0d1d39
}

.stroke-white {
    stroke: #fff
}

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

.p-0 {
    padding: 0
}

.p-1 {
    padding: 8px
}

.p-3 {
    padding: 24px
}

.p-4 {
    padding: 32px
}

.p-\[12px\] {
    padding: 12px
}

.p-\[16px\] {
    padding: 16px
}

.p-\[24px\] {
    padding: 24px
}

.p-\[32px\] {
    padding: 32px
}

.p-\[40px\] {
    padding: 40px
}

.p-\[4px\] {
    padding: 4px
}

.p-\[8px\] {
    padding: 8px
}

.p-container-mobile {
    padding: 24px
}

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

.px-1 {
    padding-left: 8px;
    padding-right: 8px
}

.px-2 {
    padding-left: 16px;
    padding-right: 16px
}

.px-3 {
    padding-left: 24px;
    padding-right: 24px
}

.px-4 {
    padding-left: 32px;
    padding-right: 32px
}

.px-\[10px\] {
    padding-left: 10px;
    padding-right: 10px
}

.px-\[12px\] {
    padding-left: 12px;
    padding-right: 12px
}

.px-\[15\%\] {
    padding-left: 15%;
    padding-right: 15%
}

.px-\[15px\] {
    padding-left: 15px;
    padding-right: 15px
}

.px-\[16px\] {
    padding-left: 16px;
    padding-right: 16px
}

.px-\[24px\] {
    padding-left: 24px;
    padding-right: 24px
}

.px-\[30px\] {
    padding-left: 30px;
    padding-right: 30px
}

.px-\[32px\] {
    padding-left: 32px;
    padding-right: 32px
}

.px-\[4px\] {
    padding-left: 4px;
    padding-right: 4px
}

.px-\[8\%\] {
    padding-left: 8%;
    padding-right: 8%
}

.px-\[8px\] {
    padding-left: 8px;
    padding-right: 8px
}

.px-container-mobile {
    padding-left: 24px;
    padding-right: 24px
}

.px-container-mobile-modern {
    padding-left: 12px;
    padding-right: 12px
}

.px-half {
    padding-left: 5px;
    padding-right: 5px
}

.py-0 {
    padding-top: 0;
    padding-bottom: 0
}

.py-1 {
    padding-top: 8px;
    padding-bottom: 8px
}

.py-11 {
    padding-top: 88px;
    padding-bottom: 88px
}

.py-2 {
    padding-top: 16px;
    padding-bottom: 16px
}

.py-3 {
    padding-top: 24px;
    padding-bottom: 24px
}

.py-4 {
    padding-top: 32px;
    padding-bottom: 32px
}

.py-5 {
    padding-top: 40px;
    padding-bottom: 40px
}

.py-6 {
    padding-top: 48px;
    padding-bottom: 48px
}

.py-8 {
    padding-top: 64px;
    padding-bottom: 64px
}

.py-\[100px\] {
    padding-top: 100px;
    padding-bottom: 100px
}

.py-\[120px\] {
    padding-top: 120px;
    padding-bottom: 120px
}

.py-\[12px\] {
    padding-top: 12px;
    padding-bottom: 12px
}

.py-\[16px\] {
    padding-top: 16px;
    padding-bottom: 16px
}

.py-\[17px\] {
    padding-top: 17px;
    padding-bottom: 17px
}

.py-\[20px\] {
    padding-top: 20px;
    padding-bottom: 20px
}

.py-\[24px\] {
    padding-top: 24px;
    padding-bottom: 24px
}

.py-\[2px\] {
    padding-top: 2px;
    padding-bottom: 2px
}

.py-\[40px\] {
    padding-top: 40px;
    padding-bottom: 40px
}

.py-\[48px\] {
    padding-top: 48px;
    padding-bottom: 48px
}

.py-\[80px\] {
    padding-top: 80px;
    padding-bottom: 80px
}

.py-\[8px\] {
    padding-top: 8px;
    padding-bottom: 8px
}

.py-\[9px\] {
    padding-top: 9px;
    padding-bottom: 9px
}

.pb-0 {
    padding-bottom: 0
}

.pb-10 {
    padding-bottom: 80px
}

.pb-15 {
    padding-bottom: 120px
}

.pb-16 {
    padding-bottom: 128px
}

.pb-2 {
    padding-bottom: 16px
}

.pb-3 {
    padding-bottom: 24px
}

.pb-4 {
    padding-bottom: 32px
}

.pb-5 {
    padding-bottom: 40px
}

.pb-7 {
    padding-bottom: 56px
}

.pb-8 {
    padding-bottom: 64px
}

.pb-\[12px\] {
    padding-bottom: 12px
}

.pb-\[15\%\] {
    padding-bottom: 15%
}

.pb-\[16px\] {
    padding-bottom: 16px
}

.pb-\[18px\] {
    padding-bottom: 18px
}

.pb-\[200px\] {
    padding-bottom: 200px
}

.pb-\[20px\] {
    padding-bottom: 20px
}

.pb-\[22px\] {
    padding-bottom: 22px
}

.pb-\[24px\] {
    padding-bottom: 24px
}

.pb-\[3\.5px\] {
    padding-bottom: 3.5px
}

.pb-\[30px\] {
    padding-bottom: 30px
}

.pb-\[32px\] {
    padding-bottom: 32px
}

.pb-\[40px\] {
    padding-bottom: 40px
}

.pb-\[48px\] {
    padding-bottom: 48px
}

.pb-\[5\%\] {
    padding-bottom: 5%
}

.pb-\[60px\] {
    padding-bottom: 60px
}

.pb-\[80px\] {
    padding-bottom: 80px
}

.pb-\[8px\] {
    padding-bottom: 8px
}

.pb-\[96px\] {
    padding-bottom: 96px
}

.pl-\[14px\] {
    padding-left: 14px
}

.pl-\[32px\] {
    padding-left: 32px
}

.pl-\[40px\] {
    padding-left: 40px
}

.pr-0 {
    padding-right: 0
}

.pr-2 {
    padding-right: 16px
}

.pr-\[24px\] {
    padding-right: 24px
}

.pr-\[32px\] {
    padding-right: 32px
}

.ps-2 {
    padding-inline-start: 16px
}

.pt-0 {
    padding-top: 0
}

.pt-10 {
    padding-top: 80px
}

.pt-11 {
    padding-top: 88px
}

.pt-12 {
    padding-top: 96px
}

.pt-2 {
    padding-top: 16px
}

.pt-3 {
    padding-top: 24px
}

.pt-4 {
    padding-top: 32px
}

.pt-5 {
    padding-top: 40px
}

.pt-6 {
    padding-top: 48px
}

.pt-\[12px\] {
    padding-top: 12px
}

.pt-\[16px\] {
    padding-top: 16px
}

.pt-\[17px\] {
    padding-top: 17px
}

.pt-\[20px\] {
    padding-top: 20px
}

.pt-\[24px\] {
    padding-top: 24px
}

.pt-\[32px\] {
    padding-top: 32px
}

.pt-\[4\.5px\] {
    padding-top: 4.5px
}

.pt-\[48px\] {
    padding-top: 48px
}

.pt-\[64px\] {
    padding-top: 64px
}

.pt-\[72px\] {
    padding-top: 72px
}

.pt-\[76px\] {
    padding-top: 76px
}

.pt-\[80px\] {
    padding-top: 80px
}

.pt-\[8px\] {
    padding-top: 8px
}

.pt-\[96px\],
.pt-header-height-mobile {
    padding-top: 96px
}

.text-left {
    text-align: left
}

.text-center {
    text-align: center
}

.align-top {
    vertical-align: top
}

.font-mono {
    font-family: Suisse Intl Mono, monospace
}

.font-sans {
    font-family: Suisse Intl, Helvetica Neue LT Std, -apple-system, BlinkMacSystemFont, Helvetica Neue, Helvetica, sans-serif
}

.font-serif {
    font-family: Suisse Works, Times New Roman, serif
}

.text-10\/14 {
    font-size: 10px;
    line-height: 14px
}

.text-10\/15 {
    font-size: 10px;
    line-height: 15px
}

.text-10\/18 {
    font-size: 10px;
    line-height: 18px
}

.text-10\/20 {
    font-size: 10px;
    line-height: 20px
}

.text-12\/14 {
    font-size: 12px;
    line-height: 14px
}

.text-12\/16 {
    font-size: 12px;
    line-height: 16px
}

.text-13\/18 {
    font-size: 13px;
    line-height: 18px
}

.text-14,
.text-14\/14 {
    font-size: 14px
}

.text-14\/14 {
    line-height: 14px
}

.text-14\/16 {
    font-size: 14px;
    line-height: 16px
}

.text-14\/20 {
    font-size: 14px;
    line-height: 20px
}

.text-15\/19 {
    font-size: 15px;
    line-height: 19px
}

.text-15\/22 {
    font-size: 15px;
    line-height: 22px
}

.text-15\/23 {
    font-size: 15px;
    line-height: 23px
}

.text-16\/16 {
    font-size: 16px;
    line-height: 16px
}

.text-16\/20 {
    font-size: 16px;
    line-height: 20px
}

.text-16\/22 {
    font-size: 16px;
    line-height: 22px
}

.text-16\/24 {
    font-size: 16px;
    line-height: 24px
}

.text-17\/20 {
    font-size: 17px;
    line-height: 20px
}

.text-17\/24 {
    font-size: 17px;
    line-height: 24px
}

.text-17\/25 {
    font-size: 17px;
    line-height: 25px
}

.text-17\/27 {
    font-size: 17px;
    line-height: 27px
}

.text-20\/22 {
    font-size: 20px;
    line-height: 22px
}

.text-20\/24 {
    font-size: 20px;
    line-height: 24px
}

.text-20\/26 {
    font-size: 20px;
    line-height: 26px
}

.text-20\/28 {
    font-size: 20px;
    line-height: 28px
}

.text-21\/28 {
    font-size: 21px;
    line-height: 28px
}

.text-21\/29 {
    font-size: 21px;
    line-height: 29px
}

.text-21\/31 {
    font-size: 21px;
    line-height: 31px
}

.text-21\/32 {
    font-size: 21px;
    line-height: 32px
}

.text-25\/30 {
    font-size: 25px;
    line-height: 30px
}

.text-25\/33 {
    font-size: 25px;
    line-height: 33px
}

.text-28\/28 {
    font-size: 28px;
    line-height: 28px
}

.text-30\/35 {
    font-size: 30px;
    line-height: 35px
}

.text-30\/36 {
    font-size: 30px;
    line-height: 36px
}

.text-30\/38 {
    font-size: 30px;
    line-height: 38px
}

.text-30\/40 {
    font-size: 30px;
    line-height: 40px
}

.text-30\/42 {
    font-size: 30px;
    line-height: 42px
}

.text-36\/42 {
    font-size: 36px;
    line-height: 42px
}

.text-36\/44 {
    font-size: 36px;
    line-height: 44px
}

.text-42\/42 {
    font-size: 42px;
    line-height: 42px
}

.text-43\/51 {
    font-size: 43px;
    line-height: 51px
}

.text-43\/52 {
    font-size: 43px;
    line-height: 52px
}

.text-43\/53 {
    font-size: 43px;
    line-height: 53px
}

.text-66\/66 {
    font-size: 66px;
    line-height: 66px
}

.text-74\/82 {
    font-size: 74px;
    line-height: 82px
}

.text-80\/80 {
    font-size: 80px;
    line-height: 80px
}

.text-84\/84 {
    font-size: 84px;
    line-height: 84px
}

.text-89\/97 {
    font-size: 89px;
    line-height: 97px
}

.text-96\/96 {
    font-size: 96px;
    line-height: 96px
}

.text-caption1 {
    font-size: 15px;
    line-height: 21px;
    letter-spacing: 1.5%
}

.text-caption2 {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 2%
}

.text-display1 {
    font-size: 62px;
    line-height: 68px
}

.text-display1,
.text-display2 {
    letter-spacing: -2%;
    font-weight: 500
}

.text-display2 {
    font-size: 52px;
    line-height: 62px
}

.text-display3 {
    font-size: 42px;
    line-height: 52px
}

.text-display3,
.text-h1 {
    letter-spacing: -1.75%;
    font-weight: 500
}

.text-h1 {
    font-size: 36px;
    line-height: 42px
}

.text-h2 {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -1.5%;
    font-weight: 500
}

.text-h3 {
    font-size: 25px;
    line-height: 30px;
    letter-spacing: -1%;
    font-weight: 500
}

.text-h4 {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: .25%
}

.text-micro1 {
    font-size: 15px;
    line-height: 21px;
    letter-spacing: 6%
}

.text-micro2 {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 6%
}

.text-micro3 {
    font-size: 14.5px;
    line-height: 20px;
    letter-spacing: 6%
}

.text-p1 {
    font-size: 20px;
    line-height: 28px
}

.text-p1,
.text-p2 {
    letter-spacing: .25%
}

.text-p2 {
    font-size: 17px;
    line-height: 26px
}

.font-400 {
    font-weight: 400
}

.font-500 {
    font-weight: 500
}

.font-800 {
    font-weight: 800
}

.uppercase {
    text-transform: uppercase
}

.capitalize {
    text-transform: capitalize
}

.italic {
    font-style: italic
}

.tracking-tight {
    letter-spacing: -.02em
}

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

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

.text-blue-100 {
    --tw-text-opacity: 1;
    color: rgb(240 244 254/var(--tw-text-opacity))
}

.text-blue-1000 {
    --tw-text-opacity: 1;
    color: rgb(0 27 56/var(--tw-text-opacity))
}

.text-blue-200 {
    --tw-text-opacity: 1;
    color: rgb(212 223 252/var(--tw-text-opacity))
}

.text-blue-300 {
    --tw-text-opacity: 1;
    color: rgb(183 204 250/var(--tw-text-opacity))
}

.text-blue-800 {
    --tw-text-opacity: 1;
    color: rgb(13 56 131/var(--tw-text-opacity))
}

.text-blue-900 {
    --tw-text-opacity: 1;
    color: rgb(13 29 57/var(--tw-text-opacity))
}

.text-blue-950 {
    --tw-text-opacity: 1;
    color: rgb(27 27 27/var(--tw-text-opacity))
}

.text-citron-900 {
    --tw-text-opacity: 1;
    color: rgb(29 31 4/var(--tw-text-opacity))
}

.text-gray-100 {
    --tw-text-opacity: 1;
    color: rgb(243 243 244/var(--tw-text-opacity))
}

.text-gray-500 {
    --tw-text-opacity: 1;
    color: rgb(142 146 155/var(--tw-text-opacity))
}

.text-gray-600 {
    --tw-text-opacity: 1;
    color: rgb(124 128 136/var(--tw-text-opacity))
}

.text-gray-700 {
    --tw-text-opacity: 1;
    color: rgb(91 93 99/var(--tw-text-opacity))
}

.text-gray-800 {
    --tw-text-opacity: 1;
    color: rgb(58 60 64/var(--tw-text-opacity))
}

.text-gray-900 {
    --tw-text-opacity: 1;
    color: rgb(28 30 32/var(--tw-text-opacity))
}

.text-gray-950 {
    --tw-text-opacity: 1;
    color: rgb(8 7 9/var(--tw-text-opacity))
}

.text-green-200 {
    --tw-text-opacity: 1;
    color: rgb(193 232 207/var(--tw-text-opacity))
}

.text-green-300 {
    --tw-text-opacity: 1;
    color: rgb(158 217 179/var(--tw-text-opacity))
}

.text-green-800 {
    --tw-text-opacity: 1;
    color: rgb(26 68 44/var(--tw-text-opacity))
}

.text-green-900 {
    --tw-text-opacity: 1;
    color: rgb(10 34 20/var(--tw-text-opacity))
}

.text-indigo-50 {
    --tw-text-opacity: 1;
    color: rgb(238 242 255/var(--tw-text-opacity))
}

.text-pink-200 {
    --tw-text-opacity: 1;
    color: rgb(246 214 237/var(--tw-text-opacity))
}

.text-pink-300 {
    --tw-text-opacity: 1;
    color: rgb(240 188 228/var(--tw-text-opacity))
}

.text-pink-400 {
    --tw-text-opacity: 1;
    color: rgb(247 119 209/var(--tw-text-opacity))
}

.text-pink-800 {
    --tw-text-opacity: 1;
    color: rgb(111 18 88/var(--tw-text-opacity))
}

.text-pink-900 {
    --tw-text-opacity: 1;
    color: rgb(61 5 43/var(--tw-text-opacity))
}

.text-salmon-800 {
    --tw-text-opacity: 1;
    color: rgb(125 8 0/var(--tw-text-opacity))
}

.text-violet-100 {
    --tw-text-opacity: 1;
    color: rgb(248 241 254/var(--tw-text-opacity))
}

.text-violet-1000 {
    --tw-text-opacity: 1;
    color: rgb(36 6 49/var(--tw-text-opacity))
}

.text-violet-200 {
    --tw-text-opacity: 1;
    color: rgb(226 220 246/var(--tw-text-opacity))
}

.text-violet-300 {
    --tw-text-opacity: 1;
    color: rgb(208 198 240/var(--tw-text-opacity))
}

.text-violet-400 {
    --tw-text-opacity: 1;
    color: rgb(175 150 246/var(--tw-text-opacity))
}

.text-violet-600 {
    --tw-text-opacity: 1;
    color: rgb(168 87 241/var(--tw-text-opacity))
}

.text-violet-800 {
    --tw-text-opacity: 1;
    color: rgb(91 31 118/var(--tw-text-opacity))
}

.text-violet-900 {
    --tw-text-opacity: 1;
    color: rgb(48 12 65/var(--tw-text-opacity))
}

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

.text-yellow-800 {
    --tw-text-opacity: 1;
    color: rgb(104 40 0/var(--tw-text-opacity))
}

.underline {
    text-decoration-line: underline
}

.opacity-0 {
    opacity: 0
}

.opacity-10 {
    opacity: .1
}

.mix-blend-multiply {
    mix-blend-mode: multiply
}

.mix-blend-luminosity {
    mix-blend-mode: luminosity
}

.shadow-header-scrolled {
    --tw-shadow: 0px 60px 60px 0px rgba(0, 0, 0, .04), 0px 30.375px 26.156px 0px rgba(0, 0, 0, .03), 0px 12px 9.75px 0px rgba(0, 0, 0, .02), 0px 2.625px 3.469px 0px rgba(0, 0, 0, .01);
    --tw-shadow-colored: 0px 60px 60px 0px var(--tw-shadow-color), 0px 30.375px 26.156px 0px var(--tw-shadow-color), 0px 12px 9.75px 0px var(--tw-shadow-color), 0px 2.625px 3.469px 0px var(--tw-shadow-color)
}

.shadow-header-scrolled,
.shadow-plan-tile {
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-plan-tile {
    --tw-shadow: 0px 100px 80px 0px rgba(0, 0, 0, .05), 0px 64.815px 46.852px 0px rgba(0, 0, 0, .04), 0px 38.519px 25.481px 0px rgba(0, 0, 0, .03), 0px 20px 13px 0px rgba(0, 0, 0, .03), 0px 8.148px 6.519px 0px rgba(0, 0, 0, .02), 0px 1.852px 3.148px 0px rgba(0, 0, 0, .01);
    --tw-shadow-colored: 0px 100px 80px 0px var(--tw-shadow-color), 0px 64.815px 46.852px 0px var(--tw-shadow-color), 0px 38.519px 25.481px 0px var(--tw-shadow-color), 0px 20px 13px 0px var(--tw-shadow-color), 0px 8.148px 6.519px 0px var(--tw-shadow-color), 0px 1.852px 3.148px 0px var(--tw-shadow-color)
}

.outline {
    outline-style: solid
}

.outline-0 {
    outline-width: 0
}

.outline-\[8px\] {
    outline-width: 8px
}

.outline-violet-200 {
    outline-color: #e2dcf6
}

.outline-violet-300 {
    outline-color: #d0c6f0
}

.outline-violet-500 {
    outline-color: #b375f4
}

.blur {
    --tw-blur: blur(8px)
}

.blur,
.blur-\[250px\] {
    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)
}

.blur-\[250px\] {
    --tw-blur: blur(250px)
}

.grayscale {
    --tw-grayscale: grayscale(100%);
    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)
}

.\!invert {
    --tw-invert: invert(100%) !important;
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important
}

.invert {
    --tw-invert: invert(100%)
}

.filter,
.invert {
    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)
}

.backdrop-filter {
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)
}

.transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1)
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1)
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1)
}

.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1)
}

.duration-200 {
    transition-duration: .2s
}

.duration-300 {
    transition-duration: .3s
}

.duration-600 {
    transition-duration: .6s
}

.ease-appear {
    transition-timing-function: cubic-bezier(.16, 1, .3, 1)
}

.ease-in-out-cubic {
    transition-timing-function: cubic-bezier(.645, .045, .355, 1)
}

.ease-in-out-quad {
    transition-timing-function: cubic-bezier(.455, .03, .515, .955)
}

.ease-in-quad {
    transition-timing-function: cubic-bezier(.55, .085, .68, .53)
}

.scroll-touch {
    -webkit-overflow-scrolling: touch
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-weight: inherit;
    font-family: inherit;
    font-style: inherit;
    vertical-align: baseline
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

body {
    line-height: 1
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: "";
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

* {
    box-sizing: border-box
}

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

a,
a * {
    cursor: pointer
}

.button,
a,
button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.button:focus,
a:focus,
button:focus {
    outline: none
}

.button.focus-visible,
.button:focus-visible,
a.focus-visible,
a:focus-visible,
button.focus-visible,
button:focus-visible {
    outline: 1px solid currentColor;
    outline-offset: 2px
}

hr {
    margin: 0;
    padding: 0;
    border: none;
    border-bottom: 1px solid
}

html {
    -webkit-text-size-adjust: 100%
}

@font-face {
    font-family: Suisse Intl;
    src: url(/fonts/suisse-intl/suisseintl-light-webm.woff2) format("woff2"), url(/fonts/suisse-intl/suisseintl-light-webm.woff) format("woff");
    font-style: normal;
    font-weight: 300
}

@font-face {
    font-family: Suisse Intl;
    src: url(/fonts/suisse-intl/suisseintl-lightitalic-webm.woff2) format("woff2"), url(/fonts/suisse-intl/suisseintl-lightitalic-webm.woff) format("woff");
    font-style: italic;
    font-weight: 300
}

@font-face {
    font-family: Suisse Intl;
    src: url(/fonts/suisse-intl/suisseintl-regular-webm.woff2) format("woff2"), url(/fonts/suisse-intl/suisseintl-regular-webm.woff) format("woff");
    font-style: normal;
    font-weight: 400
}

@font-face {
    font-family: Suisse Intl;
    src: url(/fonts/suisse-intl/suisseintl-regularitalic-webm.woff2) format("woff2"), url(/fonts/suisse-intl/suisseintl-regularitalic-webm.woff) format("woff");
    font-style: italic;
    font-weight: 400
}

@font-face {
    font-family: Suisse Intl;
    src: url(/fonts/suisse-intl/suisseintl-medium-webm.woff2) format("woff2"), url(/fonts/suisse-intl/suisseintl-medium-webm.woff) format("woff");
    font-style: normal;
    font-weight: 500
}

@font-face {
    font-family: Suisse Intl;
    src: url(/fonts/suisse-intl/suisseintl-mediumitalic-webm.woff2) format("woff2"), url(/fonts/suisse-intl/suisseintl-mediumitalic-webm.woff) format("woff");
    font-style: italic;
    font-weight: 500
}

@font-face {
    font-family: Suisse Intl;
    src: url(/fonts/suisse-intl/suisseintl-semibold-webm.woff2) format("woff2"), url(/fonts/suisse-intl/suisseintl-semibold-webm.woff) format("woff");
    font-style: normal;
    font-weight: 700
}

@font-face {
    font-family: Suisse Intl;
    src: url(/fonts/suisse-intl/suisseintl-semibolditalic-webm.woff2) format("woff2"), url(/fonts/suisse-intl/suisseintl-semibolditalic-webm.woff) format("woff");
    font-style: italic;
    font-weight: 700
}

@font-face {
    font-family: Suisse Intl;
    src: url(/fonts/suisse-intl/suisseintl-bold-webm.woff2) format("woff2"), url(/fonts/suisse-intl/suisseintl-bold-webm.woff) format("woff");
    font-style: normal;
    font-weight: 800
}

@font-face {
    font-family: Suisse Intl;
    src: url(/fonts/suisse-intl/suisseintl-bolditalic-webm.woff2) format("woff2"), url(/fonts/suisse-intl/suisseintl-bolditalic-webm.woff) format("woff");
    font-style: italic;
    font-weight: 800
}

@font-face {
    font-family: Suisse Intl Mono;
    src: url(/fonts/suisse-intl/suisseintlmono-thin-webs.woff2) format("woff2"), url(/fonts/suisse-intl/suisseintlmono-thin-webs.woff) format("woff");
    font-style: normal;
    font-weight: 300
}

@font-face {
    font-family: Suisse Intl Mono;
    src: url(/fonts/suisse-intl/suisseintlmono-regular-webs.woff2) format("woff2"), url(/fonts/suisse-intl/suisseintlmono-regular-webs.woff) format("woff");
    font-style: normal;
    font-weight: 400
}

@font-face {
    font-family: Suisse Intl Mono;
    src: url(/fonts/suisse-intl/suisseintlmono-bold-webs.woff2) format("woff2"), url(/fonts/suisse-intl/suisseintlmono-bold-webs.woff) format("woff");
    font-style: normal;
    font-weight: 800
}

@font-face {
    font-family: Suisse Works;
    src: url(/fonts/suisse-intl/suisseworks-regular-webs.woff2) format("woff2"), url(/fonts/suisse-intl/suisseworks-regular-webs.woff) format("woff");
    font-style: normal;
    font-weight: 400
}

@font-face {
    font-family: Suisse Works;
    src: url(/fonts/suisse-intl/suisseworks-regularitalic-webs.woff2) format("woff2"), url(/fonts/suisse-intl/suisseworks-regularitalic-webs.woff) format("woff");
    font-style: italic;
    font-weight: 400
}

@font-face {
    font-family: Suisse Works;
    src: url(/fonts/suisse-intl/suisseworks-medium-webs.woff2) format("woff2"), url(/fonts/suisse-intl/suisseworks-medium-webs.woff) format("woff");
    font-style: normal;
    font-weight: 500
}

@font-face {
    font-family: Suisse Works;
    src: url(/fonts/suisse-intl/suisseworks-mediumitalic-webs.woff2) format("woff2"), url(/fonts/suisse-intl/suisseworks-mediumitalic-webs.woff) format("woff");
    font-style: italic;
    font-weight: 500
}

@font-face {
    font-family: Suisse Works;
    src: url(/fonts/suisse-intl/suisseworks-bold-webs.woff2) format("woff2"), url(/fonts/suisse-intl/suisseworks-bold-webs.woff) format("woff");
    font-style: normal;
    font-weight: 800
}

@font-face {
    font-family: Suisse Works;
    src: url(/fonts/suisse-intl/suisseworks-bolditalic-webs.woff2) format("woff2"), url(/fonts/suisse-intl/suisseworks-bolditalic-webs.woff) format("woff");
    font-style: italic;
    font-weight: 800
}

body,
html {
    font-family: Suisse Intl, Helvetica Neue LT Std, -apple-system, BlinkMacSystemFont, Helvetica Neue, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    --tw-text-opacity: 1;
    color: rgb(28 30 32/var(--tw-text-opacity));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

::-moz-selection {
    background-color: #eefc97;
    color: #0d1d39
}

::selection {
    background-color: #eefc97;
    color: #0d1d39
}

.no-focus:focus {
    outline: none
}

.line-break ol,
.line-break p,
.line-break ul {
    margin-bottom: 8px
}

.line-break ol ol,
.line-break ol ul,
.line-break ol:last-child,
.line-break p ol,
.line-break p ul,
.line-break p:last-child,
.line-break ul ol,
.line-break ul ul,
.line-break ul:last-child {
    margin-bottom: 0
}

.hr,
hr {
    border: none;
    border-bottom: 1px solid
}

.button,
button {
    font-family: Suisse Intl, Helvetica Neue LT Std, -apple-system, BlinkMacSystemFont, Helvetica Neue, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-weight: 400;
    display: inline-block;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    text-align: center;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: inherit
}

.button.disabled,
.button:disabled,
button.disabled,
button:disabled {
    cursor: not-allowed;
    opacity: .5
}

.button.disabled.loading,
.button.disabled.loading *,
.button.loading,
.button.loading *,
.button:disabled.loading,
.button:disabled.loading *,
button.disabled.loading,
button.disabled.loading *,
button.loading,
button.loading *,
button:disabled.loading,
button:disabled.loading * {
    cursor: wait !important
}

.button.mx-a,
button.mx-a {
    margin-left: auto;
    margin-right: auto
}

.button.block,
button.block {
    display: block
}

.button.flex,
button.flex {
    display: flex
}

.button.text-left,
button.text-left {
    text-align: left
}

@keyframes button-sparkle-ai-rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0)
    }

    to {
        transform: translate(-50%, -50%) rotate(1turn)
    }
}

input,
textarea {
    font-family: Suisse Intl, Helvetica Neue LT Std, -apple-system, BlinkMacSystemFont, Helvetica Neue, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #000;
    display: inline-block;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 0;
    background: none;
    text-align: left;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: inherit;
    max-width: 100%
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: currentColor;
    opacity: .3
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: currentColor;
    opacity: .3
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: currentColor;
    opacity: .3
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: currentColor;
    opacity: .3
}

input:placeholder,
textarea:placeholder {
    color: currentColor;
    opacity: .3
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
textarea:-webkit-autofill,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:hover {
    -webkit-transition: color 9999s ease-out 9999s, background-color 9999s ease-out 9999s;
    transition: color 9999s ease-out 9999s, background-color 9999s ease-out 9999s
}

input:-moz-autofill,
input:-moz-autofill-preview,
textarea:-moz-autofill,
textarea:-moz-autofill-preview {
    filter: none
}

input:focus,
textarea:focus {
    outline: none
}

input.disabled,
input:disabled,
textarea.disabled,
textarea:disabled {
    cursor: not-allowed;
    opacity: .6
}

input.disabled.cursor--loading,
input:disabled.cursor--loading,
textarea.disabled.cursor--loading,
textarea:disabled.cursor--loading {
    cursor: wait
}

input.cursor-loading,
input.cursor-loading *,
input.cursor-wait,
input.cursor-wait *,
input.loading,
input.loading *,
textarea.cursor-loading,
textarea.cursor-loading *,
textarea.cursor-wait,
textarea.cursor-wait *,
textarea.loading,
textarea.loading * {
    cursor: wait !important
}

@media (min-width:400px) {
    .xs\:button-size-large.button {
        padding-left: 24px;
        padding-right: 24px;
        font-weight: 500;
        height: 56px;
        font-size: 22px;
        line-height: 56px;
        border-radius: 56px
    }
}

@media (min-width:800px) {
    .md\:button-size-large.button {
        padding-left: 24px;
        padding-right: 24px;
        font-weight: 500;
        height: 56px;
        font-size: 22px;
        line-height: 56px;
        border-radius: 56px
    }

    .md\:overflow-visible.keen-slider.keen-slider {
        overflow: visible
    }
}

.marker\:text-blue-900 ::marker {
    color: #0d1d39
}

.marker\:text-violet-600 ::marker {
    color: #a857f1
}

.marker\:text-blue-900::marker {
    color: #0d1d39
}

.marker\:text-violet-600::marker {
    color: #a857f1
}

.before\:absolute:before {
    content: var(--tw-content);
    position: absolute
}

.before\:bottom-0:before {
    content: var(--tw-content);
    bottom: 0
}

.before\:right-0:before {
    content: var(--tw-content);
    right: 0
}

.before\:h-\[1px\]:before {
    content: var(--tw-content);
    height: 1px
}

.before\:w-0:before {
    content: var(--tw-content);
    width: 0
}

.before\:bg-violet-800:before {
    content: var(--tw-content);
    --tw-bg-opacity: 1;
    background-color: rgb(91 31 118/var(--tw-bg-opacity))
}

.before\:transition-all:before {
    content: var(--tw-content);
    transition-property: all;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1)
}

.before\:duration-500:before {
    content: var(--tw-content);
    transition-duration: .5s
}

.first\:border-l-0:first-child {
    border-left-width: 0
}

.first\:border-t:first-child {
    border-top-width: 1px
}

.last\:mb-\[34px\]:last-child {
    margin-bottom: 34px
}

.last\:mr-0:last-child {
    margin-right: 0
}

.last\:hidden:last-child {
    display: none
}

.last\:border-b:last-child {
    border-bottom-width: 1px
}

.last\:border-r-0:last-child {
    border-right-width: 0
}

.last\:border-none:last-child {
    border-style: none
}

.hover\:cursor-pointer:hover {
    cursor: pointer
}

.hover\:bg-blue-200:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(212 223 252/var(--tw-bg-opacity))
}

.hover\:bg-citron-100:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(238 252 151/var(--tw-bg-opacity))
}

.hover\:bg-citron-500:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(222 233 72/var(--tw-bg-opacity))
}

.hover\:bg-gray-100:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(243 243 244/var(--tw-bg-opacity))
}

.hover\:bg-gray-200:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(222 223 226/var(--tw-bg-opacity))
}

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

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

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

.hover\:outline-8:hover {
    outline-width: 8px
}

.hover\:before\:left-0:hover:before {
    content: var(--tw-content);
    left: 0
}

.hover\:before\:w-full:hover:before {
    content: var(--tw-content);
    width: 100%
}

.hover\:before\:bg-citron-500:hover:before {
    content: var(--tw-content);
    --tw-bg-opacity: 1;
    background-color: rgb(222 233 72/var(--tw-bg-opacity))
}

.group:hover .group-hover\:block {
    display: block
}

.peer:checked~.peer-checked\:translate-x-full {
    --tw-translate-x: 100%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

@media (min-width:400px) {
    .xs\:w-auto {
        width: auto
    }
}

@media (min-width:600px) {
    .sm\:flex {
        display: flex
    }

    .sm\:hidden {
        display: none
    }

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

    .sm\:min-w-38 {
        min-width: 304px
    }

    .sm\:max-w-68 {
        max-width: 544px
    }

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

@media (min-width:800px) {
    .md\:absolute {
        position: absolute
    }

    .md\:sticky {
        position: sticky
    }

    .md\:left-0 {
        left: 0
    }

    .md\:left-12 {
        left: 96px
    }

    .md\:left-\[-30\%\] {
        left: -30%
    }

    .md\:right-0 {
        right: 0
    }

    .md\:right-12 {
        right: 96px
    }

    .md\:top-\[20\%\] {
        top: 20%
    }

    .md\:top-\[50\%\] {
        top: 50%
    }

    .md\:top-header-height-desktop {
        top: 80px
    }

    .md\:order-1 {
        order: 1
    }

    .md\:order-2 {
        order: 2
    }

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

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

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

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

    .md\:col-start-1 {
        grid-column-start: 1
    }

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

    .md\:col-start-6 {
        grid-column-start: 6
    }

    .md\:col-start-7 {
        grid-column-start: 7
    }

    .md\:col-end-6 {
        grid-column-end: 6
    }

    .md\:row-start-1 {
        grid-row-start: 1
    }

    .md\:-mx-3 {
        margin-left: -24px;
        margin-right: -24px
    }

    .md\:-mx-8 {
        margin-left: -64px;
        margin-right: -64px
    }

    .md\:mx-\[2\.5\%\] {
        margin-left: 2.5%;
        margin-right: 2.5%
    }

    .md\:mx-\[64px\] {
        margin-left: 64px;
        margin-right: 64px
    }

    .md\:my-0 {
        margin-top: 0;
        margin-bottom: 0
    }

    .md\:my-20 {
        margin-top: 160px;
        margin-bottom: 160px
    }

    .md\:my-22 {
        margin-top: 176px;
        margin-bottom: 176px
    }

    .md\:my-4 {
        margin-top: 32px;
        margin-bottom: 32px
    }

    .md\:my-8 {
        margin-top: 64px;
        margin-bottom: 64px
    }

    .md\:my-\[132px\] {
        margin-top: 132px;
        margin-bottom: 132px
    }

    .md\:-mt-header-height-desktop {
        margin-top: -80px
    }

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

    .md\:mb-2 {
        margin-bottom: 16px
    }

    .md\:mb-22 {
        margin-bottom: 176px
    }

    .md\:mb-3 {
        margin-bottom: 24px
    }

    .md\:mb-8 {
        margin-bottom: 64px
    }

    .md\:mb-\[0\] {
        margin-bottom: 0
    }

    .md\:mb-\[108px\] {
        margin-bottom: 108px
    }

    .md\:mb-\[114px\] {
        margin-bottom: 114px
    }

    .md\:mb-\[32px\] {
        margin-bottom: 32px
    }

    .md\:mb-\[64px\] {
        margin-bottom: 64px
    }

    .md\:ml-\[-38px\] {
        margin-left: -38px
    }

    .md\:ml-\[140px\] {
        margin-left: 140px
    }

    .md\:ml-\[2\%\] {
        margin-left: 2%
    }

    .md\:ml-\[24px\] {
        margin-left: 24px
    }

    .md\:ml-\[32px\] {
        margin-left: 32px
    }

    .md\:ml-\[34px\] {
        margin-left: 34px
    }

    .md\:ml-\[50px\] {
        margin-left: 50px
    }

    .md\:ml-\[64px\] {
        margin-left: 64px
    }

    .md\:ml-\[68px\] {
        margin-left: 68px
    }

    .md\:mr-0 {
        margin-right: 0
    }

    .md\:mr-\[-58px\] {
        margin-right: -58px
    }

    .md\:mr-\[100px\] {
        margin-right: 100px
    }

    .md\:mr-\[140px\] {
        margin-right: 140px
    }

    .md\:mr-\[16px\] {
        margin-right: 16px
    }

    .md\:mr-\[2\%\] {
        margin-right: 2%
    }

    .md\:mr-\[24px\] {
        margin-right: 24px
    }

    .md\:mr-\[32px\] {
        margin-right: 32px
    }

    .md\:mr-\[64px\] {
        margin-right: 64px
    }

    .md\:mr-\[75px\] {
        margin-right: 75px
    }

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

    .md\:mt-10 {
        margin-top: 80px
    }

    .md\:mt-12 {
        margin-top: 96px
    }

    .md\:mt-22 {
        margin-top: 176px
    }

    .md\:mt-\[-8px\] {
        margin-top: -8px
    }

    .md\:mt-\[102px\] {
        margin-top: 102px
    }

    .md\:mt-\[106px\] {
        margin-top: 106px
    }

    .md\:mt-\[112px\] {
        margin-top: 112px
    }

    .md\:mt-\[120px\] {
        margin-top: 120px
    }

    .md\:mt-\[140px\] {
        margin-top: 140px
    }

    .md\:mt-\[25px\] {
        margin-top: 25px
    }

    .md\:mt-\[48px\] {
        margin-top: 48px
    }

    .md\:mt-\[72px\] {
        margin-top: 72px
    }

    .md\:block {
        display: block
    }

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

    .md\:inline {
        display: inline
    }

    .md\:flex {
        display: flex
    }

    .md\:grid {
        display: grid
    }

    .md\:hidden {
        display: none
    }

    .md\:h-10 {
        height: 80px
    }

    .md\:h-\[100\%\] {
        height: 100%
    }

    .md\:h-\[10vw\] {
        height: 10vw
    }

    .md\:h-\[124px\] {
        height: 124px
    }

    .md\:h-\[134px\] {
        height: 134px
    }

    .md\:h-\[20vw\] {
        height: 20vw
    }

    .md\:h-\[21vw\] {
        height: 21vw
    }

    .md\:h-\[60px\] {
        height: 60px
    }

    .md\:h-\[8px\] {
        height: 8px
    }

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

    .md\:max-h-\[322px\] {
        max-height: 322px
    }

    .md\:min-h-\[448px\] {
        min-height: 448px
    }

    .md\:min-h-\[740px\] {
        min-height: 740px
    }

    .md\:min-h-\[810px\] {
        min-height: 810px
    }

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

    .md\:w-\[124px\] {
        width: 124px
    }

    .md\:w-\[190px\] {
        width: 190px
    }

    .md\:w-\[20\%\] {
        width: 20%
    }

    .md\:w-\[25\%\] {
        width: 25%
    }

    .md\:w-\[250px\] {
        width: 250px
    }

    .md\:w-\[30\%\] {
        width: 30%
    }

    .md\:w-\[35\%\] {
        width: 35%
    }

    .md\:w-\[40\%\] {
        width: 40%
    }

    .md\:w-\[45\%\] {
        width: 45%
    }

    .md\:w-\[50\%\] {
        width: 50%
    }

    .md\:w-\[55\%\] {
        width: 55%
    }

    .md\:w-\[60\%\] {
        width: 60%
    }

    .md\:w-\[60px\] {
        width: 60px
    }

    .md\:w-\[70\%\] {
        width: 70%
    }

    .md\:w-\[8px\] {
        width: 8px
    }

    .md\:w-\[90\%\] {
        width: 90%
    }

    .md\:w-\[94px\] {
        width: 94px
    }

    .md\:w-\[calc\(33\.333\%-16px\)\] {
        width: calc(33.333% - 16px)
    }

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

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

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

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

    .md\:max-w-85 {
        max-width: 680px
    }

    .md\:max-w-\[100\%\] {
        max-width: 100%
    }

    .md\:max-w-\[180px\] {
        max-width: 180px
    }

    .md\:max-w-\[190px\] {
        max-width: 190px
    }

    .md\:max-w-\[318px\] {
        max-width: 318px
    }

    .md\:max-w-\[344px\] {
        max-width: 344px
    }

    .md\:max-w-\[356px\] {
        max-width: 356px
    }

    .md\:max-w-\[396px\] {
        max-width: 396px
    }

    .md\:max-w-\[512px\] {
        max-width: 512px
    }

    .md\:max-w-\[612px\] {
        max-width: 612px
    }

    .md\:max-w-\[624px\] {
        max-width: 624px
    }

    .md\:translate-y-\[-50\%\] {
        --tw-translate-y: -50%;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
    }

    .md\:grid-cols-12 {
        grid-template-columns: repeat(12, 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-rows-3 {
        grid-template-rows: repeat(3, minmax(0, 1fr))
    }

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

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

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

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

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

    .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-1 {
        gap: 8px
    }

    .md\:gap-10 {
        gap: 80px
    }

    .md\:gap-12 {
        gap: 96px
    }

    .md\:gap-2 {
        gap: 16px
    }

    .md\:gap-3 {
        gap: 24px
    }

    .md\:gap-4 {
        gap: 32px
    }

    .md\:gap-6 {
        gap: 48px
    }

    .md\:gap-8 {
        gap: 64px
    }

    .md\:gap-9 {
        gap: 72px
    }

    .md\:gap-\[6px\] {
        gap: 6px
    }

    .md\:gap-container-mobile,
    .md\:gap-gutter-desktop {
        gap: 24px
    }

    .md\:gap-x-0 {
        -moz-column-gap: 0;
        column-gap: 0
    }

    .md\:gap-x-gutter-desktop {
        -moz-column-gap: 24px;
        column-gap: 24px
    }

    .md\:gap-y-12 {
        row-gap: 96px
    }

    .md\:gap-y-15 {
        row-gap: 120px
    }

    .md\:gap-y-4 {
        row-gap: 32px
    }

    .md\:gap-y-8 {
        row-gap: 64px
    }

    .md\:overflow-auto {
        overflow: auto
    }

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

    .md\:rounded-10 {
        border-radius: 10px
    }

    .md\:rounded-20 {
        border-radius: 20px
    }

    .md\:rounded-30 {
        border-radius: 30px
    }

    .md\:rounded-40 {
        border-radius: 40px
    }

    .md\:rounded-tl-0 {
        border-top-left-radius: 0
    }

    .md\:rounded-tr-\[16px\] {
        border-top-right-radius: 16px
    }

    .md\:border-x-8 {
        border-left-width: 8px;
        border-right-width: 8px
    }

    .md\:border-b-0 {
        border-bottom-width: 0
    }

    .md\:border-b-8 {
        border-bottom-width: 8px
    }

    .md\:border-r,
    .md\:border-r-\[1px\] {
        border-right-width: 1px
    }

    .md\:border-t-8 {
        border-top-width: 8px
    }

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

    .md\:border-\[\#b275f4\]\/50 {
        border-color: rgba(178, 117, 244, .5)
    }

    .md\:bg-gray-100 {
        --tw-bg-opacity: 1;
        background-color: rgb(243 243 244/var(--tw-bg-opacity))
    }

    .md\:bg-\[url\(\'https\:\/\/front\.com\/webassets\/rebrand\/ticketing-pattern-background\.svg\'\)\] {
        background-image: url(https://front.com/webassets/rebrand/ticketing-pattern-background.svg)
    }

    .md\:bg-none {
        background-image: none
    }

    .md\:p-0 {
        padding: 0
    }

    .md\:p-8 {
        padding: 64px
    }

    .md\:p-\[14px\] {
        padding: 14px
    }

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

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

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

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

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

    .md\:px-\[160px\] {
        padding-left: 160px;
        padding-right: 160px
    }

    .md\:px-\[16px\] {
        padding-left: 16px;
        padding-right: 16px
    }

    .md\:px-\[64px\] {
        padding-left: 64px;
        padding-right: 64px
    }

    .md\:px-container-desktop {
        padding-left: 96px;
        padding-right: 96px
    }

    .md\:py-10 {
        padding-top: 80px;
        padding-bottom: 80px
    }

    .md\:py-12 {
        padding-top: 96px;
        padding-bottom: 96px
    }

    .md\:py-15 {
        padding-top: 120px;
        padding-bottom: 120px
    }

    .md\:py-2 {
        padding-top: 16px;
        padding-bottom: 16px
    }

    .md\:py-20 {
        padding-top: 160px;
        padding-bottom: 160px
    }

    .md\:py-25 {
        padding-top: 200px;
        padding-bottom: 200px
    }

    .md\:py-4 {
        padding-top: 32px;
        padding-bottom: 32px
    }

    .md\:py-8 {
        padding-top: 64px;
        padding-bottom: 64px
    }

    .md\:py-\[120px\] {
        padding-top: 120px;
        padding-bottom: 120px
    }

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

    .md\:pb-10 {
        padding-bottom: 80px
    }

    .md\:pb-12 {
        padding-bottom: 96px
    }

    .md\:pb-20 {
        padding-bottom: 160px
    }

    .md\:pb-\[120px\] {
        padding-bottom: 120px
    }

    .md\:pb-\[180px\] {
        padding-bottom: 180px
    }

    .md\:pb-\[244px\] {
        padding-bottom: 244px
    }

    .md\:pb-\[65px\] {
        padding-bottom: 65px
    }

    .md\:pb-\[80px\] {
        padding-bottom: 80px
    }

    .md\:pb-\[94px\] {
        padding-bottom: 94px
    }

    .md\:pl-8 {
        padding-left: 64px
    }

    .md\:pl-\[114px\] {
        padding-left: 114px
    }

    .md\:pl-\[125px\] {
        padding-left: 125px
    }

    .md\:pr-0 {
        padding-right: 0
    }

    .md\:pr-2 {
        padding-right: 16px
    }

    .md\:pr-\[125px\] {
        padding-right: 125px
    }

    .md\:pr-\[24px\] {
        padding-right: 24px
    }

    .md\:pr-\[64px\] {
        padding-right: 64px
    }

    .md\:pt-12 {
        padding-top: 96px
    }

    .md\:pt-14 {
        padding-top: 112px
    }

    .md\:pt-3 {
        padding-top: 24px
    }

    .md\:pt-\[110px\] {
        padding-top: 110px
    }

    .md\:pt-\[120px\] {
        padding-top: 120px
    }

    .md\:pt-\[152px\] {
        padding-top: 152px
    }

    .md\:pt-\[24px\] {
        padding-top: 24px
    }

    .md\:pt-\[55px\] {
        padding-top: 55px
    }

    .md\:pt-\[56px\] {
        padding-top: 56px
    }

    .md\:pt-\[64px\] {
        padding-top: 64px
    }

    .md\:pt-\[66px\] {
        padding-top: 66px
    }

    .md\:pt-\[76px\] {
        padding-top: 76px
    }

    .md\:pt-\[94px\] {
        padding-top: 94px
    }

    .md\:pt-\[98px\] {
        padding-top: 98px
    }

    .md\:pt-header-height-desktop {
        padding-top: 80px
    }

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

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

    .md\:font-serif {
        font-family: Suisse Works, Times New Roman, serif
    }

    .md\:text-14\/20 {
        font-size: 14px;
        line-height: 20px
    }

    .md\:text-17\/24 {
        font-size: 17px;
        line-height: 24px
    }

    .md\:text-18\/28 {
        font-size: 18px;
        line-height: 28px
    }

    .md\:text-20\/24 {
        font-size: 20px;
        line-height: 24px
    }

    .md\:text-20\/28 {
        font-size: 20px;
        line-height: 28px
    }

    .md\:text-24\/30 {
        font-size: 24px;
        line-height: 30px
    }

    .md\:text-25\/30 {
        font-size: 25px;
        line-height: 30px
    }

    .md\:text-25\/33 {
        font-size: 25px;
        line-height: 33px
    }

    .md\:text-30\/35 {
        font-size: 30px;
        line-height: 35px
    }

    .md\:text-30\/38 {
        font-size: 30px;
        line-height: 38px
    }

    .md\:text-36\/42 {
        font-size: 36px;
        line-height: 42px
    }

    .md\:text-40\/42 {
        font-size: 40px;
        line-height: 42px
    }

    .md\:text-43\/51 {
        font-size: 43px;
        line-height: 51px
    }

    .md\:text-43\/52 {
        font-size: 43px;
        line-height: 52px
    }

    .md\:text-43\/53 {
        font-size: 43px;
        line-height: 53px
    }

    .md\:text-52\/62 {
        font-size: 52px;
        line-height: 62px
    }

    .md\:text-54\/54 {
        font-size: 54px;
        line-height: 54px
    }

    .md\:text-56\/62 {
        font-size: 56px;
        line-height: 62px
    }

    .md\:text-56\/65 {
        font-size: 56px;
        line-height: 65px
    }

    .md\:text-caption1 {
        font-size: 15px;
        line-height: 21px;
        letter-spacing: 1.5%
    }

    .md\:text-display1 {
        font-size: 62px;
        line-height: 68px;
        letter-spacing: -2%;
        font-weight: 500
    }

    .md\:text-display2 {
        font-size: 52px;
        line-height: 62px;
        letter-spacing: -2%;
        font-weight: 500
    }

    .md\:text-display3 {
        font-size: 42px;
        line-height: 52px
    }

    .md\:text-display3,
    .md\:text-h1 {
        letter-spacing: -1.75%;
        font-weight: 500
    }

    .md\:text-h1 {
        font-size: 36px;
        line-height: 42px
    }

    .md\:text-h2 {
        font-size: 30px;
        line-height: 36px;
        letter-spacing: -1.5%;
        font-weight: 500
    }

    .md\:text-h3 {
        font-size: 25px;
        line-height: 30px;
        letter-spacing: -1%;
        font-weight: 500
    }

    .md\:text-h4 {
        font-size: 20px;
        line-height: 28px;
        letter-spacing: .25%
    }

    .md\:text-micro1 {
        font-size: 15px;
        line-height: 21px;
        letter-spacing: 6%
    }

    .md\:text-micro2 {
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 6%
    }

    .md\:text-p1 {
        font-size: 20px;
        line-height: 28px;
        letter-spacing: .25%
    }

    .md\:text-p2 {
        font-size: 17px;
        line-height: 26px;
        letter-spacing: .25%
    }

    .md\:font-500 {
        font-weight: 500
    }

    .md\:first\:ml-\[64px\]:first-child {
        margin-left: 64px
    }

    .last\:md\:block:last-child {
        display: block
    }
}

@media (min-width:1000px) {
    .lg\:absolute {
        position: absolute
    }

    .lg\:inset-0 {
        inset: 0
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .lg\:row-start-1 {
        grid-row-start: 1
    }

    .lg\:-mx-8 {
        margin-left: -64px;
        margin-right: -64px
    }

    .lg\:my-25 {
        margin-top: 200px;
        margin-bottom: 200px
    }

    .lg\:-mr-1 {
        margin-right: -8px
    }

    .lg\:mb-\[98px\] {
        margin-bottom: 98px
    }

    .lg\:block {
        display: block
    }

    .lg\:flex {
        display: flex
    }

    .lg\:hidden {
        display: none
    }

    .lg\:aspect-\[1024\/576\] {
        aspect-ratio: 1024/576
    }

    .lg\:aspect-\[1024\/577\] {
        aspect-ratio: 1024/577
    }

    .lg\:aspect-\[1314\/863\] {
        aspect-ratio: 1314/863
    }

    .lg\:aspect-\[450\/450\] {
        aspect-ratio: 450/450
    }

    .lg\:aspect-\[650\/541\] {
        aspect-ratio: 650/541
    }

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

    .lg\:min-h-\[890px\] {
        min-height: 890px
    }

    .lg\:min-h-\[980px\] {
        min-height: 980px
    }

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

    .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\:flex-nowrap {
        flex-wrap: nowrap
    }

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

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

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

    .lg\:gap-y-10 {
        row-gap: 80px
    }

    .lg\:px-10 {
        padding-left: 80px;
        padding-right: 80px
    }

    .lg\:px-2 {
        padding-left: 16px;
        padding-right: 16px
    }

    .lg\:px-4 {
        padding-left: 32px;
        padding-right: 32px
    }

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

    .lg\:px-\[82px\] {
        padding-left: 82px;
        padding-right: 82px
    }

    .lg\:py-10 {
        padding-top: 80px;
        padding-bottom: 80px
    }

    .lg\:py-2 {
        padding-top: 16px;
        padding-bottom: 16px
    }

    .lg\:pb-12 {
        padding-bottom: 96px
    }

    .lg\:pb-\[100px\] {
        padding-bottom: 100px
    }

    .lg\:pl-8 {
        padding-left: 64px
    }

    .lg\:pr-8 {
        padding-right: 64px
    }

    .lg\:pt-15 {
        padding-top: 120px
    }

    .lg\:pt-5 {
        padding-top: 40px
    }

    .lg\:pt-\[80px\] {
        padding-top: 80px
    }

    .lg\:text-30\/35 {
        font-size: 30px;
        line-height: 35px
    }

    .lg\:hover\:bg-citron-100:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(238 252 151/var(--tw-bg-opacity))
    }

    .group:hover .lg\:group-hover\:text-citron-900,
    .lg\:hover\:text-citron-900:hover {
        --tw-text-opacity: 1;
        color: rgb(29 31 4/var(--tw-text-opacity))
    }
}

@media (min-width:1200px) {
    .xl\:absolute {
        position: absolute
    }

    .xl\:top-\[260px\] {
        top: 260px
    }

    .xl\:col-span-10 {
        grid-column: span 10/span 10
    }

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

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

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

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

    .xl\:col-span-8 {
        grid-column: span 8/span 8
    }

    .xl\:col-start-2 {
        grid-column-start: 2
    }

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

    .xl\:col-start-4 {
        grid-column-start: 4
    }

    .xl\:row-start-2 {
        grid-row-start: 2
    }

    .xl\:my-25 {
        margin-top: 200px;
        margin-bottom: 200px
    }

    .xl\:mb-\[32px\] {
        margin-bottom: 32px
    }

    .xl\:mr-\[100px\] {
        margin-right: 100px
    }

    .xl\:block {
        display: block
    }

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

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

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

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

    .xl\:flex-nowrap {
        flex-wrap: nowrap
    }

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

    .xl\:gap-1 {
        gap: 8px
    }

    .xl\:pr-2 {
        padding-right: 16px
    }

    .xl\:pr-8 {
        padding-right: 64px
    }

    .xl\:pt-4 {
        padding-top: 32px
    }

    .xl\:pt-\[210px\] {
        padding-top: 210px
    }

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

    .xl\:text-34\/34 {
        font-size: 34px;
        line-height: 34px
    }

    .xl\:text-44\/44 {
        font-size: 44px;
        line-height: 44px
    }
}

@media (min-width:1300px) {
    .\32xl\:absolute {
        position: absolute
    }

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

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

    .\32xl\:mr-\[70px\] {
        margin-right: 70px
    }

    .\32xl\:hidden {
        display: none
    }

    .\32xl\:gap-1 {
        gap: 8px
    }

    .\32xl\:pr-5 {
        padding-right: 40px
    }
}

@media (min-width:1400px) {
    .\31 400\:text-42\/42 {
        font-size: 42px;
        line-height: 42px
    }

    .\31 400\:text-66\/66 {
        font-size: 66px;
        line-height: 66px
    }
}

@media (min-width:1600px) {
    .\33xl\:relative {
        position: relative
    }

    .\33xl\:top-0 {
        top: 0
    }

    .\33xl\:-mx-12 {
        margin-left: -96px;
        margin-right: -96px
    }

    .\33xl\:hidden {
        display: none
    }

    .\33xl\:bg-\[length\:45\%_80\%\] {
        background-size: 45% 80%
    }

    .\33xl\:px-12 {
        padding-left: 96px;
        padding-right: 96px
    }

    .\33xl\:pb-\[80px\] {
        padding-bottom: 80px
    }

    .\33xl\:pt-\[80px\] {
        padding-top: 80px
    }
}

@media (prefers-color-scheme:dark) {
    .dark\:bg-violet-700 {
        --tw-bg-opacity: 1;
        background-color: rgb(128 52 191/var(--tw-bg-opacity))
    }

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

/*# sourceMappingURL=b113c4b93214b9f8.css.map*/