/*
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)
2. [UnoCSS]: allow to override the default border color with css var `--un-default-border-color`
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: var(--un-default-border-color, #e5e7eb); /* 2 */
}

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

html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
}

/*
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]) {
  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. 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-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;
}

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

/*
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::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 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;
}


*,::before,::after{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgba(0,0,0,0);--un-ring-shadow:0 0 rgba(0,0,0,0);--un-shadow-inset: ;--un-shadow:0 0 rgba(0,0,0,0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(147,197,253,0.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: ;}::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgba(0,0,0,0);--un-ring-shadow:0 0 rgba(0,0,0,0);--un-shadow-inset: ;--un-shadow:0 0 rgba(0,0,0,0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(147,197,253,0.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: ;}.absolute{position:absolute;}.fixed{position:fixed;}.relative{position:relative;}.inset-0{inset:0;}.z-\[-1\]{z-index:-1;}.z-10{z-index:10;}.z-9999{z-index:9999;}.grid{display:grid;}.col-span-3{grid-column:span 3/span 3;}.col-span-4{grid-column:span 4/span 4;}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr));}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr));}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr));}.float-right{float:right;}.m-auto{margin:auto;}.mx-10px{margin-left:10px;margin-right:10px;}.mx-330px{margin-left:330px;margin-right:330px;}.mx-auto{margin-left:auto;margin-right:auto;}.my-20px{margin-top:20px;margin-bottom:20px;}.my-30px{margin-top:30px;margin-bottom:30px;}.my-90px{margin-top:90px;margin-bottom:90px;}.mb-10px{margin-bottom:10px;}.mb-11px{margin-bottom:11px;}.mb-128px{margin-bottom:128px;}.mb-12px{margin-bottom:12px;}.mb-16px{margin-bottom:16px;}.mb-20px{margin-bottom:20px;}.mb-30px{margin-bottom:30px;}.mb-33px{margin-bottom:33px;}.mb-48px{margin-bottom:48px;}.mb-50px{margin-bottom:50px;}.mb-51px{margin-bottom:51px;}.mb-58px{margin-bottom:58px;}.mb-64px{margin-bottom:64px;}.mb-67px{margin-bottom:67px;}.mb-70px{margin-bottom:70px;}.mb-80px{margin-bottom:80px;}.mb-9px{margin-bottom:9px;}.ml-3{margin-left:0.75rem;}.ml-33px{margin-left:33px;}.ml-4{margin-left:1rem;}.ml-40px{margin-left:40px;}.ml-6{margin-left:1.5rem;}.mr-20px{margin-right:20px;}.mr-40px{margin-right:40px;}.mr-8px{margin-right:8px;}.mt-1{margin-top:0.25rem;}.mt-10{margin-top:2.5rem;}.mt-100px{margin-top:100px;}.mt-10px{margin-top:10px;}.mt-16{margin-top:4rem;}.mt-16px{margin-top:16px;}.mt-18px{margin-top:18px;}.mt-2{margin-top:0.5rem;}.mt-20px{margin-top:20px;}.mt-30px{margin-top:30px;}.mt-35px{margin-top:35px;}.mt-4{margin-top:1rem;}.mt-45px{margin-top:45px;}.mt-48px{margin-top:48px;}.mt-50px{margin-top:50px;}.mt-6{margin-top:1.5rem;}.inline{display:inline;}.block,.group:hover .group-hover\:block{display:block;}.hidden,.group:hover .group-hover\:hidden{display:none;}.h-1\.04vw{height:1.04vw;}.h-1\.56vw{height:1.56vw;}.h-10{height:2.5rem;}.h-10\.31vw{height:10.31vw;}.h-10\.36vw{height:10.36vw;}.h-10\.42vw{height:10.42vw;}.h-100\%,.h-full{height:100%;}.h-12\.51vw{height:12.51vw;}.h-2\.08vw{height:2.08vw;}.h-2\.6vw{height:2.6vw;}.h-2\.76vw{height:2.76vw;}.h-208px{height:208px;}.h-20px{height:20px;}.h-20vw{height:20vw;}.h-3\.08vw{height:3.08vw;}.h-3\.13vw{height:3.13vw;}.h-3\.65vw{height:3.65vw;}.h-39\.6px{height:39.6px;}.h-4{height:1rem;}.h-4\.17vw{height:4.17vw;}.h-45{height:11.25rem;}.h-5{height:1.25rem;}.h-5\.21vw{height:5.21vw;}.h-50px{height:50px;}.h-54px{height:54px;}.h-591px{height:591px;}.h-7\.29vw{height:7.29vw;}.h-7\.76vw{height:7.76vw;}.h-7\.81vw{height:7.81vw;}.h-8{height:2rem;}.max-h-500px{max-height:500px;}.max-w-1841px{max-width:1841px;}.max-w-2xl{max-width:42rem;}.max-w-4xl{max-width:56rem;}.max-w-624px{max-width:624px;}.max-w-700px{max-width:700px;}.max-w-7xl{max-width:80rem;}.max-w-88px{max-width:88px;}.max-w-xl{max-width:36rem;}.w-10{width:2.5rem;}.w-100\%,.w-full{width:100%;}.w-100px{width:100px;}.w-30{width:7.5rem;}.w-36px{width:36px;}.w-4{width:1rem;}.w-5{width:1.25rem;}.w-50\%{width:50%;}.w-60{width:15rem;}.w-90\%{width:90%;}.flex{display:flex;}.flex-1{flex:1 1 0%;}.flex-shrink-0{flex-shrink:0;}.flex-row-reverse{flex-direction:row-reverse;}.flex-col{flex-direction:column;}.flex-col-reverse{flex-direction:column-reverse;}.flex-wrap{flex-wrap:wrap;}.-translate-y-80px{--un-translate-y:-80px;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.group:hover .group-hover\:scale-102{--un-scale-x:1.02;--un-scale-y:1.02;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.cursor-pointer{cursor:pointer;}.appearance-none{-webkit-appearance:none;appearance:none;}.items-end{align-items:flex-end;}.items-center{align-items:center;}.justify-center{justify-content:center;}.justify-between{justify-content:space-between;}.justify-evenly{justify-content:space-evenly;}.gap-2{gap:0.5rem;}.gap-3{gap:0.75rem;}.gap-6{gap:1.5rem;}.gap-x-4{column-gap:1rem;}.gap-x-8{column-gap:2rem;}.gap-y-10{row-gap:2.5rem;}.gap-y-6{row-gap:1.5rem;}.space-x-4>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(1rem * calc(1 - var(--un-space-x-reverse)));margin-right:calc(1rem * var(--un-space-x-reverse));}.space-y-10>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-top:calc(2.5rem * calc(1 - var(--un-space-y-reverse)));margin-bottom:calc(2.5rem * var(--un-space-y-reverse));}.space-y-6>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-top:calc(1.5rem * calc(1 - var(--un-space-y-reverse)));margin-bottom:calc(1.5rem * var(--un-space-y-reverse));}.space-y-8>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-top:calc(2rem * calc(1 - var(--un-space-y-reverse)));margin-bottom:calc(2rem * var(--un-space-y-reverse));}.divide-gray-200>:not([hidden])~:not([hidden]){--un-divide-opacity:1;border-color:rgba(229,231,235,var(--un-divide-opacity));}.overflow-auto{overflow:auto;}.overflow-hidden{overflow:hidden;}.overflow-x-auto{overflow-x:auto;}.overflow-y-auto{overflow-y:auto;}.border,.border-1{border-width:1px;}.border-2{border-width:2px;}.hover\:border-0:hover{border-width:0;}.border-x-8px{border-left-width:8px;border-right-width:8px;}.border-b,.border-b-1{border-bottom-width:1px;}.border-b-2{border-bottom-width:2px;}.border-l{border-left-width:1px;}.border-t{border-top-width:1px;}.hover\:border-b:hover{border-bottom-width:1px;}.\!border-black{--un-border-opacity:1 !important;border-color:rgba(0,0,0,var(--un-border-opacity)) !important;}.\!border-indigo-600{--un-border-opacity:1 !important;border-color:rgba(79,70,229,var(--un-border-opacity)) !important;}.border-\#000{--un-border-opacity:1;border-color:rgba(0,0,0,var(--un-border-opacity));}.border-\#ccc{--un-border-opacity:1;border-color:rgba(204,204,204,var(--un-border-opacity));}.border-\#fff{--un-border-opacity:1;border-color:rgba(255,255,255,var(--un-border-opacity));}.border-gray{--un-border-opacity:1;border-color:rgba(156,163,175,var(--un-border-opacity));}.border-gray-200{--un-border-opacity:1;border-color:rgba(229,231,235,var(--un-border-opacity));}.border-gray-3,.border-gray-300{--un-border-opacity:1;border-color:rgba(209,213,219,var(--un-border-opacity));}.focus\:border-\#333:focus{--un-border-opacity:1;border-color:rgba(51,51,51,var(--un-border-opacity));}.rounded{border-radius:0.25rem;}.rounded-2{border-radius:0.5rem;}.rounded-md{border-radius:0.375rem;}.bg-\#000{--un-bg-opacity:1;background-color:rgba(0,0,0,var(--un-bg-opacity));}.bg-\#f8f8f8{--un-bg-opacity:1;background-color:rgba(248,248,248,var(--un-bg-opacity));}.bg-\#FDF06F{--un-bg-opacity:1;background-color:rgba(253,240,111,var(--un-bg-opacity));}.bg-\#fff,.bg-white{--un-bg-opacity:1;background-color:rgba(255,255,255,var(--un-bg-opacity));}.hover\:bg-\#000:hover{--un-bg-opacity:1;background-color:rgba(0,0,0,var(--un-bg-opacity));}.hover\:bg-\#fff:hover{--un-bg-opacity:1;background-color:rgba(255,255,255,var(--un-bg-opacity));}.hover\:bg-gray-50:hover{--un-bg-opacity:1;background-color:rgba(249,250,251,var(--un-bg-opacity));}.bg-\[url\(\'\/img\/banner\.jpg\'\)\]{--un-url:url('/img/banner.jpg');background-image:var(--un-url);}.bg-cover{background-size:cover;}.bg-center{background-position:center;}.object-cover{object-fit:cover;}.object-center{object-position:center;}.p-0{padding:0;}.p-10px{padding:10px;}.p-16px{padding:16px;}.p-17px{padding:17px;}.p-2{padding:0.5rem;}.p-20px{padding:20px;}.p-30px{padding:30px;}.p-62px{padding:62px;}.p-6px{padding:6px;}.px-12\.5px{padding-left:12.5px;padding-right:12.5px;}.px-12px{padding-left:12px;padding-right:12px;}.px-16px{padding-left:16px;padding-right:16px;}.px-17px{padding-left:17px;padding-right:17px;}.px-18px{padding-left:18px;padding-right:18px;}.px-2{padding-left:0.5rem;padding-right:0.5rem;}.px-2\.5{padding-left:0.625rem;padding-right:0.625rem;}.px-20px{padding-left:20px;padding-right:20px;}.px-24px{padding-left:24px;padding-right:24px;}.px-3{padding-left:0.75rem;padding-right:0.75rem;}.px-30px{padding-left:30px;padding-right:30px;}.px-33px{padding-left:33px;padding-right:33px;}.px-36px{padding-left:36px;padding-right:36px;}.px-37px{padding-left:37px;padding-right:37px;}.px-4{padding-left:1rem;padding-right:1rem;}.px-48px{padding-left:48px;padding-right:48px;}.px-5{padding-left:1.25rem;padding-right:1.25rem;}.px-50px{padding-left:50px;padding-right:50px;}.px-8{padding-left:2rem;padding-right:2rem;}.px-89px{padding-left:89px;padding-right:89px;}.py-10px{padding-top:10px;padding-bottom:10px;}.py-12px{padding-top:12px;padding-bottom:12px;}.py-14px{padding-top:14px;padding-bottom:14px;}.py-15px{padding-top:15px;padding-bottom:15px;}.py-16{padding-top:4rem;padding-bottom:4rem;}.py-16px{padding-top:16px;padding-bottom:16px;}.py-18px{padding-top:18px;padding-bottom:18px;}.py-2{padding-top:0.5rem;padding-bottom:0.5rem;}.py-20px{padding-top:20px;padding-bottom:20px;}.py-22px{padding-top:22px;padding-bottom:22px;}.py-27px{padding-top:27px;padding-bottom:27px;}.py-3{padding-top:0.75rem;padding-bottom:0.75rem;}.py-30px{padding-top:30px;padding-bottom:30px;}.py-45px{padding-top:45px;padding-bottom:45px;}.py-6px{padding-top:6px;padding-bottom:6px;}.py-7px{padding-top:7px;padding-bottom:7px;}.py-8{padding-top:2rem;padding-bottom:2rem;}.pb-104px{padding-bottom:104px;}.pb-10px{padding-bottom:10px;}.pb-123px{padding-bottom:123px;}.pb-134px{padding-bottom:134px;}.pb-15px{padding-bottom:15px;}.pb-192px{padding-bottom:192px;}.pb-20px{padding-bottom:20px;}.pb-24{padding-bottom:6rem;}.pb-300px{padding-bottom:300px;}.pb-30px{padding-bottom:30px;}.pb-xl{padding-bottom:1.25rem;}.pl-10px{padding-left:10px;}.pl-16px{padding-left:16px;}.pl-2vw{padding-left:2vw;}.pl-30px{padding-left:30px;}.pl-4{padding-left:1rem;}.pr-0{padding-right:0;}.pr-16px{padding-right:16px;}.pr-20px{padding-right:20px;}.pr-2vw{padding-right:2vw;}.pr-5px{padding-right:5px;}.pr-6px{padding-right:6px;}.pt-112px{padding-top:112px;}.pt-12{padding-top:3rem;}.pt-17px{padding-top:17px;}.pt-20px{padding-top:20px;}.pt-40px{padding-top:40px;}.pt-45px{padding-top:45px;}.pt-50px{padding-top:50px;}.pt-90px{padding-top:90px;}.text-center{text-align:center;}.text-left{text-align:left;}.text-end{text-align:end;}.text-12px{font-size:12px;}.text-14px{font-size:14px;}.text-15px{font-size:15px;}.text-17px{font-size:17px;}.text-18px{font-size:18px;}.text-20px{font-size:20px;}.text-22\.5px{font-size:22.5px;}.text-24px{font-size:24px;}.text-25px{font-size:25px;}.text-26px{font-size:26px;}.text-27px{font-size:27px;}.text-28px{font-size:28px;}.text-2xl{font-size:1.5rem;line-height:2rem;}.text-30px{font-size:30px;}.text-35px{font-size:35px;}.text-36px{font-size:36px;}.text-3xl{font-size:1.875rem;line-height:2.25rem;}.text-40px{font-size:40px;}.text-4xl{font-size:2.25rem;line-height:2.5rem;}.text-50px{font-size:50px;}.text-52px{font-size:52px;}.text-5xl{font-size:3rem;line-height:1;}.text-8px{font-size:8px;}.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-400{font-weight:400;}.font-600{font-weight:600;}.font-700,.font-bold{font-weight:700;}.font-medium{font-weight:500;}.leading-39\.6px{line-height:39.6px;}.leading-54px{line-height:54px;}.tracking-tight{letter-spacing:-0.025em;}.\!text-indigo-600{--un-text-opacity:1 !important;color:rgba(79,70,229,var(--un-text-opacity)) !important;}.text-\#000,.text-black{--un-text-opacity:1;color:rgba(0,0,0,var(--un-text-opacity));}.text-\#333{--un-text-opacity:1;color:rgba(51,51,51,var(--un-text-opacity));}.text-\#bfbfbf{--un-text-opacity:1;color:rgba(191,191,191,var(--un-text-opacity));}.text-\#f00{--un-text-opacity:1;color:rgba(255,0,0,var(--un-text-opacity));}.text-\#fff{--un-text-opacity:1;color:rgba(255,255,255,var(--un-text-opacity));}.text-gray-300{--un-text-opacity:1;color:rgba(209,213,219,var(--un-text-opacity));}.text-gray-4,.text-gray-400{--un-text-opacity:1;color:rgba(156,163,175,var(--un-text-opacity));}.text-gray-5,.text-gray-500{--un-text-opacity:1;color:rgba(107,114,128,var(--un-text-opacity));}.text-gray-600{--un-text-opacity:1;color:rgba(75,85,99,var(--un-text-opacity));}.text-gray-7,.text-gray-700{--un-text-opacity:1;color:rgba(55,65,81,var(--un-text-opacity));}.text-gray-900{--un-text-opacity:1;color:rgba(17,24,39,var(--un-text-opacity));}.hover\:text-\#000:hover{--un-text-opacity:1;color:rgba(0,0,0,var(--un-text-opacity));}.hover\:text-\#fff:hover{--un-text-opacity:1;color:rgba(255,255,255,var(--un-text-opacity));}.hover\:text-gray-500:hover{--un-text-opacity:1;color:rgba(107,114,128,var(--un-text-opacity));}.hover\:text-gray-700:hover{--un-text-opacity:1;color:rgba(55,65,81,var(--un-text-opacity));}.underline{text-decoration-line:underline;}.hover\:underline:hover{text-decoration-line:underline;}.hover\:decoration-none:hover{text-decoration:none;}.opacity-50{opacity:0.5;}.hover\:opacity-100:hover{opacity:1;}.shadow-md{--un-shadow:var(--un-shadow-inset) 0 4px 6px -1px var(--un-shadow-color, rgba(0,0,0,0.1)),var(--un-shadow-inset) 0 2px 4px -2px var(--un-shadow-color, rgba(0,0,0,0.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.shadow-sm{--un-shadow:var(--un-shadow-inset) 0 1px 2px 0 var(--un-shadow-color, rgba(0,0,0,0.05));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.outline-none{outline:2px solid transparent;outline-offset:2px;}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px;}.\!ring-indigo-500{--un-ring-opacity:1 !important;--un-ring-color:rgba(99,102,241,var(--un-ring-opacity)) !important;}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}@media (min-width: 481px){.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr));}.sm\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr));}.sm\:mt-0{margin-top:0;}.sm\:mt-16{margin-top:4rem;}.sm\:block{display:block;}.sm\:flex-col{flex-direction:column;}.sm\:items-start{align-items:flex-start;}.sm\:border{border-width:1px;}.sm\:rounded-lg{border-radius:0.5rem;}.sm\:p-4{padding:1rem;}.sm\:p-6{padding:1.5rem;}.sm\:px-0{padding-left:0;padding-right:0;}.sm\:px-2{padding-left:0.5rem;padding-right:0.5rem;}.sm\:px-4{padding-left:1rem;padding-right:1rem;}.sm\:py-24{padding-top:6rem;padding-bottom:6rem;}.sm\:text-3xl{font-size:1.875rem;line-height:2.25rem;}.sm\:text-5xl{font-size:3rem;line-height:1;}}@media (min-width: 601px){.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr));}.md\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr));}.md\:mx-159px{margin-left:159px;margin-right:159px;}.md\:mx-75px{margin-left:75px;margin-right:75px;}.md\:mr-40px{margin-right:40px;}.md\:mt-0{margin-top:0;}.md\:max-w-402px{max-width:402px;}.md\:max-w-521px{max-width:521px;}.md\:max-w-70\%{max-width:70%;}.md\:w-25\%{width:25%;}.md\:w-32\%{width:32%;}.md\:w-40\%{width:40%;}.md\:w-411px{width:411px;}.md\:w-45\%{width:45%;}.md\:w-48\%{width:48%;}.md\:w-49\%{width:49%;}.md\:w-50\%{width:50%;}.md\:w-60\%{width:60%;}.md\:w-70\%{width:70%;}.md\:flex-row{flex-direction:row;}.md\:border-r{border-right-width:1px;}.md\:pb-74px{padding-bottom:74px;}.md\:pl-119px{padding-left:119px;}.md\:pl-12px{padding-left:12px;}.md\:pl-60px{padding-left:60px;}.md\:pl-70px{padding-left:70px;}.md\:pr-119px{padding-right:119px;}.md\:pr-12px{padding-right:12px;}.md\:pr-60px{padding-right:60px;}.md\:text-27px{font-size:27px;}.md\:text-36px{font-size:36px;}.md\:text-52px{font-size:52px;}}@media (min-width: 821px){.lg\:grid{display:grid;}.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr));}.lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr));}.lg\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr));}.lg\:mb-0{margin-bottom:0;}.lg\:mb-223px{margin-bottom:223px;}.lg\:ml-20px{margin-left:20px;}.lg\:ml-25px{margin-left:25px;}.lg\:mr-33px{margin-right:33px;}.lg\:mt-0{margin-top:0;}.lg\:block{display:block;}.lg\:hidden{display:none;}.lg\:max-w-4xl{max-width:56rem;}.lg\:max-w-500px{max-width:500px;}.lg\:max-w-none{max-width:none;}.lg\:w-30\%{width:30%;}.lg\:w-33\%{width:33%;}.lg\:w-35\%{width:35%;}.lg\:w-50\%{width:50%;}.lg\:w-80\%{width:80%;}.lg\:flex-row{flex-direction:row;}.lg\:items-start{align-items:flex-start;}.lg\:gap-x-8{column-gap:2rem;}.lg\:px-0{padding-left:0;padding-right:0;}.lg\:px-50px{padding-left:50px;padding-right:50px;}.lg\:px-8{padding-left:2rem;padding-right:2rem;}.lg\:pl-120px{padding-left:120px;}.lg\:pr-120px{padding-right:120px;}.lg\:text-18px{font-size:18px;}}@media (min-width: 1281px){.xl\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr));}.xl\:ml-50px{margin-left:50px;}.xl\:block{display:block;}.xl\:hidden{display:none;}.xl\:max-w-55\%{max-width:55%;}.xl\:w-45\%{width:45%;}.xl\:flex-row{flex-direction:row;}.xl\:justify-end{justify-content:flex-end;}}@media (min-width: 1472px){.\32 xl\:mr-20px{margin-right:20px;}.\32 xl\:w-20\%{width:20%;}.\32 xl\:w-80\%{width:80%;}.\32 xl\:text-100px{font-size:100px;}}
