/**
 * This injects Tailwind's base styles, which is a combination of
 * Normalize.css and some additional base styles.
 *
 * You can see the styles here:
 * https://github.com/tailwindcss/tailwindcss/blob/master/css/preflight.css
 *
 * If using `postcss-import`, use this import instead:
 *
 * @import "tailwindcss/preflight";
 */

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

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

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

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

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

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

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

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, 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;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

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

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 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: .35em .75em .625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

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

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 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, IE 10+, and Firefox.
 */

details {
  display: block;
}

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

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

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

/**
 * 1. Prevent padding and border from affecting element width
 * https://goo.gl/pYtbK7
 * 2. Change the default font family in all browsers (opinionated)
 */

html {
  box-sizing: border-box; /* 1 */
  font-family: sans-serif; /* 2 */
}

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

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

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

button {
  background: transparent;
  padding: 0;
}

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

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

fieldset {
  margin: 0;
  padding: 0;
}

ol,
ul {
  margin: 0;
}

/**
 * Tailwind custom reset styles
 */

/**
 * Allow adding a border to an element by just adding a border-width.
 *
 * By default, the way the browser specifies that an element should have no
 * border is by setting it's border-style to `none` in the user-agent
 * stylesheet.
 *
 * In order to easily add borders to elements by just setting the `border-width`
 * property, we change the default border-style for all elements to `solid`, and
 * use border-width to hide them instead. This way our `border` utilities only
 * need to set the `border-width` property instead of the entire `border`
 * shorthand, making our border utilities much more straightforward to compose.
 *
 * https://github.com/tailwindcss/tailwindcss/pull/116
 */

*,
*::before,
*::after {
  border-width: 0;
  border-style: solid;
  border-color: #ced2db;
}

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

img {
  border-style: solid;
}

textarea {
  resize: vertical;
}

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

input::placeholder,
textarea::placeholder {
  color: inherit;
  opacity: .5;
}

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

table {
  border-collapse: collapse;
}

/**
 * This injects any component classes registered by plugins.
 *
 * If using `postcss-import`, use this import instead:
 *
 * @import "tailwindcss/components";
 */

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

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

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

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

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

/**
 * Here you would add any of your custom component classes; stuff that you'd
 * want loaded *before* the utilities so that the utilities could still
 * override them.
 *
 * Example:
 *
 * .btn { ... }
 * .form-input { ... }
 *
 * Or if using a preprocessor or `postcss-import`:
 *
 * @import "components/buttons";
 * @import "components/forms";
 */

/* rubik-regular - latin */

