/**************************\
  Basic Modal Styles
\**************************/

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(44, 62, 80, 0.48);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__container {
  background-color: #fff;
  padding: 24px;
  max-width: 500px;
  max-height: 100vh;
  border-radius: 12px;
  overflow-y: auto;
  box-sizing: border-box;
  box-shadow: 6px 8px 40px 0px rgba(33, 37, 40, 0.5);
}

.modal__close {
  position: absolute;
  right: 24px;
  top: 24px;
  background: transparent;
  border: 0;
}

.modal__close:before {
  content: '\2715';
  font-size: 20px;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .modal__container {
    padding: 40px;
    max-width: 620px;
  }

  .modal__close {
    right: 40px;
    top: 40px;
  }

  .modal__close:before {
    font-size: 28px;
  }
}

@media screen and (min-width: 1280px) {
  .modal__container {
    padding: 40px 48px;
    max-width: 696px;
  }

  .modal__close {
    right: 48px;
  }

  .modal__close:before {
    font-size: 30px;
  }
}

@media screen and (min-width: 1560px) {
  .modal__container {
    max-width: 800px;
  }

  .modal__close:before {
    font-size: 32px;
  }
}

/**************************\
    Demo Animation Style
  \**************************/

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10%);
  }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden='false'] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden='false'] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden='true'] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden='true'] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/*! tailwindcss v3.4.1 | MIT License | https://tailwindcss.com*/

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

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

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
  tab-size: 4;
  /* 3 */
  font-family: Lato, Arial, Roboto, sans-serif;
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  -webkit-tap-highlight-color: transparent;
  /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

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

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

/*
Remove the default font size and weight for headings.
*/

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

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

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

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

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-feature-settings: normal;
  /* 2 */
  font-variation-settings: normal;
  /* 3 */
  font-size: 1em;
  /* 4 */
}

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

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

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

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

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-feature-settings: inherit;
  /* 1 */
  font-variation-settings: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

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

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

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

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

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

summary {
  display: list-item;
}

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

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

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

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

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  /*color: ;*/
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  /*color: ;*/
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

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

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

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

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

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

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden] {
  display: none;
}

