/*
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: ;}.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;}}.absolute{position:absolute;}.fixed{position:fixed;}.relative{position:relative;}.sticky{position:sticky;}.static{position:static;}.inset-0{inset:0;}.-bottom-\[54px\]{bottom:-54px;}.bottom-\[0\.42\%\]{bottom:0.42%;}.bottom-\[0\%\]{bottom:0%;}.bottom-\[11\.25\%\]{bottom:11.25%;}.bottom-\[16px\]{bottom:16px;}.bottom-\[20\%\]{bottom:20%;}.bottom-\[21\.43\%\]{bottom:21.43%;}.bottom-\[25\%\]{bottom:25%;}.bottom-\[29\.17\%\]{bottom:29.17%;}.bottom-\[34\.57\%\]{bottom:34.57%;}.bottom-\[58\.33\%\]{bottom:58.33%;}.bottom-\[6\.25\%\]{bottom:6.25%;}.bottom-\[65\.43\%\]{bottom:65.43%;}.bottom-\[74\.07\%\]{bottom:74.07%;}.bottom-0{bottom:0;}.bottom-2{bottom:0.5rem;}.bottom-50\%{bottom:50%;}.left-\[-16\.79\%\]{left:-16.79%;}.left-\[0\%\]{left:0%;}.left-\[10\%\]{left:10%;}.left-\[100\%\]{left:100%;}.left-\[118\.50px\]{left:118.50px;}.left-\[20\%\]{left:20%;}.left-\[21\.43\%\]{left:21.43%;}.left-\[219\.58px\]{left:219.58px;}.left-\[22\.03\%\]{left:22.03%;}.left-\[25\%\]{left:25%;}.left-\[28\.96\%\]{left:28.96%;}.left-\[29\.17\%\]{left:29.17%;}.left-\[33\.42\%\]{left:33.42%;}.left-\[54\%\]{left:54%;}.left-\[58\.33\%\]{left:58.33%;}.left-\[6\.25\%\]{left:6.25%;}.left-\[68\%\]{left:68%;}.left-\[84\%\]{left:84%;}.left-\[9\.07\%\]{left:9.07%;}.left-0{left:0;}.left-1{left:0.25rem;}.right-\[-100\%\]{right:-100%;}.right-\[0\%\]{right:0%;}.right-\[10\%\]{right:10%;}.right-\[20\%\]{right:20%;}.right-\[21\.43\%\]{right:21.43%;}.right-\[22\.03\%\]{right:22.03%;}.right-\[25\%\]{right:25%;}.right-\[29\.17\%\]{right:29.17%;}.right-\[40px\]{right:40px;}.right-\[50\.25\%\]{right:50.25%;}.right-\[57\.18\%\]{right:57.18%;}.right-\[6\.25\%\]{right:6.25%;}.right-0{right:0;}.right-2{right:0.5rem;}.top-\[-1\.23px\]{top:-1.23px;}.top-\[-5\.74\%\]{top:-5.74%;}.top-\[0\%\]{top:0%;}.top-\[10\%\]{top:10%;}.top-\[20\%\]{top:20%;}.top-\[21\.43\%\]{top:21.43%;}.top-\[25\%\]{top:25%;}.top-\[27\%\]{top:27%;}.top-\[29\.17\%\]{top:29.17%;}.top-\[3\.44px\]{top:3.44px;}.top-\[36\%\]{top:36%;}.top-\[50\%\],.top-1\/2{top:50%;}.top-\[6\.25\%\]{top:6.25%;}.top-\[72\%\]{top:72%;}.top-\[8\.64\%\]{top:8.64%;}.top-\[8\.75\%\]{top:8.75%;}.top-\[9\.88\%\]{top:9.88%;}.top-\[93px\]{top:93px;}.top-0{top:0;}.top-1{top:0.25rem;}.top-12{top:3rem;}.top-13{top:3.25rem;}.top-2{top:0.5rem;}.top-px{top:1px;}.z-\[1\]{z-index:1;}.z-\[1000\]{z-index:1000;}.z-\[1001\]{z-index:1001;}.z-\[999\],.z-999{z-index:999;}.z-99{z-index:99;}.grid{display:grid;}.col-span-2{grid-column:span 2/span 2;}.col-span-3{grid-column:span 3/span 3;}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr));}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr));}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr));}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr));}.grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr));}.grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr));}.grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr));}.grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr));}.m-2{margin:0.5rem;}.mx-0{margin-left:0;margin-right:0;}.mx-auto{margin-left:auto;margin-right:auto;}.my-\[16px\]{margin-top:16px;margin-bottom:16px;}.my-\[32px\]{margin-top:32px;margin-bottom:32px;}.my-10{margin-top:2.5rem;margin-bottom:2.5rem;}.my-2{margin-top:0.5rem;margin-bottom:0.5rem;}.my-4{margin-top:1rem;margin-bottom:1rem;}.my-6{margin-top:1.5rem;margin-bottom:1.5rem;}.mb-12{margin-bottom:3rem;}.mb-2{margin-bottom:0.5rem;}.mb-30{margin-bottom:7.5rem;}.mb-4{margin-bottom:1rem;}.mb-6{margin-bottom:1.5rem;}.mb-8{margin-bottom:2rem;}.ml-1{margin-left:0.25rem;}.ml-2{margin-left:0.5rem;}.ml-4{margin-left:1rem;}.ml-6{margin-left:1.5rem;}.mr-1{margin-right:0.25rem;}.mr-2{margin-right:0.5rem;}.mr-4{margin-right:1rem;}.mt-\[16px\]{margin-top:16px;}.mt-\[18px\]{margin-top:18px;}.mt-\[24px\]{margin-top:24px;}.mt-\[32px\]{margin-top:32px;}.mt-\[40px\]{margin-top:40px;}.mt-\[56px\]{margin-top:56px;}.mt-1{margin-top:0.25rem;}.mt-12{margin-top:3rem;}.mt-2{margin-top:0.5rem;}.mt-4{margin-top:1rem;}.mt-6{margin-top:1.5rem;}.mt-8{margin-top:2rem;}.box-border{box-sizing:border-box;}.peer:has(:checked)~.peer-has-\[\:checked\]\:block,.block,.group:hover .group-hover\:block{display:block;}.\!hidden{display:none !important;}.hidden,.group:hover .group-hover\:hidden{display:none;}.aspect-\[1\/1\]{aspect-ratio:1/1;}.h-\[0px\]{height:0px;}.h-\[100\.44px\]{height:100.44px;}.h-\[100\%\],.h-full{height:100%;}.h-\[100px\]{height:100px;}.h-\[105px\]{height:105px;}.h-\[106px\],.h-106px{height:106px;}.h-\[115px\]{height:115px;}.h-\[120px\]{height:120px;}.h-\[127px\]{height:127px;}.h-\[128px\]{height:128px;}.h-\[130px\]{height:130px;}.h-\[138px\]{height:138px;}.h-\[146px\]{height:146px;}.h-\[147px\]{height:147px;}.h-\[156px\]{height:156px;}.h-\[160\.44px\]{height:160.44px;}.h-\[161px\]{height:161px;}.h-\[164px\]{height:164px;}.h-\[17\.28\%\]{height:17.28%;}.h-\[18px\]{height:18px;}.h-\[196px\]{height:196px;}.h-\[1px\],.h-1px{height:1px;}.h-\[200px\]{height:200px;}.h-\[215px\]{height:215px;}.h-\[23\.79px\]{height:23.79px;}.h-\[237px\]{height:237px;}.h-\[238\.89px\]{height:238.89px;}.h-\[23px\]{height:23px;}.h-\[246px\]{height:246px;}.h-\[24px\]{height:24px;}.h-\[260px\]{height:260px;}.h-\[263px\]{height:263px;}.h-\[280px\]{height:280px;}.h-\[30px\]{height:30px;}.h-\[312px\]{height:312px;}.h-\[334px\]{height:334px;}.h-\[34\.57\%\]{height:34.57%;}.h-\[351\.44px\]{height:351.44px;}.h-\[38px\]{height:38px;}.h-\[398px\]{height:398px;}.h-\[40px\]{height:40px;}.h-\[41\.67\%\]{height:41.67%;}.h-\[41\.8\%\]{height:41.8%;}.h-\[42px\],.h-42px{height:42px;}.h-\[454px\]{height:454px;}.h-\[46px\]{height:46px;}.h-\[47px\]{height:47px;}.h-\[48px\]{height:48px;}.h-\[49\.58\%\]{height:49.58%;}.h-\[50\%\],.h-1\/2{height:50%;}.h-\[55\.56\%\]{height:55.56%;}.h-\[55px\]{height:55px;}.h-\[57\.14\%\]{height:57.14%;}.h-\[58px\]{height:58px;}.h-\[60\%\]{height:60%;}.h-\[61\%\]{height:61%;}.h-\[642px\]{height:642px;}.h-\[66\%\]{height:66%;}.h-\[71\%\]{height:71%;}.h-\[72px\]{height:72px;}.h-\[76px\]{height:76px;}.h-\[80\%\]{height:80%;}.h-\[80px\]{height:80px;}.h-\[82\.5px\]{height:82.5px;}.h-\[82px\]{height:82px;}.h-\[83px\]{height:83px;}.h-\[84px\]{height:84px;}.h-\[87\.5\%\]{height:87.5%;}.h-\[87px\]{height:87px;}.h-\[90px\]{height:90px;}.h-\[91\.85px\]{height:91.85px;}.h-\[95px\]{height:95px;}.h-\[97px\]{height:97px;}.h-\[calc\(100vh-75px\)\]{height:calc(100vh - 75px);}.h-\[calc\(100vh-86px\)\]{height:calc(100vh - 86px);}.h-0{height:0;}.h-10{height:2.5rem;}.h-11{height:2.75rem;}.h-12{height:3rem;}.h-14{height:3.5rem;}.h-16{height:4rem;}.h-18{height:4.5rem;}.h-2{height:0.5rem;}.h-20{height:5rem;}.h-24{height:6rem;}.h-3{height:0.75rem;}.h-30{height:7.5rem;}.h-4{height:1rem;}.h-5{height:1.25rem;}.h-5px{height:5px;}.h-6{height:1.5rem;}.h-65px{height:65px;}.h-8{height:2rem;}.h-auto{height:auto;}.h-screen{height:100vh;}.max-h-\[570px\]{max-height:570px;}.max-h-\[80px\]{max-height:80px;}.max-h-\[calc\(100vh-400px\)\]{max-height:calc(100vh - 400px);}.max-h-\[calc\(100vh-85px-32px\)\]{max-height:calc(100vh - 85px - 32px);}.max-h-62{max-height:15.5rem;}.max-w-\[120px\]{max-width:120px;}.max-w-\[720px\]{max-width:720px;}.max-w-358px{max-width:358px;}.min-h-\[144px\]{min-height:144px;}.min-h-\[700px\]{min-height:700px;}.min-h-\[88px\]{min-height:88px;}.min-h-\[calc\(100vh-160px\)\]{min-height:calc(100vh - 160px);}.min-h-\[calc\(100vh-80px\)\]{min-height:calc(100vh - 80px);}.min-h-100vh{min-height:100vh;}.min-h-235px{min-height:235px;}.min-h-500px{min-height:500px;}.min-w-\[254px\]{min-width:254px;}.min-w-100vw{min-width:100vw;}.min-w-160px{min-width:160px;}.w-\[100\%\],.w-full{width:100%;}.w-\[108px\]{width:108px;}.w-\[110px\]{width:110px;}.w-\[113px\]{width:113px;}.w-\[114px\]{width:114px;}.w-\[120px\]{width:120px;}.w-\[127px\]{width:127px;}.w-\[13\.86\%\]{width:13.86%;}.w-\[134px\]{width:134px;}.w-\[137px\]{width:137px;}.w-\[138px\]{width:138px;}.w-\[140px\]{width:140px;}.w-\[150px\]{width:150px;}.w-\[151px\]{width:151px;}.w-\[156px\]{width:156px;}.w-\[158px\]{width:158px;}.w-\[160px\]{width:160px;}.w-\[171px\]{width:171px;}.w-\[176\.96px\]{width:176.96px;}.w-\[186px\]{width:186px;}.w-\[18px\]{width:18px;}.w-\[199px\]{width:199px;}.w-\[200px\]{width:200px;}.w-\[201px\]{width:201px;}.w-\[202px\]{width:202px;}.w-\[210px\]{width:210px;}.w-\[214\.42px\]{width:214.42px;}.w-\[245px\]{width:245px;}.w-\[24px\]{width:24px;}.w-\[25\%\]{width:25%;}.w-\[254px\]{width:254px;}.w-\[26\%\]{width:26%;}.w-\[27\.5\%\]{width:27.5%;}.w-\[27\.72\%\]{width:27.72%;}.w-\[277\.38px\]{width:277.38px;}.w-\[29\%\]{width:29%;}.w-\[309px\]{width:309px;}.w-\[30px\]{width:30px;}.w-\[316px\]{width:316px;}.w-\[334px\]{width:334px;}.w-\[335px\]{width:335px;}.w-\[340px\]{width:340px;}.w-\[358px\]{width:358px;}.w-\[36\.04\%\]{width:36.04%;}.w-\[371px\]{width:371px;}.w-\[407px\]{width:407px;}.w-\[40px\]{width:40px;}.w-\[41\.67\%\]{width:41.67%;}.w-\[419px\],.w-419px{width:419px;}.w-\[434px\]{width:434px;}.w-\[44\.55\%\]{width:44.55%;}.w-\[442px\]{width:442px;}.w-\[479px\]{width:479px;}.w-\[50\%\]{width:50%;}.w-\[530px\]{width:530px;}.w-\[550px\]{width:550px;}.w-\[57\.14\%\]{width:57.14%;}.w-\[58px\]{width:58px;}.w-\[60\%\]{width:60%;}.w-\[616px\]{width:616px;}.w-\[72px\]{width:72px;}.w-\[76px\]{width:76px;}.w-\[80\%\]{width:80%;}.w-\[856px\]{width:856px;}.w-\[87\.5\%\]{width:87.5%;}.w-\[88px\]{width:88px;}.w-\[90\%\]{width:90%;}.w-\[94px\]{width:94px;}.w-\[calc\(50\%-8px\)\]{width:calc(50% - 8px);}.w-10{width:2.5rem;}.w-100vw{width:100vw;}.w-106px{width:106px;}.w-12{width:3rem;}.w-14{width:3.5rem;}.w-16{width:4rem;}.w-1px{width:1px;}.w-20{width:5rem;}.w-204px{width:204px;}.w-24{width:6rem;}.w-4{width:1rem;}.w-40{width:10rem;}.w-42px{width:42px;}.w-5{width:1.25rem;}.w-56{width:14rem;}.w-5px{width:5px;}.w-6{width:1.5rem;}.w-7{width:1.75rem;}.w-72{width:18rem;}.w-8{width:2rem;}.w-auto{width:auto;}.w-max{width:max-content;}.peer:has(:checked)~.peer-has-\[\:checked\]\:flex,.flex,.peer\/select:checked~.peer-checked\/select\:flex,.group:hover .group-hover\:flex{display:flex;}.inline-flex{display:inline-flex;}.flex-1{flex:1 1 0%;}.flex-shrink-0,.shrink-0{flex-shrink:0;}.flex-row{flex-direction:row;}.flex-col{flex-direction:column;}.flex-col-reverse{flex-direction:column-reverse;}.flex-wrap{flex-wrap:wrap;}.flex-nowrap{flex-wrap:nowrap;}.origin-right-top{transform-origin:right top;}.-translate-y-20{--un-translate-y:-5rem;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));}.translate-y-1\/2{--un-translate-y:50%;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));}.rotate-180,.peer:checked~.peer-checked\:rotate-180,.peer\/p:checked~.peer-checked\/p\:rotate-180,.peer\/select:checked~.peer-checked\/select\:rotate-180,.peer\/u:checked~.peer-checked\/u\:rotate-180{--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-rotate:180deg;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));}.transform{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));}@keyframes spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}.animate-spin{animation:spin 1s linear infinite;}.cursor-pointer{cursor:pointer;}.cursor-not-allowed{cursor:not-allowed;}.select-none{-webkit-user-select:none;user-select:none;}.list-disc{list-style-type:disc;}.list-inside{list-style-position:inside;}.items-start{align-items:flex-start;}.items-end{align-items:flex-end;}.items-center{align-items:center;}.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;}.gap-\[12px\]{gap:12px;}.gap-\[130px\]{gap:130px;}.gap-\[16px\]{gap:16px;}.gap-\[18px\],.gap-18px{gap:18px;}.gap-\[20px\]{gap:20px;}.gap-\[24px\]{gap:24px;}.gap-\[26px\]{gap:26px;}.gap-\[27px\]{gap:27px;}.gap-\[30px\]{gap:30px;}.gap-\[32px\]{gap:32px;}.gap-\[33px\]{gap:33px;}.gap-\[40px\]{gap:40px;}.gap-\[41px\]{gap:41px;}.gap-\[424px\]{gap:424px;}.gap-\[42px\]{gap:42px;}.gap-\[484px\]{gap:484px;}.gap-\[48px\]{gap:48px;}.gap-\[4px\]{gap:4px;}.gap-\[56px\]{gap:56px;}.gap-\[60px\]{gap:60px;}.gap-\[72px\]{gap:72px;}.gap-\[8px\]{gap:8px;}.gap-0{gap:0;}.gap-0\.5{gap:0.125rem;}.gap-1{gap:0.25rem;}.gap-10{gap:2.5rem;}.gap-12{gap:3rem;}.gap-14{gap:3.5rem;}.gap-15{gap:3.75rem;}.gap-16{gap:4rem;}.gap-2{gap:0.5rem;}.gap-2\.5{gap:0.625rem;}.gap-22px{gap:22px;}.gap-25px{gap:25px;}.gap-3{gap:0.75rem;}.gap-4{gap:1rem;}.gap-5{gap:1.25rem;}.gap-6{gap:1.5rem;}.gap-60{gap:15rem;}.gap-7{gap:1.75rem;}.gap-8{gap:2rem;}.space-x-\[10px\]>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(10px * calc(1 - var(--un-space-x-reverse)));margin-right:calc(10px * var(--un-space-x-reverse));}.space-x-20>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(5rem * calc(1 - var(--un-space-x-reverse)));margin-right:calc(5rem * var(--un-space-x-reverse));}.overflow-auto{overflow:auto;}.overflow-clip{overflow:clip;}.overflow-hidden{overflow:hidden;}.overflow-visible{overflow:visible;}.overflow-x-auto{overflow-x:auto;}.overflow-y-auto{overflow-y:auto;}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.break-words{overflow-wrap:break-word;}.break-all{word-break:break-all;}.border,.border-1{border-width:1px;}.border-2{border-width:2px;}.border-b{border-bottom-width:1px;}.border-b-2{border-bottom-width:2px;}.border-l{border-left-width:1px;}.border-r{border-right-width:1px;}.border-t{border-top-width:1px;}.first\:border-t-0:first-child{border-top-width:0;}.last\:border-b-0:last-child{border-bottom-width:0;}.last\:border-r-0:last-child{border-right-width:0;}.border-\[\#116DFF\],.border-\#116DFF,.border-blue-1{--un-border-opacity:1;border-color:rgba(17,109,255,var(--un-border-opacity));}.border-\[\#74aaff\],.border-\[\#74AAFF\],.border-\#74AAFF{--un-border-opacity:1;border-color:rgba(116,170,255,var(--un-border-opacity));}.border-\[\#75AAFF\],.border-\#75AAFF,.border-blue-3,.has-\[\:checked\]\:border-\[\#75AAFF\]:has(:checked){--un-border-opacity:1;border-color:rgba(117,170,255,var(--un-border-opacity));}.border-\[\#99c1ff\]{--un-border-opacity:1;border-color:rgba(153,193,255,var(--un-border-opacity));}.border-\[\#B2B4BD\],.border-\#B2B4BD{--un-border-opacity:1;border-color:rgba(178,180,189,var(--un-border-opacity));}.border-\[\#D8E7FF\]{--un-border-opacity:1;border-color:rgba(216,231,255,var(--un-border-opacity));}.border-\[\#E3E4EB\]{--un-border-opacity:1;border-color:rgba(227,228,235,var(--un-border-opacity));}.border-\[\#e5e6e9\],.border-\[\#E5E6E9\],.border-\#E5E6E9{--un-border-opacity:1;border-color:rgba(229,230,233,var(--un-border-opacity));}.border-\[\#f5d0d0\],.border-\#F5D0D0{--un-border-opacity:1;border-color:rgba(245,208,208,var(--un-border-opacity));}.border-\[\#fdd084\],.border-\[\#FDD084\],.border-\#FDD084{--un-border-opacity:1;border-color:rgba(253,208,132,var(--un-border-opacity));}.border-\#C0E5CF{--un-border-opacity:1;border-color:rgba(192,229,207,var(--un-border-opacity));}.border-\#D6D8DF{--un-border-opacity:1;border-color:rgba(214,216,223,var(--un-border-opacity));}.border-\#D9D9D9{--un-border-opacity:1;border-color:rgba(217,217,217,var(--un-border-opacity));}.border-\#FF8181{--un-border-opacity:1;border-color:rgba(255,129,129,var(--un-border-opacity));}.border-dark-0{--un-border-opacity:1;border-color:rgba(0,6,36,var(--un-border-opacity));}.focus-within\:\!border-\[\#74AAFF\]:focus-within{--un-border-opacity:1 !important;border-color:rgba(116,170,255,var(--un-border-opacity)) !important;}.hover\:border-\[\#116DFF\]:hover{--un-border-opacity:1;border-color:rgba(17,109,255,var(--un-border-opacity));}.hover\:border-\[\#D6D8DF\]:hover{--un-border-opacity:1;border-color:rgba(214,216,223,var(--un-border-opacity));}.focus\:border-\[\#116DFF\]:focus{--un-border-opacity:1;border-color:rgba(17,109,255,var(--un-border-opacity));}.border-b-\[0\]{border-bottom-color:0;}.border-l-\[0\]{border-left-color:0;}.border-r-\[0\]{border-right-color:0;}.rounded{border-radius:0.25rem;}.rounded-\[10px\]{border-radius:10px;}.rounded-\[16px\],.rounded-16px{border-radius:16px;}.rounded-\[24px\]{border-radius:24px;}.rounded-\[30px\]{border-radius:30px;}.rounded-\[32px\]{border-radius:32px;}.rounded-\[40px\]{border-radius:40px;}.rounded-\[50\%\]{border-radius:50%;}.rounded-\[50px\]{border-radius:50px;}.rounded-\[6\.5px\]{border-radius:6.5px;}.rounded-\[8px\]{border-radius:8px;}.rounded-2,.rounded-lg{border-radius:0.5rem;}.rounded-2xl,.rounded-4{border-radius:1rem;}.rounded-8{border-radius:2rem;}.rounded-full{border-radius:9999px;}.rounded-xl{border-radius:0.75rem;}.rounded-b-2xl{border-bottom-left-radius:1rem;border-bottom-right-radius:1rem;}.rounded-tl-2xl{border-top-left-radius:1rem;}.rounded-tr-2xl{border-top-right-radius:1rem;}.border-dashed{border-style:dashed;}.border-solid{border-style:solid;}.last\:border-b-none:last-child{border-bottom-style:none;}.\!bg-\[\#116dff\]{--un-bg-opacity:1 !important;background-color:rgba(17,109,255,var(--un-bg-opacity)) !important;}.bg-\[\#0000004D\],.bg-\[rgba\(0\,0\,0\,0\.3\)\]{--un-bg-opacity:0.3;background-color:rgba(0,0,0,var(--un-bg-opacity));}.bg-\[\#000624\],.bg-\#000624,.peer:checked~.peer-checked\:bg-\[\#000624\]{--un-bg-opacity:1;background-color:rgba(0,6,36,var(--un-bg-opacity));}.bg-\[\#00062480\]{--un-bg-opacity:0.5;background-color:rgba(0,6,36,var(--un-bg-opacity));}.bg-\[\#116dff\],.bg-\[\#116DFF\],.bg-\#116DFF,.bg-blue-1{--un-bg-opacity:1;background-color:rgba(17,109,255,var(--un-bg-opacity));}.bg-\[\#333850\],.bg-\#333850{--un-bg-opacity:1;background-color:rgba(51,56,80,var(--un-bg-opacity));}.bg-\[\#4FAF76\]{--un-bg-opacity:1;background-color:rgba(79,175,118,var(--un-bg-opacity));}.bg-\[\#51b77b\],.bg-\[\#51B77B\],.bg-\#51B77B{--un-bg-opacity:1;background-color:rgba(81,183,123,var(--un-bg-opacity));}.bg-\[\#d9d9d9\],.bg-\[\#D9D9D9\],.bg-\#D9D9D9{--un-bg-opacity:1;background-color:rgba(217,217,217,var(--un-bg-opacity));}.bg-\[\#d9d9d9\]\/0{background-color:rgba(217,217,217,0);}.bg-\[\#def5f9\]{--un-bg-opacity:1;background-color:rgba(222,245,249,var(--un-bg-opacity));}.bg-\[\#e3e4eb\],.bg-\#E3E4EB{--un-bg-opacity:1;background-color:rgba(227,228,235,var(--un-bg-opacity));}.bg-\[\#e5e6e9\],.bg-\[\#E5E6E9\],.bg-\#E5E6E9{--un-bg-opacity:1;background-color:rgba(229,230,233,var(--un-bg-opacity));}.bg-\[\#E9F5EE\]{--un-bg-opacity:1;background-color:rgba(233,245,238,var(--un-bg-opacity));}.bg-\[\#EBEBF0\]{--un-bg-opacity:1;background-color:rgba(235,235,240,var(--un-bg-opacity));}.bg-\[\#EBEEF5\]{--un-bg-opacity:1;background-color:rgba(235,238,245,var(--un-bg-opacity));}.bg-\[\#efedff\]{--un-bg-opacity:1;background-color:rgba(239,237,255,var(--un-bg-opacity));}.bg-\[\#F1FAF5\],.bg-\#F1FAF5{--un-bg-opacity:1;background-color:rgba(241,250,245,var(--un-bg-opacity));}.bg-\[\#F2F2F5\],.bg-\#f2f2f5,.bg-\#F2F2F5{--un-bg-opacity:1;background-color:rgba(242,242,245,var(--un-bg-opacity));}.bg-\[\#f2f7ff\],.bg-\#f2f7ff{--un-bg-opacity:1;background-color:rgba(242,247,255,var(--un-bg-opacity));}.bg-\[\#F3F8FF\],.bg-\#F3F8FF{--un-bg-opacity:1;background-color:rgba(243,248,255,var(--un-bg-opacity));}.bg-\[\#f6f6f9\]{--un-bg-opacity:1;background-color:rgba(246,246,249,var(--un-bg-opacity));}.bg-\[\#F7F7F9\],.bg-\#F7F7F9{--un-bg-opacity:1;background-color:rgba(247,247,249,var(--un-bg-opacity));}.bg-\[\#fafafc\],.bg-\[\#FAFAFC\],.bg-\#FAFAFC,.bg-light-1{--un-bg-opacity:1;background-color:rgba(250,250,252,var(--un-bg-opacity));}.bg-\[\#fdf9ec\],.bg-\[\#FDF9EC\],.bg-\#FDF9EC{--un-bg-opacity:1;background-color:rgba(253,249,236,var(--un-bg-opacity));}.bg-\[\#fff\],.bg-\[\#FFFFFF\],.bg-\#fff,.bg-\#FFFFFF,.bg-white{--un-bg-opacity:1;background-color:rgba(255,255,255,var(--un-bg-opacity));}.bg-\[\#FFF4F4\],.bg-\#FFF4F4{--un-bg-opacity:1;background-color:rgba(255,244,244,var(--un-bg-opacity));}.bg-\[\#fff5dc\]{--un-bg-opacity:1;background-color:rgba(255,245,220,var(--un-bg-opacity));}.bg-\[rgba\(0\,0\,0\,0\.30\)\]{--un-bg-opacity:0.30;background-color:rgba(0,0,0,var(--un-bg-opacity));}.bg-\[rgba\(0\,0\,0\,0\.5\)\]{--un-bg-opacity:0.5;background-color:rgba(0,0,0,var(--un-bg-opacity));}.bg-\[rgba\(217\,217\,217\,0\.00\)\]{--un-bg-opacity:0.00;background-color:rgba(217,217,217,var(--un-bg-opacity));}.bg-\#666a7c{--un-bg-opacity:1;background-color:rgba(102,106,124,var(--un-bg-opacity));}.bg-\#99c1ff{--un-bg-opacity:1;background-color:rgba(153,193,255,var(--un-bg-opacity));}.bg-\#b2b4bd{--un-bg-opacity:1;background-color:rgba(178,180,189,var(--un-bg-opacity));}.bg-\#E3991B{--un-bg-opacity:1;background-color:rgba(227,153,27,var(--un-bg-opacity));}.bg-\#EDBBD6{--un-bg-opacity:1;background-color:rgba(237,187,214,var(--un-bg-opacity));}.bg-\#FDD084{--un-bg-opacity:1;background-color:rgba(253,208,132,var(--un-bg-opacity));}.bg-\#FF5C5C{--un-bg-opacity:1;background-color:rgba(255,92,92,var(--un-bg-opacity));}.bg-\#ffb73e{--un-bg-opacity:1;background-color:rgba(255,183,62,var(--un-bg-opacity));}.bg-black{--un-bg-opacity:1;background-color:rgba(0,0,0,var(--un-bg-opacity));}.bg-black\/30{background-color:rgba(0,0,0,0.3);}.bg-light-3{--un-bg-opacity:1;background-color:rgba(248,249,250,var(--un-bg-opacity));}.bg-transparent{background-color:transparent;}.visited\:bg-\#1567EA:visited{--un-bg-opacity:1;background-color:rgba(21,103,234,var(--un-bg-opacity));}.hover\:bg-\[\#448cff\]:hover{--un-bg-opacity:1;background-color:rgba(68,140,255,var(--un-bg-opacity));}.hover\:bg-\[\#458DFF\]:hover{--un-bg-opacity:1;background-color:rgba(69,141,255,var(--un-bg-opacity));}.hover\:bg-\[\#F3F8FF\]:hover{--un-bg-opacity:1;background-color:rgba(243,248,255,var(--un-bg-opacity));}.hover\:bg-\[\#f6f6f9\]:hover{--un-bg-opacity:1;background-color:rgba(246,246,249,var(--un-bg-opacity));}.hover\:bg-\[\#F7F7F9\]:hover{--un-bg-opacity:1;background-color:rgba(247,247,249,var(--un-bg-opacity));}.hover\:bg-\[\#fafafc\]:hover{--un-bg-opacity:1;background-color:rgba(250,250,252,var(--un-bg-opacity));}.hover\:bg-\[\#FAFAFC\]:hover{--un-bg-opacity:1;background-color:rgba(250,250,252,var(--un-bg-opacity));}.hover\:bg-\[rgba\(0\,0\,0\,0\.50\)\]:hover{--un-bg-opacity:0.50;background-color:rgba(0,0,0,var(--un-bg-opacity));}.hover\:bg-\#458DFF:hover{--un-bg-opacity:1;background-color:rgba(69,141,255,var(--un-bg-opacity));}.hover\:bg-\#F2F2F5:hover{--un-bg-opacity:1;background-color:rgba(242,242,245,var(--un-bg-opacity));}.hover\:bg-\#F7F7F9:hover{--un-bg-opacity:1;background-color:rgba(247,247,249,var(--un-bg-opacity));}.hover\:bg-\#FAFAFC:hover{--un-bg-opacity:1;background-color:rgba(250,250,252,var(--un-bg-opacity));}.hover\:bg-\#ff8181:hover{--un-bg-opacity:1;background-color:rgba(255,129,129,var(--un-bg-opacity));}.hover\:bg-gray-1:hover{--un-bg-opacity:1;background-color:rgba(243,244,246,var(--un-bg-opacity));}.focus\:bg-\[\#1467ea\]:focus{--un-bg-opacity:1;background-color:rgba(20,103,234,var(--un-bg-opacity));}.focus\:bg-\[\#1567EA\]:focus{--un-bg-opacity:1;background-color:rgba(21,103,234,var(--un-bg-opacity));}.focus\:bg-\[\#F3F8FF\]:focus{--un-bg-opacity:1;background-color:rgba(243,248,255,var(--un-bg-opacity));}.focus\:bg-\[\#F7F7F9\]:focus{--un-bg-opacity:1;background-color:rgba(247,247,249,var(--un-bg-opacity));}.focus\:bg-\#1567EA:focus{--un-bg-opacity:1;background-color:rgba(21,103,234,var(--un-bg-opacity));}.focus\:bg-\#EBEBF0:focus{--un-bg-opacity:1;background-color:rgba(235,235,240,var(--un-bg-opacity));}.bg-opacity-5{--un-bg-opacity:0.05;}.bg-opacity-50{--un-bg-opacity:0.5;}.bg-\[url\(\'\/banner\/aboutUs\.png\'\)\]{--un-url:url('/banner/aboutUs.png');background-image:var(--un-url);}.bg-cover{background-size:cover;}.bg-center{background-position:center;}.bg-no-repeat{background-repeat:no-repeat;}.fill-\#848898{--un-fill-opacity:1;fill:rgba(132,136,152,var(--un-fill-opacity));}.group:hover .group-hover\:fill-\#458DFF{--un-fill-opacity:1;fill:rgba(69,141,255,var(--un-fill-opacity));}.group:focus .group-focus\:fill-\#116DFF{--un-fill-opacity:1;fill:rgba(17,109,255,var(--un-fill-opacity));}.stroke-current{stroke:currentColor;}.object-cover{object-fit:cover;}.object-contain{object-fit:contain;}.object-fill{object-fit:fill;}.p-\[16px\]{padding:16px;}.p-\[18px\]{padding:18px;}.p-\[24px\]{padding:24px;}.p-1{padding:0.25rem;}.p-2{padding:0.5rem;}.p-2\.5{padding:0.625rem;}.p-2px{padding:2px;}.p-4{padding:1rem;}.p-5{padding:1.25rem;}.p-6{padding:1.5rem;}.p-8{padding:2rem;}.px-\[10px\],.px-10px{padding-left:10px;padding-right:10px;}.px-\[12px\]{padding-left:12px;padding-right:12px;}.px-\[15px\],.px-15px{padding-left:15px;padding-right:15px;}.px-\[16px\]{padding-left:16px;padding-right:16px;}.px-\[20px\],.px-20px{padding-left:20px;padding-right:20px;}.px-\[26px\]{padding-left:26px;padding-right:26px;}.px-\[30px\]{padding-left:30px;padding-right:30px;}.px-\[32px\]{padding-left:32px;padding-right:32px;}.px-1{padding-left:0.25rem;padding-right:0.25rem;}.px-10\.5px{padding-left:10.5px;padding-right:10.5px;}.px-11{padding-left:2.75rem;padding-right:2.75rem;}.px-133px{padding-left:133px;padding-right:133px;}.px-2{padding-left:0.5rem;padding-right:0.5rem;}.px-2\.5{padding-left:0.625rem;padding-right:0.625rem;}.px-23px{padding-left:23px;padding-right:23px;}.px-3{padding-left:0.75rem;padding-right:0.75rem;}.px-4{padding-left:1rem;padding-right:1rem;}.px-5{padding-left:1.25rem;padding-right:1.25rem;}.px-51px{padding-left:51px;padding-right:51px;}.px-6{padding-left:1.5rem;padding-right:1.5rem;}.px-8{padding-left:2rem;padding-right:2rem;}.py-\[10px\]{padding-top:10px;padding-bottom:10px;}.py-\[13px\],.py-13px{padding-top:13px;padding-bottom:13px;}.py-\[18px\],.py-18px{padding-top:18px;padding-bottom:18px;}.py-\[19px\]{padding-top:19px;padding-bottom:19px;}.py-\[24px\]{padding-top:24px;padding-bottom:24px;}.py-\[26px\]{padding-top:26px;padding-bottom:26px;}.py-\[28px\]{padding-top:28px;padding-bottom:28px;}.py-\[2px\]{padding-top:2px;padding-bottom:2px;}.py-\[3px\]{padding-top:3px;padding-bottom:3px;}.py-\[40px\]{padding-top:40px;padding-bottom:40px;}.py-\[48px\]{padding-top:48px;padding-bottom:48px;}.py-\[6px\],.py-6px{padding-top:6px;padding-bottom:6px;}.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-12px{padding-top:12px;padding-bottom:12px;}.py-14px{padding-top:14px;padding-bottom:14px;}.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-30px{padding-top:30px;padding-bottom:30px;}.py-4{padding-top:1rem;padding-bottom:1rem;}.py-5{padding-top:1.25rem;padding-bottom:1.25rem;}.py-6{padding-top:1.5rem;padding-bottom:1.5rem;}.py-8{padding-top:2rem;padding-bottom:2rem;}.\!pb-0{padding-bottom:0 !important;}.pb-\[59px\]{padding-bottom:59px;}.pb-1\.5{padding-bottom:0.375rem;}.pb-10{padding-bottom:2.5rem;}.pb-2{padding-bottom:0.5rem;}.pb-2\.5{padding-bottom:0.625rem;}.pb-3{padding-bottom:0.75rem;}.pb-3\.5{padding-bottom:0.875rem;}.pb-4{padding-bottom:1rem;}.pb-6{padding-bottom:1.5rem;}.pb-6px{padding-bottom:6px;}.pl-\[119px\]{padding-left:119px;}.pl-2{padding-left:0.5rem;}.pl-3{padding-left:0.75rem;}.pl-4{padding-left:1rem;}.pl-5{padding-left:1.25rem;}.pl-6{padding-left:1.5rem;}.pl-8{padding-left:2rem;}.pr-\[119px\]{padding-right:119px;}.pr-2{padding-right:0.5rem;}.pr-3{padding-right:0.75rem;}.pr-4{padding-right:1rem;}.pr-6{padding-right:1.5rem;}.pr-8{padding-right:2rem;}.pt-\[59px\]{padding-top:59px;}.pt-\[76px\]{padding-top:76px;}.pt-1\.5{padding-top:0.375rem;}.pt-113px{padding-top:113px;}.pt-12{padding-top:3rem;}.pt-2{padding-top:0.5rem;}.pt-2\.5{padding-top:0.625rem;}.pt-3{padding-top:0.75rem;}.pt-3\.5{padding-top:0.875rem;}.pt-30{padding-top:7.5rem;}.pt-4{padding-top:1rem;}.pt-5{padding-top:1.25rem;}.first\:pt-0:first-child{padding-top:0;}.text-center{text-align:center;}.text-left{text-align:left;}.text-right{text-align:right;}.text-nowrap{text-wrap:nowrap;}.text-\[12px\]{font-size:12px;}.text-\[13px\],.text-13px{font-size:13px;}.text-\[14px\]{font-size:14px;}.text-\[15px\],.text-15px{font-size:15px;}.text-\[16px\],.text-16px{font-size:16px;}.text-\[20px\],.text-20px{font-size:20px;}.text-\[22px\]{font-size:22px;}.text-\[24px\],.text-24px{font-size:24px;}.text-\[28px\]{font-size:28px;}.text-\[32px\]{font-size:32px;}.text-\[40px\]{font-size:40px;}.text-\[44px\]{font-size:44px;}.text-\[48px\]{font-size:48px;}.text-\[64px\]{font-size:64px;}.text-2xl{font-size:1.5rem;line-height:2rem;}.text-3{font-size:0.75rem;}.text-4{font-size:1rem;}.text-4xl{font-size:2.25rem;line-height:2.5rem;}.text-5{font-size:1.25rem;}.text-5xl{font-size:3rem;line-height:1;}.text-6{font-size:1.5rem;}.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-xl{font-size:1.25rem;line-height:1.75rem;}.text-xs{font-size:0.75rem;line-height:1rem;}.font-400,.font-normal{font-weight:400;}.font-600,.font-semibold{font-weight:600;}.font-bold{font-weight:700;}.font-medium{font-weight:500;}.leading-\[1\]{line-height:1;}.leading-\[150\%\]{line-height:150%;}.leading-\[18px\]{line-height:18px;}.leading-\[1px\]{line-height:1px;}.leading-\[21px\]{line-height:21px;}.leading-\[30px\]{line-height:30px;}.leading-6{line-height:1.5rem;}.leading-9{line-height:2.25rem;}.leading-normal{line-height:1.5;}.leading-snug{line-height:1.375;}.leading-tight{line-height:1.25;}.font-\[\'-\'\,_sans-serif\]{font-family:'-', sans-serif;}.font-\[\'NotoSansSc-Medium\'\,_sans-serif\]{font-family:'NotoSansSc-Medium', sans-serif;}.font-\[\'NotoSansSc-Regular\'\,_sans-serif\]{font-family:'NotoSansSc-Regular', sans-serif;}.font-\[\'NotoSansSc-SemiBold\'\,_sans-serif\]{font-family:'NotoSansSc-SemiBold', sans-serif;}.font-\[600\]{font-family:600;}.capitalize{text-transform:capitalize;}.\!text-dark-0{--un-text-opacity:1 !important;color:rgba(0,6,36,var(--un-text-opacity)) !important;}.text-\[\#\#848898\]{color:##848898;}.text-\[\#000624\],.text-\#000624,.text-dark-0{--un-text-opacity:1;color:rgba(0,6,36,var(--un-text-opacity));}.text-\[\#116dff\],.text-\[\#116DFF\],.text-\#116DFF{--un-text-opacity:1;color:rgba(17,109,255,var(--un-text-opacity));}.text-\[\#33374f\]{--un-text-opacity:1;color:rgba(51,55,79,var(--un-text-opacity));}.text-\[\#333850\],.text-\#333850{--un-text-opacity:1;color:rgba(51,56,80,var(--un-text-opacity));}.text-\[\#409EFF\]{--un-text-opacity:1;color:rgba(64,158,255,var(--un-text-opacity));}.text-\[\#448cff\]{--un-text-opacity:1;color:rgba(68,140,255,var(--un-text-opacity));}.text-\[\#458DFF\],.text-\#458DFF,.text-blue-2{--un-text-opacity:1;color:rgba(69,141,255,var(--un-text-opacity));}.text-\[\#51b77b\]{--un-text-opacity:1;color:rgba(81,183,123,var(--un-text-opacity));}.text-\[\#666a7c\],.text-\[\#666A7C\],.text-\#666a7c,.text-\#666A7C,.text-dark-2{--un-text-opacity:1;color:rgba(102,106,124,var(--un-text-opacity));}.text-\[\#848898\],.text-\#848898{--un-text-opacity:1;color:rgba(132,136,152,var(--un-text-opacity));}.text-\[\#b2b4bd\],.text-\[\#B2B4BD\],.text-\#B2B4BD{--un-text-opacity:1;color:rgba(178,180,189,var(--un-text-opacity));}.text-\[\#D8E7FF\]{--un-text-opacity:1;color:rgba(216,231,255,var(--un-text-opacity));}.text-\[\#e3991b\],.text-\[\#E3991B\],.text-\#e3991b,.text-\#E3991B{--un-text-opacity:1;color:rgba(227,153,27,var(--un-text-opacity));}.text-\[\#f6f6f9\]{--un-text-opacity:1;color:rgba(246,246,249,var(--un-text-opacity));}.text-\[\#F7F7F9\],.text-\#F7F7F9{--un-text-opacity:1;color:rgba(247,247,249,var(--un-text-opacity));}.text-\[\#FF5C5C\],.text-\#ff5c5c,.text-\#FF5C5C,.text-red-0{--un-text-opacity:1;color:rgba(255,92,92,var(--un-text-opacity));}.text-\[\#fff\],.text-\[\#ffffff\],.text-\[\#FFFFFF\],.text-\#fff,.text-\#FFFFFF,.text-white,.peer:checked~.peer-checked\:text-\[\#FFFFFF\]{--un-text-opacity:1;color:rgba(255,255,255,var(--un-text-opacity));}.text-\[var\(--detail-label-color\)\]{color:var(--detail-label-color);}.text-\[var\(--detail-label-content-color\)\]{color:var(--detail-label-content-color);}.text-\#4FAF76{--un-text-opacity:1;color:rgba(79,175,118,var(--un-text-opacity));}.text-\#74AAFF{--un-text-opacity:1;color:rgba(116,170,255,var(--un-text-opacity));}.text-\#FAFAFC{--un-text-opacity:1;color:rgba(250,250,252,var(--un-text-opacity));}.text-\#FDD084{--un-text-opacity:1;color:rgba(253,208,132,var(--un-text-opacity));}.text-black{--un-text-opacity:1;color:rgba(0,0,0,var(--un-text-opacity));}.text-dark-1{--un-text-opacity:1;color:rgba(60,60,60,var(--un-text-opacity));}.text-dark-3{--un-text-opacity:1;color:rgba(45,45,45,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-600{--un-text-opacity:1;color:rgba(75,85,99,var(--un-text-opacity));}.hover\:text-\[\#116DFF\]:hover{--un-text-opacity:1;color:rgba(17,109,255,var(--un-text-opacity));}.hover\:text-\[\#848898\]:hover{--un-text-opacity:1;color:rgba(132,136,152,var(--un-text-opacity));}.hover\:text-\#116DFF:hover{--un-text-opacity:1;color:rgba(17,109,255,var(--un-text-opacity));}.hover\:text-\#848898:hover{--un-text-opacity:1;color:rgba(132,136,152,var(--un-text-opacity));}.focus\:text-\[\#333850\]:focus{--un-text-opacity:1;color:rgba(51,56,80,var(--un-text-opacity));}.placeholder\:text-\[\#666a7c\]::placeholder{--un-text-opacity:1;color:rgba(102,106,124,var(--un-text-opacity));}.placeholder\:text-\#666A7C::placeholder{--un-text-opacity:1;color:rgba(102,106,124,var(--un-text-opacity));}.line-through{text-decoration-line:line-through;}.underline{text-decoration-line:underline;}.hover\:underline:hover{text-decoration-line:underline;}.tab{-moz-tab-size:4;-o-tab-size:4;tab-size:4;}.opacity-\[0\.5\],.opacity-50{opacity:0.5;}.opacity-\[0\.6\]{opacity:0.6;}.hover\:opacity-30:hover{opacity:0.3;}.disabled\:opacity-30:disabled{opacity:0.3;}.shadow{--un-shadow:var(--un-shadow-inset) 0 1px 3px 0 var(--un-shadow-color, rgba(0,0,0,0.1)),var(--un-shadow-inset) 0 1px 2px -1px 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-\[0px_3px_15px_0px_rgba\(99\,114\,138\,0\.15\)\]{--un-shadow:0px 3px 15px 0px var(--un-shadow-color, rgba(99,114,138,0.15));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.hover\:shadow-\[0px_3px_15px_0px_rgba\(99\,114\,138\,0\.25\)\]:hover{--un-shadow:0px 3px 15px 0px var(--un-shadow-color, rgba(99,114,138,0.25));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.hover\:shadow-\[0px_4px_10px_0px_rgba\(140\,160\,199\,0\.10\)\]:hover{--un-shadow:0px 4px 10px 0px var(--un-shadow-color, rgba(140,160,199,0.10));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.hover\:shadow-custom:hover{--un-shadow:var(--shadow-1-box-shadow, 0px 4px 20px 0px rgba(129, 148, 183, 0.30));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.outline-none{outline:2px solid transparent;outline-offset:2px;}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.duration-1000{transition-duration:1000ms;}.duration-300{transition-duration:300ms;}.duration-500{transition-duration:500ms;}.delay-150{transition-delay:150ms;}.ease-in-out{transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);}@media (min-width: 768px){.md\:absolute{position:absolute;}.md\:relative{position:relative;}.md\:bottom-auto{bottom:auto;}.md\:left-\[38\.5\%\]{left:38.5%;}.md\:left-\[55\.5\%\]{left:55.5%;}.md\:left-\[81\%\]{left:81%;}.md\:top-\[18\.44\%\]{top:18.44%;}.md\:top-\[27\.5\%\]{top:27.5%;}.md\:grid{display:grid;}.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\:mx-25{margin-left:6.25rem;margin-right:6.25rem;}.md\:mb-0{margin-bottom:0;}.md\:mb-12{margin-bottom:3rem;}.md\:mb-8{margin-bottom:2rem;}.md\:ml-\[40px\]{margin-left:40px;}.md\:ml-16{margin-left:4rem;}.md\:mr-\[42px\]{margin-right:42px;}.md\:mr-\[97px\]{margin-right:97px;}.md\:mt-\[32px\]{margin-top:32px;}.md\:mt-0{margin-top:0;}.md\:mt-4{margin-top:1rem;}.md\:mt-8{margin-top:2rem;}.md\:block{display:block;}.md\:hidden{display:none;}.md\:h-\[164px\]{height:164px;}.md\:h-\[238px\]{height:238px;}.md\:h-\[239px\]{height:239px;}.md\:h-\[244px\]{height:244px;}.md\:h-\[246px\]{height:246px;}.md\:h-\[360px\]{height:360px;}.md\:h-\[42px\]{height:42px;}.md\:h-\[642px\]{height:642px;}.md\:h-156px{height:156px;}.md\:h-213px{height:213px;}.md\:h-auto{height:auto;}.md\:max-h-\[550px\]{max-height:550px;}.md\:max-w-\[300px\]{max-width:300px;}.md\:max-w-\[504px\]{max-width:504px;}.md\:max-w-none{max-width:none;}.md\:min-h-235px{min-height:235px;}.md\:min-w-\[419px\]{min-width:419px;}.md\:min-w-150px{min-width:150px;}.md\:min-w-264px{min-width:264px;}.md\:min-w-340px{min-width:340px;}.md\:min-w-456px{min-width:456px;}.md\:w-\[199px\]{width:199px;}.md\:w-\[216px\]{width:216px;}.md\:w-\[238px\]{width:238px;}.md\:w-\[242px\]{width:242px;}.md\:w-\[293px\]{width:293px;}.md\:w-\[294\.46px\]{width:294.46px;}.md\:w-\[302px\]{width:302px;}.md\:w-\[40\%\]{width:40%;}.md\:w-\[419px\]{width:419px;}.md\:w-\[42px\]{width:42px;}.md\:w-\[456px\]{width:456px;}.md\:w-\[50\%\]{width:50%;}.md\:w-\[528px\]{width:528px;}.md\:w-\[60\%\]{width:60%;}.md\:w-\[calc\(20\%-8px\)\]{width:calc(20% - 8px);}.md\:w-210px{width:210px;}.md\:w-264px{width:264px;}.md\:w-680px{width:680px;}.md\:w-auto{width:auto;}.md\:w-full{width:100%;}.md\:flex,.group:hover .md\:group-hover\:flex{display:flex;}.md\:flex-none{flex:none;}.md\:flex-row{flex-direction:row;}.md\:flex-col{flex-direction:column;}.md\:flex-nowrap{flex-wrap:nowrap;}.md\:items-end{align-items:flex-end;}.md\:items-center{align-items:center;}.md\:justify-start{justify-content:flex-start;}.md\:justify-center{justify-content:center;}.md\:gap-\[125px\]{gap:125px;}.md\:gap-\[129px\]{gap:129px;}.md\:gap-\[70px\]{gap:70px;}.md\:gap-0{gap:0;}.md\:gap-14{gap:3.5rem;}.md\:gap-15{gap:3.75rem;}.md\:gap-20{gap:5rem;}.md\:gap-31{gap:7.75rem;}.md\:gap-32{gap:8rem;}.md\:gap-4{gap:1rem;}.md\:gap-5{gap:1.25rem;}.md\:gap-6{gap:1.5rem;}.md\:gap-8{gap:2rem;}.md\:border-0{border-width:0;}.md\:rounded-\[50px\]{border-radius:50px;}.md\:rounded-2xl{border-radius:1rem;}.md\:rounded-none{border-radius:0;}.md\:border-none{border-style:none;}.md\:bg-\[\#f2f2f5\],.md\:bg-\[\#F2F2F5\],.md\:bg-\#F2F2F5{--un-bg-opacity:1;background-color:rgba(242,242,245,var(--un-bg-opacity));}.md\:bg-black{--un-bg-opacity:1;background-color:rgba(0,0,0,var(--un-bg-opacity));}.md\:bg-opacity-50{--un-bg-opacity:0.5;}.md\:bg-none{background-image:none;}.md\:p-0{padding:0;}.md\:p-18{padding:4.5rem;}.md\:p-4{padding:1rem;}.md\:p-5{padding:1.25rem;}.md\:p-6{padding:1.5rem;}.md\:px-\[28px\]{padding-left:28px;padding-right:28px;}.md\:px-\[290px\]{padding-left:290px;padding-right:290px;}.md\:px-\[66px\]{padding-left:66px;padding-right:66px;}.md\:px-\[72px\]{padding-left:72px;padding-right:72px;}.md\:px-0{padding-left:0;padding-right:0;}.md\:px-104px{padding-left:104px;padding-right:104px;}.md\:px-133px{padding-left:133px;padding-right:133px;}.md\:px-3\.5{padding-left:0.875rem;padding-right:0.875rem;}.md\:px-4{padding-left:1rem;padding-right:1rem;}.md\:px-6{padding-left:1.5rem;padding-right:1.5rem;}.md\:px-8{padding-left:2rem;padding-right:2rem;}.md\:px-90px{padding-left:90px;padding-right:90px;}.md\:py-\[56px\]{padding-top:56px;padding-bottom:56px;}.md\:py-\[62px\]{padding-top:62px;padding-bottom:62px;}.md\:py-0{padding-top:0;padding-bottom:0;}.md\:py-3{padding-top:0.75rem;padding-bottom:0.75rem;}.md\:py-45px{padding-top:45px;padding-bottom:45px;}.md\:py-68px{padding-top:68px;padding-bottom:68px;}.md\:pb-0{padding-bottom:0;}.md\:pt-0{padding-top:0;}.md\:text-\[15px\]{font-size:15px;}.md\:text-\[16px\]{font-size:16px;}.md\:text-\[32px\]{font-size:32px;}.md\:text-\[40px\]{font-size:40px;}.md\:text-\[64px\]{font-size:64px;}.md\:text-2xl{font-size:1.5rem;line-height:2rem;}.md\:text-base{font-size:1rem;line-height:1.5rem;}.md\:text-xl{font-size:1.25rem;line-height:1.75rem;}.md\:text-white{--un-text-opacity:1;color:rgba(255,255,255,var(--un-text-opacity));}.md\:opacity-0{opacity:0;}.group:hover .md\:group-hover\:opacity-100{opacity:1;}}@media (min-width: 1024px){.lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr));}.lg\:hidden{display:none;}.lg\:w-1\/2{width:50%;}.lg\:flex{display:flex;}.lg\:flex-1{flex:1 1 0%;}.lg\:flex-none{flex:none;}.lg\:flex-row{flex-direction:row;}.lg\:bg-\[\#F7F7F9\]{--un-bg-opacity:1;background-color:rgba(247,247,249,var(--un-bg-opacity));}.lg\:hover\:bg-\[\#F2F2F5\]:hover{--un-bg-opacity:1;background-color:rgba(242,242,245,var(--un-bg-opacity));}.lg\:p-30{padding:7.5rem;}.lg\:px-5{padding-left:1.25rem;padding-right:1.25rem;}.lg\:px-72px{padding-left:72px;padding-right:72px;}.lg\:text-3xl{font-size:1.875rem;line-height:2.25rem;}.lg\:text-lg{font-size:1.125rem;line-height:1.75rem;}}@media (min-width: 1280px){.xl\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr));}.xl\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr));}.xl\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr));}.xl\:h-\[306px\]{height:306px;}.xl\:w-\[509px\]{width:509px;}.xl\:w-\[582px\]{width:582px;}.xl\:flex-row{flex-direction:row;}.xl\:gap-\[133px\]{gap:133px;}.xl\:px-\[194px\]{padding-left:194px;padding-right:194px;}.xl\:pt-\[64px\]{padding-top:64px;}.xl\:text-40px{font-size:40px;}}