@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 400;
  src: local('Rubik'), local('Rubik-Regular'), url('fonts/rubik-v7-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('fonts/rubik-v7-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* rubik-500 - latin */

@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 500;
  src: local('Rubik Medium'), local('Rubik-Medium'), url('fonts/rubik-v7-latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('fonts/rubik-v7-latin-500.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* montserrat-regular - latin */

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local('Montserrat Regular'), local('Montserrat-Regular'), url('fonts/montserrat-v12-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('fonts/montserrat-v12-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* montserrat-500 - latin */

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: local('Montserrat Medium'), local('Montserrat-Medium'), url('fonts/montserrat-v12-latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('fonts/montserrat-v12-latin-500.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* montserrat-600 - latin */

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: local('Montserrat SemiBold'), local('Montserrat-SemiBold'), url('fonts/montserrat-v12-latin-600.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('fonts/montserrat-v12-latin-600.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* montserrat-700 - latin */

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: local('Montserrat Bold'), local('Montserrat-Bold'), url('fonts/montserrat-v12-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('fonts/montserrat-v12-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

h1 {
  font-size: 28px;
  line-height: 36px;
  font-family: Montserrat, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 600;
}

h2 {
  font-size: 24px;
  line-height: 32px;
  font-family: Montserrat, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 700;
}

h3 {
  font-size: 19px;
  line-height: 28px;
  font-family: Montserrat, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 400;
}

h4 {
  font-size: 18px;
  line-height: 28px;
  font-family: Rubik, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 500;
}

h5 {
  font-size: 14px;
  line-height: 26px;
  font-family: Rubik, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 400;
  color: #5e6b89;
}

p,
.p {
  font-size: 16px;
  line-height: 26px;
  font-family: Rubik, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 400;
}

a {
  text-decoration: none;
}

strong {
  font-weight: 500;
}

.link {
  font-family: Rubik, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 400;
  color: #007b83;
  display: inline-block;
  text-decoration: underline;
}

.link:hover {
  color: #005358;
}

/* h1, h2, h3, h4, h5,*/

p+p {
  margin-top: 15px;
}

.breadcrumb {
  font-family: Rubik, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
}

.icon-line {
  display: inline-flex;
  align-items: start;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.icon-line__icon {
  margin: 5px 10px 5px 0;
  width: 16px;
  height: 16px;
}

a[href^="tel"] {
  color: inherit !important;
}

@media (min-width: 576px) {
  h1 {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: 52px;
    line-height: 60px;
  }

  h2 {
    font-size: 28px;
    line-height: 38px;
  }

  h3 {
    font-size: 20px;
    line-height: 30px;
  }
}

.bg-navy-gradient {
  background-image: linear-gradient(180deg, #052b5f, #041437);
  color: #fff;
}

.bg-pink-gradient {
  background-image: linear-gradient(180deg, #e31c78, #b41c6e);
  color: #fff;
}

.bg-blue-gradient {
  background-image: linear-gradient(180deg, #05c2de, #029fc7);
  color: #081c4a;
}

.bg-teal-gradient {
  background-image: linear-gradient(180deg, #2bd6c4, #088c90);
  color: #081c4a;
}

/* BUTTONS */

.btn {
  font-size: 16px;
  line-height: 26px;
  font-family: Rubik, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 500;
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  border-radius: 9999px;
  transition: background .125s cubic-bezier(.46, .03, .52, .96);
  height: 44px;
  min-width: 140px;
}

/* Buttons: Primary */

.btn--pink {
  background-color: #e31c78;
  color: #fff;
}

.btn--pink:hover {
  background-color: #bb0872;
  box-shadow: 0 1px 4px 0 rgba(7, 29, 73, .1);
}

.btn--pink:focus {
  outline: inherit;
  background-color: #bb0872;
}

/*  Buttons: Navy */

.btn--navy {
  background-color: #081c4a;
  color: #fff;
}

.btn--navy:hover {
  background-color: #001035;
  box-shadow: 0 1px 4px 0 rgba(7, 29, 73, .1);
}

.btn--navy:focus {
  background-color: #001035;
}

/*  Buttons: Navy */

.btn--grey {
  background-color: #e6e8ec;
  color: #081c4a;
}

.btn--grey:hover {
  background-color: #ced2db;
  box-shadow: 0 1px 4px 0 rgba(7, 29, 73, .1);
}

.btn--grey:focus {
  background-color: #ced2db;
}

/* Buttons: Icon Button */

.btn--icon {
  background-color: #e6e8ec;
  display: flex;
  align-items: center;
  color: #081c4a;
  font-weight: 500;
  min-height: 60px;
}

.btn--icon:hover {
  background-color: #ced2db;
  box-shadow: 0 1px 4px 0 rgba(7, 29, 73, .1);
}

.btn--icon:focus {
  background-color: #ced2db;
}

/* Buttons: Utilities */

.btn--spaced {
  margin-top: 20px;
  margin-bottom: 20px;
}

.card {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 4px 0 rgba(7, 29, 73, .1);
  border-width: 1px;
}

.card--large {
  padding: 50px;
  max-width: 920px;
}

.card--is-linked {
  transition: transform .3s ease-in-out, box-shadow .3s ease-in-out;
}

.card--is-linked:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 6px 0 rgba(7, 29, 73, .1);
}

.container.vcarousel {
  align-items: flex-start;
}

.vcarousel__item {
}

.vcarousel__item--current {
  color: #e31c78;
}

.vcarousel__menu {
  display: flex;
}

.vcarousel__menu_bar {
  width: 4px;
  background-color: #e6e8ec;
  border-radius: 6px;
  position: relative;
}

.vcarousel__menu_bar_indicator {
  background-color: #e31c78;
  border-radius: 6px;
  position: absolute;
  height: 48px;
  width: 4px;
  transition: top .3s ease-in-out;
}

.vcarousel__active {
  background-color: #e31c78;
}

.vcarousel__menu_contents h4 {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  cursor: pointer;
  transition: color .3s ease-in-out;
}

.casestudy-carousel .flickity-slider {
  display: flex;
  align-items: center;
}

.pms-carousel {
  padding: 20px;
}

/* .container {
    @apply py-40;
} */

section {
}

.container {
  padding-top: 40px;
  padding-bottom: 40px;
  align-items: center;
}

.container--small {
  min-height: 260px;
}

.container--medium {
  min-height: 500px;
}

.container--large {
  min-height: 600px;
}

.container--narrow {
  max-width: 920px;
}

.form {
  text-align: center;
}

.form__item {
  position: relative;
  display: block;
  margin-top: 35px;
  text-align: left;
}

.form__field {
  font-family: Rubik, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  border-radius: 9999px;
  border-width: 1px;
  color: #081c4a;
  box-shadow: inset 0 0 6px 0 rgba(7, 29, 73, .1);
  font-size: 14px;
  padding: 13px 20px;
  width: 100%;
  transition: color .133s ease-in-out, background-color .133s ease-in-out, box-shadow .25s ease-in-out, border .25s ease-in-out;
}

.form__field:focus,
.form__field.form__field--focus {
  outline: 0;
  border-color: #007b83;
  box-shadow: 0 0 8px 0 rgba(0, 123, 131, .2), inset 0 0 6px 0 rgba(7, 29, 73, .1);
}

.form__field:not(:focus):hover {
  outline: 0;
  border-color: #6b7792;
}

.form__label {
  font-family: Rubik, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  color: #6b7792;
  pointer-events: none;
  font-size: 14px;
  top: 15px;
  left: 20px;
  position: absolute;
  transition: font-size .133s ease-in-out, top .133s ease-in-out, left .133s ease-in-out, opacity .12s ease-in-out, color .2s ease-in-out;
}

.form__extra {
  font-family: Rubik, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  position: relative;
  line-height: 22px;
  font-size: 14px;
}

.form__extra--info {
  color: #6b7792;
  font-size: 12px;
}

.form__extra--warning {
}

.form__field:focus~.form__label,
.form__field:not(:placeholder-shown)~.form__label {
  color: #081c4a;
  top: -24px;
  left: 0px;
}

.form__item--on-pink .form__field:focus~.form__label,
.form__item--on-pink .form__field:not(:placeholder-shown)~.form__label {
  color: #fff;
}

.form__icon {
  position: absolute;
  top: 13px;
  right: 20px;
  pointer-events: none;
}

.form__checkbox {
  display: block;
  -webkit-appearance: none;
  background-image: url('/images/mh1Redesign/global/check-box.png');
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  max-width: 20px;
  max-height: 20px;
}

.form__checkbox:checked {
  background-image: url('/images/mh1Redesign/global/check-box-checked.png');
}

.tick-list {
  list-style: none;
  padding: 0;
  font-family: Rubik, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  line-height: 26px;
  margin-left: auto;
  margin-right: auto;
  max-width: 400px;
}

.tick-list__item {
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  text-align: left;
}

.tick-list__item::before {
  content: '';
  width: 23px;
  height: 23px;
  margin: 1.5px 10px;
  background-image: url('/images/mh1Redesign/global/list-tick.svg');
  background-size: contain;
  padding: 0;
  min-height: 23px;
  min-width: 23px;
  max-height: 23px;
  max-width: 23px;
}

.navigation-bar {
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  right: 0;
  left: 0;
  top: 0;
  position: fixed;
  display: flex;
  z-index: 10;
  background-color: transparent;
  transition: transform .25s ease-in-out;
}

.navigation-bar:not(.opened).headroom--unpinned {
  transform: translate(0, -100%);
}

.navigation-bar.headroom--pinned {
  transform: translate(0, 0);
}

@media (min-width: 768px) {
  .navigation-bar--dark.headroom--top {
    background-color: transparent;
  }
}

.navigation-bar--dark {
  background-color: #081c4a;
}

.navigation-bar--dark.headroom--not-top {
  background-color: #081c4a;
}

.navigation-bar--light {
  background-color: #fff;
}

.navigation-bar--light .navigation-toggle {
  color: #081c4a;
}

.navigation-list {
  display: flex !important;
  padding: 0 !important;
}

.navigation-list__item {
  position: relative;
  list-style: none;
  padding: 0;
}

.navigation-list__subitem {
  padding: 0 !important;
  top: 34px;
  list-style: none;
  max-height: 0;
  overflow: hidden;
  max-width: 100vw;
  transition: max-height .33s ease-in-out;
  /* transition-delay: 0.4s; */
}

.navigation-list__subitem div.inner {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
  flex-wrap: wrap;
  background-color: #fff;
  box-shadow: 0 4px 6px 0 rgba(7, 29, 73, .3);
}

@media (max-width: 400px) {
  .navigation-list__subitem .w-1\/2 {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .navigation-list__subitem {
    position: absolute;
    transition: none;
  }
}

.navigation-list__subitem--large {
  width: 380px;
  left: calc(50% - 190px);
}

.navigation-list__subitem--small {
  width: 150px;
  left: calc(50% - 75px);
}

.navigation-list__subitem li {
  display: inline-flex;
}

.navigation-list__item.opened .navigation-list__subitem,
.navigation-list__item:hover .navigation-list__subitem {
  display: flex;
  max-height: 100vh;
}

.navigation__link {
  display: inline-flex;
  font-weight: 500;
  font-family: Montserrat, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
  text-decoration: none;
  cursor: pointer;
}

.navigation__link--main {
  font-size: 15px;
  z-index: 9;
}

.navigation__link--user {
  font-size: 13px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 5px;
  margin-bottom: 5px;
}

.navigation-bar--light .navigation__link--user.text-teal,
.navigation__link--user.text-teal:hover {
  color: #007b83;
}

.navigation-bar--light .navigation__link--user.text-teal:hover {
  color: #005358;
}

.navigation-bar--dark:not(.opened) .navigation__link--main,
footer .navigation__link {
  color: #fff;
}

.navigation-bar--light .navigation__link--main {
  color: #081c4a;
}

.navigation__link--main:hover,
footer .navigation__link:hover {
  color: #bb0872 !important;
}

.navigation__link--current {
  color: #e31c78 !important;
}

.navigation-list__subitem .navigation__link {
  color: #081c4a;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 5px;
}

.navigation-list__subitem .navigation__link:hover {
  color: #e31c78;
}

.navigation-list--upright {
  flex-direction: column;
}

.navigation-list--upright .navigation__link {
  padding-left: 0;
  padding-right: 0;
}

footer .navigation__link {
  font-size: 13px;
  line-height: 18px;
}

nav .alt-logo {
  display: none;
}

.navigation-toggle .hamburger-line {
  transition: transform .1s ease-in-out;
}

.navigation-toggle .hamburger-line--1 {
  transform: translate(0, 0) rotate(0deg);
  transform-origin: 50% 50%;
}

.navigation-toggle .hamburger-line--2 {
  transform: scaleX(1);
  transform-origin: 50% 50%;
}

.navigation-toggle .hamburger-line--3 {
  transform: translate(0, 0) rotate(0deg);
  transform-origin: 50% 50%;
}

.scroll-lock {
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
}

@media (max-width: 768px) {
  nav.opened {
    background-color: #f2f3f6 !important;
    color: #081c4a !important;
    align-items: flex-start !important;
    flex-direction: column !important;
    min-height: 100vh;
  }

  nav.opened .text-grey-lighter,
  nav.opened .text-grey-lightest {
    color: #6b7792;
  }

  nav.opened .navigation-toggle {
    color: #081c4a;
  }

  nav.opened .navigation-toggle .hamburger-line--1 {
    transform: translate(8px, 8px) rotate(-45deg);
    transform-origin: 50% 50%;
  }

  nav.opened .navigation-toggle .hamburger-line--2 {
    transform: scaleX(0);
    transform-origin: 50% 50%;
  }

  nav.opened .navigation-toggle .hamburger-line--3 {
    transform: translate(8px, -8px) rotate(45deg);
    transform-origin: 50% 50%;
  }

  nav .navigation__link--main {
    color: #081c4a;
  }

  nav.opened .navigation-items {
    display: flex !important;
    flex-direction: column-reverse !important;
    align-self: flex-start !important;
  }

  nav.opened .navigation__link--user.text-teal {
    color: #007b83;
  }

  nav.opened .navigation__link--user.text-teal:hover {
    color: #005358;
  }

  nav.opened .alt-logo {
    display: block;
  }

  nav.opened .primary-logo {
    display: none;
  }
}

/*! Flickity v2.2.0
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
          tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */

.flickity-button {
  position: absolute;
  /* background: hsla(0, 0%, 100%, 0.75); */
  border: none;
  color: #081c4a;
}

.flickity-button:hover {
  /* background: white; */
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  /* box-shadow: 0 0 0 5px #19F; */
}

.flickity-button:active {
  opacity: .6;
}

.flickity-button:disabled {
  opacity: .3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: -10px;
}

.flickity-prev-next-button.next {
  right: -10px;
}

/* right to left */

.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.flickity-button-icon path {
  stroke-linecap: round;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: 0px;
  padding: 0;
  left: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  border-radius: 50%;
  border: 2px solid #081c4a;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
  background: #081c4a;
}

/**
 * This injects all of Tailwind's utility classes, generated based on your
 * config file.
 *
 * If using `postcss-import`, use this import instead:
 *
 * @import "tailwindcss/utilities";
 */

.list-reset {
  list-style: none;
  padding: 0;
}

.appearance-none {
  appearance: none;
}

.bg-fixed {
  background-attachment: fixed;
}

.bg-local {
  background-attachment: local;
}

.bg-scroll {
  background-attachment: scroll;
}

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

.bg-white {
  background-color: #fff;
}

.bg-grey-lighter-trans {
  background-color: rgba(242, 243, 246, .3);
}

.bg-grey-lighter {
  background-color: #f2f3f6;
}

.bg-grey {
  background-color: #e6e8ec;
}

.bg-grey-darker {
  background-color: #ced2db;
}

.bg-grey-darkest {
  background-color: #c1c6d2;
}

.bg-navy-lightest {
  background-color: #5e6b89;
}

.bg-navy-lighter {
  background-color: #6b7792;
}

.bg-navy {
  background-color: #081c4a;
}

.bg-navy-darker {
  background-color: #001035;
}

.bg-navy-darkest {
  background-color: #000e2d;
}

.bg-pink-lighter {
  background-color: #ffd0e5;
}

.bg-pink {
  background-color: #e31c78;
}

.bg-pink-darker {
  background-color: #bb0872;
}

.bg-pink-darkest {
  background-color: #aa0467;
}

.bg-teal {
  background-color: #2bd6c4;
}

.bg-teal-darker {
  background-color: #007b83;
}

.bg-teal-darkest {
  background-color: #005358;
}

.bg-blue {
  background-color: #05c2de;
}

.bg-navy-gradient-0 {
  background-color: #052b5f;
}

.bg-navy-gradient-100 {
  background-color: #041437;
}

.bg-pink-gradient-0 {
  background-color: #e31c78;
}

.bg-pink-gradient-100 {
  background-color: #b41c6e;
}

.bg-blue-gradient-0 {
  background-color: #05c2de;
}

.bg-blue-gradient-100 {
  background-color: #029fc7;
}

.bg-teal-gradient-0 {
  background-color: #2bd6c4;
}

.bg-teal-gradient-100 {
  background-color: #088c90;
}

.hover\:bg-transparent:hover {
  background-color: transparent;
}

.hover\:bg-white:hover {
  background-color: #fff;
}

.hover\:bg-grey-lighter-trans:hover {
  background-color: rgba(242, 243, 246, .3);
}

.hover\:bg-grey-lighter:hover {
  background-color: #f2f3f6;
}

.hover\:bg-grey:hover {
  background-color: #e6e8ec;
}

.hover\:bg-grey-darker:hover {
  background-color: #ced2db;
}

.hover\:bg-grey-darkest:hover {
  background-color: #c1c6d2;
}

.hover\:bg-navy-lightest:hover {
  background-color: #5e6b89;
}

.hover\:bg-navy-lighter:hover {
  background-color: #6b7792;
}

.hover\:bg-navy:hover {
  background-color: #081c4a;
}

.hover\:bg-navy-darker:hover {
  background-color: #001035;
}

.hover\:bg-navy-darkest:hover {
  background-color: #000e2d;
}

.hover\:bg-pink-lighter:hover {
  background-color: #ffd0e5;
}

.hover\:bg-pink:hover {
  background-color: #e31c78;
}

.hover\:bg-pink-darker:hover {
  background-color: #bb0872;
}

.hover\:bg-pink-darkest:hover {
  background-color: #aa0467;
}

.hover\:bg-teal:hover {
  background-color: #2bd6c4;
}

.hover\:bg-teal-darker:hover {
  background-color: #007b83;
}

.hover\:bg-teal-darkest:hover {
  background-color: #005358;
}

.hover\:bg-blue:hover {
  background-color: #05c2de;
}

.hover\:bg-navy-gradient-0:hover {
  background-color: #052b5f;
}

.hover\:bg-navy-gradient-100:hover {
  background-color: #041437;
}

.hover\:bg-pink-gradient-0:hover {
  background-color: #e31c78;
}

.hover\:bg-pink-gradient-100:hover {
  background-color: #b41c6e;
}

.hover\:bg-blue-gradient-0:hover {
  background-color: #05c2de;
}

.hover\:bg-blue-gradient-100:hover {
  background-color: #029fc7;
}

.hover\:bg-teal-gradient-0:hover {
  background-color: #2bd6c4;
}

.hover\:bg-teal-gradient-100:hover {
  background-color: #088c90;
}

.focus\:bg-transparent:focus {
  background-color: transparent;
}

.focus\:bg-white:focus {
  background-color: #fff;
}

.focus\:bg-grey-lighter-trans:focus {
  background-color: rgba(242, 243, 246, .3);
}

.focus\:bg-grey-lighter:focus {
  background-color: #f2f3f6;
}

.focus\:bg-grey:focus {
  background-color: #e6e8ec;
}

.focus\:bg-grey-darker:focus {
  background-color: #ced2db;
}

.focus\:bg-grey-darkest:focus {
  background-color: #c1c6d2;
}

.focus\:bg-navy-lightest:focus {
  background-color: #5e6b89;
}

.focus\:bg-navy-lighter:focus {
  background-color: #6b7792;
}

.focus\:bg-navy:focus {
  background-color: #081c4a;
}

.focus\:bg-navy-darker:focus {
  background-color: #001035;
}

.focus\:bg-navy-darkest:focus {
  background-color: #000e2d;
}

.focus\:bg-pink-lighter:focus {
  background-color: #ffd0e5;
}

.focus\:bg-pink:focus {
  background-color: #e31c78;
}

.focus\:bg-pink-darker:focus {
  background-color: #bb0872;
}

.focus\:bg-pink-darkest:focus {
  background-color: #aa0467;
}

.focus\:bg-teal:focus {
  background-color: #2bd6c4;
}

.focus\:bg-teal-darker:focus {
  background-color: #007b83;
}

.focus\:bg-teal-darkest:focus {
  background-color: #005358;
}

.focus\:bg-blue:focus {
  background-color: #05c2de;
}

.focus\:bg-navy-gradient-0:focus {
  background-color: #052b5f;
}

.focus\:bg-navy-gradient-100:focus {
  background-color: #041437;
}

.focus\:bg-pink-gradient-0:focus {
  background-color: #e31c78;
}

.focus\:bg-pink-gradient-100:focus {
  background-color: #b41c6e;
}

.focus\:bg-blue-gradient-0:focus {
  background-color: #05c2de;
}

.focus\:bg-blue-gradient-100:focus {
  background-color: #029fc7;
}

.focus\:bg-teal-gradient-0:focus {
  background-color: #2bd6c4;
}

.focus\:bg-teal-gradient-100:focus {
  background-color: #088c90;
}

.bg-bottom {
  background-position: bottom;
}

.bg-center {
  background-position: center;
}

.bg-left {
  background-position: left;
}

.bg-left-bottom {
  background-position: left bottom;
}

.bg-left-top {
  background-position: left top;
}

.bg-right {
  background-position: right;
}

.bg-right-bottom {
  background-position: right bottom;
}

.bg-right-top {
  background-position: right top;
}

.bg-top {
  background-position: top;
}

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

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

.bg-repeat-x {
  background-repeat: repeat-x;
}

.bg-repeat-y {
  background-repeat: repeat-y;
}

.bg-auto {
  background-size: auto;
}

.bg-cover {
  background-size: cover;
}

.bg-contain {
  background-size: contain;
}

.border-collapse {
  border-collapse: collapse;
}

.border-separate {
  border-collapse: separate;
}

.border-transparent {
  border-color: transparent;
}

.border-white {
  border-color: #fff;
}

.border-grey-lighter-trans {
  border-color: rgba(242, 243, 246, .3);
}

.border-grey-lighter {
  border-color: #f2f3f6;
}

.border-grey {
  border-color: #e6e8ec;
}

.border-grey-darker {
  border-color: #ced2db;
}

.border-grey-darkest {
  border-color: #c1c6d2;
}

.border-navy-lightest {
  border-color: #5e6b89;
}

.border-navy-lighter {
  border-color: #6b7792;
}

.border-navy {
  border-color: #081c4a;
}

.border-navy-darker {
  border-color: #001035;
}

.border-navy-darkest {
  border-color: #000e2d;
}

.border-pink-lighter {
  border-color: #ffd0e5;
}

.border-pink {
  border-color: #e31c78;
}

.border-pink-darker {
  border-color: #bb0872;
}

.border-pink-darkest {
  border-color: #aa0467;
}

.border-teal {
  border-color: #2bd6c4;
}

.border-teal-darker {
  border-color: #007b83;
}

.border-teal-darkest {
  border-color: #005358;
}

.border-blue {
  border-color: #05c2de;
}

.border-navy-gradient-0 {
  border-color: #052b5f;
}

.border-navy-gradient-100 {
  border-color: #041437;
}

.border-pink-gradient-0 {
  border-color: #e31c78;
}

.border-pink-gradient-100 {
  border-color: #b41c6e;
}

.border-blue-gradient-0 {
  border-color: #05c2de;
}

.border-blue-gradient-100 {
  border-color: #029fc7;
}

.border-teal-gradient-0 {
  border-color: #2bd6c4;
}

.border-teal-gradient-100 {
  border-color: #088c90;
}

.hover\:border-transparent:hover {
  border-color: transparent;
}

.hover\:border-white:hover {
  border-color: #fff;
}

.hover\:border-grey-lighter-trans:hover {
  border-color: rgba(242, 243, 246, .3);
}

.hover\:border-grey-lighter:hover {
  border-color: #f2f3f6;
}

.hover\:border-grey:hover {
  border-color: #e6e8ec;
}

.hover\:border-grey-darker:hover {
  border-color: #ced2db;
}

.hover\:border-grey-darkest:hover {
  border-color: #c1c6d2;
}

.hover\:border-navy-lightest:hover {
  border-color: #5e6b89;
}

.hover\:border-navy-lighter:hover {
  border-color: #6b7792;
}

.hover\:border-navy:hover {
  border-color: #081c4a;
}

.hover\:border-navy-darker:hover {
  border-color: #001035;
}

.hover\:border-navy-darkest:hover {
  border-color: #000e2d;
}

.hover\:border-pink-lighter:hover {
  border-color: #ffd0e5;
}

.hover\:border-pink:hover {
  border-color: #e31c78;
}

.hover\:border-pink-darker:hover {
  border-color: #bb0872;
}

.hover\:border-pink-darkest:hover {
  border-color: #aa0467;
}

.hover\:border-teal:hover {
  border-color: #2bd6c4;
}

.hover\:border-teal-darker:hover {
  border-color: #007b83;
}

.hover\:border-teal-darkest:hover {
  border-color: #005358;
}

.hover\:border-blue:hover {
  border-color: #05c2de;
}

.hover\:border-navy-gradient-0:hover {
  border-color: #052b5f;
}

.hover\:border-navy-gradient-100:hover {
  border-color: #041437;
}

.hover\:border-pink-gradient-0:hover {
  border-color: #e31c78;
}

.hover\:border-pink-gradient-100:hover {
  border-color: #b41c6e;
}

.hover\:border-blue-gradient-0:hover {
  border-color: #05c2de;
}

.hover\:border-blue-gradient-100:hover {
  border-color: #029fc7;
}

.hover\:border-teal-gradient-0:hover {
  border-color: #2bd6c4;
}

.hover\:border-teal-gradient-100:hover {
  border-color: #088c90;
}

.focus\:border-transparent:focus {
  border-color: transparent;
}

.focus\:border-white:focus {
  border-color: #fff;
}

.focus\:border-grey-lighter-trans:focus {
  border-color: rgba(242, 243, 246, .3);
}

.focus\:border-grey-lighter:focus {
  border-color: #f2f3f6;
}

.focus\:border-grey:focus {
  border-color: #e6e8ec;
}

.focus\:border-grey-darker:focus {
  border-color: #ced2db;
}

.focus\:border-grey-darkest:focus {
  border-color: #c1c6d2;
}

.focus\:border-navy-lightest:focus {
  border-color: #5e6b89;
}

.focus\:border-navy-lighter:focus {
  border-color: #6b7792;
}

.focus\:border-navy:focus {
  border-color: #081c4a;
}

.focus\:border-navy-darker:focus {
  border-color: #001035;
}

.focus\:border-navy-darkest:focus {
  border-color: #000e2d;
}

.focus\:border-pink-lighter:focus {
  border-color: #ffd0e5;
}

.focus\:border-pink:focus {
  border-color: #e31c78;
}

.focus\:border-pink-darker:focus {
  border-color: #bb0872;
}

.focus\:border-pink-darkest:focus {
  border-color: #aa0467;
}

.focus\:border-teal:focus {
  border-color: #2bd6c4;
}

.focus\:border-teal-darker:focus {
  border-color: #007b83;
}

.focus\:border-teal-darkest:focus {
  border-color: #005358;
}

.focus\:border-blue:focus {
  border-color: #05c2de;
}

.focus\:border-navy-gradient-0:focus {
  border-color: #052b5f;
}

.focus\:border-navy-gradient-100:focus {
  border-color: #041437;
}

.focus\:border-pink-gradient-0:focus {
  border-color: #e31c78;
}

.focus\:border-pink-gradient-100:focus {
  border-color: #b41c6e;
}

.focus\:border-blue-gradient-0:focus {
  border-color: #05c2de;
}

.focus\:border-blue-gradient-100:focus {
  border-color: #029fc7;
}

.focus\:border-teal-gradient-0:focus {
  border-color: #2bd6c4;
}

.focus\:border-teal-gradient-100:focus {
  border-color: #088c90;
}

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

.rounded {
  border-radius: 6px;
}

.rounded-form {
  border-radius: 21px;
}

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

.rounded-t-none {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

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

.rounded-b-none {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.rounded-l-none {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

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

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

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

.rounded-l {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

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

.rounded-r-form {
  border-top-right-radius: 21px;
  border-bottom-right-radius: 21px;
}

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

.rounded-l-form {
  border-top-left-radius: 21px;
  border-bottom-left-radius: 21px;
}

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

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

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

.rounded-l-full {
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px;
}

.rounded-tl-none {
  border-top-left-radius: 0;
}

.rounded-tr-none {
  border-top-right-radius: 0;
}

.rounded-br-none {
  border-bottom-right-radius: 0;
}

.rounded-bl-none {
  border-bottom-left-radius: 0;
}

.rounded-tl {
  border-top-left-radius: 6px;
}

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

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

.rounded-bl {
  border-bottom-left-radius: 6px;
}

.rounded-tl-form {
  border-top-left-radius: 21px;
}

.rounded-tr-form {
  border-top-right-radius: 21px;
}

.rounded-br-form {
  border-bottom-right-radius: 21px;
}

.rounded-bl-form {
  border-bottom-left-radius: 21px;
}

.rounded-tl-full {
  border-top-left-radius: 9999px;
}

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

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

.rounded-bl-full {
  border-bottom-left-radius: 9999px;
}

.border-solid {
  border-style: solid;
}

.border-dashed {
  border-style: dashed;
}

.border-dotted {
  border-style: dotted;
}

.border-none {
  border-style: none;
}

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

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

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

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

.border {
  border-width: 1px;
}

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

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

.border-b-0 {
  border-bottom-width: 0;
}

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

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

.border-r-2 {
  border-right-width: 2px;
}

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

.border-l-2 {
  border-left-width: 2px;
}

.border-t-4 {
  border-top-width: 4px;
}

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

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

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

.border-t-8 {
  border-top-width: 8px;
}

.border-r-8 {
  border-right-width: 8px;
}

.border-b-8 {
  border-bottom-width: 8px;
}

.border-l-8 {
  border-left-width: 8px;
}

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

.border-r {
  border-right-width: 1px;
}

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

.border-l {
  border-left-width: 1px;
}

.cursor-auto {
  cursor: auto;
}

.cursor-default {
  cursor: default;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-wait {
  cursor: wait;
}

.cursor-move {
  cursor: move;
}

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

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.table {
  display: table;
}

.table-row {
  display: table-row;
}

.table-cell {
  display: table-cell;
}

.hidden {
  display: none;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

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

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

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

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

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

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-no-wrap {
  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;
}

.items-stretch {
  align-items: stretch;
}

.self-auto {
  align-self: auto;
}

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

.self-end {
  align-self: flex-end;
}

.self-center {
  align-self: center;
}

.self-stretch {
  align-self: stretch;
}

.justify-start {
  justify-content: flex-start;
}

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

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

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

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

.content-center {
  align-content: center;
}

.content-start {
  align-content: flex-start;
}

.content-end {
  align-content: flex-end;
}

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

.content-around {
  align-content: space-around;
}

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

.flex-auto {
  flex: 1 1 auto;
}

.flex-initial {
  flex: 0 1 auto;
}

.flex-none {
  flex: none;
}

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

.flex-shrink {
  flex-shrink: 1;
}

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

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

.float-right {
  float: right;
}

.float-left {
  float: left;
}

.float-none {
  float: none;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.font-rubik {
  font-family: Rubik, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

.font-montserrat {
  font-family: Montserrat, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

.font-light {
  font-weight: 300;
}

.font-regular {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

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

.hover\:font-light:hover {
  font-weight: 300;
}

.hover\:font-regular:hover {
  font-weight: 400;
}

.hover\:font-medium:hover {
  font-weight: 500;
}

.hover\:font-semibold:hover {
  font-weight: 600;
}

.hover\:font-bold:hover {
  font-weight: 700;
}

.focus\:font-light:focus {
  font-weight: 300;
}

.focus\:font-regular:focus {
  font-weight: 400;
}

.focus\:font-medium:focus {
  font-weight: 500;
}

.focus\:font-semibold:focus {
  font-weight: 600;
}

.focus\:font-bold:focus {
  font-weight: 700;
}

.h-1 {
  height: .25rem;
}

.h-2 {
  height: .5rem;
}

.h-3 {
  height: .75rem;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-8 {
  height: 2rem;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-16 {
  height: 4rem;
}

.h-24 {
  height: 6rem;
}

.h-32 {
  height: 8rem;
}

.h-48 {
  height: 12rem;
}

.h-64 {
  height: 16rem;
}

.h-auto {
  height: auto;
}

.h-px {
  height: 1px;
}

.h-full {
  height: 100%;
}

.h-screen {
  height: 100vh;
}

.leading-14 {
  line-height: 14px;
}

.leading-18 {
  line-height: 18px;
}

.leading-20 {
  line-height: 20px;
}

.leading-22 {
  line-height: 22px;
}

.leading-26 {
  line-height: 26px;
}

.leading-28 {
  line-height: 28px;
}

.leading-30 {
  line-height: 30px;
}

.leading-32 {
  line-height: 32px;
}

.leading-36 {
  line-height: 36px;
}

.leading-38 {
  line-height: 38px;
}

.leading-40 {
  line-height: 40px;
}

.leading-42 {
  line-height: 42px;
}

.leading-60 {
  line-height: 60px;
}

.m-0 {
  margin: 0;
}

.m-4 {
  margin: 4px;
}

.m-5 {
  margin: 5px;
}

.m-8 {
  margin: 8px;
}

.m-10 {
  margin: 10px;
}

.m-15 {
  margin: 15px;
}

.m-20 {
  margin: 20px;
}

.m-25 {
  margin: 25px;
}

.m-30 {
  margin: 30px;
}

.m-35 {
  margin: 35px;
}

.m-40 {
  margin: 40px;
}

.m-auto {
  margin: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mr-0 {
  margin-right: 0;
}

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

.ml-0 {
  margin-left: 0;
}

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

.mr-4 {
  margin-right: 4px;
}

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

.ml-4 {
  margin-left: 4px;
}

.mt-5 {
  margin-top: 5px;
}

.mr-5 {
  margin-right: 5px;
}

.mb-5 {
  margin-bottom: 5px;
}

.ml-5 {
  margin-left: 5px;
}

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

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

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

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

.mt-10 {
  margin-top: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.ml-10 {
  margin-left: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mr-15 {
  margin-right: 15px;
}

.mb-15 {
  margin-bottom: 15px;
}

.ml-15 {
  margin-left: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.ml-20 {
  margin-left: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mr-25 {
  margin-right: 25px;
}

.mb-25 {
  margin-bottom: 25px;
}

.ml-25 {
  margin-left: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mr-30 {
  margin-right: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.ml-30 {
  margin-left: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mr-35 {
  margin-right: 35px;
}

.mb-35 {
  margin-bottom: 35px;
}

.ml-35 {
  margin-left: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mr-40 {
  margin-right: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.ml-40 {
  margin-left: 40px;
}

.mt-auto {
  margin-top: auto;
}

.mr-auto {
  margin-right: auto;
}

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

.ml-auto {
  margin-left: auto;
}

.max-h-0 {
  max-height: 0px;
}

.max-h-30 {
  max-height: 30px;
}

.max-h-35 {
  max-height: 35px;
}

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

.max-h-screen {
  max-height: 100vh;
}

.max-w-200 {
  max-width: 200px;
}

.max-w-300 {
  max-width: 300px;
}

.max-w-400 {
  max-width: 400px;
}

.max-w-540 {
  max-width: 540px;
}

.max-w-600 {
  max-width: 600px;
}

.max-w-800 {
  max-width: 700px;
}

.max-w-920 {
  max-width: 920px;
}

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

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

.max-w-1\/3 {
  max-width: 33.33333%;
}

.max-w-2\/3 {
  max-width: 66.66667%;
}

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

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

.max-w-1\/5 {
  max-width: 20%;
}

.max-w-2\/5 {
  max-width: 40%;
}

.max-w-3\/5 {
  max-width: 60%;
}

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

.max-w-1\/6 {
  max-width: 16.66667%;
}

.max-w-5\/6 {
  max-width: 83.33333%;
}

.max-w-1\/12 {
  max-width: 8.33333%;
}

.min-h-0 {
  min-height: 0;
}

.min-h-70 {
  min-height: 70px;
}

.min-h-100 {
  min-height: 100px;
}

.min-h-260 {
  min-height: 260px;
}

.min-h-300 {
  min-height: 300px;
}

.min-h-400 {
  min-height: 400px;
}

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

.min-h-600 {
  min-height: 600px;
}

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

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

.min-w-0 {
  min-width: 0;
}

.min-w-100 {
  min-width: 100px;
}

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

.-m-10 {
  margin: -10px;
}

.-m-11 {
  margin: -11px;
}

.-m-15 {
  margin: -15px;
}

.-m-25 {
  margin: -25px;
}

.-m-30 {
  margin: -30px;
}

.-m-42 {
  margin: -42px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.-mt-10 {
  margin-top: -10px;
}

.-mr-10 {
  margin-right: -10px;
}

.-mb-10 {
  margin-bottom: -10px;
}

.-ml-10 {
  margin-left: -10px;
}

.-mt-11 {
  margin-top: -11px;
}

.-mr-11 {
  margin-right: -11px;
}

.-mb-11 {
  margin-bottom: -11px;
}

.-ml-11 {
  margin-left: -11px;
}

.-mt-15 {
  margin-top: -15px;
}

.-mr-15 {
  margin-right: -15px;
}

.-mb-15 {
  margin-bottom: -15px;
}

.-ml-15 {
  margin-left: -15px;
}

.-mt-25 {
  margin-top: -25px;
}

.-mr-25 {
  margin-right: -25px;
}

.-mb-25 {
  margin-bottom: -25px;
}

.-ml-25 {
  margin-left: -25px;
}

.-mt-30 {
  margin-top: -30px;
}

.-mr-30 {
  margin-right: -30px;
}

.-mb-30 {
  margin-bottom: -30px;
}

.-ml-30 {
  margin-left: -30px;
}

.-mt-42 {
  margin-top: -42px;
}

.-mr-42 {
  margin-right: -42px;
}

.-mb-42 {
  margin-bottom: -42px;
}

.-ml-42 {
  margin-left: -42px;
}

.opacity-0 {
  opacity: 0;
}

.opacity-25 {
  opacity: .25;
}

.opacity-50 {
  opacity: .5;
}

.opacity-75 {
  opacity: .75;
}

.opacity-100 {
  opacity: 1;
}

.outline-none {
  outline: 0;
}

.focus\:outline-none:focus {
  outline: 0;
}

.overflow-auto {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-visible {
  overflow: visible;
}

.overflow-scroll {
  overflow: scroll;
}

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

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

.overflow-x-hidden {
  overflow-x: hidden;
}

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

.overflow-x-visible {
  overflow-x: visible;
}

.overflow-y-visible {
  overflow-y: visible;
}

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

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

.scrolling-touch {
  -webkit-overflow-scrolling: touch;
}

.scrolling-auto {
  -webkit-overflow-scrolling: auto;
}

.p-0 {
  padding: 0;
}

.p-5 {
  padding: 5px;
}

.p-8 {
  padding: 8px;
}

.p-10 {
  padding: 10px;
}

.p-14 {
  padding: 14px;
}

.p-15 {
  padding: 15px;
}

.p-20 {
  padding: 20px;
}

.p-25 {
  padding: 25px;
}

.p-28 {
  padding: 28px;
}

.p-30 {
  padding: 30px;
}

.p-40 {
  padding: 40px;
}

.p-50 {
  padding: 50px;
}

.p-60 {
  padding: 60px;
}

.p-80 {
  padding: 80px;
}

.p-95 {
  padding: 95px;
}

.p-100 {
  padding: 100px;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

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

.py-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

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

.py-8 {
  padding-top: 8px;
  padding-bottom: 8px;
}

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

.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

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

.py-14 {
  padding-top: 14px;
  padding-bottom: 14px;
}

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

.py-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

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

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

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

.py-25 {
  padding-top: 25px;
  padding-bottom: 25px;
}

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

.py-28 {
  padding-top: 28px;
  padding-bottom: 28px;
}

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

.py-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

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

.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

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

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

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

.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

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

.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.py-95 {
  padding-top: 95px;
  padding-bottom: 95px;
}

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

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

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

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

.pr-0 {
  padding-right: 0;
}

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

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

.pt-5 {
  padding-top: 5px;
}

.pr-5 {
  padding-right: 5px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pl-5 {
  padding-left: 5px;
}

.pt-8 {
  padding-top: 8px;
}

.pr-8 {
  padding-right: 8px;
}

.pb-8 {
  padding-bottom: 8px;
}

.pl-8 {
  padding-left: 8px;
}

.pt-10 {
  padding-top: 10px;
}

.pr-10 {
  padding-right: 10px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pl-10 {
  padding-left: 10px;
}

.pt-14 {
  padding-top: 14px;
}

.pr-14 {
  padding-right: 14px;
}

.pb-14 {
  padding-bottom: 14px;
}

.pl-14 {
  padding-left: 14px;
}

.pt-15 {
  padding-top: 15px;
}

.pr-15 {
  padding-right: 15px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pl-15 {
  padding-left: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pr-25 {
  padding-right: 25px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pl-25 {
  padding-left: 25px;
}

.pt-28 {
  padding-top: 28px;
}

.pr-28 {
  padding-right: 28px;
}

.pb-28 {
  padding-bottom: 28px;
}

.pl-28 {
  padding-left: 28px;
}

.pt-30 {
  padding-top: 30px;
}

.pr-30 {
  padding-right: 30px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pl-30 {
  padding-left: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pr-40 {
  padding-right: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pl-40 {
  padding-left: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pr-50 {
  padding-right: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pl-50 {
  padding-left: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pr-60 {
  padding-right: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pl-60 {
  padding-left: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pr-80 {
  padding-right: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pl-80 {
  padding-left: 80px;
}

.pt-95 {
  padding-top: 95px;
}

.pr-95 {
  padding-right: 95px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pl-95 {
  padding-left: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pr-100 {
  padding-right: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pl-100 {
  padding-left: 100px;
}

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

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

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.pin-none {
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}

.pin {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.pin-y {
  top: 0;
  bottom: 0;
}

.pin-x {
  right: 0;
  left: 0;
}

.pin-t {
  top: 0;
}

.pin-r {
  right: 0;
}

.pin-b {
  bottom: 0;
}

.pin-l {
  left: 0;
}

.resize-none {
  resize: none;
}

.resize-y {
  resize: vertical;
}

.resize-x {
  resize: horizontal;
}

.resize {
  resize: both;
}

.shadow {
  box-shadow: 0 1px 4px 0 rgba(7, 29, 73, .1);
}

.shadow-lg {
  box-shadow: 0 3px 6px 0 rgba(7, 29, 73, .1);
}

.shadow-popover {
  box-shadow: 0 4px 6px 0 rgba(7, 29, 73, .3);
}

.shadow-inner {
  box-shadow: inset 0 0 6px 0 rgba(7, 29, 73, .1);
}

.shadow-none {
  box-shadow: none;
}

.hover\:shadow:hover {
  box-shadow: 0 1px 4px 0 rgba(7, 29, 73, .1);
}

.hover\:shadow-lg:hover {
  box-shadow: 0 3px 6px 0 rgba(7, 29, 73, .1);
}

.hover\:shadow-popover:hover {
  box-shadow: 0 4px 6px 0 rgba(7, 29, 73, .3);
}

.hover\:shadow-inner:hover {
  box-shadow: inset 0 0 6px 0 rgba(7, 29, 73, .1);
}

.hover\:shadow-none:hover {
  box-shadow: none;
}

.focus\:shadow:focus {
  box-shadow: 0 1px 4px 0 rgba(7, 29, 73, .1);
}

.focus\:shadow-lg:focus {
  box-shadow: 0 3px 6px 0 rgba(7, 29, 73, .1);
}

.focus\:shadow-popover:focus {
  box-shadow: 0 4px 6px 0 rgba(7, 29, 73, .3);
}

.focus\:shadow-inner:focus {
  box-shadow: inset 0 0 6px 0 rgba(7, 29, 73, .1);
}

.focus\:shadow-none:focus {
  box-shadow: none;
}

.fill-current {
  fill: currentColor;
}

.stroke-current {
  stroke: currentColor;
}

.table-auto {
  table-layout: auto;
}

.table-fixed {
  table-layout: fixed;
}

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

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

.text-right {
  text-align: right;
}

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

.text-transparent {
  color: transparent;
}

.text-white {
  color: #fff;
}

.text-grey-lighter-trans {
  color: rgba(242, 243, 246, .3);
}

.text-grey-lighter {
  color: #f2f3f6;
}

.text-grey {
  color: #e6e8ec;
}

.text-grey-darker {
  color: #ced2db;
}

.text-grey-darkest {
  color: #c1c6d2;
}

.text-navy-lightest {
  color: #5e6b89;
}

.text-navy-lighter {
  color: #6b7792;
}

.text-navy {
  color: #081c4a;
}

.text-navy-darker {
  color: #001035;
}

.text-navy-darkest {
  color: #000e2d;
}

.text-pink-lighter {
  color: #ffd0e5;
}

.text-pink {
  color: #e31c78;
}

.text-pink-darker {
  color: #bb0872;
}

.text-pink-darkest {
  color: #aa0467;
}

.text-teal {
  color: #2bd6c4;
}

.text-teal-darker {
  color: #007b83;
}

.text-teal-darkest {
  color: #005358;
}

.text-blue {
  color: #05c2de;
}

.text-navy-gradient-0 {
  color: #052b5f;
}

.text-navy-gradient-100 {
  color: #041437;
}

.text-pink-gradient-0 {
  color: #e31c78;
}

.text-pink-gradient-100 {
  color: #b41c6e;
}

.text-blue-gradient-0 {
  color: #05c2de;
}

.text-blue-gradient-100 {
  color: #029fc7;
}

.text-teal-gradient-0 {
  color: #2bd6c4;
}

.text-teal-gradient-100 {
  color: #088c90;
}

.hover\:text-transparent:hover {
  color: transparent;
}

.hover\:text-white:hover {
  color: #fff;
}

.hover\:text-grey-lighter-trans:hover {
  color: rgba(242, 243, 246, .3);
}

.hover\:text-grey-lighter:hover {
  color: #f2f3f6;
}

.hover\:text-grey:hover {
  color: #e6e8ec;
}

.hover\:text-grey-darker:hover {
  color: #ced2db;
}

.hover\:text-grey-darkest:hover {
  color: #c1c6d2;
}

.hover\:text-navy-lightest:hover {
  color: #5e6b89;
}

.hover\:text-navy-lighter:hover {
  color: #6b7792;
}

.hover\:text-navy:hover {
  color: #081c4a;
}

.hover\:text-navy-darker:hover {
  color: #001035;
}

.hover\:text-navy-darkest:hover {
  color: #000e2d;
}

.hover\:text-pink-lighter:hover {
  color: #ffd0e5;
}

.hover\:text-pink:hover {
  color: #e31c78;
}

.hover\:text-pink-darker:hover {
  color: #bb0872;
}

.hover\:text-pink-darkest:hover {
  color: #aa0467;
}

.hover\:text-teal:hover {
  color: #2bd6c4;
}

.hover\:text-teal-darker:hover {
  color: #007b83;
}

.hover\:text-teal-darkest:hover {
  color: #005358;
}

.hover\:text-blue:hover {
  color: #05c2de;
}

.hover\:text-navy-gradient-0:hover {
  color: #052b5f;
}

.hover\:text-navy-gradient-100:hover {
  color: #041437;
}

.hover\:text-pink-gradient-0:hover {
  color: #e31c78;
}

.hover\:text-pink-gradient-100:hover {
  color: #b41c6e;
}

.hover\:text-blue-gradient-0:hover {
  color: #05c2de;
}

.hover\:text-blue-gradient-100:hover {
  color: #029fc7;
}

.hover\:text-teal-gradient-0:hover {
  color: #2bd6c4;
}

.hover\:text-teal-gradient-100:hover {
  color: #088c90;
}

.focus\:text-transparent:focus {
  color: transparent;
}

.focus\:text-white:focus {
  color: #fff;
}

.focus\:text-grey-lighter-trans:focus {
  color: rgba(242, 243, 246, .3);
}

.focus\:text-grey-lighter:focus {
  color: #f2f3f6;
}

.focus\:text-grey:focus {
  color: #e6e8ec;
}

.focus\:text-grey-darker:focus {
  color: #ced2db;
}

.focus\:text-grey-darkest:focus {
  color: #c1c6d2;
}

.focus\:text-navy-lightest:focus {
  color: #5e6b89;
}

.focus\:text-navy-lighter:focus {
  color: #6b7792;
}

.focus\:text-navy:focus {
  color: #081c4a;
}

.focus\:text-navy-darker:focus {
  color: #001035;
}

.focus\:text-navy-darkest:focus {
  color: #000e2d;
}

.focus\:text-pink-lighter:focus {
  color: #ffd0e5;
}

.focus\:text-pink:focus {
  color: #e31c78;
}

.focus\:text-pink-darker:focus {
  color: #bb0872;
}

.focus\:text-pink-darkest:focus {
  color: #aa0467;
}

.focus\:text-teal:focus {
  color: #2bd6c4;
}

.focus\:text-teal-darker:focus {
  color: #007b83;
}

.focus\:text-teal-darkest:focus {
  color: #005358;
}

.focus\:text-blue:focus {
  color: #05c2de;
}

.focus\:text-navy-gradient-0:focus {
  color: #052b5f;
}

.focus\:text-navy-gradient-100:focus {
  color: #041437;
}

.focus\:text-pink-gradient-0:focus {
  color: #e31c78;
}

.focus\:text-pink-gradient-100:focus {
  color: #b41c6e;
}

.focus\:text-blue-gradient-0:focus {
  color: #05c2de;
}

.focus\:text-blue-gradient-100:focus {
  color: #029fc7;
}

.focus\:text-teal-gradient-0:focus {
  color: #2bd6c4;
}

.focus\:text-teal-gradient-100:focus {
  color: #088c90;
}

.text-12 {
  font-size: 12px;
}

.text-13 {
  font-size: 13px;
}

.text-14 {
  font-size: 14px;
}

.text-15 {
  font-size: 15px;
}

.text-16 {
  font-size: 16px;
}

.text-18 {
  font-size: 18px;
}

.text-19 {
  font-size: 19px;
}

.text-20 {
  font-size: 20px;
}

.text-24 {
  font-size: 24px;
}

.text-28 {
  font-size: 28px;
}

.text-32 {
  font-size: 32px;
}

.text-52 {
  font-size: 52px;
}

.italic {
  font-style: italic;
}

.roman {
  font-style: normal;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.normal-case {
  text-transform: none;
}

.underline {
  text-decoration: underline;
}

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

.no-underline {
  text-decoration: none;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.subpixel-antialiased {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

.hover\:italic:hover {
  font-style: italic;
}

.hover\:roman:hover {
  font-style: normal;
}

.hover\:uppercase:hover {
  text-transform: uppercase;
}

.hover\:lowercase:hover {
  text-transform: lowercase;
}

.hover\:capitalize:hover {
  text-transform: capitalize;
}

.hover\:normal-case:hover {
  text-transform: none;
}

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

.hover\:line-through:hover {
  text-decoration: line-through;
}

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

.hover\:antialiased:hover {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hover\:subpixel-antialiased:hover {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

.focus\:italic:focus {
  font-style: italic;
}

.focus\:roman:focus {
  font-style: normal;
}

.focus\:uppercase:focus {
  text-transform: uppercase;
}

.focus\:lowercase:focus {
  text-transform: lowercase;
}

.focus\:capitalize:focus {
  text-transform: capitalize;
}

.focus\:normal-case:focus {
  text-transform: none;
}

.focus\:underline:focus {
  text-decoration: underline;
}

.focus\:line-through:focus {
  text-decoration: line-through;
}

.focus\:no-underline:focus {
  text-decoration: none;
}

.focus\:antialiased:focus {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.focus\:subpixel-antialiased:focus {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

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

.select-text {
  user-select: text;
}

.align-baseline {
  vertical-align: baseline;
}

.align-top {
  vertical-align: top;
}

.align-middle {
  vertical-align: middle;
}

.align-bottom {
  vertical-align: bottom;
}

.align-text-top {
  vertical-align: text-top;
}

.align-text-bottom {
  vertical-align: text-bottom;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

.whitespace-normal {
  white-space: normal;
}

.whitespace-no-wrap {
  white-space: nowrap;
}

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

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

.whitespace-pre-wrap {
  white-space: pre-wrap;
}

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

.break-normal {
  word-wrap: normal;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.w-4 {
  width: 4px;
}

.w-150 {
  width: 150px;
}

.w-200 {
  width: 200px;
}

.w-250 {
  width: 250px;
}

.w-380 {
  width: 380px;
}

.w-auto {
  width: auto;
}

.w-px {
  width: 1px;
}

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

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

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

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

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

.w-1\/5 {
  width: 20%;
}

.w-2\/5 {
  width: 40%;
}

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

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

.w-1\/6 {
  width: 16.66667%;
}

.w-5\/6 {
  width: 83.33333%;
}

.w-1\/12 {
  width: 8.33333%;
}

.w-5\/12 {
  width: 41.66667%;
}

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

.w-full {
  width: 100%;
}

.w-screen {
  width: 100vw;
}

.z-0 {
  z-index: 0;
}

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

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

.z-30 {
  z-index: 30;
}

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

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

.z-auto {
  z-index: auto;
}

/**
 * Here you would add any custom utilities you need that don't come out of the
 * box with Tailwind.
 *
 * Example :
 *
 * .bg-pattern-graph-paper { ... }
 * .skew-45 { ... }
 *
 * Or if using a preprocessor or `postcss-import`:
 *
 * @import "utilities/background-patterns";
 * @import "utilities/skew-transforms";
 */

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.order-first {
  order: 0;
}

.order-last {
  order: 99;
}

::selection {
  background-color: #e31c78;
  color: #fff;
}

.bg-white .container,
.bg-grey .container,
.bg-grey-lighter .container {
  color: #081c4a;
}

main {
  overflow: hidden;
}

main section:not(.full-form):first-child {
  padding-top: 60px;
}

@media (min-width: 768px) {
  main section:not(.full-form):first-child {
    padding-top: 180px;
  }
}

@media (min-width: 992px) {
  main section:not(.full-form):first-child {
    padding-top: 100px;
  }
}

@media (min-width: 576px) {
  .sm\:appearance-none {
    appearance: none;
  }

  .sm\:bg-fixed {
    background-attachment: fixed;
  }

  .sm\:bg-local {
    background-attachment: local;
  }

  .sm\:bg-scroll {
    background-attachment: scroll;
  }

  .sm\:bg-transparent {
    background-color: transparent;
  }

  .sm\:bg-white {
    background-color: #fff;
  }

  .sm\:bg-grey-lighter-trans {
    background-color: rgba(242, 243, 246, .3);
  }

  .sm\:bg-grey-lighter {
    background-color: #f2f3f6;
  }

  .sm\:bg-grey {
    background-color: #e6e8ec;
  }

  .sm\:bg-grey-darker {
    background-color: #ced2db;
  }

  .sm\:bg-grey-darkest {
    background-color: #c1c6d2;
  }

  .sm\:bg-navy-lightest {
    background-color: #5e6b89;
  }

  .sm\:bg-navy-lighter {
    background-color: #6b7792;
  }

  .sm\:bg-navy {
    background-color: #081c4a;
  }

  .sm\:bg-navy-darker {
    background-color: #001035;
  }

  .sm\:bg-navy-darkest {
    background-color: #000e2d;
  }

  .sm\:bg-pink-lighter {
    background-color: #ffd0e5;
  }

  .sm\:bg-pink {
    background-color: #e31c78;
  }

  .sm\:bg-pink-darker {
    background-color: #bb0872;
  }

  .sm\:bg-pink-darkest {
    background-color: #aa0467;
  }

  .sm\:bg-teal {
    background-color: #2bd6c4;
  }

  .sm\:bg-teal-darker {
    background-color: #007b83;
  }

  .sm\:bg-teal-darkest {
    background-color: #005358;
  }

  .sm\:bg-blue {
    background-color: #05c2de;
  }

  .sm\:bg-navy-gradient-0 {
    background-color: #052b5f;
  }

  .sm\:bg-navy-gradient-100 {
    background-color: #041437;
  }

  .sm\:bg-pink-gradient-0 {
    background-color: #e31c78;
  }

  .sm\:bg-pink-gradient-100 {
    background-color: #b41c6e;
  }

  .sm\:bg-blue-gradient-0 {
    background-color: #05c2de;
  }

  .sm\:bg-blue-gradient-100 {
    background-color: #029fc7;
  }

  .sm\:bg-teal-gradient-0 {
    background-color: #2bd6c4;
  }

  .sm\:bg-teal-gradient-100 {
    background-color: #088c90;
  }

  .sm\:hover\:bg-transparent:hover {
    background-color: transparent;
  }

  .sm\:hover\:bg-white:hover {
    background-color: #fff;
  }

  .sm\:hover\:bg-grey-lighter-trans:hover {
    background-color: rgba(242, 243, 246, .3);
  }

  .sm\:hover\:bg-grey-lighter:hover {
    background-color: #f2f3f6;
  }

  .sm\:hover\:bg-grey:hover {
    background-color: #e6e8ec;
  }

  .sm\:hover\:bg-grey-darker:hover {
    background-color: #ced2db;
  }

  .sm\:hover\:bg-grey-darkest:hover {
    background-color: #c1c6d2;
  }

  .sm\:hover\:bg-navy-lightest:hover {
    background-color: #5e6b89;
  }

  .sm\:hover\:bg-navy-lighter:hover {
    background-color: #6b7792;
  }

  .sm\:hover\:bg-navy:hover {
    background-color: #081c4a;
  }

  .sm\:hover\:bg-navy-darker:hover {
    background-color: #001035;
  }

  .sm\:hover\:bg-navy-darkest:hover {
    background-color: #000e2d;
  }

  .sm\:hover\:bg-pink-lighter:hover {
    background-color: #ffd0e5;
  }

  .sm\:hover\:bg-pink:hover {
    background-color: #e31c78;
  }

  .sm\:hover\:bg-pink-darker:hover {
    background-color: #bb0872;
  }

  .sm\:hover\:bg-pink-darkest:hover {
    background-color: #aa0467;
  }

  .sm\:hover\:bg-teal:hover {
    background-color: #2bd6c4;
  }

  .sm\:hover\:bg-teal-darker:hover {
    background-color: #007b83;
  }

  .sm\:hover\:bg-teal-darkest:hover {
    background-color: #005358;
  }

  .sm\:hover\:bg-blue:hover {
    background-color: #05c2de;
  }

  .sm\:hover\:bg-navy-gradient-0:hover {
    background-color: #052b5f;
  }

  .sm\:hover\:bg-navy-gradient-100:hover {
    background-color: #041437;
  }

  .sm\:hover\:bg-pink-gradient-0:hover {
    background-color: #e31c78;
  }

  .sm\:hover\:bg-pink-gradient-100:hover {
    background-color: #b41c6e;
  }

  .sm\:hover\:bg-blue-gradient-0:hover {
    background-color: #05c2de;
  }

  .sm\:hover\:bg-blue-gradient-100:hover {
    background-color: #029fc7;
  }

  .sm\:hover\:bg-teal-gradient-0:hover {
    background-color: #2bd6c4;
  }

  .sm\:hover\:bg-teal-gradient-100:hover {
    background-color: #088c90;
  }

  .sm\:focus\:bg-transparent:focus {
    background-color: transparent;
  }

  .sm\:focus\:bg-white:focus {
    background-color: #fff;
  }

  .sm\:focus\:bg-grey-lighter-trans:focus {
    background-color: rgba(242, 243, 246, .3);
  }

  .sm\:focus\:bg-grey-lighter:focus {
    background-color: #f2f3f6;
  }

  .sm\:focus\:bg-grey:focus {
    background-color: #e6e8ec;
  }

  .sm\:focus\:bg-grey-darker:focus {
    background-color: #ced2db;
  }

  .sm\:focus\:bg-grey-darkest:focus {
    background-color: #c1c6d2;
  }

  .sm\:focus\:bg-navy-lightest:focus {
    background-color: #5e6b89;
  }

  .sm\:focus\:bg-navy-lighter:focus {
    background-color: #6b7792;
  }

  .sm\:focus\:bg-navy:focus {
    background-color: #081c4a;
  }

  .sm\:focus\:bg-navy-darker:focus {
    background-color: #001035;
  }

  .sm\:focus\:bg-navy-darkest:focus {
    background-color: #000e2d;
  }

  .sm\:focus\:bg-pink-lighter:focus {
    background-color: #ffd0e5;
  }

  .sm\:focus\:bg-pink:focus {
    background-color: #e31c78;
  }

  .sm\:focus\:bg-pink-darker:focus {
    background-color: #bb0872;
  }

  .sm\:focus\:bg-pink-darkest:focus {
    background-color: #aa0467;
  }

  .sm\:focus\:bg-teal:focus {
    background-color: #2bd6c4;
  }

  .sm\:focus\:bg-teal-darker:focus {
    background-color: #007b83;
  }

  .sm\:focus\:bg-teal-darkest:focus {
    background-color: #005358;
  }

  .sm\:focus\:bg-blue:focus {
    background-color: #05c2de;
  }

  .sm\:focus\:bg-navy-gradient-0:focus {
    background-color: #052b5f;
  }

  .sm\:focus\:bg-navy-gradient-100:focus {
    background-color: #041437;
  }

  .sm\:focus\:bg-pink-gradient-0:focus {
    background-color: #e31c78;
  }

  .sm\:focus\:bg-pink-gradient-100:focus {
    background-color: #b41c6e;
  }

  .sm\:focus\:bg-blue-gradient-0:focus {
    background-color: #05c2de;
  }

  .sm\:focus\:bg-blue-gradient-100:focus {
    background-color: #029fc7;
  }

  .sm\:focus\:bg-teal-gradient-0:focus {
    background-color: #2bd6c4;
  }

  .sm\:focus\:bg-teal-gradient-100:focus {
    background-color: #088c90;
  }

  .sm\:bg-bottom {
    background-position: bottom;
  }

  .sm\:bg-center {
    background-position: center;
  }

  .sm\:bg-left {
    background-position: left;
  }

  .sm\:bg-left-bottom {
    background-position: left bottom;
  }

  .sm\:bg-left-top {
    background-position: left top;
  }

  .sm\:bg-right {
    background-position: right;
  }

  .sm\:bg-right-bottom {
    background-position: right bottom;
  }

  .sm\:bg-right-top {
    background-position: right top;
  }

  .sm\:bg-top {
    background-position: top;
  }

  .sm\:bg-repeat {
    background-repeat: repeat;
  }

  .sm\:bg-no-repeat {
    background-repeat: no-repeat;
  }

  .sm\:bg-repeat-x {
    background-repeat: repeat-x;
  }

  .sm\:bg-repeat-y {
    background-repeat: repeat-y;
  }

  .sm\:bg-auto {
    background-size: auto;
  }

  .sm\:bg-cover {
    background-size: cover;
  }

  .sm\:bg-contain {
    background-size: contain;
  }

  .sm\:border-transparent {
    border-color: transparent;
  }

  .sm\:border-white {
    border-color: #fff;
  }

  .sm\:border-grey-lighter-trans {
    border-color: rgba(242, 243, 246, .3);
  }

  .sm\:border-grey-lighter {
    border-color: #f2f3f6;
  }

  .sm\:border-grey {
    border-color: #e6e8ec;
  }

  .sm\:border-grey-darker {
    border-color: #ced2db;
  }

  .sm\:border-grey-darkest {
    border-color: #c1c6d2;
  }

  .sm\:border-navy-lightest {
    border-color: #5e6b89;
  }

  .sm\:border-navy-lighter {
    border-color: #6b7792;
  }

  .sm\:border-navy {
    border-color: #081c4a;
  }

  .sm\:border-navy-darker {
    border-color: #001035;
  }

  .sm\:border-navy-darkest {
    border-color: #000e2d;
  }

  .sm\:border-pink-lighter {
    border-color: #ffd0e5;
  }

  .sm\:border-pink {
    border-color: #e31c78;
  }

  .sm\:border-pink-darker {
    border-color: #bb0872;
  }

  .sm\:border-pink-darkest {
    border-color: #aa0467;
  }

  .sm\:border-teal {
    border-color: #2bd6c4;
  }

  .sm\:border-teal-darker {
    border-color: #007b83;
  }

  .sm\:border-teal-darkest {
    border-color: #005358;
  }

  .sm\:border-blue {
    border-color: #05c2de;
  }

  .sm\:border-navy-gradient-0 {
    border-color: #052b5f;
  }

  .sm\:border-navy-gradient-100 {
    border-color: #041437;
  }

  .sm\:border-pink-gradient-0 {
    border-color: #e31c78;
  }

  .sm\:border-pink-gradient-100 {
    border-color: #b41c6e;
  }

  .sm\:border-blue-gradient-0 {
    border-color: #05c2de;
  }

  .sm\:border-blue-gradient-100 {
    border-color: #029fc7;
  }

  .sm\:border-teal-gradient-0 {
    border-color: #2bd6c4;
  }

  .sm\:border-teal-gradient-100 {
    border-color: #088c90;
  }

  .sm\:hover\:border-transparent:hover {
    border-color: transparent;
  }

  .sm\:hover\:border-white:hover {
    border-color: #fff;
  }

  .sm\:hover\:border-grey-lighter-trans:hover {
    border-color: rgba(242, 243, 246, .3);
  }

  .sm\:hover\:border-grey-lighter:hover {
    border-color: #f2f3f6;
  }

  .sm\:hover\:border-grey:hover {
    border-color: #e6e8ec;
  }

  .sm\:hover\:border-grey-darker:hover {
    border-color: #ced2db;
  }

  .sm\:hover\:border-grey-darkest:hover {
    border-color: #c1c6d2;
  }

  .sm\:hover\:border-navy-lightest:hover {
    border-color: #5e6b89;
  }

  .sm\:hover\:border-navy-lighter:hover {
    border-color: #6b7792;
  }

  .sm\:hover\:border-navy:hover {
    border-color: #081c4a;
  }

  .sm\:hover\:border-navy-darker:hover {
    border-color: #001035;
  }

  .sm\:hover\:border-navy-darkest:hover {
    border-color: #000e2d;
  }

  .sm\:hover\:border-pink-lighter:hover {
    border-color: #ffd0e5;
  }

  .sm\:hover\:border-pink:hover {
    border-color: #e31c78;
  }

  .sm\:hover\:border-pink-darker:hover {
    border-color: #bb0872;
  }

  .sm\:hover\:border-pink-darkest:hover {
    border-color: #aa0467;
  }

  .sm\:hover\:border-teal:hover {
    border-color: #2bd6c4;
  }

  .sm\:hover\:border-teal-darker:hover {
    border-color: #007b83;
  }

  .sm\:hover\:border-teal-darkest:hover {
    border-color: #005358;
  }

  .sm\:hover\:border-blue:hover {
    border-color: #05c2de;
  }

  .sm\:hover\:border-navy-gradient-0:hover {
    border-color: #052b5f;
  }

  .sm\:hover\:border-navy-gradient-100:hover {
    border-color: #041437;
  }

  .sm\:hover\:border-pink-gradient-0:hover {
    border-color: #e31c78;
  }

  .sm\:hover\:border-pink-gradient-100:hover {
    border-color: #b41c6e;
  }

  .sm\:hover\:border-blue-gradient-0:hover {
    border-color: #05c2de;
  }

  .sm\:hover\:border-blue-gradient-100:hover {
    border-color: #029fc7;
  }

  .sm\:hover\:border-teal-gradient-0:hover {
    border-color: #2bd6c4;
  }

  .sm\:hover\:border-teal-gradient-100:hover {
    border-color: #088c90;
  }

  .sm\:focus\:border-transparent:focus {
    border-color: transparent;
  }

  .sm\:focus\:border-white:focus {
    border-color: #fff;
  }

  .sm\:focus\:border-grey-lighter-trans:focus {
    border-color: rgba(242, 243, 246, .3);
  }

  .sm\:focus\:border-grey-lighter:focus {
    border-color: #f2f3f6;
  }

  .sm\:focus\:border-grey:focus {
    border-color: #e6e8ec;
  }

  .sm\:focus\:border-grey-darker:focus {
    border-color: #ced2db;
  }

  .sm\:focus\:border-grey-darkest:focus {
    border-color: #c1c6d2;
  }

  .sm\:focus\:border-navy-lightest:focus {
    border-color: #5e6b89;
  }

  .sm\:focus\:border-navy-lighter:focus {
    border-color: #6b7792;
  }

  .sm\:focus\:border-navy:focus {
    border-color: #081c4a;
  }

  .sm\:focus\:border-navy-darker:focus {
    border-color: #001035;
  }

  .sm\:focus\:border-navy-darkest:focus {
    border-color: #000e2d;
  }

  .sm\:focus\:border-pink-lighter:focus {
    border-color: #ffd0e5;
  }

  .sm\:focus\:border-pink:focus {
    border-color: #e31c78;
  }

  .sm\:focus\:border-pink-darker:focus {
    border-color: #bb0872;
  }

  .sm\:focus\:border-pink-darkest:focus {
    border-color: #aa0467;
  }

  .sm\:focus\:border-teal:focus {
    border-color: #2bd6c4;
  }

  .sm\:focus\:border-teal-darker:focus {
    border-color: #007b83;
  }

  .sm\:focus\:border-teal-darkest:focus {
    border-color: #005358;
  }

  .sm\:focus\:border-blue:focus {
    border-color: #05c2de;
  }

  .sm\:focus\:border-navy-gradient-0:focus {
    border-color: #052b5f;
  }

  .sm\:focus\:border-navy-gradient-100:focus {
    border-color: #041437;
  }

  .sm\:focus\:border-pink-gradient-0:focus {
    border-color: #e31c78;
  }

  .sm\:focus\:border-pink-gradient-100:focus {
    border-color: #b41c6e;
  }

  .sm\:focus\:border-blue-gradient-0:focus {
    border-color: #05c2de;
  }

  .sm\:focus\:border-blue-gradient-100:focus {
    border-color: #029fc7;
  }

  .sm\:focus\:border-teal-gradient-0:focus {
    border-color: #2bd6c4;
  }

  .sm\:focus\:border-teal-gradient-100:focus {
    border-color: #088c90;
  }

  .sm\:rounded-none {
    border-radius: 0;
  }

  .sm\:rounded {
    border-radius: 6px;
  }

  .sm\:rounded-form {
    border-radius: 21px;
  }

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

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

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

  .sm\:rounded-b-none {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .sm\:rounded-l-none {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .sm\:rounded-t {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
  }

  .sm\:rounded-r {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
  }

  .sm\:rounded-b {
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
  }

  .sm\:rounded-l {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
  }

  .sm\:rounded-t-form {
    border-top-left-radius: 21px;
    border-top-right-radius: 21px;
  }

  .sm\:rounded-r-form {
    border-top-right-radius: 21px;
    border-bottom-right-radius: 21px;
  }

  .sm\:rounded-b-form {
    border-bottom-right-radius: 21px;
    border-bottom-left-radius: 21px;
  }

  .sm\:rounded-l-form {
    border-top-left-radius: 21px;
    border-bottom-left-radius: 21px;
  }

  .sm\:rounded-t-full {
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

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

  .sm\:rounded-b-full {
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .sm\:rounded-l-full {
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .sm\:rounded-tl-none {
    border-top-left-radius: 0;
  }

  .sm\:rounded-tr-none {
    border-top-right-radius: 0;
  }

  .sm\:rounded-br-none {
    border-bottom-right-radius: 0;
  }

  .sm\:rounded-bl-none {
    border-bottom-left-radius: 0;
  }

  .sm\:rounded-tl {
    border-top-left-radius: 6px;
  }

  .sm\:rounded-tr {
    border-top-right-radius: 6px;
  }

  .sm\:rounded-br {
    border-bottom-right-radius: 6px;
  }

  .sm\:rounded-bl {
    border-bottom-left-radius: 6px;
  }

  .sm\:rounded-tl-form {
    border-top-left-radius: 21px;
  }

  .sm\:rounded-tr-form {
    border-top-right-radius: 21px;
  }

  .sm\:rounded-br-form {
    border-bottom-right-radius: 21px;
  }

  .sm\:rounded-bl-form {
    border-bottom-left-radius: 21px;
  }

  .sm\:rounded-tl-full {
    border-top-left-radius: 9999px;
  }

  .sm\:rounded-tr-full {
    border-top-right-radius: 9999px;
  }

  .sm\:rounded-br-full {
    border-bottom-right-radius: 9999px;
  }

  .sm\:rounded-bl-full {
    border-bottom-left-radius: 9999px;
  }

  .sm\:border-solid {
    border-style: solid;
  }

  .sm\:border-dashed {
    border-style: dashed;
  }

  .sm\:border-dotted {
    border-style: dotted;
  }

  .sm\:border-none {
    border-style: none;
  }

  .sm\:border-0 {
    border-width: 0;
  }

  .sm\:border-2 {
    border-width: 2px;
  }

  .sm\:border-4 {
    border-width: 4px;
  }

  .sm\:border-8 {
    border-width: 8px;
  }

  .sm\:border {
    border-width: 1px;
  }

  .sm\:border-t-0 {
    border-top-width: 0;
  }

  .sm\:border-r-0 {
    border-right-width: 0;
  }

  .sm\:border-b-0 {
    border-bottom-width: 0;
  }

  .sm\:border-l-0 {
    border-left-width: 0;
  }

  .sm\:border-t-2 {
    border-top-width: 2px;
  }

  .sm\:border-r-2 {
    border-right-width: 2px;
  }

  .sm\:border-b-2 {
    border-bottom-width: 2px;
  }

  .sm\:border-l-2 {
    border-left-width: 2px;
  }

  .sm\:border-t-4 {
    border-top-width: 4px;
  }

  .sm\:border-r-4 {
    border-right-width: 4px;
  }

  .sm\:border-b-4 {
    border-bottom-width: 4px;
  }

  .sm\:border-l-4 {
    border-left-width: 4px;
  }

  .sm\:border-t-8 {
    border-top-width: 8px;
  }

  .sm\:border-r-8 {
    border-right-width: 8px;
  }

  .sm\:border-b-8 {
    border-bottom-width: 8px;
  }

  .sm\:border-l-8 {
    border-left-width: 8px;
  }

  .sm\:border-t {
    border-top-width: 1px;
  }

  .sm\:border-r {
    border-right-width: 1px;
  }

  .sm\:border-b {
    border-bottom-width: 1px;
  }

  .sm\:border-l {
    border-left-width: 1px;
  }

  .sm\:cursor-auto {
    cursor: auto;
  }

  .sm\:cursor-default {
    cursor: default;
  }

  .sm\:cursor-pointer {
    cursor: pointer;
  }

  .sm\:cursor-wait {
    cursor: wait;
  }

  .sm\:cursor-move {
    cursor: move;
  }

  .sm\:cursor-not-allowed {
    cursor: not-allowed;
  }

  .sm\:block {
    display: block;
  }

  .sm\:inline-block {
    display: inline-block;
  }

  .sm\:inline {
    display: inline;
  }

  .sm\:table {
    display: table;
  }

  .sm\:table-row {
    display: table-row;
  }

  .sm\:table-cell {
    display: table-cell;
  }

  .sm\:hidden {
    display: none;
  }

  .sm\:flex {
    display: flex;
  }

  .sm\:inline-flex {
    display: inline-flex;
  }

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

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

  .sm\:flex-col {
    flex-direction: column;
  }

  .sm\:flex-col-reverse {
    flex-direction: column-reverse;
  }

  .sm\:flex-wrap {
    flex-wrap: wrap;
  }

  .sm\:flex-wrap-reverse {
    flex-wrap: wrap-reverse;
  }

  .sm\:flex-no-wrap {
    flex-wrap: nowrap;
  }

  .sm\:items-start {
    align-items: flex-start;
  }

  .sm\:items-end {
    align-items: flex-end;
  }

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

  .sm\:items-baseline {
    align-items: baseline;
  }

  .sm\:items-stretch {
    align-items: stretch;
  }

  .sm\:self-auto {
    align-self: auto;
  }

  .sm\:self-start {
    align-self: flex-start;
  }

  .sm\:self-end {
    align-self: flex-end;
  }

  .sm\:self-center {
    align-self: center;
  }

  .sm\:self-stretch {
    align-self: stretch;
  }

  .sm\:justify-start {
    justify-content: flex-start;
  }

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

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

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

  .sm\:justify-around {
    justify-content: space-around;
  }

  .sm\:content-center {
    align-content: center;
  }

  .sm\:content-start {
    align-content: flex-start;
  }

  .sm\:content-end {
    align-content: flex-end;
  }

  .sm\:content-between {
    align-content: space-between;
  }

  .sm\:content-around {
    align-content: space-around;
  }

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

  .sm\:flex-auto {
    flex: 1 1 auto;
  }

  .sm\:flex-initial {
    flex: 0 1 auto;
  }

  .sm\:flex-none {
    flex: none;
  }

  .sm\:flex-grow {
    flex-grow: 1;
  }

  .sm\:flex-shrink {
    flex-shrink: 1;
  }

  .sm\:flex-no-grow {
    flex-grow: 0;
  }

  .sm\:flex-no-shrink {
    flex-shrink: 0;
  }

  .sm\:float-right {
    float: right;
  }

  .sm\:float-left {
    float: left;
  }

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

  .sm\:clearfix:after {
    content: "";
    display: table;
    clear: both;
  }

  .sm\:font-rubik {
    font-family: Rubik, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  }

  .sm\:font-montserrat {
    font-family: Montserrat, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  }

  .sm\:font-light {
    font-weight: 300;
  }

  .sm\:font-regular {
    font-weight: 400;
  }

  .sm\:font-medium {
    font-weight: 500;
  }

  .sm\:font-semibold {
    font-weight: 600;
  }

  .sm\:font-bold {
    font-weight: 700;
  }

  .sm\:hover\:font-light:hover {
    font-weight: 300;
  }

  .sm\:hover\:font-regular:hover {
    font-weight: 400;
  }

  .sm\:hover\:font-medium:hover {
    font-weight: 500;
  }

  .sm\:hover\:font-semibold:hover {
    font-weight: 600;
  }

  .sm\:hover\:font-bold:hover {
    font-weight: 700;
  }

  .sm\:focus\:font-light:focus {
    font-weight: 300;
  }

  .sm\:focus\:font-regular:focus {
    font-weight: 400;
  }

  .sm\:focus\:font-medium:focus {
    font-weight: 500;
  }

  .sm\:focus\:font-semibold:focus {
    font-weight: 600;
  }

  .sm\:focus\:font-bold:focus {
    font-weight: 700;
  }

  .sm\:h-1 {
    height: .25rem;
  }

  .sm\:h-2 {
    height: .5rem;
  }

  .sm\:h-3 {
    height: .75rem;
  }

  .sm\:h-4 {
    height: 1rem;
  }

  .sm\:h-5 {
    height: 1.25rem;
  }

  .sm\:h-6 {
    height: 1.5rem;
  }

  .sm\:h-8 {
    height: 2rem;
  }

  .sm\:h-10 {
    height: 2.5rem;
  }

  .sm\:h-12 {
    height: 3rem;
  }

  .sm\:h-16 {
    height: 4rem;
  }

  .sm\:h-24 {
    height: 6rem;
  }

  .sm\:h-32 {
    height: 8rem;
  }

  .sm\:h-48 {
    height: 12rem;
  }

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

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

  .sm\:h-px {
    height: 1px;
  }

  .sm\:h-full {
    height: 100%;
  }

  .sm\:h-screen {
    height: 100vh;
  }

  .sm\:m-0 {
    margin: 0;
  }

  .sm\:m-4 {
    margin: 4px;
  }

  .sm\:m-5 {
    margin: 5px;
  }

  .sm\:m-8 {
    margin: 8px;
  }

  .sm\:m-10 {
    margin: 10px;
  }

  .sm\:m-15 {
    margin: 15px;
  }

  .sm\:m-20 {
    margin: 20px;
  }

  .sm\:m-25 {
    margin: 25px;
  }

  .sm\:m-30 {
    margin: 30px;
  }

  .sm\:m-35 {
    margin: 35px;
  }

  .sm\:m-40 {
    margin: 40px;
  }

  .sm\:m-auto {
    margin: auto;
  }

  .sm\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

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

  .sm\:my-4 {
    margin-top: 4px;
    margin-bottom: 4px;
  }

  .sm\:mx-4 {
    margin-left: 4px;
    margin-right: 4px;
  }

  .sm\:my-5 {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .sm\:mx-5 {
    margin-left: 5px;
    margin-right: 5px;
  }

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

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

  .sm\:my-10 {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .sm\:mx-10 {
    margin-left: 10px;
    margin-right: 10px;
  }

  .sm\:my-15 {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .sm\:mx-15 {
    margin-left: 15px;
    margin-right: 15px;
  }

  .sm\:my-20 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .sm\:mx-20 {
    margin-left: 20px;
    margin-right: 20px;
  }

  .sm\:my-25 {
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .sm\:mx-25 {
    margin-left: 25px;
    margin-right: 25px;
  }

  .sm\:my-30 {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .sm\:mx-30 {
    margin-left: 30px;
    margin-right: 30px;
  }

  .sm\:my-35 {
    margin-top: 35px;
    margin-bottom: 35px;
  }

  .sm\:mx-35 {
    margin-left: 35px;
    margin-right: 35px;
  }

  .sm\:my-40 {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .sm\:mx-40 {
    margin-left: 40px;
    margin-right: 40px;
  }

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

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

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

  .sm\:mr-0 {
    margin-right: 0;
  }

  .sm\:mb-0 {
    margin-bottom: 0;
  }

  .sm\:ml-0 {
    margin-left: 0;
  }

  .sm\:mt-4 {
    margin-top: 4px;
  }

  .sm\:mr-4 {
    margin-right: 4px;
  }

  .sm\:mb-4 {
    margin-bottom: 4px;
  }

  .sm\:ml-4 {
    margin-left: 4px;
  }

  .sm\:mt-5 {
    margin-top: 5px;
  }

  .sm\:mr-5 {
    margin-right: 5px;
  }

  .sm\:mb-5 {
    margin-bottom: 5px;
  }

  .sm\:ml-5 {
    margin-left: 5px;
  }

  .sm\:mt-8 {
    margin-top: 8px;
  }

  .sm\:mr-8 {
    margin-right: 8px;
  }

  .sm\:mb-8 {
    margin-bottom: 8px;
  }

  .sm\:ml-8 {
    margin-left: 8px;
  }

  .sm\:mt-10 {
    margin-top: 10px;
  }

  .sm\:mr-10 {
    margin-right: 10px;
  }

  .sm\:mb-10 {
    margin-bottom: 10px;
  }

  .sm\:ml-10 {
    margin-left: 10px;
  }

  .sm\:mt-15 {
    margin-top: 15px;
  }

  .sm\:mr-15 {
    margin-right: 15px;
  }

  .sm\:mb-15 {
    margin-bottom: 15px;
  }

  .sm\:ml-15 {
    margin-left: 15px;
  }

  .sm\:mt-20 {
    margin-top: 20px;
  }

  .sm\:mr-20 {
    margin-right: 20px;
  }

  .sm\:mb-20 {
    margin-bottom: 20px;
  }

  .sm\:ml-20 {
    margin-left: 20px;
  }

  .sm\:mt-25 {
    margin-top: 25px;
  }

  .sm\:mr-25 {
    margin-right: 25px;
  }

  .sm\:mb-25 {
    margin-bottom: 25px;
  }

  .sm\:ml-25 {
    margin-left: 25px;
  }

  .sm\:mt-30 {
    margin-top: 30px;
  }

  .sm\:mr-30 {
    margin-right: 30px;
  }

  .sm\:mb-30 {
    margin-bottom: 30px;
  }

  .sm\:ml-30 {
    margin-left: 30px;
  }

  .sm\:mt-35 {
    margin-top: 35px;
  }

  .sm\:mr-35 {
    margin-right: 35px;
  }

  .sm\:mb-35 {
    margin-bottom: 35px;
  }

  .sm\:ml-35 {
    margin-left: 35px;
  }

  .sm\:mt-40 {
    margin-top: 40px;
  }

  .sm\:mr-40 {
    margin-right: 40px;
  }

  .sm\:mb-40 {
    margin-bottom: 40px;
  }

  .sm\:ml-40 {
    margin-left: 40px;
  }

  .sm\:mt-auto {
    margin-top: auto;
  }

  .sm\:mr-auto {
    margin-right: auto;
  }

  .sm\:mb-auto {
    margin-bottom: auto;
  }

  .sm\:ml-auto {
    margin-left: auto;
  }

  .sm\:max-h-0 {
    max-height: 0px;
  }

  .sm\:max-h-30 {
    max-height: 30px;
  }

  .sm\:max-h-35 {
    max-height: 35px;
  }

  .sm\:max-h-full {
    max-height: 100%;
  }

  .sm\:max-h-screen {
    max-height: 100vh;
  }

  .sm\:max-w-200 {
    max-width: 200px;
  }

  .sm\:max-w-300 {
    max-width: 300px;
  }

  .sm\:max-w-400 {
    max-width: 400px;
  }

  .sm\:max-w-540 {
    max-width: 540px;
  }

  .sm\:max-w-600 {
    max-width: 600px;
  }

  .sm\:max-w-800 {
    max-width: 700px;
  }

  .sm\:max-w-920 {
    max-width: 920px;
  }

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

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

  .sm\:max-w-1\/3 {
    max-width: 33.33333%;
  }

  .sm\:max-w-2\/3 {
    max-width: 66.66667%;
  }

  .sm\:max-w-1\/4 {
    max-width: 25%;
  }

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

  .sm\:max-w-1\/5 {
    max-width: 20%;
  }

  .sm\:max-w-2\/5 {
    max-width: 40%;
  }

  .sm\:max-w-3\/5 {
    max-width: 60%;
  }

  .sm\:max-w-4\/5 {
    max-width: 80%;
  }

  .sm\:max-w-1\/6 {
    max-width: 16.66667%;
  }

  .sm\:max-w-5\/6 {
    max-width: 83.33333%;
  }

  .sm\:max-w-1\/12 {
    max-width: 8.33333%;
  }

  .sm\:min-h-0 {
    min-height: 0;
  }

  .sm\:min-h-70 {
    min-height: 70px;
  }

  .sm\:min-h-100 {
    min-height: 100px;
  }

  .sm\:min-h-260 {
    min-height: 260px;
  }

  .sm\:min-h-300 {
    min-height: 300px;
  }

  .sm\:min-h-400 {
    min-height: 400px;
  }

  .sm\:min-h-500 {
    min-height: 500px;
  }

  .sm\:min-h-600 {
    min-height: 600px;
  }

  .sm\:min-h-full {
    min-height: 100%;
  }

  .sm\:min-h-screen {
    min-height: 100vh;
  }

  .sm\:min-w-0 {
    min-width: 0;
  }

  .sm\:min-w-100 {
    min-width: 100px;
  }

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

  .sm\:-m-10 {
    margin: -10px;
  }

  .sm\:-m-11 {
    margin: -11px;
  }

  .sm\:-m-15 {
    margin: -15px;
  }

  .sm\:-m-25 {
    margin: -25px;
  }

  .sm\:-m-30 {
    margin: -30px;
  }

  .sm\:-m-42 {
    margin: -42px;
  }

  .sm\:-my-10 {
    margin-top: -10px;
    margin-bottom: -10px;
  }

  .sm\:-mx-10 {
    margin-left: -10px;
    margin-right: -10px;
  }

  .sm\:-my-11 {
    margin-top: -11px;
    margin-bottom: -11px;
  }

  .sm\:-mx-11 {
    margin-left: -11px;
    margin-right: -11px;
  }

  .sm\:-my-15 {
    margin-top: -15px;
    margin-bottom: -15px;
  }

  .sm\:-mx-15 {
    margin-left: -15px;
    margin-right: -15px;
  }

  .sm\:-my-25 {
    margin-top: -25px;
    margin-bottom: -25px;
  }

  .sm\:-mx-25 {
    margin-left: -25px;
    margin-right: -25px;
  }

  .sm\:-my-30 {
    margin-top: -30px;
    margin-bottom: -30px;
  }

  .sm\:-mx-30 {
    margin-left: -30px;
    margin-right: -30px;
  }

  .sm\:-my-42 {
    margin-top: -42px;
    margin-bottom: -42px;
  }

  .sm\:-mx-42 {
    margin-left: -42px;
    margin-right: -42px;
  }

  .sm\:-mt-10 {
    margin-top: -10px;
  }

  .sm\:-mr-10 {
    margin-right: -10px;
  }

  .sm\:-mb-10 {
    margin-bottom: -10px;
  }

  .sm\:-ml-10 {
    margin-left: -10px;
  }

  .sm\:-mt-11 {
    margin-top: -11px;
  }

  .sm\:-mr-11 {
    margin-right: -11px;
  }

  .sm\:-mb-11 {
    margin-bottom: -11px;
  }

  .sm\:-ml-11 {
    margin-left: -11px;
  }

  .sm\:-mt-15 {
    margin-top: -15px;
  }

  .sm\:-mr-15 {
    margin-right: -15px;
  }

  .sm\:-mb-15 {
    margin-bottom: -15px;
  }

  .sm\:-ml-15 {
    margin-left: -15px;
  }

  .sm\:-mt-25 {
    margin-top: -25px;
  }

  .sm\:-mr-25 {
    margin-right: -25px;
  }

  .sm\:-mb-25 {
    margin-bottom: -25px;
  }

  .sm\:-ml-25 {
    margin-left: -25px;
  }

  .sm\:-mt-30 {
    margin-top: -30px;
  }

  .sm\:-mr-30 {
    margin-right: -30px;
  }

  .sm\:-mb-30 {
    margin-bottom: -30px;
  }

  .sm\:-ml-30 {
    margin-left: -30px;
  }

  .sm\:-mt-42 {
    margin-top: -42px;
  }

  .sm\:-mr-42 {
    margin-right: -42px;
  }

  .sm\:-mb-42 {
    margin-bottom: -42px;
  }

  .sm\:-ml-42 {
    margin-left: -42px;
  }

  .sm\:opacity-0 {
    opacity: 0;
  }

  .sm\:opacity-25 {
    opacity: .25;
  }

  .sm\:opacity-50 {
    opacity: .5;
  }

  .sm\:opacity-75 {
    opacity: .75;
  }

  .sm\:opacity-100 {
    opacity: 1;
  }

  .sm\:overflow-auto {
    overflow: auto;
  }

  .sm\:overflow-hidden {
    overflow: hidden;
  }

  .sm\:overflow-visible {
    overflow: visible;
  }

  .sm\:overflow-scroll {
    overflow: scroll;
  }

  .sm\:overflow-x-auto {
    overflow-x: auto;
  }

  .sm\:overflow-y-auto {
    overflow-y: auto;
  }

  .sm\:overflow-x-hidden {
    overflow-x: hidden;
  }

  .sm\:overflow-y-hidden {
    overflow-y: hidden;
  }

  .sm\:overflow-x-visible {
    overflow-x: visible;
  }

  .sm\:overflow-y-visible {
    overflow-y: visible;
  }

  .sm\:overflow-x-scroll {
    overflow-x: scroll;
  }

  .sm\:overflow-y-scroll {
    overflow-y: scroll;
  }

  .sm\:scrolling-touch {
    -webkit-overflow-scrolling: touch;
  }

  .sm\:scrolling-auto {
    -webkit-overflow-scrolling: auto;
  }

  .sm\:p-0 {
    padding: 0;
  }

  .sm\:p-5 {
    padding: 5px;
  }

  .sm\:p-8 {
    padding: 8px;
  }

  .sm\:p-10 {
    padding: 10px;
  }

  .sm\:p-14 {
    padding: 14px;
  }

  .sm\:p-15 {
    padding: 15px;
  }

  .sm\:p-20 {
    padding: 20px;
  }

  .sm\:p-25 {
    padding: 25px;
  }

  .sm\:p-28 {
    padding: 28px;
  }

  .sm\:p-30 {
    padding: 30px;
  }

  .sm\:p-40 {
    padding: 40px;
  }

  .sm\:p-50 {
    padding: 50px;
  }

  .sm\:p-60 {
    padding: 60px;
  }

  .sm\:p-80 {
    padding: 80px;
  }

  .sm\:p-95 {
    padding: 95px;
  }

  .sm\:p-100 {
    padding: 100px;
  }

  .sm\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

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

  .sm\:py-5 {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .sm\:px-5 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .sm\:py-8 {
    padding-top: 8px;
    padding-bottom: 8px;
  }

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

  .sm\:py-10 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

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

  .sm\:py-14 {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .sm\:px-14 {
    padding-left: 14px;
    padding-right: 14px;
  }

  .sm\:py-15 {
    padding-top: 15px;
    padding-bottom: 15px;
  }

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

  .sm\:py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .sm\:px-20 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sm\:py-25 {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .sm\:px-25 {
    padding-left: 25px;
    padding-right: 25px;
  }

  .sm\:py-28 {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .sm\:px-28 {
    padding-left: 28px;
    padding-right: 28px;
  }

  .sm\:py-30 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

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

  .sm\:py-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .sm\:px-40 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .sm\:py-50 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .sm\:px-50 {
    padding-left: 50px;
    padding-right: 50px;
  }

  .sm\:py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .sm\:px-60 {
    padding-left: 60px;
    padding-right: 60px;
  }

  .sm\:py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .sm\:px-80 {
    padding-left: 80px;
    padding-right: 80px;
  }

  .sm\:py-95 {
    padding-top: 95px;
    padding-bottom: 95px;
  }

  .sm\:px-95 {
    padding-left: 95px;
    padding-right: 95px;
  }

  .sm\:py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .sm\:px-100 {
    padding-left: 100px;
    padding-right: 100px;
  }

  .sm\:pt-0 {
    padding-top: 0;
  }

  .sm\:pr-0 {
    padding-right: 0;
  }

  .sm\:pb-0 {
    padding-bottom: 0;
  }

  .sm\:pl-0 {
    padding-left: 0;
  }

  .sm\:pt-5 {
    padding-top: 5px;
  }

  .sm\:pr-5 {
    padding-right: 5px;
  }

  .sm\:pb-5 {
    padding-bottom: 5px;
  }

  .sm\:pl-5 {
    padding-left: 5px;
  }

  .sm\:pt-8 {
    padding-top: 8px;
  }

  .sm\:pr-8 {
    padding-right: 8px;
  }

  .sm\:pb-8 {
    padding-bottom: 8px;
  }

  .sm\:pl-8 {
    padding-left: 8px;
  }

  .sm\:pt-10 {
    padding-top: 10px;
  }

  .sm\:pr-10 {
    padding-right: 10px;
  }

  .sm\:pb-10 {
    padding-bottom: 10px;
  }

  .sm\:pl-10 {
    padding-left: 10px;
  }

  .sm\:pt-14 {
    padding-top: 14px;
  }

  .sm\:pr-14 {
    padding-right: 14px;
  }

  .sm\:pb-14 {
    padding-bottom: 14px;
  }

  .sm\:pl-14 {
    padding-left: 14px;
  }

  .sm\:pt-15 {
    padding-top: 15px;
  }

  .sm\:pr-15 {
    padding-right: 15px;
  }

  .sm\:pb-15 {
    padding-bottom: 15px;
  }

  .sm\:pl-15 {
    padding-left: 15px;
  }

  .sm\:pt-20 {
    padding-top: 20px;
  }

  .sm\:pr-20 {
    padding-right: 20px;
  }

  .sm\:pb-20 {
    padding-bottom: 20px;
  }

  .sm\:pl-20 {
    padding-left: 20px;
  }

  .sm\:pt-25 {
    padding-top: 25px;
  }

  .sm\:pr-25 {
    padding-right: 25px;
  }

  .sm\:pb-25 {
    padding-bottom: 25px;
  }

  .sm\:pl-25 {
    padding-left: 25px;
  }

  .sm\:pt-28 {
    padding-top: 28px;
  }

  .sm\:pr-28 {
    padding-right: 28px;
  }

  .sm\:pb-28 {
    padding-bottom: 28px;
  }

  .sm\:pl-28 {
    padding-left: 28px;
  }

  .sm\:pt-30 {
    padding-top: 30px;
  }

  .sm\:pr-30 {
    padding-right: 30px;
  }

  .sm\:pb-30 {
    padding-bottom: 30px;
  }

  .sm\:pl-30 {
    padding-left: 30px;
  }

  .sm\:pt-40 {
    padding-top: 40px;
  }

  .sm\:pr-40 {
    padding-right: 40px;
  }

  .sm\:pb-40 {
    padding-bottom: 40px;
  }

  .sm\:pl-40 {
    padding-left: 40px;
  }

  .sm\:pt-50 {
    padding-top: 50px;
  }

  .sm\:pr-50 {
    padding-right: 50px;
  }

  .sm\:pb-50 {
    padding-bottom: 50px;
  }

  .sm\:pl-50 {
    padding-left: 50px;
  }

  .sm\:pt-60 {
    padding-top: 60px;
  }

  .sm\:pr-60 {
    padding-right: 60px;
  }

  .sm\:pb-60 {
    padding-bottom: 60px;
  }

  .sm\:pl-60 {
    padding-left: 60px;
  }

  .sm\:pt-80 {
    padding-top: 80px;
  }

  .sm\:pr-80 {
    padding-right: 80px;
  }

  .sm\:pb-80 {
    padding-bottom: 80px;
  }

  .sm\:pl-80 {
    padding-left: 80px;
  }

  .sm\:pt-95 {
    padding-top: 95px;
  }

  .sm\:pr-95 {
    padding-right: 95px;
  }

  .sm\:pb-95 {
    padding-bottom: 95px;
  }

  .sm\:pl-95 {
    padding-left: 95px;
  }

  .sm\:pt-100 {
    padding-top: 100px;
  }

  .sm\:pr-100 {
    padding-right: 100px;
  }

  .sm\:pb-100 {
    padding-bottom: 100px;
  }

  .sm\:pl-100 {
    padding-left: 100px;
  }

  .sm\:static {
    position: static;
  }

  .sm\:fixed {
    position: fixed;
  }

  .sm\:absolute {
    position: absolute;
  }

  .sm\:relative {
    position: relative;
  }

  .sm\:sticky {
    position: sticky;
  }

  .sm\:pin-none {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .sm\:pin {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .sm\:pin-y {
    top: 0;
    bottom: 0;
  }

  .sm\:pin-x {
    right: 0;
    left: 0;
  }

  .sm\:pin-t {
    top: 0;
  }

  .sm\:pin-r {
    right: 0;
  }

  .sm\:pin-b {
    bottom: 0;
  }

  .sm\:pin-l {
    left: 0;
  }

  .sm\:resize-none {
    resize: none;
  }

  .sm\:resize-y {
    resize: vertical;
  }

  .sm\:resize-x {
    resize: horizontal;
  }

  .sm\:resize {
    resize: both;
  }

  .sm\:shadow {
    box-shadow: 0 1px 4px 0 rgba(7, 29, 73, .1);
  }

  .sm\:shadow-lg {
    box-shadow: 0 3px 6px 0 rgba(7, 29, 73, .1);
  }

  .sm\:shadow-popover {
    box-shadow: 0 4px 6px 0 rgba(7, 29, 73, .3);
  }

  .sm\:shadow-inner {
    box-shadow: inset 0 0 6px 0 rgba(7, 29, 73, .1);
  }

  .sm\:shadow-none {
    box-shadow: none;
  }

  .sm\:hover\:shadow:hover {
    box-shadow: 0 1px 4px 0 rgba(7, 29, 73, .1);
  }

  .sm\:hover\:shadow-lg:hover {
    box-shadow: 0 3px 6px 0 rgba(7, 29, 73, .1);
  }

  .sm\:hover\:shadow-popover:hover {
    box-shadow: 0 4px 6px 0 rgba(7, 29, 73, .3);
  }

  .sm\:hover\:shadow-inner:hover {
    box-shadow: inset 0 0 6px 0 rgba(7, 29, 73, .1);
  }

  .sm\:hover\:shadow-none:hover {
    box-shadow: none;
  }

  .sm\:focus\:shadow:focus {
    box-shadow: 0 1px 4px 0 rgba(7, 29, 73, .1);
  }

  .sm\:focus\:shadow-lg:focus {
    box-shadow: 0 3px 6px 0 rgba(7, 29, 73, .1);
  }

  .sm\:focus\:shadow-popover:focus {
    box-shadow: 0 4px 6px 0 rgba(7, 29, 73, .3);
  }

  .sm\:focus\:shadow-inner:focus {
    box-shadow: inset 0 0 6px 0 rgba(7, 29, 73, .1);
  }

  .sm\:focus\:shadow-none:focus {
    box-shadow: none;
  }

  .sm\:table-auto {
    table-layout: auto;
  }

  .sm\:table-fixed {
    table-layout: fixed;
  }

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

  .sm\:text-center {
    text-align: center;
  }

  .sm\:text-right {
    text-align: right;
  }

  .sm\:text-justify {
    text-align: justify;
  }

  .sm\:text-transparent {
    color: transparent;
  }

  .sm\:text-white {
    color: #fff;
  }

  .sm\:text-grey-lighter-trans {
    color: rgba(242, 243, 246, .3);
  }

  .sm\:text-grey-lighter {
    color: #f2f3f6;
  }

  .sm\:text-grey {
    color: #e6e8ec;
  }

  .sm\:text-grey-darker {
    color: #ced2db;
  }

  .sm\:text-grey-darkest {
    color: #c1c6d2;
  }

  .sm\:text-navy-lightest {
    color: #5e6b89;
  }

  .sm\:text-navy-lighter {
    color: #6b7792;
  }

  .sm\:text-navy {
    color: #081c4a;
  }

  .sm\:text-navy-darker {
    color: #001035;
  }

  .sm\:text-navy-darkest {
    color: #000e2d;
  }

  .sm\:text-pink-lighter {
    color: #ffd0e5;
  }

  .sm\:text-pink {
    color: #e31c78;
  }

  .sm\:text-pink-darker {
    color: #bb0872;
  }

  .sm\:text-pink-darkest {
    color: #aa0467;
  }

  .sm\:text-teal {
    color: #2bd6c4;
  }

  .sm\:text-teal-darker {
    color: #007b83;
  }

  .sm\:text-teal-darkest {
    color: #005358;
  }

  .sm\:text-blue {
    color: #05c2de;
  }

  .sm\:text-navy-gradient-0 {
    color: #052b5f;
  }

  .sm\:text-navy-gradient-100 {
    color: #041437;
  }

  .sm\:text-pink-gradient-0 {
    color: #e31c78;
  }

  .sm\:text-pink-gradient-100 {
    color: #b41c6e;
  }

  .sm\:text-blue-gradient-0 {
    color: #05c2de;
  }

  .sm\:text-blue-gradient-100 {
    color: #029fc7;
  }

  .sm\:text-teal-gradient-0 {
    color: #2bd6c4;
  }

  .sm\:text-teal-gradient-100 {
    color: #088c90;
  }

  .sm\:hover\:text-transparent:hover {
    color: transparent;
  }

  .sm\:hover\:text-white:hover {
    color: #fff;
  }

  .sm\:hover\:text-grey-lighter-trans:hover {
    color: rgba(242, 243, 246, .3);
  }

  .sm\:hover\:text-grey-lighter:hover {
    color: #f2f3f6;
  }

  .sm\:hover\:text-grey:hover {
    color: #e6e8ec;
  }

  .sm\:hover\:text-grey-darker:hover {
    color: #ced2db;
  }

  .sm\:hover\:text-grey-darkest:hover {
    color: #c1c6d2;
  }

  .sm\:hover\:text-navy-lightest:hover {
    color: #5e6b89;
  }

  .sm\:hover\:text-navy-lighter:hover {
    color: #6b7792;
  }

  .sm\:hover\:text-navy:hover {
    color: #081c4a;
  }

  .sm\:hover\:text-navy-darker:hover {
    color: #001035;
  }

  .sm\:hover\:text-navy-darkest:hover {
    color: #000e2d;
  }

  .sm\:hover\:text-pink-lighter:hover {
    color: #ffd0e5;
  }

  .sm\:hover\:text-pink:hover {
    color: #e31c78;
  }

  .sm\:hover\:text-pink-darker:hover {
    color: #bb0872;
  }

  .sm\:hover\:text-pink-darkest:hover {
    color: #aa0467;
  }

  .sm\:hover\:text-teal:hover {
    color: #2bd6c4;
  }

  .sm\:hover\:text-teal-darker:hover {
    color: #007b83;
  }

  .sm\:hover\:text-teal-darkest:hover {
    color: #005358;
  }

  .sm\:hover\:text-blue:hover {
    color: #05c2de;
  }

  .sm\:hover\:text-navy-gradient-0:hover {
    color: #052b5f;
  }

  .sm\:hover\:text-navy-gradient-100:hover {
    color: #041437;
  }

  .sm\:hover\:text-pink-gradient-0:hover {
    color: #e31c78;
  }

  .sm\:hover\:text-pink-gradient-100:hover {
    color: #b41c6e;
  }

  .sm\:hover\:text-blue-gradient-0:hover {
    color: #05c2de;
  }

  .sm\:hover\:text-blue-gradient-100:hover {
    color: #029fc7;
  }

  .sm\:hover\:text-teal-gradient-0:hover {
    color: #2bd6c4;
  }

  .sm\:hover\:text-teal-gradient-100:hover {
    color: #088c90;
  }

  .sm\:focus\:text-transparent:focus {
    color: transparent;
  }

  .sm\:focus\:text-white:focus {
    color: #fff;
  }

  .sm\:focus\:text-grey-lighter-trans:focus {
    color: rgba(242, 243, 246, .3);
  }

  .sm\:focus\:text-grey-lighter:focus {
    color: #f2f3f6;
  }

  .sm\:focus\:text-grey:focus {
    color: #e6e8ec;
  }

  .sm\:focus\:text-grey-darker:focus {
    color: #ced2db;
  }

  .sm\:focus\:text-grey-darkest:focus {
    color: #c1c6d2;
  }

  .sm\:focus\:text-navy-lightest:focus {
    color: #5e6b89;
  }

  .sm\:focus\:text-navy-lighter:focus {
    color: #6b7792;
  }

  .sm\:focus\:text-navy:focus {
    color: #081c4a;
  }

  .sm\:focus\:text-navy-darker:focus {
    color: #001035;
  }

  .sm\:focus\:text-navy-darkest:focus {
    color: #000e2d;
  }

  .sm\:focus\:text-pink-lighter:focus {
    color: #ffd0e5;
  }

  .sm\:focus\:text-pink:focus {
    color: #e31c78;
  }

  .sm\:focus\:text-pink-darker:focus {
    color: #bb0872;
  }

  .sm\:focus\:text-pink-darkest:focus {
    color: #aa0467;
  }

  .sm\:focus\:text-teal:focus {
    color: #2bd6c4;
  }

  .sm\:focus\:text-teal-darker:focus {
    color: #007b83;
  }

  .sm\:focus\:text-teal-darkest:focus {
    color: #005358;
  }

  .sm\:focus\:text-blue:focus {
    color: #05c2de;
  }

  .sm\:focus\:text-navy-gradient-0:focus {
    color: #052b5f;
  }

  .sm\:focus\:text-navy-gradient-100:focus {
    color: #041437;
  }

  .sm\:focus\:text-pink-gradient-0:focus {
    color: #e31c78;
  }

  .sm\:focus\:text-pink-gradient-100:focus {
    color: #b41c6e;
  }

  .sm\:focus\:text-blue-gradient-0:focus {
    color: #05c2de;
  }

  .sm\:focus\:text-blue-gradient-100:focus {
    color: #029fc7;
  }

  .sm\:focus\:text-teal-gradient-0:focus {
    color: #2bd6c4;
  }

  .sm\:focus\:text-teal-gradient-100:focus {
    color: #088c90;
  }

  .sm\:text-12 {
    font-size: 12px;
  }

  .sm\:text-13 {
    font-size: 13px;
  }

  .sm\:text-14 {
    font-size: 14px;
  }

  .sm\:text-15 {
    font-size: 15px;
  }

  .sm\:text-16 {
    font-size: 16px;
  }

  .sm\:text-18 {
    font-size: 18px;
  }

  .sm\:text-19 {
    font-size: 19px;
  }

  .sm\:text-20 {
    font-size: 20px;
  }

  .sm\:text-24 {
    font-size: 24px;
  }

  .sm\:text-28 {
    font-size: 28px;
  }

  .sm\:text-32 {
    font-size: 32px;
  }

  .sm\:text-52 {
    font-size: 52px;
  }

  .sm\:italic {
    font-style: italic;
  }

  .sm\:roman {
    font-style: normal;
  }

  .sm\:uppercase {
    text-transform: uppercase;
  }

  .sm\:lowercase {
    text-transform: lowercase;
  }

  .sm\:capitalize {
    text-transform: capitalize;
  }

  .sm\:normal-case {
    text-transform: none;
  }

  .sm\:underline {
    text-decoration: underline;
  }

  .sm\:line-through {
    text-decoration: line-through;
  }

  .sm\:no-underline {
    text-decoration: none;
  }

  .sm\:antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .sm\:subpixel-antialiased {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .sm\:hover\:italic:hover {
    font-style: italic;
  }

  .sm\:hover\:roman:hover {
    font-style: normal;
  }

  .sm\:hover\:uppercase:hover {
    text-transform: uppercase;
  }

  .sm\:hover\:lowercase:hover {
    text-transform: lowercase;
  }

  .sm\:hover\:capitalize:hover {
    text-transform: capitalize;
  }

  .sm\:hover\:normal-case:hover {
    text-transform: none;
  }

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

  .sm\:hover\:line-through:hover {
    text-decoration: line-through;
  }

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

  .sm\:hover\:antialiased:hover {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .sm\:hover\:subpixel-antialiased:hover {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .sm\:focus\:italic:focus {
    font-style: italic;
  }

  .sm\:focus\:roman:focus {
    font-style: normal;
  }

  .sm\:focus\:uppercase:focus {
    text-transform: uppercase;
  }

  .sm\:focus\:lowercase:focus {
    text-transform: lowercase;
  }

  .sm\:focus\:capitalize:focus {
    text-transform: capitalize;
  }

  .sm\:focus\:normal-case:focus {
    text-transform: none;
  }

  .sm\:focus\:underline:focus {
    text-decoration: underline;
  }

  .sm\:focus\:line-through:focus {
    text-decoration: line-through;
  }

  .sm\:focus\:no-underline:focus {
    text-decoration: none;
  }

  .sm\:focus\:antialiased:focus {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .sm\:focus\:subpixel-antialiased:focus {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .sm\:visible {
    visibility: visible;
  }

  .sm\:invisible {
    visibility: hidden;
  }

  .sm\:w-4 {
    width: 4px;
  }

  .sm\:w-150 {
    width: 150px;
  }

  .sm\:w-200 {
    width: 200px;
  }

  .sm\:w-250 {
    width: 250px;
  }

  .sm\:w-380 {
    width: 380px;
  }

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

  .sm\:w-px {
    width: 1px;
  }

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

  .sm\:w-1\/3 {
    width: 33.33333%;
  }

  .sm\:w-2\/3 {
    width: 66.66667%;
  }

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

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

  .sm\:w-1\/5 {
    width: 20%;
  }

  .sm\:w-2\/5 {
    width: 40%;
  }

  .sm\:w-3\/5 {
    width: 60%;
  }

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

  .sm\:w-1\/6 {
    width: 16.66667%;
  }

  .sm\:w-5\/6 {
    width: 83.33333%;
  }

  .sm\:w-1\/12 {
    width: 8.33333%;
  }

  .sm\:w-5\/12 {
    width: 41.66667%;
  }

  .sm\:w-7\/12 {
    width: 58.33333%;
  }

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

  .sm\:w-screen {
    width: 100vw;
  }
}

@media (min-width: 768px) {
  .md\:appearance-none {
    appearance: none;
  }

  .md\:bg-fixed {
    background-attachment: fixed;
  }

  .md\:bg-local {
    background-attachment: local;
  }

  .md\:bg-scroll {
    background-attachment: scroll;
  }

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

  .md\:bg-white {
    background-color: #fff;
  }

  .md\:bg-grey-lighter-trans {
    background-color: rgba(242, 243, 246, .3);
  }

  .md\:bg-grey-lighter {
    background-color: #f2f3f6;
  }

  .md\:bg-grey {
    background-color: #e6e8ec;
  }

  .md\:bg-grey-darker {
    background-color: #ced2db;
  }

  .md\:bg-grey-darkest {
    background-color: #c1c6d2;
  }

  .md\:bg-navy-lightest {
    background-color: #5e6b89;
  }

  .md\:bg-navy-lighter {
    background-color: #6b7792;
  }

  .md\:bg-navy {
    background-color: #081c4a;
  }

  .md\:bg-navy-darker {
    background-color: #001035;
  }

  .md\:bg-navy-darkest {
    background-color: #000e2d;
  }

  .md\:bg-pink-lighter {
    background-color: #ffd0e5;
  }

  .md\:bg-pink {
    background-color: #e31c78;
  }

  .md\:bg-pink-darker {
    background-color: #bb0872;
  }

  .md\:bg-pink-darkest {
    background-color: #aa0467;
  }

  .md\:bg-teal {
    background-color: #2bd6c4;
  }

  .md\:bg-teal-darker {
    background-color: #007b83;
  }

  .md\:bg-teal-darkest {
    background-color: #005358;
  }

  .md\:bg-blue {
    background-color: #05c2de;
  }

  .md\:bg-navy-gradient-0 {
    background-color: #052b5f;
  }

  .md\:bg-navy-gradient-100 {
    background-color: #041437;
  }

  .md\:bg-pink-gradient-0 {
    background-color: #e31c78;
  }

  .md\:bg-pink-gradient-100 {
    background-color: #b41c6e;
  }

  .md\:bg-blue-gradient-0 {
    background-color: #05c2de;
  }

  .md\:bg-blue-gradient-100 {
    background-color: #029fc7;
  }

  .md\:bg-teal-gradient-0 {
    background-color: #2bd6c4;
  }

  .md\:bg-teal-gradient-100 {
    background-color: #088c90;
  }

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

  .md\:hover\:bg-white:hover {
    background-color: #fff;
  }

  .md\:hover\:bg-grey-lighter-trans:hover {
    background-color: rgba(242, 243, 246, .3);
  }

  .md\:hover\:bg-grey-lighter:hover {
    background-color: #f2f3f6;
  }

  .md\:hover\:bg-grey:hover {
    background-color: #e6e8ec;
  }

  .md\:hover\:bg-grey-darker:hover {
    background-color: #ced2db;
  }

  .md\:hover\:bg-grey-darkest:hover {
    background-color: #c1c6d2;
  }

  .md\:hover\:bg-navy-lightest:hover {
    background-color: #5e6b89;
  }

  .md\:hover\:bg-navy-lighter:hover {
    background-color: #6b7792;
  }

  .md\:hover\:bg-navy:hover {
    background-color: #081c4a;
  }

  .md\:hover\:bg-navy-darker:hover {
    background-color: #001035;
  }

  .md\:hover\:bg-navy-darkest:hover {
    background-color: #000e2d;
  }

  .md\:hover\:bg-pink-lighter:hover {
    background-color: #ffd0e5;
  }

  .md\:hover\:bg-pink:hover {
    background-color: #e31c78;
  }

  .md\:hover\:bg-pink-darker:hover {
    background-color: #bb0872;
  }

  .md\:hover\:bg-pink-darkest:hover {
    background-color: #aa0467;
  }

  .md\:hover\:bg-teal:hover {
    background-color: #2bd6c4;
  }

  .md\:hover\:bg-teal-darker:hover {
    background-color: #007b83;
  }

  .md\:hover\:bg-teal-darkest:hover {
    background-color: #005358;
  }

  .md\:hover\:bg-blue:hover {
    background-color: #05c2de;
  }

  .md\:hover\:bg-navy-gradient-0:hover {
    background-color: #052b5f;
  }

  .md\:hover\:bg-navy-gradient-100:hover {
    background-color: #041437;
  }

  .md\:hover\:bg-pink-gradient-0:hover {
    background-color: #e31c78;
  }

  .md\:hover\:bg-pink-gradient-100:hover {
    background-color: #b41c6e;
  }

  .md\:hover\:bg-blue-gradient-0:hover {
    background-color: #05c2de;
  }

  .md\:hover\:bg-blue-gradient-100:hover {
    background-color: #029fc7;
  }

  .md\:hover\:bg-teal-gradient-0:hover {
    background-color: #2bd6c4;
  }

  .md\:hover\:bg-teal-gradient-100:hover {
    background-color: #088c90;
  }

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

  .md\:focus\:bg-white:focus {
    background-color: #fff;
  }

  .md\:focus\:bg-grey-lighter-trans:focus {
    background-color: rgba(242, 243, 246, .3);
  }

  .md\:focus\:bg-grey-lighter:focus {
    background-color: #f2f3f6;
  }

  .md\:focus\:bg-grey:focus {
    background-color: #e6e8ec;
  }

  .md\:focus\:bg-grey-darker:focus {
    background-color: #ced2db;
  }

  .md\:focus\:bg-grey-darkest:focus {
    background-color: #c1c6d2;
  }

  .md\:focus\:bg-navy-lightest:focus {
    background-color: #5e6b89;
  }

  .md\:focus\:bg-navy-lighter:focus {
    background-color: #6b7792;
  }

  .md\:focus\:bg-navy:focus {
    background-color: #081c4a;
  }

  .md\:focus\:bg-navy-darker:focus {
    background-color: #001035;
  }

  .md\:focus\:bg-navy-darkest:focus {
    background-color: #000e2d;
  }

  .md\:focus\:bg-pink-lighter:focus {
    background-color: #ffd0e5;
  }

  .md\:focus\:bg-pink:focus {
    background-color: #e31c78;
  }

  .md\:focus\:bg-pink-darker:focus {
    background-color: #bb0872;
  }

  .md\:focus\:bg-pink-darkest:focus {
    background-color: #aa0467;
  }

  .md\:focus\:bg-teal:focus {
    background-color: #2bd6c4;
  }

  .md\:focus\:bg-teal-darker:focus {
    background-color: #007b83;
  }

  .md\:focus\:bg-teal-darkest:focus {
    background-color: #005358;
  }

  .md\:focus\:bg-blue:focus {
    background-color: #05c2de;
  }

  .md\:focus\:bg-navy-gradient-0:focus {
    background-color: #052b5f;
  }

  .md\:focus\:bg-navy-gradient-100:focus {
    background-color: #041437;
  }

  .md\:focus\:bg-pink-gradient-0:focus {
    background-color: #e31c78;
  }

  .md\:focus\:bg-pink-gradient-100:focus {
    background-color: #b41c6e;
  }

  .md\:focus\:bg-blue-gradient-0:focus {
    background-color: #05c2de;
  }

  .md\:focus\:bg-blue-gradient-100:focus {
    background-color: #029fc7;
  }

  .md\:focus\:bg-teal-gradient-0:focus {
    background-color: #2bd6c4;
  }

  .md\:focus\:bg-teal-gradient-100:focus {
    background-color: #088c90;
  }

  .md\:bg-bottom {
    background-position: bottom;
  }

  .md\:bg-center {
    background-position: center;
  }

  .md\:bg-left {
    background-position: left;
  }

  .md\:bg-left-bottom {
    background-position: left bottom;
  }

  .md\:bg-left-top {
    background-position: left top;
  }

  .md\:bg-right {
    background-position: right;
  }

  .md\:bg-right-bottom {
    background-position: right bottom;
  }

  .md\:bg-right-top {
    background-position: right top;
  }

  .md\:bg-top {
    background-position: top;
  }

  .md\:bg-repeat {
    background-repeat: repeat;
  }

  .md\:bg-no-repeat {
    background-repeat: no-repeat;
  }

  .md\:bg-repeat-x {
    background-repeat: repeat-x;
  }

  .md\:bg-repeat-y {
    background-repeat: repeat-y;
  }

  .md\:bg-auto {
    background-size: auto;
  }

  .md\:bg-cover {
    background-size: cover;
  }

  .md\:bg-contain {
    background-size: contain;
  }

  .md\:border-transparent {
    border-color: transparent;
  }

  .md\:border-white {
    border-color: #fff;
  }

  .md\:border-grey-lighter-trans {
    border-color: rgba(242, 243, 246, .3);
  }

  .md\:border-grey-lighter {
    border-color: #f2f3f6;
  }

  .md\:border-grey {
    border-color: #e6e8ec;
  }

  .md\:border-grey-darker {
    border-color: #ced2db;
  }

  .md\:border-grey-darkest {
    border-color: #c1c6d2;
  }

  .md\:border-navy-lightest {
    border-color: #5e6b89;
  }

  .md\:border-navy-lighter {
    border-color: #6b7792;
  }

  .md\:border-navy {
    border-color: #081c4a;
  }

  .md\:border-navy-darker {
    border-color: #001035;
  }

  .md\:border-navy-darkest {
    border-color: #000e2d;
  }

  .md\:border-pink-lighter {
    border-color: #ffd0e5;
  }

  .md\:border-pink {
    border-color: #e31c78;
  }

  .md\:border-pink-darker {
    border-color: #bb0872;
  }

  .md\:border-pink-darkest {
    border-color: #aa0467;
  }

  .md\:border-teal {
    border-color: #2bd6c4;
  }

  .md\:border-teal-darker {
    border-color: #007b83;
  }

  .md\:border-teal-darkest {
    border-color: #005358;
  }

  .md\:border-blue {
    border-color: #05c2de;
  }

  .md\:border-navy-gradient-0 {
    border-color: #052b5f;
  }

  .md\:border-navy-gradient-100 {
    border-color: #041437;
  }

  .md\:border-pink-gradient-0 {
    border-color: #e31c78;
  }

  .md\:border-pink-gradient-100 {
    border-color: #b41c6e;
  }

  .md\:border-blue-gradient-0 {
    border-color: #05c2de;
  }

  .md\:border-blue-gradient-100 {
    border-color: #029fc7;
  }

  .md\:border-teal-gradient-0 {
    border-color: #2bd6c4;
  }

  .md\:border-teal-gradient-100 {
    border-color: #088c90;
  }

  .md\:hover\:border-transparent:hover {
    border-color: transparent;
  }

  .md\:hover\:border-white:hover {
    border-color: #fff;
  }

  .md\:hover\:border-grey-lighter-trans:hover {
    border-color: rgba(242, 243, 246, .3);
  }

  .md\:hover\:border-grey-lighter:hover {
    border-color: #f2f3f6;
  }

  .md\:hover\:border-grey:hover {
    border-color: #e6e8ec;
  }

  .md\:hover\:border-grey-darker:hover {
    border-color: #ced2db;
  }

  .md\:hover\:border-grey-darkest:hover {
    border-color: #c1c6d2;
  }

  .md\:hover\:border-navy-lightest:hover {
    border-color: #5e6b89;
  }

  .md\:hover\:border-navy-lighter:hover {
    border-color: #6b7792;
  }

  .md\:hover\:border-navy:hover {
    border-color: #081c4a;
  }

  .md\:hover\:border-navy-darker:hover {
    border-color: #001035;
  }

  .md\:hover\:border-navy-darkest:hover {
    border-color: #000e2d;
  }

  .md\:hover\:border-pink-lighter:hover {
    border-color: #ffd0e5;
  }

  .md\:hover\:border-pink:hover {
    border-color: #e31c78;
  }

  .md\:hover\:border-pink-darker:hover {
    border-color: #bb0872;
  }

  .md\:hover\:border-pink-darkest:hover {
    border-color: #aa0467;
  }

  .md\:hover\:border-teal:hover {
    border-color: #2bd6c4;
  }

  .md\:hover\:border-teal-darker:hover {
    border-color: #007b83;
  }

  .md\:hover\:border-teal-darkest:hover {
    border-color: #005358;
  }

  .md\:hover\:border-blue:hover {
    border-color: #05c2de;
  }

  .md\:hover\:border-navy-gradient-0:hover {
    border-color: #052b5f;
  }

  .md\:hover\:border-navy-gradient-100:hover {
    border-color: #041437;
  }

  .md\:hover\:border-pink-gradient-0:hover {
    border-color: #e31c78;
  }

  .md\:hover\:border-pink-gradient-100:hover {
    border-color: #b41c6e;
  }

  .md\:hover\:border-blue-gradient-0:hover {
    border-color: #05c2de;
  }

  .md\:hover\:border-blue-gradient-100:hover {
    border-color: #029fc7;
  }

  .md\:hover\:border-teal-gradient-0:hover {
    border-color: #2bd6c4;
  }

  .md\:hover\:border-teal-gradient-100:hover {
    border-color: #088c90;
  }

  .md\:focus\:border-transparent:focus {
    border-color: transparent;
  }

  .md\:focus\:border-white:focus {
    border-color: #fff;
  }

  .md\:focus\:border-grey-lighter-trans:focus {
    border-color: rgba(242, 243, 246, .3);
  }

  .md\:focus\:border-grey-lighter:focus {
    border-color: #f2f3f6;
  }

  .md\:focus\:border-grey:focus {
    border-color: #e6e8ec;
  }

  .md\:focus\:border-grey-darker:focus {
    border-color: #ced2db;
  }

  .md\:focus\:border-grey-darkest:focus {
    border-color: #c1c6d2;
  }

  .md\:focus\:border-navy-lightest:focus {
    border-color: #5e6b89;
  }

  .md\:focus\:border-navy-lighter:focus {
    border-color: #6b7792;
  }

  .md\:focus\:border-navy:focus {
    border-color: #081c4a;
  }

  .md\:focus\:border-navy-darker:focus {
    border-color: #001035;
  }

  .md\:focus\:border-navy-darkest:focus {
    border-color: #000e2d;
  }

  .md\:focus\:border-pink-lighter:focus {
    border-color: #ffd0e5;
  }

  .md\:focus\:border-pink:focus {
    border-color: #e31c78;
  }

  .md\:focus\:border-pink-darker:focus {
    border-color: #bb0872;
  }

  .md\:focus\:border-pink-darkest:focus {
    border-color: #aa0467;
  }

  .md\:focus\:border-teal:focus {
    border-color: #2bd6c4;
  }

  .md\:focus\:border-teal-darker:focus {
    border-color: #007b83;
  }

  .md\:focus\:border-teal-darkest:focus {
    border-color: #005358;
  }

  .md\:focus\:border-blue:focus {
    border-color: #05c2de;
  }

  .md\:focus\:border-navy-gradient-0:focus {
    border-color: #052b5f;
  }

  .md\:focus\:border-navy-gradient-100:focus {
    border-color: #041437;
  }

  .md\:focus\:border-pink-gradient-0:focus {
    border-color: #e31c78;
  }

  .md\:focus\:border-pink-gradient-100:focus {
    border-color: #b41c6e;
  }

  .md\:focus\:border-blue-gradient-0:focus {
    border-color: #05c2de;
  }

  .md\:focus\:border-blue-gradient-100:focus {
    border-color: #029fc7;
  }

  .md\:focus\:border-teal-gradient-0:focus {
    border-color: #2bd6c4;
  }

  .md\:focus\:border-teal-gradient-100:focus {
    border-color: #088c90;
  }

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

  .md\:rounded {
    border-radius: 6px;
  }

  .md\:rounded-form {
    border-radius: 21px;
  }

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

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

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

  .md\:rounded-b-none {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .md\:rounded-l-none {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .md\:rounded-t {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
  }

  .md\:rounded-r {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
  }

  .md\:rounded-b {
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
  }

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

  .md\:rounded-t-form {
    border-top-left-radius: 21px;
    border-top-right-radius: 21px;
  }

  .md\:rounded-r-form {
    border-top-right-radius: 21px;
    border-bottom-right-radius: 21px;
  }

  .md\:rounded-b-form {
    border-bottom-right-radius: 21px;
    border-bottom-left-radius: 21px;
  }

  .md\:rounded-l-form {
    border-top-left-radius: 21px;
    border-bottom-left-radius: 21px;
  }

  .md\:rounded-t-full {
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

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

  .md\:rounded-b-full {
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .md\:rounded-l-full {
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .md\:rounded-tl-none {
    border-top-left-radius: 0;
  }

  .md\:rounded-tr-none {
    border-top-right-radius: 0;
  }

  .md\:rounded-br-none {
    border-bottom-right-radius: 0;
  }

  .md\:rounded-bl-none {
    border-bottom-left-radius: 0;
  }

  .md\:rounded-tl {
    border-top-left-radius: 6px;
  }

  .md\:rounded-tr {
    border-top-right-radius: 6px;
  }

  .md\:rounded-br {
    border-bottom-right-radius: 6px;
  }

  .md\:rounded-bl {
    border-bottom-left-radius: 6px;
  }

  .md\:rounded-tl-form {
    border-top-left-radius: 21px;
  }

  .md\:rounded-tr-form {
    border-top-right-radius: 21px;
  }

  .md\:rounded-br-form {
    border-bottom-right-radius: 21px;
  }

  .md\:rounded-bl-form {
    border-bottom-left-radius: 21px;
  }

  .md\:rounded-tl-full {
    border-top-left-radius: 9999px;
  }

  .md\:rounded-tr-full {
    border-top-right-radius: 9999px;
  }

  .md\:rounded-br-full {
    border-bottom-right-radius: 9999px;
  }

  .md\:rounded-bl-full {
    border-bottom-left-radius: 9999px;
  }

  .md\:border-solid {
    border-style: solid;
  }

  .md\:border-dashed {
    border-style: dashed;
  }

  .md\:border-dotted {
    border-style: dotted;
  }

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

  .md\:border-0 {
    border-width: 0;
  }

  .md\:border-2 {
    border-width: 2px;
  }

  .md\:border-4 {
    border-width: 4px;
  }

  .md\:border-8 {
    border-width: 8px;
  }

  .md\:border {
    border-width: 1px;
  }

  .md\:border-t-0 {
    border-top-width: 0;
  }

  .md\:border-r-0 {
    border-right-width: 0;
  }

  .md\:border-b-0 {
    border-bottom-width: 0;
  }

  .md\:border-l-0 {
    border-left-width: 0;
  }

  .md\:border-t-2 {
    border-top-width: 2px;
  }

  .md\:border-r-2 {
    border-right-width: 2px;
  }

  .md\:border-b-2 {
    border-bottom-width: 2px;
  }

  .md\:border-l-2 {
    border-left-width: 2px;
  }

  .md\:border-t-4 {
    border-top-width: 4px;
  }

  .md\:border-r-4 {
    border-right-width: 4px;
  }

  .md\:border-b-4 {
    border-bottom-width: 4px;
  }

  .md\:border-l-4 {
    border-left-width: 4px;
  }

  .md\:border-t-8 {
    border-top-width: 8px;
  }

  .md\:border-r-8 {
    border-right-width: 8px;
  }

  .md\:border-b-8 {
    border-bottom-width: 8px;
  }

  .md\:border-l-8 {
    border-left-width: 8px;
  }

  .md\:border-t {
    border-top-width: 1px;
  }

  .md\:border-r {
    border-right-width: 1px;
  }

  .md\:border-b {
    border-bottom-width: 1px;
  }

  .md\:border-l {
    border-left-width: 1px;
  }

  .md\:cursor-auto {
    cursor: auto;
  }

  .md\:cursor-default {
    cursor: default;
  }

  .md\:cursor-pointer {
    cursor: pointer;
  }

  .md\:cursor-wait {
    cursor: wait;
  }

  .md\:cursor-move {
    cursor: move;
  }

  .md\:cursor-not-allowed {
    cursor: not-allowed;
  }

  .md\:block {
    display: block;
  }

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

  .md\:inline {
    display: inline;
  }

  .md\:table {
    display: table;
  }

  .md\:table-row {
    display: table-row;
  }

  .md\:table-cell {
    display: table-cell;
  }

  .md\:hidden {
    display: none;
  }

  .md\:flex {
    display: flex;
  }

  .md\:inline-flex {
    display: inline-flex;
  }

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

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

  .md\:flex-col {
    flex-direction: column;
  }

  .md\:flex-col-reverse {
    flex-direction: column-reverse;
  }

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

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

  .md\:flex-no-wrap {
    flex-wrap: nowrap;
  }

  .md\:items-start {
    align-items: flex-start;
  }

  .md\:items-end {
    align-items: flex-end;
  }

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

  .md\:items-baseline {
    align-items: baseline;
  }

  .md\:items-stretch {
    align-items: stretch;
  }

  .md\:self-auto {
    align-self: auto;
  }

  .md\:self-start {
    align-self: flex-start;
  }

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

  .md\:self-center {
    align-self: center;
  }

  .md\:self-stretch {
    align-self: stretch;
  }

  .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\:justify-around {
    justify-content: space-around;
  }

  .md\:content-center {
    align-content: center;
  }

  .md\:content-start {
    align-content: flex-start;
  }

  .md\:content-end {
    align-content: flex-end;
  }

  .md\:content-between {
    align-content: space-between;
  }

  .md\:content-around {
    align-content: space-around;
  }

  .md\:flex-1 {
    flex: 1 1 0%;
  }

  .md\:flex-auto {
    flex: 1 1 auto;
  }

  .md\:flex-initial {
    flex: 0 1 auto;
  }

  .md\:flex-none {
    flex: none;
  }

  .md\:flex-grow {
    flex-grow: 1;
  }

  .md\:flex-shrink {
    flex-shrink: 1;
  }

  .md\:flex-no-grow {
    flex-grow: 0;
  }

  .md\:flex-no-shrink {
    flex-shrink: 0;
  }

  .md\:float-right {
    float: right;
  }

  .md\:float-left {
    float: left;
  }

  .md\:float-none {
    float: none;
  }

  .md\:clearfix:after {
    content: "";
    display: table;
    clear: both;
  }

  .md\:font-rubik {
    font-family: Rubik, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  }

  .md\:font-montserrat {
    font-family: Montserrat, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  }

  .md\:font-light {
    font-weight: 300;
  }

  .md\:font-regular {
    font-weight: 400;
  }

  .md\:font-medium {
    font-weight: 500;
  }

  .md\:font-semibold {
    font-weight: 600;
  }

  .md\:font-bold {
    font-weight: 700;
  }

  .md\:hover\:font-light:hover {
    font-weight: 300;
  }

  .md\:hover\:font-regular:hover {
    font-weight: 400;
  }

  .md\:hover\:font-medium:hover {
    font-weight: 500;
  }

  .md\:hover\:font-semibold:hover {
    font-weight: 600;
  }

  .md\:hover\:font-bold:hover {
    font-weight: 700;
  }

  .md\:focus\:font-light:focus {
    font-weight: 300;
  }

  .md\:focus\:font-regular:focus {
    font-weight: 400;
  }

  .md\:focus\:font-medium:focus {
    font-weight: 500;
  }

  .md\:focus\:font-semibold:focus {
    font-weight: 600;
  }

  .md\:focus\:font-bold:focus {
    font-weight: 700;
  }

  .md\:h-1 {
    height: .25rem;
  }

  .md\:h-2 {
    height: .5rem;
  }

  .md\:h-3 {
    height: .75rem;
  }

  .md\:h-4 {
    height: 1rem;
  }

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

  .md\:h-6 {
    height: 1.5rem;
  }

  .md\:h-8 {
    height: 2rem;
  }

  .md\:h-10 {
    height: 2.5rem;
  }

  .md\:h-12 {
    height: 3rem;
  }

  .md\:h-16 {
    height: 4rem;
  }

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

  .md\:h-32 {
    height: 8rem;
  }

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

  .md\:h-64 {
    height: 16rem;
  }

  .md\:h-auto {
    height: auto;
  }

  .md\:h-px {
    height: 1px;
  }

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

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

  .md\:m-0 {
    margin: 0;
  }

  .md\:m-4 {
    margin: 4px;
  }

  .md\:m-5 {
    margin: 5px;
  }

  .md\:m-8 {
    margin: 8px;
  }

  .md\:m-10 {
    margin: 10px;
  }

  .md\:m-15 {
    margin: 15px;
  }

  .md\:m-20 {
    margin: 20px;
  }

  .md\:m-25 {
    margin: 25px;
  }

  .md\:m-30 {
    margin: 30px;
  }

  .md\:m-35 {
    margin: 35px;
  }

  .md\:m-40 {
    margin: 40px;
  }

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

  .md\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

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

  .md\:my-4 {
    margin-top: 4px;
    margin-bottom: 4px;
  }

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

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

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

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

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

  .md\:my-10 {
    margin-top: 10px;
    margin-bottom: 10px;
  }

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

  .md\:my-15 {
    margin-top: 15px;
    margin-bottom: 15px;
  }

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

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

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

  .md\:my-25 {
    margin-top: 25px;
    margin-bottom: 25px;
  }

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

  .md\:my-30 {
    margin-top: 30px;
    margin-bottom: 30px;
  }

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

  .md\:my-35 {
    margin-top: 35px;
    margin-bottom: 35px;
  }

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

  .md\:my-40 {
    margin-top: 40px;
    margin-bottom: 40px;
  }

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

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

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

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

  .md\:mr-0 {
    margin-right: 0;
  }

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

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

  .md\:mt-4 {
    margin-top: 4px;
  }

  .md\:mr-4 {
    margin-right: 4px;
  }

  .md\:mb-4 {
    margin-bottom: 4px;
  }

  .md\:ml-4 {
    margin-left: 4px;
  }

  .md\:mt-5 {
    margin-top: 5px;
  }

  .md\:mr-5 {
    margin-right: 5px;
  }

  .md\:mb-5 {
    margin-bottom: 5px;
  }

  .md\:ml-5 {
    margin-left: 5px;
  }

  .md\:mt-8 {
    margin-top: 8px;
  }

  .md\:mr-8 {
    margin-right: 8px;
  }

  .md\:mb-8 {
    margin-bottom: 8px;
  }

  .md\:ml-8 {
    margin-left: 8px;
  }

  .md\:mt-10 {
    margin-top: 10px;
  }

  .md\:mr-10 {
    margin-right: 10px;
  }

  .md\:mb-10 {
    margin-bottom: 10px;
  }

  .md\:ml-10 {
    margin-left: 10px;
  }

  .md\:mt-15 {
    margin-top: 15px;
  }

  .md\:mr-15 {
    margin-right: 15px;
  }

  .md\:mb-15 {
    margin-bottom: 15px;
  }

  .md\:ml-15 {
    margin-left: 15px;
  }

  .md\:mt-20 {
    margin-top: 20px;
  }

  .md\:mr-20 {
    margin-right: 20px;
  }

  .md\:mb-20 {
    margin-bottom: 20px;
  }

  .md\:ml-20 {
    margin-left: 20px;
  }

  .md\:mt-25 {
    margin-top: 25px;
  }

  .md\:mr-25 {
    margin-right: 25px;
  }

  .md\:mb-25 {
    margin-bottom: 25px;
  }

  .md\:ml-25 {
    margin-left: 25px;
  }

  .md\:mt-30 {
    margin-top: 30px;
  }

  .md\:mr-30 {
    margin-right: 30px;
  }

  .md\:mb-30 {
    margin-bottom: 30px;
  }

  .md\:ml-30 {
    margin-left: 30px;
  }

  .md\:mt-35 {
    margin-top: 35px;
  }

  .md\:mr-35 {
    margin-right: 35px;
  }

  .md\:mb-35 {
    margin-bottom: 35px;
  }

  .md\:ml-35 {
    margin-left: 35px;
  }

  .md\:mt-40 {
    margin-top: 40px;
  }

  .md\:mr-40 {
    margin-right: 40px;
  }

  .md\:mb-40 {
    margin-bottom: 40px;
  }

  .md\:ml-40 {
    margin-left: 40px;
  }

  .md\:mt-auto {
    margin-top: auto;
  }

  .md\:mr-auto {
    margin-right: auto;
  }

  .md\:mb-auto {
    margin-bottom: auto;
  }

  .md\:ml-auto {
    margin-left: auto;
  }

  .md\:max-h-0 {
    max-height: 0px;
  }

  .md\:max-h-30 {
    max-height: 30px;
  }

  .md\:max-h-35 {
    max-height: 35px;
  }

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

  .md\:max-h-screen {
    max-height: 100vh;
  }

  .md\:max-w-200 {
    max-width: 200px;
  }

  .md\:max-w-300 {
    max-width: 300px;
  }

  .md\:max-w-400 {
    max-width: 400px;
  }

  .md\:max-w-540 {
    max-width: 540px;
  }

  .md\:max-w-600 {
    max-width: 600px;
  }

  .md\:max-w-800 {
    max-width: 700px;
  }

  .md\:max-w-920 {
    max-width: 920px;
  }

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

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

  .md\:max-w-1\/3 {
    max-width: 33.33333%;
  }

  .md\:max-w-2\/3 {
    max-width: 66.66667%;
  }

  .md\:max-w-1\/4 {
    max-width: 25%;
  }

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

  .md\:max-w-1\/5 {
    max-width: 20%;
  }

  .md\:max-w-2\/5 {
    max-width: 40%;
  }

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

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

  .md\:max-w-1\/6 {
    max-width: 16.66667%;
  }

  .md\:max-w-5\/6 {
    max-width: 83.33333%;
  }

  .md\:max-w-1\/12 {
    max-width: 8.33333%;
  }

  .md\:min-h-0 {
    min-height: 0;
  }

  .md\:min-h-70 {
    min-height: 70px;
  }

  .md\:min-h-100 {
    min-height: 100px;
  }

  .md\:min-h-260 {
    min-height: 260px;
  }

  .md\:min-h-300 {
    min-height: 300px;
  }

  .md\:min-h-400 {
    min-height: 400px;
  }

  .md\:min-h-500 {
    min-height: 500px;
  }

  .md\:min-h-600 {
    min-height: 600px;
  }

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

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

  .md\:min-w-0 {
    min-width: 0;
  }

  .md\:min-w-100 {
    min-width: 100px;
  }

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

  .md\:-m-10 {
    margin: -10px;
  }

  .md\:-m-11 {
    margin: -11px;
  }

  .md\:-m-15 {
    margin: -15px;
  }

  .md\:-m-25 {
    margin: -25px;
  }

  .md\:-m-30 {
    margin: -30px;
  }

  .md\:-m-42 {
    margin: -42px;
  }

  .md\:-my-10 {
    margin-top: -10px;
    margin-bottom: -10px;
  }

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

  .md\:-my-11 {
    margin-top: -11px;
    margin-bottom: -11px;
  }

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

  .md\:-my-15 {
    margin-top: -15px;
    margin-bottom: -15px;
  }

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

  .md\:-my-25 {
    margin-top: -25px;
    margin-bottom: -25px;
  }

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

  .md\:-my-30 {
    margin-top: -30px;
    margin-bottom: -30px;
  }

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

  .md\:-my-42 {
    margin-top: -42px;
    margin-bottom: -42px;
  }

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

  .md\:-mt-10 {
    margin-top: -10px;
  }

  .md\:-mr-10 {
    margin-right: -10px;
  }

  .md\:-mb-10 {
    margin-bottom: -10px;
  }

  .md\:-ml-10 {
    margin-left: -10px;
  }

  .md\:-mt-11 {
    margin-top: -11px;
  }

  .md\:-mr-11 {
    margin-right: -11px;
  }

  .md\:-mb-11 {
    margin-bottom: -11px;
  }

  .md\:-ml-11 {
    margin-left: -11px;
  }

  .md\:-mt-15 {
    margin-top: -15px;
  }

  .md\:-mr-15 {
    margin-right: -15px;
  }

  .md\:-mb-15 {
    margin-bottom: -15px;
  }

  .md\:-ml-15 {
    margin-left: -15px;
  }

  .md\:-mt-25 {
    margin-top: -25px;
  }

  .md\:-mr-25 {
    margin-right: -25px;
  }

  .md\:-mb-25 {
    margin-bottom: -25px;
  }

  .md\:-ml-25 {
    margin-left: -25px;
  }

  .md\:-mt-30 {
    margin-top: -30px;
  }

  .md\:-mr-30 {
    margin-right: -30px;
  }

  .md\:-mb-30 {
    margin-bottom: -30px;
  }

  .md\:-ml-30 {
    margin-left: -30px;
  }

  .md\:-mt-42 {
    margin-top: -42px;
  }

  .md\:-mr-42 {
    margin-right: -42px;
  }

  .md\:-mb-42 {
    margin-bottom: -42px;
  }

  .md\:-ml-42 {
    margin-left: -42px;
  }

  .md\:opacity-0 {
    opacity: 0;
  }

  .md\:opacity-25 {
    opacity: .25;
  }

  .md\:opacity-50 {
    opacity: .5;
  }

  .md\:opacity-75 {
    opacity: .75;
  }

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

  .md\:overflow-auto {
    overflow: auto;
  }

  .md\:overflow-hidden {
    overflow: hidden;
  }

  .md\:overflow-visible {
    overflow: visible;
  }

  .md\:overflow-scroll {
    overflow: scroll;
  }

  .md\:overflow-x-auto {
    overflow-x: auto;
  }

  .md\:overflow-y-auto {
    overflow-y: auto;
  }

  .md\:overflow-x-hidden {
    overflow-x: hidden;
  }

  .md\:overflow-y-hidden {
    overflow-y: hidden;
  }

  .md\:overflow-x-visible {
    overflow-x: visible;
  }

  .md\:overflow-y-visible {
    overflow-y: visible;
  }

  .md\:overflow-x-scroll {
    overflow-x: scroll;
  }

  .md\:overflow-y-scroll {
    overflow-y: scroll;
  }

  .md\:scrolling-touch {
    -webkit-overflow-scrolling: touch;
  }

  .md\:scrolling-auto {
    -webkit-overflow-scrolling: auto;
  }

  .md\:p-0 {
    padding: 0;
  }

  .md\:p-5 {
    padding: 5px;
  }

  .md\:p-8 {
    padding: 8px;
  }

  .md\:p-10 {
    padding: 10px;
  }

  .md\:p-14 {
    padding: 14px;
  }

  .md\:p-15 {
    padding: 15px;
  }

  .md\:p-20 {
    padding: 20px;
  }

  .md\:p-25 {
    padding: 25px;
  }

  .md\:p-28 {
    padding: 28px;
  }

  .md\:p-30 {
    padding: 30px;
  }

  .md\:p-40 {
    padding: 40px;
  }

  .md\:p-50 {
    padding: 50px;
  }

  .md\:p-60 {
    padding: 60px;
  }

  .md\:p-80 {
    padding: 80px;
  }

  .md\:p-95 {
    padding: 95px;
  }

  .md\:p-100 {
    padding: 100px;
  }

  .md\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

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

  .md\:py-5 {
    padding-top: 5px;
    padding-bottom: 5px;
  }

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

  .md\:py-8 {
    padding-top: 8px;
    padding-bottom: 8px;
  }

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

  .md\:py-10 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

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

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

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

  .md\:py-15 {
    padding-top: 15px;
    padding-bottom: 15px;
  }

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

  .md\:py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

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

  .md\:py-25 {
    padding-top: 25px;
    padding-bottom: 25px;
  }

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

  .md\:py-28 {
    padding-top: 28px;
    padding-bottom: 28px;
  }

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

  .md\:py-30 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

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

  .md\:py-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

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

  .md\:py-50 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

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

  .md\:py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

  .md\:py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

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

  .md\:py-95 {
    padding-top: 95px;
    padding-bottom: 95px;
  }

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

  .md\:py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

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

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

  .md\:pr-0 {
    padding-right: 0;
  }

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

  .md\:pl-0 {
    padding-left: 0;
  }

  .md\:pt-5 {
    padding-top: 5px;
  }

  .md\:pr-5 {
    padding-right: 5px;
  }

  .md\:pb-5 {
    padding-bottom: 5px;
  }

  .md\:pl-5 {
    padding-left: 5px;
  }

  .md\:pt-8 {
    padding-top: 8px;
  }

  .md\:pr-8 {
    padding-right: 8px;
  }

  .md\:pb-8 {
    padding-bottom: 8px;
  }

  .md\:pl-8 {
    padding-left: 8px;
  }

  .md\:pt-10 {
    padding-top: 10px;
  }

  .md\:pr-10 {
    padding-right: 10px;
  }

  .md\:pb-10 {
    padding-bottom: 10px;
  }

  .md\:pl-10 {
    padding-left: 10px;
  }

  .md\:pt-14 {
    padding-top: 14px;
  }

  .md\:pr-14 {
    padding-right: 14px;
  }

  .md\:pb-14 {
    padding-bottom: 14px;
  }

  .md\:pl-14 {
    padding-left: 14px;
  }

  .md\:pt-15 {
    padding-top: 15px;
  }

  .md\:pr-15 {
    padding-right: 15px;
  }

  .md\:pb-15 {
    padding-bottom: 15px;
  }

  .md\:pl-15 {
    padding-left: 15px;
  }

  .md\:pt-20 {
    padding-top: 20px;
  }

  .md\:pr-20 {
    padding-right: 20px;
  }

  .md\:pb-20 {
    padding-bottom: 20px;
  }

  .md\:pl-20 {
    padding-left: 20px;
  }

  .md\:pt-25 {
    padding-top: 25px;
  }

  .md\:pr-25 {
    padding-right: 25px;
  }

  .md\:pb-25 {
    padding-bottom: 25px;
  }

  .md\:pl-25 {
    padding-left: 25px;
  }

  .md\:pt-28 {
    padding-top: 28px;
  }

  .md\:pr-28 {
    padding-right: 28px;
  }

  .md\:pb-28 {
    padding-bottom: 28px;
  }

  .md\:pl-28 {
    padding-left: 28px;
  }

  .md\:pt-30 {
    padding-top: 30px;
  }

  .md\:pr-30 {
    padding-right: 30px;
  }

  .md\:pb-30 {
    padding-bottom: 30px;
  }

  .md\:pl-30 {
    padding-left: 30px;
  }

  .md\:pt-40 {
    padding-top: 40px;
  }

  .md\:pr-40 {
    padding-right: 40px;
  }

  .md\:pb-40 {
    padding-bottom: 40px;
  }

  .md\:pl-40 {
    padding-left: 40px;
  }

  .md\:pt-50 {
    padding-top: 50px;
  }

  .md\:pr-50 {
    padding-right: 50px;
  }

  .md\:pb-50 {
    padding-bottom: 50px;
  }

  .md\:pl-50 {
    padding-left: 50px;
  }

  .md\:pt-60 {
    padding-top: 60px;
  }

  .md\:pr-60 {
    padding-right: 60px;
  }

  .md\:pb-60 {
    padding-bottom: 60px;
  }

  .md\:pl-60 {
    padding-left: 60px;
  }

  .md\:pt-80 {
    padding-top: 80px;
  }

  .md\:pr-80 {
    padding-right: 80px;
  }

  .md\:pb-80 {
    padding-bottom: 80px;
  }

  .md\:pl-80 {
    padding-left: 80px;
  }

  .md\:pt-95 {
    padding-top: 95px;
  }

  .md\:pr-95 {
    padding-right: 95px;
  }

  .md\:pb-95 {
    padding-bottom: 95px;
  }

  .md\:pl-95 {
    padding-left: 95px;
  }

  .md\:pt-100 {
    padding-top: 100px;
  }

  .md\:pr-100 {
    padding-right: 100px;
  }

  .md\:pb-100 {
    padding-bottom: 100px;
  }

  .md\:pl-100 {
    padding-left: 100px;
  }

  .md\:static {
    position: static;
  }

  .md\:fixed {
    position: fixed;
  }

  .md\:absolute {
    position: absolute;
  }

  .md\:relative {
    position: relative;
  }

  .md\:sticky {
    position: sticky;
  }

  .md\:pin-none {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .md\:pin {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .md\:pin-y {
    top: 0;
    bottom: 0;
  }

  .md\:pin-x {
    right: 0;
    left: 0;
  }

  .md\:pin-t {
    top: 0;
  }

  .md\:pin-r {
    right: 0;
  }

  .md\:pin-b {
    bottom: 0;
  }

  .md\:pin-l {
    left: 0;
  }

  .md\:resize-none {
    resize: none;
  }

  .md\:resize-y {
    resize: vertical;
  }

  .md\:resize-x {
    resize: horizontal;
  }

  .md\:resize {
    resize: both;
  }

  .md\:shadow {
    box-shadow: 0 1px 4px 0 rgba(7, 29, 73, .1);
  }

  .md\:shadow-lg {
    box-shadow: 0 3px 6px 0 rgba(7, 29, 73, .1);
  }

  .md\:shadow-popover {
    box-shadow: 0 4px 6px 0 rgba(7, 29, 73, .3);
  }

  .md\:shadow-inner {
    box-shadow: inset 0 0 6px 0 rgba(7, 29, 73, .1);
  }

  .md\:shadow-none {
    box-shadow: none;
  }

  .md\:hover\:shadow:hover {
    box-shadow: 0 1px 4px 0 rgba(7, 29, 73, .1);
  }

  .md\:hover\:shadow-lg:hover {
    box-shadow: 0 3px 6px 0 rgba(7, 29, 73, .1);
  }

  .md\:hover\:shadow-popover:hover {
    box-shadow: 0 4px 6px 0 rgba(7, 29, 73, .3);
  }

  .md\:hover\:shadow-inner:hover {
    box-shadow: inset 0 0 6px 0 rgba(7, 29, 73, .1);
  }

  .md\:hover\:shadow-none:hover {
    box-shadow: none;
  }

  .md\:focus\:shadow:focus {
    box-shadow: 0 1px 4px 0 rgba(7, 29, 73, .1);
  }

  .md\:focus\:shadow-lg:focus {
    box-shadow: 0 3px 6px 0 rgba(7, 29, 73, .1);
  }

  .md\:focus\:shadow-popover:focus {
    box-shadow: 0 4px 6px 0 rgba(7, 29, 73, .3);
  }

  .md\:focus\:shadow-inner:focus {
    box-shadow: inset 0 0 6px 0 rgba(7, 29, 73, .1);
  }

  .md\:focus\:shadow-none:focus {
    box-shadow: none;
  }

  .md\:table-auto {
    table-layout: auto;
  }

  .md\:table-fixed {
    table-layout: fixed;
  }

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

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

  .md\:text-right {
    text-align: right;
  }

  .md\:text-justify {
    text-align: justify;
  }

  .md\:text-transparent {
    color: transparent;
  }

  .md\:text-white {
    color: #fff;
  }

  .md\:text-grey-lighter-trans {
    color: rgba(242, 243, 246, .3);
  }

  .md\:text-grey-lighter {
    color: #f2f3f6;
  }

  .md\:text-grey {
    color: #e6e8ec;
  }

  .md\:text-grey-darker {
    color: #ced2db;
  }

  .md\:text-grey-darkest {
    color: #c1c6d2;
  }

  .md\:text-navy-lightest {
    color: #5e6b89;
  }

  .md\:text-navy-lighter {
    color: #6b7792;
  }

  .md\:text-navy {
    color: #081c4a;
  }

  .md\:text-navy-darker {
    color: #001035;
  }

  .md\:text-navy-darkest {
    color: #000e2d;
  }

  .md\:text-pink-lighter {
    color: #ffd0e5;
  }

  .md\:text-pink {
    color: #e31c78;
  }

  .md\:text-pink-darker {
    color: #bb0872;
  }

  .md\:text-pink-darkest {
    color: #aa0467;
  }

  .md\:text-teal {
    color: #2bd6c4;
  }

  .md\:text-teal-darker {
    color: #007b83;
  }

  .md\:text-teal-darkest {
    color: #005358;
  }

  .md\:text-blue {
    color: #05c2de;
  }

  .md\:text-navy-gradient-0 {
    color: #052b5f;
  }

  .md\:text-navy-gradient-100 {
    color: #041437;
  }

  .md\:text-pink-gradient-0 {
    color: #e31c78;
  }

  .md\:text-pink-gradient-100 {
    color: #b41c6e;
  }

  .md\:text-blue-gradient-0 {
    color: #05c2de;
  }

  .md\:text-blue-gradient-100 {
    color: #029fc7;
  }

  .md\:text-teal-gradient-0 {
    color: #2bd6c4;
  }

  .md\:text-teal-gradient-100 {
    color: #088c90;
  }

  .md\:hover\:text-transparent:hover {
    color: transparent;
  }

  .md\:hover\:text-white:hover {
    color: #fff;
  }

  .md\:hover\:text-grey-lighter-trans:hover {
    color: rgba(242, 243, 246, .3);
  }

  .md\:hover\:text-grey-lighter:hover {
    color: #f2f3f6;
  }

  .md\:hover\:text-grey:hover {
    color: #e6e8ec;
  }

  .md\:hover\:text-grey-darker:hover {
    color: #ced2db;
  }

  .md\:hover\:text-grey-darkest:hover {
    color: #c1c6d2;
  }

  .md\:hover\:text-navy-lightest:hover {
    color: #5e6b89;
  }

  .md\:hover\:text-navy-lighter:hover {
    color: #6b7792;
  }

  .md\:hover\:text-navy:hover {
    color: #081c4a;
  }

  .md\:hover\:text-navy-darker:hover {
    color: #001035;
  }

  .md\:hover\:text-navy-darkest:hover {
    color: #000e2d;
  }

  .md\:hover\:text-pink-lighter:hover {
    color: #ffd0e5;
  }

  .md\:hover\:text-pink:hover {
    color: #e31c78;
  }

  .md\:hover\:text-pink-darker:hover {
    color: #bb0872;
  }

  .md\:hover\:text-pink-darkest:hover {
    color: #aa0467;
  }

  .md\:hover\:text-teal:hover {
    color: #2bd6c4;
  }

  .md\:hover\:text-teal-darker:hover {
    color: #007b83;
  }

  .md\:hover\:text-teal-darkest:hover {
    color: #005358;
  }

  .md\:hover\:text-blue:hover {
    color: #05c2de;
  }

  .md\:hover\:text-navy-gradient-0:hover {
    color: #052b5f;
  }

  .md\:hover\:text-navy-gradient-100:hover {
    color: #041437;
  }

  .md\:hover\:text-pink-gradient-0:hover {
    color: #e31c78;
  }

  .md\:hover\:text-pink-gradient-100:hover {
    color: #b41c6e;
  }

  .md\:hover\:text-blue-gradient-0:hover {
    color: #05c2de;
  }

  .md\:hover\:text-blue-gradient-100:hover {
    color: #029fc7;
  }

  .md\:hover\:text-teal-gradient-0:hover {
    color: #2bd6c4;
  }

  .md\:hover\:text-teal-gradient-100:hover {
    color: #088c90;
  }

  .md\:focus\:text-transparent:focus {
    color: transparent;
  }

  .md\:focus\:text-white:focus {
    color: #fff;
  }

  .md\:focus\:text-grey-lighter-trans:focus {
    color: rgba(242, 243, 246, .3);
  }

  .md\:focus\:text-grey-lighter:focus {
    color: #f2f3f6;
  }

  .md\:focus\:text-grey:focus {
    color: #e6e8ec;
  }

  .md\:focus\:text-grey-darker:focus {
    color: #ced2db;
  }

  .md\:focus\:text-grey-darkest:focus {
    color: #c1c6d2;
  }

  .md\:focus\:text-navy-lightest:focus {
    color: #5e6b89;
  }

  .md\:focus\:text-navy-lighter:focus {
    color: #6b7792;
  }

  .md\:focus\:text-navy:focus {
    color: #081c4a;
  }

  .md\:focus\:text-navy-darker:focus {
    color: #001035;
  }

  .md\:focus\:text-navy-darkest:focus {
    color: #000e2d;
  }

  .md\:focus\:text-pink-lighter:focus {
    color: #ffd0e5;
  }

  .md\:focus\:text-pink:focus {
    color: #e31c78;
  }

  .md\:focus\:text-pink-darker:focus {
    color: #bb0872;
  }

  .md\:focus\:text-pink-darkest:focus {
    color: #aa0467;
  }

  .md\:focus\:text-teal:focus {
    color: #2bd6c4;
  }

  .md\:focus\:text-teal-darker:focus {
    color: #007b83;
  }

  .md\:focus\:text-teal-darkest:focus {
    color: #005358;
  }

  .md\:focus\:text-blue:focus {
    color: #05c2de;
  }

  .md\:focus\:text-navy-gradient-0:focus {
    color: #052b5f;
  }

  .md\:focus\:text-navy-gradient-100:focus {
    color: #041437;
  }

  .md\:focus\:text-pink-gradient-0:focus {
    color: #e31c78;
  }

  .md\:focus\:text-pink-gradient-100:focus {
    color: #b41c6e;
  }

  .md\:focus\:text-blue-gradient-0:focus {
    color: #05c2de;
  }

  .md\:focus\:text-blue-gradient-100:focus {
    color: #029fc7;
  }

  .md\:focus\:text-teal-gradient-0:focus {
    color: #2bd6c4;
  }

  .md\:focus\:text-teal-gradient-100:focus {
    color: #088c90;
  }

  .md\:text-12 {
    font-size: 12px;
  }

  .md\:text-13 {
    font-size: 13px;
  }

  .md\:text-14 {
    font-size: 14px;
  }

  .md\:text-15 {
    font-size: 15px;
  }

  .md\:text-16 {
    font-size: 16px;
  }

  .md\:text-18 {
    font-size: 18px;
  }

  .md\:text-19 {
    font-size: 19px;
  }

  .md\:text-20 {
    font-size: 20px;
  }

  .md\:text-24 {
    font-size: 24px;
  }

  .md\:text-28 {
    font-size: 28px;
  }

  .md\:text-32 {
    font-size: 32px;
  }

  .md\:text-52 {
    font-size: 52px;
  }

  .md\:italic {
    font-style: italic;
  }

  .md\:roman {
    font-style: normal;
  }

  .md\:uppercase {
    text-transform: uppercase;
  }

  .md\:lowercase {
    text-transform: lowercase;
  }

  .md\:capitalize {
    text-transform: capitalize;
  }

  .md\:normal-case {
    text-transform: none;
  }

  .md\:underline {
    text-decoration: underline;
  }

  .md\:line-through {
    text-decoration: line-through;
  }

  .md\:no-underline {
    text-decoration: none;
  }

  .md\:antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .md\:subpixel-antialiased {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .md\:hover\:italic:hover {
    font-style: italic;
  }

  .md\:hover\:roman:hover {
    font-style: normal;
  }

  .md\:hover\:uppercase:hover {
    text-transform: uppercase;
  }

  .md\:hover\:lowercase:hover {
    text-transform: lowercase;
  }

  .md\:hover\:capitalize:hover {
    text-transform: capitalize;
  }

  .md\:hover\:normal-case:hover {
    text-transform: none;
  }

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

  .md\:hover\:line-through:hover {
    text-decoration: line-through;
  }

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

  .md\:hover\:antialiased:hover {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .md\:hover\:subpixel-antialiased:hover {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .md\:focus\:italic:focus {
    font-style: italic;
  }

  .md\:focus\:roman:focus {
    font-style: normal;
  }

  .md\:focus\:uppercase:focus {
    text-transform: uppercase;
  }

  .md\:focus\:lowercase:focus {
    text-transform: lowercase;
  }

  .md\:focus\:capitalize:focus {
    text-transform: capitalize;
  }

  .md\:focus\:normal-case:focus {
    text-transform: none;
  }

  .md\:focus\:underline:focus {
    text-decoration: underline;
  }

  .md\:focus\:line-through:focus {
    text-decoration: line-through;
  }

  .md\:focus\:no-underline:focus {
    text-decoration: none;
  }

  .md\:focus\:antialiased:focus {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .md\:focus\:subpixel-antialiased:focus {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .md\:visible {
    visibility: visible;
  }

  .md\:invisible {
    visibility: hidden;
  }

  .md\:w-4 {
    width: 4px;
  }

  .md\:w-150 {
    width: 150px;
  }

  .md\:w-200 {
    width: 200px;
  }

  .md\:w-250 {
    width: 250px;
  }

  .md\:w-380 {
    width: 380px;
  }

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

  .md\:w-px {
    width: 1px;
  }

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

  .md\:w-1\/3 {
    width: 33.33333%;
  }

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

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

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

  .md\:w-1\/5 {
    width: 20%;
  }

  .md\:w-2\/5 {
    width: 40%;
  }

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

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

  .md\:w-1\/6 {
    width: 16.66667%;
  }

  .md\:w-5\/6 {
    width: 83.33333%;
  }

  .md\:w-1\/12 {
    width: 8.33333%;
  }

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

  .md\:w-7\/12 {
    width: 58.33333%;
  }

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

  .md\:w-screen {
    width: 100vw;
  }
}

@media (min-width: 992px) {
  .lg\:appearance-none {
    appearance: none;
  }

  .lg\:bg-fixed {
    background-attachment: fixed;
  }

  .lg\:bg-local {
    background-attachment: local;
  }

  .lg\:bg-scroll {
    background-attachment: scroll;
  }

  .lg\:bg-transparent {
    background-color: transparent;
  }

  .lg\:bg-white {
    background-color: #fff;
  }

  .lg\:bg-grey-lighter-trans {
    background-color: rgba(242, 243, 246, .3);
  }

  .lg\:bg-grey-lighter {
    background-color: #f2f3f6;
  }

  .lg\:bg-grey {
    background-color: #e6e8ec;
  }

  .lg\:bg-grey-darker {
    background-color: #ced2db;
  }

  .lg\:bg-grey-darkest {
    background-color: #c1c6d2;
  }

  .lg\:bg-navy-lightest {
    background-color: #5e6b89;
  }

  .lg\:bg-navy-lighter {
    background-color: #6b7792;
  }

  .lg\:bg-navy {
    background-color: #081c4a;
  }

  .lg\:bg-navy-darker {
    background-color: #001035;
  }

  .lg\:bg-navy-darkest {
    background-color: #000e2d;
  }

  .lg\:bg-pink-lighter {
    background-color: #ffd0e5;
  }

  .lg\:bg-pink {
    background-color: #e31c78;
  }

  .lg\:bg-pink-darker {
    background-color: #bb0872;
  }

  .lg\:bg-pink-darkest {
    background-color: #aa0467;
  }

  .lg\:bg-teal {
    background-color: #2bd6c4;
  }

  .lg\:bg-teal-darker {
    background-color: #007b83;
  }

  .lg\:bg-teal-darkest {
    background-color: #005358;
  }

  .lg\:bg-blue {
    background-color: #05c2de;
  }

  .lg\:bg-navy-gradient-0 {
    background-color: #052b5f;
  }

  .lg\:bg-navy-gradient-100 {
    background-color: #041437;
  }

  .lg\:bg-pink-gradient-0 {
    background-color: #e31c78;
  }

  .lg\:bg-pink-gradient-100 {
    background-color: #b41c6e;
  }

  .lg\:bg-blue-gradient-0 {
    background-color: #05c2de;
  }

  .lg\:bg-blue-gradient-100 {
    background-color: #029fc7;
  }

  .lg\:bg-teal-gradient-0 {
    background-color: #2bd6c4;
  }

  .lg\:bg-teal-gradient-100 {
    background-color: #088c90;
  }

  .lg\:hover\:bg-transparent:hover {
    background-color: transparent;
  }

  .lg\:hover\:bg-white:hover {
    background-color: #fff;
  }

  .lg\:hover\:bg-grey-lighter-trans:hover {
    background-color: rgba(242, 243, 246, .3);
  }

  .lg\:hover\:bg-grey-lighter:hover {
    background-color: #f2f3f6;
  }

  .lg\:hover\:bg-grey:hover {
    background-color: #e6e8ec;
  }

  .lg\:hover\:bg-grey-darker:hover {
    background-color: #ced2db;
  }

  .lg\:hover\:bg-grey-darkest:hover {
    background-color: #c1c6d2;
  }

  .lg\:hover\:bg-navy-lightest:hover {
    background-color: #5e6b89;
  }

  .lg\:hover\:bg-navy-lighter:hover {
    background-color: #6b7792;
  }

  .lg\:hover\:bg-navy:hover {
    background-color: #081c4a;
  }

  .lg\:hover\:bg-navy-darker:hover {
    background-color: #001035;
  }

  .lg\:hover\:bg-navy-darkest:hover {
    background-color: #000e2d;
  }

  .lg\:hover\:bg-pink-lighter:hover {
    background-color: #ffd0e5;
  }

  .lg\:hover\:bg-pink:hover {
    background-color: #e31c78;
  }

  .lg\:hover\:bg-pink-darker:hover {
    background-color: #bb0872;
  }

  .lg\:hover\:bg-pink-darkest:hover {
    background-color: #aa0467;
  }

  .lg\:hover\:bg-teal:hover {
    background-color: #2bd6c4;
  }

  .lg\:hover\:bg-teal-darker:hover {
    background-color: #007b83;
  }

  .lg\:hover\:bg-teal-darkest:hover {
    background-color: #005358;
  }

  .lg\:hover\:bg-blue:hover {
    background-color: #05c2de;
  }

  .lg\:hover\:bg-navy-gradient-0:hover {
    background-color: #052b5f;
  }

  .lg\:hover\:bg-navy-gradient-100:hover {
    background-color: #041437;
  }

  .lg\:hover\:bg-pink-gradient-0:hover {
    background-color: #e31c78;
  }

  .lg\:hover\:bg-pink-gradient-100:hover {
    background-color: #b41c6e;
  }

  .lg\:hover\:bg-blue-gradient-0:hover {
    background-color: #05c2de;
  }

  .lg\:hover\:bg-blue-gradient-100:hover {
    background-color: #029fc7;
  }

  .lg\:hover\:bg-teal-gradient-0:hover {
    background-color: #2bd6c4;
  }

  .lg\:hover\:bg-teal-gradient-100:hover {
    background-color: #088c90;
  }

  .lg\:focus\:bg-transparent:focus {
    background-color: transparent;
  }

  .lg\:focus\:bg-white:focus {
    background-color: #fff;
  }

  .lg\:focus\:bg-grey-lighter-trans:focus {
    background-color: rgba(242, 243, 246, .3);
  }

  .lg\:focus\:bg-grey-lighter:focus {
    background-color: #f2f3f6;
  }

  .lg\:focus\:bg-grey:focus {
    background-color: #e6e8ec;
  }

  .lg\:focus\:bg-grey-darker:focus {
    background-color: #ced2db;
  }

  .lg\:focus\:bg-grey-darkest:focus {
    background-color: #c1c6d2;
  }

  .lg\:focus\:bg-navy-lightest:focus {
    background-color: #5e6b89;
  }

  .lg\:focus\:bg-navy-lighter:focus {
    background-color: #6b7792;
  }

  .lg\:focus\:bg-navy:focus {
    background-color: #081c4a;
  }

  .lg\:focus\:bg-navy-darker:focus {
    background-color: #001035;
  }

  .lg\:focus\:bg-navy-darkest:focus {
    background-color: #000e2d;
  }

  .lg\:focus\:bg-pink-lighter:focus {
    background-color: #ffd0e5;
  }

  .lg\:focus\:bg-pink:focus {
    background-color: #e31c78;
  }

  .lg\:focus\:bg-pink-darker:focus {
    background-color: #bb0872;
  }

  .lg\:focus\:bg-pink-darkest:focus {
    background-color: #aa0467;
  }

  .lg\:focus\:bg-teal:focus {
    background-color: #2bd6c4;
  }

  .lg\:focus\:bg-teal-darker:focus {
    background-color: #007b83;
  }

  .lg\:focus\:bg-teal-darkest:focus {
    background-color: #005358;
  }

  .lg\:focus\:bg-blue:focus {
    background-color: #05c2de;
  }

  .lg\:focus\:bg-navy-gradient-0:focus {
    background-color: #052b5f;
  }

  .lg\:focus\:bg-navy-gradient-100:focus {
    background-color: #041437;
  }

  .lg\:focus\:bg-pink-gradient-0:focus {
    background-color: #e31c78;
  }

  .lg\:focus\:bg-pink-gradient-100:focus {
    background-color: #b41c6e;
  }

  .lg\:focus\:bg-blue-gradient-0:focus {
    background-color: #05c2de;
  }

  .lg\:focus\:bg-blue-gradient-100:focus {
    background-color: #029fc7;
  }

  .lg\:focus\:bg-teal-gradient-0:focus {
    background-color: #2bd6c4;
  }

  .lg\:focus\:bg-teal-gradient-100:focus {
    background-color: #088c90;
  }

  .lg\:bg-bottom {
    background-position: bottom;
  }

  .lg\:bg-center {
    background-position: center;
  }

  .lg\:bg-left {
    background-position: left;
  }

  .lg\:bg-left-bottom {
    background-position: left bottom;
  }

  .lg\:bg-left-top {
    background-position: left top;
  }

  .lg\:bg-right {
    background-position: right;
  }

  .lg\:bg-right-bottom {
    background-position: right bottom;
  }

  .lg\:bg-right-top {
    background-position: right top;
  }

  .lg\:bg-top {
    background-position: top;
  }

  .lg\:bg-repeat {
    background-repeat: repeat;
  }

  .lg\:bg-no-repeat {
    background-repeat: no-repeat;
  }

  .lg\:bg-repeat-x {
    background-repeat: repeat-x;
  }

  .lg\:bg-repeat-y {
    background-repeat: repeat-y;
  }

  .lg\:bg-auto {
    background-size: auto;
  }

  .lg\:bg-cover {
    background-size: cover;
  }

  .lg\:bg-contain {
    background-size: contain;
  }

  .lg\:border-transparent {
    border-color: transparent;
  }

  .lg\:border-white {
    border-color: #fff;
  }

  .lg\:border-grey-lighter-trans {
    border-color: rgba(242, 243, 246, .3);
  }

  .lg\:border-grey-lighter {
    border-color: #f2f3f6;
  }

  .lg\:border-grey {
    border-color: #e6e8ec;
  }

  .lg\:border-grey-darker {
    border-color: #ced2db;
  }

  .lg\:border-grey-darkest {
    border-color: #c1c6d2;
  }

  .lg\:border-navy-lightest {
    border-color: #5e6b89;
  }

  .lg\:border-navy-lighter {
    border-color: #6b7792;
  }

  .lg\:border-navy {
    border-color: #081c4a;
  }

  .lg\:border-navy-darker {
    border-color: #001035;
  }

  .lg\:border-navy-darkest {
    border-color: #000e2d;
  }

  .lg\:border-pink-lighter {
    border-color: #ffd0e5;
  }

  .lg\:border-pink {
    border-color: #e31c78;
  }

  .lg\:border-pink-darker {
    border-color: #bb0872;
  }

  .lg\:border-pink-darkest {
    border-color: #aa0467;
  }

  .lg\:border-teal {
    border-color: #2bd6c4;
  }

  .lg\:border-teal-darker {
    border-color: #007b83;
  }

  .lg\:border-teal-darkest {
    border-color: #005358;
  }

  .lg\:border-blue {
    border-color: #05c2de;
  }

  .lg\:border-navy-gradient-0 {
    border-color: #052b5f;
  }

  .lg\:border-navy-gradient-100 {
    border-color: #041437;
  }

  .lg\:border-pink-gradient-0 {
    border-color: #e31c78;
  }

  .lg\:border-pink-gradient-100 {
    border-color: #b41c6e;
  }

  .lg\:border-blue-gradient-0 {
    border-color: #05c2de;
  }

  .lg\:border-blue-gradient-100 {
    border-color: #029fc7;
  }

  .lg\:border-teal-gradient-0 {
    border-color: #2bd6c4;
  }

  .lg\:border-teal-gradient-100 {
    border-color: #088c90;
  }

  .lg\:hover\:border-transparent:hover {
    border-color: transparent;
  }

  .lg\:hover\:border-white:hover {
    border-color: #fff;
  }

  .lg\:hover\:border-grey-lighter-trans:hover {
    border-color: rgba(242, 243, 246, .3);
  }

  .lg\:hover\:border-grey-lighter:hover {
    border-color: #f2f3f6;
  }

  .lg\:hover\:border-grey:hover {
    border-color: #e6e8ec;
  }

  .lg\:hover\:border-grey-darker:hover {
    border-color: #ced2db;
  }

  .lg\:hover\:border-grey-darkest:hover {
    border-color: #c1c6d2;
  }

  .lg\:hover\:border-navy-lightest:hover {
    border-color: #5e6b89;
  }

  .lg\:hover\:border-navy-lighter:hover {
    border-color: #6b7792;
  }

  .lg\:hover\:border-navy:hover {
    border-color: #081c4a;
  }

  .lg\:hover\:border-navy-darker:hover {
    border-color: #001035;
  }

  .lg\:hover\:border-navy-darkest:hover {
    border-color: #000e2d;
  }

  .lg\:hover\:border-pink-lighter:hover {
    border-color: #ffd0e5;
  }

  .lg\:hover\:border-pink:hover {
    border-color: #e31c78;
  }

  .lg\:hover\:border-pink-darker:hover {
    border-color: #bb0872;
  }

  .lg\:hover\:border-pink-darkest:hover {
    border-color: #aa0467;
  }

  .lg\:hover\:border-teal:hover {
    border-color: #2bd6c4;
  }

  .lg\:hover\:border-teal-darker:hover {
    border-color: #007b83;
  }

  .lg\:hover\:border-teal-darkest:hover {
    border-color: #005358;
  }

  .lg\:hover\:border-blue:hover {
    border-color: #05c2de;
  }

  .lg\:hover\:border-navy-gradient-0:hover {
    border-color: #052b5f;
  }

  .lg\:hover\:border-navy-gradient-100:hover {
    border-color: #041437;
  }

  .lg\:hover\:border-pink-gradient-0:hover {
    border-color: #e31c78;
  }

  .lg\:hover\:border-pink-gradient-100:hover {
    border-color: #b41c6e;
  }

  .lg\:hover\:border-blue-gradient-0:hover {
    border-color: #05c2de;
  }

  .lg\:hover\:border-blue-gradient-100:hover {
    border-color: #029fc7;
  }

  .lg\:hover\:border-teal-gradient-0:hover {
    border-color: #2bd6c4;
  }

  .lg\:hover\:border-teal-gradient-100:hover {
    border-color: #088c90;
  }

  .lg\:focus\:border-transparent:focus {
    border-color: transparent;
  }

  .lg\:focus\:border-white:focus {
    border-color: #fff;
  }

  .lg\:focus\:border-grey-lighter-trans:focus {
    border-color: rgba(242, 243, 246, .3);
  }

  .lg\:focus\:border-grey-lighter:focus {
    border-color: #f2f3f6;
  }

  .lg\:focus\:border-grey:focus {
    border-color: #e6e8ec;
  }

  .lg\:focus\:border-grey-darker:focus {
    border-color: #ced2db;
  }

  .lg\:focus\:border-grey-darkest:focus {
    border-color: #c1c6d2;
  }

  .lg\:focus\:border-navy-lightest:focus {
    border-color: #5e6b89;
  }

  .lg\:focus\:border-navy-lighter:focus {
    border-color: #6b7792;
  }

  .lg\:focus\:border-navy:focus {
    border-color: #081c4a;
  }

  .lg\:focus\:border-navy-darker:focus {
    border-color: #001035;
  }

  .lg\:focus\:border-navy-darkest:focus {
    border-color: #000e2d;
  }

  .lg\:focus\:border-pink-lighter:focus {
    border-color: #ffd0e5;
  }

  .lg\:focus\:border-pink:focus {
    border-color: #e31c78;
  }

  .lg\:focus\:border-pink-darker:focus {
    border-color: #bb0872;
  }

  .lg\:focus\:border-pink-darkest:focus {
    border-color: #aa0467;
  }

  .lg\:focus\:border-teal:focus {
    border-color: #2bd6c4;
  }

  .lg\:focus\:border-teal-darker:focus {
    border-color: #007b83;
  }

  .lg\:focus\:border-teal-darkest:focus {
    border-color: #005358;
  }

  .lg\:focus\:border-blue:focus {
    border-color: #05c2de;
  }

  .lg\:focus\:border-navy-gradient-0:focus {
    border-color: #052b5f;
  }

  .lg\:focus\:border-navy-gradient-100:focus {
    border-color: #041437;
  }

  .lg\:focus\:border-pink-gradient-0:focus {
    border-color: #e31c78;
  }

  .lg\:focus\:border-pink-gradient-100:focus {
    border-color: #b41c6e;
  }

  .lg\:focus\:border-blue-gradient-0:focus {
    border-color: #05c2de;
  }

  .lg\:focus\:border-blue-gradient-100:focus {
    border-color: #029fc7;
  }

  .lg\:focus\:border-teal-gradient-0:focus {
    border-color: #2bd6c4;
  }

  .lg\:focus\:border-teal-gradient-100:focus {
    border-color: #088c90;
  }

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

  .lg\:rounded {
    border-radius: 6px;
  }

  .lg\:rounded-form {
    border-radius: 21px;
  }

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

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

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

  .lg\:rounded-b-none {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .lg\:rounded-l-none {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .lg\:rounded-t {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
  }

  .lg\:rounded-r {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
  }

  .lg\:rounded-b {
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
  }

  .lg\:rounded-l {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
  }

  .lg\:rounded-t-form {
    border-top-left-radius: 21px;
    border-top-right-radius: 21px;
  }

  .lg\:rounded-r-form {
    border-top-right-radius: 21px;
    border-bottom-right-radius: 21px;
  }

  .lg\:rounded-b-form {
    border-bottom-right-radius: 21px;
    border-bottom-left-radius: 21px;
  }

  .lg\:rounded-l-form {
    border-top-left-radius: 21px;
    border-bottom-left-radius: 21px;
  }

  .lg\:rounded-t-full {
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

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

  .lg\:rounded-b-full {
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .lg\:rounded-l-full {
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .lg\:rounded-tl-none {
    border-top-left-radius: 0;
  }

  .lg\:rounded-tr-none {
    border-top-right-radius: 0;
  }

  .lg\:rounded-br-none {
    border-bottom-right-radius: 0;
  }

  .lg\:rounded-bl-none {
    border-bottom-left-radius: 0;
  }

  .lg\:rounded-tl {
    border-top-left-radius: 6px;
  }

  .lg\:rounded-tr {
    border-top-right-radius: 6px;
  }

  .lg\:rounded-br {
    border-bottom-right-radius: 6px;
  }

  .lg\:rounded-bl {
    border-bottom-left-radius: 6px;
  }

  .lg\:rounded-tl-form {
    border-top-left-radius: 21px;
  }

  .lg\:rounded-tr-form {
    border-top-right-radius: 21px;
  }

  .lg\:rounded-br-form {
    border-bottom-right-radius: 21px;
  }

  .lg\:rounded-bl-form {
    border-bottom-left-radius: 21px;
  }

  .lg\:rounded-tl-full {
    border-top-left-radius: 9999px;
  }

  .lg\:rounded-tr-full {
    border-top-right-radius: 9999px;
  }

  .lg\:rounded-br-full {
    border-bottom-right-radius: 9999px;
  }

  .lg\:rounded-bl-full {
    border-bottom-left-radius: 9999px;
  }

  .lg\:border-solid {
    border-style: solid;
  }

  .lg\:border-dashed {
    border-style: dashed;
  }

  .lg\:border-dotted {
    border-style: dotted;
  }

  .lg\:border-none {
    border-style: none;
  }

  .lg\:border-0 {
    border-width: 0;
  }

  .lg\:border-2 {
    border-width: 2px;
  }

  .lg\:border-4 {
    border-width: 4px;
  }

  .lg\:border-8 {
    border-width: 8px;
  }

  .lg\:border {
    border-width: 1px;
  }

  .lg\:border-t-0 {
    border-top-width: 0;
  }

  .lg\:border-r-0 {
    border-right-width: 0;
  }

  .lg\:border-b-0 {
    border-bottom-width: 0;
  }

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

  .lg\:border-t-2 {
    border-top-width: 2px;
  }

  .lg\:border-r-2 {
    border-right-width: 2px;
  }

  .lg\:border-b-2 {
    border-bottom-width: 2px;
  }

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

  .lg\:border-t-4 {
    border-top-width: 4px;
  }

  .lg\:border-r-4 {
    border-right-width: 4px;
  }

  .lg\:border-b-4 {
    border-bottom-width: 4px;
  }

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

  .lg\:border-t-8 {
    border-top-width: 8px;
  }

  .lg\:border-r-8 {
    border-right-width: 8px;
  }

  .lg\:border-b-8 {
    border-bottom-width: 8px;
  }

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

  .lg\:border-t {
    border-top-width: 1px;
  }

  .lg\:border-r {
    border-right-width: 1px;
  }

  .lg\:border-b {
    border-bottom-width: 1px;
  }

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

  .lg\:cursor-auto {
    cursor: auto;
  }

  .lg\:cursor-default {
    cursor: default;
  }

  .lg\:cursor-pointer {
    cursor: pointer;
  }

  .lg\:cursor-wait {
    cursor: wait;
  }

  .lg\:cursor-move {
    cursor: move;
  }

  .lg\:cursor-not-allowed {
    cursor: not-allowed;
  }

  .lg\:block {
    display: block;
  }

  .lg\:inline-block {
    display: inline-block;
  }

  .lg\:inline {
    display: inline;
  }

  .lg\:table {
    display: table;
  }

  .lg\:table-row {
    display: table-row;
  }

  .lg\:table-cell {
    display: table-cell;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:inline-flex {
    display: inline-flex;
  }

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

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

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

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

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

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

  .lg\:flex-no-wrap {
    flex-wrap: nowrap;
  }

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

  .lg\:items-end {
    align-items: flex-end;
  }

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

  .lg\:items-baseline {
    align-items: baseline;
  }

  .lg\:items-stretch {
    align-items: stretch;
  }

  .lg\:self-auto {
    align-self: auto;
  }

  .lg\:self-start {
    align-self: flex-start;
  }

  .lg\:self-end {
    align-self: flex-end;
  }

  .lg\:self-center {
    align-self: center;
  }

  .lg\:self-stretch {
    align-self: stretch;
  }

  .lg\:justify-start {
    justify-content: flex-start;
  }

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

  .lg\:justify-center {
    justify-content: center;
  }

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

  .lg\:justify-around {
    justify-content: space-around;
  }

  .lg\:content-center {
    align-content: center;
  }

  .lg\:content-start {
    align-content: flex-start;
  }

  .lg\:content-end {
    align-content: flex-end;
  }

  .lg\:content-between {
    align-content: space-between;
  }

  .lg\:content-around {
    align-content: space-around;
  }

  .lg\:flex-1 {
    flex: 1 1 0%;
  }

  .lg\:flex-auto {
    flex: 1 1 auto;
  }

  .lg\:flex-initial {
    flex: 0 1 auto;
  }

  .lg\:flex-none {
    flex: none;
  }

  .lg\:flex-grow {
    flex-grow: 1;
  }

  .lg\:flex-shrink {
    flex-shrink: 1;
  }

  .lg\:flex-no-grow {
    flex-grow: 0;
  }

  .lg\:flex-no-shrink {
    flex-shrink: 0;
  }

  .lg\:float-right {
    float: right;
  }

  .lg\:float-left {
    float: left;
  }

  .lg\:float-none {
    float: none;
  }

  .lg\:clearfix:after {
    content: "";
    display: table;
    clear: both;
  }

  .lg\:font-rubik {
    font-family: Rubik, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  }

  .lg\:font-montserrat {
    font-family: Montserrat, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  }

  .lg\:font-light {
    font-weight: 300;
  }

  .lg\:font-regular {
    font-weight: 400;
  }

  .lg\:font-medium {
    font-weight: 500;
  }

  .lg\:font-semibold {
    font-weight: 600;
  }

  .lg\:font-bold {
    font-weight: 700;
  }

  .lg\:hover\:font-light:hover {
    font-weight: 300;
  }

  .lg\:hover\:font-regular:hover {
    font-weight: 400;
  }

  .lg\:hover\:font-medium:hover {
    font-weight: 500;
  }

  .lg\:hover\:font-semibold:hover {
    font-weight: 600;
  }

  .lg\:hover\:font-bold:hover {
    font-weight: 700;
  }

  .lg\:focus\:font-light:focus {
    font-weight: 300;
  }

  .lg\:focus\:font-regular:focus {
    font-weight: 400;
  }

  .lg\:focus\:font-medium:focus {
    font-weight: 500;
  }

  .lg\:focus\:font-semibold:focus {
    font-weight: 600;
  }

  .lg\:focus\:font-bold:focus {
    font-weight: 700;
  }

  .lg\:h-1 {
    height: .25rem;
  }

  .lg\:h-2 {
    height: .5rem;
  }

  .lg\:h-3 {
    height: .75rem;
  }

  .lg\:h-4 {
    height: 1rem;
  }

  .lg\:h-5 {
    height: 1.25rem;
  }

  .lg\:h-6 {
    height: 1.5rem;
  }

  .lg\:h-8 {
    height: 2rem;
  }

  .lg\:h-10 {
    height: 2.5rem;
  }

  .lg\:h-12 {
    height: 3rem;
  }

  .lg\:h-16 {
    height: 4rem;
  }

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

  .lg\:h-32 {
    height: 8rem;
  }

  .lg\:h-48 {
    height: 12rem;
  }

  .lg\:h-64 {
    height: 16rem;
  }

  .lg\:h-auto {
    height: auto;
  }

  .lg\:h-px {
    height: 1px;
  }

  .lg\:h-full {
    height: 100%;
  }

  .lg\:h-screen {
    height: 100vh;
  }

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

  .lg\:m-4 {
    margin: 4px;
  }

  .lg\:m-5 {
    margin: 5px;
  }

  .lg\:m-8 {
    margin: 8px;
  }

  .lg\:m-10 {
    margin: 10px;
  }

  .lg\:m-15 {
    margin: 15px;
  }

  .lg\:m-20 {
    margin: 20px;
  }

  .lg\:m-25 {
    margin: 25px;
  }

  .lg\:m-30 {
    margin: 30px;
  }

  .lg\:m-35 {
    margin: 35px;
  }

  .lg\:m-40 {
    margin: 40px;
  }

  .lg\:m-auto {
    margin: auto;
  }

  .lg\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

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

  .lg\:my-4 {
    margin-top: 4px;
    margin-bottom: 4px;
  }

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

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

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

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

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

  .lg\:my-10 {
    margin-top: 10px;
    margin-bottom: 10px;
  }

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

  .lg\:my-15 {
    margin-top: 15px;
    margin-bottom: 15px;
  }

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

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

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

  .lg\:my-25 {
    margin-top: 25px;
    margin-bottom: 25px;
  }

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

  .lg\:my-30 {
    margin-top: 30px;
    margin-bottom: 30px;
  }

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

  .lg\:my-35 {
    margin-top: 35px;
    margin-bottom: 35px;
  }

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

  .lg\:my-40 {
    margin-top: 40px;
    margin-bottom: 40px;
  }

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

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

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

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

  .lg\:mr-0 {
    margin-right: 0;
  }

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

  .lg\:ml-0 {
    margin-left: 0;
  }

  .lg\:mt-4 {
    margin-top: 4px;
  }

  .lg\:mr-4 {
    margin-right: 4px;
  }

  .lg\:mb-4 {
    margin-bottom: 4px;
  }

  .lg\:ml-4 {
    margin-left: 4px;
  }

  .lg\:mt-5 {
    margin-top: 5px;
  }

  .lg\:mr-5 {
    margin-right: 5px;
  }

  .lg\:mb-5 {
    margin-bottom: 5px;
  }

  .lg\:ml-5 {
    margin-left: 5px;
  }

  .lg\:mt-8 {
    margin-top: 8px;
  }

  .lg\:mr-8 {
    margin-right: 8px;
  }

  .lg\:mb-8 {
    margin-bottom: 8px;
  }

  .lg\:ml-8 {
    margin-left: 8px;
  }

  .lg\:mt-10 {
    margin-top: 10px;
  }

  .lg\:mr-10 {
    margin-right: 10px;
  }

  .lg\:mb-10 {
    margin-bottom: 10px;
  }

  .lg\:ml-10 {
    margin-left: 10px;
  }

  .lg\:mt-15 {
    margin-top: 15px;
  }

  .lg\:mr-15 {
    margin-right: 15px;
  }

  .lg\:mb-15 {
    margin-bottom: 15px;
  }

  .lg\:ml-15 {
    margin-left: 15px;
  }

  .lg\:mt-20 {
    margin-top: 20px;
  }

  .lg\:mr-20 {
    margin-right: 20px;
  }

  .lg\:mb-20 {
    margin-bottom: 20px;
  }

  .lg\:ml-20 {
    margin-left: 20px;
  }

  .lg\:mt-25 {
    margin-top: 25px;
  }

  .lg\:mr-25 {
    margin-right: 25px;
  }

  .lg\:mb-25 {
    margin-bottom: 25px;
  }

  .lg\:ml-25 {
    margin-left: 25px;
  }

  .lg\:mt-30 {
    margin-top: 30px;
  }

  .lg\:mr-30 {
    margin-right: 30px;
  }

  .lg\:mb-30 {
    margin-bottom: 30px;
  }

  .lg\:ml-30 {
    margin-left: 30px;
  }

  .lg\:mt-35 {
    margin-top: 35px;
  }

  .lg\:mr-35 {
    margin-right: 35px;
  }

  .lg\:mb-35 {
    margin-bottom: 35px;
  }

  .lg\:ml-35 {
    margin-left: 35px;
  }

  .lg\:mt-40 {
    margin-top: 40px;
  }

  .lg\:mr-40 {
    margin-right: 40px;
  }

  .lg\:mb-40 {
    margin-bottom: 40px;
  }

  .lg\:ml-40 {
    margin-left: 40px;
  }

  .lg\:mt-auto {
    margin-top: auto;
  }

  .lg\:mr-auto {
    margin-right: auto;
  }

  .lg\:mb-auto {
    margin-bottom: auto;
  }

  .lg\:ml-auto {
    margin-left: auto;
  }

  .lg\:max-h-0 {
    max-height: 0px;
  }

  .lg\:max-h-30 {
    max-height: 30px;
  }

  .lg\:max-h-35 {
    max-height: 35px;
  }

  .lg\:max-h-full {
    max-height: 100%;
  }

  .lg\:max-h-screen {
    max-height: 100vh;
  }

  .lg\:max-w-200 {
    max-width: 200px;
  }

  .lg\:max-w-300 {
    max-width: 300px;
  }

  .lg\:max-w-400 {
    max-width: 400px;
  }

  .lg\:max-w-540 {
    max-width: 540px;
  }

  .lg\:max-w-600 {
    max-width: 600px;
  }

  .lg\:max-w-800 {
    max-width: 700px;
  }

  .lg\:max-w-920 {
    max-width: 920px;
  }

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

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

  .lg\:max-w-1\/3 {
    max-width: 33.33333%;
  }

  .lg\:max-w-2\/3 {
    max-width: 66.66667%;
  }

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

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

  .lg\:max-w-1\/5 {
    max-width: 20%;
  }

  .lg\:max-w-2\/5 {
    max-width: 40%;
  }

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

  .lg\:max-w-4\/5 {
    max-width: 80%;
  }

  .lg\:max-w-1\/6 {
    max-width: 16.66667%;
  }

  .lg\:max-w-5\/6 {
    max-width: 83.33333%;
  }

  .lg\:max-w-1\/12 {
    max-width: 8.33333%;
  }

  .lg\:min-h-0 {
    min-height: 0;
  }

  .lg\:min-h-70 {
    min-height: 70px;
  }

  .lg\:min-h-100 {
    min-height: 100px;
  }

  .lg\:min-h-260 {
    min-height: 260px;
  }

  .lg\:min-h-300 {
    min-height: 300px;
  }

  .lg\:min-h-400 {
    min-height: 400px;
  }

  .lg\:min-h-500 {
    min-height: 500px;
  }

  .lg\:min-h-600 {
    min-height: 600px;
  }

  .lg\:min-h-full {
    min-height: 100%;
  }

  .lg\:min-h-screen {
    min-height: 100vh;
  }

  .lg\:min-w-0 {
    min-width: 0;
  }

  .lg\:min-w-100 {
    min-width: 100px;
  }

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

  .lg\:-m-10 {
    margin: -10px;
  }

  .lg\:-m-11 {
    margin: -11px;
  }

  .lg\:-m-15 {
    margin: -15px;
  }

  .lg\:-m-25 {
    margin: -25px;
  }

  .lg\:-m-30 {
    margin: -30px;
  }

  .lg\:-m-42 {
    margin: -42px;
  }

  .lg\:-my-10 {
    margin-top: -10px;
    margin-bottom: -10px;
  }

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

  .lg\:-my-11 {
    margin-top: -11px;
    margin-bottom: -11px;
  }

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

  .lg\:-my-15 {
    margin-top: -15px;
    margin-bottom: -15px;
  }

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

  .lg\:-my-25 {
    margin-top: -25px;
    margin-bottom: -25px;
  }

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

  .lg\:-my-30 {
    margin-top: -30px;
    margin-bottom: -30px;
  }

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

  .lg\:-my-42 {
    margin-top: -42px;
    margin-bottom: -42px;
  }

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

  .lg\:-mt-10 {
    margin-top: -10px;
  }

  .lg\:-mr-10 {
    margin-right: -10px;
  }

  .lg\:-mb-10 {
    margin-bottom: -10px;
  }

  .lg\:-ml-10 {
    margin-left: -10px;
  }

  .lg\:-mt-11 {
    margin-top: -11px;
  }

  .lg\:-mr-11 {
    margin-right: -11px;
  }

  .lg\:-mb-11 {
    margin-bottom: -11px;
  }

  .lg\:-ml-11 {
    margin-left: -11px;
  }

  .lg\:-mt-15 {
    margin-top: -15px;
  }

  .lg\:-mr-15 {
    margin-right: -15px;
  }

  .lg\:-mb-15 {
    margin-bottom: -15px;
  }

  .lg\:-ml-15 {
    margin-left: -15px;
  }

  .lg\:-mt-25 {
    margin-top: -25px;
  }

  .lg\:-mr-25 {
    margin-right: -25px;
  }

  .lg\:-mb-25 {
    margin-bottom: -25px;
  }

  .lg\:-ml-25 {
    margin-left: -25px;
  }

  .lg\:-mt-30 {
    margin-top: -30px;
  }

  .lg\:-mr-30 {
    margin-right: -30px;
  }

  .lg\:-mb-30 {
    margin-bottom: -30px;
  }

  .lg\:-ml-30 {
    margin-left: -30px;
  }

  .lg\:-mt-42 {
    margin-top: -42px;
  }

  .lg\:-mr-42 {
    margin-right: -42px;
  }

  .lg\:-mb-42 {
    margin-bottom: -42px;
  }

  .lg\:-ml-42 {
    margin-left: -42px;
  }

  .lg\:opacity-0 {
    opacity: 0;
  }

  .lg\:opacity-25 {
    opacity: .25;
  }

  .lg\:opacity-50 {
    opacity: .5;
  }

  .lg\:opacity-75 {
    opacity: .75;
  }

  .lg\:opacity-100 {
    opacity: 1;
  }

  .lg\:overflow-auto {
    overflow: auto;
  }

  .lg\:overflow-hidden {
    overflow: hidden;
  }

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

  .lg\:overflow-scroll {
    overflow: scroll;
  }

  .lg\:overflow-x-auto {
    overflow-x: auto;
  }

  .lg\:overflow-y-auto {
    overflow-y: auto;
  }

  .lg\:overflow-x-hidden {
    overflow-x: hidden;
  }

  .lg\:overflow-y-hidden {
    overflow-y: hidden;
  }

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

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

  .lg\:overflow-x-scroll {
    overflow-x: scroll;
  }

  .lg\:overflow-y-scroll {
    overflow-y: scroll;
  }

  .lg\:scrolling-touch {
    -webkit-overflow-scrolling: touch;
  }

  .lg\:scrolling-auto {
    -webkit-overflow-scrolling: auto;
  }

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

  .lg\:p-5 {
    padding: 5px;
  }

  .lg\:p-8 {
    padding: 8px;
  }

  .lg\:p-10 {
    padding: 10px;
  }

  .lg\:p-14 {
    padding: 14px;
  }

  .lg\:p-15 {
    padding: 15px;
  }

  .lg\:p-20 {
    padding: 20px;
  }

  .lg\:p-25 {
    padding: 25px;
  }

  .lg\:p-28 {
    padding: 28px;
  }

  .lg\:p-30 {
    padding: 30px;
  }

  .lg\:p-40 {
    padding: 40px;
  }

  .lg\:p-50 {
    padding: 50px;
  }

  .lg\:p-60 {
    padding: 60px;
  }

  .lg\:p-80 {
    padding: 80px;
  }

  .lg\:p-95 {
    padding: 95px;
  }

  .lg\:p-100 {
    padding: 100px;
  }

  .lg\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

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

  .lg\:py-5 {
    padding-top: 5px;
    padding-bottom: 5px;
  }

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

  .lg\:py-8 {
    padding-top: 8px;
    padding-bottom: 8px;
  }

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

  .lg\:py-10 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

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

  .lg\:py-14 {
    padding-top: 14px;
    padding-bottom: 14px;
  }

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

  .lg\:py-15 {
    padding-top: 15px;
    padding-bottom: 15px;
  }

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

  .lg\:py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

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

  .lg\:py-25 {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .lg\:px-25 {
    padding-left: 25px;
    padding-right: 25px;
  }

  .lg\:py-28 {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .lg\:px-28 {
    padding-left: 28px;
    padding-right: 28px;
  }

  .lg\:py-30 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

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

  .lg\:py-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .lg\:px-40 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .lg\:py-50 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .lg\:px-50 {
    padding-left: 50px;
    padding-right: 50px;
  }

  .lg\:py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .lg\:px-60 {
    padding-left: 60px;
    padding-right: 60px;
  }

  .lg\:py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .lg\:px-80 {
    padding-left: 80px;
    padding-right: 80px;
  }

  .lg\:py-95 {
    padding-top: 95px;
    padding-bottom: 95px;
  }

  .lg\:px-95 {
    padding-left: 95px;
    padding-right: 95px;
  }

  .lg\:py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .lg\:px-100 {
    padding-left: 100px;
    padding-right: 100px;
  }

  .lg\:pt-0 {
    padding-top: 0;
  }

  .lg\:pr-0 {
    padding-right: 0;
  }

  .lg\:pb-0 {
    padding-bottom: 0;
  }

  .lg\:pl-0 {
    padding-left: 0;
  }

  .lg\:pt-5 {
    padding-top: 5px;
  }

  .lg\:pr-5 {
    padding-right: 5px;
  }

  .lg\:pb-5 {
    padding-bottom: 5px;
  }

  .lg\:pl-5 {
    padding-left: 5px;
  }

  .lg\:pt-8 {
    padding-top: 8px;
  }

  .lg\:pr-8 {
    padding-right: 8px;
  }

  .lg\:pb-8 {
    padding-bottom: 8px;
  }

  .lg\:pl-8 {
    padding-left: 8px;
  }

  .lg\:pt-10 {
    padding-top: 10px;
  }

  .lg\:pr-10 {
    padding-right: 10px;
  }

  .lg\:pb-10 {
    padding-bottom: 10px;
  }

  .lg\:pl-10 {
    padding-left: 10px;
  }

  .lg\:pt-14 {
    padding-top: 14px;
  }

  .lg\:pr-14 {
    padding-right: 14px;
  }

  .lg\:pb-14 {
    padding-bottom: 14px;
  }

  .lg\:pl-14 {
    padding-left: 14px;
  }

  .lg\:pt-15 {
    padding-top: 15px;
  }

  .lg\:pr-15 {
    padding-right: 15px;
  }

  .lg\:pb-15 {
    padding-bottom: 15px;
  }

  .lg\:pl-15 {
    padding-left: 15px;
  }

  .lg\:pt-20 {
    padding-top: 20px;
  }

  .lg\:pr-20 {
    padding-right: 20px;
  }

  .lg\:pb-20 {
    padding-bottom: 20px;
  }

  .lg\:pl-20 {
    padding-left: 20px;
  }

  .lg\:pt-25 {
    padding-top: 25px;
  }

  .lg\:pr-25 {
    padding-right: 25px;
  }

  .lg\:pb-25 {
    padding-bottom: 25px;
  }

  .lg\:pl-25 {
    padding-left: 25px;
  }

  .lg\:pt-28 {
    padding-top: 28px;
  }

  .lg\:pr-28 {
    padding-right: 28px;
  }

  .lg\:pb-28 {
    padding-bottom: 28px;
  }

  .lg\:pl-28 {
    padding-left: 28px;
  }

  .lg\:pt-30 {
    padding-top: 30px;
  }

  .lg\:pr-30 {
    padding-right: 30px;
  }

  .lg\:pb-30 {
    padding-bottom: 30px;
  }

  .lg\:pl-30 {
    padding-left: 30px;
  }

  .lg\:pt-40 {
    padding-top: 40px;
  }

  .lg\:pr-40 {
    padding-right: 40px;
  }

  .lg\:pb-40 {
    padding-bottom: 40px;
  }

  .lg\:pl-40 {
    padding-left: 40px;
  }

  .lg\:pt-50 {
    padding-top: 50px;
  }

  .lg\:pr-50 {
    padding-right: 50px;
  }

  .lg\:pb-50 {
    padding-bottom: 50px;
  }

  .lg\:pl-50 {
    padding-left: 50px;
  }

  .lg\:pt-60 {
    padding-top: 60px;
  }

  .lg\:pr-60 {
    padding-right: 60px;
  }

  .lg\:pb-60 {
    padding-bottom: 60px;
  }

  .lg\:pl-60 {
    padding-left: 60px;
  }

  .lg\:pt-80 {
    padding-top: 80px;
  }

  .lg\:pr-80 {
    padding-right: 80px;
  }

  .lg\:pb-80 {
    padding-bottom: 80px;
  }

  .lg\:pl-80 {
    padding-left: 80px;
  }

  .lg\:pt-95 {
    padding-top: 95px;
  }

  .lg\:pr-95 {
    padding-right: 95px;
  }

  .lg\:pb-95 {
    padding-bottom: 95px;
  }

  .lg\:pl-95 {
    padding-left: 95px;
  }

  .lg\:pt-100 {
    padding-top: 100px;
  }

  .lg\:pr-100 {
    padding-right: 100px;
  }

  .lg\:pb-100 {
    padding-bottom: 100px;
  }

  .lg\:pl-100 {
    padding-left: 100px;
  }

  .lg\:static {
    position: static;
  }

  .lg\:fixed {
    position: fixed;
  }

  .lg\:absolute {
    position: absolute;
  }

  .lg\:relative {
    position: relative;
  }

  .lg\:sticky {
    position: sticky;
  }

  .lg\:pin-none {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .lg\:pin {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .lg\:pin-y {
    top: 0;
    bottom: 0;
  }

  .lg\:pin-x {
    right: 0;
    left: 0;
  }

  .lg\:pin-t {
    top: 0;
  }

  .lg\:pin-r {
    right: 0;
  }

  .lg\:pin-b {
    bottom: 0;
  }

  .lg\:pin-l {
    left: 0;
  }

  .lg\:resize-none {
    resize: none;
  }

  .lg\:resize-y {
    resize: vertical;
  }

  .lg\:resize-x {
    resize: horizontal;
  }

  .lg\:resize {
    resize: both;
  }

  .lg\:shadow {
    box-shadow: 0 1px 4px 0 rgba(7, 29, 73, .1);
  }

  .lg\:shadow-lg {
    box-shadow: 0 3px 6px 0 rgba(7, 29, 73, .1);
  }

  .lg\:shadow-popover {
    box-shadow: 0 4px 6px 0 rgba(7, 29, 73, .3);
  }

  .lg\:shadow-inner {
    box-shadow: inset 0 0 6px 0 rgba(7, 29, 73, .1);
  }

  .lg\:shadow-none {
    box-shadow: none;
  }

  .lg\:hover\:shadow:hover {
    box-shadow: 0 1px 4px 0 rgba(7, 29, 73, .1);
  }

  .lg\:hover\:shadow-lg:hover {
    box-shadow: 0 3px 6px 0 rgba(7, 29, 73, .1);
  }

  .lg\:hover\:shadow-popover:hover {
    box-shadow: 0 4px 6px 0 rgba(7, 29, 73, .3);
  }

  .lg\:hover\:shadow-inner:hover {
    box-shadow: inset 0 0 6px 0 rgba(7, 29, 73, .1);
  }

  .lg\:hover\:shadow-none:hover {
    box-shadow: none;
  }

  .lg\:focus\:shadow:focus {
    box-shadow: 0 1px 4px 0 rgba(7, 29, 73, .1);
  }

  .lg\:focus\:shadow-lg:focus {
    box-shadow: 0 3px 6px 0 rgba(7, 29, 73, .1);
  }

  .lg\:focus\:shadow-popover:focus {
    box-shadow: 0 4px 6px 0 rgba(7, 29, 73, .3);
  }

  .lg\:focus\:shadow-inner:focus {
    box-shadow: inset 0 0 6px 0 rgba(7, 29, 73, .1);
  }

  .lg\:focus\:shadow-none:focus {
    box-shadow: none;
  }

  .lg\:table-auto {
    table-layout: auto;
  }

  .lg\:table-fixed {
    table-layout: fixed;
  }

  .lg\:text-left {
    text-align: left;
  }

  .lg\:text-center {
    text-align: center;
  }

  .lg\:text-right {
    text-align: right;
  }

  .lg\:text-justify {
    text-align: justify;
  }

  .lg\:text-transparent {
    color: transparent;
  }

  .lg\:text-white {
    color: #fff;
  }

  .lg\:text-grey-lighter-trans {
    color: rgba(242, 243, 246, .3);
  }

  .lg\:text-grey-lighter {
    color: #f2f3f6;
  }

  .lg\:text-grey {
    color: #e6e8ec;
  }

  .lg\:text-grey-darker {
    color: #ced2db;
  }

  .lg\:text-grey-darkest {
    color: #c1c6d2;
  }

  .lg\:text-navy-lightest {
    color: #5e6b89;
  }

  .lg\:text-navy-lighter {
    color: #6b7792;
  }

  .lg\:text-navy {
    color: #081c4a;
  }

  .lg\:text-navy-darker {
    color: #001035;
  }

  .lg\:text-navy-darkest {
    color: #000e2d;
  }

  .lg\:text-pink-lighter {
    color: #ffd0e5;
  }

  .lg\:text-pink {
    color: #e31c78;
  }

  .lg\:text-pink-darker {
    color: #bb0872;
  }

  .lg\:text-pink-darkest {
    color: #aa0467;
  }

  .lg\:text-teal {
    color: #2bd6c4;
  }

  .lg\:text-teal-darker {
    color: #007b83;
  }

  .lg\:text-teal-darkest {
    color: #005358;
  }

  .lg\:text-blue {
    color: #05c2de;
  }

  .lg\:text-navy-gradient-0 {
    color: #052b5f;
  }

  .lg\:text-navy-gradient-100 {
    color: #041437;
  }

  .lg\:text-pink-gradient-0 {
    color: #e31c78;
  }

  .lg\:text-pink-gradient-100 {
    color: #b41c6e;
  }

  .lg\:text-blue-gradient-0 {
    color: #05c2de;
  }

  .lg\:text-blue-gradient-100 {
    color: #029fc7;
  }

  .lg\:text-teal-gradient-0 {
    color: #2bd6c4;
  }

  .lg\:text-teal-gradient-100 {
    color: #088c90;
  }

  .lg\:hover\:text-transparent:hover {
    color: transparent;
  }

  .lg\:hover\:text-white:hover {
    color: #fff;
  }

  .lg\:hover\:text-grey-lighter-trans:hover {
    color: rgba(242, 243, 246, .3);
  }

  .lg\:hover\:text-grey-lighter:hover {
    color: #f2f3f6;
  }

  .lg\:hover\:text-grey:hover {
    color: #e6e8ec;
  }

  .lg\:hover\:text-grey-darker:hover {
    color: #ced2db;
  }

  .lg\:hover\:text-grey-darkest:hover {
    color: #c1c6d2;
  }

  .lg\:hover\:text-navy-lightest:hover {
    color: #5e6b89;
  }

  .lg\:hover\:text-navy-lighter:hover {
    color: #6b7792;
  }

  .lg\:hover\:text-navy:hover {
    color: #081c4a;
  }

  .lg\:hover\:text-navy-darker:hover {
    color: #001035;
  }

  .lg\:hover\:text-navy-darkest:hover {
    color: #000e2d;
  }

  .lg\:hover\:text-pink-lighter:hover {
    color: #ffd0e5;
  }

  .lg\:hover\:text-pink:hover {
    color: #e31c78;
  }

  .lg\:hover\:text-pink-darker:hover {
    color: #bb0872;
  }

  .lg\:hover\:text-pink-darkest:hover {
    color: #aa0467;
  }

  .lg\:hover\:text-teal:hover {
    color: #2bd6c4;
  }

  .lg\:hover\:text-teal-darker:hover {
    color: #007b83;
  }

  .lg\:hover\:text-teal-darkest:hover {
    color: #005358;
  }

  .lg\:hover\:text-blue:hover {
    color: #05c2de;
  }

  .lg\:hover\:text-navy-gradient-0:hover {
    color: #052b5f;
  }

  .lg\:hover\:text-navy-gradient-100:hover {
    color: #041437;
  }

  .lg\:hover\:text-pink-gradient-0:hover {
    color: #e31c78;
  }

  .lg\:hover\:text-pink-gradient-100:hover {
    color: #b41c6e;
  }

  .lg\:hover\:text-blue-gradient-0:hover {
    color: #05c2de;
  }

  .lg\:hover\:text-blue-gradient-100:hover {
    color: #029fc7;
  }

  .lg\:hover\:text-teal-gradient-0:hover {
    color: #2bd6c4;
  }

  .lg\:hover\:text-teal-gradient-100:hover {
    color: #088c90;
  }

  .lg\:focus\:text-transparent:focus {
    color: transparent;
  }

  .lg\:focus\:text-white:focus {
    color: #fff;
  }

  .lg\:focus\:text-grey-lighter-trans:focus {
    color: rgba(242, 243, 246, .3);
  }

  .lg\:focus\:text-grey-lighter:focus {
    color: #f2f3f6;
  }

  .lg\:focus\:text-grey:focus {
    color: #e6e8ec;
  }

  .lg\:focus\:text-grey-darker:focus {
    color: #ced2db;
  }

  .lg\:focus\:text-grey-darkest:focus {
    color: #c1c6d2;
  }

  .lg\:focus\:text-navy-lightest:focus {
    color: #5e6b89;
  }

  .lg\:focus\:text-navy-lighter:focus {
    color: #6b7792;
  }

  .lg\:focus\:text-navy:focus {
    color: #081c4a;
  }

  .lg\:focus\:text-navy-darker:focus {
    color: #001035;
  }

  .lg\:focus\:text-navy-darkest:focus {
    color: #000e2d;
  }

  .lg\:focus\:text-pink-lighter:focus {
    color: #ffd0e5;
  }

  .lg\:focus\:text-pink:focus {
    color: #e31c78;
  }

  .lg\:focus\:text-pink-darker:focus {
    color: #bb0872;
  }

  .lg\:focus\:text-pink-darkest:focus {
    color: #aa0467;
  }

  .lg\:focus\:text-teal:focus {
    color: #2bd6c4;
  }

  .lg\:focus\:text-teal-darker:focus {
    color: #007b83;
  }

  .lg\:focus\:text-teal-darkest:focus {
    color: #005358;
  }

  .lg\:focus\:text-blue:focus {
    color: #05c2de;
  }

  .lg\:focus\:text-navy-gradient-0:focus {
    color: #052b5f;
  }

  .lg\:focus\:text-navy-gradient-100:focus {
    color: #041437;
  }

  .lg\:focus\:text-pink-gradient-0:focus {
    color: #e31c78;
  }

  .lg\:focus\:text-pink-gradient-100:focus {
    color: #b41c6e;
  }

  .lg\:focus\:text-blue-gradient-0:focus {
    color: #05c2de;
  }

  .lg\:focus\:text-blue-gradient-100:focus {
    color: #029fc7;
  }

  .lg\:focus\:text-teal-gradient-0:focus {
    color: #2bd6c4;
  }

  .lg\:focus\:text-teal-gradient-100:focus {
    color: #088c90;
  }

  .lg\:text-12 {
    font-size: 12px;
  }

  .lg\:text-13 {
    font-size: 13px;
  }

  .lg\:text-14 {
    font-size: 14px;
  }

  .lg\:text-15 {
    font-size: 15px;
  }

  .lg\:text-16 {
    font-size: 16px;
  }

  .lg\:text-18 {
    font-size: 18px;
  }

  .lg\:text-19 {
    font-size: 19px;
  }

  .lg\:text-20 {
    font-size: 20px;
  }

  .lg\:text-24 {
    font-size: 24px;
  }

  .lg\:text-28 {
    font-size: 28px;
  }

  .lg\:text-32 {
    font-size: 32px;
  }

  .lg\:text-52 {
    font-size: 52px;
  }

  .lg\:italic {
    font-style: italic;
  }

  .lg\:roman {
    font-style: normal;
  }

  .lg\:uppercase {
    text-transform: uppercase;
  }

  .lg\:lowercase {
    text-transform: lowercase;
  }

  .lg\:capitalize {
    text-transform: capitalize;
  }

  .lg\:normal-case {
    text-transform: none;
  }

  .lg\:underline {
    text-decoration: underline;
  }

  .lg\:line-through {
    text-decoration: line-through;
  }

  .lg\:no-underline {
    text-decoration: none;
  }

  .lg\:antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .lg\:subpixel-antialiased {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .lg\:hover\:italic:hover {
    font-style: italic;
  }

  .lg\:hover\:roman:hover {
    font-style: normal;
  }

  .lg\:hover\:uppercase:hover {
    text-transform: uppercase;
  }

  .lg\:hover\:lowercase:hover {
    text-transform: lowercase;
  }

  .lg\:hover\:capitalize:hover {
    text-transform: capitalize;
  }

  .lg\:hover\:normal-case:hover {
    text-transform: none;
  }

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

  .lg\:hover\:line-through:hover {
    text-decoration: line-through;
  }

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

  .lg\:hover\:antialiased:hover {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .lg\:hover\:subpixel-antialiased:hover {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .lg\:focus\:italic:focus {
    font-style: italic;
  }

  .lg\:focus\:roman:focus {
    font-style: normal;
  }

  .lg\:focus\:uppercase:focus {
    text-transform: uppercase;
  }

  .lg\:focus\:lowercase:focus {
    text-transform: lowercase;
  }

  .lg\:focus\:capitalize:focus {
    text-transform: capitalize;
  }

  .lg\:focus\:normal-case:focus {
    text-transform: none;
  }

  .lg\:focus\:underline:focus {
    text-decoration: underline;
  }

  .lg\:focus\:line-through:focus {
    text-decoration: line-through;
  }

  .lg\:focus\:no-underline:focus {
    text-decoration: none;
  }

  .lg\:focus\:antialiased:focus {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .lg\:focus\:subpixel-antialiased:focus {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .lg\:visible {
    visibility: visible;
  }

  .lg\:invisible {
    visibility: hidden;
  }

  .lg\:w-4 {
    width: 4px;
  }

  .lg\:w-150 {
    width: 150px;
  }

  .lg\:w-200 {
    width: 200px;
  }

  .lg\:w-250 {
    width: 250px;
  }

  .lg\:w-380 {
    width: 380px;
  }

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

  .lg\:w-px {
    width: 1px;
  }

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

  .lg\:w-1\/3 {
    width: 33.33333%;
  }

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

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

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

  .lg\:w-1\/5 {
    width: 20%;
  }

  .lg\:w-2\/5 {
    width: 40%;
  }

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

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

  .lg\:w-1\/6 {
    width: 16.66667%;
  }

  .lg\:w-5\/6 {
    width: 83.33333%;
  }

  .lg\:w-1\/12 {
    width: 8.33333%;
  }

  .lg\:w-5\/12 {
    width: 41.66667%;
  }

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

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

  .lg\:w-screen {
    width: 100vw;
  }
}

@media (min-width: 1140px) {
  .xl\:appearance-none {
    appearance: none;
  }

  .xl\:bg-fixed {
    background-attachment: fixed;
  }

  .xl\:bg-local {
    background-attachment: local;
  }

  .xl\:bg-scroll {
    background-attachment: scroll;
  }

  .xl\:bg-transparent {
    background-color: transparent;
  }

  .xl\:bg-white {
    background-color: #fff;
  }

  .xl\:bg-grey-lighter-trans {
    background-color: rgba(242, 243, 246, .3);
  }

  .xl\:bg-grey-lighter {
    background-color: #f2f3f6;
  }

  .xl\:bg-grey {
    background-color: #e6e8ec;
  }

  .xl\:bg-grey-darker {
    background-color: #ced2db;
  }

  .xl\:bg-grey-darkest {
    background-color: #c1c6d2;
  }

  .xl\:bg-navy-lightest {
    background-color: #5e6b89;
  }

  .xl\:bg-navy-lighter {
    background-color: #6b7792;
  }

  .xl\:bg-navy {
    background-color: #081c4a;
  }

  .xl\:bg-navy-darker {
    background-color: #001035;
  }

  .xl\:bg-navy-darkest {
    background-color: #000e2d;
  }

  .xl\:bg-pink-lighter {
    background-color: #ffd0e5;
  }

  .xl\:bg-pink {
    background-color: #e31c78;
  }

  .xl\:bg-pink-darker {
    background-color: #bb0872;
  }

  .xl\:bg-pink-darkest {
    background-color: #aa0467;
  }

  .xl\:bg-teal {
    background-color: #2bd6c4;
  }

  .xl\:bg-teal-darker {
    background-color: #007b83;
  }

  .xl\:bg-teal-darkest {
    background-color: #005358;
  }

  .xl\:bg-blue {
    background-color: #05c2de;
  }

  .xl\:bg-navy-gradient-0 {
    background-color: #052b5f;
  }

  .xl\:bg-navy-gradient-100 {
    background-color: #041437;
  }

  .xl\:bg-pink-gradient-0 {
    background-color: #e31c78;
  }

  .xl\:bg-pink-gradient-100 {
    background-color: #b41c6e;
  }

  .xl\:bg-blue-gradient-0 {
    background-color: #05c2de;
  }

  .xl\:bg-blue-gradient-100 {
    background-color: #029fc7;
  }

  .xl\:bg-teal-gradient-0 {
    background-color: #2bd6c4;
  }

  .xl\:bg-teal-gradient-100 {
    background-color: #088c90;
  }

  .xl\:hover\:bg-transparent:hover {
    background-color: transparent;
  }

  .xl\:hover\:bg-white:hover {
    background-color: #fff;
  }

  .xl\:hover\:bg-grey-lighter-trans:hover {
    background-color: rgba(242, 243, 246, .3);
  }

  .xl\:hover\:bg-grey-lighter:hover {
    background-color: #f2f3f6;
  }

  .xl\:hover\:bg-grey:hover {
    background-color: #e6e8ec;
  }

  .xl\:hover\:bg-grey-darker:hover {
    background-color: #ced2db;
  }

  .xl\:hover\:bg-grey-darkest:hover {
    background-color: #c1c6d2;
  }

  .xl\:hover\:bg-navy-lightest:hover {
    background-color: #5e6b89;
  }

  .xl\:hover\:bg-navy-lighter:hover {
    background-color: #6b7792;
  }

  .xl\:hover\:bg-navy:hover {
    background-color: #081c4a;
  }

  .xl\:hover\:bg-navy-darker:hover {
    background-color: #001035;
  }

  .xl\:hover\:bg-navy-darkest:hover {
    background-color: #000e2d;
  }

  .xl\:hover\:bg-pink-lighter:hover {
    background-color: #ffd0e5;
  }

  .xl\:hover\:bg-pink:hover {
    background-color: #e31c78;
  }

  .xl\:hover\:bg-pink-darker:hover {
    background-color: #bb0872;
  }

  .xl\:hover\:bg-pink-darkest:hover {
    background-color: #aa0467;
  }

  .xl\:hover\:bg-teal:hover {
    background-color: #2bd6c4;
  }

  .xl\:hover\:bg-teal-darker:hover {
    background-color: #007b83;
  }

  .xl\:hover\:bg-teal-darkest:hover {
    background-color: #005358;
  }

  .xl\:hover\:bg-blue:hover {
    background-color: #05c2de;
  }

  .xl\:hover\:bg-navy-gradient-0:hover {
    background-color: #052b5f;
  }

  .xl\:hover\:bg-navy-gradient-100:hover {
    background-color: #041437;
  }

  .xl\:hover\:bg-pink-gradient-0:hover {
    background-color: #e31c78;
  }

  .xl\:hover\:bg-pink-gradient-100:hover {
    background-color: #b41c6e;
  }

  .xl\:hover\:bg-blue-gradient-0:hover {
    background-color: #05c2de;
  }

  .xl\:hover\:bg-blue-gradient-100:hover {
    background-color: #029fc7;
  }

  .xl\:hover\:bg-teal-gradient-0:hover {
    background-color: #2bd6c4;
  }

  .xl\:hover\:bg-teal-gradient-100:hover {
    background-color: #088c90;
  }

  .xl\:focus\:bg-transparent:focus {
    background-color: transparent;
  }

  .xl\:focus\:bg-white:focus {
    background-color: #fff;
  }

  .xl\:focus\:bg-grey-lighter-trans:focus {
    background-color: rgba(242, 243, 246, .3);
  }

  .xl\:focus\:bg-grey-lighter:focus {
    background-color: #f2f3f6;
  }

  .xl\:focus\:bg-grey:focus {
    background-color: #e6e8ec;
  }

  .xl\:focus\:bg-grey-darker:focus {
    background-color: #ced2db;
  }

  .xl\:focus\:bg-grey-darkest:focus {
    background-color: #c1c6d2;
  }

  .xl\:focus\:bg-navy-lightest:focus {
    background-color: #5e6b89;
  }

  .xl\:focus\:bg-navy-lighter:focus {
    background-color: #6b7792;
  }

  .xl\:focus\:bg-navy:focus {
    background-color: #081c4a;
  }

  .xl\:focus\:bg-navy-darker:focus {
    background-color: #001035;
  }

  .xl\:focus\:bg-navy-darkest:focus {
    background-color: #000e2d;
  }

  .xl\:focus\:bg-pink-lighter:focus {
    background-color: #ffd0e5;
  }

  .xl\:focus\:bg-pink:focus {
    background-color: #e31c78;
  }

  .xl\:focus\:bg-pink-darker:focus {
    background-color: #bb0872;
  }

  .xl\:focus\:bg-pink-darkest:focus {
    background-color: #aa0467;
  }

  .xl\:focus\:bg-teal:focus {
    background-color: #2bd6c4;
  }

  .xl\:focus\:bg-teal-darker:focus {
    background-color: #007b83;
  }

  .xl\:focus\:bg-teal-darkest:focus {
    background-color: #005358;
  }

  .xl\:focus\:bg-blue:focus {
    background-color: #05c2de;
  }

  .xl\:focus\:bg-navy-gradient-0:focus {
    background-color: #052b5f;
  }

  .xl\:focus\:bg-navy-gradient-100:focus {
    background-color: #041437;
  }

  .xl\:focus\:bg-pink-gradient-0:focus {
    background-color: #e31c78;
  }

  .xl\:focus\:bg-pink-gradient-100:focus {
    background-color: #b41c6e;
  }

  .xl\:focus\:bg-blue-gradient-0:focus {
    background-color: #05c2de;
  }

  .xl\:focus\:bg-blue-gradient-100:focus {
    background-color: #029fc7;
  }

  .xl\:focus\:bg-teal-gradient-0:focus {
    background-color: #2bd6c4;
  }

  .xl\:focus\:bg-teal-gradient-100:focus {
    background-color: #088c90;
  }

  .xl\:bg-bottom {
    background-position: bottom;
  }

  .xl\:bg-center {
    background-position: center;
  }

  .xl\:bg-left {
    background-position: left;
  }

  .xl\:bg-left-bottom {
    background-position: left bottom;
  }

  .xl\:bg-left-top {
    background-position: left top;
  }

  .xl\:bg-right {
    background-position: right;
  }

  .xl\:bg-right-bottom {
    background-position: right bottom;
  }

  .xl\:bg-right-top {
    background-position: right top;
  }

  .xl\:bg-top {
    background-position: top;
  }

  .xl\:bg-repeat {
    background-repeat: repeat;
  }

  .xl\:bg-no-repeat {
    background-repeat: no-repeat;
  }

  .xl\:bg-repeat-x {
    background-repeat: repeat-x;
  }

  .xl\:bg-repeat-y {
    background-repeat: repeat-y;
  }

  .xl\:bg-auto {
    background-size: auto;
  }

  .xl\:bg-cover {
    background-size: cover;
  }

  .xl\:bg-contain {
    background-size: contain;
  }

  .xl\:border-transparent {
    border-color: transparent;
  }

  .xl\:border-white {
    border-color: #fff;
  }

  .xl\:border-grey-lighter-trans {
    border-color: rgba(242, 243, 246, .3);
  }

  .xl\:border-grey-lighter {
    border-color: #f2f3f6;
  }

  .xl\:border-grey {
    border-color: #e6e8ec;
  }

  .xl\:border-grey-darker {
    border-color: #ced2db;
  }

  .xl\:border-grey-darkest {
    border-color: #c1c6d2;
  }

  .xl\:border-navy-lightest {
    border-color: #5e6b89;
  }

  .xl\:border-navy-lighter {
    border-color: #6b7792;
  }

  .xl\:border-navy {
    border-color: #081c4a;
  }

  .xl\:border-navy-darker {
    border-color: #001035;
  }

  .xl\:border-navy-darkest {
    border-color: #000e2d;
  }

  .xl\:border-pink-lighter {
    border-color: #ffd0e5;
  }

  .xl\:border-pink {
    border-color: #e31c78;
  }

  .xl\:border-pink-darker {
    border-color: #bb0872;
  }

  .xl\:border-pink-darkest {
    border-color: #aa0467;
  }

  .xl\:border-teal {
    border-color: #2bd6c4;
  }

  .xl\:border-teal-darker {
    border-color: #007b83;
  }

  .xl\:border-teal-darkest {
    border-color: #005358;
  }

  .xl\:border-blue {
    border-color: #05c2de;
  }

  .xl\:border-navy-gradient-0 {
    border-color: #052b5f;
  }

  .xl\:border-navy-gradient-100 {
    border-color: #041437;
  }

  .xl\:border-pink-gradient-0 {
    border-color: #e31c78;
  }

  .xl\:border-pink-gradient-100 {
    border-color: #b41c6e;
  }

  .xl\:border-blue-gradient-0 {
    border-color: #05c2de;
  }

  .xl\:border-blue-gradient-100 {
    border-color: #029fc7;
  }

  .xl\:border-teal-gradient-0 {
    border-color: #2bd6c4;
  }

  .xl\:border-teal-gradient-100 {
    border-color: #088c90;
  }

  .xl\:hover\:border-transparent:hover {
    border-color: transparent;
  }

  .xl\:hover\:border-white:hover {
    border-color: #fff;
  }

  .xl\:hover\:border-grey-lighter-trans:hover {
    border-color: rgba(242, 243, 246, .3);
  }

  .xl\:hover\:border-grey-lighter:hover {
    border-color: #f2f3f6;
  }

  .xl\:hover\:border-grey:hover {
    border-color: #e6e8ec;
  }

  .xl\:hover\:border-grey-darker:hover {
    border-color: #ced2db;
  }

  .xl\:hover\:border-grey-darkest:hover {
    border-color: #c1c6d2;
  }

  .xl\:hover\:border-navy-lightest:hover {
    border-color: #5e6b89;
  }

  .xl\:hover\:border-navy-lighter:hover {
    border-color: #6b7792;
  }

  .xl\:hover\:border-navy:hover {
    border-color: #081c4a;
  }

  .xl\:hover\:border-navy-darker:hover {
    border-color: #001035;
  }

  .xl\:hover\:border-navy-darkest:hover {
    border-color: #000e2d;
  }

  .xl\:hover\:border-pink-lighter:hover {
    border-color: #ffd0e5;
  }

  .xl\:hover\:border-pink:hover {
    border-color: #e31c78;
  }

  .xl\:hover\:border-pink-darker:hover {
    border-color: #bb0872;
  }

  .xl\:hover\:border-pink-darkest:hover {
    border-color: #aa0467;
  }

  .xl\:hover\:border-teal:hover {
    border-color: #2bd6c4;
  }

  .xl\:hover\:border-teal-darker:hover {
    border-color: #007b83;
  }

  .xl\:hover\:border-teal-darkest:hover {
    border-color: #005358;
  }

  .xl\:hover\:border-blue:hover {
    border-color: #05c2de;
  }

  .xl\:hover\:border-navy-gradient-0:hover {
    border-color: #052b5f;
  }

  .xl\:hover\:border-navy-gradient-100:hover {
    border-color: #041437;
  }

  .xl\:hover\:border-pink-gradient-0:hover {
    border-color: #e31c78;
  }

  .xl\:hover\:border-pink-gradient-100:hover {
    border-color: #b41c6e;
  }

  .xl\:hover\:border-blue-gradient-0:hover {
    border-color: #05c2de;
  }

  .xl\:hover\:border-blue-gradient-100:hover {
    border-color: #029fc7;
  }

  .xl\:hover\:border-teal-gradient-0:hover {
    border-color: #2bd6c4;
  }

  .xl\:hover\:border-teal-gradient-100:hover {
    border-color: #088c90;
  }

  .xl\:focus\:border-transparent:focus {
    border-color: transparent;
  }

  .xl\:focus\:border-white:focus {
    border-color: #fff;
  }

  .xl\:focus\:border-grey-lighter-trans:focus {
    border-color: rgba(242, 243, 246, .3);
  }

  .xl\:focus\:border-grey-lighter:focus {
    border-color: #f2f3f6;
  }

  .xl\:focus\:border-grey:focus {
    border-color: #e6e8ec;
  }

  .xl\:focus\:border-grey-darker:focus {
    border-color: #ced2db;
  }

  .xl\:focus\:border-grey-darkest:focus {
    border-color: #c1c6d2;
  }

  .xl\:focus\:border-navy-lightest:focus {
    border-color: #5e6b89;
  }

  .xl\:focus\:border-navy-lighter:focus {
    border-color: #6b7792;
  }

  .xl\:focus\:border-navy:focus {
    border-color: #081c4a;
  }

  .xl\:focus\:border-navy-darker:focus {
    border-color: #001035;
  }

  .xl\:focus\:border-navy-darkest:focus {
    border-color: #000e2d;
  }

  .xl\:focus\:border-pink-lighter:focus {
    border-color: #ffd0e5;
  }

  .xl\:focus\:border-pink:focus {
    border-color: #e31c78;
  }

  .xl\:focus\:border-pink-darker:focus {
    border-color: #bb0872;
  }

  .xl\:focus\:border-pink-darkest:focus {
    border-color: #aa0467;
  }

  .xl\:focus\:border-teal:focus {
    border-color: #2bd6c4;
  }

  .xl\:focus\:border-teal-darker:focus {
    border-color: #007b83;
  }

  .xl\:focus\:border-teal-darkest:focus {
    border-color: #005358;
  }

  .xl\:focus\:border-blue:focus {
    border-color: #05c2de;
  }

  .xl\:focus\:border-navy-gradient-0:focus {
    border-color: #052b5f;
  }

  .xl\:focus\:border-navy-gradient-100:focus {
    border-color: #041437;
  }

  .xl\:focus\:border-pink-gradient-0:focus {
    border-color: #e31c78;
  }

  .xl\:focus\:border-pink-gradient-100:focus {
    border-color: #b41c6e;
  }

  .xl\:focus\:border-blue-gradient-0:focus {
    border-color: #05c2de;
  }

  .xl\:focus\:border-blue-gradient-100:focus {
    border-color: #029fc7;
  }

  .xl\:focus\:border-teal-gradient-0:focus {
    border-color: #2bd6c4;
  }

  .xl\:focus\:border-teal-gradient-100:focus {
    border-color: #088c90;
  }

  .xl\:rounded-none {
    border-radius: 0;
  }

  .xl\:rounded {
    border-radius: 6px;
  }

  .xl\:rounded-form {
    border-radius: 21px;
  }

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

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

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

  .xl\:rounded-b-none {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .xl\:rounded-l-none {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .xl\:rounded-t {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
  }

  .xl\:rounded-r {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
  }

  .xl\:rounded-b {
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
  }

  .xl\:rounded-l {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
  }

  .xl\:rounded-t-form {
    border-top-left-radius: 21px;
    border-top-right-radius: 21px;
  }

  .xl\:rounded-r-form {
    border-top-right-radius: 21px;
    border-bottom-right-radius: 21px;
  }

  .xl\:rounded-b-form {
    border-bottom-right-radius: 21px;
    border-bottom-left-radius: 21px;
  }

  .xl\:rounded-l-form {
    border-top-left-radius: 21px;
    border-bottom-left-radius: 21px;
  }

  .xl\:rounded-t-full {
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

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

  .xl\:rounded-b-full {
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .xl\:rounded-l-full {
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .xl\:rounded-tl-none {
    border-top-left-radius: 0;
  }

  .xl\:rounded-tr-none {
    border-top-right-radius: 0;
  }

  .xl\:rounded-br-none {
    border-bottom-right-radius: 0;
  }

  .xl\:rounded-bl-none {
    border-bottom-left-radius: 0;
  }

  .xl\:rounded-tl {
    border-top-left-radius: 6px;
  }

  .xl\:rounded-tr {
    border-top-right-radius: 6px;
  }

  .xl\:rounded-br {
    border-bottom-right-radius: 6px;
  }

  .xl\:rounded-bl {
    border-bottom-left-radius: 6px;
  }

  .xl\:rounded-tl-form {
    border-top-left-radius: 21px;
  }

  .xl\:rounded-tr-form {
    border-top-right-radius: 21px;
  }

  .xl\:rounded-br-form {
    border-bottom-right-radius: 21px;
  }

  .xl\:rounded-bl-form {
    border-bottom-left-radius: 21px;
  }

  .xl\:rounded-tl-full {
    border-top-left-radius: 9999px;
  }

  .xl\:rounded-tr-full {
    border-top-right-radius: 9999px;
  }

  .xl\:rounded-br-full {
    border-bottom-right-radius: 9999px;
  }

  .xl\:rounded-bl-full {
    border-bottom-left-radius: 9999px;
  }

  .xl\:border-solid {
    border-style: solid;
  }

  .xl\:border-dashed {
    border-style: dashed;
  }

  .xl\:border-dotted {
    border-style: dotted;
  }

  .xl\:border-none {
    border-style: none;
  }

  .xl\:border-0 {
    border-width: 0;
  }

  .xl\:border-2 {
    border-width: 2px;
  }

  .xl\:border-4 {
    border-width: 4px;
  }

  .xl\:border-8 {
    border-width: 8px;
  }

  .xl\:border {
    border-width: 1px;
  }

  .xl\:border-t-0 {
    border-top-width: 0;
  }

  .xl\:border-r-0 {
    border-right-width: 0;
  }

  .xl\:border-b-0 {
    border-bottom-width: 0;
  }

  .xl\:border-l-0 {
    border-left-width: 0;
  }

  .xl\:border-t-2 {
    border-top-width: 2px;
  }

  .xl\:border-r-2 {
    border-right-width: 2px;
  }

  .xl\:border-b-2 {
    border-bottom-width: 2px;
  }

  .xl\:border-l-2 {
    border-left-width: 2px;
  }

  .xl\:border-t-4 {
    border-top-width: 4px;
  }

  .xl\:border-r-4 {
    border-right-width: 4px;
  }

  .xl\:border-b-4 {
    border-bottom-width: 4px;
  }

  .xl\:border-l-4 {
    border-left-width: 4px;
  }

  .xl\:border-t-8 {
    border-top-width: 8px;
  }

  .xl\:border-r-8 {
    border-right-width: 8px;
  }

  .xl\:border-b-8 {
    border-bottom-width: 8px;
  }

  .xl\:border-l-8 {
    border-left-width: 8px;
  }

  .xl\:border-t {
    border-top-width: 1px;
  }

  .xl\:border-r {
    border-right-width: 1px;
  }

  .xl\:border-b {
    border-bottom-width: 1px;
  }

  .xl\:border-l {
    border-left-width: 1px;
  }

  .xl\:cursor-auto {
    cursor: auto;
  }

  .xl\:cursor-default {
    cursor: default;
  }

  .xl\:cursor-pointer {
    cursor: pointer;
  }

  .xl\:cursor-wait {
    cursor: wait;
  }

  .xl\:cursor-move {
    cursor: move;
  }

  .xl\:cursor-not-allowed {
    cursor: not-allowed;
  }

  .xl\:block {
    display: block;
  }

  .xl\:inline-block {
    display: inline-block;
  }

  .xl\:inline {
    display: inline;
  }

  .xl\:table {
    display: table;
  }

  .xl\:table-row {
    display: table-row;
  }

  .xl\:table-cell {
    display: table-cell;
  }

  .xl\:hidden {
    display: none;
  }

  .xl\:flex {
    display: flex;
  }

  .xl\:inline-flex {
    display: inline-flex;
  }

  .xl\:flex-row {
    flex-direction: row;
  }

  .xl\:flex-row-reverse {
    flex-direction: row-reverse;
  }

  .xl\:flex-col {
    flex-direction: column;
  }

  .xl\:flex-col-reverse {
    flex-direction: column-reverse;
  }

  .xl\:flex-wrap {
    flex-wrap: wrap;
  }

  .xl\:flex-wrap-reverse {
    flex-wrap: wrap-reverse;
  }

  .xl\:flex-no-wrap {
    flex-wrap: nowrap;
  }

  .xl\:items-start {
    align-items: flex-start;
  }

  .xl\:items-end {
    align-items: flex-end;
  }

  .xl\:items-center {
    align-items: center;
  }

  .xl\:items-baseline {
    align-items: baseline;
  }

  .xl\:items-stretch {
    align-items: stretch;
  }

  .xl\:self-auto {
    align-self: auto;
  }

  .xl\:self-start {
    align-self: flex-start;
  }

  .xl\:self-end {
    align-self: flex-end;
  }

  .xl\:self-center {
    align-self: center;
  }

  .xl\:self-stretch {
    align-self: stretch;
  }

  .xl\:justify-start {
    justify-content: flex-start;
  }

  .xl\:justify-end {
    justify-content: flex-end;
  }

  .xl\:justify-center {
    justify-content: center;
  }

  .xl\:justify-between {
    justify-content: space-between;
  }

  .xl\:justify-around {
    justify-content: space-around;
  }

  .xl\:content-center {
    align-content: center;
  }

  .xl\:content-start {
    align-content: flex-start;
  }

  .xl\:content-end {
    align-content: flex-end;
  }

  .xl\:content-between {
    align-content: space-between;
  }

  .xl\:content-around {
    align-content: space-around;
  }

  .xl\:flex-1 {
    flex: 1 1 0%;
  }

  .xl\:flex-auto {
    flex: 1 1 auto;
  }

  .xl\:flex-initial {
    flex: 0 1 auto;
  }

  .xl\:flex-none {
    flex: none;
  }

  .xl\:flex-grow {
    flex-grow: 1;
  }

  .xl\:flex-shrink {
    flex-shrink: 1;
  }

  .xl\:flex-no-grow {
    flex-grow: 0;
  }

  .xl\:flex-no-shrink {
    flex-shrink: 0;
  }

  .xl\:float-right {
    float: right;
  }

  .xl\:float-left {
    float: left;
  }

  .xl\:float-none {
    float: none;
  }

  .xl\:clearfix:after {
    content: "";
    display: table;
    clear: both;
  }

  .xl\:font-rubik {
    font-family: Rubik, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  }

  .xl\:font-montserrat {
    font-family: Montserrat, system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  }

  .xl\:font-light {
    font-weight: 300;
  }

  .xl\:font-regular {
    font-weight: 400;
  }

  .xl\:font-medium {
    font-weight: 500;
  }

  .xl\:font-semibold {
    font-weight: 600;
  }

  .xl\:font-bold {
    font-weight: 700;
  }

  .xl\:hover\:font-light:hover {
    font-weight: 300;
  }

  .xl\:hover\:font-regular:hover {
    font-weight: 400;
  }

  .xl\:hover\:font-medium:hover {
    font-weight: 500;
  }

  .xl\:hover\:font-semibold:hover {
    font-weight: 600;
  }

  .xl\:hover\:font-bold:hover {
    font-weight: 700;
  }

  .xl\:focus\:font-light:focus {
    font-weight: 300;
  }

  .xl\:focus\:font-regular:focus {
    font-weight: 400;
  }

  .xl\:focus\:font-medium:focus {
    font-weight: 500;
  }

  .xl\:focus\:font-semibold:focus {
    font-weight: 600;
  }

  .xl\:focus\:font-bold:focus {
    font-weight: 700;
  }

  .xl\:h-1 {
    height: .25rem;
  }

  .xl\:h-2 {
    height: .5rem;
  }

  .xl\:h-3 {
    height: .75rem;
  }

  .xl\:h-4 {
    height: 1rem;
  }

  .xl\:h-5 {
    height: 1.25rem;
  }

  .xl\:h-6 {
    height: 1.5rem;
  }

  .xl\:h-8 {
    height: 2rem;
  }

  .xl\:h-10 {
    height: 2.5rem;
  }

  .xl\:h-12 {
    height: 3rem;
  }

  .xl\:h-16 {
    height: 4rem;
  }

  .xl\:h-24 {
    height: 6rem;
  }

  .xl\:h-32 {
    height: 8rem;
  }

  .xl\:h-48 {
    height: 12rem;
  }

  .xl\:h-64 {
    height: 16rem;
  }

  .xl\:h-auto {
    height: auto;
  }

  .xl\:h-px {
    height: 1px;
  }

  .xl\:h-full {
    height: 100%;
  }

  .xl\:h-screen {
    height: 100vh;
  }

  .xl\:m-0 {
    margin: 0;
  }

  .xl\:m-4 {
    margin: 4px;
  }

  .xl\:m-5 {
    margin: 5px;
  }

  .xl\:m-8 {
    margin: 8px;
  }

  .xl\:m-10 {
    margin: 10px;
  }

  .xl\:m-15 {
    margin: 15px;
  }

  .xl\:m-20 {
    margin: 20px;
  }

  .xl\:m-25 {
    margin: 25px;
  }

  .xl\:m-30 {
    margin: 30px;
  }

  .xl\:m-35 {
    margin: 35px;
  }

  .xl\:m-40 {
    margin: 40px;
  }

  .xl\:m-auto {
    margin: auto;
  }

  .xl\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

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

  .xl\:my-4 {
    margin-top: 4px;
    margin-bottom: 4px;
  }

  .xl\:mx-4 {
    margin-left: 4px;
    margin-right: 4px;
  }

  .xl\:my-5 {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .xl\:mx-5 {
    margin-left: 5px;
    margin-right: 5px;
  }

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

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

  .xl\:my-10 {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .xl\:mx-10 {
    margin-left: 10px;
    margin-right: 10px;
  }

  .xl\:my-15 {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .xl\:mx-15 {
    margin-left: 15px;
    margin-right: 15px;
  }

  .xl\:my-20 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .xl\:mx-20 {
    margin-left: 20px;
    margin-right: 20px;
  }

  .xl\:my-25 {
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .xl\:mx-25 {
    margin-left: 25px;
    margin-right: 25px;
  }

  .xl\:my-30 {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .xl\:mx-30 {
    margin-left: 30px;
    margin-right: 30px;
  }

  .xl\:my-35 {
    margin-top: 35px;
    margin-bottom: 35px;
  }

  .xl\:mx-35 {
    margin-left: 35px;
    margin-right: 35px;
  }

  .xl\:my-40 {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .xl\:mx-40 {
    margin-left: 40px;
    margin-right: 40px;
  }

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

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

  .xl\:mt-0 {
    margin-top: 0;
  }

  .xl\:mr-0 {
    margin-right: 0;
  }

  .xl\:mb-0 {
    margin-bottom: 0;
  }

  .xl\:ml-0 {
    margin-left: 0;
  }

  .xl\:mt-4 {
    margin-top: 4px;
  }

  .xl\:mr-4 {
    margin-right: 4px;
  }

  .xl\:mb-4 {
    margin-bottom: 4px;
  }

  .xl\:ml-4 {
    margin-left: 4px;
  }

  .xl\:mt-5 {
    margin-top: 5px;
  }

  .xl\:mr-5 {
    margin-right: 5px;
  }

  .xl\:mb-5 {
    margin-bottom: 5px;
  }

  .xl\:ml-5 {
    margin-left: 5px;
  }

  .xl\:mt-8 {
    margin-top: 8px;
  }

  .xl\:mr-8 {
    margin-right: 8px;
  }

  .xl\:mb-8 {
    margin-bottom: 8px;
  }

  .xl\:ml-8 {
    margin-left: 8px;
  }

  .xl\:mt-10 {
    margin-top: 10px;
  }

  .xl\:mr-10 {
    margin-right: 10px;
  }

  .xl\:mb-10 {
    margin-bottom: 10px;
  }

  .xl\:ml-10 {
    margin-left: 10px;
  }

  .xl\:mt-15 {
    margin-top: 15px;
  }

  .xl\:mr-15 {
    margin-right: 15px;
  }

  .xl\:mb-15 {
    margin-bottom: 15px;
  }

  .xl\:ml-15 {
    margin-left: 15px;
  }

  .xl\:mt-20 {
    margin-top: 20px;
  }

  .xl\:mr-20 {
    margin-right: 20px;
  }

  .xl\:mb-20 {
    margin-bottom: 20px;
  }

  .xl\:ml-20 {
    margin-left: 20px;
  }

  .xl\:mt-25 {
    margin-top: 25px;
  }

  .xl\:mr-25 {
    margin-right: 25px;
  }

  .xl\:mb-25 {
    margin-bottom: 25px;
  }

  .xl\:ml-25 {
    margin-left: 25px;
  }

  .xl\:mt-30 {
    margin-top: 30px;
  }

  .xl\:mr-30 {
    margin-right: 30px;
  }

  .xl\:mb-30 {
    margin-bottom: 30px;
  }

  .xl\:ml-30 {
    margin-left: 30px;
  }

  .xl\:mt-35 {
    margin-top: 35px;
  }

  .xl\:mr-35 {
    margin-right: 35px;
  }

  .xl\:mb-35 {
    margin-bottom: 35px;
  }

  .xl\:ml-35 {
    margin-left: 35px;
  }

  .xl\:mt-40 {
    margin-top: 40px;
  }

  .xl\:mr-40 {
    margin-right: 40px;
  }

  .xl\:mb-40 {
    margin-bottom: 40px;
  }

  .xl\:ml-40 {
    margin-left: 40px;
  }

  .xl\:mt-auto {
    margin-top: auto;
  }

  .xl\:mr-auto {
    margin-right: auto;
  }

  .xl\:mb-auto {
    margin-bottom: auto;
  }

  .xl\:ml-auto {
    margin-left: auto;
  }

  .xl\:max-h-0 {
    max-height: 0px;
  }

  .xl\:max-h-30 {
    max-height: 30px;
  }

  .xl\:max-h-35 {
    max-height: 35px;
  }

  .xl\:max-h-full {
    max-height: 100%;
  }

  .xl\:max-h-screen {
    max-height: 100vh;
  }

  .xl\:max-w-200 {
    max-width: 200px;
  }

  .xl\:max-w-300 {
    max-width: 300px;
  }

  .xl\:max-w-400 {
    max-width: 400px;
  }

  .xl\:max-w-540 {
    max-width: 540px;
  }

  .xl\:max-w-600 {
    max-width: 600px;
  }

  .xl\:max-w-800 {
    max-width: 700px;
  }

  .xl\:max-w-920 {
    max-width: 920px;
  }

  .xl\:max-w-full {
    max-width: 100%;
  }

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

  .xl\:max-w-1\/3 {
    max-width: 33.33333%;
  }

  .xl\:max-w-2\/3 {
    max-width: 66.66667%;
  }

  .xl\:max-w-1\/4 {
    max-width: 25%;
  }

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

  .xl\:max-w-1\/5 {
    max-width: 20%;
  }

  .xl\:max-w-2\/5 {
    max-width: 40%;
  }

  .xl\:max-w-3\/5 {
    max-width: 60%;
  }

  .xl\:max-w-4\/5 {
    max-width: 80%;
  }

  .xl\:max-w-1\/6 {
    max-width: 16.66667%;
  }

  .xl\:max-w-5\/6 {
    max-width: 83.33333%;
  }

  .xl\:max-w-1\/12 {
    max-width: 8.33333%;
  }

  .xl\:min-h-0 {
    min-height: 0;
  }

  .xl\:min-h-70 {
    min-height: 70px;
  }

  .xl\:min-h-100 {
    min-height: 100px;
  }

  .xl\:min-h-260 {
    min-height: 260px;
  }

  .xl\:min-h-300 {
    min-height: 300px;
  }

  .xl\:min-h-400 {
    min-height: 400px;
  }

  .xl\:min-h-500 {
    min-height: 500px;
  }

  .xl\:min-h-600 {
    min-height: 600px;
  }

  .xl\:min-h-full {
    min-height: 100%;
  }

  .xl\:min-h-screen {
    min-height: 100vh;
  }

  .xl\:min-w-0 {
    min-width: 0;
  }

  .xl\:min-w-100 {
    min-width: 100px;
  }

  .xl\:min-w-full {
    min-width: 100%;
  }

  .xl\:-m-10 {
    margin: -10px;
  }

  .xl\:-m-11 {
    margin: -11px;
  }

  .xl\:-m-15 {
    margin: -15px;
  }

  .xl\:-m-25 {
    margin: -25px;
  }

  .xl\:-m-30 {
    margin: -30px;
  }

  .xl\:-m-42 {
    margin: -42px;
  }

  .xl\:-my-10 {
    margin-top: -10px;
    margin-bottom: -10px;
  }

  .xl\:-mx-10 {
    margin-left: -10px;
    margin-right: -10px;
  }

  .xl\:-my-11 {
    margin-top: -11px;
    margin-bottom: -11px;
  }

  .xl\:-mx-11 {
    margin-left: -11px;
    margin-right: -11px;
  }

  .xl\:-my-15 {
    margin-top: -15px;
    margin-bottom: -15px;
  }

  .xl\:-mx-15 {
    margin-left: -15px;
    margin-right: -15px;
  }

  .xl\:-my-25 {
    margin-top: -25px;
    margin-bottom: -25px;
  }

  .xl\:-mx-25 {
    margin-left: -25px;
    margin-right: -25px;
  }

  .xl\:-my-30 {
    margin-top: -30px;
    margin-bottom: -30px;
  }

  .xl\:-mx-30 {
    margin-left: -30px;
    margin-right: -30px;
  }

  .xl\:-my-42 {
    margin-top: -42px;
    margin-bottom: -42px;
  }

  .xl\:-mx-42 {
    margin-left: -42px;
    margin-right: -42px;
  }

  .xl\:-mt-10 {
    margin-top: -10px;
  }

  .xl\:-mr-10 {
    margin-right: -10px;
  }

  .xl\:-mb-10 {
    margin-bottom: -10px;
  }

  .xl\:-ml-10 {
    margin-left: -10px;
  }

  .xl\:-mt-11 {
    margin-top: -11px;
  }

  .xl\:-mr-11 {
    margin-right: -11px;
  }

  .xl\:-mb-11 {
    margin-bottom: -11px;
  }

  .xl\:-ml-11 {
    margin-left: -11px;
  }

  .xl\:-mt-15 {
    margin-top: -15px;
  }

  .xl\:-mr-15 {
    margin-right: -15px;
  }

  .xl\:-mb-15 {
    margin-bottom: -15px;
  }

  .xl\:-ml-15 {
    margin-left: -15px;
  }

  .xl\:-mt-25 {
    margin-top: -25px;
  }

  .xl\:-mr-25 {
    margin-right: -25px;
  }

  .xl\:-mb-25 {
    margin-bottom: -25px;
  }

  .xl\:-ml-25 {
    margin-left: -25px;
  }

  .xl\:-mt-30 {
    margin-top: -30px;
  }

  .xl\:-mr-30 {
    margin-right: -30px;
  }

  .xl\:-mb-30 {
    margin-bottom: -30px;
  }

  .xl\:-ml-30 {
    margin-left: -30px;
  }

  .xl\:-mt-42 {
    margin-top: -42px;
  }

  .xl\:-mr-42 {
    margin-right: -42px;
  }

  .xl\:-mb-42 {
    margin-bottom: -42px;
  }

  .xl\:-ml-42 {
    margin-left: -42px;
  }

  .xl\:opacity-0 {
    opacity: 0;
  }

  .xl\:opacity-25 {
    opacity: .25;
  }

  .xl\:opacity-50 {
    opacity: .5;
  }

  .xl\:opacity-75 {
    opacity: .75;
  }

  .xl\:opacity-100 {
    opacity: 1;
  }

  .xl\:overflow-auto {
    overflow: auto;
  }

  .xl\:overflow-hidden {
    overflow: hidden;
  }

  .xl\:overflow-visible {
    overflow: visible;
  }

  .xl\:overflow-scroll {
    overflow: scroll;
  }

  .xl\:overflow-x-auto {
    overflow-x: auto;
  }

  .xl\:overflow-y-auto {
    overflow-y: auto;
  }

  .xl\:overflow-x-hidden {
    overflow-x: hidden;
  }

  .xl\:overflow-y-hidden {
    overflow-y: hidden;
  }

  .xl\:overflow-x-visible {
    overflow-x: visible;
  }

  .xl\:overflow-y-visible {
    overflow-y: visible;
  }

  .xl\:overflow-x-scroll {
    overflow-x: scroll;
  }

  .xl\:overflow-y-scroll {
    overflow-y: scroll;
  }

  .xl\:scrolling-touch {
    -webkit-overflow-scrolling: touch;
  }

  .xl\:scrolling-auto {
    -webkit-overflow-scrolling: auto;
  }

  .xl\:p-0 {
    padding: 0;
  }

  .xl\:p-5 {
    padding: 5px;
  }

  .xl\:p-8 {
    padding: 8px;
  }

  .xl\:p-10 {
    padding: 10px;
  }

  .xl\:p-14 {
    padding: 14px;
  }

  .xl\:p-15 {
    padding: 15px;
  }

  .xl\:p-20 {
    padding: 20px;
  }

  .xl\:p-25 {
    padding: 25px;
  }

  .xl\:p-28 {
    padding: 28px;
  }

  .xl\:p-30 {
    padding: 30px;
  }

  .xl\:p-40 {
    padding: 40px;
  }

  .xl\:p-50 {
    padding: 50px;
  }

  .xl\:p-60 {
    padding: 60px;
  }

  .xl\:p-80 {
    padding: 80px;
  }

  .xl\:p-95 {
    padding: 95px;
  }

  .xl\:p-100 {
    padding: 100px;
  }

  .xl\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

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

  .xl\:py-5 {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .xl\:px-5 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .xl\:py-8 {
    padding-top: 8px;
    padding-bottom: 8px;
  }

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

  .xl\:py-10 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

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

  .xl\:py-14 {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .xl\:px-14 {
    padding-left: 14px;
    padding-right: 14px;
  }

  .xl\:py-15 {
    padding-top: 15px;
    padding-bottom: 15px;
  }

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

  .xl\:py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .xl\:px-20 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .xl\:py-25 {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .xl\:px-25 {
    padding-left: 25px;
    padding-right: 25px;
  }

  .xl\:py-28 {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .xl\:px-28 {
    padding-left: 28px;
    padding-right: 28px;
  }

  .xl\:py-30 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

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

  .xl\:py-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .xl\:px-40 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .xl\:py-50 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .xl\:px-50 {
    padding-left: 50px;
    padding-right: 50px;
  }

  .xl\:py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .xl\:px-60 {
    padding-left: 60px;
    padding-right: 60px;
  }

  .xl\:py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .xl\:px-80 {
    padding-left: 80px;
    padding-right: 80px;
  }

  .xl\:py-95 {
    padding-top: 95px;
    padding-bottom: 95px;
  }

  .xl\:px-95 {
    padding-left: 95px;
    padding-right: 95px;
  }

  .xl\:py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .xl\:px-100 {
    padding-left: 100px;
    padding-right: 100px;
  }

  .xl\:pt-0 {
    padding-top: 0;
  }

  .xl\:pr-0 {
    padding-right: 0;
  }

  .xl\:pb-0 {
    padding-bottom: 0;
  }

  .xl\:pl-0 {
    padding-left: 0;
  }

  .xl\:pt-5 {
    padding-top: 5px;
  }

  .xl\:pr-5 {
    padding-right: 5px;
  }

  .xl\:pb-5 {
    padding-bottom: 5px;
  }

  .xl\:pl-5 {
    padding-left: 5px;
  }

  .xl\:pt-8 {
    padding-top: 8px;
  }

  .xl\:pr-8 {
    padding-right: 8px;
  }

  .xl\:pb-8 {
    padding-bottom: 8px;
  }

  .xl\:pl-8 {
    padding-left: 8px;
  }

  .xl\:pt-10 {
    padding-top: 10px;
  }

  .xl\:pr-10 {
    padding-right: 10px;
  }

  .xl\:pb-10 {
    padding-bottom: 10px;
  }

  .xl\:pl-10 {
    padding-left: 10px;
  }

  .xl\:pt-14 {
    padding-top: 14px;
  }

  .xl\:pr-14 {
    padding-right: 14px;
  }

  .xl\:pb-14 {
    padding-bottom: 14px;
  }

  .xl\:pl-14 {
    padding-left: 14px;
  }

  .xl\:pt-15 {
    padding-top: 15px;
  }

  .xl\:pr-15 {
    padding-right: 15px;
  }

  .xl\:pb-15 {
    padding-bottom: 15px;
  }

  .xl\:pl-15 {
    padding-left: 15px;
  }

  .xl\:pt-20 {
    padding-top: 20px;
  }

  .xl\:pr-20 {
    padding-right: 20px;
  }

  .xl\:pb-20 {
    padding-bottom: 20px;
  }

  .xl\:pl-20 {
    padding-left: 20px;
  }

  .xl\:pt-25 {
    padding-top: 25px;
  }

  .xl\:pr-25 {
    padding-right: 25px;
  }

  .xl\:pb-25 {
    padding-bottom: 25px;
  }

  .xl\:pl-25 {
    padding-left: 25px;
  }

  .xl\:pt-28 {
    padding-top: 28px;
  }

  .xl\:pr-28 {
    padding-right: 28px;
  }

  .xl\:pb-28 {
    padding-bottom: 28px;
  }

  .xl\:pl-28 {
    padding-left: 28px;
  }

  .xl\:pt-30 {
    padding-top: 30px;
  }

  .xl\:pr-30 {
    padding-right: 30px;
  }

  .xl\:pb-30 {
    padding-bottom: 30px;
  }

  .xl\:pl-30 {
    padding-left: 30px;
  }

  .xl\:pt-40 {
    padding-top: 40px;
  }

  .xl\:pr-40 {
    padding-right: 40px;
  }

  .xl\:pb-40 {
    padding-bottom: 40px;
  }

  .xl\:pl-40 {
    padding-left: 40px;
  }

  .xl\:pt-50 {
    padding-top: 50px;
  }

  .xl\:pr-50 {
    padding-right: 50px;
  }

  .xl\:pb-50 {
    padding-bottom: 50px;
  }

  .xl\:pl-50 {
    padding-left: 50px;
  }

  .xl\:pt-60 {
    padding-top: 60px;
  }

  .xl\:pr-60 {
    padding-right: 60px;
  }

  .xl\:pb-60 {
    padding-bottom: 60px;
  }

  .xl\:pl-60 {
    padding-left: 60px;
  }

  .xl\:pt-80 {
    padding-top: 80px;
  }

  .xl\:pr-80 {
    padding-right: 80px;
  }

  .xl\:pb-80 {
    padding-bottom: 80px;
  }

  .xl\:pl-80 {
    padding-left: 80px;
  }

  .xl\:pt-95 {
    padding-top: 95px;
  }

  .xl\:pr-95 {
    padding-right: 95px;
  }

  .xl\:pb-95 {
    padding-bottom: 95px;
  }

  .xl\:pl-95 {
    padding-left: 95px;
  }

  .xl\:pt-100 {
    padding-top: 100px;
  }

  .xl\:pr-100 {
    padding-right: 100px;
  }

  .xl\:pb-100 {
    padding-bottom: 100px;
  }

  .xl\:pl-100 {
    padding-left: 100px;
  }

  .xl\:static {
    position: static;
  }

  .xl\:fixed {
    position: fixed;
  }

  .xl\:absolute {
    position: absolute;
  }

  .xl\:relative {
    position: relative;
  }

  .xl\:sticky {
    position: sticky;
  }

  .xl\:pin-none {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .xl\:pin {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .xl\:pin-y {
    top: 0;
    bottom: 0;
  }

  .xl\:pin-x {
    right: 0;
    left: 0;
  }

  .xl\:pin-t {
    top: 0;
  }

  .xl\:pin-r {
    right: 0;
  }

  .xl\:pin-b {
    bottom: 0;
  }

  .xl\:pin-l {
    left: 0;
  }

  .xl\:resize-none {
    resize: none;
  }

  .xl\:resize-y {
    resize: vertical;
  }

  .xl\:resize-x {
    resize: horizontal;
  }

  .xl\:resize {
    resize: both;
  }

  .xl\:shadow {
    box-shadow: 0 1px 4px 0 rgba(7, 29, 73, .1);
  }

  .xl\:shadow-lg {
    box-shadow: 0 3px 6px 0 rgba(7, 29, 73, .1);
  }

  .xl\:shadow-popover {
    box-shadow: 0 4px 6px 0 rgba(7, 29, 73, .3);
  }

  .xl\:shadow-inner {
    box-shadow: inset 0 0 6px 0 rgba(7, 29, 73, .1);
  }

  .xl\:shadow-none {
    box-shadow: none;
  }

  .xl\:hover\:shadow:hover {
    box-shadow: 0 1px 4px 0 rgba(7, 29, 73, .1);
  }

  .xl\:hover\:shadow-lg:hover {
    box-shadow: 0 3px 6px 0 rgba(7, 29, 73, .1);
  }

  .xl\:hover\:shadow-popover:hover {
    box-shadow: 0 4px 6px 0 rgba(7, 29, 73, .3);
  }

  .xl\:hover\:shadow-inner:hover {
    box-shadow: inset 0 0 6px 0 rgba(7, 29, 73, .1);
  }

  .xl\:hover\:shadow-none:hover {
    box-shadow: none;
  }

  .xl\:focus\:shadow:focus {
    box-shadow: 0 1px 4px 0 rgba(7, 29, 73, .1);
  }

  .xl\:focus\:shadow-lg:focus {
    box-shadow: 0 3px 6px 0 rgba(7, 29, 73, .1);
  }

  .xl\:focus\:shadow-popover:focus {
    box-shadow: 0 4px 6px 0 rgba(7, 29, 73, .3);
  }

  .xl\:focus\:shadow-inner:focus {
    box-shadow: inset 0 0 6px 0 rgba(7, 29, 73, .1);
  }

  .xl\:focus\:shadow-none:focus {
    box-shadow: none;
  }

  .xl\:table-auto {
    table-layout: auto;
  }

  .xl\:table-fixed {
    table-layout: fixed;
  }

  .xl\:text-left {
    text-align: left;
  }

  .xl\:text-center {
    text-align: center;
  }

  .xl\:text-right {
    text-align: right;
  }

  .xl\:text-justify {
    text-align: justify;
  }

  .xl\:text-transparent {
    color: transparent;
  }

  .xl\:text-white {
    color: #fff;
  }

  .xl\:text-grey-lighter-trans {
    color: rgba(242, 243, 246, .3);
  }

  .xl\:text-grey-lighter {
    color: #f2f3f6;
  }

  .xl\:text-grey {
    color: #e6e8ec;
  }

  .xl\:text-grey-darker {
    color: #ced2db;
  }

  .xl\:text-grey-darkest {
    color: #c1c6d2;
  }

  .xl\:text-navy-lightest {
    color: #5e6b89;
  }

  .xl\:text-navy-lighter {
    color: #6b7792;
  }

  .xl\:text-navy {
    color: #081c4a;
  }

  .xl\:text-navy-darker {
    color: #001035;
  }

  .xl\:text-navy-darkest {
    color: #000e2d;
  }

  .xl\:text-pink-lighter {
    color: #ffd0e5;
  }

  .xl\:text-pink {
    color: #e31c78;
  }

  .xl\:text-pink-darker {
    color: #bb0872;
  }

  .xl\:text-pink-darkest {
    color: #aa0467;
  }

  .xl\:text-teal {
    color: #2bd6c4;
  }

  .xl\:text-teal-darker {
    color: #007b83;
  }

  .xl\:text-teal-darkest {
    color: #005358;
  }

  .xl\:text-blue {
    color: #05c2de;
  }

  .xl\:text-navy-gradient-0 {
    color: #052b5f;
  }

  .xl\:text-navy-gradient-100 {
    color: #041437;
  }

  .xl\:text-pink-gradient-0 {
    color: #e31c78;
  }

  .xl\:text-pink-gradient-100 {
    color: #b41c6e;
  }

  .xl\:text-blue-gradient-0 {
    color: #05c2de;
  }

  .xl\:text-blue-gradient-100 {
    color: #029fc7;
  }

  .xl\:text-teal-gradient-0 {
    color: #2bd6c4;
  }

  .xl\:text-teal-gradient-100 {
    color: #088c90;
  }

  .xl\:hover\:text-transparent:hover {
    color: transparent;
  }

  .xl\:hover\:text-white:hover {
    color: #fff;
  }

  .xl\:hover\:text-grey-lighter-trans:hover {
    color: rgba(242, 243, 246, .3);
  }

  .xl\:hover\:text-grey-lighter:hover {
    color: #f2f3f6;
  }

  .xl\:hover\:text-grey:hover {
    color: #e6e8ec;
  }

  .xl\:hover\:text-grey-darker:hover {
    color: #ced2db;
  }

  .xl\:hover\:text-grey-darkest:hover {
    color: #c1c6d2;
  }

  .xl\:hover\:text-navy-lightest:hover {
    color: #5e6b89;
  }

  .xl\:hover\:text-navy-lighter:hover {
    color: #6b7792;
  }

  .xl\:hover\:text-navy:hover {
    color: #081c4a;
  }

  .xl\:hover\:text-navy-darker:hover {
    color: #001035;
  }

  .xl\:hover\:text-navy-darkest:hover {
    color: #000e2d;
  }

  .xl\:hover\:text-pink-lighter:hover {
    color: #ffd0e5;
  }

  .xl\:hover\:text-pink:hover {
    color: #e31c78;
  }

  .xl\:hover\:text-pink-darker:hover {
    color: #bb0872;
  }

  .xl\:hover\:text-pink-darkest:hover {
    color: #aa0467;
  }

  .xl\:hover\:text-teal:hover {
    color: #2bd6c4;
  }

  .xl\:hover\:text-teal-darker:hover {
    color: #007b83;
  }

  .xl\:hover\:text-teal-darkest:hover {
    color: #005358;
  }

  .xl\:hover\:text-blue:hover {
    color: #05c2de;
  }

  .xl\:hover\:text-navy-gradient-0:hover {
    color: #052b5f;
  }

  .xl\:hover\:text-navy-gradient-100:hover {
    color: #041437;
  }

  .xl\:hover\:text-pink-gradient-0:hover {
    color: #e31c78;
  }

  .xl\:hover\:text-pink-gradient-100:hover {
    color: #b41c6e;
  }

  .xl\:hover\:text-blue-gradient-0:hover {
    color: #05c2de;
  }

  .xl\:hover\:text-blue-gradient-100:hover {
    color: #029fc7;
  }

  .xl\:hover\:text-teal-gradient-0:hover {
    color: #2bd6c4;
  }

  .xl\:hover\:text-teal-gradient-100:hover {
    color: #088c90;
  }

  .xl\:focus\:text-transparent:focus {
    color: transparent;
  }

  .xl\:focus\:text-white:focus {
    color: #fff;
  }

  .xl\:focus\:text-grey-lighter-trans:focus {
    color: rgba(242, 243, 246, .3);
  }

  .xl\:focus\:text-grey-lighter:focus {
    color: #f2f3f6;
  }

  .xl\:focus\:text-grey:focus {
    color: #e6e8ec;
  }

  .xl\:focus\:text-grey-darker:focus {
    color: #ced2db;
  }

  .xl\:focus\:text-grey-darkest:focus {
    color: #c1c6d2;
  }

  .xl\:focus\:text-navy-lightest:focus {
    color: #5e6b89;
  }

  .xl\:focus\:text-navy-lighter:focus {
    color: #6b7792;
  }

  .xl\:focus\:text-navy:focus {
    color: #081c4a;
  }

  .xl\:focus\:text-navy-darker:focus {
    color: #001035;
  }

  .xl\:focus\:text-navy-darkest:focus {
    color: #000e2d;
  }

  .xl\:focus\:text-pink-lighter:focus {
    color: #ffd0e5;
  }

  .xl\:focus\:text-pink:focus {
    color: #e31c78;
  }

  .xl\:focus\:text-pink-darker:focus {
    color: #bb0872;
  }

  .xl\:focus\:text-pink-darkest:focus {
    color: #aa0467;
  }

  .xl\:focus\:text-teal:focus {
    color: #2bd6c4;
  }

  .xl\:focus\:text-teal-darker:focus {
    color: #007b83;
  }

  .xl\:focus\:text-teal-darkest:focus {
    color: #005358;
  }

  .xl\:focus\:text-blue:focus {
    color: #05c2de;
  }

  .xl\:focus\:text-navy-gradient-0:focus {
    color: #052b5f;
  }

  .xl\:focus\:text-navy-gradient-100:focus {
    color: #041437;
  }

  .xl\:focus\:text-pink-gradient-0:focus {
    color: #e31c78;
  }

  .xl\:focus\:text-pink-gradient-100:focus {
    color: #b41c6e;
  }

  .xl\:focus\:text-blue-gradient-0:focus {
    color: #05c2de;
  }

  .xl\:focus\:text-blue-gradient-100:focus {
    color: #029fc7;
  }

  .xl\:focus\:text-teal-gradient-0:focus {
    color: #2bd6c4;
  }

  .xl\:focus\:text-teal-gradient-100:focus {
    color: #088c90;
  }

  .xl\:text-12 {
    font-size: 12px;
  }

  .xl\:text-13 {
    font-size: 13px;
  }

  .xl\:text-14 {
    font-size: 14px;
  }

  .xl\:text-15 {
    font-size: 15px;
  }

  .xl\:text-16 {
    font-size: 16px;
  }

  .xl\:text-18 {
    font-size: 18px;
  }

  .xl\:text-19 {
    font-size: 19px;
  }

  .xl\:text-20 {
    font-size: 20px;
  }

  .xl\:text-24 {
    font-size: 24px;
  }

  .xl\:text-28 {
    font-size: 28px;
  }

  .xl\:text-32 {
    font-size: 32px;
  }

  .xl\:text-52 {
    font-size: 52px;
  }

  .xl\:italic {
    font-style: italic;
  }

  .xl\:roman {
    font-style: normal;
  }

  .xl\:uppercase {
    text-transform: uppercase;
  }

  .xl\:lowercase {
    text-transform: lowercase;
  }

  .xl\:capitalize {
    text-transform: capitalize;
  }

  .xl\:normal-case {
    text-transform: none;
  }

  .xl\:underline {
    text-decoration: underline;
  }

  .xl\:line-through {
    text-decoration: line-through;
  }

  .xl\:no-underline {
    text-decoration: none;
  }

  .xl\:antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .xl\:subpixel-antialiased {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .xl\:hover\:italic:hover {
    font-style: italic;
  }

  .xl\:hover\:roman:hover {
    font-style: normal;
  }

  .xl\:hover\:uppercase:hover {
    text-transform: uppercase;
  }

  .xl\:hover\:lowercase:hover {
    text-transform: lowercase;
  }

  .xl\:hover\:capitalize:hover {
    text-transform: capitalize;
  }

  .xl\:hover\:normal-case:hover {
    text-transform: none;
  }

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

  .xl\:hover\:line-through:hover {
    text-decoration: line-through;
  }

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

  .xl\:hover\:antialiased:hover {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .xl\:hover\:subpixel-antialiased:hover {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .xl\:focus\:italic:focus {
    font-style: italic;
  }

  .xl\:focus\:roman:focus {
    font-style: normal;
  }

  .xl\:focus\:uppercase:focus {
    text-transform: uppercase;
  }

  .xl\:focus\:lowercase:focus {
    text-transform: lowercase;
  }

  .xl\:focus\:capitalize:focus {
    text-transform: capitalize;
  }

  .xl\:focus\:normal-case:focus {
    text-transform: none;
  }

  .xl\:focus\:underline:focus {
    text-decoration: underline;
  }

  .xl\:focus\:line-through:focus {
    text-decoration: line-through;
  }

  .xl\:focus\:no-underline:focus {
    text-decoration: none;
  }

  .xl\:focus\:antialiased:focus {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .xl\:focus\:subpixel-antialiased:focus {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .xl\:visible {
    visibility: visible;
  }

  .xl\:invisible {
    visibility: hidden;
  }

  .xl\:w-4 {
    width: 4px;
  }

  .xl\:w-150 {
    width: 150px;
  }

  .xl\:w-200 {
    width: 200px;
  }

  .xl\:w-250 {
    width: 250px;
  }

  .xl\:w-380 {
    width: 380px;
  }

  .xl\:w-auto {
    width: auto;
  }

  .xl\:w-px {
    width: 1px;
  }

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

  .xl\:w-1\/3 {
    width: 33.33333%;
  }

  .xl\:w-2\/3 {
    width: 66.66667%;
  }

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

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

  .xl\:w-1\/5 {
    width: 20%;
  }

  .xl\:w-2\/5 {
    width: 40%;
  }

  .xl\:w-3\/5 {
    width: 60%;
  }

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

  .xl\:w-1\/6 {
    width: 16.66667%;
  }

  .xl\:w-5\/6 {
    width: 83.33333%;
  }

  .xl\:w-1\/12 {
    width: 8.33333%;
  }

  .xl\:w-5\/12 {
    width: 41.66667%;
  }

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

  .xl\:w-full {
    width: 100%;
  }

  .xl\:w-screen {
    width: 100vw;
  }
}
