/*
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: ;}.common-btn{position:relative;display:inline-block;cursor:pointer;border-radius:9999px;--un-bg-opacity:1;background-color:rgba(90,159,175,var(--un-bg-opacity));padding-top:.14rem;padding-bottom:.11rem;padding-left:.25rem;padding-right:.625rem;font-size:.18rem;line-height:0.25rem;--un-text-opacity:1;color:rgba(255,255,255,var(--un-text-opacity));text-decoration:none;}.common-btn::after{position:absolute;right:.125rem;top:.06rem;display:block;width:.35rem;height:.35rem;--un-url:url(/icons/right-arrow.svg);background-image:var(--un-url);background-size:cover;background-repeat:no-repeat;content:'';}.container1{margin-left:auto;margin-right:auto;max-width:1445px;padding-left:36px;padding-right:36px;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:300ms;}.flex-center{display:flex;align-items:center;justify-content:center;}@media (min-width: 1024px){.container1{padding-left:80px;padding-right:80px;}}.absolute{position:absolute;}.fixed{position:fixed;}.relative{position:relative;}.after\:absolute::after{position:absolute;}.left-\[\.4375rem\]{left:.4375rem;}.left-0{left:0;}.right-\[36px\]{right:36px;}.top-\[16px\]{top:16px;}.top-\[2\.5rem\]{top:2.5rem;}.top-\[90\%\]{top:90%;}.top-0{top:0;}.after\:left-0::after{left:0;}.after\:top-0::after{top:0;}.z-100{z-index:100;}.z-2{z-index:2;}.\[\&\.header-min\]\:mt-0.header-min{margin-top:0;}.mb-\[\.1rem\]{margin-bottom:.1rem;}.mb-\[\.25rem\]{margin-bottom:.25rem;}.mb-\[\.2rem\]{margin-bottom:.2rem;}.mb-\[\.3rem\]{margin-bottom:.3rem;}.mb-\[\.4rem\]{margin-bottom:.4rem;}.mb-\[\.5rem\]{margin-bottom:.5rem;}.mb-\[\.8rem\]{margin-bottom:.8rem;}.mb-\[0\.5rem\]{margin-bottom:0.5rem;}.mb-\[10px\]{margin-bottom:10px;}.mb-\[20px\]{margin-bottom:20px;}.mb-\[25px\]{margin-bottom:25px;}.mt-\[\.1rem\]{margin-top:.1rem;}.mt-\[\.3rem\]{margin-top:.3rem;}.mt-\[16px\]{margin-top:16px;}.after\:block::after{display:block;}.hidden{display:none;}.aspect-square{aspect-ratio:1/1;}.aspect-video{aspect-ratio:16/9;}.group\/header.header-min .group-\[\.header-min\]\/header\:h-\[\.6rem\]{height:.6rem;}.h-\[\.82rem\]{height:.82rem;}.h-\[1\.8rem\]{height:1.8rem;}.h-auto{height:auto;}.h-full{height:100%;}.h-max{height:max-content;}.w-\[\.1rem\]{width:.1rem;}.w-1\/2{width:50%;}.w-2\/5{width:40%;}.w-auto{width:auto;}.w-full{width:100%;}.after\:h-full::after{height:100%;}.after\:w-full::after{width:100%;}.flex{display:flex;}.flex-1{flex:1 1 0%;}.shrink-0{flex-shrink:0;}.flex-row{flex-direction:row;}.flex-col{flex-direction:column;}.flex-wrap{flex-wrap:wrap;}.cursor-pointer{cursor:pointer;}.items-start{align-items:flex-start;}.items-center{align-items:center;}.justify-center{justify-content:center;}.justify-between{justify-content:space-between;}.gap-\[\.2rem\]{gap:.2rem;}.gap-\[\.5rem\]{gap:.5rem;}.gap-\[0\.5rem\]{gap:0.5rem;}.gap-x-\[\.4rem\]{column-gap:.4rem;}.gap-x-\[20px\]{column-gap:20px;}.gap-y-\[\.6rem\]{row-gap:.6rem;}.space-x-\[13px\]>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(13px * calc(1 - var(--un-space-x-reverse)));margin-right:calc(13px * var(--un-space-x-reverse));}.space-y-\[35px\]>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-top:calc(35px * calc(1 - var(--un-space-y-reverse)));margin-bottom:calc(35px * var(--un-space-y-reverse));}.break-words{overflow-wrap:break-word;}.border-b-1{border-bottom-width:1px;}.border-t-1{border-top-width:1px;}.border-black{--un-border-opacity:1;border-color:rgba(0,0,0,var(--un-border-opacity));}.rounded-\[\.15rem\]{border-radius:.15rem;}.\[\&\.header-min\]\:bg-\[\#a7c7cf\]\/89.header-min{background-color:rgba(167,199,207,0.89);}.bg-\[\#000000\]\/27{background-color:rgba(0,0,0,0.27);}.bg-\[\#78a0aa\]\/55{background-color:rgba(120,160,170,0.55);}.bg-\[\#ffffff\],.bg-white{--un-bg-opacity:1;background-color:rgba(255,255,255,var(--un-bg-opacity));}.bg-\[\#ffffff\]\/67{background-color:rgba(255,255,255,0.67);}.bg-\[\#ffffff\]\/85{background-color:rgba(255,255,255,0.85);}.bg-\[rgb\(25\,39\,44\)\]{--un-bg-opacity:1;background-color:rgba(25,39,44,var(--un-bg-opacity));}.bg-transparent{background-color:transparent;}.hover\:bg-\[\#ffffff\]\/0:hover{background-color:rgba(255,255,255,0);}.after\:bg-\[\#39494d70\]::after{--un-bg-opacity:0.44;background-color:rgba(57,73,77,var(--un-bg-opacity));}.bg-cover{background-size:cover;}.bg-center{background-position:center;}.bg-no-repeat{background-repeat:no-repeat;}.object-cover{object-fit:cover;}.p-\[\.2rem\]{padding:.2rem;}.p-\[36px\]{padding:36px;}.px-\[20px\]{padding-left:20px;padding-right:20px;}.px-\[36px\]{padding-left:36px;padding-right:36px;}.py-\[\.1rem\]{padding-top:.1rem;padding-bottom:.1rem;}.py-\[\.6rem\]{padding-top:.6rem;padding-bottom:.6rem;}.py-\[0\.4rem\]{padding-top:0.4rem;padding-bottom:0.4rem;}.py-\[0\.6rem\]{padding-top:0.6rem;padding-bottom:0.6rem;}.py-\[2rem\]{padding-top:2rem;padding-bottom:2rem;}.py-\[36px\]{padding-top:36px;padding-bottom:36px;}.pb-\[\.6rem\]{padding-bottom:.6rem;}.pb-\[1rem\]{padding-bottom:1rem;}.pt-\[\.05rem\]{padding-top:.05rem;}.pt-\[\.1rem\]{padding-top:.1rem;}.pt-\[\.5rem\]{padding-top:.5rem;}.pt-\[1rem\]{padding-top:1rem;}.pt-\[2\.5rem\]{padding-top:2.5rem;}.pt-\[36px\]{padding-top:36px;}.text-center{text-align:center;}.text-\[\.18rem\]{font-size:.18rem;}.text-\[\.2rem\]{font-size:.2rem;}.text-\[\.33rem\]{font-size:.33rem;}.font-bold{font-weight:700;}.font-light{font-weight:300;}.font-semibold{font-weight:600;}.leading-\[\.33rem\]{line-height:.33rem;}.leading-\[1\.5\]{line-height:1.5;}.group\/header.header-min .group-\[\.header-min\]\/header\:hover\:text-white:hover{--un-text-opacity:1;color:rgba(255,255,255,var(--un-text-opacity));}.group\/header.header-min .group-\[\.header-min\]\/header\:text-\[\#292929\]{--un-text-opacity:1;color:rgba(41,41,41,var(--un-text-opacity));}.text-\[\#090a0e\]{--un-text-opacity:1;color:rgba(9,10,14,var(--un-text-opacity));}.text-\[\#4D4F50\]{--un-text-opacity:1;color:rgba(77,79,80,var(--un-text-opacity));}.text-black{--un-text-opacity:1;color:rgba(0,0,0,var(--un-text-opacity));}.text-white{--un-text-opacity:1;color:rgba(255,255,255,var(--un-text-opacity));}.hover\:text-\[\#292929\]:hover{--un-text-opacity:1;color:rgba(41,41,41,var(--un-text-opacity));}.underline{text-decoration-line:underline;}.hover\:underline:hover{text-decoration-line:underline;}.no-underline{text-decoration:none;}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.duration-400{transition-duration:400ms;}.duration-600{transition-duration:600ms;}.after\:content-\[\'\'\]::after{content:'';}@media (min-width: 400px){.ssm\:justify-center{justify-content:center;}}@media (min-width: 640px){.sm\:justify-center{justify-content:center;}}@media (min-width: 768px){.md\:mb-0{margin-bottom:0;}.md\:justify-center{justify-content:center;}.md\:p-\[20px\]{padding:20px;}.md\:font-light{font-weight:300;}}@media (min-width: 1024px){.lg\:absolute{position:absolute;}.lg\:relative{position:relative;}.lg\:right-0{right:0;}.lg\:top-\[\.52rem\]{top:.52rem;}.lg\:top-0{top:0;}.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\: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-\[\.8rem\]{margin-bottom:.8rem;}.lg\:mt-\[\.5rem\]{margin-top:.5rem;}.lg\:mt-0{margin-top:0;}.lg\:block{display:block;}.lg\:hidden{display:none;}.lg\:w-1\/2{width:50%;}.lg\:w-3\/4{width:75%;}.lg\:w-auto{width:auto;}.lg\:w-full{width:100%;}.lg\:flex{display:flex;}.lg\:flex-none{flex:none;}.lg\:flex-row{flex-direction:row;}.lg\:justify-end{justify-content:flex-end;}.lg\:justify-center{justify-content:center;}.lg\:gap-y-\[1rem\]{row-gap:1rem;}.lg\:space-y-\[40px\]>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-top:calc(40px * calc(1 - var(--un-space-y-reverse)));margin-bottom:calc(40px * var(--un-space-y-reverse));}.lg\:bg-transparent{background-color:transparent;}.lg\:p-\[\.4rem\]{padding:.4rem;}.lg\:px-\[40px\]{padding-left:40px;padding-right:40px;}.lg\:px-0{padding-left:0;padding-right:0;}.lg\:px-1\/15{padding-left:6.6666666667%;padding-right:6.6666666667%;}.lg\:px-1\/5{padding-left:20%;padding-right:20%;}.lg\:py-\[0\]{padding-top:0;padding-bottom:0;}.lg\:py-\[1\.4rem\]{padding-top:1.4rem;padding-bottom:1.4rem;}.lg\:pt-0{padding-top:0;}.lg\:text-white{--un-text-opacity:1;color:rgba(255,255,255,var(--un-text-opacity));}}@media (min-width: 1280px){.xl\:justify-center{justify-content:center;}.xl\:pt-\[\.8rem\]{padding-top:.8rem;}}@media (min-width: 1536px){.\32 xl\:justify-center{justify-content:center;}}@media (min-width: 1920px){.\33 xl\:justify-center{justify-content:center;}}