body {
  --tw-bg-opacity: 1;
  background-color: rgb(230 238 250 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(44 62 80 / var(--tw-text-opacity));
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(226 245 253 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(226 245 253 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

.container {
  width: 100%;
}

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

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

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

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

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

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

.visible {
  visibility: visible;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.inset-0 {
  inset: 0px;
}

.-bottom-\[15vw\] {
  bottom: -15vw;
}

.-left-\[23vw\] {
  left: -23vw;
}

.bottom-0 {
  bottom: 0px;
}

.bottom-5 {
  bottom: 1.25rem;
}

.bottom-\[10\%\] {
  bottom: 10%;
}

.left-0 {
  left: 0px;
}

.left-full {
  left: 100%;
}

.right-0 {
  right: 0px;
}

.right-5 {
  right: 1.25rem;
}

.top-0 {
  top: 0px;
}

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

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

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

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

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

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

.my-7 {
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}

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

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

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

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

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

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

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

.ml-10 {
  margin-left: 2.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

.block {
  display: block;
}

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

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.h-1 {
  height: 0.25rem;
}

.h-10 {
  height: 2.5rem;
}

.h-11 {
  height: 2.75rem;
}

.h-12 {
  height: 3rem;
}

.h-16 {
  height: 4rem;
}

.h-20 {
  height: 5rem;
}

.h-6 {
  height: 1.5rem;
}

.h-7 {
  height: 1.75rem;
}

.h-\[100px\] {
  height: 100px;
}

.h-\[112px\] {
  height: 112px;
}

.h-\[120px\] {
  height: 120px;
}

.h-\[160px\] {
  height: 160px;
}

.h-\[182px\] {
  height: 182px;
}

.h-\[296px\] {
  height: 296px;
}

.h-\[385px\] {
  height: 385px;
}

.h-\[400px\] {
  height: 400px;
}

.h-\[42vw\] {
  height: 42vw;
}

.h-\[456px\] {
  height: 456px;
}

.h-\[480px\] {
  height: 480px;
}

.h-\[60px\] {
  height: 60px;
}

.h-full {
  height: 100%;
}

.h-px {
  height: 1px;
}

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

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

.w-12 {
  width: 3rem;
}

.w-20 {
  width: 5rem;
}

.w-32 {
  width: 8rem;
}

.w-6 {
  width: 1.5rem;
}

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

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

.w-\[312px\] {
  width: 312px;
}

.w-\[44px\] {
  width: 44px;
}

.w-\[60px\] {
  width: 60px;
}

.w-full {
  width: 100%;
}

.w-px {
  width: 1px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cursor-pointer {
  cursor: pointer;
}

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

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

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

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

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

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

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

.gap-1 {
  gap: 0.25rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-16 {
  gap: 4rem;
}

.gap-2 {
  gap: 0.5rem;
}

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

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-7 {
  gap: 1.75rem;
}

.gap-8 {
  gap: 2rem;
}

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

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

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

.overflow-hidden {
  overflow: hidden;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.rounded {
  border-radius: 0.25rem;
}

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

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

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

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

.border {
  border-width: 1px;
}

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

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

.border-\[\#DD6903\] {
  --tw-border-opacity: 1;
  border-color: rgb(221 105 3 / var(--tw-border-opacity));
}

.border-blue-800 {
  --tw-border-opacity: 1;
  border-color: rgb(52 152 219 / var(--tw-border-opacity));
}

.border-slate-500 {
  --tw-border-opacity: 1;
  border-color: rgb(230 238 250 / var(--tw-border-opacity));
}

.border-slate-600 {
  --tw-border-opacity: 1;
  border-color: rgb(198 213 227 / var(--tw-border-opacity));
}

.border-slate-800 {
  --tw-border-opacity: 1;
  border-color: rgb(74 100 124 / var(--tw-border-opacity));
}

.bg-blue-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(52 152 219 / var(--tw-bg-opacity));
}

.bg-gray-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(236 240 241 / var(--tw-bg-opacity));
}

.bg-slate-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(230 238 250 / var(--tw-bg-opacity));
}

.bg-slate-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(198 213 227 / var(--tw-bg-opacity));
}

.bg-slate-700\/25 {
  background-color: rgb(135 155 178 / 0.25);
}

.bg-slate-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(74 100 124 / var(--tw-bg-opacity));
}

.bg-slate-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(44 62 80 / var(--tw-bg-opacity));
}

.bg-slate-900\/50 {
  background-color: rgb(44 62 80 / 0.5);
}

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

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

.object-center {
  -o-object-position: center;
  object-position: center;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-5 {
  padding: 1.25rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-7 {
  padding: 1.75rem;
}

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

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

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

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

.px-7 {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

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

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

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

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

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

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

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

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

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

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

.py-3\.5 {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

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

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

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

.pb-10 {
  padding-bottom: 2.5rem;
}

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

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

.pb-\[60px\] {
  padding-bottom: 60px;
}

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

.pl-10 {
  padding-left: 2.5rem;
}

.pr-\[100px\] {
  padding-right: 100px;
}

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

.pt-\[24px\] {
  padding-top: 24px;
}

.pt-\[84px\] {
  padding-top: 84px;
}

.pt-\[88px\] {
  padding-top: 88px;
}

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

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

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

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

.text-\[22px\] {
  font-size: 22px;
}

.text-\[32px\] {
  font-size: 32px;
}

.text-\[42px\] {
  font-size: 42px;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

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

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

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

.font-black {
  font-weight: 900;
}

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

.font-extrabold {
  font-weight: 800;
}

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

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

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

.uppercase {
  text-transform: uppercase;
}

.not-italic {
  font-style: normal;
}

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

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

.leading-\[1\.14\] {
  line-height: 1.14;
}

.leading-\[1\.25\] {
  line-height: 1.25;
}

.leading-\[1\.33\] {
  line-height: 1.33;
}

.leading-\[1\.44\] {
  line-height: 1.44;
}

.leading-\[1\.45\] {
  line-height: 1.45;
}

.leading-\[1\.55\] {
  line-height: 1.55;
}

.leading-\[1\.5\] {
  line-height: 1.5;
}

.tracking-\[1\.5px\] {
  letter-spacing: 1.5px;
}

.tracking-\[1px\] {
  letter-spacing: 1px;
}

.text-\[\#DD6903\] {
  --tw-text-opacity: 1;
  color: rgb(221 105 3 / var(--tw-text-opacity));
}

.text-blue-800 {
  --tw-text-opacity: 1;
  color: rgb(52 152 219 / var(--tw-text-opacity));
}

.text-blue-900 {
  --tw-text-opacity: 1;
  color: rgb(43 117 179 / var(--tw-text-opacity));
}

.text-slate-600 {
  --tw-text-opacity: 1;
  color: rgb(198 213 227 / var(--tw-text-opacity));
}

.text-slate-700 {
  --tw-text-opacity: 1;
  color: rgb(135 155 178 / var(--tw-text-opacity));
}

.text-slate-800 {
  --tw-text-opacity: 1;
  color: rgb(74 100 124 / var(--tw-text-opacity));
}

.text-slate-900 {
  --tw-text-opacity: 1;
  color: rgb(44 62 80 / var(--tw-text-opacity));
}

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

.shadow-\[4px_6px_12px_0px_rgba\(0\2c 0\2c 0\2c 0\.24\)\] {
  --tw-shadow: 4px 6px 12px 0px rgba(0,0,0,0.24);
  --tw-shadow-colored: 4px 6px 12px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.\[background\:rgba\(255\2c 255\2c 255\2c 0\.25\)\] {
  background: rgba(255,255,255,0.25);
}

.\[font-feature-settings\:\'clig\'_off\2c \'liga\'_off\] {
  font-feature-settings: 'clig' off,'liga' off;
}

body {
  font-family: 'Lato', sans-serif;
}

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

@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animationFadeIn {
  animation: fadein 0.4s ease-in;
}

.btn {
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  --tw-bg-opacity: 1;
  background-color: rgb(52 152 219 / var(--tw-bg-opacity));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 14px;
  padding-bottom: 14px;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: 1px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.btn:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(43 117 179 / var(--tw-bg-opacity));
}

@media (min-width: 1536px) {
  .btn {
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  border-width: 1px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgb(198 213 227 / var(--tw-border-opacity));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 14px;
  padding-bottom: 14px;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: 1px;
  --tw-text-opacity: 1;
  color: rgb(52 152 219 / var(--tw-text-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.btn-ghost:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(198 213 227 / var(--tw-bg-opacity));
}

@media (min-width: 1536px) {
  .btn-ghost {
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.btn--disabled {
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 216 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(100 116 133 / var(--tw-text-opacity));
}

/* hamburger menu start  */

@media only screen and (max-width: 1024px) {
  #burger-menu {
    cursor: pointer;
    height: 27px;
    width: 27px;
    overflow: visible;
    position: relative;
    z-index: 2;
  }

  #burger-menu span,
  #burger-menu span:before,
  #burger-menu span:after {
    background: #fff;
    display: block;
    height: 4px;
    opacity: 1;
    position: absolute;
    transition: 0.3s ease-in-out;
  }

  #burger-menu span:before,
  #burger-menu span:after {
    content: '';
  }

  #burger-menu span {
    right: 0px;
    top: 13px;
    width: 27px;
  }

  #burger-menu span:before {
    left: 0px;
    top: -10px;
    width: 27px;
  }

  #burger-menu span:after {
    left: 0px;
    top: 10px;
    width: 27px;
  }

  #burger-menu.close span {
    transform: rotate(-45deg);
    top: 13px;
    width: 27px;
  }

  #burger-menu.close span:before {
    top: 0px;
    transform: rotate(90deg);
    width: 27px;
  }

  #burger-menu.close span:after {
    top: 0px;
    left: 0;
    transform: rotate(90deg);
    opacity: 0;
    width: 0;
  }

  #menu {
    z-index: 1;
    min-width: 100%;
    min-height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
    text-align: center;
    padding-top: 20px;
    transition: all 0.3s ease-in-out;
  }

  #menu.overlay {
    visibility: visible;
    opacity: 1;
    padding-top: 112px;
    background: #2c3e50;
  }
}

/* end hamburger menu */

/* accordion js */

.ac {
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(198 213 227 / var(--tw-border-opacity));
}

.ac .ac-trigger {
  position: relative;
  margin: 0px;
  display: flex;
  width: 100%;
  cursor: pointer;
  justify-content: space-between;
  gap: 1.25rem;
  border-style: none;
  background-color: transparent;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  text-align: left;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-size: 22px;
  font-weight: 700;
  color: inherit;
  text-decoration-line: none;
  transition-property: color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-duration: 0.25s;
  transition-timing-function: ease;
}

@media (min-width: 768px) {
  .ac .ac-trigger {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

@media (min-width: 1280px) {
  .ac .ac-trigger {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

@media (min-width: 1536px) {
  .ac .ac-trigger {
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-size: 28px;
  }
}

.ac .ac-trigger svg {
  flex-shrink: 0;
}

.ac.is-active > .ac-header .ac-trigger svg {
  --tw-scale-y: -1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.ac .ac-panel {
  margin-top: -0.5rem;
  overflow: hidden;
  font-size: 1rem;
  line-height: 1.5rem;
  transition-property: height,visibility;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-timing-function: ease;
}

@media (min-width: 768px) {
  .ac .ac-panel {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1280px) {
  .ac .ac-panel {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1536px) {
  .ac .ac-panel {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.ac .ac-panel .ac-text {
  padding-right: 2rem;
  padding-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .ac .ac-panel .ac-text {
    padding-bottom: 1.5rem;
  }
}

@media (min-width: 1280px) {
  .ac .ac-panel .ac-text {
    padding-bottom: 1.75rem;
  }
}

@media (min-width: 1536px) {
  .ac .ac-panel .ac-text {
    padding-bottom: 2rem;
  }
}

.ac.js-enabled .ac-panel {
  visibility: hidden;
}

.ac.is-active .ac-panel {
  visibility: visible;
}

/* end accordion js */

/* form elements */

.form-input {
  width: 100%;
}

.form-input input,
.form-input textarea {
  width: 100%;
  border-radius: 0.375rem;
  border-width: 1px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgb(198 213 227 / var(--tw-border-opacity));
  min-height: 3.5rem;
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(44 62 80 / var(--tw-text-opacity));
}

@media (min-width: 768px) {
  .form-input input,
  .form-input textarea {
    min-height: 60px;
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1280px) {
  .form-input input,
  .form-input textarea {
    min-height: 4rem;
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1536px) {
  .form-input input,
  .form-input textarea {
    min-height: 68px;
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.form-input input::-moz-placeholder, .form-input textarea::-moz-placeholder {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(135 155 178 / var(--tw-text-opacity));
}

.form-input input::placeholder,
.form-input textarea::placeholder {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(135 155 178 / var(--tw-text-opacity));
}

@media (min-width: 768px) {
  .form-input input::-moz-placeholder, .form-input textarea::-moz-placeholder {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .form-input input::placeholder,
  .form-input textarea::placeholder {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1280px) {
  .form-input input::-moz-placeholder, .form-input textarea::-moz-placeholder {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .form-input input::placeholder,
  .form-input textarea::placeholder {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1536px) {
  .form-input input::-moz-placeholder, .form-input textarea::-moz-placeholder {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .form-input input::placeholder,
  .form-input textarea::placeholder {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.form-input input:focus,
.form-input textarea:focus,
.form-input input:active,
.form-input textarea:active {
  --tw-border-opacity: 1;
  border-color: rgb(52 152 219 / var(--tw-border-opacity));
}

/* Custom select */

.custom-select {
  position: relative;
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(135 155 178 / var(--tw-text-opacity));
}

@media (min-width: 768px) {
  .custom-select {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1280px) {
  .custom-select {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1536px) {
  .custom-select {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.select-button {
  display: flex;
  min-height: 3.5rem;
  width: 100%;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.375rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(198 213 227 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding: 1rem;
}

@media (min-width: 768px) {
  .select-button {
    min-height: 60px;
  }
}

@media (min-width: 1280px) {
  .select-button {
    min-height: 4rem;
  }
}

.selected-value {
  text-align: left;
}

.selected-value.selected {
  --tw-text-opacity: 1;
  color: rgb(44 62 80 / var(--tw-text-opacity));
}

.select-button:focus {
  --tw-border-opacity: 1;
  border-color: rgb(43 117 179 / var(--tw-border-opacity));
}

.arrow {
  display: inline-block;
  height: 2rem;
  width: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg_xmlns='http://www.w3.org/2000/svg'_viewBox='0_0_20_20'_fill='%23879BB2'_aria-hidden='true'%3E%3Cpath_fill-rule='evenodd'_d='M5.23_7.21a.75.75_0_011.06.02L10_11.168l3.71-3.938a.75.75_0_111.08_1.04l-4.25_4.5a.75.75_0_01-1.08_0l-4.25-4.5a.75.75_0_01.02-1.06z'_clip-rule='evenodd'_/%3E%3C/svg%3E");
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-delay: 0.3s;
  transition-duration: ease-in-out;
}

.select-dropdown {
  /*visibility: hidden;*/
  /*position: absolute;*/
  margin-top: 1.25rem;
  max-height: 200px;
  height: 64px;
  transform-origin: top;
  /*--tw-scale-y: 0;*/
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  overflow-y: auto;
  --tw-text-opacity: 1;
  /*color: rgb(44 62 80 / var(--tw-text-opacity));*/
  /*opacity: 0;*/
  --tw-shadow: 0px 4px 4px 0px #00000040;
  --tw-shadow-colored: 0px 4px 4px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  transition-property: 0.3s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-duration: ease;
  list-style: none;
  width: 100%;
  border-radius: 0.375rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(198 213 227 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.select-dropdown li:not(:last-child) {
  --tw-shadow: 0px -1px 0px 0px #e6eefa inset;
  --tw-shadow-colored: inset 0px -1px 0px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.select-dropdown li label {
  display: flex;
  width: 100%;
  cursor: pointer;
  align-items: center;
  padding: 1rem;
}

.select-dropdown::-webkit-scrollbar {
  width: 7px;
}

.select-dropdown::-webkit-scrollbar-track {
  border-radius: 25px;
  background: #f1f1f1;
}

.select-dropdown::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background: #ccc;
}

.select-dropdown li:hover,
.select-dropdown input:checked ~ label {
  --tw-bg-opacity: 1;
  background-color: rgb(230 238 250 / var(--tw-bg-opacity));
}

.select-dropdown input:focus ~ label {
  --tw-bg-opacity: 1;
  background-color: rgb(223 223 223 / var(--tw-bg-opacity));
}

.select-dropdown input[type='radio'] {
  position: absolute;
  left: 0px;
  opacity: 0;
}

.custom-select.active .arrow {
  --tw-scale-y: -1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.custom-select.active .select-dropdown {
  visibility: visible;
  --tw-scale-y: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  opacity: 1;
}

/* end Custom select */

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

.focus-within\:ring-2:focus-within {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus-within\:ring-blue-700:focus-within {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(69 179 238 / var(--tw-ring-opacity));
}

.focus-within\:ring-offset-2:focus-within {
  --tw-ring-offset-width: 2px;
}

.hover\:border-blue-800:hover {
  --tw-border-opacity: 1;
  border-color: rgb(52 152 219 / var(--tw-border-opacity));
}

.hover\:bg-blue-900:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(43 117 179 / var(--tw-bg-opacity));
}

.hover\:text-blue-700:hover {
  --tw-text-opacity: 1;
  color: rgb(69 179 238 / var(--tw-text-opacity));
}

.hover\:text-blue-800:hover {
  --tw-text-opacity: 1;
  color: rgb(52 152 219 / var(--tw-text-opacity));
}

.hover\:text-blue-900:hover {
  --tw-text-opacity: 1;
  color: rgb(43 117 179 / var(--tw-text-opacity));
}

.group:nth-child(even) .group-even\:pl-10 {
  padding-left: 2.5rem;
}

@media (min-width: 640px) {
  .sm\:flex {
    display: flex;
  }

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

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

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

  .sm\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

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

@media (min-width: 768px) {
  .md\:absolute {
    position: absolute;
  }

  .md\:bottom-\[79\%\] {
    bottom: 79%;
  }

  .md\:right-\[0\] {
    right: 0;
  }

  .md\:top-\[0\] {
    top: 0;
  }

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

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

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

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

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

  .md\:mt-2 {
    margin-top: 0.5rem;
  }

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

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

  .md\:mt-5 {
    margin-top: 1.25rem;
  }

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

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

  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:h-12 {
    height: 3rem;
  }

  .md\:h-7 {
    height: 1.75rem;
  }

  .md\:h-\[116px\] {
    height: 116px;
  }

  .md\:h-\[120px\] {
    height: 120px;
  }

  .md\:h-\[180px\] {
    height: 180px;
  }

  .md\:h-\[196px\] {
    height: 196px;
  }

  .md\:h-\[200px\] {
    height: 200px;
  }
  .md\:h-\[385px\] {
    height: 385px;
  }

  .md\:h-\[440px\] {
    height: 440px;
  }

  .md\:h-\[492px\] {
    height: 492px;
  }

  .md\:h-\[68px\] {
    height: 68px;
  }

  .md\:h-\[72px\] {
    height: 72px;
  }

  .md\:h-\[76px\] {
    height: 76px;
  }

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

  .md\:w-12 {
    width: 3rem;
  }

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

  .md\:w-\[116px\] {
    width: 116px;
  }

  .md\:w-\[52px\] {
    width: 52px;
  }

  .md\:w-\[68px\] {
    width: 68px;
  }

  .md\:w-\[72px\] {
    width: 72px;
  }

  .md\:w-\[76px\] {
    width: 76px;
  }

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

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

  .md\:w-px {
    width: 1px;
  }

  .md\:max-w-\[260px\] {
    max-width: 260px;
  }

  .md\:max-w-\[400px\] {
    max-width: 400px;
  }

  .md\:max-w-\[65\%\] {
    max-width: 65%;
  }

  .md\:max-w-\[704px\] {
    max-width: 704px;
  }

  .md\:rotate-0 {
    --tw-rotate: 0deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

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

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

  .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\:items-center {
    align-items: center;
  }

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

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

  .md\:gap-1 {
    gap: 0.25rem;
  }

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

  .md\:gap-2 {
    gap: 0.5rem;
  }

  .md\:gap-3 {
    gap: 0.75rem;
  }

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

  .md\:gap-5 {
    gap: 1.25rem;
  }

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

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

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

  .md\:gap-\[60px\] {
    gap: 60px;
  }

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

  .md\:p-8 {
    padding: 2rem;
  }

  .md\:p-9 {
    padding: 2.25rem;
  }

  .md\:p-\[60px\] {
    padding: 60px;
  }

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

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

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

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

  .md\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

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

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

  .md\:pr-20 {
    padding-right: 5rem;
  }

  .md\:pr-\[76px\] {
    padding-right: 76px;
  }

  .md\:pr-\[88px\] {
    padding-right: 88px;
  }

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

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

  .md\:text-\[22px\] {
    font-size: 22px;
  }

  .md\:text-\[32px\] {
    font-size: 32px;
  }

  .md\:text-\[42px\] {
    font-size: 42px;
  }

  .md\:text-\[56px\] {
    font-size: 56px;
  }

  .md\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

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

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

  .md\:odd\:flex-row-reverse:nth-child(odd) {
    flex-direction: row-reverse;
  }
}

@media (min-width: 1024px) {
  .lg\:bottom-\[62\%\] {
    bottom: 62%;
  }

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

  .lg\:ml-10 {
    margin-left: 2.5rem;
  }

  .lg\:mr-\[15vw\] {
    margin-right: 15vw;
  }

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

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

  .lg\:block {
    display: block;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:h-\[200px\] {
    height: 200px;
  }

  .lg\:h-\[492px\] {
    height: 492px;
  }

  .lg\:h-\[600px\] {
    height: 600px;
  }

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

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

  .lg\:max-w-\[584px\] {
    max-width: 584px;
  }

  .lg\:max-w-\[704px\] {
    max-width: 704px;
  }

  .lg\:max-w-\[75\%\] {
    max-width: 75%;
  }

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

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

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

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

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

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

  .lg\:gap-10 {
    gap: 2.5rem;
  }

  .lg\:gap-8 {
    gap: 2rem;
  }

  .lg\:gap-\[80px\] {
    gap: 80px;
  }

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

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

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

  .lg\:pl-0 {
    padding-left: 0px;
  }

  .lg\:text-left {
    text-align: left;
  }

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

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

@media (min-width: 1280px) {
  .xl\:bottom-\[70\%\] {
    bottom: 70%;
  }

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

  .xl\:-mb-14 {
    margin-bottom: -3.5rem;
  }

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

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

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

  .xl\:mt-14 {
    margin-top: 3.5rem;
  }

  .xl\:mt-20 {
    margin-top: 5rem;
  }

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

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

  .xl\:mt-5 {
    margin-top: 1.25rem;
  }

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

  .xl\:mt-8 {
    margin-top: 2rem;
  }

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

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

  .xl\:block {
    display: block;
  }

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

  .xl\:h-14 {
    height: 3.5rem;
  }

  .xl\:h-20 {
    height: 5rem;
  }

  .xl\:h-8 {
    height: 2rem;
  }

  .xl\:h-\[128px\] {
    height: 128px;
  }

  .xl\:h-\[140px\] {
    height: 140px;
  }

  .xl\:h-\[205px\] {
    height: 205px;
  }

  .xl\:h-\[220px\] {
    height: 220px;
  }

  .xl\:h-\[228px\] {
    height: 228px;
  }

  .xl\:h-\[308px\] {
    height: 308px;
  }

  .xl\:h-\[512px\] {
    height: 512px;
  }

  .xl\:h-\[516px\] {
    height: 516px;
  }

  .xl\:h-\[520px\] {
    height: 520px;
  }

  .xl\:h-\[52px\] {
    height: 52px;
  }

  .xl\:h-\[600px\] {
    height: 600px;
  }

  .xl\:h-\[68px\] {
    height: 68px;
  }

  .xl\:h-\[88px\] {
    height: 88px;
  }

  .xl\:max-h-\[520px\] {
    max-height: 520px;
  }

  .xl\:w-20 {
    width: 5rem;
  }

  .xl\:w-\[128px\] {
    width: 128px;
  }

  .xl\:w-\[64px\] {
    width: 64px;
  }

  .xl\:w-\[88px\] {
    width: 88px;
  }

  .xl\:max-w-\[1920px\] {
    max-width: 1920px;
  }

  .xl\:max-w-\[641px\] {
    max-width: 641px;
  }

  .xl\:max-w-\[736px\] {
    max-width: 736px;
  }

  .xl\:max-w-\[756px\] {
    max-width: 756px;
  }

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

  .xl\:gap-10 {
    gap: 2.5rem;
  }

  .xl\:gap-2 {
    gap: 0.5rem;
  }

  .xl\:gap-20 {
    gap: 5rem;
  }

  .xl\:gap-3 {
    gap: 0.75rem;
  }

  .xl\:gap-4 {
    gap: 1rem;
  }

  .xl\:gap-5 {
    gap: 1.25rem;
  }

  .xl\:gap-6 {
    gap: 1.5rem;
  }

  .xl\:gap-7 {
    gap: 1.75rem;
  }

  .xl\:gap-9 {
    gap: 2.25rem;
  }

  .xl\:gap-\[100px\] {
    gap: 100px;
  }

  .xl\:gap-\[30px\] {
    gap: 30px;
  }

  .xl\:gap-\[96px\] {
    gap: 96px;
  }

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

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

  .xl\:p-10 {
    padding: 2.5rem;
  }

  .xl\:p-7 {
    padding: 1.75rem;
  }

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

  .xl\:px-7 {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .xl\:px-9 {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

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

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

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

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

  .xl\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .xl\:py-\[35px\] {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .xl\:py-\[52px\] {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .xl\:py-\[60px\] {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .xl\:py-\[80px\] {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .xl\:pb-\[80px\] {
    padding-bottom: 80px;
  }

  .xl\:pl-\[60px\] {
    padding-left: 60px;
  }

  .xl\:pl-\[calc\(\(100vw_-_1232px\)_\/_2\)\] {
    padding-left: calc((100vw - 1232px) / 2);
  }

  .xl\:pr-\[100px\] {
    padding-right: 100px;
  }

  .xl\:pr-\[192px\] {
    padding-right: 192px;
  }

  .xl\:pr-\[60px\] {
    padding-right: 60px;
  }

  .xl\:pr-\[88px\] {
    padding-right: 88px;
  }

  .xl\:pt-20 {
    padding-top: 5rem;
  }

  .xl\:pt-\[104px\] {
    padding-top: 104px;
  }

  .xl\:text-left {
    text-align: left;
  }

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

  .xl\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .xl\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .xl\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }

  .xl\:text-\[15px\] {
    font-size: 15px;
  }

  .xl\:text-\[28px\] {
    font-size: 28px;
  }

  .xl\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

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

  .group:nth-child(even) .xl\:group-even\:pl-2 {
    padding-left: 0.5rem;
  }
}

@media (min-width: 1536px) {
  .\32xl\:my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

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

  .\32xl\:mt-2 {
    margin-top: 0.5rem;
  }

  .\32xl\:mt-20 {
    margin-top: 5rem;
  }

  .\32xl\:mt-4 {
    margin-top: 1rem;
  }

  .\32xl\:mt-6 {
    margin-top: 1.5rem;
  }

  .\32xl\:mt-8 {
    margin-top: 2rem;
  }

  .\32xl\:mt-9 {
    margin-top: 2.25rem;
  }

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

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

  .\32xl\:h-14 {
    height: 3.5rem;
  }

  .\32xl\:h-9 {
    height: 2.25rem;
  }

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

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

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

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

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

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

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

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

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

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

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

  .\32xl\:max-h-\[680px\] {
    max-height: 680px;
  }

  .\32xl\:w-14 {
    width: 3.5rem;
  }

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

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

  .\32xl\:max-w-\[1000px\] {
    max-width: 1000px;
  }

  .\32xl\:max-w-\[1260px\] {
    max-width: 1260px;
  }

  .\32xl\:max-w-\[870px\] {
    max-width: 870px;
  }

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

  .\32xl\:gap-10 {
    gap: 2.5rem;
  }

  .\32xl\:gap-4 {
    gap: 1rem;
  }

  .\32xl\:gap-7 {
    gap: 1.75rem;
  }

  .\32xl\:gap-\[108px\] {
    gap: 108px;
  }

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

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

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

  .\32xl\:px-9 {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

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

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

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

  .\32xl\:py-\[100\] {
    padding-top: 100;
    padding-bottom: 100;
  }

  .\32xl\:py-\[100px\] {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .\32xl\:py-\[120\] {
    padding-top: 120;
    padding-bottom: 120;
  }

  .\32xl\:py-\[120px\] {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .\32xl\:py-\[60px\] {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .\32xl\:pb-20 {
    padding-bottom: 5rem;
  }

  .\32xl\:pl-\[calc\(\(100vw_-_1498px\)_\/_2\)\] {
    padding-left: calc((100vw - 1498px) / 2);
  }

  .\32xl\:pr-\[10\%\] {
    padding-right: 10%;
  }

  .\32xl\:pr-\[170px\] {
    padding-right: 170px;
  }

  .\32xl\:pr-\[260px\] {
    padding-right: 260px;
  }

  .\32xl\:pr-\[92px\] {
    padding-right: 92px;
  }

  .\32xl\:pt-\[100px\] {
    padding-top: 100px;
  }

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

  .\32xl\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .\32xl\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .\32xl\:text-\[28px\] {
    font-size: 28px;
  }

  .\32xl\:text-\[52px\] {
    font-size: 52px;
  }

  .\32xl\:text-\[64px\] {
    font-size: 64px;
  }

  .\32xl\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

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

.\[\&\>\*\:nth-child\(3\)\>\.absolute\]\:hidden>*:nth-child(3)>.absolute {
  display: none;
}

@media (min-width: 768px) {
  .\[\&\>\*\:nth-child\(3\)\>\.absolute\]\:md\:inline-block>*:nth-child(3)>.absolute {
    display: inline-block;
  }
}
@media only screen and (max-width: 768px){
  .flex-direction-col{
    flex-direction: column;
  }
}