/*
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: ;}.auto-container{min-height:calc(100vh - 479px);padding-left:2.25rem;padding-right:2.25rem;}.auto-container-1{padding-left:2.25rem;padding-right:2.25rem;}@media (min-width: 1024px){.auto-container,.auto-container-1{padding-left:4.5rem;padding-right:4.5rem;}}@media (min-width: 1280px){.auto-container,.auto-container-1{padding-left:8.75rem;padding-right:8.75rem;}}.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;}.absolute{position:absolute;}.relative{position:relative;}.sticky{position:sticky;}.before\:absolute::before{position:absolute;}.after\:absolute::after{position:absolute;}.bottom--5{bottom:-1.25rem;}.bottom-\[17px\]{bottom:17px;}.bottom-\[30px\]{bottom:30px;}.left-\[17px\]{left:17px;}.left-\[28px\]{left:28px;}.left-\[50\%\]{left:50%;}.left-0{left:0;}.right-\[10px\]{right:10px;}.right-\[30px\]{right:30px;}.right-2{right:0.5rem;}.top-\[28px\]{top:28px;}.top-\[50\%\]{top:50%;}.top-0{top:0;}.top-2{top:0.5rem;}.before\:left--3::before{left:-0.75rem;}.before\:top--3::before{top:-0.75rem;}.after\:left--3::after{left:-0.75rem;}.after\:left-\[50\%\]::after{left:50%;}.after\:top--3::after{top:-0.75rem;}.after\:top-\[50\%\]::after{top:50%;}.z--1{z-index:-1;}.z--2{z-index:-2;}.z-10{z-index:10;}.z-100{z-index:100;}.z-2{z-index:2;}.z-20{z-index:20;}.z-3{z-index:3;}.grid{display:grid;}.col-span-3{grid-column:span 3/span 3;}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr));}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr));}.grid-cols-none{grid-template-columns:none;}.mx--5{margin-left:-1.25rem;margin-right:-1.25rem;}.mx--9{margin-left:-2.25rem;margin-right:-2.25rem;}.mx-auto{margin-left:auto;margin-right:auto;}.my-\[38px\]{margin-top:38px;margin-bottom:38px;}.my-\[64px\]{margin-top:64px;margin-bottom:64px;}.my-10{margin-top:2.5rem;margin-bottom:2.5rem;}.my-5{margin-top:1.25rem;margin-bottom:1.25rem;}.mb-\[0px\]{margin-bottom:0px;}.mb-\[195px\]{margin-bottom:195px;}.mb-\[31px\]{margin-bottom:31px;}.mb-\[45px\]{margin-bottom:45px;}.mb-\[65px\]{margin-bottom:65px;}.mb-\[97px\]{margin-bottom:97px;}.mb-2{margin-bottom:0.5rem;}.mb-4{margin-bottom:1rem;}.ml-2{margin-left:0.5rem;}.mr-\[20px\]{margin-right:20px;}.mr-\[2px\]{margin-right:2px;}.mr-20{margin-right:5rem;}.mt-\[10px\]{margin-top:10px;}.mt-\[111px\]{margin-top:111px;}.mt-\[14px\]{margin-top:14px;}.mt-\[15px\]{margin-top:15px;}.mt-\[18px\]{margin-top:18px;}.mt-\[22px\]{margin-top:22px;}.mt-\[25px\]{margin-top:25px;}.mt-\[26px\]{margin-top:26px;}.mt-\[27px\]{margin-top:27px;}.mt-\[29px\]{margin-top:29px;}.mt-\[30px\]{margin-top:30px;}.mt-\[34px\]{margin-top:34px;}.mt-\[38px\]{margin-top:38px;}.mt-\[45px\]{margin-top:45px;}.mt-\[50px\]{margin-top:50px;}.mt-\[52px\]{margin-top:52px;}.mt-\[53px\]{margin-top:53px;}.mt-\[65px\]{margin-top:65px;}.mt-\[66px\]{margin-top:66px;}.mt-\[87px\]{margin-top:87px;}.mt-1{margin-top:0.25rem;}.mt-10{margin-top:2.5rem;}.mt-11{margin-top:2.75rem;}.mt-2{margin-top:0.5rem;}.mt-22{margin-top:5.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-8{margin-top:2rem;}.peer:checked~.peer-checked\:block{display:block;}.inline-block{display:inline-block;}.hidden{display:none;}.aspect-\[1363\/556\]{aspect-ratio:1363/556;}.aspect-\[1640\/939\]{aspect-ratio:1640/939;}.aspect-\[264\/221\]{aspect-ratio:264/221;}.aspect-\[318\/172\]{aspect-ratio:318/172;}.aspect-\[318\/185\]{aspect-ratio:318/185;}.aspect-\[319\/186\]{aspect-ratio:319/186;}.aspect-\[321\/193\]{aspect-ratio:321/193;}.aspect-\[536\/397\]{aspect-ratio:536/397;}.h-\[112px\]{height:112px;}.h-\[121px\]{height:121px;}.h-\[135px\]{height:135px;}.h-\[14px\]{height:14px;}.h-\[17px\]{height:17px;}.h-\[182px\]{height:182px;}.h-\[19px\]{height:19px;}.h-\[1px\]{height:1px;}.h-\[20px\]{height:20px;}.h-\[221px\]{height:221px;}.h-\[24px\]{height:24px;}.h-\[29px\]{height:29px;}.h-\[33px\]{height:33px;}.h-\[34px\]{height:34px;}.h-\[38px\]{height:38px;}.h-\[405px\]{height:405px;}.h-\[44px\]{height:44px;}.h-\[49px\]{height:49px;}.h-\[54px\]{height:54px;}.h-\[63px\]{height:63px;}.h-\[68px\]{height:68px;}.h-\[96px\]{height:96px;}.h-0{height:0;}.h-full{height:100%;}.h-screen{height:100vh;}.max-w-\[1087px\]{max-width:1087px;}.max-w-\[1109px\]{max-width:1109px;}.max-w-\[1175px\]{max-width:1175px;}.max-w-\[1364px\]{max-width:1364px;}.max-w-\[1640px\]{max-width:1640px;}.max-w-\[181px\]{max-width:181px;}.max-w-\[215px\]{max-width:215px;}.max-w-\[599px\]{max-width:599px;}.max-w-\[812px\]{max-width:812px;}.max-w-\[874px\]{max-width:874px;}.min-h-\[165px\]{min-height:165px;}.min-h-\[calc\(100vh-479px\)\]{min-height:calc(100vh - 479px);}.min-h-15{min-height:3.75rem;}.min-h-screen{min-height:100vh;}.min-w-full{min-width:100%;}.w-\[112px\]{width:112px;}.w-\[135px\]{width:135px;}.w-\[173px\]{width:173px;}.w-\[17px\]{width:17px;}.w-\[182px\]{width:182px;}.w-\[19px\]{width:19px;}.w-\[200px\]{width:200px;}.w-\[204px\]{width:204px;}.w-\[20px\]{width:20px;}.w-\[232px\]{width:232px;}.w-\[24px\]{width:24px;}.w-\[264px\]{width:264px;}.w-\[33px\]{width:33px;}.w-\[34px\]{width:34px;}.w-\[38px\]{width:38px;}.w-\[405px\]{width:405px;}.w-\[44px\]{width:44px;}.w-\[49px\]{width:49px;}.w-\[54px\]{width:54px;}.w-0{width:0;}.w-10{width:2.5rem;}.w-full{width:100%;}.after\:h-\[10px\]::after{height:10px;}.after\:w-\[10px\]::after{width:10px;}.flex{display:flex;}.flex-1{flex:1 1 0%;}.shrink-0{flex-shrink:0;}.flex-col{flex-direction:column;}.flex-col-reverse{flex-direction:column-reverse;}.translate-x--1\/2,.translate-x-\[-50\%\]{--un-translate-x:-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));}.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));}.after\:translate-x--1\/2::after{--un-translate-x:-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));}.after\:translate-y--1\/2::after{--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{--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));}.peer:checked~.peer-checked\:after\:scale-100::after{--un-scale-x:1;--un-scale-y:1;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));}.after\:scale-0::after{--un-scale-x:0;--un-scale-y:0;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;}.scroll-mt-\[150px\]{scroll-margin-top:150px;}.scroll-mt-\[250px\]{scroll-margin-top:250px;}.scroll-mt-\[50px\]{scroll-margin-top:50px;}.items-start{align-items:flex-start;}.items-center{align-items:center;}.justify-center{justify-content:center;}.justify-between{justify-content:space-between;}.gap-\[13px\]{gap:13px;}.gap-\[14px\]{gap:14px;}.gap-\[25px\]{gap:25px;}.gap-\[30px\]{gap:30px;}.gap-\[50px\]{gap:50px;}.gap-\[52px\]{gap:52px;}.gap-10{gap:2.5rem;}.gap-2{gap:0.5rem;}.gap-20{gap:5rem;}.gap-3{gap:0.75rem;}.gap-4{gap:1rem;}.gap-5{gap:1.25rem;}.gap-6{gap:1.5rem;}.gap-8{gap:2rem;}.gap-x-\[50px\]{column-gap:50px;}.gap-x-\[52px\]{column-gap:52px;}.gap-x-3{column-gap:0.75rem;}.gap-x-4{column-gap:1rem;}.gap-x-7{column-gap:1.75rem;}.gap-y-\[14px\]{row-gap:14px;}.gap-y-\[19px\]{row-gap:19px;}.gap-y-\[23px\]{row-gap:23px;}.gap-y-\[40px\]{row-gap:40px;}.gap-y-4{row-gap:1rem;}.gap-y-6{row-gap:1.5rem;}.gap-y-7{row-gap:1.75rem;}.gap-y-8{row-gap:2rem;}.overflow-hidden{overflow:hidden;}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.border{border-width:1px;}.border-b-1{border-bottom-width:1px;}.border-r-1{border-right-width:1px;}.border-\[\#707070\]{--un-border-opacity:1;border-color:rgba(112,112,112,var(--un-border-opacity));}.border-\[\#c9c9c9\]{--un-border-opacity:1;border-color:rgba(201,201,201,var(--un-border-opacity));}.rounded-\[20px\]{border-radius:20px;}.rounded-\[33px\]{border-radius:33px;}.rounded-\[42px\]{border-radius:42px;}.rounded-\[50\%\]{border-radius:50%;}.rounded-full{border-radius:9999px;}.after\:rounded-\[50\%\]::after{border-radius:50%;}.last\:border-none:last-child{border-style:none;}.bg-\[\#205658\]{--un-bg-opacity:1;background-color:rgba(32,86,88,var(--un-bg-opacity));}.bg-\[\#28969A\]{--un-bg-opacity:1;background-color:rgba(40,150,154,var(--un-bg-opacity));}.bg-\[\#4D894B\]{--un-bg-opacity:1;background-color:rgba(77,137,75,var(--un-bg-opacity));}.bg-\[\#B7B7B7\]{--un-bg-opacity:1;background-color:rgba(183,183,183,var(--un-bg-opacity));}.bg-\[\#C9C9C9\]{--un-bg-opacity:1;background-color:rgba(201,201,201,var(--un-bg-opacity));}.bg-\[rgba\(40\,150\,154\,0\.1\)\]{--un-bg-opacity:0.1;background-color:rgba(40,150,154,var(--un-bg-opacity));}.bg-black{--un-bg-opacity:1;background-color:rgba(0,0,0,var(--un-bg-opacity));}.bg-white{--un-bg-opacity:1;background-color:rgba(255,255,255,var(--un-bg-opacity));}.after\:bg-\[\#707070\]::after{--un-bg-opacity:1;background-color:rgba(112,112,112,var(--un-bg-opacity));}.object-cover{object-fit:cover;}.px-\[21px\]{padding-left:21px;padding-right:21px;}.px-\[30px\]{padding-left:30px;padding-right:30px;}.px-\[34px\]{padding-left:34px;padding-right:34px;}.px-\[35px\]{padding-left:35px;padding-right:35px;}.px-\[52px\]{padding-left:52px;padding-right:52px;}.px-\[58px\]{padding-left:58px;padding-right:58px;}.px-2{padding-left:0.5rem;padding-right:0.5rem;}.px-5{padding-left:1.25rem;padding-right:1.25rem;}.px-9{padding-left:2.25rem;padding-right:2.25rem;}.py-\[29px\]{padding-top:29px;padding-bottom:29px;}.py-\[60px\]{padding-top:60px;padding-bottom:60px;}.py-10{padding-top:2.5rem;padding-bottom:2.5rem;}.pb-\[114px\]{padding-bottom:114px;}.pb-\[150px\]{padding-bottom:150px;}.pb-\[151px\]{padding-bottom:151px;}.pb-\[160px\]{padding-bottom:160px;}.pb-\[203px\]{padding-bottom:203px;}.pb-\[35px\]{padding-bottom:35px;}.pb-\[45px\]{padding-bottom:45px;}.pb-\[50px\]{padding-bottom:50px;}.pb-\[61px\]{padding-bottom:61px;}.pb-\[62px\]{padding-bottom:62px;}.pb-\[82px\]{padding-bottom:82px;}.pb-10{padding-bottom:2.5rem;}.pb-12{padding-bottom:3rem;}.pb-20{padding-bottom:5rem;}.pb-5{padding-bottom:1.25rem;}.pl-\[30px\]{padding-left:30px;}.pl-\[46px\]{padding-left:46px;}.pr-\[30px\]{padding-right:30px;}.pr-15{padding-right:3.75rem;}.pt-\[100px\]{padding-top:100px;}.pt-\[108px\]{padding-top:108px;}.pt-\[130px\]{padding-top:130px;}.pt-\[190px\]{padding-top:190px;}.pt-\[31px\]{padding-top:31px;}.pt-\[33px\]{padding-top:33px;}.pt-\[45px\]{padding-top:45px;}.pt-\[50px\]{padding-top:50px;}.pt-\[53px\]{padding-top:53px;}.pt-\[55px\]{padding-top:55px;}.pt-\[60px\]{padding-top:60px;}.pt-\[68px\]{padding-top:68px;}.pt-\[75px\]{padding-top:75px;}.pt-\[76px\]{padding-top:76px;}.pt-\[80px\]{padding-top:80px;}.pt-\[85px\]{padding-top:85px;}.pt-\[91px\]{padding-top:91px;}.pt-10{padding-top:2.5rem;}.pt-14{padding-top:3.5rem;}.pt-20{padding-top:5rem;}.text-center{text-align:center;}.text-left{text-align:left;}.text-\[14px\]{font-size:14px;}.text-\[16px\]{font-size:16px;}.text-\[18px\]{font-size:18px;}.text-\[20px\]{font-size:20px;}.text-\[22px\]{font-size:22px;}.text-\[23px\]{font-size:23px;}.text-\[25px\]{font-size:25px;}.text-\[30px\]{font-size:30px;}.text-\[35px\]{font-size:35px;}.text-xl{font-size:1.25rem;line-height:1.75rem;}.after\:text-\[20px\]::after{font-size:20px;}.font-bold{font-weight:700;}.font-extrabold{font-weight:800;}.font-medium{font-weight:500;}.font-normal{font-weight:400;}.leading-\[19px\]{line-height:19px;}.leading-\[22px\]{line-height:22px;}.leading-\[24px\]{line-height:24px;}.leading-\[25px\]{line-height:25px;}.leading-\[26px\]{line-height:26px;}.leading-\[27px\]{line-height:27px;}.leading-\[28px\]{line-height:28px;}.leading-\[30px\]{line-height:30px;}.leading-\[32px\]{line-height:32px;}.leading-\[35p\]{line-height:35p;}.leading-\[35px\]{line-height:35px;}.leading-\[40px\]{line-height:40px;}.leading-\[55px\]{line-height:55px;}.font-\[\'Manrope\'\]{font-family:'Manrope';}.text-\[\#000\]{--un-text-opacity:1;color:rgba(0,0,0,var(--un-text-opacity));}.text-\[\#28969a\],.text-\[\#28969A\]{--un-text-opacity:1;color:rgba(40,150,154,var(--un-text-opacity));}.text-\[\#35DEDE\]{--un-text-opacity:1;color:rgba(53,222,222,var(--un-text-opacity));}.text-\[\#4D894B\]{--un-text-opacity:1;color:rgba(77,137,75,var(--un-text-opacity));}.text-\[\#FFFFFF\],.text-white{--un-text-opacity:1;color:rgba(255,255,255,var(--un-text-opacity));}.placeholder\:text-\[\#B3B3B3\]::placeholder{--un-text-opacity:1;color:rgba(179,179,179,var(--un-text-opacity));}.before\:text-red::before{--un-text-opacity:1;color:rgba(248,113,113,var(--un-text-opacity));}.after\:text-red::after{--un-text-opacity:1;color:rgba(248,113,113,var(--un-text-opacity));}.opacity-10{opacity:0.1;}.opacity-50{opacity:0.5;}.opacity-60{opacity:0.6;}.opacity-75{opacity:0.75;}.opacity-77{opacity:0.77;}.outline-none{outline:2px solid transparent;outline-offset:2px;}.after\:transition-all::after{transition-property:all;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.before\:content-\[\'\*\'\]::before{content:'*';}.after\:content-\[\'\'\]::after{content:'';}.after\:content-\[\'\*\'\]::after{content:'*';}@media (min-width: 640px){.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr));}.sm\:mx-0{margin-left:0;margin-right:0;}}@media (min-width: 768px){.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\:pr-5{padding-right:1.25rem;}}@media (min-width: 1024px){.lg\:relative{position:relative;}.lg\:bottom-\[28px\]{bottom:28px;}.lg\:left-\[23px\]{left:23px;}.lg\:left-\[30px\]{left:30px;}.lg\:right-\[14px\]{right:14px;}.lg\:right-\[21px\]{right:21px;}.lg\:top-\[12px\]{top:12px;}.lg\:top-\[48px\]{top:48px;}.lg\:grid{display:grid;}.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr));}.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr));}.lg\:m-auto{margin:auto;}.lg\:mx-\[57px\]{margin-left:57px;margin-right:57px;}.lg\:mx-0{margin-left:0;margin-right:0;}.lg\:mx-auto{margin-left:auto;margin-right:auto;}.lg\:my-\[118px\]{margin-top:118px;margin-bottom:118px;}.lg\:my-\[50px\]{margin-top:50px;margin-bottom:50px;}.lg\:mb-\[130px\]{margin-bottom:130px;}.lg\:mb-\[142px\]{margin-bottom:142px;}.lg\:mb-\[195px\]{margin-bottom:195px;}.lg\:mb-\[48px\]{margin-bottom:48px;}.lg\:mb-\[96px\]{margin-bottom:96px;}.lg\:mr-\[70px\]{margin-right:70px;}.lg\:mt-\[124px\]{margin-top:124px;}.lg\:mt-\[126px\]{margin-top:126px;}.lg\:mt-\[136px\]{margin-top:136px;}.lg\:mt-\[13px\]{margin-top:13px;}.lg\:mt-\[150px\]{margin-top:150px;}.lg\:mt-\[20px\]{margin-top:20px;}.lg\:mt-\[34px\]{margin-top:34px;}.lg\:mt-\[38px\]{margin-top:38px;}.lg\:mt-\[50px\]{margin-top:50px;}.lg\:mt-\[52px\]{margin-top:52px;}.lg\:mt-\[54px\]{margin-top:54px;}.lg\:mt-\[65px\]{margin-top:65px;}.lg\:mt-\[66px\]{margin-top:66px;}.lg\:mt-\[72px\]{margin-top:72px;}.lg\:mt-\[90px\]{margin-top:90px;}.lg\:mt-0{margin-top:0;}.lg\:mt-14{margin-top:3.5rem;}.lg\:mt-15{margin-top:3.75rem;}.lg\:mt-3{margin-top:0.75rem;}.lg\:mt-4{margin-top:1rem;}.lg\:mt-5{margin-top:1.25rem;}.lg\:mt-7{margin-top:1.75rem;}.lg\:mt-9{margin-top:2.25rem;}.lg\:block{display:block;}.lg\:hidden{display:none;}.lg\:aspect-\[1364\/436\]{aspect-ratio:1364/436;}.lg\:aspect-\[536\/397\]{aspect-ratio:536/397;}.lg\:aspect-\[812\/312\]{aspect-ratio:812/312;}.lg\:h-\[146px\]{height:146px;}.lg\:h-\[194px\]{height:194px;}.lg\:h-\[19px\]{height:19px;}.lg\:h-\[26px\]{height:26px;}.lg\:h-\[285px\]{height:285px;}.lg\:h-\[28px\]{height:28px;}.lg\:h-\[45px\]{height:45px;}.lg\:h-\[52px\]{height:52px;}.lg\:h-\[533px\]{height:533px;}.lg\:h-\[58px\]{height:58px;}.lg\:h-\[61px\]{height:61px;}.lg\:h-\[623px\]{height:623px;}.lg\:h-\[63px\]{height:63px;}.lg\:h-\[69px\]{height:69px;}.lg\:h-\[752px\]{height:752px;}.lg\:h-\[84px\]{height:84px;}.lg\:h-15{height:3.75rem;}.lg\:h-auto{height:auto;}.lg\:h-full{height:100%;}.lg\:max-w-\[1007px\]{max-width:1007px;}.lg\:max-w-\[1080px\]{max-width:1080px;}.lg\:max-w-\[1155px\]{max-width:1155px;}.lg\:max-w-\[1353px\]{max-width:1353px;}.lg\:max-w-\[260\.5px\]{max-width:260.5px;}.lg\:max-w-\[398px\]{max-width:398px;}.lg\:max-w-\[414px\]{max-width:414px;}.lg\:max-w-\[935px\]{max-width:935px;}.lg\:max-w-\[950px\]{max-width:950px;}.lg\:max-w-\[991px\]{max-width:991px;}.lg\:min-h-\[207px\]{min-height:207px;}.lg\:min-h-\[97px\]{min-height:97px;}.lg\:w-\[146px\]{width:146px;}.lg\:w-\[180px\]{width:180px;}.lg\:w-\[23px\]{width:23px;}.lg\:w-\[260px\]{width:260px;}.lg\:w-\[26px\]{width:26px;}.lg\:w-\[28px\]{width:28px;}.lg\:w-\[326px\]{width:326px;}.lg\:w-\[360px\]{width:360px;}.lg\:w-\[45px\]{width:45px;}.lg\:w-\[467px\]{width:467px;}.lg\:w-\[52px\]{width:52px;}.lg\:w-\[536px\]{width:536px;}.lg\:w-\[58px\]{width:58px;}.lg\:w-\[61px\]{width:61px;}.lg\:w-1\/2{width:50%;}.lg\:w-15{width:3.75rem;}.lg\:w-auto{width:auto;}.lg\:w-full{width:100%;}.lg\:flex-row{flex-direction:row;}.lg\:flex-col{flex-direction:column;}.lg\:items-end{align-items:flex-end;}.lg\:items-center{align-items:center;}.lg\:justify-start{justify-content:flex-start;}.lg\:justify-between{justify-content:space-between;}.lg\:gap-\[122px\]{gap:122px;}.lg\:gap-\[155px\]{gap:155px;}.lg\:gap-\[21px\]{gap:21px;}.lg\:gap-\[30px\]{gap:30px;}.lg\:gap-\[45px\]{gap:45px;}.lg\:gap-\[46px\]{gap:46px;}.lg\:gap-\[80px\]{gap:80px;}.lg\:gap-0{gap:0;}.lg\:gap-10{gap:2.5rem;}.lg\:gap-7{gap:1.75rem;}.lg\:gap-9{gap:2.25rem;}.lg\:gap-x-20{column-gap:5rem;}.lg\:gap-x-4{column-gap:1rem;}.lg\:gap-x-6{column-gap:1.5rem;}.lg\:gap-y-\[66px\]{row-gap:66px;}.lg\:gap-y-7{row-gap:1.75rem;}.lg\:border,.lg\:border-1{border-width:1px;}.lg\:border-\[\#707070\]{--un-border-opacity:1;border-color:rgba(112,112,112,var(--un-border-opacity));}.lg\:rounded-\[30px\]{border-radius:30px;}.lg\:rounded-\[35px\]{border-radius:35px;}.lg\:rounded-\[40px\]{border-radius:40px;}.lg\:rounded-\[54px\]{border-radius:54px;}.lg\:p-0{padding:0;}.lg\:px-\[122px\]{padding-left:122px;padding-right:122px;}.lg\:px-\[47px\]{padding-left:47px;padding-right:47px;}.lg\:px-0{padding-left:0;padding-right:0;}.lg\:px-10{padding-left:2.5rem;padding-right:2.5rem;}.lg\:px-25{padding-left:6.25rem;padding-right:6.25rem;}.lg\:px-9{padding-left:2.25rem;padding-right:2.25rem;}.lg\:py-\[110px\]{padding-top:110px;padding-bottom:110px;}.lg\:py-\[65px\]{padding-top:65px;padding-bottom:65px;}.lg\:py-30{padding-top:7.5rem;padding-bottom:7.5rem;}.lg\:pb-\[114px\]{padding-bottom:114px;}.lg\:pb-\[117px\]{padding-bottom:117px;}.lg\:pb-\[132px\]{padding-bottom:132px;}.lg\:pb-\[50px\]{padding-bottom:50px;}.lg\:pb-\[65px\]{padding-bottom:65px;}.lg\:pb-\[86px\]{padding-bottom:86px;}.lg\:pb-\[97px\]{padding-bottom:97px;}.lg\:pb-0{padding-bottom:0;}.lg\:pb-15{padding-bottom:3.75rem;}.lg\:pb-50{padding-bottom:12.5rem;}.lg\:pb-9{padding-bottom:2.25rem;}.lg\:pl-\[38px\]{padding-left:38px;}.lg\:pr-\[44px\]{padding-right:44px;}.lg\:pt-\[107px\]{padding-top:107px;}.lg\:pt-\[116px\]{padding-top:116px;}.lg\:pt-\[118px\]{padding-top:118px;}.lg\:pt-\[135px\]{padding-top:135px;}.lg\:pt-\[150px\]{padding-top:150px;}.lg\:pt-\[167px\]{padding-top:167px;}.lg\:pt-\[191px\]{padding-top:191px;}.lg\:pt-\[193px\]{padding-top:193px;}.lg\:pt-\[200px\]{padding-top:200px;}.lg\:pt-\[22px\]{padding-top:22px;}.lg\:pt-\[44px\]{padding-top:44px;}.lg\:pt-\[65px\]{padding-top:65px;}.lg\:pt-\[66px\]{padding-top:66px;}.lg\:pt-\[68px\]{padding-top:68px;}.lg\:pt-\[70px\]{padding-top:70px;}.lg\:pt-\[71px\]{padding-top:71px;}.lg\:pt-\[73px\]{padding-top:73px;}.lg\:pt-\[75px\]{padding-top:75px;}.lg\:pt-\[96px\]{padding-top:96px;}.lg\:pt-0{padding-top:0;}.lg\:pt-10{padding-top:2.5rem;}.lg\:pt-22{padding-top:5.5rem;}.lg\:pt-25{padding-top:6.25rem;}.lg\:pt-9{padding-top:2.25rem;}.lg\:text-center{text-align:center;}.lg\:text-left{text-align:left;}.lg\:text-\[16px\]{font-size:16px;}.lg\:text-\[20px\]{font-size:20px;}.lg\:text-\[25px\]{font-size:25px;}.lg\:text-\[28px\]{font-size:28px;}.lg\:text-\[30px\]{font-size:30px;}.lg\:text-\[35px\]{font-size:35px;}.lg\:text-\[40px\]{font-size:40px;}.lg\:text-\[50px\]{font-size:50px;}.lg\:text-\[55px\]{font-size:55px;}.lg\:text-\[70px\]{font-size:70px;}.lg\:font-extrabold{font-weight:800;}.lg\:font-medium{font-weight:500;}.lg\:font-normal{font-weight:400;}.lg\:leading-\[0px\]{line-height:0px;}.lg\:leading-\[27px\]{line-height:27px;}.lg\:leading-\[32px\]{line-height:32px;}.lg\:leading-\[34px\]{line-height:34px;}.lg\:leading-\[35px\]{line-height:35px;}.lg\:leading-\[40px\]{line-height:40px;}.lg\:leading-\[55p\]{line-height:55p;}.lg\:leading-\[55px\]{line-height:55px;}.lg\:leading-\[65px\]{line-height:65px;}.lg\:leading-\[85px\]{line-height:85px;}.lg\:leading-normal{line-height:1.5;}.lg\:opacity-50{opacity:0.5;}}@media (min-width: 1280px){.xl\:mb-6{margin-bottom:1.5rem;}.xl\:mr-\[120px\]{margin-right:120px;}.xl\:mt-\[0px\]{margin-top:0px;}.xl\:max-w-\[325px\]{max-width:325px;}.xl\:max-w-\[599px\]{max-width:599px;}.xl\:max-w-\[612px\]{max-width:612px;}.xl\:min-h-\[249px\]{min-height:249px;}.xl\:w-\[1088px\]{width:1088px;}.xl\:items-center{align-items:center;}.xl\:gap-\[26px\]{gap:26px;}.xl\:gap-15{gap:3.75rem;}.xl\:gap-x-8{column-gap:2rem;}.xl\:rounded-\[33px\]{border-radius:33px;}.xl\:px-\[138px\]{padding-left:138px;padding-right:138px;}.xl\:px-\[140px\]{padding-left:140px;padding-right:140px;}.xl\:px-0{padding-left:0;padding-right:0;}.xl\:pb-\[80px\]{padding-bottom:80px;}.xl\:pb-12{padding-bottom:3rem;}.xl\:pt-12{padding-top:3rem;}.xl\:text-\[18px\]{font-size:18px;}.xl\:text-\[25px\]{font-size:25px;}}@media (min-width: 1536px){.\32 xl\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr));}.\32 xl\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr));}.\32 xl\:mr-\[170px\]{margin-right:170px;}.\32 xl\:mt-\[58px\]{margin-top:58px;}.\32 xl\:aspect-\[300\/290\]{aspect-ratio:300/290;}.\32 xl\:h-\[290px\]{height:290px;}.\32 xl\:h-\[526px\]{height:526px;}.\32 xl\:h-\[84px\]{height:84px;}.\32 xl\:max-w-\[300px\]{max-width:300px;}.\32 xl\:w-\[260px\]{width:260px;}.\32 xl\:w-\[311px\]{width:311px;}.\32 xl\:w-\[345px\]{width:345px;}.\32 xl\:w-\[505px\]{width:505px;}.\32 xl\:w-\[812px\]{width:812px;}.\32 xl\:gap-x-10{column-gap:2.5rem;}.\32 xl\:px-\[278px\]{padding-left:278px;padding-right:278px;}.\32 xl\:px-10{padding-left:2.5rem;padding-right:2.5rem;}.\32 xl\:px-15{padding-left:3.75rem;padding-right:3.75rem;}.\32 xl\:pb-\[116px\]{padding-bottom:116px;}.\32 xl\:pt-\[120px\]{padding-top:120px;}.\32 xl\:text-\[20px\]{font-size:20px;}.\32 xl\:text-\[25px\]{font-size:25px;}.\32 xl\:text-\[55px\]{font-size:55px;}.\32 xl\:leading-\[35px\]{line-height:35px;}.\32 xl\:leading-\[40px\]{line-height:40px;}.\32 xl\:leading-\[55px\]{line-height:55px;}}@media (min-width: 1720px){.\33 xl\:left-\[40px\]{left:40px;}.\33 xl\:mr-\[230px\]{margin-right:230px;}.\33 xl\:hidden{display:none;}.\33 xl\:h-\[626px\]{height:626px;}.\33 xl\:h-\[71px\]{height:71px;}.\33 xl\:max-w-\[234px\]{max-width:234px;}.\33 xl\:w-\[234px\]{width:234px;}.\33 xl\:w-\[605px\]{width:605px;}.\33 xl\:gap-\[110px\]{gap:110px;}.\33 xl\:gap-\[138px\]{gap:138px;}.\33 xl\:gap-\[247px\]{gap:247px;}.\33 xl\:gap-\[35px\]{gap:35px;}.\33 xl\:gap-x-\[130px\]{column-gap:130px;}.\33 xl\:gap-x-15{column-gap:3.75rem;}.\33 xl\:px-\[85px\]{padding-left:85px;padding-right:85px;}.\33 xl\:pb-\[98px\]{padding-bottom:98px;}.\33 xl\:pt-\[79px\]{padding-top:79px;}}
