/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
2. [UnoCSS]: allow to override the default border color with css var `--un-default-border-color`
*/

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

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
*/

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

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

button,
select {
  text-transform: none;
}

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

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

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

:-moz-focusring {
  outline: auto;
}

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

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

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

summary {
  display: list-item;
}

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

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

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

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

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

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

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

/*
Set the default cursor for buttons.
*/

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

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

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

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

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

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

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}


*,::before,::after{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgba(0,0,0,0);--un-ring-shadow:0 0 rgba(0,0,0,0);--un-shadow-inset: ;--un-shadow:0 0 rgba(0,0,0,0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(147,197,253,0.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: ;}::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgba(0,0,0,0);--un-ring-shadow:0 0 rgba(0,0,0,0);--un-shadow-inset: ;--un-shadow:0 0 rgba(0,0,0,0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(147,197,253,0.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: ;}.absolute{position:absolute;}.fixed{position:fixed;}.relative{position:relative;}.sticky{position:sticky;}.bottom-\[-100px\]{bottom:-100px;}.left-\[-100px\]{left:-100px;}.left-0{left:0;}.right-\[100\%\]{right:100%;}.top-\[-20\%\]{top:-20%;}.top-0{top:0;}.z--1{z-index:-1;}.z--2{z-index:-2;}.z-100{z-index:100;}.order-0{order:0;}.order-1{order:1;}.order-2{order:2;}.order-3{order:3;}.grid{display:grid;}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr));}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr));}.clear-both{clear:both;}.m-auto{margin:auto;}.mx-\[35px\]{margin-left:35px;margin-right:35px;}.mx-\[46px\]{margin-left:46px;margin-right:46px;}.mx-\[74px\]{margin-left:74px;margin-right:74px;}.mx-auto{margin-left:auto;margin-right:auto;}.mb-\[42px\]{margin-bottom:42px;}.mb-\[50px\]{margin-bottom:50px;}.mb-10{margin-bottom:2.5rem;}.mr-\[11px\]{margin-right:11px;}.mt-\[18px\]{margin-top:18px;}.mt-\[22px\]{margin-top:22px;}.mt-\[26px\]{margin-top:26px;}.mt-\[28px\]{margin-top:28px;}.mt-\[30px\]{margin-top:30px;}.mt-\[31px\]{margin-top:31px;}.mt-\[45px\]{margin-top:45px;}.mt-\[53px\]{margin-top:53px;}.mt-\[58px\]{margin-top:58px;}.mt-\[67px\]{margin-top:67px;}.mt-\[70px\]{margin-top:70px;}.mt-10{margin-top:2.5rem;}.mt-15{margin-top:3.75rem;}.mt-2{margin-top:0.5rem;}.mt-3{margin-top:0.75rem;}.mt-4{margin-top:1rem;}.mt-5{margin-top:1.25rem;}.hidden{display:none;}.aspect-\[267\/135\]{aspect-ratio:267/135;}.aspect-\[267\/226\]{aspect-ratio:267/226;}.aspect-\[323\/206\]{aspect-ratio:323/206;}.aspect-\[448\/260\]{aspect-ratio:448/260;}.h-\[144px\]{height:144px;}.h-\[160\%\]{height:160%;}.h-\[165px\]{height:165px;}.h-\[16px\]{height:16px;}.h-\[20px\]{height:20px;}.h-\[27px\]{height:27px;}.h-\[33px\]{height:33px;}.h-\[413px\]{height:413px;}.h-\[45px\]{height:45px;}.h-\[50px\]{height:50px;}.h-\[55px\]{height:55px;}.h-\[57px\]{height:57px;}.h-\[95px\]{height:95px;}.h-9{height:2.25rem;}.h-full{height:100%;}.max-w-\[1000px\]{max-width:1000px;}.max-w-\[1268px\]{max-width:1268px;}.max-w-\[1482px\]{max-width:1482px;}.max-w-\[1516px\]{max-width:1516px;}.max-w-\[1778px\]{max-width:1778px;}.max-w-\[184px\]{max-width:184px;}.max-w-\[280px\]{max-width:280px;}.max-w-\[283px\]{max-width:283px;}.max-w-\[306px\]{max-width:306px;}.max-w-\[320px\]{max-width:320px;}.max-w-\[322px\]{max-width:322px;}.max-w-\[812px\]{max-width:812px;}.max-w-\[958px\]{max-width:958px;}.max-w-\[978px\]{max-width:978px;}.min-h-\[110px\]{min-height:110px;}.min-h-\[114px\]{min-height:114px;}.min-h-\[26px\]{min-height:26px;}.min-h-\[calc\(100vh-467px\)\]{min-height:calc(100vh - 467px);}.w-\[123px\]{width:123px;}.w-\[16px\]{width:16px;}.w-\[207px\]{width:207px;}.w-\[33px\]{width:33px;}.w-\[407px\]{width:407px;}.w-\[42px\]{width:42px;}.w-\[45px\]{width:45px;}.w-\[50px\]{width:50px;}.w-\[57px\]{width:57px;}.w-3{width:0.75rem;}.w-9{width:2.25rem;}.w-full{width:100%;}.flex{display:flex;}.flex-inline{display:inline-flex;}.flex-1{flex:1 1 0%;}.shrink-0{flex-shrink:0;}.flex-col{flex-direction:column;}.flex-col-reverse{flex-direction:column-reverse;}.cursor-pointer{cursor:pointer;}.resize-none{resize:none;}.items-start{align-items:flex-start;}.items-center{align-items:center;}.justify-end{justify-content:flex-end;}.justify-center{justify-content:center;}.justify-between{justify-content:space-between;}.gap-\[15px\]{gap:15px;}.gap-\[30px\]{gap:30px;}.gap-\[35px\]{gap:35px;}.gap-\[45px\]{gap:45px;}.gap-2{gap:0.5rem;}.gap-5{gap:1.25rem;}.gap-6{gap:1.5rem;}.gap-7{gap:1.75rem;}.gap-x-\[14px\]{column-gap:14px;}.gap-x-\[165px\]{column-gap:165px;}.gap-x-\[64px\]{column-gap:64px;}.gap-x-\[71px\]{column-gap:71px;}.gap-y-\[14px\]{row-gap:14px;}.gap-y-\[18px\]{row-gap:18px;}.overflow-auto{overflow:auto;}.overflow-hidden{overflow:hidden;}.rounded-\[10px\]{border-radius:10px;}.rounded-\[15px\]{border-radius:15px;}.rounded-\[20px\]{border-radius:20px;}.rounded-\[50\%\]{border-radius:50%;}.bg-\[\#152F50\]{--un-bg-opacity:1;background-color:rgba(21,47,80,var(--un-bg-opacity));}.bg-\[\#3C444F\]{--un-bg-opacity:1;background-color:rgba(60,68,79,var(--un-bg-opacity));}.bg-\[\#8F9CAD\]{--un-bg-opacity:1;background-color:rgba(143,156,173,var(--un-bg-opacity));}.bg-\[\#B01640\]{--un-bg-opacity:1;background-color:rgba(176,22,64,var(--un-bg-opacity));}.bg-\[\#DF6851\]{--un-bg-opacity:1;background-color:rgba(223,104,81,var(--un-bg-opacity));}.bg-\[\#f3f4f6\]{--un-bg-opacity:1;background-color:rgba(243,244,246,var(--un-bg-opacity));}.bg-\[\#F9BC92\]{--un-bg-opacity:1;background-color:rgba(249,188,146,var(--un-bg-opacity));}.bg-white{--un-bg-opacity:1;background-color:rgba(255,255,255,var(--un-bg-opacity));}.hover\:bg-\[\#B01640\]:hover{--un-bg-opacity:1;background-color:rgba(176,22,64,var(--un-bg-opacity));}.from-\[\#B01640\]{--un-gradient-from-position:0%;--un-gradient-from:rgba(176,22,64,var(--un-from-opacity, 1)) var(--un-gradient-from-position);--un-gradient-to-position:100%;--un-gradient-to:rgba(176,22,64,0) var(--un-gradient-to-position);--un-gradient-stops:var(--un-gradient-from), var(--un-gradient-to);}.to-\[\#DF6851\]{--un-gradient-to-position:100%;--un-gradient-to:rgba(223,104,81,var(--un-to-opacity, 1)) var(--un-gradient-to-position);}.bg-gradient-to-r{--un-gradient-shape:to right;--un-gradient:var(--un-gradient-shape), var(--un-gradient-stops);background-image:linear-gradient(var(--un-gradient));}.fill-\[\#DF6851\]{--un-fill-opacity:1;fill:rgba(223,104,81,var(--un-fill-opacity));}.object-cover{object-fit:cover;}.p-10{padding:2.5rem;}.px-\[20px\]{padding-left:20px;padding-right:20px;}.px-\[25px\]{padding-left:25px;padding-right:25px;}.px-\[26px\]{padding-left:26px;padding-right:26px;}.px-\[27px\]{padding-left:27px;padding-right:27px;}.px-\[35px\]{padding-left:35px;padding-right:35px;}.px-\[48px\]{padding-left:48px;padding-right:48px;}.px-\[53px\]{padding-left:53px;padding-right:53px;}.px-7{padding-left:1.75rem;padding-right:1.75rem;}.px-9{padding-left:2.25rem;padding-right:2.25rem;}.py-\[135px\]{padding-top:135px;padding-bottom:135px;}.py-\[40px\]{padding-top:40px;padding-bottom:40px;}.py-4{padding-top:1rem;padding-bottom:1rem;}.pb-\[140px\]{padding-bottom:140px;}.pb-\[15px\]{padding-bottom:15px;}.pb-\[32px\]{padding-bottom:32px;}.pb-\[38px\]{padding-bottom:38px;}.pb-\[40px\]{padding-bottom:40px;}.pb-\[45px\]{padding-bottom:45px;}.pb-\[50px\]{padding-bottom:50px;}.pb-\[54px\]{padding-bottom:54px;}.pb-\[55px\]{padding-bottom:55px;}.pb-\[58px\]{padding-bottom:58px;}.pb-\[60px\]{padding-bottom:60px;}.pb-\[65px\]{padding-bottom:65px;}.pb-\[66px\]{padding-bottom:66px;}.pb-\[71px\]{padding-bottom:71px;}.pb-\[77px\]{padding-bottom:77px;}.pb-\[81px\]{padding-bottom:81px;}.pb-10{padding-bottom:2.5rem;}.pl-\[68px\]{padding-left:68px;}.pl-6{padding-left:1.5rem;}.pr-4{padding-right:1rem;}.pr-5{padding-right:1.25rem;}.pr-9{padding-right:2.25rem;}.pt-\[169px\]{padding-top:169px;}.pt-\[19px\]{padding-top:19px;}.pt-\[23px\]{padding-top:23px;}.pt-\[24px\]{padding-top:24px;}.pt-\[26px\]{padding-top:26px;}.pt-\[30px\]{padding-top:30px;}.pt-\[42px\]{padding-top:42px;}.pt-\[46px\]{padding-top:46px;}.pt-\[50px\]{padding-top:50px;}.pt-\[53px\]{padding-top:53px;}.pt-\[58px\]{padding-top:58px;}.pt-\[60px\]{padding-top:60px;}.pt-\[66px\]{padding-top:66px;}.pt-\[70px\]{padding-top:70px;}.pt-\[79px\]{padding-top:79px;}.pt-10{padding-top:2.5rem;}.pt-5{padding-top:1.25rem;}.text-center{text-align:center;}.text-\[14px\]{font-size:14px;}.text-\[16px\]{font-size:16px;}.text-\[20px\]{font-size:20px;}.text-\[25px\]{font-size:25px;}.text-\[35px\]{font-size:35px;}.font-200{font-weight:200;}.font-light{font-weight:300;}.font-medium{font-weight:500;}.font-normal{font-weight:400;}.leading-\[21px\]{line-height:21px;}.leading-\[25px\]{line-height:25px;}.leading-\[26px\]{line-height:26px;}.leading-\[32px\]{line-height:32px;}.leading-\[35px\]{line-height:35px;}.leading-\[40px\]{line-height:40px;}.text-\[\#3c444f\],.text-primary{--un-text-opacity:1;color:rgba(60,68,79,var(--un-text-opacity));}.text-\[\#8F9CAD\]{--un-text-opacity:1;color:rgba(143,156,173,var(--un-text-opacity));}.text-\[\#B01640\]{--un-text-opacity:1;color:rgba(176,22,64,var(--un-text-opacity));}.text-\[\#DF6851\]{--un-text-opacity:1;color:rgba(223,104,81,var(--un-text-opacity));}.text-\[\#ffffff\],.text-white{--un-text-opacity:1;color:rgba(255,255,255,var(--un-text-opacity));}.opacity-10{opacity:0.1;}.opacity-80{opacity:0.8;}.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;}@media (min-width: 768px){.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr));}.md\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr));}.md\:block{display:block;}.md\:hidden{display:none;}.md\:max-w-\[502px\]{max-width:502px;}.md\:max-w-\[678px\]{max-width:678px;}.md\:max-w-\[738px\]{max-width:738px;}.md\:justify-between{justify-content:space-between;}.md\:gap-\[60px\]{gap:60px;}.md\:gap-x-5{column-gap:1.25rem;}.md\:text-\[45px\]{font-size:45px;}.md\:leading-\[70px\]{line-height:70px;}}@media (min-width: 1024px){.lg\:order-0{order:0;}.lg\:col-span-2{grid-column:span 2/span 2;}.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr));}.lg\:float-right{float:right;}.lg\:mx-0{margin-left:0;margin-right:0;}.lg\:mx-auto{margin-left:auto;margin-right:auto;}.lg\:mb-\[100px\]{margin-bottom:100px;}.lg\:mb-\[68px\]{margin-bottom:68px;}.lg\:mb-10{margin-bottom:2.5rem;}.lg\:ml-10{margin-left:2.5rem;}.lg\:mt-\[10px\]{margin-top:10px;}.lg\:mt-\[31px\]{margin-top:31px;}.lg\:mt-\[38px\]{margin-top:38px;}.lg\:mt-\[50px\]{margin-top:50px;}.lg\:mt-\[55px\]{margin-top:55px;}.lg\:mt-\[63px\]{margin-top:63px;}.lg\:mt-\[77px\]{margin-top:77px;}.lg\:mt-\[85px\]{margin-top:85px;}.lg\:mt-0{margin-top:0;}.lg\:mt-2{margin-top:0.5rem;}.lg\:mt-4{margin-top:1rem;}.lg\:mt-6{margin-top:1.5rem;}.lg\:block{display:block;}.lg\:hidden{display:none;}.lg\:aspect-\[1268\/639\]{aspect-ratio:1268/639;}.lg\:aspect-\[1482\/423\]{aspect-ratio:1482/423;}.lg\:aspect-\[585\/620\]{aspect-ratio:585/620;}.lg\:h-\[132px\]{height:132px;}.lg\:h-\[166px\]{height:166px;}.lg\:h-\[18px\]{height:18px;}.lg\:h-\[259px\]{height:259px;}.lg\:h-\[27px\]{height:27px;}.lg\:h-\[62px\]{height:62px;}.lg\:h-\[68px\]{height:68px;}.lg\:h-\[75px\]{height:75px;}.lg\:max-w-\[1012px\]{max-width:1012px;}.lg\:max-w-\[1020px\]{max-width:1020px;}.lg\:max-w-\[1087px\]{max-width:1087px;}.lg\:max-w-\[1364px\]{max-width:1364px;}.lg\:max-w-\[1402px\]{max-width:1402px;}.lg\:max-w-\[1486px\]{max-width:1486px;}.lg\:max-w-\[1660px\]{max-width:1660px;}.lg\:max-w-\[320px\]{max-width:320px;}.lg\:max-w-\[488px\]{max-width:488px;}.lg\:max-w-\[495px\]{max-width:495px;}.lg\:max-w-\[500px\]{max-width:500px;}.lg\:max-w-\[536px\]{max-width:536px;}.lg\:max-w-\[585px\]{max-width:585px;}.lg\:max-w-\[660px\]{max-width:660px;}.lg\:max-w-\[930px\]{max-width:930px;}.lg\:max-w-\[932px\]{max-width:932px;}.lg\:max-w-\[958px\]{max-width:958px;}.lg\:max-w-\[968px\]{max-width:968px;}.lg\:max-w-\[978px\]{max-width:978px;}.lg\:max-w-full{max-width:100%;}.lg\:max-w-none{max-width:none;}.lg\:min-h-\[204px\]{min-height:204px;}.lg\:min-h-\[263px\]{min-height:263px;}.lg\:min-h-\[414px\]{min-height:414px;}.lg\:w-\[17px\]{width:17px;}.lg\:w-\[18px\]{width:18px;}.lg\:w-\[216px\]{width:216px;}.lg\:w-\[252px\]{width:252px;}.lg\:w-\[62px\]{width:62px;}.lg\:w-1\/2{width:50%;}.lg\:w-full{width:100%;}.lg\:flex{display:flex;}.lg\:flex-row{flex-direction:row;}.lg\:items-center{align-items:center;}.lg\:gap-\[30px\]{gap:30px;}.lg\:gap-4{gap:1rem;}.lg\:gap-7{gap:1.75rem;}.lg\:gap-y-\[72px\]{row-gap:72px;}.lg\:rounded-\[15px\]{border-radius:15px;}.lg\:bg-transparent{background-color:transparent;}.lg\:px-\[138px\]{padding-left:138px;padding-right:138px;}.lg\:px-\[148px\]{padding-left:148px;padding-right:148px;}.lg\:px-\[210px\]{padding-left:210px;padding-right:210px;}.lg\:px-\[40px\]{padding-left:40px;padding-right:40px;}.lg\:px-0{padding-left:0;padding-right:0;}.lg\:px-10{padding-left:2.5rem;padding-right:2.5rem;}.lg\:px-15{padding-left:3.75rem;padding-right:3.75rem;}.lg\:px-20{padding-left:5rem;padding-right:5rem;}.lg\:px-25{padding-left:6.25rem;padding-right:6.25rem;}.lg\:py-\[114px\]{padding-top:114px;padding-bottom:114px;}.lg\:py-\[153px\]{padding-top:153px;padding-bottom:153px;}.lg\:pb-\[106px\]{padding-bottom:106px;}.lg\:pb-\[123px\]{padding-bottom:123px;}.lg\:pb-\[125px\]{padding-bottom:125px;}.lg\:pb-\[126px\]{padding-bottom:126px;}.lg\:pb-\[130px\]{padding-bottom:130px;}.lg\:pb-\[136px\]{padding-bottom:136px;}.lg\:pb-\[140px\]{padding-bottom:140px;}.lg\:pb-\[148px\]{padding-bottom:148px;}.lg\:pb-\[170px\]{padding-bottom:170px;}.lg\:pb-\[200px\]{padding-bottom:200px;}.lg\:pb-\[213px\]{padding-bottom:213px;}.lg\:pb-\[230px\]{padding-bottom:230px;}.lg\:pb-\[40px\]{padding-bottom:40px;}.lg\:pb-\[70px\]{padding-bottom:70px;}.lg\:pb-\[76px\]{padding-bottom:76px;}.lg\:pb-\[91px\]{padding-bottom:91px;}.lg\:pb-0{padding-bottom:0;}.lg\:pl-15{padding-left:3.75rem;}.lg\:pt-\[103px\]{padding-top:103px;}.lg\:pt-\[115px\]{padding-top:115px;}.lg\:pt-\[120px\]{padding-top:120px;}.lg\:pt-\[125px\]{padding-top:125px;}.lg\:pt-\[133px\]{padding-top:133px;}.lg\:pt-\[30px\]{padding-top:30px;}.lg\:pt-\[351px\]{padding-top:351px;}.lg\:pt-\[38px\]{padding-top:38px;}.lg\:pt-\[50px\]{padding-top:50px;}.lg\:pt-\[62px\]{padding-top:62px;}.lg\:pt-\[72px\]{padding-top:72px;}.lg\:pt-\[73px\]{padding-top:73px;}.lg\:pt-\[93px\]{padding-top:93px;}.lg\:pt-0{padding-top:0;}.lg\:pt-25{padding-top:6.25rem;}.lg\:text-\[20px\]{font-size:20px;}.lg\:text-\[25px\]{font-size:25px;}.lg\:text-\[30px\]{font-size:30px;}.lg\:text-\[35px\]{font-size:35px;}.lg\:text-\[45px\]{font-size:45px;}.lg\:text-\[70px\]{font-size:70px;}.lg\:leading-\[30px\]{line-height:30px;}.lg\:leading-\[32px\]{line-height:32px;}.lg\:leading-\[40px\]{line-height:40px;}.lg\:leading-\[45px\]{line-height:45px;}.lg\:leading-\[70px\]{line-height:70px;}.lg\:text-white{--un-text-opacity:1;color:rgba(255,255,255,var(--un-text-opacity));}}@media (min-width: 1280px){.xl\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr));}.xl\:ml-\[60px\]{margin-left:60px;}.xl\:min-h-\[32px\]{min-height:32px;}.xl\:gap-\[140px\]{gap:140px;}.xl\:gap-x-\[71px\]{column-gap:71px;}.xl\:px-\[125px\]{padding-left:125px;padding-right:125px;}.xl\:px-\[140px\]{padding-left:140px;padding-right:140px;}.xl\:px-\[226px\]{padding-left:226px;padding-right:226px;}.xl\:px-\[45px\]{padding-left:45px;padding-right:45px;}.xl\:px-10{padding-left:2.5rem;padding-right:2.5rem;}.xl\:px-25{padding-left:6.25rem;padding-right:6.25rem;}.xl\:pb-20{padding-bottom:5rem;}.xl\:pl-25{padding-left:6.25rem;}.xl\:pt-10{padding-top:2.5rem;}.xl\:text-\[20px\]{font-size:20px;}.xl\:text-\[25px\]{font-size:25px;}.xl\:leading-\[30px\]{line-height:30px;}.xl\:leading-\[32px\]{line-height:32px;}}@media (min-width: 1536px){.\32 xl\:mb-\[100px\]{margin-bottom:100px;}.\32 xl\:ml-\[100px\]{margin-left:100px;}.\32 xl\:px-\[108px\]{padding-left:108px;padding-right:108px;}.\32 xl\:px-\[220px\]{padding-left:220px;padding-right:220px;}.\32 xl\:px-\[224px\]{padding-left:224px;padding-right:224px;}.\32 xl\:pl-\[138px\]{padding-left:138px;}}@media (min-width: 1920px){.\33 xl\:mb-0{margin-bottom:0;}.\33 xl\:ml-\[133px\]{margin-left:133px;}}
