:root {
    --toastify-color-light: #fff;
    --toastify-color-dark: #121212;
    --toastify-color-info: #3498db;
    --toastify-color-success: #07bc0c;
    --toastify-color-warning: #f1c40f;
    --toastify-color-error: #e74c3c;
    --toastify-color-transparent: hsla(0,0%,100%,.7);
    --toastify-icon-color-info: var(--toastify-color-info);
    --toastify-icon-color-success: var(--toastify-color-success);
    --toastify-icon-color-warning: var(--toastify-color-warning);
    --toastify-icon-color-error: var(--toastify-color-error);
    --toastify-toast-width: 320px;
    --toastify-toast-background: #fff;
    --toastify-toast-min-height: 64px;
    --toastify-toast-max-height: 800px;
    --toastify-font-family: sans-serif;
    --toastify-z-index: 9999;
    --toastify-text-color-light: #757575;
    --toastify-text-color-dark: #fff;
    --toastify-text-color-info: #fff;
    --toastify-text-color-success: #fff;
    --toastify-text-color-warning: #fff;
    --toastify-text-color-error: #fff;
    --toastify-spinner-color: #616161;
    --toastify-spinner-color-empty-area: #e0e0e0;
    --toastify-color-progress-light: linear-gradient(90deg,#4cd964,#5ac8fa,#007aff,#34aadc,#5856d6,#ff2d55);
    --toastify-color-progress-dark: #bb86fc;
    --toastify-color-progress-info: var(--toastify-color-info);
    --toastify-color-progress-success: var(--toastify-color-success);
    --toastify-color-progress-warning: var(--toastify-color-warning);
    --toastify-color-progress-error: var(--toastify-color-error)
}

.Toastify__toast-container {
    z-index: var(--toastify-z-index);
    -webkit-transform: translateZ(var(--toastify-z-index));
    position: fixed;
    padding: 4px;
    width: var(--toastify-toast-width);
    box-sizing: border-box;
    color: #fff
}

.Toastify__toast-container--top-left {
    top: 1em;
    left: 1em
}

.Toastify__toast-container--top-center {
    top: 1em;
    left: 50%;
    transform: translateX(-50%)
}

.Toastify__toast-container--top-right {
    top: 1em;
    right: 1em
}

.Toastify__toast-container--bottom-left {
    bottom: 1em;
    left: 1em
}

.Toastify__toast-container--bottom-center {
    bottom: 1em;
    left: 50%;
    transform: translateX(-50%)
}

.Toastify__toast-container--bottom-right {
    bottom: 1em;
    right: 1em
}

@media only screen and (max-width: 480px) {
    .Toastify__toast-container {
        width:100vw;
        padding: 0;
        left: 0;
        margin: 0
    }

    .Toastify__toast-container--top-center,.Toastify__toast-container--top-left,.Toastify__toast-container--top-right {
        top: 0;
        transform: translateX(0)
    }

    .Toastify__toast-container--bottom-center,.Toastify__toast-container--bottom-left,.Toastify__toast-container--bottom-right {
        bottom: 0;
        transform: translateX(0)
    }

    .Toastify__toast-container--rtl {
        right: 0;
        left: auto
    }
}

.Toastify__toast {
    position: relative;
    min-height: var(--toastify-toast-min-height);
    box-sizing: border-box;
    margin-bottom: 1rem;
    padding: 8px;
    border-radius: 4px;
    box-shadow: 0 1px 10px 0 rgba(0,0,0,.1),0 2px 15px 0 rgba(0,0,0,.05);
    display: flex;
    justify-content: space-between;
    max-height: var(--toastify-toast-max-height);
    overflow: hidden;
    font-family: var(--toastify-font-family);
    cursor: default;
    direction: ltr;
    z-index: 0
}

.Toastify__toast--rtl {
    direction: rtl
}

.Toastify__toast--close-on-click {
    cursor: pointer
}

.Toastify__toast-body {
    margin: auto 0;
    flex: 1 1 auto;
    padding: 6px;
    display: flex;
    align-items: center
}

.Toastify__toast-body>div:last-child {
    word-break: break-word;
    flex: 1
}

.Toastify__toast-icon {
    margin-inline-end:10px;width: 20px;
    flex-shrink: 0;
    display: flex
}

.Toastify--animate {
    animation-fill-mode: both;
    animation-duration: .7s
}

.Toastify--animate-icon {
    animation-fill-mode: both;
    animation-duration: .3s
}

@media only screen and (max-width: 480px) {
    .Toastify__toast {
        margin-bottom:0;
        border-radius: 0
    }
}

.Toastify__toast-theme--dark {
    background: var(--toastify-color-dark);
    color: var(--toastify-text-color-dark)
}

.Toastify__toast-theme--colored.Toastify__toast--default,.Toastify__toast-theme--light {
    background: var(--toastify-color-light);
    color: var(--toastify-text-color-light)
}

.Toastify__toast-theme--colored.Toastify__toast--info {
    color: var(--toastify-text-color-info);
    background: var(--toastify-color-info)
}

.Toastify__toast-theme--colored.Toastify__toast--success {
    color: var(--toastify-text-color-success);
    background: var(--toastify-color-success)
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
    color: var(--toastify-text-color-warning);
    background: var(--toastify-color-warning)
}

.Toastify__toast-theme--colored.Toastify__toast--error {
    color: var(--toastify-text-color-error);
    background: var(--toastify-color-error)
}

.Toastify__progress-bar-theme--light {
    background: var(--toastify-color-progress-light)
}

.Toastify__progress-bar-theme--dark {
    background: var(--toastify-color-progress-dark)
}

.Toastify__progress-bar--info {
    background: var(--toastify-color-progress-info)
}

.Toastify__progress-bar--success {
    background: var(--toastify-color-progress-success)
}

.Toastify__progress-bar--warning {
    background: var(--toastify-color-progress-warning)
}

.Toastify__progress-bar--error {
    background: var(--toastify-color-progress-error)
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning {
    background: var(--toastify-color-transparent)
}

.Toastify__close-button {
    color: #fff;
    background: transparent;
    outline: none;
    border: none;
    padding: 0;
    cursor: pointer;
    opacity: .7;
    transition: .3s ease;
    align-self: flex-start
}

.Toastify__close-button--light {
    color: #000;
    opacity: .3
}

.Toastify__close-button>svg {
    fill: currentColor;
    height: 16px;
    width: 14px
}

.Toastify__close-button:focus,.Toastify__close-button:hover {
    opacity: 1
}

@keyframes Toastify__trackProgress {
    0% {
        transform: scaleX(1)
    }

    to {
        transform: scaleX(0)
    }
}

.Toastify__progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    z-index: var(--toastify-z-index);
    opacity: .7;
    transform-origin: left
}

.Toastify__progress-bar--animated {
    animation: Toastify__trackProgress linear 1 forwards
}

.Toastify__progress-bar--controlled {
    transition: transform .2s
}

.Toastify__progress-bar--rtl {
    right: 0;
    left: auto;
    transform-origin: right
}

.Toastify__spinner {
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    border: 2px solid;
    border-radius: 100%;
    border-color: var(--toastify-spinner-color-empty-area);
    border-right-color: var(--toastify-spinner-color);
    animation: Toastify__spin .65s linear infinite
}

@keyframes Toastify__bounceInRight {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(3000px,0,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(-25px,0,0)
    }

    75% {
        transform: translate3d(10px,0,0)
    }

    90% {
        transform: translate3d(-5px,0,0)
    }

    to {
        transform: none
    }
}

@keyframes Toastify__bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px,0,0)
    }

    to {
        opacity: 0;
        transform: translate3d(2000px,0,0)
    }
}

@keyframes Toastify__bounceInLeft {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(-3000px,0,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(25px,0,0)
    }

    75% {
        transform: translate3d(-10px,0,0)
    }

    90% {
        transform: translate3d(5px,0,0)
    }

    to {
        transform: none
    }
}

@keyframes Toastify__bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px,0,0)
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px,0,0)
    }
}

@keyframes Toastify__bounceInUp {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0,3000px,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0,-20px,0)
    }

    75% {
        transform: translate3d(0,10px,0)
    }

    90% {
        transform: translate3d(0,-5px,0)
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__bounceOutUp {
    20% {
        transform: translate3d(0,-10px,0)
    }

    40%,45% {
        opacity: 1;
        transform: translate3d(0,20px,0)
    }

    to {
        opacity: 0;
        transform: translate3d(0,-2000px,0)
    }
}

@keyframes Toastify__bounceInDown {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0,-3000px,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0,25px,0)
    }

    75% {
        transform: translate3d(0,-10px,0)
    }

    90% {
        transform: translate3d(0,5px,0)
    }

    to {
        transform: none
    }
}

@keyframes Toastify__bounceOutDown {
    20% {
        transform: translate3d(0,10px,0)
    }

    40%,45% {
        opacity: 1;
        transform: translate3d(0,-20px,0)
    }

    to {
        opacity: 0;
        transform: translate3d(0,2000px,0)
    }
}

.Toastify__bounce-enter--bottom-left,.Toastify__bounce-enter--top-left {
    animation-name: Toastify__bounceInLeft
}

.Toastify__bounce-enter--bottom-right,.Toastify__bounce-enter--top-right {
    animation-name: Toastify__bounceInRight
}

.Toastify__bounce-enter--top-center {
    animation-name: Toastify__bounceInDown
}

.Toastify__bounce-enter--bottom-center {
    animation-name: Toastify__bounceInUp
}

.Toastify__bounce-exit--bottom-left,.Toastify__bounce-exit--top-left {
    animation-name: Toastify__bounceOutLeft
}

.Toastify__bounce-exit--bottom-right,.Toastify__bounce-exit--top-right {
    animation-name: Toastify__bounceOutRight
}

.Toastify__bounce-exit--top-center {
    animation-name: Toastify__bounceOutUp
}

.Toastify__bounce-exit--bottom-center {
    animation-name: Toastify__bounceOutDown
}

@keyframes Toastify__zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}

@keyframes Toastify__zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    to {
        opacity: 0
    }
}

.Toastify__zoom-enter {
    animation-name: Toastify__zoomIn
}

.Toastify__zoom-exit {
    animation-name: Toastify__zoomOut
}

@keyframes Toastify__flipIn {
    0% {
        transform: perspective(400px) rotateX(90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        transform: perspective(400px) rotateX(-20deg);
        animation-timing-function: ease-in
    }

    60% {
        transform: perspective(400px) rotateX(10deg);
        opacity: 1
    }

    80% {
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

@keyframes Toastify__flipOut {
    0% {
        transform: perspective(400px)
    }

    30% {
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1
    }

    to {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

.Toastify__flip-enter {
    animation-name: Toastify__flipIn
}

.Toastify__flip-exit {
    animation-name: Toastify__flipOut
}

@keyframes Toastify__slideInRight {
    0% {
        transform: translate3d(110%,0,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInLeft {
    0% {
        transform: translate3d(-110%,0,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInUp {
    0% {
        transform: translate3d(0,110%,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInDown {
    0% {
        transform: translate3d(0,-110%,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideOutRight {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(110%,0,0)
    }
}

@keyframes Toastify__slideOutLeft {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(-110%,0,0)
    }
}

@keyframes Toastify__slideOutDown {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0,500px,0)
    }
}

@keyframes Toastify__slideOutUp {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0,-500px,0)
    }
}

.Toastify__slide-enter--bottom-left,.Toastify__slide-enter--top-left {
    animation-name: Toastify__slideInLeft
}

.Toastify__slide-enter--bottom-right,.Toastify__slide-enter--top-right {
    animation-name: Toastify__slideInRight
}

.Toastify__slide-enter--top-center {
    animation-name: Toastify__slideInDown
}

.Toastify__slide-enter--bottom-center {
    animation-name: Toastify__slideInUp
}

.Toastify__slide-exit--bottom-left,.Toastify__slide-exit--top-left {
    animation-name: Toastify__slideOutLeft
}

.Toastify__slide-exit--bottom-right,.Toastify__slide-exit--top-right {
    animation-name: Toastify__slideOutRight
}

.Toastify__slide-exit--top-center {
    animation-name: Toastify__slideOutUp
}

.Toastify__slide-exit--bottom-center {
    animation-name: Toastify__slideOutDown
}

@keyframes Toastify__spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

/*
! tailwindcss v3.4.9 | MIT License | https://tailwindcss.com
*/
*,:after,:before {
    box-sizing: border-box;
    border: 0 solid
}

:after,:before {
    --tw-content: ""
}

:host,html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    font-family: ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent
}

body {
    margin: 0;
    line-height: inherit
}

hr {
    height: 0;
    color: inherit;
    border-top-width: 1px
}

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

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

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

b,strong {
    font-weight: bolder
}

code,kbd,pre,samp {
    font-family: ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;
    font-feature-settings: normal;
    font-variation-settings: normal;
    font-size: 1em
}

small {
    font-size: 80%
}

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

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse
}

button,input,optgroup,select,textarea {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
    padding: 0
}

button,select {
    text-transform: none
}

button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]) {
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none
}

:-moz-focusring {
    outline: auto
}

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

progress {
    vertical-align: baseline
}

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

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

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

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

summary {
    display: list-item
}

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

fieldset {
    margin: 0
}

fieldset,legend {
    padding: 0
}

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

dialog {
    padding: 0
}

textarea {
    resize: vertical
}

input::-moz-placeholder,textarea::-moz-placeholder {
    opacity: 1;
    color: #9ca3af
}

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

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

:disabled {
    cursor: default
}

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

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

[hidden] {
    display: none
}

*,:after,:before {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgba(59,130,246,.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style:
}

::backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgba(59,130,246,.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style:
}

.container {
    width: 100%
}

@media (min-width: 390px) {
    .container {
        max-width:390px
    }
}

@media (min-width: 420px) {
    .container {
        max-width:420px
    }
}

@media (min-width: 475px) {
    .container {
        max-width:475px
    }
}

@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
    }
}

.bg-line {
    background-image: url(/home/line-bg.png);
    background-position: 50%;
    background-repeat: repeat
}

.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
}

.visible {
    visibility: visible
}

.\!fixed {
    position: fixed!important
}

.fixed {
    position: fixed
}

.absolute {
    position: absolute
}

.relative {
    position: relative
}

.inset-0 {
    inset: 0
}

.-bottom-1 {
    bottom: -.25rem
}

.bottom-0 {
    bottom: 0
}

.bottom-\[-10px\] {
    bottom: -10px
}

.bottom-\[-2px\] {
    bottom: -2px
}

.bottom-\[-3px\] {
    bottom: -3px
}

.bottom-\[100\%\] {
    bottom: 100%
}

.bottom-\[30px\] {
    bottom: 30px
}

.bottom-\[3px\] {
    bottom: 3px
}

.bottom-\[52\%\] {
    bottom: 52%
}

.bottom-\[60px\] {
    bottom: 60px
}

.bottom-full {
    bottom: 100%
}

.left-0 {
    left: 0
}

.left-1\/2 {
    left: 50%
}

.left-3 {
    left: .75rem
}

.left-\[0px\] {
    left: 0
}

.left-\[19px\] {
    left: 19px
}

.left-\[20px\] {
    left: 20px
}

.left-\[48\%\] {
    left: 48%
}

.left-\[49px\] {
    left: 49px
}

.left-\[50\%\] {
    left: 50%
}

.left-\[90px\] {
    left: 90px
}

.left-\[94\%\] {
    left: 94%
}

.left-\[calc\(-4vw\+1\.2rem\)\] {
    left: calc(-4vw + 1.2rem)
}

.right-0 {
    right: 0
}

.right-1 {
    right: .25rem
}

.right-2 {
    right: .5rem
}

.right-3 {
    right: .75rem
}

.right-4 {
    right: 1rem
}

.right-6 {
    right: 1.5rem
}

.right-\[-15px\] {
    right: -15px
}

.right-\[-2px\] {
    right: -2px
}

.right-\[-3px\] {
    right: -3px
}

.right-\[-43px\] {
    right: -43px
}

.right-\[0\],.right-\[0px\] {
    right: 0
}

.right-\[15\%\] {
    right: 15%
}

.right-\[40px\] {
    right: 40px
}

.right-\[49px\] {
    right: 49px
}

.right-\[calc\(-3\.4vw\+1\.2rem\)\] {
    right: calc(-3.4vw + 1.2rem)
}

.right-\[calc\(-3\.6vw\+1\.2rem\)\] {
    right: calc(-3.6vw + 1.2rem)
}

.top-0 {
    top: 0
}

.top-1\/2 {
    top: 50%
}

.top-4 {
    top: 1rem
}

.top-8 {
    top: 2rem
}

.top-\[-23px\] {
    top: -23px
}

.top-\[-25px\] {
    top: -25px
}

.top-\[-35px\] {
    top: -35px
}

.top-\[100\%\] {
    top: 100%
}

.top-\[10px\] {
    top: 10px
}

.top-\[20\%\] {
    top: 20%
}

.top-\[42px\] {
    top: 42px
}

.top-\[50\%\] {
    top: 50%
}

.top-\[60px\] {
    top: 60px
}

.top-\[64\%\] {
    top: 64%
}

.top-\[64px\] {
    top: 64px
}

.z-20 {
    z-index: 20
}

.z-\[0\] {
    z-index: 0
}

.z-\[1000\] {
    z-index: 1000
}

.z-\[100\] {
    z-index: 100
}

.z-\[101\] {
    z-index: 101
}

.z-\[10\] {
    z-index: 10
}

.z-\[120\] {
    z-index: 120
}

.z-\[16\] {
    z-index: 16
}

.z-\[1\] {
    z-index: 1
}

.z-\[20\] {
    z-index: 20
}

.z-\[2\] {
    z-index: 2
}

.z-\[3\] {
    z-index: 3
}

.z-\[900\] {
    z-index: 900
}

.z-\[9999999999\] {
    z-index: 9999999999
}

.m-\[2px\] {
    margin: 2px
}

.-mx-3 {
    margin-left: -.75rem;
    margin-right: -.75rem
}

.mx-1 {
    margin-left: .25rem;
    margin-right: .25rem
}

.mx-2 {
    margin-left: .5rem;
    margin-right: .5rem
}

.mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem
}

.mx-auto {
    margin-left: auto;
    margin-right: auto
}

.my-2 {
    margin-top: .5rem;
    margin-bottom: .5rem
}

.my-3 {
    margin-top: .75rem;
    margin-bottom: .75rem
}

.my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem
}

.my-\[2px\] {
    margin-top: 2px;
    margin-bottom: 2px
}

.-mb-10 {
    margin-bottom: -2.5rem
}

.-mb-2 {
    margin-bottom: -.5rem
}

.-ml-2 {
    margin-left: -.5rem
}

.-mt-3 {
    margin-top: -.75rem
}

.mb-0 {
    margin-bottom: 0
}

.mb-1 {
    margin-bottom: .25rem
}

.mb-12 {
    margin-bottom: 3rem
}

.mb-2 {
    margin-bottom: .5rem
}

.mb-4 {
    margin-bottom: 1rem
}

.mb-5 {
    margin-bottom: 1.25rem
}

.mb-6 {
    margin-bottom: 1.5rem
}

.mb-7 {
    margin-bottom: 1.75rem
}

.mb-\[-14px\] {
    margin-bottom: -14px
}

.mb-\[-60px\] {
    margin-bottom: -60px
}

.mb-\[10px\] {
    margin-bottom: 10px
}

.mb-\[30px\] {
    margin-bottom: 30px
}

.mb-\[35px\] {
    margin-bottom: 35px
}

.mb-\[40px\] {
    margin-bottom: 40px
}

.mb-\[5px\] {
    margin-bottom: 5px
}

.mb-\[70px\] {
    margin-bottom: 70px
}

.ml-1 {
    margin-left: .25rem
}

.ml-2 {
    margin-left: .5rem
}

.ml-4 {
    margin-left: 1rem
}

.ml-\[-50px\] {
    margin-left: -50px
}

.ml-\[10px\] {
    margin-left: 10px
}

.mr-1 {
    margin-right: .25rem
}

.mr-2 {
    margin-right: .5rem
}

.mr-3 {
    margin-right: .75rem
}

.mr-4 {
    margin-right: 1rem
}

.mr-\[-10px\] {
    margin-right: -10px
}

.mr-\[-30px\] {
    margin-right: -30px
}

.mr-\[-5px\] {
    margin-right: -5px
}

.mr-\[20px\] {
    margin-right: 20px
}

.mr-\[3px\] {
    margin-right: 3px
}

.mr-\[8px\] {
    margin-right: 8px
}

.mt-0 {
    margin-top: 0
}

.mt-1 {
    margin-top: .25rem
}

.mt-10 {
    margin-top: 2.5rem
}

.mt-2 {
    margin-top: .5rem
}

.mt-20 {
    margin-top: 5rem
}

.mt-3 {
    margin-top: .75rem
}

.mt-4 {
    margin-top: 1rem
}

.mt-5 {
    margin-top: 1.25rem
}

.mt-6 {
    margin-top: 1.5rem
}

.mt-\[-6px\] {
    margin-top: -6px
}

.mt-\[100px\] {
    margin-top: 100px
}

.mt-\[18px\] {
    margin-top: 18px
}

.mt-\[35px\] {
    margin-top: 35px
}

.mt-\[52px\] {
    margin-top: 52px
}

.mt-\[5px\] {
    margin-top: 5px
}

.mt-\[70px\] {
    margin-top: 70px
}

.box-content {
    box-sizing: content-box
}

.block {
    display: block
}

.inline-block {
    display: inline-block
}

.inline {
    display: inline
}

.flex {
    display: flex
}

.inline-flex {
    display: inline-flex
}

.grid {
    display: grid
}

.contents {
    display: contents
}

.hidden {
    display: none
}

.aspect-square {
    aspect-ratio: 1/1
}

.size-1 {
    width: .25rem;
    height: .25rem
}

.size-10 {
    width: 2.5rem;
    height: 2.5rem
}

.size-3 {
    width: .75rem;
    height: .75rem
}

.size-4 {
    width: 1rem;
    height: 1rem
}

.size-5 {
    width: 1.25rem;
    height: 1.25rem
}

.size-6 {
    width: 1.5rem;
    height: 1.5rem
}

.size-7 {
    width: 1.75rem;
    height: 1.75rem
}

.size-8 {
    width: 2rem;
    height: 2rem
}

.size-\[15px\] {
    width: 15px;
    height: 15px
}

.size-\[18px\] {
    width: 18px;
    height: 18px
}

.size-\[27px\] {
    width: 27px;
    height: 27px
}

.size-\[30px\] {
    width: 30px;
    height: 30px
}

.size-\[32px\] {
    width: 32px;
    height: 32px
}

.size-\[36px\] {
    width: 36px;
    height: 36px
}

.size-\[39px\] {
    width: 39px;
    height: 39px
}

.size-\[40px\] {
    width: 40px;
    height: 40px
}

.size-\[42px\] {
    width: 42px;
    height: 42px
}

.size-\[50px\] {
    width: 50px;
    height: 50px
}

.size-\[60\%\] {
    width: 60%;
    height: 60%
}

.size-\[70px\] {
    width: 70px;
    height: 70px
}

.size-full {
    width: 100%;
    height: 100%
}

.\!h-\[20px\] {
    height: 20px!important
}

.\!h-\[47px\] {
    height: 47px!important
}

.\!h-\[48px\] {
    height: 48px!important
}

.\!h-\[50px\] {
    height: 50px!important
}

.h-12 {
    height: 3rem
}

.h-2 {
    height: .5rem
}

.h-5 {
    height: 1.25rem
}

.h-6 {
    height: 1.5rem
}

.h-8 {
    height: 2rem
}

.h-\[0\.75px\] {
    height: .75px
}

.h-\[100px\] {
    height: 100px
}

.h-\[100vh\] {
    height: 100vh
}

.h-\[105px\] {
    height: 105px
}

.h-\[124px\] {
    height: 124px
}

.h-\[128px\] {
    height: 128px
}

.h-\[12px\] {
    height: 12px
}

.h-\[148px\] {
    height: 148px
}

.h-\[170px\] {
    height: 170px
}

.h-\[18px\] {
    height: 18px
}

.h-\[1px\] {
    height: 1px
}

.h-\[222px\] {
    height: 222px
}

.h-\[24px\] {
    height: 24px
}

.h-\[260px\] {
    height: 260px
}

.h-\[270px\] {
    height: 270px
}

.h-\[28\.7vw\] {
    height: 28.7vw
}

.h-\[2px\] {
    height: 2px
}

.h-\[30px\] {
    height: 30px
}

.h-\[32px\] {
    height: 32px
}

.h-\[343px\] {
    height: 343px
}

.h-\[345px\] {
    height: 345px
}

.h-\[35px\] {
    height: 35px
}

.h-\[36px\] {
    height: 36px
}

.h-\[3vw\] {
    height: 3vw
}

.h-\[4\.5vw\] {
    height: 4.5vw
}

.h-\[40px\] {
    height: 40px
}

.h-\[42px\] {
    height: 42px
}

.h-\[44px\] {
    height: 44px
}

.h-\[45px\] {
    height: 45px
}

.h-\[460px\] {
    height: 460px
}

.h-\[48px\] {
    height: 48px
}

.h-\[49px\] {
    height: 49px
}

.h-\[50px\] {
    height: 50px
}

.h-\[52px\] {
    height: 52px
}

.h-\[54px\] {
    height: 54px
}

.h-\[56px\] {
    height: 56px
}

.h-\[58px\] {
    height: 58px
}

.h-\[61px\] {
    height: 61px
}

.h-\[62px\] {
    height: 62px
}

.h-\[64px\] {
    height: 64px
}

.h-\[65px\] {
    height: 65px
}

.h-\[66px\] {
    height: 66px
}

.h-\[68px\] {
    height: 68px
}

.h-\[69px\] {
    height: 69px
}

.h-\[70px\] {
    height: 70px
}

.h-\[75px\] {
    height: 75px
}

.h-\[80px\] {
    height: 80px
}

.h-\[84px\] {
    height: 84px
}

.h-auto {
    height: auto
}

.h-full {
    height: 100%
}

.h-screen {
    height: 100vh
}

.max-h-0 {
    max-height: 0
}

.max-h-\[400px\] {
    max-height: 400px
}

.max-h-none {
    max-height: none
}

.min-h-\[0px\] {
    min-height: 0
}

.min-h-\[100vh\] {
    min-height: 100vh
}

.min-h-\[1px\] {
    min-height: 1px
}

.min-h-\[400px\] {
    min-height: 400px
}

.min-h-\[52px\] {
    min-height: 52px
}

.min-h-full {
    min-height: 100%
}

.min-h-screen {
    min-height: 100vh
}

.\!w-\[20px\] {
    width: 20px!important
}

.w-0 {
    width: 0
}

.w-1\/2 {
    width: 50%
}

.w-11 {
    width: 2.75rem
}

.w-2 {
    width: .5rem
}

.w-5 {
    width: 1.25rem
}

.w-8 {
    width: 2rem
}

.w-\[10\%\] {
    width: 10%
}

.w-\[100\%\] {
    width: 100%
}

.w-\[100px\] {
    width: 100px
}

.w-\[100vw\] {
    width: 100vw
}

.w-\[10vw\] {
    width: 10vw
}

.w-\[11\.3\%\] {
    width: 11.3%
}

.w-\[12\%\] {
    width: 12%
}

.w-\[127px\] {
    width: 127px
}

.w-\[128px\] {
    width: 128px
}

.w-\[14px\] {
    width: 14px
}

.w-\[14vw\] {
    width: 14vw
}

.w-\[15\%\] {
    width: 15%
}

.w-\[162px\] {
    width: 162px
}

.w-\[169px\] {
    width: 169px
}

.w-\[16px\] {
    width: 16px
}

.w-\[1px\] {
    width: 1px
}

.w-\[20\%\] {
    width: 20%
}

.w-\[225px\] {
    width: 225px
}

.w-\[244px\] {
    width: 244px
}

.w-\[24px\] {
    width: 24px
}

.w-\[25vw\] {
    width: 25vw
}

.w-\[261px\] {
    width: 261px
}

.w-\[28\.7vw\] {
    width: 28.7vw
}

.w-\[2px\] {
    width: 2px
}

.w-\[30\%\] {
    width: 30%
}

.w-\[300px\] {
    width: 300px
}

.w-\[30vw\] {
    width: 30vw
}

.w-\[32px\] {
    width: 32px
}

.w-\[350px\] {
    width: 350px
}

.w-\[36px\] {
    width: 36px
}

.w-\[390px\] {
    width: 390px
}

.w-\[40\%\] {
    width: 40%
}

.w-\[400px\] {
    width: 400px
}

.w-\[40px\] {
    width: 40px
}

.w-\[40vw\] {
    width: 40vw
}

.w-\[440px\] {
    width: 440px
}

.w-\[4vw\] {
    width: 4vw
}

.w-\[50px\] {
    width: 50px
}

.w-\[60\%\] {
    width: 60%
}

.w-\[65\%\] {
    width: 65%
}

.w-\[65px\] {
    width: 65px
}

.w-\[70\%\] {
    width: 70%
}

.w-\[80px\] {
    width: 80px
}

.w-\[83px\] {
    width: 83px
}

.w-\[85\%\] {
    width: 85%
}

.w-\[85vw\] {
    width: 85vw
}

.w-\[8vw\] {
    width: 8vw
}

.w-\[90vw\] {
    width: 90vw
}

.w-\[95vw\] {
    width: 95vw
}

.w-\[968px\] {
    width: 968px
}

.w-\[calc\(100\%\+20px\)\] {
    width: calc(100% + 20px)
}

.w-auto {
    width: auto
}

.w-full {
    width: 100%
}

.w-screen {
    width: 100vw
}

.min-w-\[100\%\] {
    min-width: 100%
}

.min-w-\[14px\] {
    min-width: 14px
}

.min-w-\[18px\] {
    min-width: 18px
}

.max-w-3xl {
    max-width: 48rem
}

.max-w-7xl {
    max-width: 80rem
}

.max-w-\[1400px\] {
    max-width: 1400px
}

.max-w-\[157px\] {
    max-width: 157px
}

.max-w-\[200px\] {
    max-width: 200px
}

.max-w-\[25px\] {
    max-width: 25px
}

.max-w-\[400px\] {
    max-width: 400px
}

.max-w-\[410px\] {
    max-width: 410px
}

.max-w-\[430px\] {
    max-width: 430px
}

.max-w-\[450px\] {
    max-width: 450px
}

.max-w-\[500px\] {
    max-width: 500px
}

.max-w-\[535px\] {
    max-width: 535px
}

.max-w-\[600px\] {
    max-width: 600px
}

.max-w-\[640px\] {
    max-width: 640px
}

.max-w-\[745px\] {
    max-width: 745px
}

.max-w-\[80\%\] {
    max-width: 80%
}

.max-w-\[800px\] {
    max-width: 800px
}

.max-w-\[950px\] {
    max-width: 950px
}

.max-w-full {
    max-width: 100%
}

.max-w-none {
    max-width: none
}

.flex-1 {
    flex: 1 1 0%
}

.flex-\[2\] {
    flex: 2
}

.flex-shrink-0,.shrink-0 {
    flex-shrink: 0
}

.-translate-x-1\/2 {
    --tw-translate-x: -50%
}

.-translate-x-1\/2,.-translate-y-1\/2 {
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.-translate-y-1\/2 {
    --tw-translate-y: -50%
}

.-translate-y-full {
    --tw-translate-y: -100%
}

.-translate-y-full,.translate-x-1\/2 {
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.translate-x-1\/2 {
    --tw-translate-x: 50%
}

.translate-x-\[-50\%\] {
    --tw-translate-x: -50%
}

.translate-x-\[-50\%\],.translate-y-1\/2 {
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.translate-y-1\/2 {
    --tw-translate-y: 50%
}

.-rotate-180 {
    --tw-rotate: -180deg
}

.-rotate-180,.-rotate-90 {
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.-rotate-90 {
    --tw-rotate: -90deg
}

.rotate-180 {
    --tw-rotate: 180deg
}

.rotate-180,.rotate-45 {
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.rotate-45 {
    --tw-rotate: 45deg
}

.-scale-100 {
    --tw-scale-x: -1;
    --tw-scale-y: -1
}

.-scale-100,.scale-100 {
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.scale-100 {
    --tw-scale-x: 1;
    --tw-scale-y: 1
}

.scale-75 {
    --tw-scale-x: .75;
    --tw-scale-y: .75
}

.scale-75,.scale-95 {
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.scale-95 {
    --tw-scale-x: .95;
    --tw-scale-y: .95
}

.transform {
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    to {
        transform: translateX(calc(-100% - 2rem))
    }
}

.animate-marquee {
    animation: marquee 30s linear infinite
}

.cursor-not-allowed {
    cursor: not-allowed
}

.cursor-pointer {
    cursor: pointer
}

.select-none {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.resize {
    resize: both
}

.grid-cols-1 {
    grid-template-columns: repeat(1,minmax(0,1fr))
}

.grid-cols-3 {
    grid-template-columns: repeat(3,minmax(0,1fr))
}

.grid-rows-\[0fr\] {
    grid-template-rows: 0fr
}

.grid-rows-\[1fr\] {
    grid-template-rows: 1fr
}

.flex-row {
    flex-direction: row
}

.flex-col {
    flex-direction: column
}

.flex-wrap {
    flex-wrap: wrap
}

.items-start {
    align-items: flex-start
}

.items-end {
    align-items: flex-end
}

.items-center {
    align-items: center
}

.items-baseline {
    align-items: baseline
}

.items-stretch {
    align-items: stretch
}

.justify-start {
    justify-content: flex-start
}

.justify-end {
    justify-content: flex-end
}

.justify-center {
    justify-content: center
}

.justify-between {
    justify-content: space-between
}

.gap-0 {
    gap: 0
}

.gap-1 {
    gap: .25rem
}

.gap-10 {
    gap: 2.5rem
}

.gap-2 {
    gap: .5rem
}

.gap-20 {
    gap: 5rem
}

.gap-3 {
    gap: .75rem
}

.gap-4 {
    gap: 1rem
}

.gap-5 {
    gap: 1.25rem
}

.gap-6 {
    gap: 1.5rem
}

.gap-7 {
    gap: 1.75rem
}

.gap-8 {
    gap: 2rem
}

.gap-\[12px\] {
    gap: 12px
}

.gap-\[16px\] {
    gap: 16px
}

.gap-\[17\.5px\] {
    gap: 17.5px
}

.gap-\[18px\] {
    gap: 18px
}

.gap-\[2px\] {
    gap: 2px
}

.gap-\[30px\] {
    gap: 30px
}

.gap-\[35px\] {
    gap: 35px
}

.gap-\[5px\] {
    gap: 5px
}

.gap-\[60px\] {
    gap: 60px
}

.gap-\[8px\] {
    gap: 8px
}

.space-x-4>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)))
}

.space-y-1>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(.25rem * var(--tw-space-y-reverse))
}

.space-y-4>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse))
}

.self-center {
    align-self: center
}

.overflow-auto {
    overflow: auto
}

.overflow-hidden {
    overflow: hidden
}

.overflow-y-auto {
    overflow-y: auto
}

.overflow-x-hidden {
    overflow-x: hidden
}

.whitespace-nowrap {
    white-space: nowrap
}

.break-all {
    word-break: break-all
}

.rounded {
    border-radius: .25rem
}

.rounded-2xl {
    border-radius: 1rem
}

.rounded-\[10px\] {
    border-radius: 10px
}

.rounded-\[14px\] {
    border-radius: 14px
}

.rounded-\[15px\] {
    border-radius: 15px
}

.rounded-\[20px\] {
    border-radius: 20px
}

.rounded-\[2px\] {
    border-radius: 2px
}

.rounded-\[9px\] {
    border-radius: 9px
}

.rounded-full {
    border-radius: 9999px
}

.rounded-lg {
    border-radius: .5rem
}

.rounded-md {
    border-radius: .375rem
}

.rounded-xl {
    border-radius: .75rem
}

.border {
    border-width: 1px
}

.border-\[1\.5px\] {
    border-width: 1.5px
}

.border-\[1px\] {
    border-width: 1px
}

.border-\[2px\] {
    border-width: 2px
}

.border-\[3px\] {
    border-width: 3px
}

.border-\[4px\] {
    border-width: 4px
}

.border-\[6px\] {
    border-width: 6px
}

.border-y-\[0\.5px\] {
    border-top-width: .5px;
    border-bottom-width: .5px
}

.border-b {
    border-bottom-width: 1px
}

.border-b-0 {
    border-bottom-width: 0
}

.border-b-\[23px\] {
    border-bottom-width: 23px
}

.border-b-\[2px\] {
    border-bottom-width: 2px
}

.border-l-\[12px\] {
    border-left-width: 12px
}

.border-l-\[2px\] {
    border-left-width: 2px
}

.border-r {
    border-right-width: 1px
}

.border-r-\[12px\] {
    border-right-width: 12px
}

.border-r-\[2px\] {
    border-right-width: 2px
}

.border-t {
    border-top-width: 1px
}

.border-t-0 {
    border-top-width: 0
}

.border-t-\[2px\] {
    border-top-width: 2px
}

.border-solid {
    border-style: solid
}

.border-dashed {
    border-style: dashed
}

.border-none {
    border-style: none
}

.border-\[\#000\] {
    --tw-border-opacity: 1;
    border-color: rgb(0 0 0/var(--tw-border-opacity))
}

.border-\[\#00673C\] {
    --tw-border-opacity: 1;
    border-color: rgb(0 103 60/var(--tw-border-opacity))
}

.border-\[\#008092\] {
    --tw-border-opacity: 1;
    border-color: rgb(0 128 146/var(--tw-border-opacity))
}

.border-\[\#051F7E1A\] {
    border-color: #051f7e1a
}

.border-\[\#23364C\] {
    --tw-border-opacity: 1;
    border-color: rgb(35 54 76/var(--tw-border-opacity))
}

.border-\[\#23364C\]\/50 {
    border-color: rgba(35,54,76,.5)
}

.border-\[\#3F4655\] {
    --tw-border-opacity: 1;
    border-color: rgb(63 70 85/var(--tw-border-opacity))
}

.border-\[\#45A509\] {
    --tw-border-opacity: 1;
    border-color: rgb(69 165 9/var(--tw-border-opacity))
}

.border-\[\#7C86A0\] {
    --tw-border-opacity: 1;
    border-color: rgb(124 134 160/var(--tw-border-opacity))
}

.border-\[\#B01BC4\] {
    --tw-border-opacity: 1;
    border-color: rgb(176 27 196/var(--tw-border-opacity))
}

.border-\[\#CD6D1C\] {
    --tw-border-opacity: 1;
    border-color: rgb(205 109 28/var(--tw-border-opacity))
}

.border-\[\#EDF0F2\] {
    --tw-border-opacity: 1;
    border-color: rgb(237 240 242/var(--tw-border-opacity))
}

.border-\[\#e1e7eb\] {
    --tw-border-opacity: 1;
    border-color: rgb(225 231 235/var(--tw-border-opacity))
}

.border-\[rgba\(255\2c 255\2c 255\2c 0\.30\)\] {
    border-color: hsla(0,0%,100%,.3)
}

.border-black {
    --tw-border-opacity: 1;
    border-color: rgb(0 0 0/var(--tw-border-opacity))
}

.border-black\/20 {
    border-color: rgba(0,0,0,.2)
}

.border-black\/40 {
    border-color: rgba(0,0,0,.4)
}

.border-border {
    --tw-border-opacity: 1;
    border-color: rgb(35 54 77/var(--tw-border-opacity))
}

.border-muted {
    --tw-border-opacity: 1;
    border-color: rgb(183 224 188/var(--tw-border-opacity))
}

.border-slate-300 {
    --tw-border-opacity: 1;
    border-color: rgb(203 213 225/var(--tw-border-opacity))
}

.border-transparent {
    border-color: transparent
}

.border-white {
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255/var(--tw-border-opacity))
}

.border-white\/\[0\.14\] {
    border-color: hsla(0,0%,100%,.14)
}

.border-b-\[\#000\] {
    --tw-border-opacity: 1;
    border-bottom-color: rgb(0 0 0/var(--tw-border-opacity))
}

.border-b-\[\#23364C\]\/50 {
    border-bottom-color: rgba(35,54,76,.5)
}

.border-b-black {
    --tw-border-opacity: 1;
    border-bottom-color: rgb(0 0 0/var(--tw-border-opacity))
}

.border-b-transparent {
    border-bottom-color: transparent
}

.border-l-black {
    --tw-border-opacity: 1;
    border-left-color: rgb(0 0 0/var(--tw-border-opacity))
}

.border-r-black {
    --tw-border-opacity: 1;
    border-right-color: rgb(0 0 0/var(--tw-border-opacity))
}

.border-t-black {
    --tw-border-opacity: 1;
    border-top-color: rgb(0 0 0/var(--tw-border-opacity))
}

.\!bg-\[\#B7E0BC\] {
    --tw-bg-opacity: 1!important;
    background-color: rgb(183 224 188/var(--tw-bg-opacity))!important
}

.\!bg-\[\#FFF600\] {
    --tw-bg-opacity: 1!important;
    background-color: rgb(255 246 0/var(--tw-bg-opacity))!important
}

.\!bg-black {
    --tw-bg-opacity: 1!important;
    background-color: rgb(0 0 0/var(--tw-bg-opacity))!important
}

.\!bg-transparent {
    background-color: transparent!important
}

.bg-\[\#00673C\] {
    --tw-bg-opacity: 1;
    background-color: rgb(0 103 60/var(--tw-bg-opacity))
}

.bg-\[\#008092\] {
    --tw-bg-opacity: 1;
    background-color: rgb(0 128 146/var(--tw-bg-opacity))
}

.bg-\[\#00B56A\] {
    --tw-bg-opacity: 1;
    background-color: rgb(0 181 106/var(--tw-bg-opacity))
}

.bg-\[\#01a160\] {
    --tw-bg-opacity: 1;
    background-color: rgb(1 161 96/var(--tw-bg-opacity))
}

.bg-\[\#0B0C0E\] {
    --tw-bg-opacity: 1;
    background-color: rgb(11 12 14/var(--tw-bg-opacity))
}

.bg-\[\#23364C\] {
    --tw-bg-opacity: 1;
    background-color: rgb(35 54 76/var(--tw-bg-opacity))
}

.bg-\[\#23364C\]\/10 {
    background-color: rgba(35,54,76,.1)
}

.bg-\[\#23364C\]\/50 {
    background-color: rgba(35,54,76,.5)
}

.bg-\[\#23364c\] {
    --tw-bg-opacity: 1;
    background-color: rgb(35 54 76/var(--tw-bg-opacity))
}

.bg-\[\#23364d\] {
    --tw-bg-opacity: 1;
    background-color: rgb(35 54 77/var(--tw-bg-opacity))
}

.bg-\[\#2D2CB8\] {
    --tw-bg-opacity: 1;
    background-color: rgb(45 44 184/var(--tw-bg-opacity))
}

.bg-\[\#2D4562\]\/10 {
    background-color: rgba(45,69,98,.1)
}

.bg-\[\#38E719\] {
    --tw-bg-opacity: 1;
    background-color: rgb(56 231 25/var(--tw-bg-opacity))
}

.bg-\[\#3F4655\] {
    --tw-bg-opacity: 1;
    background-color: rgb(63 70 85/var(--tw-bg-opacity))
}

.bg-\[\#45A509\] {
    --tw-bg-opacity: 1;
    background-color: rgb(69 165 9/var(--tw-bg-opacity))
}

.bg-\[\#575D67\] {
    --tw-bg-opacity: 1;
    background-color: rgb(87 93 103/var(--tw-bg-opacity))
}

.bg-\[\#61ECFF\] {
    --tw-bg-opacity: 1;
    background-color: rgb(97 236 255/var(--tw-bg-opacity))
}

.bg-\[\#7BD642\] {
    --tw-bg-opacity: 1;
    background-color: rgb(123 214 66/var(--tw-bg-opacity))
}

.bg-\[\#939496\] {
    --tw-bg-opacity: 1;
    background-color: rgb(147 148 150/var(--tw-bg-opacity))
}

.bg-\[\#96FB5A1F\]\/\[0\.12\] {
    background-color: rgba(150,251,90,.12)
}

.bg-\[\#B01BC4\] {
    --tw-bg-opacity: 1;
    background-color: rgb(176 27 196/var(--tw-bg-opacity))
}

.bg-\[\#CD6D1C\] {
    --tw-bg-opacity: 1;
    background-color: rgb(205 109 28/var(--tw-bg-opacity))
}

.bg-\[\#D0D0D0\] {
    --tw-bg-opacity: 1;
    background-color: rgb(208 208 208/var(--tw-bg-opacity))
}

.bg-\[\#DF5DF1\] {
    --tw-bg-opacity: 1;
    background-color: rgb(223 93 241/var(--tw-bg-opacity))
}

.bg-\[\#E2E2E2\] {
    --tw-bg-opacity: 1;
    background-color: rgb(226 226 226/var(--tw-bg-opacity))
}

.bg-\[\#E4ECE6\] {
    --tw-bg-opacity: 1;
    background-color: rgb(228 236 230/var(--tw-bg-opacity))
}

.bg-\[\#E7FBEC\] {
    --tw-bg-opacity: 1;
    background-color: rgb(231 251 236/var(--tw-bg-opacity))
}

.bg-\[\#F7F7F7\] {
    --tw-bg-opacity: 1;
    background-color: rgb(247 247 247/var(--tw-bg-opacity))
}

.bg-\[\#FEC421\] {
    --tw-bg-opacity: 1;
    background-color: rgb(254 196 33/var(--tw-bg-opacity))
}

.bg-\[\#FF7949\] {
    --tw-bg-opacity: 1;
    background-color: rgb(255 121 73/var(--tw-bg-opacity))
}

.bg-\[\#bbb\] {
    --tw-bg-opacity: 1;
    background-color: rgb(187 187 187/var(--tw-bg-opacity))
}

.bg-\[\#e4ece6\] {
    --tw-bg-opacity: 1;
    background-color: rgb(228 236 230/var(--tw-bg-opacity))
}

.bg-\[\#f7f7f7\] {
    --tw-bg-opacity: 1;
    background-color: rgb(247 247 247/var(--tw-bg-opacity))
}

.bg-\[\#fff\] {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255/var(--tw-bg-opacity))
}

.bg-black {
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0/var(--tw-bg-opacity))
}

.bg-black\/40 {
    background-color: rgba(0,0,0,.4)
}

.bg-black\/50 {
    background-color: rgba(0,0,0,.5)
}

.bg-black\/70 {
    background-color: rgba(0,0,0,.7)
}

.bg-black\/80 {
    background-color: rgba(0,0,0,.8)
}

.bg-muted {
    --tw-bg-opacity: 1;
    background-color: rgb(183 224 188/var(--tw-bg-opacity))
}

.bg-primary {
    --tw-bg-opacity: 1;
    background-color: rgb(1 181 106/var(--tw-bg-opacity))
}

.bg-red-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(239 68 68/var(--tw-bg-opacity))
}

.bg-red-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(220 38 38/var(--tw-bg-opacity))
}

.bg-secondary {
    --tw-bg-opacity: 1;
    background-color: rgb(255 246 0/var(--tw-bg-opacity))
}

.bg-transparent {
    background-color: transparent
}

.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255/var(--tw-bg-opacity))
}

.bg-white\/10 {
    background-color: hsla(0,0%,100%,.1)
}

.bg-white\/30 {
    background-color: hsla(0,0%,100%,.3)
}

.bg-white\/75 {
    background-color: hsla(0,0%,100%,.75)
}

.bg-\[url\(\"\/home\/line-bg\.png\"\)\]{background-image:url(/home/line-bg.png)}.bg-\[url\(\'\/block-ip-bg\.webp\'\)\]{background-image:url(/block-ip-bg.webp)}.bg-\[url\(\'\/commands\/bg\.webp\'\)\]{background-image:url(/commands/bg.webp)}.bg-\[url\(\'\/commands\/ds-bg\.jpg\'\)\]{background-image:url(/commands/ds-bg.jpg)}.bg-\[url\(\'\/home\/line-bg\.png\'\)\]{background-image:url(/home/line-bg.png)}.bg-\[url\(\'\/images\/white-bg\.png\'\)\]{background-image:url(/images/white-bg.png)}.bg-gradient-to-r{background-image:linear-gradient(to right,var(--tw-gradient-stops))}.bg-cover{background-size:cover}.bg-bottom{background-position:bottom}.bg-center{background-position:50%}.bg-repeat{background-repeat:repeat}.bg-no-repeat{background-repeat:no-repeat}.fill-\[\#fff\]{fill:#fff}.fill-black{fill:#000}.fill-white{fill:#fff}.stroke-black{stroke:#000}.stroke-white{stroke:#fff}.object-contain{-o-object-fit:contain;object-fit:contain}.object-cover{-o-object-fit:cover;object-fit:cover}.object-center{-o-object-position:center;object-position:center}.\!p-0{padding:0!important}.\!p-4{padding:1rem!important}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-5{padding:1.25rem}.p-6{padding:1.5rem}.p-8{padding:2rem}.p-\[0\.9vw\]{padding:.9vw}.p-\[10px\]{padding:10px}.p-\[2px\]{padding:2px}.p-\[46px\]{padding:46px}.p-\[5px\]{padding:5px}.\!px-0{padding-left:0!important;padding-right:0!important}.\!px-2{padding-left:.5rem!important;padding-right:.5rem!important}.\!px-3{padding-left:.75rem!important;padding-right:.75rem!important}.\!px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}.px-1{padding-left:.25rem;padding-right:.25rem}.px-10{padding-left:2.5rem;padding-right:2.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-7{padding-left:1.75rem;padding-right:1.75rem}.px-8{padding-left:2rem;padding-right:2rem}.px-\[14px\]{padding-left:14px;padding-right:14px}.px-\[15px\]{padding-left:15px;padding-right:15px}.px-\[16px\]{padding-left:16px;padding-right:16px}.px-\[20px\]{padding-left:20px;padding-right:20px}.px-\[7px\]{padding-left:7px;padding-right:7px}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.py-4{padding-top:1rem;padding-bottom:1rem}.py-5{padding-top:1.25rem;padding-bottom:1.25rem}.py-7{padding-top:1.75rem;padding-bottom:1.75rem}.py-9{padding-top:2.25rem;padding-bottom:2.25rem}.py-\[12\.5px\]{padding-top:12.5px;padding-bottom:12.5px}.py-\[12px\]{padding-top:12px;padding-bottom:12px}.py-\[14px\]{padding-top:14px;padding-bottom:14px}.py-\[16px\]{padding-top:16px;padding-bottom:16px}.py-\[17px\]{padding-top:17px;padding-bottom:17px}.py-\[18px\]{padding-top:18px;padding-bottom:18px}.py-\[25px\]{padding-top:25px;padding-bottom:25px}.py-\[2px\]{padding-top:2px;padding-bottom:2px}.py-\[30px\]{padding-top:30px;padding-bottom:30px}.py-\[34\.5px\]{padding-top:34.5px;padding-bottom:34.5px}.py-\[35px\]{padding-top:35px;padding-bottom:35px}.py-\[5px\]{padding-top:5px;padding-bottom:5px}.py-\[70px\]{padding-top:70px;padding-bottom:70px}.\!pl-5{padding-left:1.25rem!important}.\!pr-0{padding-right:0!important}.pb-1{padding-bottom:.25rem}.pb-2{padding-bottom:.5rem}.pb-3{padding-bottom:.75rem}.pb-4{padding-bottom:1rem}.pb-6{padding-bottom:1.5rem}.pb-7{padding-bottom:1.75rem}.pb-\[8px\]{padding-bottom:8px}.pl-14{padding-left:3.5rem}.pl-2{padding-left:.5rem}.pl-5{padding-left:1.25rem}.pr-4{padding-right:1rem}.pr-5{padding-right:1.25rem}.pt-0{padding-top:0}.pt-10{padding-top:2.5rem}.pt-2{padding-top:.5rem}.pt-3{padding-top:.75rem}.pt-4{padding-top:1rem}.pt-6{padding-top:1.5rem}.pt-8{padding-top:2rem}.pt-\[100px\]{padding-top:100px}.pt-\[10px\]{padding-top:10px}.pt-\[1px\]{padding-top:1px}.pt-\[24px\]{padding-top:24px}.pt-\[2px\]{padding-top:2px}.pt-\[32px\]{padding-top:32px}.pt-\[35px\]{padding-top:35px}.pt-\[5px\]{padding-top:5px}.pt-\[74px\]{padding-top:74px}.pt-\[75px\]{padding-top:75px}.text-left{text-align:left}.text-center{text-align:center}.text-justify{text-align:justify}.text-start{text-align:start}.align-baseline{vertical-align:baseline}.align-middle{vertical-align:middle}.align-super{vertical-align:super}.font-apple{font-family:var(--font-apple)}.font-jersey10{font-family:var(--font-jersey10)}.font-jersey15{font-family:var(--font-jersey15)}.font-jersey20{font-family:var(--font-jersey20)}.font-jersey25{font-family:var(--font-jersey25)}.font-museo{font-family:var(--font-museo)}.\!text-\[23px\]{font-size:23px!important}.\!text-\[30px\]{font-size:30px!important}.text-2xl{font-size:1.5rem;line-height:2rem}.text-\[0\.9vw\]{font-size:.9vw}.text-\[10px\]{font-size:10px}.text-\[12px\]{font-size:12px}.text-\[130px\]{font-size:130px}.text-\[13px\]{font-size:13px}.text-\[14px\]{font-size:14px}.text-\[16px\]{font-size:16px}.text-\[17px\]{font-size:17px}.text-\[18px\]{font-size:18px}.text-\[20px\]{font-size:20px}.text-\[22px\]{font-size:22px}.text-\[23px\]{font-size:23px}.text-\[24px\]{font-size:24px}.text-\[25px\]{font-size:25px}.text-\[26px\]{font-size:26px}.text-\[27px\]{font-size:27px}.text-\[28px\]{font-size:28px}.text-\[30px\]{font-size:30px}.text-\[32px\]{font-size:32px}.text-\[34px\]{font-size:34px}.text-\[36px\]{font-size:36px}.text-\[38px\]{font-size:38px}.text-\[4\.45vw\]{font-size:4.45vw}.text-\[40px\]{font-size:40px}.text-\[42px\]{font-size:42px}.text-\[43px\]{font-size:43px}.text-\[44px\]{font-size:44px}.text-\[46px\]{font-size:46px}.text-\[48px\]{font-size:48px}.text-\[50px\]{font-size:50px}.text-\[52px\]{font-size:52px}.text-\[55px\]{font-size:55px}.text-\[58px\]{font-size:58px}.text-\[60px\]{font-size:60px}.text-\[64px\]{font-size:64px}.text-\[66px\]{font-size:66px}.text-\[70px\]{font-size:70px}.text-\[72px\]{font-size:72px}.text-\[76px\]{font-size:76px}.text-\[78px\]{font-size:78px}.text-\[92px\]{font-size:92px}.text-\[9px\]{font-size:9px}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.\!font-normal{font-weight:400!important}.font-black{font-weight:900}.font-bold{font-weight:700}.font-extrabold{font-weight:800}.font-medium{font-weight:500}.font-normal{font-weight:400}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.\!capitalize{text-transform:capitalize!important}.capitalize{text-transform:capitalize}.\!leading-none{line-height:1!important}.leading-3{line-height:.75rem}.leading-4{line-height:1rem}.leading-5{line-height:1.25rem}.leading-6{line-height:1.5rem}.leading-7{line-height:1.75rem}.leading-\[1\.1\]{line-height:1.1}.leading-\[1\.9\]{line-height:1.9}.leading-\[16px\]{line-height:16px}.leading-\[18px\]{line-height:18px}.leading-\[20px\]{line-height:20px}.leading-\[22px\]{line-height:22px}.leading-\[24px\]{line-height:24px}.leading-\[25px\]{line-height:25px}.leading-\[26px\]{line-height:26px}.leading-\[28px\]{line-height:28px}.leading-\[2\]{line-height:2}.leading-\[30px\]{line-height:30px}.leading-\[32px\]{line-height:32px}.leading-\[34px\]{line-height:34px}.leading-\[35px\]{line-height:35px}.leading-\[36px\]{line-height:36px}.leading-\[38px\]{line-height:38px}.leading-\[40px\]{line-height:40px}.leading-\[44px\]{line-height:44px}.leading-\[48px\]{line-height:48px}.leading-\[60px\]{line-height:60px}.leading-\[70px\]{line-height:70px}.leading-\[80px\]{line-height:80px}.leading-none{line-height:1}.tracking-\[-0\.04em\]{letter-spacing:-.04em}.tracking-\[-0\.12em\]{letter-spacing:-.12em}.tracking-\[-0\.15rem\]{letter-spacing:-.15rem}.tracking-\[-0\.16px\]{letter-spacing:-.16px}.tracking-\[-0\.16rem\]{letter-spacing:-.16rem}.tracking-\[-0\.1em\]{letter-spacing:-.1em}.tracking-\[-0\.216px\]{letter-spacing:-.216px}.tracking-tight{letter-spacing:-.025em}.tracking-tighter{letter-spacing:-.05em}.tracking-wide{letter-spacing:.025em}.tracking-wider{letter-spacing:.05em}.tracking-widest{letter-spacing:.1em}.\!text-black{color:rgb(0 0 0/var(--tw-text-opacity))!important}.\!text-black,.\!text-white{--tw-text-opacity:1!important}.\!text-white{color:rgb(255 255 255/var(--tw-text-opacity))!important}.text-\[\#00B56A\]{--tw-text-opacity:1;color:rgb(0 181 106/var(--tw-text-opacity))}.text-\[\#02B56A\]{--tw-text-opacity:1;color:rgb(2 181 106/var(--tw-text-opacity))}.text-\[\#0333BA\]{--tw-text-opacity:1;color:rgb(3 51 186/var(--tw-text-opacity))}.text-\[\#0EE74D\]{--tw-text-opacity:1;color:rgb(14 231 77/var(--tw-text-opacity))}.text-\[\#0c70d6\]{--tw-text-opacity:1;color:rgb(12 112 214/var(--tw-text-opacity))}.text-\[\#141917\]{--tw-text-opacity:1;color:rgb(20 25 23/var(--tw-text-opacity))}.text-\[\#141917\]\/10{color:rgba(20,25,23,.1)}.text-\[\#1e1e1e\]{--tw-text-opacity:1;color:rgb(30 30 30/var(--tw-text-opacity))}.text-\[\#2C2E96\]{--tw-text-opacity:1;color:rgb(44 46 150/var(--tw-text-opacity))}.text-\[\#2D456299\]{color:#2d456299}.text-\[\#526571\]{--tw-text-opacity:1;color:rgb(82 101 113/var(--tw-text-opacity))}.text-\[\#646464\]{--tw-text-opacity:1;color:rgb(100 100 100/var(--tw-text-opacity))}.text-\[\#666\]{--tw-text-opacity:1;color:rgb(102 102 102/var(--tw-text-opacity))}.text-\[\#838588\]{--tw-text-opacity:1;color:rgb(131 133 136/var(--tw-text-opacity))}.text-\[\#A4A4A5\]{--tw-text-opacity:1;color:rgb(164 164 165/var(--tw-text-opacity))}.text-\[\#B7E0BC\]{--tw-text-opacity:1;color:rgb(183 224 188/var(--tw-text-opacity))}.text-\[\#B8B8B8\]{--tw-text-opacity:1;color:rgb(184 184 184/var(--tw-text-opacity))}.text-\[\#FF710D\]{--tw-text-opacity:1;color:rgb(255 113 13/var(--tw-text-opacity))}.text-\[\#f7f7f7\]{--tw-text-opacity:1;color:rgb(247 247 247/var(--tw-text-opacity))}.text-\[\#fff\]{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.text-black\/40{color:rgba(0,0,0,.4)}.text-black\/50{color:rgba(0,0,0,.5)}.text-black\/60{color:rgba(0,0,0,.6)}.text-black\/80{color:rgba(0,0,0,.8)}.text-lime-300{--tw-text-opacity:1;color:rgb(190 242 100/var(--tw-text-opacity))}.text-muted{--tw-text-opacity:1;color:rgb(183 224 188/var(--tw-text-opacity))}.text-primary{--tw-text-opacity:1;color:rgb(1 181 106/var(--tw-text-opacity))}.text-secondary{--tw-text-opacity:1;color:rgb(255 246 0/var(--tw-text-opacity))}.text-transparent{color:transparent}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.text-white\/60{color:hsla(0,0%,100%,.6)}.text-white\/80{color:hsla(0,0%,100%,.8)}.underline{text-decoration-line:underline}.line-through{text-decoration-line:line-through}.underline-offset-\[5px\]{text-underline-offset:5px}.opacity-0{opacity:0}.opacity-100{opacity:1}.opacity-50{opacity:.5}.opacity-70{opacity:.7}.opacity-75{opacity:.75}.opacity-90{opacity:.9}.shadow{--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color)}.shadow,.shadow-lg{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color)}.shadow-md{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color)}.shadow-md,.shadow-sm{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)}.shadow-xl{--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.outline-none{outline:2px solid transparent;outline-offset:2px}.blur{--tw-blur:blur(8px)}.blur,.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-\[grid-template-rows\]{transition-property:grid-template-rows;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-\[max-height\]{transition-property:max-height;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-shadow{transition-property:box-shadow;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-100{transition-duration:.1s}.duration-200{transition-duration:.2s}.duration-300{transition-duration:.3s}.duration-500{transition-duration:.5s}.duration-75{transition-duration:75ms}.ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.ease-linear{transition-timing-function:linear}.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}.\[appearance\:textfield\]{-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield}::-webkit-scrollbar{width:5px;background-color:#000}@media screen and (max-width:1024px){::-webkit-scrollbar{width:0}}::-webkit-scrollbar-thumb{background-color:#333;border-radius:4px}::-webkit-scrollbar-thumb:hover{background-color:#00a160}::-webkit-scrollbar-track{background-color:#000;border-radius:6px}.iframe-parent{position:relative;&:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%}}body,html{width:100vw;background:#fff;color:#000}*{padding:0;margin:0;box-sizing:border-box;font-family:var(--font-space-mono)}*,div{-webkit-tap-highlight-color:transparent}*{outline:none}.layout{margin-left:auto;margin-right:auto;width:100%;max-width:1728px;padding-left:88px;padding-right:88px}@media not all and (min-width:1024px){.layout{padding-left:1rem;padding-right:1rem}}.btn{background-image:url(/home/line-bg.png);background-position:50%;background-repeat:repeat;display:flex;height:48px;flex-shrink:0;cursor:pointer;flex-wrap:wrap;align-items:center;justify-content:center;--tw-bg-opacity:1;background-color:rgb(1 181 106/var(--tw-bg-opacity));padding-left:1rem;padding-right:1rem;font-family:var(--font-jersey15);font-size:1.5rem;line-height:2rem;line-height:1.1;--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.btn:hover{opacity:.8}@media not all and (min-width:1024px){.btn{font-size:1.25rem;line-height:1.75rem}}.text-bg:before{content:"01001 10001101111 01110 010 011001 010110111 0100100 010 011001 010110111 0100100 010 011001 010110111 0100100 011001 010110111 0100100 010 011001 010110111 0100100 011001 010110111 0100100 010 011001 010110111 0100100 011001 010110111 0100100 010 011001 010110111 0100100 011001 010110111 0100100 010 011001 010110111 0100100 00001101001011110 01100011011 01011011000 0001010 1001010 101001 010100010 1011110 1010 000101 01101 0110000 010110111 0100100 00001101001 01110000 00101001 011010 01110110101 011011 01001001 10001101111 01110 010 011001 01 101101 100100 00001101001 01110 00000 01001 100011 010111101101 011011101 00 100011011010110 0101110 11101 1000110110110 1010110 011101 01101 0001 1110 010 011001011 0110 10111101110 000 1110101 101110001101111 01110 01000110010101101 01101 1011 01011011000 0001010 10010 1100011010111 01110 010 011001101101 100 01110 010 011001 01001010 01101010011101 01001 10001101111 01110 010 0111 0010 010110110 010100111011001001 100011011 00110 0110 01110 11011101010 11101 01001111001 00111010001100 01101101110010110101000001 01101100 1011100010101111100 011110 010 01100101100110 10111101110110111 01011101011 01001001 10001101111 01110 010 011001 010110111 0100100 10101 000011010010011 01011011000 0001010 1001010 101 010100010 1011110 1010 0001010001110010101 101011010110 0111011010100 0110 10110 100 0101110 0101010 100011011110 01011011110110110101 0101 01001 10001101111 01110 010 011001 010110111 01 0100100 00001101001011110 01100011011 01011011000 0001010 1001010 101001 010100010 1011110 1010 000101 01101 0110000 010110111 0100100 00001101001 01110000100101001 011010 01110110101 011011 01001001 10001101111 01110 010 011001 01110 101101 100100 00001101001 01110 00000001001 100011 010111101101 011011101 00 100011011010110 0101110 111011 010110100 1000110110110 10101101011101 01101 0001 1110 010 011001011 0110 10111101110 000 1110101 101110001101111 01110 0101110 0110010101101 01101 1011 01011011000 0001010 10010 110001101 111 01110 010 011001101101 100 01110 010 011001 01001010 0110101 011101 01001 10001101111 01110 010 011110010 010110110 010100111011001001 100011011 00110 0110 01110 1101 010 11011101010 11101 01001111001 001 1010001100 01101101110010110101000001 01101100 1011100010101111100 011110 010111011 011001011 0110 10111101110 10111 0101110 011 01001001 10001101111 01110 010 011001 010110111 0100100 10101 0110101110 000011010010011 01011011000 0001010 1001010 101 010100010 1011110 1010 0001010001110010101 101011010110 0111011010100 0110101 011101 01001 10001101111 01110 010 011110010 010110110 010100111011001001 100011011 00110 0110 01110 1101 010 11011101010 11101 01001111001 001 1010001100 01101101110010110101000001 01101100 1011100010101111100 011110 010111011 0110010101101 01101 1011 01011011000 0001010 10010 110001101 111 01110 010 011001101101 100 01110 010 011001 01001010 000011010010011 01011011000 0001010 1001010 101 010100010 1011110 1010 0001010001110010101 101011010110 0111011010100 0110 10110 100 0101110 0101010 100011011110 01011011110110110101 0101 01001 10001101111 01110 010 011001 010110111 01 0110010101101 01101 1011 01011011000 0001010 10010 110001101 111 01110 010 011001101101 100 01110 010 011001 01001010 010100010 1011110 1010 000101 01101 0110000 010110111 0100100 00001101001 01110000 00101001 011010 01110110101 011011 01001001 10001101111 01110 010 011001 01 101101 100100 00001101001 01110 00000 01001 100011 010111101101 011011101 00 100011011010110 0101110 11101 1000110110110 1010110 011101 01101 0001 1110 010 011001011 0110 10111101110 000 1110101 101110001101111 01110 01000110010101101 01101 1011 01011011000 0001010 10010 110001101 111 01110 010 011001101101 100 01001 10001101111 01110 010 011001 010110111 0100100 00001101001011110 01100011011 01011011000 0001010 1001010 101001 010100010 1011110 1010 000101 01101 0110000 010110111 0100100 00001101001 01110000 00101001 011010 01110110101 011011 01001001 10001101111 01110 010 011001 01 101101 100100 00001101001 01110 00000 01001 100011 010111101101 011011101 00 100011011010110 0101110 11101 1000110110110 1010110 011101 01101 0001 1110 010 011001011 0110 10111101110 000 1110101 101110001101111 01110 01000110010101101 01101 1011 01011011000 0001010 10010 1100011010111 01110 010 011001101101 100 01110 010 011001 01001010 01101010011101 01001 10001101111 01110 010 0111 0010 010110110 010100111011001001 100011011 00110 0110 01110 11011101010 11101 01001111001 00111010001100 01101101110010110101000001 01101100 1011100010101111100 011110 010 01100101100110 10111101110110111 01011101011 01001001 10001101111 01110 010 011001 010110111 0100100 10101 000011010010011 01011011000 0001010 1001010 101 010100010 1011110 1010 0001010001110010101 101011010110 0111011010100 0110 10110 100 0101110 0101010 100011011110 01011011110110110101 0101 01001 10001101111 01110 010 011001 010110111 01 0100100 00001101001011110 01100011011 01011011000 0001010 1001010 101001 010100010 1011110 1010 000101 01101 0110000 010110111 0100100 00001101001 01110000100101001 011010 01110110101 011011 01001001 10001101111 01110 010 011001 01110 101101 100100 00001101001 01110 00000001001 100011 010111101101 011011101 00 100011011010110 0101110 111011 010110100 1000110110110 10101101011101 01101 0001 1110 010 011001011 0110 10111101110 000 1110101 101110001101111 01110 0101110 0110010101101 01101 1011 01011011000 0001010 10010 110001101 111 01110 010 011001101101 100 01110 010 011001 01001010 0110101 011101 01001 10001101111 01110 010 011110010 010110110 010100111011001001 100011011 00110 0110 01110 1101 010 11011101010 11101 01001111001 001 1010001100 01101101110010110101000001 01101100 1011100010101111100 011110 010111011 011001011 0110 10111101110 10111 0101110 011 01001001 10001101111 01110 010 011001 010110111 0100100 10101 0110101110 000011010010011 01011011000 0001010 1001010 101 010100010 1011110 1010 0001010001110010101 101011010110 0111011010100 0110101 011101 01001 10001101111 01110 010 011110010 010110110 010100111011001001 100011011 00110 0110 01110 1101 010 11011101010 11101 01001111001 001 1010001100 01101101110010110101000001 01101100 1011100010101111100 011110 010111011 0110010101101 01101 1011 01011011000 0001010 10010 110001101 111 01110 010 011001101101 100 01110 010 011001 01001010 000011010010011 01011011000 0001010 1001010 101 010100010 1011110 1010 0001010001110010101 101011010110 0111011010100 0110 10110 100 0101110 0101010 100011011110 01011011110110110101 0101 01001 10001101111 01110 010 011001 010110111 01 0110010101101 01101 1011 01011011000 0001010 10010 110001101 111 01110 010 011001101101 100 01110 010 011001 01001010 010100010 1011110 1010 000101 01101 0110000 010110111 0100100 00001101001 01110000 00101001 011010 01110110101 011011 01001001 10001101111 01110 010 011001 01 101101 100100 00001101001 01110 00000 01001 100011 010111101101 011011101 00 100011011010110 0101110 11101 1000110110110 1010110 011101 01101 0001 1110 010 011001011 0110 10111101110 000 1110101 101110001101111 01110 01000110010101101 01101 1011 01011011000 0001010 10010 110001101 111 01110 010 011001101101 100 "}@keyframes blink{0%{background-color:#02b56a}49%{background-color:#02b56a}50%{background-color:#ff7949}to{background-color:#ff7949}}.anim-blink{animation:blink 2s infinite}@keyframes gradientBlink{0%{background-position:100%}50%{background-position:0}to{background-position:100%}}.gradient-text{background:linear-gradient(90deg,#0ee74d 40%,#abffc3 50%,#0ee74d 60%);background-size:200%;color:transparent;-webkit-background-clip:text;animation:gradientBlink 4s infinite}.terms-container{font-family:var(--font-jersey10);font-size:1.25rem;line-height:1.75rem}.terms-container h1{margin-bottom:1.25rem;text-align:center;font-family:var(--font-jersey20);font-size:2.25rem;line-height:2.5rem}.terms-container h2{margin-top:1rem;font-family:var(--font-jersey15);font-size:1.875rem;line-height:2.25rem}.terms-container h3{margin-top:.5rem;font-family:var(--font-jersey15);font-size:1.5rem;line-height:2rem}.terms-container a{text-decoration-line:underline}@keyframes lightBox{0%{background-color:#e4ece6;color:#000}50%{background-color:#e4ece6;color:#000}51%{background-color:#000;color:#fff}to{background-color:#000;color:#fff}}.anim-lightBox{animation:lightBox 2s infinite}@keyframes bell{0%{transform:rotate(45deg)}50%{transform:rotate(45deg)}51%{transform:rotate(-45deg)}to{transform:rotate(-45deg)}}.anim-bell{animation:bell 2s infinite}@keyframes countColor{0%{color:#ff0005}50%{color:#ff0005}51%{color:#ff878a}to{color:#ff878a}}.anim-countColor{animation:countColor 2s infinite}.first-letter\:capitalize:first-letter{text-transform:capitalize}.placeholder\:text-\[\#1A1A1A66\]::-moz-placeholder{color:#1a1a1a66}.placeholder\:text-\[\#1A1A1A66\]::placeholder{color:#1a1a1a66}.before\:absolute:before{content:var(--tw-content);position:absolute}.before\:left-0:before{content:var(--tw-content);left:0}.before\:top-0:before{content:var(--tw-content);top:0}.before\:size-full:before{content:var(--tw-content);width:100%;height:100%}.before\:bg-\[url\(\'\/home\/line-bg\.png\'\)\]:before{content:var(--tw-content);background-image:url(/home/line-bg.png)}.before\:bg-center:before{content:var(--tw-content);background-position:50%}.before\:bg-repeat:before{content:var(--tw-content);background-repeat:repeat}.before\:opacity-30:before{content:var(--tw-content);opacity:.3}.after\:absolute:after{content:var(--tw-content);position:absolute}.after\:left-\[2px\]:after{content:var(--tw-content);left:2px}.after\:top-\[2px\]:after{content:var(--tw-content);top:2px}.after\:h-5:after{content:var(--tw-content);height:1.25rem}.after\:w-5:after{content:var(--tw-content);width:1.25rem}.after\:rounded-full:after{content:var(--tw-content);border-radius:9999px}.after\:border:after{content:var(--tw-content);border-width:1px}.after\:bg-white:after{content:var(--tw-content);--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.after\:transition-all:after{content:var(--tw-content);transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.after\:content-\[\'\'\]:after{--tw-content:"";content:var(--tw-content)}.last\:border-b-0:last-child{border-bottom-width:0}.hover\:scale-105:hover{--tw-scale-x:1.05;--tw-scale-y:1.05}.hover\:scale-105:hover,.hover\:scale-110:hover{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.hover\:scale-110:hover{--tw-scale-x:1.1;--tw-scale-y:1.1}.hover\:cursor-pointer:hover{cursor:pointer}.hover\:border-primary:hover{--tw-border-opacity:1;border-color:rgb(1 181 106/var(--tw-border-opacity))}.hover\:\!bg-white\/10:hover{background-color:hsla(0,0%,100%,.1)!important}.hover\:bg-\[\#222\]:hover{--tw-bg-opacity:1;background-color:rgb(34 34 34/var(--tw-bg-opacity))}.hover\:bg-muted:hover{--tw-bg-opacity:1;background-color:rgb(183 224 188/var(--tw-bg-opacity))}.hover\:bg-primary:hover{--tw-bg-opacity:1;background-color:rgb(1 181 106/var(--tw-bg-opacity))}.hover\:text-primary:hover{--tw-text-opacity:1;color:rgb(1 181 106/var(--tw-text-opacity))}.hover\:opacity-60:hover{opacity:.6}.hover\:opacity-70:hover{opacity:.7}.hover\:opacity-80:hover{opacity:.8}.hover\:opacity-90:hover{opacity:.9}.hover\:shadow-md:hover{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.focus\:border-\[\#0333BA\]:focus{--tw-border-opacity:1;border-color:rgb(3 51 186/var(--tw-border-opacity))}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:ring-2:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\:ring-offset-2:focus{--tw-ring-offset-width:2px}.active\:translate-y-\[2px\]:active{--tw-translate-y:2px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.active\:pb-\[6px\]:active{padding-bottom:6px}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.group:hover .group-hover\:block{display:block}.group:hover .group-hover\:scale-110{--tw-scale-x:1.1;--tw-scale-y:1.1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.group:hover .group-hover\:border{border-width:1px}.group:hover .group-hover\:border-black{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.group:hover .group-hover\:fill-primary{fill:#01b56a}.group:hover .group-hover\:opacity-100{opacity:1}.group:active .group-active\:bg-\[\#61ECFF\]{--tw-bg-opacity:1;background-color:rgb(97 236 255/var(--tw-bg-opacity))}.group:active .group-active\:bg-\[\#65C429\]{--tw-bg-opacity:1;background-color:rgb(101 196 41/var(--tw-bg-opacity))}.group:active .group-active\:bg-\[\#CC32E2\]{--tw-bg-opacity:1;background-color:rgb(204 50 226/var(--tw-bg-opacity))}.group:active .group-active\:bg-\[\#E1A90C\]{--tw-bg-opacity:1;background-color:rgb(225 169 12/var(--tw-bg-opacity))}.group:active .group-active\:bg-black\/80{background-color:rgba(0,0,0,.8)}.group:active .group-active\:bg-primary\/80{background-color:rgba(1,181,106,.8)}.group:active .group-active\:bg-secondary\/80{background-color:rgba(255,246,0,.8)}.peer:checked~.peer-checked\:bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.peer:checked~.peer-checked\:after\:translate-x-full:after{content:var(--tw-content);--tw-translate-x:100%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.peer:checked~.peer-checked\:after\:border-white:after{content:var(--tw-content);--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity))}.peer:checked~.peer-checked\:after\:bg-black:after{content:var(--tw-content);--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity))}.peer:focus~.peer-focus\:outline-none{outline:2px solid transparent;outline-offset:2px}.peer:focus~.peer-focus\:ring-4{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}@media (max-width:1600px){.max-\[1600px\]\:text-xl{font-size:1.25rem;line-height:1.75rem}}@media not all and (min-width:1536px){.max-2xl\:left-\[110\%\]{left:110%}.max-2xl\:left-\[40\%\]{left:40%}.max-2xl\:mb-0{margin-bottom:0}.max-2xl\:hidden{display:none}.max-2xl\:h-\[118px\]{height:118px}.max-2xl\:w-\[138px\]{width:138px}.max-2xl\:gap-4{gap:1rem}.max-2xl\:pt-\[5px\]{padding-top:5px}.max-2xl\:text-\[32px\]{font-size:32px}.max-2xl\:text-\[40px\]{font-size:40px}.max-2xl\:text-lg{font-size:1.125rem;line-height:1.75rem}.max-2xl\:text-sm{font-size:.875rem;line-height:1.25rem}.max-2xl\:leading-\[32px\]{line-height:32px}}@media (max-width:1440px){.max-\[1440px\]\:text-\[24px\]{font-size:24px}.max-\[1440px\]\:text-\[32px\]{font-size:32px}}@media not all and (min-width:1280px){.max-xl\:mt-1{margin-top:.25rem}.max-xl\:hidden{display:none}.max-xl\:h-\[30px\]{height:30px}.max-xl\:h-\[34px\]{height:34px}.max-xl\:h-\[36px\]{height:36px}.max-xl\:h-\[40px\]{height:40px}.max-xl\:h-\[54px\]{height:54px}.max-xl\:h-\[56px\]{height:56px}.max-xl\:w-\[150px\]{width:150px}.max-xl\:w-\[65px\]{width:65px}.max-xl\:w-full{width:100%}.max-xl\:max-w-\[70\%\]{max-width:70%}.max-xl\:flex-row{flex-direction:row}.max-xl\:flex-col{flex-direction:column}.max-xl\:gap-0{gap:0}.max-xl\:gap-1{gap:.25rem}.max-xl\:gap-2{gap:.5rem}.max-xl\:gap-3{gap:.75rem}.max-xl\:gap-\[30px\]{gap:30px}.max-xl\:bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.max-xl\:p-2{padding:.5rem}.max-xl\:py-5{padding-top:1.25rem;padding-bottom:1.25rem}.max-xl\:pb-2{padding-bottom:.5rem}.max-xl\:pb-3{padding-bottom:.75rem}.max-xl\:pb-5{padding-bottom:1.25rem}.max-xl\:pb-\[46px\]{padding-bottom:46px}.max-xl\:pt-0,.max-xl\:pt-\[0px\]{padding-top:0}.max-xl\:text-\[10px\]{font-size:10px}.max-xl\:text-\[20px\]{font-size:20px}.max-xl\:text-\[22px\]{font-size:22px}.max-xl\:text-\[24px\]{font-size:24px}.max-xl\:text-\[27px\]{font-size:27px}.max-xl\:text-\[28px\]{font-size:28px}.max-xl\:text-\[32px\]{font-size:32px}.max-xl\:text-\[34px\]{font-size:34px}.max-xl\:text-\[36px\]{font-size:36px}.max-xl\:text-\[40px\]{font-size:40px}.max-xl\:text-\[42px\]{font-size:42px}.max-xl\:text-\[46px\]{font-size:46px}.max-xl\:text-base{font-size:1rem;line-height:1.5rem}.max-xl\:text-sm{font-size:.875rem;line-height:1.25rem}.max-xl\:text-xl{font-size:1.25rem;line-height:1.75rem}.max-xl\:text-xs{font-size:.75rem;line-height:1rem}.max-xl\:leading-none{line-height:1}}@media not all and (min-width:1024px){.max-lg\:static{position:static}.max-lg\:fixed{position:fixed}.max-lg\:absolute{position:absolute}.max-lg\:bottom-0{bottom:0}.max-lg\:bottom-\[25px\]{bottom:25px}.max-lg\:left-3{left:.75rem}.max-lg\:left-4{left:1rem}.max-lg\:left-\[-10px\]{left:-10px}.max-lg\:left-\[13px\]{left:13px}.max-lg\:left-\[15\%\]{left:15%}.max-lg\:left-\[calc\(-9vw\+1\.2rem\)\]{left:calc(-9vw + 1.2rem)}.max-lg\:right-0{right:0}.max-lg\:right-4{right:1rem}.max-lg\:right-\[-20px\]{right:-20px}.max-lg\:right-\[15\%\]{right:15%}.max-lg\:right-\[18px\]{right:18px}.max-lg\:right-\[calc\(-8vw\+1\.2rem\)\]{right:calc(-8vw + 1.2rem)}.max-lg\:top-\[29px\]{top:29px}.max-lg\:mx-4{margin-left:1rem;margin-right:1rem}.max-lg\:my-6{margin-top:1.5rem;margin-bottom:1.5rem}.max-lg\:-mb-6{margin-bottom:-1.5rem}.max-lg\:-ml-1{margin-left:-.25rem}.max-lg\:-ml-\[10px\]{margin-left:-10px}.max-lg\:mb-1{margin-bottom:.25rem}.max-lg\:mb-10{margin-bottom:2.5rem}.max-lg\:mb-2{margin-bottom:.5rem}.max-lg\:mb-3{margin-bottom:.75rem}.max-lg\:mb-4{margin-bottom:1rem}.max-lg\:mb-5{margin-bottom:1.25rem}.max-lg\:mb-6{margin-bottom:1.5rem}.max-lg\:mb-\[18px\]{margin-bottom:18px}.max-lg\:mb-\[36px\]{margin-bottom:36px}.max-lg\:ml-2{margin-left:.5rem}.max-lg\:mr-1{margin-right:.25rem}.max-lg\:mt-1{margin-top:.25rem}.max-lg\:mt-2{margin-top:.5rem}.max-lg\:mt-3{margin-top:.75rem}.max-lg\:mt-4{margin-top:1rem}.max-lg\:mt-5{margin-top:1.25rem}.max-lg\:mt-6{margin-top:1.5rem}.max-lg\:mt-\[-5px\]{margin-top:-5px}.max-lg\:mt-\[18px\]{margin-top:18px}.max-lg\:mt-\[36px\]{margin-top:36px}.max-lg\:flex{display:flex}.max-lg\:hidden{display:none}.max-lg\:size-3{width:.75rem;height:.75rem}.max-lg\:size-4{width:1rem;height:1rem}.max-lg\:size-\[14px\]{width:14px;height:14px}.max-lg\:size-\[2\.32vw\]{width:2.32vw;height:2.32vw}.max-lg\:size-\[24px\]{width:24px;height:24px}.max-lg\:size-\[25px\]{width:25px;height:25px}.max-lg\:size-\[26px\]{width:26px;height:26px}.max-lg\:size-\[30px\]{width:30px;height:30px}.max-lg\:size-\[34px\]{width:34px;height:34px}.max-lg\:size-\[36px\]{width:36px;height:36px}.max-lg\:\!h-\[35px\]{height:35px!important}.max-lg\:\!h-\[36px\]{height:36px!important}.max-lg\:h-\[10vw\]{height:10vw}.max-lg\:h-\[136px\]{height:136px}.max-lg\:h-\[140px\]{height:140px}.max-lg\:h-\[180px\]{height:180px}.max-lg\:h-\[18px\]{height:18px}.max-lg\:h-\[24px\]{height:24px}.max-lg\:h-\[250px\]{height:250px}.max-lg\:h-\[28px\]{height:28px}.max-lg\:h-\[34px\]{height:34px}.max-lg\:h-\[35px\]{height:35px}.max-lg\:h-\[36px\]{height:36px}.max-lg\:h-\[38px\]{height:38px}.max-lg\:h-\[40px\]{height:40px}.max-lg\:h-\[43px\]{height:43px}.max-lg\:h-\[48px\]{height:48px}.max-lg\:h-\[48vw\]{height:48vw}.max-lg\:h-\[49px\]{height:49px}.max-lg\:h-\[54px\]{height:54px}.max-lg\:h-\[56vw\]{height:56vw}.max-lg\:h-\[59px\]{height:59px}.max-lg\:h-\[64px\]{height:64px}.max-lg\:h-\[66px\]{height:66px}.max-lg\:h-\[68px\]{height:68px}.max-lg\:h-\[76px\]{height:76px}.max-lg\:h-\[92px\]{height:92px}.max-lg\:h-\[9vw\]{height:9vw}.max-lg\:max-h-\[430px\]{max-height:430px}.max-lg\:\!w-\[140px\]{width:140px!important}.max-lg\:w-\[10\%\]{width:10%}.max-lg\:w-\[125px\]{width:125px}.max-lg\:w-\[140px\]{width:140px}.max-lg\:w-\[168px\]{width:168px}.max-lg\:w-\[178px\]{width:178px}.max-lg\:w-\[181px\]{width:181px}.max-lg\:w-\[18px\]{width:18px}.max-lg\:w-\[190px\]{width:190px}.max-lg\:w-\[206px\]{width:206px}.max-lg\:w-\[209px\]{width:209px}.max-lg\:w-\[213px\]{width:213px}.max-lg\:w-\[215px\]{width:215px}.max-lg\:w-\[22\.8vw\]{width:22.8vw}.max-lg\:w-\[23\.2\%\]{width:23.2%}.max-lg\:w-\[230px\]{width:230px}.max-lg\:w-\[237px\]{width:237px}.max-lg\:w-\[246px\]{width:246px}.max-lg\:w-\[24px\]{width:24px}.max-lg\:w-\[24vw\]{width:24vw}.max-lg\:w-\[270px\]{width:270px}.max-lg\:w-\[300px\]{width:300px}.max-lg\:w-\[40\%\]{width:40%}.max-lg\:w-\[50px\]{width:50px}.max-lg\:w-\[56vw\]{width:56vw}.max-lg\:w-\[69px\]{width:69px}.max-lg\:w-\[77px\]{width:77px}.max-lg\:w-\[80\%\]{width:80%}.max-lg\:w-\[9vw\]{width:9vw}.max-lg\:w-\[calc\(100\%\+10px\)\]{width:calc(100% + 10px)}.max-lg\:w-full{width:100%}.max-lg\:min-w-\[154px\]{min-width:154px}.max-lg\:max-w-\[350px\]{max-width:350px}.max-lg\:flex-1{flex:1 1 0%}.max-lg\:-scale-100{--tw-scale-x:-1;--tw-scale-y:-1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.max-lg\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.max-lg\:flex-row{flex-direction:row}.max-lg\:flex-col{flex-direction:column}.max-lg\:items-start{align-items:flex-start}.max-lg\:items-center{align-items:center}.max-lg\:justify-center{justify-content:center}.max-lg\:gap-0{gap:0}.max-lg\:gap-1{gap:.25rem}.max-lg\:gap-3{gap:.75rem}.max-lg\:gap-4{gap:1rem}.max-lg\:gap-6{gap:1.5rem}.max-lg\:gap-\[16px\]{gap:16px}.max-lg\:gap-\[18px\]{gap:18px}.max-lg\:overflow-y-auto{overflow-y:auto}.max-lg\:border-\[1px\]{border-width:1px}.max-lg\:border-l-\[1px\]{border-left-width:1px}.max-lg\:\!bg-transparent{background-color:transparent!important}.max-lg\:bg-\[\#E4ECE6\]{--tw-bg-opacity:1;background-color:rgb(228 236 230/var(--tw-bg-opacity))}.max-lg\:p-2{padding:.5rem}.max-lg\:p-4{padding:1rem}.max-lg\:p-7{padding:1.75rem}.max-lg\:p-\[0\.1vw\]{padding:.1vw}.max-lg\:\!px-0{padding-left:0!important;padding-right:0!important}.max-lg\:px-0{padding-left:0;padding-right:0}.max-lg\:px-2{padding-left:.5rem;padding-right:.5rem}.max-lg\:px-3{padding-left:.75rem;padding-right:.75rem}.max-lg\:px-4{padding-left:1rem;padding-right:1rem}.max-lg\:py-0{padding-top:0;padding-bottom:0}.max-lg\:py-2{padding-top:.5rem;padding-bottom:.5rem}.max-lg\:py-4{padding-top:1rem;padding-bottom:1rem}.max-lg\:py-\[0px\]{padding-top:0;padding-bottom:0}.max-lg\:py-\[10px\]{padding-top:10px;padding-bottom:10px}.max-lg\:py-\[17\.5px\]{padding-top:17.5px;padding-bottom:17.5px}.max-lg\:py-\[18px\]{padding-top:18px;padding-bottom:18px}.max-lg\:py-\[27px\]{padding-top:27px;padding-bottom:27px}.max-lg\:py-\[36px\]{padding-top:36px;padding-bottom:36px}.max-lg\:py-\[9px\]{padding-top:9px;padding-bottom:9px}.max-lg\:pb-2{padding-bottom:.5rem}.max-lg\:pb-4{padding-bottom:1rem}.max-lg\:pb-\[100px\]{padding-bottom:100px}.max-lg\:pl-10{padding-left:2.5rem}.max-lg\:pl-3{padding-left:.75rem}.max-lg\:pl-\[6vw\]{padding-left:6vw}.max-lg\:pr-3{padding-right:.75rem}.max-lg\:pr-\[23px\]{padding-right:23px}.max-lg\:pt-2{padding-top:.5rem}.max-lg\:pt-3{padding-top:.75rem}.max-lg\:pt-5{padding-top:1.25rem}.max-lg\:pt-\[18px\]{padding-top:18px}.max-lg\:text-center{text-align:center}.max-lg\:text-2xl{font-size:1.5rem;line-height:2rem}.max-lg\:text-3xl{font-size:1.875rem;line-height:2.25rem}.max-lg\:text-\[1\.88vw\]{font-size:1.88vw}.max-lg\:text-\[10px\]{font-size:10px}.max-lg\:text-\[12px\]{font-size:12px}.max-lg\:text-\[14px\]{font-size:14px}.max-lg\:text-\[15px\]{font-size:15px}.max-lg\:text-\[16px\]{font-size:16px}.max-lg\:text-\[18px\]{font-size:18px}.max-lg\:text-\[20px\]{font-size:20px}.max-lg\:text-\[21px\]{font-size:21px}.max-lg\:text-\[22px\]{font-size:22px}.max-lg\:text-\[24px\]{font-size:24px}.max-lg\:text-\[25px\]{font-size:25px}.max-lg\:text-\[26px\]{font-size:26px}.max-lg\:text-\[28px\]{font-size:28px}.max-lg\:text-\[30px\]{font-size:30px}.max-lg\:text-\[36px\]{font-size:36px}.max-lg\:text-\[38px\]{font-size:38px}.max-lg\:text-\[40px\]{font-size:40px}.max-lg\:text-\[46px\]{font-size:46px}.max-lg\:text-\[48px\]{font-size:48px}.max-lg\:text-\[52px\]{font-size:52px}.max-lg\:text-\[8vw\]{font-size:8vw}.max-lg\:text-base{font-size:1rem;line-height:1.5rem}.max-lg\:text-lg{font-size:1.125rem;line-height:1.75rem}.max-lg\:text-sm{font-size:.875rem;line-height:1.25rem}.max-lg\:text-xl{font-size:1.25rem;line-height:1.75rem}.max-lg\:text-xs{font-size:.75rem;line-height:1rem}.max-lg\:leading-5{line-height:1.25rem}.max-lg\:leading-6{line-height:1.5rem}.max-lg\:leading-\[16px\]{line-height:16px}.max-lg\:leading-\[18px\]{line-height:18px}.max-lg\:leading-\[20px\]{line-height:20px}.max-lg\:leading-\[24px\]{line-height:24px}.max-lg\:leading-\[28px\]{line-height:28px}.max-lg\:leading-\[2\]{line-height:2}.max-lg\:leading-\[30px\]{line-height:30px}.max-lg\:leading-\[36px\]{line-height:36px}.max-lg\:leading-\[54px\]{line-height:54px}.max-lg\:-tracking-\[1px\]{letter-spacing:-1px}}@media not all and (min-width:768px){.max-md\:left-\[-50\%\]{left:-50%}.max-md\:right-\[-5px\]{right:-5px}.max-md\:ml-\[-35px\]{margin-left:-35px}.max-md\:mr-\[-25px\]{margin-right:-25px}.max-md\:mr-\[15px\]{margin-right:15px}.max-md\:hidden{display:none}.max-md\:h-\[100px\]{height:100px}.max-md\:h-\[32px\]{height:32px}.max-md\:h-\[53px\]{height:53px}.max-md\:h-\[66px\]{height:66px}.max-md\:\!w-\[94vw\]{width:94vw!important}.max-md\:w-\[100px\]{width:100px}.max-md\:w-\[10px\]{width:10px}.max-md\:w-\[88px\]{width:88px}.max-md\:w-\[90vw\]{width:90vw}.max-md\:w-full{width:100%}.max-md\:max-w-full{max-width:100%}.max-md\:flex-1{flex:1 1 0%}.max-md\:translate-x-\[-50\%\]{--tw-translate-x:-50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.max-md\:px-5{padding-left:1.25rem;padding-right:1.25rem}.max-md\:px-\[14px\]{padding-left:14px;padding-right:14px}.max-md\:py-\[14px\]{padding-top:14px;padding-bottom:14px}.max-md\:pt-\[53px\]{padding-top:53px}.max-md\:\!text-\[12px\]{font-size:12px!important}.max-md\:text-\[12px\]{font-size:12px}.max-md\:text-\[13px\]{font-size:13px}.max-md\:text-\[14px\]{font-size:14px}.max-md\:text-\[15px\]{font-size:15px}.max-md\:text-\[16px\]{font-size:16px}.max-md\:text-sm{font-size:.875rem;line-height:1.25rem}.max-md\:leading-\[18px\]{line-height:18px}.max-md\:leading-\[20px\]{line-height:20px}.max-md\:leading-\[22px\]{line-height:22px}}@media not all and (min-width:475px){.max-xs\:bottom-\[55px\]{bottom:55px}.max-xs\:top-auto{top:auto}.max-xs\:my-0{margin-top:0;margin-bottom:0}.max-xs\:w-\[80px\]{width:80px}.max-xs\:flex-col{flex-direction:column}.max-xs\:text-lg{font-size:1.125rem;line-height:1.75rem}}@media not all and (min-width:420px){.max-xxs\:flex-col{flex-direction:column}.max-xxs\:text-\[10px\]{font-size:10px}.max-xxs\:text-\[20px\]{font-size:20px}.max-xxs\:text-xl{font-size:1.25rem;line-height:1.75rem}}@media not all and (min-width:390px){.max-xxxs\:h-\[400px\]{height:400px}.max-xxxs\:text-\[20px\]{font-size:20px}.max-xxxs\:text-\[24px\]{font-size:24px}.max-xxxs\:text-\[30px\]{font-size:30px}}@media (min-width:390px){.xxxs\:text-\[34px\]{font-size:34px}.xxxs\:text-\[44px\]{font-size:44px}}@media (min-width:768px){.md\:top-\[-25px\]{top:-25px}.md\:mb-\[-18px\]{margin-bottom:-18px}.md\:h-\[45px\]{height:45px}.md\:min-h-\[500px\]{min-height:500px}.md\:w-\[320px\]{width:320px}.md\:w-\[711px\]{width:711px}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\:gap-16{gap:4rem}.md\:rounded-\[14px\]{border-radius:14px}.md\:px-4{padding-left:1rem;padding-right:1rem}.md\:px-8{padding-left:2rem;padding-right:2rem}.md\:px-\[15px\]{padding-left:15px;padding-right:15px}.md\:px-\[30px\]{padding-left:30px;padding-right:30px}.md\:py-\[35px\]{padding-top:35px;padding-bottom:35px}.md\:py-\[70px\]{padding-top:70px;padding-bottom:70px}.md\:pr-\[14px\]{padding-right:14px}.md\:text-2xl{font-size:1.5rem;line-height:2rem}.md\:text-\[18px\]{font-size:18px}.md\:text-\[20px\]{font-size:20px}.md\:text-\[58px\]{font-size:58px}.md\:hover\:bg-\[\#272A31\]:hover{--tw-bg-opacity:1;background-color:rgb(39 42 49/var(--tw-bg-opacity))}.md\:hover\:bg-\[\#96FB5A1F\]\/\[0\.20\]:hover{background-color:rgba(150,251,90,.2)}}@media (min-width:1024px){.lg\:absolute{position:absolute}.lg\:relative{position:relative}.lg\:right-0{right:0}.lg\:top-1\/2{top:50%}.lg\:mb-4{margin-bottom:1rem}.lg\:mr-10{margin-right:2.5rem}.lg\:mr-6{margin-right:1.5rem}.lg\:mr-\[100px\]{margin-right:100px}.lg\:mr-\[10vw\]{margin-right:10vw}.lg\:mt-12{margin-top:3rem}.lg\:mt-2{margin-top:.5rem}.lg\:mt-3{margin-top:.75rem}.lg\:mt-4{margin-top:1rem}.lg\:mt-\[35px\]{margin-top:35px}.lg\:block{display:block}.lg\:hidden{display:none}.lg\:h-\[14vw\]{height:14vw}.lg\:h-\[35px\]{height:35px}.lg\:h-\[520px\]{height:520px}.lg\:h-\[70px\]{height:70px}.lg\:min-h-\[600px\]{min-height:600px}.lg\:w-\[120\%\]{width:120%}.lg\:w-\[140px\]{width:140px}.lg\:w-\[150px\]{width:150px}.lg\:w-\[159px\]{width:159px}.lg\:w-\[190px\]{width:190px}.lg\:w-\[220px\]{width:220px}.lg\:w-\[430px\]{width:430px}.lg\:min-w-\[375px\]{min-width:375px}.lg\:min-w-\[400px\]{min-width:400px}.lg\:min-w-\[430px\]{min-width:430px}.lg\:min-w-\[calc\(50\%-20px\)\]{min-width:calc(50% - 20px)}.lg\:max-w-\[180px\]{max-width:180px}.lg\:max-w-\[280px\]{max-width:280px}.lg\:max-w-\[45\%\]{max-width:45%}.lg\:max-w-\[740px\]{max-width:740px}.lg\:flex-1{flex:1 1 0%}.lg\:-translate-y-1\/2{--tw-translate-y:-50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.lg\:items-center{align-items:center}.lg\:gap-\[100px\]{gap:100px}.lg\:gap-\[180px\]{gap:180px}.lg\:gap-\[35px\]{gap:35px}.lg\:gap-\[40px\]{gap:40px}.lg\:gap-\[60px\]{gap:60px}.lg\:gap-\[80px\]{gap:80px}.lg\:\!p-5{padding:1.25rem!important}.lg\:px-\[20px\]{padding-left:20px;padding-right:20px}.lg\:pb-9{padding-bottom:2.25rem}.lg\:pb-\[0px\]{padding-bottom:0}.lg\:pb-\[140px\]{padding-bottom:140px}.lg\:pl-\[130px\]{padding-left:130px}.lg\:pr-5{padding-right:1.25rem}.lg\:pt-\[45px\]{padding-top:45px}.lg\:text-2xl{font-size:1.5rem;line-height:2rem}.lg\:text-6xl{font-size:3.75rem;line-height:1}.lg\:text-\[32px\]{font-size:32px}.lg\:text-\[40px\]{font-size:40px}.lg\:text-\[44px\]{font-size:44px}.lg\:text-\[46px\]{font-size:46px}.lg\:text-\[48px\]{font-size:48px}.lg\:text-\[52px\]{font-size:52px}.lg\:text-\[58px\]{font-size:58px}.lg\:text-\[70px\]{font-size:70px}.lg\:text-lg{font-size:1.125rem;line-height:1.75rem}.lg\:text-xl{font-size:1.25rem;line-height:1.75rem}.lg\:leading-\[35px\]{line-height:35px}.lg\:leading-\[60px\]{line-height:60px}.lg\:leading-\[70px\]{line-height:70px}.lg\:leading-none{line-height:1}}@media (min-width:1280px){.xl\:h-full{height:100%}.xl\:h-screen{height:100vh}.xl\:w-\[530px\]{width:530px}.xl\:min-w-\[530px\]{min-width:530px}.xl\:min-w-\[600px\]{min-width:600px}.xl\:min-w-\[calc\(33\%-20px\)\]{min-width:calc(33% - 20px)}.xl\:gap-\[100px\]{gap:100px}.xl\:text-2xl{font-size:1.5rem;line-height:2rem}.xl\:text-\[102px\]{font-size:102px}.xl\:text-\[21px\]{font-size:21px}.xl\:text-\[32px\]{font-size:32px}.xl\:text-\[38px\]{font-size:38px}.xl\:text-\[52px\]{font-size:52px}.xl\:text-\[58px\]{font-size:58px}.xl\:text-\[80px\]{font-size:80px}.xl\:text-\[82px\]{font-size:82px}}@media (min-width:1536px){.\32xl\:hidden{display:none}.\32xl\:h-\[250px\]{height:250px}.\32xl\:gap-\[120px\]{gap:120px}.\32xl\:gap-\[80px\]{gap:80px}}.\[\&\:\:-webkit-inner-spin-button\]\:appearance-none::-webkit-inner-spin-button,.\[\&\:\:-webkit-outer-spin-button\]\:appearance-none::-webkit-outer-spin-button{-webkit-appearance:none;appearance:none}.\[\&\[data-state\=true\]\>svg\]\:rotate-180[data-state=true]>svg{--tw-rotate:180deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@font-face{font-family:__Apple_5d7b41;src:url(/_next/static/media/88203632e8260aeb-s.p.otf) format("opentype");font-display:swap;font-weight:400}@font-face{font-family:__Apple_Fallback_5d7b41;src:local("Arial");ascent-override:45.63%;descent-override:6.52%;line-gap-override:6.52%;size-adjust:191.76%}.__className_5d7b41{font-family:__Apple_5d7b41,__Apple_Fallback_5d7b41;font-weight:400}.__variable_5d7b41{--font-apple:"__Apple_5d7b41","__Apple_Fallback_5d7b41"}@font-face{font-family:__Jersey10_ab9a0e;src:url(/_next/static/media/e59cbd316639e005-s.p.ttf) format("truetype");font-display:swap;font-weight:400}@font-face{font-family:__Jersey10_Fallback_ab9a0e;src:local("Arial");ascent-override:99.77%;descent-override:33.26%;line-gap-override:0.00%;size-adjust:80.54%}.__className_ab9a0e{font-family:__Jersey10_ab9a0e,__Jersey10_Fallback_ab9a0e;font-weight:400}.__variable_ab9a0e{--font-jersey10:"__Jersey10_ab9a0e","__Jersey10_Fallback_ab9a0e"}@font-face{font-family:__Jersey15_4665bb;src:url(/_next/static/media/d44bbd8712f69079-s.p.ttf) format("truetype");font-display:swap;font-weight:400}@font-face{font-family:__Jersey15_Fallback_4665bb;src:local("Arial");ascent-override:91.77%;descent-override:26.22%;line-gap-override:0.00%;size-adjust:84.75%}.__className_4665bb{font-family:__Jersey15_4665bb,__Jersey15_Fallback_4665bb;font-weight:400}.__variable_4665bb{--font-jersey15:"__Jersey15_4665bb","__Jersey15_Fallback_4665bb"}@font-face{font-family:__Jersey20_dc1ab2;src:url(/_next/static/media/c74547b7582ef50c-s.p.ttf) format("truetype");font-display:swap;font-weight:400}@font-face{font-family:__Jersey20_Fallback_dc1ab2;src:local("Arial");ascent-override:91.34%;descent-override:23.68%;line-gap-override:0.00%;size-adjust:86.94%}.__className_dc1ab2{font-family:__Jersey20_dc1ab2,__Jersey20_Fallback_dc1ab2;font-weight:400}.__variable_dc1ab2{--font-jersey20:"__Jersey20_dc1ab2","__Jersey20_Fallback_dc1ab2"}@font-face{font-family:__Jersey25_ac344d;src:url(/_next/static/media/6d44ef66a06e1a3e-s.p.ttf) format("truetype");font-display:swap;font-weight:400}@font-face{font-family:__Jersey25_Fallback_ac344d;src:local("Arial");ascent-override:91.01%;descent-override:22.29%;line-gap-override:0.00%;size-adjust:88.26%}.__className_ac344d{font-family:__Jersey25_ac344d,__Jersey25_Fallback_ac344d;font-weight:400}.__variable_ac344d{--font-jersey25:"__Jersey25_ac344d","__Jersey25_Fallback_ac344d"}@font-face{font-family:__Museo_134ac4;src:url(/_next/static/media/dd583155b7d8a0bb-s.p.otf) format("opentype");font-display:swap;font-weight:400}@font-face{font-family:__Museo_Fallback_134ac4;src:local("Arial");ascent-override:93.60%;descent-override:25.89%;line-gap-override:0.00%;size-adjust:100.43%}.__className_134ac4{font-family:__Museo_134ac4,__Museo_Fallback_134ac4;font-weight:400}.__variable_134ac4{--font-museo:"__Museo_134ac4","__Museo_Fallback_134ac4"}