@charset "UTF-8";/*!
* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2020 Animate.css
*/
:root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1
}

.animate__animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animate__animated.animate__infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.animate__animated.animate__repeat-1 {
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: var(--animate-repeat);
    animation-iteration-count: var(--animate-repeat)
}

.animate__animated.animate__repeat-2 {
    -webkit-animation-iteration-count: 2;
    animation-iteration-count: 2;
    -webkit-animation-iteration-count: calc(var(--animate-repeat)*2);
    animation-iteration-count: calc(var(--animate-repeat)*2)
}

.animate__animated.animate__repeat-3 {
    -webkit-animation-iteration-count: 3;
    animation-iteration-count: 3;
    -webkit-animation-iteration-count: calc(var(--animate-repeat)*3);
    animation-iteration-count: calc(var(--animate-repeat)*3)
}

.animate__animated.animate__delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-delay: var(--animate-delay);
    animation-delay: var(--animate-delay)
}

.animate__animated.animate__delay-2s {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-delay: calc(var(--animate-delay)*2);
    animation-delay: calc(var(--animate-delay)*2)
}

.animate__animated.animate__delay-3s {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    -webkit-animation-delay: calc(var(--animate-delay)*3);
    animation-delay: calc(var(--animate-delay)*3)
}

.animate__animated.animate__delay-4s {
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
    -webkit-animation-delay: calc(var(--animate-delay)*4);
    animation-delay: calc(var(--animate-delay)*4)
}

.animate__animated.animate__delay-5s {
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
    -webkit-animation-delay: calc(var(--animate-delay)*5);
    animation-delay: calc(var(--animate-delay)*5)
}

.animate__animated.animate__faster {
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-duration: calc(var(--animate-duration)/2);
    animation-duration: calc(var(--animate-duration)/2)
}

.animate__animated.animate__fast {
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    -webkit-animation-duration: calc(var(--animate-duration)*.8);
    animation-duration: calc(var(--animate-duration)*.8)
}

.animate__animated.animate__slow {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-duration: calc(var(--animate-duration)*2);
    animation-duration: calc(var(--animate-duration)*2)
}

.animate__animated.animate__slower {
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-duration: calc(var(--animate-duration)*3);
    animation-duration: calc(var(--animate-duration)*3)
}

@media (prefers-reduced-motion:reduce),print {
    .animate__animated {
        -webkit-animation-duration: 1ms!important;
        animation-duration: 1ms!important;
        -webkit-transition-duration: 1ms!important;
        transition-duration: 1ms!important;
        -webkit-animation-iteration-count: 1!important;
        animation-iteration-count: 1!important
    }

    .animate__animated[class*=Out] {
        opacity: 0
    }
}

@-webkit-keyframes bounce {
    0%,20%,53%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1);
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    40%,43% {
        -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        -webkit-transform: translate3d(0,-30px,0) scaleY(1.1);
        transform: translate3d(0,-30px,0) scaleY(1.1)
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        -webkit-transform: translate3d(0,-15px,0) scaleY(1.05);
        transform: translate3d(0,-15px,0) scaleY(1.05)
    }

    80% {
        -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
        transition-timing-function: cubic-bezier(.215,.61,.355,1);
        -webkit-transform: translateZ(0) scaleY(.95);
        transform: translateZ(0) scaleY(.95)
    }

    90% {
        -webkit-transform: translate3d(0,-4px,0) scaleY(1.02);
        transform: translate3d(0,-4px,0) scaleY(1.02)
    }
}

@keyframes bounce {
    0%,20%,53%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1);
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    40%,43% {
        -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        -webkit-transform: translate3d(0,-30px,0) scaleY(1.1);
        transform: translate3d(0,-30px,0) scaleY(1.1)
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        -webkit-transform: translate3d(0,-15px,0) scaleY(1.05);
        transform: translate3d(0,-15px,0) scaleY(1.05)
    }

    80% {
        -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
        transition-timing-function: cubic-bezier(.215,.61,.355,1);
        -webkit-transform: translateZ(0) scaleY(.95);
        transform: translateZ(0) scaleY(.95)
    }

    90% {
        -webkit-transform: translate3d(0,-4px,0) scaleY(1.02);
        transform: translate3d(0,-4px,0) scaleY(1.02)
    }
}

.animate__bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom
}

@-webkit-keyframes flash {
    0%,50%,to {
        opacity: 1
    }

    25%,75% {
        opacity: 0
    }
}

@keyframes flash {
    0%,50%,to {
        opacity: 1
    }

    25%,75% {
        opacity: 0
    }
}

.animate__flash {
    -webkit-animation-name: flash;
    animation-name: flash
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    50% {
        -webkit-transform: scale3d(1.05,1.05,1.05);
        transform: scale3d(1.05,1.05,1.05)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    50% {
        -webkit-transform: scale3d(1.05,1.05,1.05);
        transform: scale3d(1.05,1.05,1.05)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.animate__pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
}

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    30% {
        -webkit-transform: scale3d(1.25,.75,1);
        transform: scale3d(1.25,.75,1)
    }

    40% {
        -webkit-transform: scale3d(.75,1.25,1);
        transform: scale3d(.75,1.25,1)
    }

    50% {
        -webkit-transform: scale3d(1.15,.85,1);
        transform: scale3d(1.15,.85,1)
    }

    65% {
        -webkit-transform: scale3d(.95,1.05,1);
        transform: scale3d(.95,1.05,1)
    }

    75% {
        -webkit-transform: scale3d(1.05,.95,1);
        transform: scale3d(1.05,.95,1)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    30% {
        -webkit-transform: scale3d(1.25,.75,1);
        transform: scale3d(1.25,.75,1)
    }

    40% {
        -webkit-transform: scale3d(.75,1.25,1);
        transform: scale3d(.75,1.25,1)
    }

    50% {
        -webkit-transform: scale3d(1.15,.85,1);
        transform: scale3d(1.15,.85,1)
    }

    65% {
        -webkit-transform: scale3d(.95,1.05,1);
        transform: scale3d(.95,1.05,1)
    }

    75% {
        -webkit-transform: scale3d(1.05,.95,1);
        transform: scale3d(1.05,.95,1)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.animate__rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand
}

@-webkit-keyframes shakeX {
    0%,to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    10%,30%,50%,70%,90% {
        -webkit-transform: translate3d(-10px,0,0);
        transform: translate3d(-10px,0,0)
    }

    20%,40%,60%,80% {
        -webkit-transform: translate3d(10px,0,0);
        transform: translate3d(10px,0,0)
    }
}

@keyframes shakeX {
    0%,to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    10%,30%,50%,70%,90% {
        -webkit-transform: translate3d(-10px,0,0);
        transform: translate3d(-10px,0,0)
    }

    20%,40%,60%,80% {
        -webkit-transform: translate3d(10px,0,0);
        transform: translate3d(10px,0,0)
    }
}

.animate__shakeX {
    -webkit-animation-name: shakeX;
    animation-name: shakeX
}

@-webkit-keyframes shakeY {
    0%,to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    10%,30%,50%,70%,90% {
        -webkit-transform: translate3d(0,-10px,0);
        transform: translate3d(0,-10px,0)
    }

    20%,40%,60%,80% {
        -webkit-transform: translate3d(0,10px,0);
        transform: translate3d(0,10px,0)
    }
}

@keyframes shakeY {
    0%,to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    10%,30%,50%,70%,90% {
        -webkit-transform: translate3d(0,-10px,0);
        transform: translate3d(0,-10px,0)
    }

    20%,40%,60%,80% {
        -webkit-transform: translate3d(0,10px,0);
        transform: translate3d(0,10px,0)
    }
}

.animate__shakeY {
    -webkit-animation-name: shakeY;
    animation-name: shakeY
}

@-webkit-keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translate(0)
    }

    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translate(-6px) rotateY(-9deg)
    }

    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translate(5px) rotateY(7deg)
    }

    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translate(-3px) rotateY(-5deg)
    }

    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translate(2px) rotateY(3deg)
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translate(0)
    }
}

@keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translate(0)
    }

    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translate(-6px) rotateY(-9deg)
    }

    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translate(5px) rotateY(7deg)
    }

    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translate(-3px) rotateY(-5deg)
    }

    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translate(2px) rotateY(3deg)
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translate(0)
    }
}

.animate__headShake {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: headShake;
    animation-name: headShake
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg)
    }

    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }

    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0)
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg)
    }

    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }

    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0)
    }
}

.animate__swing {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    10%,20% {
        -webkit-transform: scale3d(.9,.9,.9) rotate(-3deg);
        transform: scale3d(.9,.9,.9) rotate(-3deg)
    }

    30%,50%,70%,90% {
        -webkit-transform: scale3d(1.1,1.1,1.1) rotate(3deg);
        transform: scale3d(1.1,1.1,1.1) rotate(3deg)
    }

    40%,60%,80% {
        -webkit-transform: scale3d(1.1,1.1,1.1) rotate(-3deg);
        transform: scale3d(1.1,1.1,1.1) rotate(-3deg)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    10%,20% {
        -webkit-transform: scale3d(.9,.9,.9) rotate(-3deg);
        transform: scale3d(.9,.9,.9) rotate(-3deg)
    }

    30%,50%,70%,90% {
        -webkit-transform: scale3d(1.1,1.1,1.1) rotate(3deg);
        transform: scale3d(1.1,1.1,1.1) rotate(3deg)
    }

    40%,60%,80% {
        -webkit-transform: scale3d(1.1,1.1,1.1) rotate(-3deg);
        transform: scale3d(1.1,1.1,1.1) rotate(-3deg)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.animate__tada {
    -webkit-animation-name: tada;
    animation-name: tada
}

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    15% {
        -webkit-transform: translate3d(-25%,0,0) rotate(-5deg);
        transform: translate3d(-25%,0,0) rotate(-5deg)
    }

    30% {
        -webkit-transform: translate3d(20%,0,0) rotate(3deg);
        transform: translate3d(20%,0,0) rotate(3deg)
    }

    45% {
        -webkit-transform: translate3d(-15%,0,0) rotate(-3deg);
        transform: translate3d(-15%,0,0) rotate(-3deg)
    }

    60% {
        -webkit-transform: translate3d(10%,0,0) rotate(2deg);
        transform: translate3d(10%,0,0) rotate(2deg)
    }

    75% {
        -webkit-transform: translate3d(-5%,0,0) rotate(-1deg);
        transform: translate3d(-5%,0,0) rotate(-1deg)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    15% {
        -webkit-transform: translate3d(-25%,0,0) rotate(-5deg);
        transform: translate3d(-25%,0,0) rotate(-5deg)
    }

    30% {
        -webkit-transform: translate3d(20%,0,0) rotate(3deg);
        transform: translate3d(20%,0,0) rotate(3deg)
    }

    45% {
        -webkit-transform: translate3d(-15%,0,0) rotate(-3deg);
        transform: translate3d(-15%,0,0) rotate(-3deg)
    }

    60% {
        -webkit-transform: translate3d(10%,0,0) rotate(2deg);
        transform: translate3d(10%,0,0) rotate(2deg)
    }

    75% {
        -webkit-transform: translate3d(-5%,0,0) rotate(-1deg);
        transform: translate3d(-5%,0,0) rotate(-1deg)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble
}

@-webkit-keyframes jello {
    0%,11.1%,to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skew(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skew(6.25deg) skewY(6.25deg)
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skew(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skew(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skew(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skew(.390625deg) skewY(.390625deg)
    }

    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skew(-.1953125deg) skewY(-.1953125deg)
    }
}

@keyframes jello {
    0%,11.1%,to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skew(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skew(6.25deg) skewY(6.25deg)
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skew(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skew(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skew(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skew(.390625deg) skewY(.390625deg)
    }

    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skew(-.1953125deg) skewY(-.1953125deg)
    }
}

.animate__jello {
    -webkit-animation-name: jello;
    animation-name: jello;
    -webkit-transform-origin: center;
    transform-origin: center
}

@-webkit-keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.animate__heartBeat {
    -webkit-animation-name: heartBeat;
    animation-name: heartBeat;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-duration: calc(var(--animate-duration)*1.3);
    animation-duration: calc(var(--animate-duration)*1.3);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
}

@-webkit-keyframes backInDown {
    0% {
        -webkit-transform: translateY(-1200px) scale(.7);
        transform: translateY(-1200px) scale(.7);
        opacity: .7
    }

    80% {
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7);
        opacity: .7
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

@keyframes backInDown {
    0% {
        -webkit-transform: translateY(-1200px) scale(.7);
        transform: translateY(-1200px) scale(.7);
        opacity: .7
    }

    80% {
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7);
        opacity: .7
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

.animate__backInDown {
    -webkit-animation-name: backInDown;
    animation-name: backInDown
}

@-webkit-keyframes backInLeft {
    0% {
        -webkit-transform: translateX(-2000px) scale(.7);
        transform: translate(-2000px) scale(.7);
        opacity: .7
    }

    80% {
        -webkit-transform: translateX(0) scale(.7);
        transform: translate(0) scale(.7);
        opacity: .7
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

@keyframes backInLeft {
    0% {
        -webkit-transform: translateX(-2000px) scale(.7);
        transform: translate(-2000px) scale(.7);
        opacity: .7
    }

    80% {
        -webkit-transform: translateX(0) scale(.7);
        transform: translate(0) scale(.7);
        opacity: .7
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

.animate__backInLeft {
    -webkit-animation-name: backInLeft;
    animation-name: backInLeft
}

@-webkit-keyframes backInRight {
    0% {
        -webkit-transform: translateX(2000px) scale(.7);
        transform: translate(2000px) scale(.7);
        opacity: .7
    }

    80% {
        -webkit-transform: translateX(0) scale(.7);
        transform: translate(0) scale(.7);
        opacity: .7
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

@keyframes backInRight {
    0% {
        -webkit-transform: translateX(2000px) scale(.7);
        transform: translate(2000px) scale(.7);
        opacity: .7
    }

    80% {
        -webkit-transform: translateX(0) scale(.7);
        transform: translate(0) scale(.7);
        opacity: .7
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

.animate__backInRight {
    -webkit-animation-name: backInRight;
    animation-name: backInRight
}

@-webkit-keyframes backInUp {
    0% {
        -webkit-transform: translateY(1200px) scale(.7);
        transform: translateY(1200px) scale(.7);
        opacity: .7
    }

    80% {
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7);
        opacity: .7
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

@keyframes backInUp {
    0% {
        -webkit-transform: translateY(1200px) scale(.7);
        transform: translateY(1200px) scale(.7);
        opacity: .7
    }

    80% {
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7);
        opacity: .7
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

.animate__backInUp {
    -webkit-animation-name: backInUp;
    animation-name: backInUp
}

@-webkit-keyframes backOutDown {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    20% {
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7);
        opacity: .7
    }

    to {
        -webkit-transform: translateY(700px) scale(.7);
        transform: translateY(700px) scale(.7);
        opacity: .7
    }
}

@keyframes backOutDown {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    20% {
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7);
        opacity: .7
    }

    to {
        -webkit-transform: translateY(700px) scale(.7);
        transform: translateY(700px) scale(.7);
        opacity: .7
    }
}

.animate__backOutDown {
    -webkit-animation-name: backOutDown;
    animation-name: backOutDown
}

@-webkit-keyframes backOutLeft {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    20% {
        -webkit-transform: translateX(0) scale(.7);
        transform: translate(0) scale(.7);
        opacity: .7
    }

    to {
        -webkit-transform: translateX(-2000px) scale(.7);
        transform: translate(-2000px) scale(.7);
        opacity: .7
    }
}

@keyframes backOutLeft {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    20% {
        -webkit-transform: translateX(0) scale(.7);
        transform: translate(0) scale(.7);
        opacity: .7
    }

    to {
        -webkit-transform: translateX(-2000px) scale(.7);
        transform: translate(-2000px) scale(.7);
        opacity: .7
    }
}

.animate__backOutLeft {
    -webkit-animation-name: backOutLeft;
    animation-name: backOutLeft
}

@-webkit-keyframes backOutRight {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    20% {
        -webkit-transform: translateX(0) scale(.7);
        transform: translate(0) scale(.7);
        opacity: .7
    }

    to {
        -webkit-transform: translateX(2000px) scale(.7);
        transform: translate(2000px) scale(.7);
        opacity: .7
    }
}

@keyframes backOutRight {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    20% {
        -webkit-transform: translateX(0) scale(.7);
        transform: translate(0) scale(.7);
        opacity: .7
    }

    to {
        -webkit-transform: translateX(2000px) scale(.7);
        transform: translate(2000px) scale(.7);
        opacity: .7
    }
}

.animate__backOutRight {
    -webkit-animation-name: backOutRight;
    animation-name: backOutRight
}

@-webkit-keyframes backOutUp {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    20% {
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7);
        opacity: .7
    }

    to {
        -webkit-transform: translateY(-700px) scale(.7);
        transform: translateY(-700px) scale(.7);
        opacity: .7
    }
}

@keyframes backOutUp {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    20% {
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7);
        opacity: .7
    }

    to {
        -webkit-transform: translateY(-700px) scale(.7);
        transform: translateY(-700px) scale(.7);
        opacity: .7
    }
}

.animate__backOutUp {
    -webkit-animation-name: backOutUp;
    animation-name: backOutUp
}

@-webkit-keyframes bounceIn {
    0%,20%,40%,60%,80%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

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

    20% {
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1)
    }

    40% {
        -webkit-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.9)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03,1.03,1.03);
        transform: scale3d(1.03,1.03,1.03)
    }

    80% {
        -webkit-transform: scale3d(.97,.97,.97);
        transform: scale3d(.97,.97,.97)
    }

    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes bounceIn {
    0%,20%,40%,60%,80%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

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

    20% {
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1)
    }

    40% {
        -webkit-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.9)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03,1.03,1.03);
        transform: scale3d(1.03,1.03,1.03)
    }

    80% {
        -webkit-transform: scale3d(.97,.97,.97);
        transform: scale3d(.97,.97,.97)
    }

    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.animate__bounceIn {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-animation-duration: calc(var(--animate-duration)*.75);
    animation-duration: calc(var(--animate-duration)*.75);
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn
}

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

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

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

    75% {
        -webkit-transform: translate3d(0,-10px,0) scaleY(.95);
        transform: translate3d(0,-10px,0) scaleY(.95)
    }

    90% {
        -webkit-transform: translate3d(0,5px,0) scaleY(.985);
        transform: translate3d(0,5px,0) scaleY(.985)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

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

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

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

    75% {
        -webkit-transform: translate3d(0,-10px,0) scaleY(.95);
        transform: translate3d(0,-10px,0) scaleY(.95)
    }

    90% {
        -webkit-transform: translate3d(0,5px,0) scaleY(.985);
        transform: translate3d(0,5px,0) scaleY(.985)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown
}

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

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

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

    75% {
        -webkit-transform: translate3d(-10px,0,0) scaleX(.98);
        transform: translate3d(-10px,0,0) scaleX(.98)
    }

    90% {
        -webkit-transform: translate3d(5px,0,0) scaleX(.995);
        transform: translate3d(5px,0,0) scaleX(.995)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

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

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

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

    75% {
        -webkit-transform: translate3d(-10px,0,0) scaleX(.98);
        transform: translate3d(-10px,0,0) scaleX(.98)
    }

    90% {
        -webkit-transform: translate3d(5px,0,0) scaleX(.995);
        transform: translate3d(5px,0,0) scaleX(.995)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft
}

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

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

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

    75% {
        -webkit-transform: translate3d(10px,0,0) scaleX(.98);
        transform: translate3d(10px,0,0) scaleX(.98)
    }

    90% {
        -webkit-transform: translate3d(-5px,0,0) scaleX(.995);
        transform: translate3d(-5px,0,0) scaleX(.995)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

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

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

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

    75% {
        -webkit-transform: translate3d(10px,0,0) scaleX(.98);
        transform: translate3d(10px,0,0) scaleX(.98)
    }

    90% {
        -webkit-transform: translate3d(-5px,0,0) scaleX(.995);
        transform: translate3d(-5px,0,0) scaleX(.995)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight
}

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

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

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

    75% {
        -webkit-transform: translate3d(0,10px,0) scaleY(.95);
        transform: translate3d(0,10px,0) scaleY(.95)
    }

    90% {
        -webkit-transform: translate3d(0,-5px,0) scaleY(.985);
        transform: translate3d(0,-5px,0) scaleY(.985)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

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

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

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

    75% {
        -webkit-transform: translate3d(0,10px,0) scaleY(.95);
        transform: translate3d(0,10px,0) scaleY(.95)
    }

    90% {
        -webkit-transform: translate3d(0,-5px,0) scaleY(.985);
        transform: translate3d(0,-5px,0) scaleY(.985)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp
}

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.9)
    }

    50%,55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.9)
    }

    50%,55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }
}

.animate__bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-animation-duration: calc(var(--animate-duration)*.75);
    animation-duration: calc(var(--animate-duration)*.75);
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0,10px,0) scaleY(.985);
        transform: translate3d(0,10px,0) scaleY(.985)
    }

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

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

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0,10px,0) scaleY(.985);
        transform: translate3d(0,10px,0) scaleY(.985)
    }

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

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

.animate__bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px,0,0) scaleX(.9);
        transform: translate3d(20px,0,0) scaleX(.9)
    }

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

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px,0,0) scaleX(.9);
        transform: translate3d(20px,0,0) scaleX(.9)
    }

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

.animate__bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px,0,0) scaleX(.9);
        transform: translate3d(-20px,0,0) scaleX(.9)
    }

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

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px,0,0) scaleX(.9);
        transform: translate3d(-20px,0,0) scaleX(.9)
    }

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

.animate__bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight
}

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0,-10px,0) scaleY(.985);
        transform: translate3d(0,-10px,0) scaleY(.985)
    }

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

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

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0,-10px,0) scaleY(.985);
        transform: translate3d(0,-10px,0) scaleY(.985)
    }

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

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

.animate__bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.animate__fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-2000px,0);
        transform: translate3d(0,-2000px,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-2000px,0);
        transform: translate3d(0,-2000px,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px,0,0);
        transform: translate3d(-2000px,0,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px,0,0);
        transform: translate3d(-2000px,0,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px,0,0);
        transform: translate3d(2000px,0,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px,0,0);
        transform: translate3d(2000px,0,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,2000px,0);
        transform: translate3d(0,2000px,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,2000px,0);
        transform: translate3d(0,2000px,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig
}

@-webkit-keyframes fadeInTopLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%,-100%,0);
        transform: translate3d(-100%,-100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInTopLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%,-100%,0);
        transform: translate3d(-100%,-100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInTopLeft {
    -webkit-animation-name: fadeInTopLeft;
    animation-name: fadeInTopLeft
}

@-webkit-keyframes fadeInTopRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%,-100%,0);
        transform: translate3d(100%,-100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInTopRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%,-100%,0);
        transform: translate3d(100%,-100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInTopRight {
    -webkit-animation-name: fadeInTopRight;
    animation-name: fadeInTopRight
}

@-webkit-keyframes fadeInBottomLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%,100%,0);
        transform: translate3d(-100%,100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInBottomLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%,100%,0);
        transform: translate3d(-100%,100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInBottomLeft {
    -webkit-animation-name: fadeInBottomLeft;
    animation-name: fadeInBottomLeft
}

@-webkit-keyframes fadeInBottomRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%,100%,0);
        transform: translate3d(100%,100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInBottomRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%,100%,0);
        transform: translate3d(100%,100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInBottomRight {
    -webkit-animation-name: fadeInBottomRight;
    animation-name: fadeInBottomRight
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.animate__fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0)
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0)
    }
}

.animate__fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

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

@keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

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

.animate__fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0)
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0)
    }
}

.animate__fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

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

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

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

.animate__fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0)
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0)
    }
}

.animate__fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

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

@keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

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

.animate__fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0)
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0)
    }
}

.animate__fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

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

@keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

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

.animate__fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig
}

@-webkit-keyframes fadeOutTopLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%,-100%,0);
        transform: translate3d(-100%,-100%,0)
    }
}

@keyframes fadeOutTopLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%,-100%,0);
        transform: translate3d(-100%,-100%,0)
    }
}

.animate__fadeOutTopLeft {
    -webkit-animation-name: fadeOutTopLeft;
    animation-name: fadeOutTopLeft
}

@-webkit-keyframes fadeOutTopRight {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%,-100%,0);
        transform: translate3d(100%,-100%,0)
    }
}

@keyframes fadeOutTopRight {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%,-100%,0);
        transform: translate3d(100%,-100%,0)
    }
}

.animate__fadeOutTopRight {
    -webkit-animation-name: fadeOutTopRight;
    animation-name: fadeOutTopRight
}

@-webkit-keyframes fadeOutBottomRight {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%,100%,0);
        transform: translate3d(100%,100%,0)
    }
}

@keyframes fadeOutBottomRight {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%,100%,0);
        transform: translate3d(100%,100%,0)
    }
}

.animate__fadeOutBottomRight {
    -webkit-animation-name: fadeOutBottomRight;
    animation-name: fadeOutBottomRight
}

@-webkit-keyframes fadeOutBottomLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%,100%,0);
        transform: translate3d(-100%,100%,0)
    }
}

@keyframes fadeOutBottomLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%,100%,0);
        transform: translate3d(-100%,100%,0)
    }
}

.animate__fadeOutBottomLeft {
    -webkit-animation-name: fadeOutBottomLeft;
    animation-name: fadeOutBottomLeft
}

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    50% {
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);
        transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    to {
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    50% {
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);
        transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    to {
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

.animate__animated.animate__flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip
}

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

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

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

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

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

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

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

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

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

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

.animate__flipInX {
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX
}

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

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

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

    80% {
        -webkit-transform: perspective(400px) rotateY(-5deg);
        transform: perspective(400px) rotateY(-5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

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

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

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

    80% {
        -webkit-transform: perspective(400px) rotateY(-5deg);
        transform: perspective(400px) rotateY(-5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

.animate__flipInY {
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

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

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

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

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

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

.animate__flipOutX {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-animation-duration: calc(var(--animate-duration)*.75);
    animation-duration: calc(var(--animate-duration)*.75);
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important
}

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotateY(-15deg);
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotateY(-15deg);
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

.animate__flipOutY {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-animation-duration: calc(var(--animate-duration)*.75);
    animation-duration: calc(var(--animate-duration)*.75);
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY
}

@-webkit-keyframes lightSpeedInRight {
    0% {
        -webkit-transform: translate3d(100%,0,0) skewX(-30deg);
        transform: translate3d(100%,0,0) skew(-30deg);
        opacity: 0
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skew(20deg);
        opacity: 1
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skew(-5deg)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes lightSpeedInRight {
    0% {
        -webkit-transform: translate3d(100%,0,0) skewX(-30deg);
        transform: translate3d(100%,0,0) skew(-30deg);
        opacity: 0
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skew(20deg);
        opacity: 1
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skew(-5deg)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__lightSpeedInRight {
    -webkit-animation-name: lightSpeedInRight;
    animation-name: lightSpeedInRight;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedInLeft {
    0% {
        -webkit-transform: translate3d(-100%,0,0) skewX(30deg);
        transform: translate3d(-100%,0,0) skew(30deg);
        opacity: 0
    }

    60% {
        -webkit-transform: skewX(-20deg);
        transform: skew(-20deg);
        opacity: 1
    }

    80% {
        -webkit-transform: skewX(5deg);
        transform: skew(5deg)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes lightSpeedInLeft {
    0% {
        -webkit-transform: translate3d(-100%,0,0) skewX(30deg);
        transform: translate3d(-100%,0,0) skew(30deg);
        opacity: 0
    }

    60% {
        -webkit-transform: skewX(-20deg);
        transform: skew(-20deg);
        opacity: 1
    }

    80% {
        -webkit-transform: skewX(5deg);
        transform: skew(5deg)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__lightSpeedInLeft {
    -webkit-animation-name: lightSpeedInLeft;
    animation-name: lightSpeedInLeft;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedOutRight {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(100%,0,0) skewX(30deg);
        transform: translate3d(100%,0,0) skew(30deg);
        opacity: 0
    }
}

@keyframes lightSpeedOutRight {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(100%,0,0) skewX(30deg);
        transform: translate3d(100%,0,0) skew(30deg);
        opacity: 0
    }
}

.animate__lightSpeedOutRight {
    -webkit-animation-name: lightSpeedOutRight;
    animation-name: lightSpeedOutRight;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
}

@-webkit-keyframes lightSpeedOutLeft {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(-100%,0,0) skewX(-30deg);
        transform: translate3d(-100%,0,0) skew(-30deg);
        opacity: 0
    }
}

@keyframes lightSpeedOutLeft {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(-100%,0,0) skewX(-30deg);
        transform: translate3d(-100%,0,0) skew(-30deg);
        opacity: 0
    }
}

.animate__lightSpeedOutLeft {
    -webkit-animation-name: lightSpeedOutLeft;
    animation-name: lightSpeedOutLeft;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

.animate__rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
    -webkit-transform-origin: center;
    transform-origin: center
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

.animate__rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom
}

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

.animate__rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

.animate__rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

.animate__rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom
}

@-webkit-keyframes rotateOut {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0
    }
}

@keyframes rotateOut {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0
    }
}

.animate__rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
    -webkit-transform-origin: center;
    transform-origin: center
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownLeft {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }
}

.animate__rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownRight {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }
}

.animate__rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }
}

@keyframes rotateOutUpLeft {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }
}

.animate__rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpRight {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

.animate__rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom
}

@-webkit-keyframes hinge {
    0% {
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%,60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    40%,80% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

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

@keyframes hinge {
    0% {
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%,60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    40%,80% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

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

.animate__hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-duration: calc(var(--animate-duration)*2);
    animation-duration: calc(var(--animate-duration)*2);
    -webkit-animation-name: hinge;
    animation-name: hinge;
    -webkit-transform-origin: top left;
    transform-origin: top left
}

@-webkit-keyframes jackInTheBox {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) rotate(30deg);
        transform: scale(.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom
    }

    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes jackInTheBox {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) rotate(30deg);
        transform: scale(.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom
    }

    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.animate__jackInTheBox {
    -webkit-animation-name: jackInTheBox;
    animation-name: jackInTheBox
}

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0) rotate(-120deg);
        transform: translate3d(-100%,0,0) rotate(-120deg)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0) rotate(-120deg);
        transform: translate3d(-100%,0,0) rotate(-120deg)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn
}

@-webkit-keyframes rollOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0) rotate(120deg);
        transform: translate3d(100%,0,0) rotate(120deg)
    }
}

@keyframes rollOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0) rotate(120deg);
        transform: translate3d(100%,0,0) rotate(120deg)
    }
}

.animate__rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut
}

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

    50% {
        opacity: 1
    }
}

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

    50% {
        opacity: 1
    }
}

.animate__zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn
}

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.animate__zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown
}

@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
        transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
        transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.animate__zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft
}

@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
        transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
        transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.animate__zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight
}

@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.animate__zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp
}

@-webkit-keyframes zoomOut {
    0% {
        opacity: 1
    }

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

    to {
        opacity: 0
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }

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

    to {
        opacity: 0
    }
}

.animate__zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut
}

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.animate__zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom
}

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(42px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(42px,0,0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px,0,0);
        transform: scale(.1) translate3d(-2000px,0,0)
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(42px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(42px,0,0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px,0,0);
        transform: scale(.1) translate3d(-2000px,0,0)
    }
}

.animate__zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
    -webkit-transform-origin: left center;
    transform-origin: left center
}

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(-42px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(-42px,0,0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px,0,0);
        transform: scale(.1) translate3d(2000px,0,0)
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(-42px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(-42px,0,0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px,0,0);
        transform: scale(.1) translate3d(2000px,0,0)
    }
}

.animate__zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight;
    -webkit-transform-origin: right center;
    transform-origin: right center
}

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.animate__zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown
}

@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

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

@keyframes slideOutDown {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

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

.animate__slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown
}

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

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

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

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

.animate__slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

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

@keyframes slideOutRight {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

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

.animate__slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

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

@keyframes slideOutUp {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

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

.animate__slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp
}

*,:before,:after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: currentColor
}

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

html,:host {
    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,samp,pre {
    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]) {
   
    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] {
    outline-offset: -2px
}

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

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

summary {
    display: list-item
}

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

fieldset {
    margin: 0;
    padding: 0
}

legend {
    padding: 0
}

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

dialog {
    padding: 0
}

textarea {
    resize: vertical
}

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

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

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

:disabled {
    cursor: default
}

img,svg,video,canvas,audio,iframe,embed,object {
    display: block;
}

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

[hidden] {
    display: none
}

*,:before,:after {
    --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: rgb(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: rgb(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: 480px) {
    .container {
        max-width:480px
    }
}

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

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

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

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

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

.static {
    position: static
}

.fixed {
    position: fixed
}

.absolute {
    position: absolute
}

.relative {
    position: relative
}

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

.\!right-\[22px\] {
    right: 22px!important
}

.bottom-0 {
    bottom: 0
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.left-0 {
    left: 0
}

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

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

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

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

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

.right-0 {
    right: 0
}

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

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

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

.top-0 {
    top: 0
}

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

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

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

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

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

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

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

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

.z-0 {
    z-index: 0
}

.z-10 {
    z-index: 10
}

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

.order-1 {
    order: 1
}

.order-2 {
    order: 2
}

.float-right {
    float: right
}

.float-left {
    float: left
}

.m-\[auto\],.m-auto {
    margin: auto
}

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

.mx-\[-6px\] {
    margin-left: -6px;
    margin-right: -6px
}

.mx-\[10px\] {
    margin-left: 10px;
    margin-right: 10px
}

.mx-\[20px\] {
    margin-left: 20px;
    margin-right: 20px
}

.mx-\[auto\],.mx-auto {
    margin-left: auto;
    margin-right: auto
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ml-0 {
    margin-left: 0
}

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

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

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

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

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

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

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

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

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

.ml-\[6\%\] {
    margin-left: 6%
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mr-\[7\.5\%\] {
    margin-right: 7.5%
}

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

.ms-0 {
    margin-inline-start:0px}

.ms-\[20px\] {
    margin-inline-start:20px}

.ms-\[21px\] {
    margin-inline-start:21px}

.ms-\[38px\] {
    margin-inline-start:38px}

.mt-0 {
    margin-top: 0
}

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

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

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

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

.mt-\[0\] {
    margin-top: 0
}

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

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

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

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

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

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

.mt-\[1em\] {
    margin-top: 1em
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.box-border {
    box-sizing: border-box
}

.block {
    display: block
}

.inline-block {
    display: inline-block
}

.inline {
    display: inline
}

.flex {
    display: flex
}

.inline-flex {
    display: inline-flex
}

.table {
    display: table
}

.grid {
    display: grid
}

.contents {
    display: contents
}

.hidden {
    display: none
}

.aspect-\[1920\/1080\] {
    aspect-ratio: 1920/1080
}

.aspect-\[580\/538\] {
    aspect-ratio: 580/538
}

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

.h-10 {
    height: 2.5rem
}

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

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

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

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

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

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

.h-\[112\%\] {
    height: 112%
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.h-\[auto\] {
    height: auto
}

.h-\[full\] {
    height: full
}

.h-full {
    height: 100%
}

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

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

.min-h-0 {
    min-height: 0px
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.\!w-\[6\%\] {
    width: 6%!important
}

.\!w-\[93\%\] {
    width: 93%!important
}

.w-2\/3 {
    width: 66.666667%
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.w-\[91\.7\%\] {
    width: 91.7%
}

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

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

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

.w-auto {
    width: auto
}

.w-fit {
    width: -moz-fit-content;
    width: fit-content
}

.w-full {
    width: 100%
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.flex-shrink {
    flex-shrink: 1
}

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

.flex-grow {
    flex-grow: 1
}

.basis-1\/2 {
    flex-basis: 50%
}

.basis-2\/5 {
    flex-basis: 40%
}

.basis-3\/5 {
    flex-basis: 60%
}

.border-separate {
    border-collapse: separate
}

.border-spacing-x-\[6px\] {
    --tw-border-spacing-x: 6px;
    border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y)
}

.border-spacing-y-\[0\] {
    --tw-border-spacing-y: 0;
    border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y)
}

.origin-\[0_240px\] {
    transform-origin: 0 240px
}

.origin-\[45\%_45\%\] {
    transform-origin: 45% 45%
}

.origin-\[90\%_50\%\] {
    transform-origin: 90% 50%
}

.origin-left {
    transform-origin: left
}

.origin-top-left {
    transform-origin: top left
}

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

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

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

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

.translate-y-\[-1px\] {
    --tw-translate-y: -1px;
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

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

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

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

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

.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-rows-\[0fr\] {
    grid-template-rows: 0fr
}

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

.flex-row {
    flex-direction: row
}

.\!flex-col {
    flex-direction: column!important
}

.flex-col {
    flex-direction: column
}

.flex-col-reverse {
    flex-direction: column-reverse
}

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

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

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

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

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

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

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

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

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

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

.gap-\[17\.03px\] {
    gap: 17.03px
}

.gap-\[1em\] {
    gap: 1em
}

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

.gap-\[20px_40px\] {
    gap: 20px 40px
}

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

.gap-\[24px_40px\] {
    gap: 24px 40px
}

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

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

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

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

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

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

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

.gap-\[40px_332px\] {
    gap: 40px 332px
}

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

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

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

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

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

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

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

.divide-solid>:not([hidden])~:not([hidden]) {
    border-style: solid
}

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

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

.self-center {
    align-self: center
}

.self-stretch {
    align-self: stretch
}

.overflow-auto {
    overflow: auto
}

.overflow-hidden {
    overflow: hidden
}

.overflow-x-auto {
    overflow-x: auto
}

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

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.text-ellipsis {
    text-overflow: ellipsis
}

.whitespace-nowrap {
    white-space: nowrap
}

.text-wrap {
    text-wrap: wrap
}

.text-nowrap {
    text-wrap: nowrap
}

.break-words {
    overflow-wrap: break-word
}

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

.\!rounded-\[50\%\] {
    border-radius: 50%!important
}

.rounded-3xl {
    border-radius: 1.5rem
}

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

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

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

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

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

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

.rounded-\[5\.467px\] {
    border-radius: 5.467px
}

.rounded-\[50\%\] {
    border-radius: 50%
}

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

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

.rounded-\[8\.5px\] {
    border-radius: 8.5px
}

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

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

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

.rounded-b-\[12px\] {
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px
}

.rounded-b-\[20px\] {
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px
}

.rounded-l-3xl {
    border-top-left-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem
}

.rounded-t-\[12px\] {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px
}

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

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

.border {
    border-width: 1px
}

.border-0 {
    border-width: 0px
}

.border-\[0\.273px\] {
    border-width: .273px
}

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

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

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

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

.border-solid {
    border-style: solid
}

.\!border-none {
    border-style: none!important
}

.border-\[\#7532FF\] {
    --tw-border-opacity: 1;
    border-color: rgb(117 50 255 / var(--tw-border-opacity))
}

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

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

.border-\[rgba\(0\,0\,0\,0\.1\)\] {
    border-color: #0000001a
}

.border-\[rgba\(0\,0\,0\,0\.15\)\] {
    border-color: #00000026
}

.border-\[rgba\(255\,255\,255\,0\)\] {
    border-color: #fff0
}

.border-\[rgba\(255\,255\,255\,0\.1\)\] {
    border-color: #ffffff1a
}

.border-\[rgba\(255\,255\,255\,0\.14\)\] {
    border-color: #ffffff24
}

.border-\[rgba\(255\,255\,255\,0\.2\)\] {
    border-color: #fff3
}

.border-\[rgba\(255\,255\,255\,0\.35\)\] {
    border-color: #ffffff59
}

.border-black-02 {
    border-color: var(--black-02)
}

.border-black-20 {
    border-color: var(--black-20)
}

.border-black-50 {
    border-color: var(--black-50)
}

.border-border-color-22 {
    border-color: var(--border-color-22)
}

.border-brand-colors-100 {
    border-color: var(--brand-colors-100)
}

.border-white {
    border-color: var(--white-default)
}

.border-white-20 {
    border-color: var(--white-20)
}

.border-t-\[rgba\(255\,255\,255\,0\.2\)\] {
    border-top-color: #fff3
}

.\!bg-accent-color-02 {
    background-color: var(--accent-color-02)!important
}

.bg-\[\#00000057\] {
    background-color: #00000057
}

.bg-\[\#00B4D8\] {
    --tw-bg-opacity: 1;
    background-color: rgb(0 180 216 / var(--tw-bg-opacity))
}

.bg-\[\#18C252\] {
    --tw-bg-opacity: 1;
    background-color: rgb(24 194 82 / var(--tw-bg-opacity))
}

.bg-\[\#1f1518\] {
    --tw-bg-opacity: 1;
    background-color: rgb(31 21 24 / var(--tw-bg-opacity))
}

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

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

.bg-\[\#CBD1FC\] {
    --tw-bg-opacity: 1;
    background-color: rgb(203 209 252 / var(--tw-bg-opacity))
}

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

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

.bg-\[\#F0F2FA\] {
    --tw-bg-opacity: 1;
    background-color: rgb(240 242 250 / var(--tw-bg-opacity))
}

.bg-\[\#F8F9FA\] {
    --tw-bg-opacity: 1;
    background-color: rgb(248 249 250 / var(--tw-bg-opacity))
}

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

.bg-\[rgba\(0\,0\,0\,0\.1\)\] {
    background-color: #0000001a
}

.bg-\[rgba\(0\,0\,0\,0\.15\)\] {
    background-color: #00000026
}

.bg-\[rgba\(0\,0\,0\,0\.3\)\] {
    background-color: #0000004d
}

.bg-\[rgba\(0\,0\,0\,0\.34\)\] {
    background-color: #00000057
}

.bg-\[rgba\(0\,0\,0\,0\.35\)\] {
    background-color: #00000059
}

.bg-\[rgba\(0\,0\,0\,0\.8\)\] {
    background-color: #000c
}

.bg-\[rgba\(127\,137\,235\,0\.09\)\] {
    background-color: #7f89eb17
}

.bg-\[rgba\(127\,137\,235\,0\.2\)\] {
    background-color: #7f89eb33
}

.bg-\[rgba\(203\,209\,252\,0\.13\)\] {
    background-color: #cbd1fc21
}

.bg-\[rgba\(203\,209\,252\,0\.16\)\] {
    background-color: #cbd1fc29
}

.bg-\[rgba\(203\,209\,252\,0\.4\)\] {
    background-color: #cbd1fc66
}

.bg-barp-colors {
    background-color: var(--barp-colors)
}

.bg-black-30 {
    background-color: var(--black-30)
}

.bg-black-34 {
    background-color: var(--black-34)
}

.bg-black-50 {
    background-color: var(--black-50)
}

.bg-gray-200 {
    background-color: var(--gray-200)
}

.bg-gray-300 {
    background-color: var(--gray-300)
}

.bg-gray-60 {
    background-color: var(--gray-60)
}

.bg-gray-700 {
    background-color: var(--gray-700)
}

.bg-primary {
    background-color: var(--brand-colors-500-default)
}

.bg-slate-200 {
    background-color: var(--slate-200)
}

.bg-white {
    background-color: var(--white-default)
}

.bg-white-10 {
    background-color: var(--white-10)
}

.bg-white-12 {
    background-color: var(--white-12)
}

.bg-white-f0 {
    background-color: var( --white-f0)
}

.bg-\[auto_80\%\] {
    background-size: auto 80%
}

.bg-cover {
    background-size: cover
}

.bg-\[36\%\] {
    background-position: 36%
}

.bg-\[66\%\] {
    background-position: 66%
}

.bg-\[70\%\] {
    background-position: 70%
}

.bg-\[73\%\] {
    background-position: 73%
}

.bg-\[75\%\] {
    background-position: 75%
}

.bg-\[80\%\] {
    background-position: 80%
}

.bg-\[center\] {
    background-position: center
}

.bg-\[center_10\%\] {
    background-position: center 10%
}

.bg-\[center_82\%\] {
    background-position: center 82%
}

.bg-\[left_top\] {
    background-position: left top
}

.bg-\[right_top\] {
    background-position: right top
}

.bg-center {
    background-position: center
}

.bg-no-repeat {
    background-repeat: no-repeat
}

.object-contain {
    -o-object-fit: contain;
    object-fit: contain
}

.object-cover {
    -o-object-fit: cover;
    object-fit: cover
}

.object-\[35\%\] {
    -o-object-position: 35%;
    object-position: 35%
}

.object-\[55\%\] {
    -o-object-position: 55%;
    object-position: 55%
}

.object-right {
    -o-object-position: right;
    object-position: right
}

.object-top {
    -o-object-position: top;
    object-position: top
}

.p-0 {
    padding: 0
}

.p-\[0_20px_32px_20px\] {
    padding: 0 20px 32px
}

.p-\[10px\] {
    padding: 10px
}

.p-\[18px\] {
    padding: 18px
}

.p-\[20px\] {
    padding: 20px
}

.p-\[20px_16px_30px\] {
    padding: 20px 16px 30px
}

.p-\[20px_32px\] {
    padding: 20px 32px
}

.p-\[24px_16px_36px_16px\] {
    padding: 24px 16px 36px
}

.p-\[30px\] {
    padding: 30px
}

.p-\[32px_38px\] {
    padding: 32px 38px
}

.p-\[36px_32px_42px\] {
    padding: 36px 32px 42px
}

.p-\[40px_20px\] {
    padding: 40px 20px
}

.p-\[4px\] {
    padding: 4px
}

.p-\[60px\] {
    padding: 60px
}

.p-\[60px_32px_80px_16px\] {
    padding: 60px 32px 80px 16px
}

.p-\[68px_52px\] {
    padding: 68px 52px
}

.p-\[78px_20px_92px\] {
    padding: 78px 20px 92px
}

.p-\[7px_12px\] {
    padding: 7px 12px
}

.p-\[8px\] {
    padding: 8px
}

.px-\[0px\] {
    padding-left: 0;
    padding-right: 0
}

.px-\[100px\] {
    padding-left: 100px;
    padding-right: 100px
}

.px-\[10px\] {
    padding-left: 10px;
    padding-right: 10px
}

.px-\[12px\] {
    padding-left: 12px;
    padding-right: 12px
}

.px-\[15px\] {
    padding-left: 15px;
    padding-right: 15px
}

.px-\[16px\] {
    padding-left: 16px;
    padding-right: 16px
}

.px-\[18px\] {
    padding-left: 18px;
    padding-right: 18px
}

.px-\[20px\] {
    padding-left: 20px;
    padding-right: 20px
}

.px-\[21px\] {
    padding-left: 21px;
    padding-right: 21px
}

.px-\[24px\] {
    padding-left: 24px;
    padding-right: 24px
}

.px-\[25px\] {
    padding-left: 25px;
    padding-right: 25px
}

.px-\[28px\] {
    padding-left: 28px;
    padding-right: 28px
}

.px-\[3\.5px\] {
    padding-left: 3.5px;
    padding-right: 3.5px
}

.px-\[30px\] {
    padding-left: 30px;
    padding-right: 30px
}

.px-\[36px\] {
    padding-left: 36px;
    padding-right: 36px
}

.px-\[40px\] {
    padding-left: 40px;
    padding-right: 40px
}

.px-\[46px\] {
    padding-left: 46px;
    padding-right: 46px
}

.px-\[47px\] {
    padding-left: 47px;
    padding-right: 47px
}

.px-\[52px\] {
    padding-left: 52px;
    padding-right: 52px
}

.px-\[54px\] {
    padding-left: 54px;
    padding-right: 54px
}

.px-\[55px\] {
    padding-left: 55px;
    padding-right: 55px
}

.px-\[60px\] {
    padding-left: 60px;
    padding-right: 60px
}

.px-\[63px\] {
    padding-left: 63px;
    padding-right: 63px
}

.px-\[6px\] {
    padding-left: 6px;
    padding-right: 6px
}

.px-\[8\.2\%\] {
    padding-left: 8.2%;
    padding-right: 8.2%
}

.py-0 {
    padding-top: 0;
    padding-bottom: 0
}

.py-\[100px\] {
    padding-top: 100px;
    padding-bottom: 100px
}

.py-\[10px\] {
    padding-top: 10px;
    padding-bottom: 10px
}

.py-\[12px\] {
    padding-top: 12px;
    padding-bottom: 12px
}

.py-\[14px\] {
    padding-top: 14px;
    padding-bottom: 14px
}

.py-\[15px\] {
    padding-top: 15px;
    padding-bottom: 15px
}

.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-\[19px\] {
    padding-top: 19px;
    padding-bottom: 19px
}

.py-\[200px\] {
    padding-top: 200px;
    padding-bottom: 200px
}

.py-\[20px\] {
    padding-top: 20px;
    padding-bottom: 20px
}

.py-\[3\.5px\] {
    padding-top: 3.5px;
    padding-bottom: 3.5px
}

.py-\[30px\] {
    padding-top: 30px;
    padding-bottom: 30px
}

.py-\[36px\] {
    padding-top: 36px;
    padding-bottom: 36px
}

.py-\[37px\] {
    padding-top: 37px;
    padding-bottom: 37px
}

.py-\[40px\] {
    padding-top: 40px;
    padding-bottom: 40px
}

.py-\[46px\] {
    padding-top: 46px;
    padding-bottom: 46px
}

.py-\[48px\] {
    padding-top: 48px;
    padding-bottom: 48px
}

.py-\[52px\] {
    padding-top: 52px;
    padding-bottom: 52px
}

.py-\[54px\] {
    padding-top: 54px;
    padding-bottom: 54px
}

.py-\[56px\] {
    padding-top: 56px;
    padding-bottom: 56px
}

.py-\[60px\] {
    padding-top: 60px;
    padding-bottom: 60px
}

.py-\[68px\] {
    padding-top: 68px;
    padding-bottom: 68px
}

.py-\[80px\] {
    padding-top: 80px;
    padding-bottom: 80px
}

.py-\[8px\] {
    padding-top: 8px;
    padding-bottom: 8px
}

.py-\[94px\] {
    padding-top: 94px;
    padding-bottom: 94px
}

.py-\[96px\] {
    padding-top: 96px;
    padding-bottom: 96px
}

.py-\[9px\] {
    padding-top: 9px;
    padding-bottom: 9px
}

.pb-\[100x\] {
    padding-bottom: 100x
}

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

.pb-\[150px\] {
    padding-bottom: 150px
}

.pb-\[160px\] {
    padding-bottom: 160px
}

.pb-\[16px\] {
    padding-bottom: 16px
}

.pb-\[20px\] {
    padding-bottom: 20px
}

.pb-\[24px\] {
    padding-bottom: 24px
}

.pb-\[26px\] {
    padding-bottom: 26px
}

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

.pb-\[35px\] {
    padding-bottom: 35px
}

.pb-\[36px\] {
    padding-bottom: 36px
}

.pb-\[45px\] {
    padding-bottom: 45px
}

.pb-\[500px\] {
    padding-bottom: 500px
}

.pb-\[50px\] {
    padding-bottom: 50px
}

.pb-\[52px\] {
    padding-bottom: 52px
}

.pb-\[56px\] {
    padding-bottom: 56px
}

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

.pl-\[10\%\] {
    padding-left: 10%
}

.pl-\[16px\] {
    padding-left: 16px
}

.pl-\[24px\] {
    padding-left: 24px
}

.pl-\[5\%\] {
    padding-left: 5%
}

.pl-\[7\.5\%\] {
    padding-left: 7.5%
}

.pr-\[44px\] {
    padding-right: 44px
}

.pr-\[5\%\] {
    padding-right: 5%
}

.pt-0,.pt-\[0\] {
    padding-top: 0
}

.pt-\[100px\] {
    padding-top: 100px
}

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

.pt-\[117px\] {
    padding-top: 117px
}

.pt-\[15px\] {
    padding-top: 15px
}

.pt-\[20px\] {
    padding-top: 20px
}

.pt-\[230px\] {
    padding-top: 230px
}

.pt-\[24px\] {
    padding-top: 24px
}

.pt-\[28px\] {
    padding-top: 28px
}

.pt-\[300px\] {
    padding-top: 300px
}

.pt-\[30px\] {
    padding-top: 30px
}

.pt-\[36px\] {
    padding-top: 36px
}

.pt-\[40px\] {
    padding-top: 40px
}

.pt-\[56px\] {
    padding-top: 56px
}

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

.pt-\[75px\] {
    padding-top: 75px
}

.pt-\[80px\] {
    padding-top: 80px
}

.text-left {
    text-align: left
}

.text-center {
    text-align: center
}

.text-right {
    text-align: right
}

.font-Inter {
    font-family: Inter
}

.font-Sans {
    font-family: Plus Jakarta Sans
}

.text-\[10px\]\/\[100\%\] {
    font-size: 10px;
    line-height: 100%
}

.text-\[10px\]\/\[120\%\] {
    font-size: 10px;
    line-height: 120%
}

.text-\[10px\]\/\[12px\] {
    font-size: 10px;
    line-height: 12px
}

.text-\[12\.5px\] {
    font-size: 12.5px
}

.text-\[12px\] {
    font-size: 12px
}

.text-\[14px\] {
    font-size: 14px
}

.text-\[14px\]\/\[100\%\] {
    font-size: 14px;
    line-height: 100%
}

.text-\[14px\]\/\[28px\] {
    font-size: 14px;
    line-height: 28px
}

.text-\[16px\] {
    font-size: 16px
}

.text-\[16px\]\/\[100\%\] {
    font-size: 16px;
    line-height: 100%
}

.text-\[16px\]\/\[120\%\] {
    font-size: 16px;
    line-height: 120%
}

.text-\[16px\]\/\[18px\] {
    font-size: 16px;
    line-height: 18px
}

.text-\[16px\]\/\[20px\] {
    font-size: 16px;
    line-height: 20px
}

.text-\[16px\]\/\[22px\] {
    font-size: 16px;
    line-height: 22px
}

.text-\[16px\]\/\[24px\] {
    font-size: 16px;
    line-height: 24px
}

.text-\[16px\]\/\[40px\] {
    font-size: 16px;
    line-height: 40px
}

.text-\[16px\]\/\[48px\] {
    font-size: 16px;
    line-height: 48px
}

.text-\[16px\]\/\[80px\] {
    font-size: 16px;
    line-height: 80px
}

.text-\[16px\]\/\[normal\] {
    font-size: 16px;
    line-height: normal
}

.text-\[18px\] {
    font-size: 18px
}

.text-\[20px\] {
    font-size: 20px
}

.text-\[20px\]\/\[100\%\] {
    font-size: 20px;
    line-height: 100%
}

.text-\[20px\]\/\[120\%\] {
    font-size: 20px;
    line-height: 120%
}

.text-\[20px\]\/\[20px\] {
    font-size: 20px;
    line-height: 20px
}

.text-\[23px\] {
    font-size: 23px
}

.text-\[24px\] {
    font-size: 24px
}

.text-\[24px\]\/\[120\%\] {
    font-size: 24px;
    line-height: 120%
}

.text-\[24px\]\/\[20px\] {
    font-size: 24px;
    line-height: 20px
}

.text-\[24px\]\/\[24px\] {
    font-size: 24px;
    line-height: 24px
}

.text-\[24px\]\/\[28px\] {
    font-size: 24px;
    line-height: 28px
}

.text-\[26px\] {
    font-size: 26px
}

.text-\[28px\] {
    font-size: 28px
}

.text-\[30px\] {
    font-size: 30px
}

.text-\[32px\]\/\[120\%\] {
    font-size: 32px;
    line-height: 120%
}

.text-\[36px\] {
    font-size: 36px
}

.text-\[36px\]\/\[100\%\] {
    font-size: 36px;
    line-height: 100%
}

.text-\[36px\]\/\[120\%\] {
    font-size: 36px;
    line-height: 120%
}

.text-\[42px\] {
    font-size: 42px
}

.text-\[46px\] {
    font-size: 46px
}

.text-\[46px\]\/\[120\%\] {
    font-size: 46px;
    line-height: 120%
}

.text-\[46px\]\/\[130\%\] {
    font-size: 46px;
    line-height: 130%
}

.text-\[46px\]\/\[44px\] {
    font-size: 46px;
    line-height: 44px
}

.text-\[46px\]\/\[60px\] {
    font-size: 46px;
    line-height: 60px
}

.text-sm {
    font-size: .875rem;
    line-height: 1.25rem
}

.font-\[400\] {
    font-weight: 400
}

.font-\[400px\] {
    font-weight: 400px
}

.font-\[500\] {
    font-weight: 500
}

.font-\[600\] {
    font-weight: 600
}

.font-\[700\],.font-bold {
    font-weight: 700
}

.font-medium {
    font-weight: 500
}

.font-normal {
    font-weight: 400
}

.font-semibold {
    font-weight: 600
}

.italic {
    font-style: italic
}

.not-italic {
    font-style: normal
}

.leading-10 {
    line-height: 2.5rem
}

.leading-\[1\.2\] {
    line-height: 1.2
}

.leading-\[1\.3\] {
    line-height: 1.3
}

.leading-\[1\.5\] {
    line-height: 1.5
}

.leading-\[120\%\] {
    line-height: 120%
}

.leading-\[16\.8px\] {
    line-height: 16.8px
}

.leading-\[16px\] {
    line-height: 16px
}

.leading-\[17px\] {
    line-height: 17px
}

.leading-\[19\.2px\] {
    line-height: 19.2px
}

.leading-\[19px\] {
    line-height: 19px
}

.leading-\[20px\] {
    line-height: 20px
}

.leading-\[24px\] {
    line-height: 24px
}

.leading-\[28\.8px\] {
    line-height: 28.8px
}

.leading-\[28px\] {
    line-height: 28px
}

.leading-\[29px\] {
    line-height: 29px
}

.leading-\[30px\] {
    line-height: 30px
}

.leading-\[36px\] {
    line-height: 36px
}

.leading-\[40px\] {
    line-height: 40px
}

.leading-\[43\.2px\] {
    line-height: 43.2px
}

.leading-\[43px\] {
    line-height: 43px
}

.leading-\[44px\] {
    line-height: 44px
}

.leading-\[60px\] {
    line-height: 60px
}

.leading-\[normal\] {
    line-height: normal
}

.leading-none {
    line-height: 1
}

.leading-normal {
    line-height: 1.5
}

.tracking-\[-0\.1px\] {
    letter-spacing: -.1px
}

.tracking-\[-0\.2px\] {
    letter-spacing: -.2px
}

.tracking-\[-0\.32px\] {
    letter-spacing: -.32px
}

.tracking-\[-0\.38px\] {
    letter-spacing: -.38px
}

.tracking-\[-0\.3px\] {
    letter-spacing: -.3px
}

.tracking-\[-0\.48\] {
    letter-spacing: -.48
}

.tracking-\[-0\.48px\] {
    letter-spacing: -.48px
}

.tracking-\[-0\.4px\] {
    letter-spacing: -.4px
}

.tracking-\[-0\.52px\] {
    letter-spacing: -.52px
}

.tracking-\[-0\.55px\] {
    letter-spacing: -.55px
}

.tracking-\[-0\.58px\] {
    letter-spacing: -.58px
}

.tracking-\[-0\.62px\] {
    letter-spacing: -.62px
}

.tracking-\[-0\.64px\] {
    letter-spacing: -.64px
}

.tracking-\[-0\.65px\] {
    letter-spacing: -.65px
}

.tracking-\[-0\.72\] {
    letter-spacing: -.72
}

.tracking-\[-0\.72px\] {
    letter-spacing: -.72px
}

.tracking-\[-0\.7px\] {
    letter-spacing: -.7px
}

.tracking-\[-1\.5px\] {
    letter-spacing: -1.5px
}

.tracking-\[0\.16px\] {
    letter-spacing: .16px
}

.tracking-\[0\.1px\] {
    letter-spacing: .1px
}

.tracking-\[0\.22px\] {
    letter-spacing: .22px
}

.tracking-\[0\.28px\] {
    letter-spacing: .28px
}

.tracking-\[0\.2px\] {
    letter-spacing: .2px
}

.tracking-\[0\.31px\] {
    letter-spacing: .31px
}

.tracking-\[0\.3px\] {
    letter-spacing: .3px
}

.tracking-\[0\.48px\] {
    letter-spacing: .48px
}

.tracking-\[0\.4px\] {
    letter-spacing: .4px
}

.tracking-\[0\.5px\] {
    letter-spacing: .5px
}

.tracking-\[0\.7px\] {
    letter-spacing: .7px
}

.tracking-\[1\.5px\] {
    letter-spacing: 1.5px
}

.\!text-accent-color-02 {
    color: var(--accent-color-02)!important
}

.\!text-gray-700 {
    color: var(--gray-700)!important
}

.text-\[\#00000080\] {
    color: #00000080
}

.text-\[\#00B4D8\] {
    --tw-text-opacity: 1;
    color: rgb(0 180 216 / var(--tw-text-opacity))
}

.text-\[\#0F1022\] {
    --tw-text-opacity: 1;
    color: rgb(15 16 34 / var(--tw-text-opacity))
}

.text-\[\#111114\] {
    --tw-text-opacity: 1;
    color: rgb(17 17 20 / var(--tw-text-opacity))
}

.text-\[\#111114\] {
    color: #111114
}

.text-\[\#18C252\] {
    --tw-text-opacity: 1;
    color: rgb(24 194 82 / var(--tw-text-opacity))
}

.text-\[\#313131\] {
    --tw-text-opacity: 1;
    color: rgb(49 49 49 / var(--tw-text-opacity))
}

.text-\[\#727272\] {
    --tw-text-opacity: 1;
    color: rgb(114 114 114 / var(--tw-text-opacity))
}

.text-\[\#7532FF\] {
    --tw-text-opacity: 1;
    color: rgb(117 50 255 / var(--tw-text-opacity))
}

.text-\[\#7F7F7F\] {
    --tw-text-opacity: 1;
    color: rgb(127 127 127 / var(--tw-text-opacity))
}

.text-\[\#86878A\] {
    --tw-text-opacity: 1;
    color: rgb(134 135 138 / var(--tw-text-opacity))
}

.text-\[\#AFAFAF\] {
    --tw-text-opacity: 1;
    color: rgb(175 175 175 / var(--tw-text-opacity))
}

.text-\[\#E10B0B\] {
    --tw-text-opacity: 1;
    color: rgb(225 11 11 / var(--tw-text-opacity))
}

.text-\[\#ffffff80\] {
    color: #ffffff80
}

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

.text-\[--Black-50\] {
    color: var(--Black-50)
}

.text-\[--Brand-Colors-600\] {
    color: var(--Brand-Colors-600)
}

.text-\[--accent-color-02\] {
    color: var(--accent-color-02)
}

.text-\[red\] {
    --tw-text-opacity: 1;
    color: rgb(255 0 0 / var(--tw-text-opacity))
}

.text-\[rgba\(0\,0\,0\,0\.5\)\] {
    color: #00000080
}

.text-\[rgba\(0\,250\,220\,0\.72\)\] {
    color: #00fadcb8
}

.text-\[rgba\(255\,255\,255\,0\.7\)\] {
    color: #ffffffb3
}

.text-accent-color-02 {
    color: var(--accent-color-02)
}

.text-black {
    color: var(--black-default)
}

.text-black-50 {
    color: var(--black-50)
}

.text-brand-600,.text-brand-colors-600 {
    color: var(--brand-colors-600)
}

.text-gray-600 {
    color: var(--gray-600)
}

.text-gray-700 {
    color: var(--gray-700)
}

.text-primary {
    color: var(--brand-colors-500-default)
}

.text-white {
    color: var(--white-default)
}

.underline {
    text-decoration-line: underline
}

.underline-offset-4 {
    text-underline-offset: 4px
}

.opacity-0 {
    opacity: 0
}

.opacity-30 {
    opacity: .3
}

.shadow-\[0_0_0_3px_rgba\(255\,255\,255\,0\.25\)\] {
    --tw-shadow: 0 0 0 3px rgba(255,255,255,.25);
    --tw-shadow-colored: 0 0 0 3px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)
}

.shadow-\[0_0_0_4px_rgba\(255\,255\,255\,0\.25\)\] {
    --tw-shadow: 0 0 0 4px rgba(255,255,255,.25);
    --tw-shadow-colored: 0 0 0 4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)
}

.shadow-xlshow-3 {
    --tw-shadow-color: var(--xlshow-3);
    --tw-shadow: var(--tw-shadow-colored)
}

.blur {
    --tw-blur: blur(8px);
    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)
}

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

.backdrop-blur-\[13\.14px\] {
    --tw-backdrop-blur: blur(13.14px);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)
}

.backdrop-blur-\[7px\] {
    --tw-backdrop-blur: blur(7px);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)
}

.backdrop-filter {
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)
}

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

.delay-\[-200ms\] {
    transition-delay: -.2s
}

.duration-1000 {
    transition-duration: 1s
}

.duration-500 {
    transition-duration: .5s
}

.duration-700 {
    transition-duration: .7s
}

.ease-linear {
    transition-timing-function: linear
}

* {
    box-sizing: border-box
}

html,body {
    background-color: var(--white-default);
    font-size: 14px;
    font-weight: 400
}

body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
    opacity: 0
}

html::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
    opacity: 0
}

*::-webkit-scrollbar {
    display: none
}

html.dark,html.dark body {
    background-color: var(--black-default)
}

.page-container {
    margin: auto;
    width: 90%
}

@media (min-width: 768px) {
    .page-container {
        width:80%
    }
}

@media (min-width: 1280px) {
    .page-container {
        width:1200px
    }
}

@media (min-width: 1920px) {
    .page-container {
        width:63%
    }
}

.first\:ml-\[0\]:first-child {
    margin-left: 0
}

.first\:justify-between:first-child {
    justify-content: space-between
}

.last\:mb-\[0\]:last-child {
    margin-bottom: 0
}

.last\:mr-\[0\]:last-child {
    margin-right: 0
}

.last\:mt-0:last-child {
    margin-top: 0
}

.last\:mt-\[0\]:last-child {
    margin-top: 0
}

.last\:h-1:last-child {
    height: .25rem
}

.last\:pr-\[0\]:last-child {
    padding-right: 0
}

.last-of-type\:hidden:last-of-type {
    display: none
}

.hover\:translate-y-\[20px\]:hover {
    --tw-translate-y: 20px;
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.hover\:scale-105:hover {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(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;
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.hover\:border-\[\#00B4D8\]:hover {
    --tw-border-opacity: 1;
    border-color: rgb(0 180 216 / var(--tw-border-opacity))
}

.hover\:border-\[\#7532FF\]:hover,.hover\:border-\[\#7532ff\]:hover {
    --tw-border-opacity: 1;
    border-color: rgb(117 50 255 / var(--tw-border-opacity))
}

.hover\:border-\[rgba\(117\,50\,255\,0\.75\)\]:hover {
    border-color: #7532ffbf
}

.hover\:bg-\[rgba\(203\,209\,252\,0\.2\)\]:hover {
    background-color: #cbd1fc33
}

.hover\:bg-white:hover {
    background-color: var(--white-default)
}

.hover\:font-bold:hover {
    font-weight: 700
}

.hover\:text-\[\#00B4D8\]:hover {
    --tw-text-opacity: 1;
    color: rgb(0 180 216 / var(--tw-text-opacity))
}

.hover\:text-\[\#7532FF\]:hover,.hover\:text-\[\#7532ff\]:hover {
    --tw-text-opacity: 1;
    color: rgb(117 50 255 / var(--tw-text-opacity))
}

.hover\:text-primary:hover {
    color: var(--brand-colors-500-default)
}

.hover\:underline:hover {
    text-decoration-line: underline
}

.hover\:shadow-\[0_0_0_3px_rgba\(117\,50\,255\,0\.75\)\]:hover {
    --tw-shadow: 0 0 0 3px rgba(117,50,255,.75);
    --tw-shadow-colored: 0 0 0 3px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)
}

.hover\:shadow-\[0_0_0_4px_rgba\(117\,50\,255\,0\.75\)\]:hover {
    --tw-shadow: 0 0 0 4px rgba(117,50,255,.75);
    --tw-shadow-colored: 0 0 0 4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)
}

.group:hover .group-hover\:scale-\[95\%\] {
    --tw-scale-x: 95%;
    --tw-scale-y: 95%;
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

@media (min-width: 480px) {
    .sm\:bottom-\[10\%\] {
        bottom:10%
    }

    .sm\:left-\[40\%\] {
        left: 40%
    }

    .sm\:left-\[5\%\] {
        left: 5%
    }

    .sm\:right-\[40\%\] {
        right: 40%
    }

    .sm\:m-\[auto\] {
        margin: auto
    }

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

    .sm\:mt-\[0\] {
        margin-top: 0
    }

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

    .sm\:block {
        display: block
    }

    .sm\:inline-block {
        display: inline-block
    }

    .sm\:flex {
        display: flex
    }

    .sm\:hidden {
        display: none
    }

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

    .sm\:h-\[100\%\] {
        height: 100%
    }

    .sm\:h-\[300px\] {
        height: 300px
    }

    .sm\:h-\[320px\] {
        height: 320px
    }

    .sm\:h-\[538px\] {
        height: 538px
    }

    .sm\:h-\[600px\] {
        height: 600px
    }

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

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

    .sm\:w-\[120px\] {
        width: 120px
    }

    .sm\:w-\[240px\] {
        width: 240px
    }

    .sm\:w-\[277px\] {
        width: 277px
    }

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

    .sm\:w-\[320px\] {
        width: 320px
    }

    .sm\:w-\[50\%\] {
        width: 50%
    }

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

    .sm\:w-\[90\%\] {
        width: 90%
    }

    .sm\:w-full {
        width: 100%
    }

    .sm\:flex-row {
        flex-direction: row
    }

    .sm\:items-center {
        align-items: center
    }

    .sm\:justify-center {
        justify-content: center
    }

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

    .sm\:border-y {
        border-top-width: 1px;
        border-bottom-width: 1px
    }

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

    .sm\:bg-gray-200 {
        background-color: var(--gray-200)
    }

    .sm\:py-\[60px\] {
        padding-top: 60px;
        padding-bottom: 60px
    }

    .sm\:pb-\[60px\] {
        padding-bottom: 60px
    }

    .sm\:pt-\[40px\] {
        padding-top: 40px
    }

    .sm\:text-center {
        text-align: center
    }

    .sm\:text-\[36px\] {
        font-size: 36px
    }

    .sm\:text-\[60px\] {
        font-size: 60px
    }
}

@media (min-width: 768px) {
    .md\:static {
        position:static
    }

    .md\:absolute {
        position: absolute
    }

    .md\:\!right-\[0\] {
        right: 0!important
    }

    .md\:bottom-\[177px\] {
        bottom: 177px
    }

    .md\:bottom-\[50\%\] {
        bottom: 50%
    }

    .md\:left-\[10\%\] {
        left: 10%
    }

    .md\:right-\[0\] {
        right: 0
    }

    .md\:top-\[35\%\] {
        top: 35%
    }

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

    .md\:order-1 {
        order: 1
    }

    .md\:order-2 {
        order: 2
    }

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

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

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

    .md\:my-auto {
        margin-top: auto;
        margin-bottom: auto
    }

    .md\:mb-0,.md\:mb-\[0\] {
        margin-bottom: 0
    }

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

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

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

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

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

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

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

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

    .md\:ml-0 {
        margin-left: 0
    }

    .md\:ml-\[19\%\] {
        margin-left: 19%
    }

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

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

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

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

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

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

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

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

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

    .md\:ms-\[38px\] {
        margin-inline-start:38px}

    .md\:ms-\[40px\] {
        margin-inline-start:40px}

    .md\:mt-0 {
        margin-top: 0
    }

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

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

    .md\:mt-\[0\],.md\:mt-\[0px\] {
        margin-top: 0
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .md\:block {
        display: block
    }

    .md\:inline {
        display: inline
    }

    .md\:flex {
        display: flex
    }



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

    .md\:h-0 {
        height: 0px
    }

    .md\:h-\[165px\] {
        height: 165px
    }

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

    .md\:h-\[200px\] {
        height: 200px
    }

    .md\:h-\[202px\] {
        height: 202px
    }

    .md\:h-\[240px\] {
        height: 240px
    }

    .md\:h-\[282px\] {
        height: 282px
    }

    .md\:h-\[284px\] {
        height: 284px
    }

    .md\:h-\[2975px\] {
        height: 2975px
    }

    .md\:h-\[300px\] {
        height: 300px
    }

    .md\:h-\[334px\] {
        height: 334px
    }

    .md\:h-\[360px\] {
        height: 360px
    }

    .md\:h-\[387px\] {
        height: 387px
    }

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

    .md\:h-\[46px\] {
        height: 46px
    }

    .md\:h-\[538px\] {
        height: 538px
    }

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

    .md\:h-\[550px\] {
        height: 550px
    }

    .md\:h-\[600px\] {
        height: 600px
    }

    .md\:h-\[680px\] {
        height: 680px
    }

    .md\:h-\[702px\] {
        height: 702px
    }

    .md\:h-\[73px\] {
        height: 73px
    }

    .md\:h-\[800px\] {
        height: 800px
    }

    .md\:h-\[auto\] {
        height: auto
    }

    .md\:h-full {
        height: 100%
    }

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

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

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

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

    .md\:w-\[1100px\] {
        width: 1100px
    }

    .md\:w-\[1200px\] {
        width: 1200px
    }

    .md\:w-\[145px\] {
        width: 145px
    }

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

    .md\:w-\[202px\] {
        width: 202px
    }

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

    .md\:w-\[282px\] {
        width: 282px
    }

    .md\:w-\[284px\] {
        width: 284px
    }

    .md\:w-\[310px\] {
        width: 310px
    }

    .md\:w-\[320px\] {
        width: 320px
    }

    .md\:w-\[338px\] {
        width: 338px
    }

    .md\:w-\[358px\] {
        width: 358px
    }

    .md\:w-\[36\%\] {
        width: 36%
    }

    .md\:w-\[360px\] {
        width: 360px
    }

    .md\:w-\[392px\] {
        width: 392px
    }

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

    .md\:w-\[461px\] {
        width: 461px
    }

    .md\:w-\[47\%\] {
        width: 47%
    }

    .md\:w-\[487px\] {
        width: 487px
    }

    .md\:w-\[493px\] {
        width: 493px
    }

    .md\:w-\[494px\] {
        width: 494px
    }

    .md\:w-\[50\%\] {
        width: 50%
    }

    .md\:w-\[530px\] {
        width: 530px
    }

    .md\:w-\[531px\] {
        width: 531px
    }

    .md\:w-\[545px\] {
        width: 545px
    }

    .md\:w-\[563px\] {
        width: 563px
    }

    .md\:w-\[565px\] {
        width: 565px
    }

    .md\:w-\[580px\] {
        width: 580px
    }

    .md\:w-\[59\%\] {
        width: 59%
    }

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

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

    .md\:w-\[680px\] {
        width: 680px
    }

    .md\:w-\[692px\] {
        width: 692px
    }

    .md\:w-\[700px\] {
        width: 700px
    }

    .md\:w-\[710px\] {
        width: 710px
    }

    .md\:w-\[74\%\] {
        width: 74%
    }

    .md\:w-\[75\%\] {
        width: 75%
    }

    .md\:w-\[750px\] {
        width: 750px
    }

    .md\:w-\[764px\] {
        width: 764px
    }

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

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

    .md\:w-\[860px\] {
        width: 860px
    }

    .md\:w-\[90\%\] {
        width: 90%
    }

    .md\:w-\[900px\] {
        width: 900px
    }

    .md\:w-auto {
        width: auto
    }

    .md\:w-fit {
        width: -moz-fit-content;
        width: fit-content
    }

    .md\:w-full {
        width: 100%
    }

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

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

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

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

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

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

    .md\:flex-row {
        flex-direction: row
    }

    .md\:flex-wrap {
        flex-wrap: wrap
    }

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

    .md\:items-center {
        align-items: center
    }

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

    .md\:gap-\[26px\] {
        gap: 26px
    }

    .md\:gap-\[40px\] {
        gap: 40px
    }

    .md\:break-normal {
        overflow-wrap: normal;
        word-break: normal
    }

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

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

    .md\:rounded-none {
        border-radius: 0
    }

    .md\:\!rounded-l-\[27px\] {
        border-top-left-radius: 27px!important;
        border-bottom-left-radius: 27px!important
    }

    .md\:\!rounded-r-\[0\] {
        border-top-right-radius: 0!important;
        border-bottom-right-radius: 0!important
    }

    .md\:rounded-l-\[27px\] {
        border-top-left-radius: 27px;
        border-bottom-left-radius: 27px
    }

    .md\:rounded-r-\[0\] {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0
    }

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

    .md\:border-black-10 {
        border-color: var(--black-10)
    }

    .md\:p-\[24px_56px\] {
        padding: 24px 56px
    }

    .md\:p-\[28px\] {
        padding: 28px
    }

    .md\:px-\[29px\] {
        padding-left: 29px;
        padding-right: 29px
    }

    .md\:px-\[40px\] {
        padding-left: 40px;
        padding-right: 40px
    }

    .md\:px-\[50px\] {
        padding-left: 50px;
        padding-right: 50px
    }

    .md\:px-\[55px\] {
        padding-left: 55px;
        padding-right: 55px
    }

    .md\:px-\[60px\] {
        padding-left: 60px;
        padding-right: 60px
    }

    .md\:px-\[72px\] {
        padding-left: 72px;
        padding-right: 72px
    }

    .md\:py-0 {
        padding-top: 0;
        padding-bottom: 0
    }

    .md\:py-\[100px\] {
        padding-top: 100px;
        padding-bottom: 100px
    }

    .md\:py-\[125px\] {
        padding-top: 125px;
        padding-bottom: 125px
    }

    .md\:py-\[150px\] {
        padding-top: 150px;
        padding-bottom: 150px
    }

    .md\:py-\[60px\] {
        padding-top: 60px;
        padding-bottom: 60px
    }

    .md\:pb-\[133px\] {
        padding-bottom: 133px
    }

    .md\:pl-\[36px\] {
        padding-left: 36px
    }

    .md\:pr-\[52px\] {
        padding-right: 52px
    }

    .md\:pt-0,.md\:pt-\[0\],.md\:pt-\[0px\] {
        padding-top: 0
    }

    .md\:pt-\[200px\] {
        padding-top: 200px
    }

    .md\:pt-\[230px\] {
        padding-top: 230px
    }

    .md\:pt-\[35px\] {
        padding-top: 35px
    }

    .md\:pt-\[40px\] {
        padding-top: 40px
    }

    .md\:pt-\[70px\] {
        padding-top: 70px
    }

    .md\:pt-\[80px\] {
        padding-top: 80px
    }

    .md\:text-left {
        text-align: left
    }

    .md\:font-Sans {
        font-family: Plus Jakarta Sans
    }

    .md\:text-\[100px\] {
        font-size: 100px
    }

    .md\:text-\[16px\] {
        font-size: 16px
    }

    .md\:text-\[20px\] {
        font-size: 20px
    }

    .md\:text-\[20px\]\/\[120\%\] {
        font-size: 20px;
        line-height: 120%
    }

    .md\:text-\[22px\]\/\[120\%\] {
        font-size: 22px;
        line-height: 120%
    }

    .md\:text-\[24px\] {
        font-size: 24px
    }

    .md\:text-\[24px\]\/\[120\%\] {
        font-size: 24px;
        line-height: 120%
    }

    .md\:text-\[36px\] {
        font-size: 36px
    }

    .md\:text-\[36px\]\/\[120\%\] {
        font-size: 36px;
        line-height: 120%
    }

    .md\:text-\[46px\] {
        font-size: 46px
    }

    .md\:text-\[46px\]\/\[130\%\] {
        font-size: 46px;
        line-height: 130%
    }

    .md\:text-\[46px\]\/\[60px\] {
        font-size: 46px;
        line-height: 60px
    }

    .md\:text-\[54px\]\/\[120\%\] {
        font-size: 54px;
        line-height: 120%
    }

    .md\:text-\[72px\] {
        font-size: 72px
    }

    .md\:text-\[72px\]\/\[100\%\] {
        font-size: 72px;
        line-height: 100%
    }

    .md\:text-\[72px\]\/\[110\%\] {
        font-size: 72px;
        line-height: 110%
    }

    .md\:font-\[400\] {
        font-weight: 400
    }

    .md\:font-\[500\] {
        font-weight: 500
    }

    .md\:font-\[600\] {
        font-weight: 600
    }

    .md\:font-medium {
        font-weight: 500
    }

    .md\:font-semibold {
        font-weight: 600
    }

    .md\:leading-\[119px\] {
        line-height: 119px
    }

    .md\:leading-\[120\%\] {
        line-height: 120%
    }

    .md\:leading-\[20px\] {
        line-height: 20px
    }

    .md\:leading-\[24px\] {
        line-height: 24px
    }

    .md\:leading-\[28\.8px\] {
        line-height: 28.8px
    }

    .md\:leading-\[29px\] {
        line-height: 29px
    }

    .md\:leading-\[32px\] {
        line-height: 32px
    }

    .md\:leading-\[43\.2px\] {
        line-height: 43.2px
    }

    .md\:leading-\[43px\] {
        line-height: 43px
    }

    .md\:leading-\[44px\] {
        line-height: 44px
    }

    .md\:leading-\[60px\] {
        line-height: 60px
    }

    .md\:leading-\[72px\] {
        line-height: 72px
    }

    .md\:leading-\[73px\] {
        line-height: 73px
    }

    .md\:leading-\[76px\] {
        line-height: 76px
    }

    .md\:tracking-\[-0\.2px\] {
        letter-spacing: -.2px
    }

    .md\:tracking-\[-0\.3px\] {
        letter-spacing: -.3px
    }

    .md\:tracking-\[-0\.48px\] {
        letter-spacing: -.48px
    }

    .md\:tracking-\[-0\.4px\] {
        letter-spacing: -.4px
    }

    .md\:tracking-\[-0\.6px\] {
        letter-spacing: -.6px
    }

    .md\:tracking-\[-0\.72px\] {
        letter-spacing: -.72px
    }

    .md\:tracking-\[-0\.88px\] {
        letter-spacing: -.88px
    }

    .md\:tracking-\[-1\.144px\] {
        letter-spacing: -1.144px
    }

    .md\:tracking-\[-1\.72\] {
        letter-spacing: -1.72
    }

    .md\:tracking-\[0\.2px\] {
        letter-spacing: .2px
    }

    .md\:tracking-\[0\.3px\] {
        letter-spacing: .3px
    }

    .md\:tracking-\[1\.5px\] {
        letter-spacing: 1.5px
    }

    .md\:tracking-\[normal\] {
        letter-spacing: normal
    }

    .md\:tracking-normal {
        letter-spacing: 0em
    }

    .md\:text-black-50 {
        color: var(--black-50)
    }

    .md\:text-white {
        color: var(--white-default)
    }

    .md\:hover\:bg-primary:hover {
        background-color: var(--brand-colors-500-default)
    }

    .md\:hover\:text-white:hover {
        color: var(--white-default)
    }
}

@media (min-width: 976px) {
    .lg\:bottom-\[-10\%\] {
        bottom:-10%
    }

    .lg\:bottom-\[10\%\] {
        bottom: 10%
    }

    .lg\:bottom-\[124px\] {
        bottom: 124px
    }

    .lg\:bottom-\[150px\] {
        bottom: 150px
    }

    .lg\:bottom-\[20\%\] {
        bottom: 20%
    }

    .lg\:left-\[10\%\] {
        left: 10%
    }

    .lg\:left-\[12\%\] {
        left: 12%
    }

    .lg\:left-\[45\%\] {
        left: 45%
    }

    .lg\:left-\[62\%\] {
        left: 62%
    }

    .lg\:right-\[45\%\] {
        right: 45%
    }

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

    .lg\:order-1 {
        order: 1
    }

    .lg\:order-2 {
        order: 2
    }

    .lg\:m-0 {
        margin: 0
    }

    .lg\:mx-0 {
        margin-left: 0;
        margin-right: 0
    }

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

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

    .lg\:mb-0,.lg\:mb-\[0px\] {
        margin-bottom: 0
    }

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

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

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

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

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

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

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

    .lg\:ms-\[20px\] {
        margin-inline-start:20px}

    .lg\:ms-\[38px\] {
        margin-inline-start:38px}

    .lg\:ms-\[40px\] {
        margin-inline-start:40px}

    .lg\:ms-\[60px\] {
        margin-inline-start:60px}

    .lg\:ms-\[70px\] {
        margin-inline-start:70px}

    .lg\:mt-0,.lg\:mt-\[0\],.lg\:mt-\[0px\] {
        margin-top: 0
    }

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

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

    .lg\:mt-\[1em\] {
        margin-top: 1em
    }

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

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

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

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

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

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

    .lg\:block {
        display: block
    }

    .lg\:flex {
        display: flex
    }

    .lg\:hidden {
        display: none
    }

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

    .lg\:h-\[140px\] {
        height: 140px
    }

    .lg\:h-\[1580px\] {
        height: 1580px
    }

    .lg\:h-\[160px\] {
        height: 160px
    }

    .lg\:h-\[255px\] {
        height: 255px
    }

    .lg\:h-\[280px\] {
        height: 280px
    }

    .lg\:h-\[290px\] {
        height: 290px
    }

    .lg\:h-\[300px\] {
        height: 300px
    }

    .lg\:h-\[310px\] {
        height: 310px
    }

    .lg\:h-\[600px\] {
        height: 600px
    }

    .lg\:h-\[60px\] {
        height: 60px
    }

    .lg\:h-\[660px\] {
        height: 660px
    }

    .lg\:h-\[665px\] {
        height: 665px
    }

    .lg\:h-\[702px\] {
        height: 702px
    }

    .lg\:h-\[800px\] {
        height: 800px
    }

    .lg\:h-full {
        height: 100%
    }

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

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

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

    .lg\:w-\[160px\] {
        width: 160px
    }

    .lg\:w-\[211px\] {
        width: 211px
    }

    .lg\:w-\[25\%\] {
        width: 25%
    }

    .lg\:w-\[268px\] {
        width: 268px
    }

    .lg\:w-\[280px\] {
        width: 280px
    }

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

    .lg\:w-\[32\%\] {
        width: 32%
    }

    .lg\:w-\[320px\] {
        width: 320px
    }

    .lg\:w-\[33\.3\%\] {
        width: 33.3%
    }

    .lg\:w-\[330px\] {
        width: 330px
    }

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

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

    .lg\:w-\[41\%\] {
        width: 41%
    }

    .lg\:w-\[46\%\] {
        width: 46%
    }

    .lg\:w-\[47\.5\%\] {
        width: 47.5%
    }

    .lg\:w-\[478px\] {
        width: 478px
    }

    .lg\:w-\[48\.5\%\] {
        width: 48.5%
    }

    .lg\:w-\[487px\] {
        width: 487px
    }

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

    .lg\:w-\[590px\] {
        width: 590px
    }

    .lg\:w-\[645px\] {
        width: 645px
    }

    .lg\:w-\[690px\] {
        width: 690px
    }

    .lg\:w-\[725px\] {
        width: 725px
    }

    .lg\:w-\[806px\] {
        width: 806px
    }

    .lg\:w-\[811px\] {
        width: 811px
    }

    .lg\:w-\[84\%\] {
        width: 84%
    }

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

    .lg\:w-\[90\%\] {
        width: 90%
    }

    .lg\:w-\[auto\] {
        width: auto
    }

    .lg\:w-full {
        width: 100%
    }

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

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

    .lg\:translate-x-0 {
        --tw-translate-x: 0px;
        transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
    }

    .lg\:translate-x-\[0\] {
        --tw-translate-x: 0;
        transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
    }

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

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

    .lg\:\!flex-row {
        flex-direction: row!important
    }

    .lg\:flex-row {
        flex-direction: row
    }

    .lg\:flex-row-reverse {
        flex-direction: row-reverse
    }

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

    .lg\:items-center {
        align-items: center
    }

    .lg\:justify-center {
        justify-content: center
    }

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

    .lg\:gap-0 {
        gap: 0px
    }

    .lg\:gap-\[100px\] {
        gap: 100px
    }

    .lg\:gap-\[154px\] {
        gap: 154px
    }

    .lg\:gap-\[20px\] {
        gap: 20px
    }

    .lg\:gap-\[24px\] {
        gap: 24px
    }

    .lg\:gap-\[40px\] {
        gap: 40px
    }

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

    .lg\:self-center {
        align-self: center
    }

    .lg\:rounded-none {
        border-radius: 0
    }

    .lg\:border-x {
        border-left-width: 1px;
        border-right-width: 1px
    }

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

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

    .lg\:border-\[rgba\(0\,0\,0\,0\.14\)\] {
        border-color: #00000024
    }

    .lg\:bg-\[center\] {
        background-position: center
    }

    .lg\:p-\[0_60px_0_92px\] {
        padding: 0 60px 0 92px
    }

    .lg\:p-\[12px_56px\] {
        padding: 12px 56px
    }

    .lg\:p-\[34px_44px\] {
        padding: 34px 44px
    }

    .lg\:p-\[48px_100px\] {
        padding: 48px 100px
    }

    .lg\:p-\[50px_100px\] {
        padding: 50px 100px
    }

    .lg\:p-\[52px_44px\] {
        padding: 52px 44px
    }

    .lg\:px-\[100px\] {
        padding-left: 100px;
        padding-right: 100px
    }

    .lg\:px-\[110px\] {
        padding-left: 110px;
        padding-right: 110px
    }

    .lg\:px-\[30px\] {
        padding-left: 30px;
        padding-right: 30px
    }

    .lg\:px-\[34px\] {
        padding-left: 34px;
        padding-right: 34px
    }

    .lg\:px-\[40px\] {
        padding-left: 40px;
        padding-right: 40px
    }

    .lg\:px-\[52px\] {
        padding-left: 52px;
        padding-right: 52px
    }

    .lg\:px-\[60px\] {
        padding-left: 60px;
        padding-right: 60px
    }

    .lg\:px-\[95px\] {
        padding-left: 95px;
        padding-right: 95px
    }

    .lg\:py-0 {
        padding-top: 0;
        padding-bottom: 0
    }

    .lg\:py-\[100px\] {
        padding-top: 100px;
        padding-bottom: 100px
    }

    .lg\:py-\[124px\] {
        padding-top: 124px;
        padding-bottom: 124px
    }

    .lg\:py-\[140px\] {
        padding-top: 140px;
        padding-bottom: 140px
    }

    .lg\:py-\[15px\] {
        padding-top: 15px;
        padding-bottom: 15px
    }

    .lg\:py-\[19px\] {
        padding-top: 19px;
        padding-bottom: 19px
    }

    .lg\:py-\[22px\] {
        padding-top: 22px;
        padding-bottom: 22px
    }

    .lg\:py-\[40px\] {
        padding-top: 40px;
        padding-bottom: 40px
    }

    .lg\:py-\[50px\] {
        padding-top: 50px;
        padding-bottom: 50px
    }

    .lg\:py-\[60px\] {
        padding-top: 60px;
        padding-bottom: 60px
    }

    .lg\:py-\[80px\] {
        padding-top: 80px;
        padding-bottom: 80px
    }

    .lg\:pb-0 {
        padding-bottom: 0
    }

    .lg\:pb-\[100px\] {
        padding-bottom: 100px
    }

    .lg\:pb-\[140px\] {
        padding-bottom: 140px
    }

    .lg\:pb-\[40px\] {
        padding-bottom: 40px
    }

    .lg\:pb-\[70px\] {
        padding-bottom: 70px
    }

    .lg\:pb-\[80px\] {
        padding-bottom: 80px
    }

    .lg\:pr-\[30px\] {
        padding-right: 30px
    }

    .lg\:pt-0 {
        padding-top: 0
    }

    .lg\:pt-\[100px\] {
        padding-top: 100px
    }

    .lg\:pt-\[106px\] {
        padding-top: 106px
    }

    .lg\:pt-\[128px\] {
        padding-top: 128px
    }

    .lg\:pt-\[148px\] {
        padding-top: 148px
    }

    .lg\:pt-\[22px\] {
        padding-top: 22px
    }

    .lg\:pt-\[80px\] {
        padding-top: 80px
    }

    .lg\:text-left {
        text-align: left
    }

    .lg\:font-Sans {
        font-family: Plus Jakarta Sans
    }

    .lg\:text-\[16px\]\/\[100\%\] {
        font-size: 16px;
        line-height: 100%
    }

    .lg\:text-\[20px\]\/\[120\%\] {
        font-size: 20px;
        line-height: 120%
    }

    .lg\:text-\[20px\]\/\[24px\] {
        font-size: 20px;
        line-height: 24px
    }

    .lg\:text-\[24px\] {
        font-size: 24px
    }

    .lg\:text-\[24px\]\/\[100\%\] {
        font-size: 24px;
        line-height: 100%
    }

    .lg\:text-\[24px\]\/\[120\%\] {
        font-size: 24px;
        line-height: 120%
    }

    .lg\:text-\[24px\]\/\[20px\] {
        font-size: 24px;
        line-height: 20px
    }

    .lg\:text-\[24px\]\/\[80px\] {
        font-size: 24px;
        line-height: 80px
    }

    .lg\:text-\[36px\] {
        font-size: 36px
    }

    .lg\:text-\[36px\]\/\[120\%\] {
        font-size: 36px;
        line-height: 120%
    }

    .lg\:text-\[36px\]\/\[130\%\] {
        font-size: 36px;
        line-height: 130%
    }

    .lg\:text-\[36px\]\/\[60px\] {
        font-size: 36px;
        line-height: 60px
    }

    .lg\:text-\[46px\] {
        font-size: 46px
    }

    .lg\:text-\[46px\]\/\[120\%\] {
        font-size: 46px;
        line-height: 120%
    }

    .lg\:text-\[46px\]\/\[60px\] {
        font-size: 46px;
        line-height: 60px
    }

    .lg\:text-\[54px\]\/\[100\%\] {
        font-size: 54px;
        line-height: 100%
    }

    .lg\:text-\[72px\] {
        font-size: 72px
    }

    .lg\:text-\[72px\]\/\[100\%\] {
        font-size: 72px;
        line-height: 100%
    }

    .lg\:text-\[72px\]\/\[130\%\] {
        font-size: 72px;
        line-height: 130%
    }

    .lg\:font-\[500\] {
        font-weight: 500
    }

    .lg\:font-\[600\] {
        font-weight: 600
    }

    .lg\:font-medium {
        font-weight: 500
    }

    .lg\:font-semibold {
        font-weight: 600
    }

    .lg\:leading-\[100\%\] {
        line-height: 100%
    }

    .lg\:leading-\[60px\] {
        line-height: 60px
    }

    .lg\:tracking-\[-0\.48px\] {
        letter-spacing: -.48px
    }

    .lg\:tracking-\[-0\.72px\] {
        letter-spacing: -.72px
    }

    .lg\:tracking-\[0\.2px\] {
        letter-spacing: .2px
    }

    .lg\:tracking-\[0\] {
        letter-spacing: 0
    }

    .lg\:tracking-normal {
        letter-spacing: 0em
    }

    .lg\:text-\[40\] {
        color: 40
    }
}

@media (min-width: 1280px) {
    .xl2\:static {
        position:static
    }

    .xl2\:bottom-\[156px\] {
        bottom: 156px
    }

    .xl2\:bottom-\[177px\] {
        bottom: 177px
    }

    .xl2\:bottom-\[36px\] {
        bottom: 36px
    }

    .xl2\:bottom-\[50\%\] {
        bottom: 50%
    }

    .xl2\:left-\[10\%\] {
        left: 10%
    }

    .xl2\:left-\[12\%\] {
        left: 12%
    }

    .xl2\:left-\[17\%\] {
        left: 17%
    }

    .xl2\:top-\[11\%\] {
        top: 11%
    }

    .xl2\:top-\[94px\] {
        top: 94px
    }

    .xl2\:order-1 {
        order: 1
    }

    .xl2\:order-2 {
        order: 2
    }

    .xl2\:mx-\[40px\] {
        margin-left: 40px;
        margin-right: 40px
    }

    .xl2\:mb-0 {
        margin-bottom: 0
    }

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

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

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

    .xl2\:me-\[12px\] {
        margin-inline-end:12px}

    .xl2\:ml-0 {
        margin-left: 0
    }

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

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

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

    .xl2\:mr-0 {
        margin-right: 0
    }

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

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

    .xl2\:mt-0 {
        margin-top: 0
    }

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

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

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

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

    .xl2\:block {
        display: block
    }

    .xl2\:flex {
        display: flex
    }

    .xl2\:hidden {
        display: none
    }

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

    .xl2\:h-\[1025px\] {
        height: 1025px
    }

    .xl2\:h-\[1280px\] {
        height: 1280px
    }

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

    .xl2\:h-\[262px\] {
        height: 262px
    }

    .xl2\:h-\[300px\] {
        height: 300px
    }

    .xl2\:h-\[360px\] {
        height: 360px
    }

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

    .xl2\:h-\[377px\] {
        height: 377px
    }

    .xl2\:h-\[385px\] {
        height: 385px
    }

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

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

    .xl2\:h-\[46px\] {
        height: 46px
    }

    .xl2\:h-\[485px\] {
        height: 485px
    }

    .xl2\:h-\[600px\] {
        height: 600px
    }

    .xl2\:h-\[605px\] {
        height: 605px
    }

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

    .xl2\:h-\[665px\] {
        height: 665px
    }

    .xl2\:h-\[73px\] {
        height: 73px
    }

    .xl2\:h-\[800px\] {
        height: 800px
    }

    .xl2\:h-\[908px\] {
        height: 908px
    }

    .xl2\:h-\[94px\] {
        height: 94px
    }

    .xl2\:h-\[961px\] {
        height: 961px
    }

    .xl2\:h-\[98px\] {
        height: 98px
    }

    .xl2\:w-1\/4 {
        width: 25%
    }

    .xl2\:w-\[1000px\] {
        width: 1000px
    }

    .xl2\:w-\[1024px\] {
        width: 1024px
    }

    .xl2\:w-\[1200px\] {
        width: 1200px
    }

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

    .xl2\:w-\[287px\] {
        width: 287px
    }

    .xl2\:w-\[365px\] {
        width: 365px
    }

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

    .xl2\:w-\[385px\] {
        width: 385px
    }

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

    .xl2\:w-\[429px\] {
        width: 429px
    }

    .xl2\:w-\[45\%\] {
        width: 45%
    }

    .xl2\:w-\[46\%\] {
        width: 46%
    }

    .xl2\:w-\[485px\] {
        width: 485px
    }

    .xl2\:w-\[540px\] {
        width: 540px
    }

    .xl2\:w-\[550px\] {
        width: 550px
    }

    .xl2\:w-\[580px\] {
        width: 580px
    }

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

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

    .xl2\:w-\[710px\] {
        width: 710px
    }

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

    .xl2\:w-\[820px\] {
        width: 820px
    }

    .xl2\:w-\[830px\] {
        width: 830px
    }

    .xl2\:w-\[946px\] {
        width: 946px
    }

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

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

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

    .xl2\:flex-row {
        flex-direction: row
    }

    .xl2\:flex-nowrap {
        flex-wrap: nowrap
    }

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

    .xl2\:items-center {
        align-items: center
    }

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

    .xl2\:justify-evenly {
        justify-content: space-evenly
    }

    .xl2\:gap-\[40px\] {
        gap: 40px
    }

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

    .xl2\:self-auto {
        align-self: auto
    }

    .xl2\:self-stretch {
        align-self: stretch
    }

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

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

    .xl2\:\!rounded-l-\[38px\] {
        border-top-left-radius: 38px!important;
        border-bottom-left-radius: 38px!important
    }

    .xl2\:rounded-l-\[38px\] {
        border-top-left-radius: 38px;
        border-bottom-left-radius: 38px
    }

    .xl2\:bg-gray-200 {
        background-color: var(--gray-200)
    }

    .xl2\:bg-white-10 {
        background-color: var(--white-10)
    }

    .xl2\:p-\[50px_100px\] {
        padding: 50px 100px
    }

    .xl2\:px-\[20px\] {
        padding-left: 20px;
        padding-right: 20px
    }

    .xl2\:px-\[40px\] {
        padding-left: 40px;
        padding-right: 40px
    }

    .xl2\:py-\[13px\] {
        padding-top: 13px;
        padding-bottom: 13px
    }

    .xl2\:font-Sans {
        font-family: Plus Jakarta Sans
    }

    .xl2\:text-\[140px\] {
        font-size: 140px
    }

    .xl2\:text-\[20px\] {
        font-size: 20px
    }

    .xl2\:text-\[24px\] {
        font-size: 24px
    }

    .xl2\:text-\[46px\] {
        font-size: 46px
    }

    .xl2\:text-\[72px\] {
        font-size: 72px
    }

    .xl2\:text-\[72px\]\/\[100\%\] {
        font-size: 72px;
        line-height: 100%
    }

    .xl2\:leading-\[60px\] {
        line-height: 60px
    }

    .xl2\:leading-\[94px\] {
        line-height: 94px
    }

    .xl2\:tracking-\[-0\.48px\] {
        letter-spacing: -.48px
    }

    .xl2\:tracking-\[-0\.72px\] {
        letter-spacing: -.72px
    }

    .xl2\:tracking-normal {
        letter-spacing: 0em
    }

    .xl2\:backdrop-blur-md {
        --tw-backdrop-blur: blur(12px);
        -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
        backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)
    }
}

@media (min-width: 1440px) {
    .xl\:left-\[-5\%\] {
        left:-5%
    }

    .xl\:left-\[16\%\] {
        left: 16%
    }

    .xl\:left-\[180px\] {
        left: 180px
    }

    .xl\:left-\[300px\] {
        left: 300px
    }

    .xl\:right-\[-5\%\] {
        right: -5%
    }

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

    .xl\:mx-\[-72px\] {
        margin-left: -72px;
        margin-right: -72px
    }

    .xl\:mb-0 {
        margin-bottom: 0
    }

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

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

    .xl\:mt-0 {
        margin-top: 0
    }

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

    .xl\:block {
        display: block
    }

    .xl\:h-\[332px\] {
        height: 332px
    }

    .xl\:h-\[410px\] {
        height: 410px
    }

    .xl\:h-\[600px\] {
        height: 600px
    }

    .xl\:w-\[1200px\] {
        width: 1200px
    }

    .xl\:w-\[1344px\] {
        width: 1344px
    }

    .xl\:w-\[1600px\] {
        width: 1600px
    }

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

    .xl\:w-\[220px\] {
        width: 220px
    }

    .xl\:w-\[230px\] {
        width: 230px
    }

    .xl\:w-\[24vw\] {
        width: 24vw
    }

    .xl\:w-\[31\%\] {
        width: 31%
    }

    .xl\:w-\[320px\] {
        width: 320px
    }

    .xl\:w-\[33\%\] {
        width: 33%
    }

    .xl\:w-\[332px\] {
        width: 332px
    }

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

    .xl\:w-\[460px\] {
        width: 460px
    }

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

    .xl\:w-\[550px\] {
        width: 550px
    }

    .xl\:w-\[605px\] {
        width: 605px
    }

    .xl\:w-\[812px\] {
        width: 812px
    }

    .xl\:w-\[83\%\] {
        width: 83%
    }

    .xl\:w-full {
        width: 100%
    }

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

    .xl\:flex-shrink-0 {
        flex-shrink: 0
    }

    .xl\:flex-row {
        flex-direction: row
    }

    .xl\:flex-row-reverse {
        flex-direction: row-reverse
    }

    .xl\:flex-nowrap {
        flex-wrap: nowrap
    }

    .xl\:items-center {
        align-items: center
    }

    .xl\:items-baseline {
        align-items: baseline
    }

    .xl\:justify-center {
        justify-content: center
    }

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

    .xl\:gap-\[56px\] {
        gap: 56px
    }

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

    .xl\:border {
        border-width: 1px
    }

    .xl\:border-\[rgba\(255\,255\,255\,0\.4\)\] {
        border-color: #fff6
    }

    .xl\:bg-\[rgba\(255\,255\,255\,0\.13\)\] {
        background-color: #ffffff21
    }

    .xl\:p-\[34px_113px_34px_72px\] {
        padding: 34px 113px 34px 72px
    }

    .xl\:p-\[60px\] {
        padding: 60px
    }

    .xl\:px-\[72px\] {
        padding-left: 72px;
        padding-right: 72px
    }

    .xl\:pb-\[60px\] {
        padding-bottom: 60px
    }

    .xl\:backdrop-blur-md {
        --tw-backdrop-blur: blur(12px);
        -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
        backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)
    }
}

@media (min-width: 1920px) {
    .\32xl\:bottom-\[125px\] {
        bottom:125px
    }

    .\32xl\:bottom-\[162px\] {
        bottom: 162px
    }

    .\32xl\:bottom-\[89px\] {
        bottom: 89px
    }

    .\32xl\:left-\[18\%\] {
        left: 18%
    }

    .\32xl\:left-\[20\%\] {
        left: 20%
    }

    .\32xl\:left-\[360px\] {
        left: 360px
    }

    .\32xl\:\!h-\[72px\] {
        height: 72px!important
    }

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

    .\32xl\:h-full {
        height: 100%
    }

    .\32xl\:w-\[30\.4\%\] {
        width: 30.4%
    }

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

    .\32xl\:w-\[50\%\] {
        width: 50%
    }

    .\32xl\:w-\[53\%\] {
        width: 53%
    }

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

    .\32xl\:w-\[63\%\] {
        width: 63%
    }

    .\32xl\:w-\[68\%\] {
        width: 68%
    }

    .\32xl\:w-\[68\.3\%\] {
        width: 68.3%
    }

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

    .\32xl\:w-\[73\%\] {
        width: 73%
    }

    .\32xl\:w-\[83\%\] {
        width: 83%
    }

    .\32xl\:w-\[90\%\] {
        width: 90%
    }

    .\32xl\:w-full {
        width: 100%
    }

    .\32xl\:pl-\[7\.3\%\] {
        padding-left: 7.3%
    }

    .\32xl\:pr-\[9\.38\%\] {
        padding-right: 9.38%
    }

    .\32xl\:leading-\[28px\] {
        line-height: 28px
    }
}

.rtl\:justify-end:where([dir=rtl],[dir=rtl] *) {
    justify-content: flex-end
}

.dark\:border-0:where(.dark,.dark *) {
    border-width: 0px
}

.dark\:border-t:where(.dark,.dark *) {
    border-top-width: 1px
}

.dark\:\!border-white-20:where(.dark,.dark *) {
    border-color: var(--white-20)!important
}

.dark\:border-white:where(.dark,.dark *) {
    border-color: var(--white-default)
}

.dark\:border-white-10:where(.dark,.dark *) {
    border-color: var(--white-10)
}

.dark\:border-white-20:where(.dark,.dark *) {
    border-color: var(--white-20)
}

.dark\:border-white-80:where(.dark,.dark *) {
    border-color: var(--white-80)
}

.dark\:\!bg-black:where(.dark,.dark *) {
    background-color: var(--black-default)!important
}

.dark\:bg-\[\#2D2D2F\]:where(.dark,.dark *) {
    --tw-bg-opacity: 1;
    background-color: rgb(45 45 47 / var(--tw-bg-opacity))
}

.dark\:bg-\[\#727272\]:where(.dark,.dark *) {
    --tw-bg-opacity: 1;
    background-color: rgb(114 114 114 / var(--tw-bg-opacity))
}

.dark\:bg-\[\#F8F9FA\]:where(.dark,.dark *) {
    --tw-bg-opacity: 1;
    background-color: rgb(248 249 250 / var(--tw-bg-opacity))
}

.dark\:bg-\[\#FFF\]:where(.dark,.dark *) {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity))
}

.dark\:bg-\[rgba\(255\,255\,255\,0\.04\)\]:where(.dark,.dark *) {
    background-color: #ffffff0a
}

.dark\:bg-\[rgba\(255\,255\,255\,0\.08\)\]:where(.dark,.dark *) {
    background-color: #ffffff14
}

.dark\:bg-\[rgba\(255\,255\,255\,0\.1\)\]:where(.dark,.dark *) {
    background-color: #ffffff1a
}

.dark\:bg-\[rgba\(255\,255\,255\,0\.12\)\]:where(.dark,.dark *) {
    background-color: #ffffff1f
}

.dark\:bg-\[rgba\(255\,255\,255\,0\.2\)\]:where(.dark,.dark *) {
    background-color: #fff3
}

.dark\:bg-\[rgba\(255\,255\,255\,0\.5\)\]:where(.dark,.dark *) {
    background-color: #ffffff80
}

.dark\:bg-black:where(.dark,.dark *) {
    background-color: var(--black-default)
}

.dark\:bg-black-19181B:where(.dark,.dark *) {
    background-color: var(--black-19181B)
}

.dark\:bg-white:where(.dark,.dark *) {
    background-color: var(--white-default)
}

.dark\:bg-white-10:where(.dark,.dark *) {
    background-color: var(--white-10)
}

.dark\:bg-white-248-249-2:where(.dark,.dark *) {
    background-color: var(--white-248-249-2)
}

.dark\:bg-white-80:where(.dark,.dark *) {
    background-color: var(--white-80)
}

.dark\:\!text-gray-200:where(.dark,.dark *) {
    color: var(--gray-200)!important
}

.dark\:\!text-gray-300:where(.dark,.dark *) {
    color: var(--gray-300)!important
}

.dark\:\!text-white:where(.dark,.dark *) {
    color: var(--white-default)!important
}

.dark\:text-\[\#AFAFAF\]:where(.dark,.dark *) {
    --tw-text-opacity: 1;
    color: rgb(175 175 175 / var(--tw-text-opacity))
}

.dark\:text-\[\#E9E9EA\]:where(.dark,.dark *) {
    --tw-text-opacity: 1;
    color: rgb(233 233 234 / var(--tw-text-opacity))
}

.dark\:text-\[\#F8F9FA\]:where(.dark,.dark *) {
    --tw-text-opacity: 1;
    color: rgb(248 249 250 / var(--tw-text-opacity))
}

.dark\:text-\[rgba\(255\,255\,255\,0\.7\)\]:where(.dark,.dark *) {
    color: #ffffffb3
}

.dark\:text-gray-300:where(.dark,.dark *) {
    color: var(--gray-300)
}

.dark\:text-gray-500:where(.dark,.dark *) {
    color: var(--gray-500)
}

.dark\:text-white:where(.dark,.dark *) {
    color: var(--white-default)
}

.dark\:text-white-50:where(.dark,.dark *) {
    color: var(--white-50)
}

.dark\:text-white-70:where(.dark,.dark *) {
    color: var(--white-70)
}

.dark\:text-white-80:where(.dark,.dark *) {
    color: var(--white-80)
}

.dark\:hover\:border-\[rgba\(255\,255\,255\,0\.25\)\]:hover:where(.dark,.dark *) {
    border-color: #ffffff40
}

@media (min-width: 1280px) {
    .xl2\:dark\:bg-white-10:where(.dark,.dark *) {
        background-color:var(--white-10)
    }
}

:root {
    --black-default: #111114;
    --black-19181B: #19181b;
    --black-12: rgba(20, 29, 34, .12);
    --black-10: rgba(20, 29, 34, .1);
    --black-20: rgba(20, 29, 34, .2);
    --black-40: rgba(0, 0, 0, .4);
    --black-0-08: rgba(0, 0, 0, .08);
    --black-01: rgba(0, 0, 0, .1);
    --black-02: rgba(0, 0, 0, .2);
    --black-30: rgba(0, 0, 0, .3);
    --black-34: rgba(0, 0, 0, .34);
    --black-50: rgba(0, 0, 0, .5);
    --black-70: rgba(0, 0, 0, .7);
    --black-1-1: rgba(1, 1, 1, .55);
    --black-282A2B: #282A2B;
    --black-636366: #636366;
    --white-default: #fff;
    --white-f0: #f0f0f0;
    --white-10: rgba(255, 255, 255, .1);
    --white-12: rgba(255, 255, 255, .12);
    --white-14: rgba(255, 255, 255, .14);
    --white-20: rgba(255, 255, 255, .2);
    --white-30: rgba(255, 255, 255, .3);
    --white-50: rgba(255, 255, 255, .5);
    --white-60: rgba(255, 255, 255, .6);
    --gray-60: rgba(40, 42, 43, .6);
    --white-80: rgba(255, 255, 255, .8);
    --white-70: rgba(255, 255, 255, .7);
    --white-248-249: rgba(248, 249, 250, .2);
    --white-248-249-2: rgba(248, 249, 250, .1);
    --white-248-249-8: rgba(248, 249, 250, .8);
    --gray-200: #e4e5e6;
    --gray-3: #828282;
    --gray-300: #e9e9ea;
    --gray-500: #afafaf;
    --gray-878: #ededed;
    --gray-600: #86878a;
    --gray-700: #727272;
    --gray-635: #635756;
    --brand-colors-600: #0f1022;
    --brand-colors-500-default: #7532ff;
    --brand-colors-100: #CBD1FC;
    --border-4-89: linear-gradient( 132.42deg, rgba(255, 255, 255, .4) 7.8%, rgba(89, 201, 244, 0) 89.06% );
    --border-18-82: linear-gradient(360deg, #fff 18.08%, rgba(255, 255, 255, 0) 82.99%);
    --border-2-80: linear-gradient(360deg, #111114 2.3%, rgba(0, 0, 0, 0) 80.63%);
    --border-0-100: linear-gradient( 105deg, rgba(255, 255, 255, 0) 0%, #fff 49%, rgba(255, 255, 255, 0) 100% );
    --accent-color-02: #00b4d8;
    --slate-200: #e2e8f0;
    --barp-colors: #f8f9fa;
    --border-color-3: rgba(203, 209, 252, .4);
    --border-color-22: rgba(127, 137, 235, .22);
    --xlshow-3: 7px 13px 16px 0px rgba(0, 0, 0, .05);
    --Accent-01: rgba(0, 250, 220, .72);
    --Alert-Red: #e10b0b;
    --Alert-Green: #18c252;
    --slate-500: #64748b;
    --boxShow-27: 7px 13px 16px 0px rgba(0, 0, 0, .05);
    --bg-35-100: linear-gradient(0deg, #111114 35%, rgba(0, 0, 0, 0) 100%)
}

:root {
    --el-color-white: #ffffff;
    --el-color-black: #000000;
    --el-color-primary-rgb: 64,158,255;
    --el-color-success-rgb: 103,194,58;
    --el-color-warning-rgb: 230,162,60;
    --el-color-danger-rgb: 245,108,108;
    --el-color-error-rgb: 245,108,108;
    --el-color-info-rgb: 144,147,153;
    --el-font-size-extra-large: 20px;
    --el-font-size-large: 18px;
    --el-font-size-medium: 16px;
    --el-font-size-base: 14px;
    --el-font-size-small: 13px;
    --el-font-size-extra-small: 12px;
    --el-font-family: "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif;
    --el-font-weight-primary: 500;
    --el-font-line-height-primary: 24px;
    --el-index-normal: 1;
    --el-index-top: 1000;
    --el-index-popper: 2000;
    --el-border-radius-base: 4px;
    --el-border-radius-small: 2px;
    --el-border-radius-round: 20px;
    --el-border-radius-circle: 100%;
    --el-transition-duration: .3s;
    --el-transition-duration-fast: .2s;
    --el-transition-function-ease-in-out-bezier: cubic-bezier(.645,.045,.355,1);
    --el-transition-function-fast-bezier: cubic-bezier(.23,1,.32,1);
    --el-transition-all: all var(--el-transition-duration) var(--el-transition-function-ease-in-out-bezier);
    --el-transition-fade: opacity var(--el-transition-duration) var(--el-transition-function-fast-bezier);
    --el-transition-md-fade: transform var(--el-transition-duration) var(--el-transition-function-fast-bezier),opacity var(--el-transition-duration) var(--el-transition-function-fast-bezier);
    --el-transition-fade-linear: opacity var(--el-transition-duration-fast) linear;
    --el-transition-border: border-color var(--el-transition-duration-fast) var(--el-transition-function-ease-in-out-bezier);
    --el-transition-box-shadow: box-shadow var(--el-transition-duration-fast) var(--el-transition-function-ease-in-out-bezier);
    --el-transition-color: color var(--el-transition-duration-fast) var(--el-transition-function-ease-in-out-bezier);
    --el-component-size-large: 40px;
    --el-component-size: 32px;
    --el-component-size-small: 24px;
    color-scheme: light;
    --el-color-primary: #409eff;
    --el-color-primary-light-3: #79bbff;
    --el-color-primary-light-5: #a0cfff;
    --el-color-primary-light-7: #c6e2ff;
    --el-color-primary-light-8: #d9ecff;
    --el-color-primary-light-9: #ecf5ff;
    --el-color-primary-dark-2: #337ecc;
    --el-color-success: #67c23a;
    --el-color-success-light-3: #95d475;
    --el-color-success-light-5: #b3e19d;
    --el-color-success-light-7: #d1edc4;
    --el-color-success-light-8: #e1f3d8;
    --el-color-success-light-9: #f0f9eb;
    --el-color-success-dark-2: #529b2e;
    --el-color-warning: #e6a23c;
    --el-color-warning-light-3: #eebe77;
    --el-color-warning-light-5: #f3d19e;
    --el-color-warning-light-7: #f8e3c5;
    --el-color-warning-light-8: #faecd8;
    --el-color-warning-light-9: #fdf6ec;
    --el-color-warning-dark-2: #b88230;
    --el-color-danger: #f56c6c;
    --el-color-danger-light-3: #f89898;
    --el-color-danger-light-5: #fab6b6;
    --el-color-danger-light-7: #fcd3d3;
    --el-color-danger-light-8: #fde2e2;
    --el-color-danger-light-9: #fef0f0;
    --el-color-danger-dark-2: #c45656;
    --el-color-error: #f56c6c;
    --el-color-error-light-3: #f89898;
    --el-color-error-light-5: #fab6b6;
    --el-color-error-light-7: #fcd3d3;
    --el-color-error-light-8: #fde2e2;
    --el-color-error-light-9: #fef0f0;
    --el-color-error-dark-2: #c45656;
    --el-color-info: #909399;
    --el-color-info-light-3: #b1b3b8;
    --el-color-info-light-5: #c8c9cc;
    --el-color-info-light-7: #dedfe0;
    --el-color-info-light-8: #e9e9eb;
    --el-color-info-light-9: #f4f4f5;
    --el-color-info-dark-2: #73767a;
    --el-bg-color: #ffffff;
    --el-bg-color-page: #f2f3f5;
    --el-bg-color-overlay: #ffffff;
    --el-text-color-primary: #303133;
    --el-text-color-regular: #606266;
    --el-text-color-secondary: #909399;
    --el-text-color-placeholder: #a8abb2;
    --el-text-color-disabled: #c0c4cc;
    --el-border-color: #dcdfe6;
    --el-border-color-light: #e4e7ed;
    --el-border-color-lighter: #ebeef5;
    --el-border-color-extra-light: #f2f6fc;
    --el-border-color-dark: #d4d7de;
    --el-border-color-darker: #cdd0d6;
    --el-fill-color: #f0f2f5;
    --el-fill-color-light: #f5f7fa;
    --el-fill-color-lighter: #fafafa;
    --el-fill-color-extra-light: #fafcff;
    --el-fill-color-dark: #ebedf0;
    --el-fill-color-darker: #e6e8eb;
    --el-fill-color-blank: #ffffff;
    --el-box-shadow: 0px 12px 32px 4px rgba(0,0,0,.04),0px 8px 20px rgba(0,0,0,.08);
    --el-box-shadow-light: 0px 0px 12px rgba(0,0,0,.12);
    --el-box-shadow-lighter: 0px 0px 6px rgba(0,0,0,.12);
    --el-box-shadow-dark: 0px 16px 48px 16px rgba(0,0,0,.08),0px 12px 32px rgba(0,0,0,.12),0px 8px 16px -8px rgba(0,0,0,.16);
    --el-disabled-bg-color: var(--el-fill-color-light);
    --el-disabled-text-color: var(--el-text-color-placeholder);
    --el-disabled-border-color: var(--el-border-color-light);
    --el-overlay-color: rgba(0,0,0,.8);
    --el-overlay-color-light: rgba(0,0,0,.7);
    --el-overlay-color-lighter: rgba(0,0,0,.5);
    --el-mask-color: rgba(255,255,255,.9);
    --el-mask-color-extra-light: rgba(255,255,255,.3);
    --el-border-width: 1px;
    --el-border-style: solid;
    --el-border-color-hover: var(--el-text-color-disabled);
    --el-border: var(--el-border-width) var(--el-border-style) var(--el-border-color);
    --el-svg-monochrome-grey: var(--el-border-color)
}

.el-icon-loading {
    animation: rotating 2s linear infinite
}

.el-icon--right {
    margin-left: 5px
}

.el-icon--left {
    margin-right: 5px
}

@keyframes rotating {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(1turn)
    }
}

.el-icon {
    --color: inherit;
    align-items: center;
    display: inline-flex;
    height: 1em;
    justify-content: center;
    line-height: 1em;
    position: relative;
    width: 1em;
    fill: currentColor;
    color: var(--color);
    font-size: inherit
}

.el-icon.is-loading {
    animation: rotating 2s linear infinite
}

.el-icon svg {
    height: 1em;
    width: 1em
}

.el-badge {
    --el-badge-bg-color: var(--el-color-danger);
    --el-badge-radius: 10px;
    --el-badge-font-size: 12px;
    --el-badge-padding: 6px;
    --el-badge-size: 18px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    width: -moz-fit-content;
    width: fit-content
}

.el-badge__content {
    align-items: center;
    background-color: var(--el-badge-bg-color);
    border: 1px solid var(--el-bg-color);
    border-radius: var(--el-badge-radius);
    color: var(--el-color-white);
    display: inline-flex;
    font-size: var(--el-badge-font-size);
    height: var(--el-badge-size);
    justify-content: center;
    padding: 0 var(--el-badge-padding);
    white-space: nowrap
}

.el-badge__content.is-fixed {
    position: absolute;
    right: calc(1px + var(--el-badge-size)/2);
    top: 0;
    transform: translateY(-50%) translate(100%);
    z-index: var(--el-index-normal)
}

.el-badge__content.is-fixed.is-dot {
    right: 5px
}

.el-badge__content.is-dot {
    border-radius: 50%;
    height: 8px;
    padding: 0;
    right: 0;
    width: 8px
}

.el-badge__content--primary {
    background-color: var(--el-color-primary)
}

.el-badge__content--success {
    background-color: var(--el-color-success)
}

.el-badge__content--warning {
    background-color: var(--el-color-warning)
}

.el-badge__content--info {
    background-color: var(--el-color-info)
}

.el-badge__content--danger {
    background-color: var(--el-color-danger)
}

.el-message {
    --el-message-bg-color: var(--el-color-info-light-9);
    --el-message-border-color: var(--el-border-color-lighter);
    --el-message-padding: 11px 15px;
    --el-message-close-size: 16px;
    --el-message-close-icon-color: var(--el-text-color-placeholder);
    --el-message-close-hover-color: var(--el-text-color-secondary);
    align-items: center;
    background-color: var(--el-message-bg-color);
    border-color: var(--el-message-border-color);
    border-radius: var(--el-border-radius-base);
    border-style: var(--el-border-style);
    border-width: var(--el-border-width);
    box-sizing: border-box;
    display: flex;
    gap: 8px;
    left: 50%;
    max-width: calc(100% - 32px);
    padding: var(--el-message-padding);
    position: fixed;
    top: 20px;
    transform: translate(-50%);
    transition: opacity var(--el-transition-duration),transform .4s,top .4s;
    width: -moz-fit-content;
    width: fit-content
}

.el-message.is-center {
    justify-content: center
}

.el-message.is-plain {
    background-color: var(--el-bg-color-overlay);
    border-color: var(--el-bg-color-overlay);
    box-shadow: var(--el-box-shadow-light)
}

.el-message p {
    margin: 0
}

.el-message--success {
    --el-message-bg-color: var(--el-color-success-light-9);
    --el-message-border-color: var(--el-color-success-light-8);
    --el-message-text-color: var(--el-color-success)
}

.el-message--success .el-message__content {
    color: var(--el-message-text-color);
    overflow-wrap: break-word
}

.el-message .el-message-icon--success {
    color: var(--el-message-text-color)
}

.el-message--info {
    --el-message-bg-color: var(--el-color-info-light-9);
    --el-message-border-color: var(--el-color-info-light-8);
    --el-message-text-color: var(--el-color-info)
}

.el-message--info .el-message__content {
    color: var(--el-message-text-color);
    overflow-wrap: break-word
}

.el-message .el-message-icon--info {
    color: var(--el-message-text-color)
}

.el-message--warning {
    --el-message-bg-color: var(--el-color-warning-light-9);
    --el-message-border-color: var(--el-color-warning-light-8);
    --el-message-text-color: var(--el-color-warning)
}

.el-message--warning .el-message__content {
    color: var(--el-message-text-color);
    overflow-wrap: break-word
}

.el-message .el-message-icon--warning {
    color: var(--el-message-text-color)
}

.el-message--error {
    --el-message-bg-color: var(--el-color-error-light-9);
    --el-message-border-color: var(--el-color-error-light-8);
    --el-message-text-color: var(--el-color-error)
}

.el-message--error .el-message__content {
    color: var(--el-message-text-color);
    overflow-wrap: break-word
}

.el-message .el-message-icon--error {
    color: var(--el-message-text-color)
}

.el-message .el-message__badge {
    position: absolute;
    right: -8px;
    top: -8px
}

.el-message__content {
    font-size: 14px;
    line-height: 1;
    padding: 0
}

.el-message__content:focus {
    outline-width: 0
}

.el-message .el-message__closeBtn {
    color: var(--el-message-close-icon-color);
    cursor: pointer;
    font-size: var(--el-message-close-size)
}

.el-message .el-message__closeBtn:focus {
    outline-width: 0
}

.el-message .el-message__closeBtn:hover {
    color: var(--el-message-close-hover-color)
}

.el-message-fade-enter-from,.el-message-fade-leave-to {
    opacity: 0;
    transform: translate(-50%,-100%)
}

@font-face {
    font-family: Plus Jakarta Sans;
    src: url(/assets/PlusJakartaSans-VariableFont_wght-D_DSbd_K.ttf) format("truetype");
    font-style: normal
}

@font-face {
    font-family: Inter;
    src: url(/assets/Inter-ExtraLight-BEx6KSH1.ttf) format("truetype");
    font-style: normal;
    font-weight: 400
}

@font-face {
    font-family: swiper-icons;
    src: url(data:application/font-woff;charset=utf-8;base64,\ d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA);
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #007aff
}

:host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block
}

.swiper-vertical>.swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box
}

.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper {
    transform: translateZ(0)
}

.swiper-horizontal {
    touch-action: pan-y
}

.swiper-vertical {
    touch-action: pan-x
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight,.swiper-autoheight .swiper-slide {
    height: auto
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform,height
}

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    backface-visibility: hidden
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px
}

.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-3d {
    perspective: 1200px
}

.swiper-3d .swiper-slide,.swiper-3d .swiper-cube-shadow {
    transform-style: preserve-3d
}

.swiper-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start
}

.swiper-css-mode.swiper-horizontal>.swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-css-mode.swiper-vertical>.swiper-wrapper {
    scroll-snap-type: y mandatory
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper {
    scroll-snap-type: none
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: none
}

.swiper-css-mode.swiper-centered>.swiper-wrapper:before {
    content: "";
    flex-shrink: 0;
    order: 9999
}

.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop:always}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
    margin-inline-start:var(--swiper-centered-offset-before)}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper:before {
    height:100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after)
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
    margin-block-start:var(--swiper-centered-offset-before)}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper:before {
    width:100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after)
}

.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-3d .swiper-slide-shadow {
    background: #00000026
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left,#00000080,#0000)
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right,#00000080,#0000)
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top,#00000080,#0000)
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom,#00000080,#0000)
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translateZ(0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled {
    display: none!important
}

.swiper-pagination-fraction,.swiper-pagination-custom,.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(.33);
    position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(.33)
}

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .2)
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet:only-child {
    display: none!important
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color))
}

.swiper-vertical>.swiper-pagination-bullets,.swiper-pagination-vertical.swiper-pagination-bullets {
    right: var(--swiper-pagination-right, 8px);
    left: var(--swiper-pagination-left, auto);
    top: 50%;
    transform: translate3d(0,-50%,0)
}

.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block
}

.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px
}

.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: .2s transform,.2s top
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px)
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translate(-50%);
    white-space: nowrap
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform,.2s left
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform,.2s right
}

.swiper-pagination-fraction {
    color: var(--swiper-pagination-fraction-color, inherit)
}

.swiper-pagination-progressbar {
    background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, .25));
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0
}

.swiper-vertical>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-lock {
    display: none
}

.swiper-fade.swiper-free-mode .swiper-slide {
    transition-timing-function: ease-out
}

.swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity
}

.swiper-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.bg-hero-banner {
    background-color: var(--2df8f819);
    background-image: var(--6b4f2356)
}

.main-fadeIn {
    animation-name: main-fadeIn-849f0787;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-delay: 1s
}

@keyframes main-fadeIn-849f0787 {
    0% {
        background-color: #00000080
    }

    to {
        background-color: #0000
    }
}

.shadow-image:before {
    content: "";
    position: absolute;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
    background-image: radial-gradient(#ffffff80,#fff0);
    border-radius: 50%;
    filter: blur(110px);
    -webkit-filter: blur(110px);
    z-index: 1;
    transform: translateZ(0);
    will-change: filter
}

.banner:hover .banner-bg {
    transform: translateY(-6%) scale(1.1)
}

.el-drawer {
    --el-drawer-bg-color: var(--el-dialog-bg-color,var(--el-bg-color));
    --el-drawer-padding-primary: var(--el-dialog-padding-primary,20px);
    background-color: var(--el-drawer-bg-color);
    box-shadow: var(--el-box-shadow-dark);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: absolute;
    transition: all var(--el-transition-duration)
}

.el-drawer .btt,.el-drawer .ltr,.el-drawer .rtl,.el-drawer .ttb {
    transform: translate(0)
}

.el-drawer__sr-focus:focus {
    outline: none!important
}

.el-drawer__header {
    align-items: center;
    color: #72767b;
    display: flex;
    margin-bottom: 32px;
    padding: var(--el-drawer-padding-primary);
    padding-bottom: 0
}

.el-drawer__header>:first-child {
    flex: 1
}

.el-drawer__title {
    flex: 1;
    font-size: 1rem;
    line-height: inherit;
    margin: 0
}

.el-drawer__footer {
    padding: var(--el-drawer-padding-primary);
    padding-top: 10px;
    text-align: right
}

.el-drawer__close-btn {
    background-color: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    display: inline-flex;
    font-size: var(--el-font-size-extra-large);
    outline: none
}

.el-drawer__close-btn:focus i,.el-drawer__close-btn:hover i {
    color: var(--el-color-primary)
}

.el-drawer__body {
    flex: 1;
    overflow: auto;
    padding: var(--el-drawer-padding-primary)
}

.el-drawer__body>* {
    box-sizing: border-box
}

.el-drawer.ltr,.el-drawer.rtl {
    bottom: 0;
    height: 100%;
    top: 0
}

.el-drawer.btt,.el-drawer.ttb {
    left: 0;
    right: 0;
    width: 100%
}

.el-drawer.ltr {
    left: 0
}

.el-drawer.rtl {
    right: 0
}

.el-drawer.ttb {
    top: 0
}

.el-drawer.btt {
    bottom: 0
}

.el-drawer-fade-enter-active,.el-drawer-fade-leave-active {
    transition: all var(--el-transition-duration)
}

.el-drawer-fade-enter-active,.el-drawer-fade-enter-from,.el-drawer-fade-enter-to,.el-drawer-fade-leave-active,.el-drawer-fade-leave-from,.el-drawer-fade-leave-to {
    overflow: hidden!important
}

.el-drawer-fade-enter-from,.el-drawer-fade-leave-to {
    opacity: 0
}

.el-drawer-fade-enter-to,.el-drawer-fade-leave-from {
    opacity: 1
}

.el-drawer-fade-enter-from .rtl,.el-drawer-fade-leave-to .rtl {
    transform: translate(100%)
}

.el-drawer-fade-enter-from .ltr,.el-drawer-fade-leave-to .ltr {
    transform: translate(-100%)
}

.el-drawer-fade-enter-from .ttb,.el-drawer-fade-leave-to .ttb {
    transform: translateY(-100%)
}

.el-drawer-fade-enter-from .btt,.el-drawer-fade-leave-to .btt {
    transform: translateY(100%)
}

.el-overlay {
    background-color: var(--el-overlay-color-lighter);
    bottom: 0;
    height: 100%;
    left: 0;
    overflow: auto;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 2000
}

.el-overlay .el-overlay-root {
    height: 0
}

.fade-in-linear-enter-active,.fade-in-linear-leave-active {
    transition: var(--el-transition-fade-linear)
}

.fade-in-linear-enter-from,.fade-in-linear-leave-to {
    opacity: 0
}

.el-fade-in-linear-enter-active,.el-fade-in-linear-leave-active {
    transition: var(--el-transition-fade-linear)
}

.el-fade-in-linear-enter-from,.el-fade-in-linear-leave-to {
    opacity: 0
}

.el-fade-in-enter-active,.el-fade-in-leave-active {
    transition: all var(--el-transition-duration) cubic-bezier(.55,0,.1,1)
}

.el-fade-in-enter-from,.el-fade-in-leave-active {
    opacity: 0
}

.el-zoom-in-center-enter-active,.el-zoom-in-center-leave-active {
    transition: all var(--el-transition-duration) cubic-bezier(.55,0,.1,1)
}

.el-zoom-in-center-enter-from,.el-zoom-in-center-leave-active {
    opacity: 0;
    transform: scaleX(0)
}

.el-zoom-in-top-enter-active,.el-zoom-in-top-leave-active {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: center top;
    transition: var(--el-transition-md-fade)
}

.el-zoom-in-top-enter-active[data-popper-placement^=top],.el-zoom-in-top-leave-active[data-popper-placement^=top] {
    transform-origin: center bottom
}

.el-zoom-in-top-enter-from,.el-zoom-in-top-leave-active {
    opacity: 0;
    transform: scaleY(0)
}

.el-zoom-in-bottom-enter-active,.el-zoom-in-bottom-leave-active {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: center bottom;
    transition: var(--el-transition-md-fade)
}

.el-zoom-in-bottom-enter-from,.el-zoom-in-bottom-leave-active {
    opacity: 0;
    transform: scaleY(0)
}

.el-zoom-in-left-enter-active,.el-zoom-in-left-leave-active {
    opacity: 1;
    transform: scale(1);
    transform-origin: top left;
    transition: var(--el-transition-md-fade)
}

.el-zoom-in-left-enter-from,.el-zoom-in-left-leave-active {
    opacity: 0;
    transform: scale(.45)
}

.collapse-transition {
    transition: var(--el-transition-duration) height ease-in-out,var(--el-transition-duration) padding-top ease-in-out,var(--el-transition-duration) padding-bottom ease-in-out
}

.el-collapse-transition-enter-active,.el-collapse-transition-leave-active {
    transition: var(--el-transition-duration) max-height ease-in-out,var(--el-transition-duration) padding-top ease-in-out,var(--el-transition-duration) padding-bottom ease-in-out
}

.horizontal-collapse-transition {
    transition: var(--el-transition-duration) width ease-in-out,var(--el-transition-duration) padding-left ease-in-out,var(--el-transition-duration) padding-right ease-in-out
}

.el-list-enter-active,.el-list-leave-active {
    transition: all 1s
}

.el-list-enter-from,.el-list-leave-to {
    opacity: 0;
    transform: translateY(-30px)
}

.el-list-leave-active {
    position: absolute!important
}

.el-opacity-transition {
    transition: opacity var(--el-transition-duration) cubic-bezier(.55,0,.1,1)
}

.el-collapse {
    --el-collapse-border-color: var(--el-border-color-lighter);
    --el-collapse-header-height: 48px;
    --el-collapse-header-bg-color: var(--el-fill-color-blank);
    --el-collapse-header-text-color: var(--el-text-color-primary);
    --el-collapse-header-font-size: 13px;
    --el-collapse-content-bg-color: var(--el-fill-color-blank);
    --el-collapse-content-font-size: 13px;
    --el-collapse-content-text-color: var(--el-text-color-primary);
    border-bottom: 1px solid var(--el-collapse-border-color);
    border-top: 1px solid var(--el-collapse-border-color)
}

.el-collapse-item.is-disabled .el-collapse-item__header {
    color: var(--el-text-color-disabled);
    cursor: not-allowed
}

.el-collapse-item__header {
    align-items: center;
    background-color: var(--el-collapse-header-bg-color);
    border: none;
    border-bottom: 1px solid var(--el-collapse-border-color);
    color: var(--el-collapse-header-text-color);
    cursor: pointer;
    display: flex;
    font-size: var(--el-collapse-header-font-size);
    font-weight: 500;
    height: var(--el-collapse-header-height);
    line-height: var(--el-collapse-header-height);
    outline: none;
    padding: 0;
    transition: border-bottom-color var(--el-transition-duration);
    width: 100%
}

.el-collapse-item__arrow {
    font-weight: 300;
    margin: 0 8px 0 auto;
    transition: transform var(--el-transition-duration)
}

.el-collapse-item__arrow.is-active {
    transform: rotate(90deg)
}

.el-collapse-item__header.focusing:focus:not(:hover) {
    color: var(--el-color-primary)
}

.el-collapse-item__header.is-active {
    border-bottom-color: transparent
}

.el-collapse-item__wrap {
    background-color: var(--el-collapse-content-bg-color);
    border-bottom: 1px solid var(--el-collapse-border-color);
    box-sizing: border-box;
    overflow: hidden;
    will-change: height
}

.el-collapse-item__content {
    color: var(--el-collapse-content-text-color);
    font-size: var(--el-collapse-content-font-size);
    line-height: 1.7692307692;
    padding-bottom: 25px
}

.el-collapse-item:last-child {
    margin-bottom: -1px
}

.buttonBorder {
    box-shadow: inset 0 0 1px .5px #7532ffcc,inset 0 .5px 1px 1px #7532ffcc
}

.animation-btn {
    animation: fade-out-border-b98b38a1 1s linear
}

.animation-btn:hover {
    animation: fade-in-border-b98b38a1 1s linear;
    box-shadow: inset 0 0 1px .5px #7532ffcc,inset 0 .5px 1px 1px #7532ffcc;
    color: var(--brand-colors-500-default)
}

@keyframes fade-in-border-b98b38a1 {
    0% {
        color: var(--white-default)
    }

    to {
        box-shadow: inset 0 0 1px .5px #7532ffcc,inset 0 .5px 1px 1px #7532ffcc;
        color: var(--brand-colors-500-default)
    }
}

@keyframes fade-out-border-b98b38a1 {
    0% {
        box-shadow: inset 0 0 1px .5px #7532ffcc,inset 0 .5px 1px 1px #7532ffcc;
        color: var(--brand-colors-500-default)
    }

    to {
        color: var(--black-default)
    }
}

@keyframes fade-in-b98b38a1 {
    0% {
        background-color: var(--white-default);
        color: var(--brand-colors-500-default)
    }

    to {
        background-color: var(--brand-colors-500-default);
        color: var(--white-default)
    }
}

@keyframes fade-out-b98b38a1 {
    0% {
        background-color: var(--brand-colors-500-default);
        color: var(--white-default)
    }

    to {
        background-color: var(--white-default);
        color: var(--brand-colors-500-default)
    }
}

.animation-btn_two {
    animation: fade-in-b98b38a1 1s linear
}

.animation-btn_two:hover {
    animation: fade-out-b98b38a1 1s linear;
    background-color: var(--white-default);
    color: var(--brand-colors-500-default)
}

.footer-banner:hover .footer-banner-bg {
    transform: scale(1.15)
}

.label:hover {
    color: #7532ff
}

.shadow-Image_Star:before {
    content: "";
    position: absolute;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
    background-image: radial-gradient(#ffffff80,#fff0);
    border-radius: 50%;
    filter: blur(110px);
    -webkit-filter: blur(110px);
    z-index: 1;
    transform: translateZ(0);
    will-change: filter
}

.imageZoomInAndZoomOut {
    transition: transform 1s ease
}

.imageZoomInAndZoomOut:hover {
    transform: translate(-5%) scale(1.1)
}

@media only screen and (max-width: 450px) {
    .secOfFndsSecurity {
        -o-object-position:-395px 0;
        object-position: -395px 0
    }
}

@media only screen and (max-width: 1080px) {
    .label {
        font-size:36px
    }
}

@media only screen and (min-width: 480px) and (max-width: 768px) {
    .label {
        font-size:36px
    }

    .content {
        flex-direction: column
    }

    .content-left,.content-right {
        width: 100%
    }
}

@media only screen and (min-width: 360px) and (max-width: 480px) {
    .content-left,.content-right {
        width:100%
    }
}

.el-pagination {
    --el-pagination-font-size: 14px;
    --el-pagination-bg-color: var(--el-fill-color-blank);
    --el-pagination-text-color: var(--el-text-color-primary);
    --el-pagination-border-radius: 2px;
    --el-pagination-button-color: var(--el-text-color-primary);
    --el-pagination-button-width: 32px;
    --el-pagination-button-height: 32px;
    --el-pagination-button-disabled-color: var(--el-text-color-placeholder);
    --el-pagination-button-disabled-bg-color: var(--el-fill-color-blank);
    --el-pagination-button-bg-color: var(--el-fill-color);
    --el-pagination-hover-color: var(--el-color-primary);
    --el-pagination-font-size-small: 12px;
    --el-pagination-button-width-small: 24px;
    --el-pagination-button-height-small: 24px;
    --el-pagination-item-gap: 16px;
    align-items: center;
    color: var(--el-pagination-text-color);
    display: flex;
    font-size: var(--el-pagination-font-size);
    font-weight: 400;
    white-space: nowrap
}

.el-pagination .el-input__inner {
    -moz-appearance: textfield;
    text-align: center
}

.el-pagination .el-select {
    width: 128px
}

.el-pagination button {
    align-items: center;
    background: var(--el-pagination-bg-color);
    border: none;
    border-radius: var(--el-pagination-border-radius);
    box-sizing: border-box;
    color: var(--el-pagination-button-color);
    cursor: pointer;
    display: flex;
    font-size: var(--el-pagination-font-size);
    height: var(--el-pagination-button-height);
    justify-content: center;
    line-height: var(--el-pagination-button-height);
    min-width: var(--el-pagination-button-width);
    padding: 0 4px;
    text-align: center
}

.el-pagination button * {
    pointer-events: none
}

.el-pagination button:focus {
    outline: none
}

.el-pagination button:hover {
    color: var(--el-pagination-hover-color)
}

.el-pagination button.is-active {
    color: var(--el-pagination-hover-color);
    cursor: default;
    font-weight: 700
}

.el-pagination button.is-active.is-disabled {
    color: var(--el-text-color-secondary);
    font-weight: 700
}

.el-pagination button.is-disabled,.el-pagination button:disabled {
    background-color: var(--el-pagination-button-disabled-bg-color);
    color: var(--el-pagination-button-disabled-color);
    cursor: not-allowed
}

.el-pagination button:focus-visible {
    outline: 1px solid var(--el-pagination-hover-color);
    outline-offset: -1px
}

.el-pagination .btn-next .el-icon,.el-pagination .btn-prev .el-icon {
    display: block;
    font-size: 12px;
    font-weight: 700;
    width: inherit
}

.el-pagination>.is-first {
    margin-left: 0!important
}

.el-pagination>.is-last {
    margin-right: 0!important
}

.el-pagination .btn-prev {
    margin-left: var(--el-pagination-item-gap)
}

.el-pagination__sizes,.el-pagination__total {
    color: var(--el-text-color-regular);
    font-weight: 400;
    margin-left: var(--el-pagination-item-gap)
}

.el-pagination__total[disabled=true] {
    color: var(--el-text-color-placeholder)
}

.el-pagination__jump {
    align-items: center;
    color: var(--el-text-color-regular);
    display: flex;
    font-weight: 400;
    margin-left: var(--el-pagination-item-gap)
}

.el-pagination__jump[disabled=true] {
    color: var(--el-text-color-placeholder)
}

.el-pagination__goto {
    margin-right: 8px
}

.el-pagination__editor {
    box-sizing: border-box;
    text-align: center
}

.el-pagination__editor.el-input {
    width: 56px
}

.el-pagination__editor .el-input__inner::-webkit-inner-spin-button,.el-pagination__editor .el-input__inner::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.el-pagination__classifier {
    margin-left: 8px
}

.el-pagination__rightwrapper {
    align-items: center;
    display: flex;
    flex: 1;
    justify-content: flex-end
}

.el-pagination.is-background .btn-next,.el-pagination.is-background .btn-prev,.el-pagination.is-background .el-pager li {
    background-color: var(--el-pagination-button-bg-color);
    margin: 0 4px
}

.el-pagination.is-background .btn-next.is-active,.el-pagination.is-background .btn-prev.is-active,.el-pagination.is-background .el-pager li.is-active {
    background-color: var(--el-color-primary);
    color: var(--el-color-white)
}

.el-pagination.is-background .btn-next.is-disabled,.el-pagination.is-background .btn-next:disabled,.el-pagination.is-background .btn-prev.is-disabled,.el-pagination.is-background .btn-prev:disabled,.el-pagination.is-background .el-pager li.is-disabled,.el-pagination.is-background .el-pager li:disabled {
    background-color: var(--el-disabled-bg-color);
    color: var(--el-text-color-placeholder)
}

.el-pagination.is-background .btn-next.is-disabled.is-active,.el-pagination.is-background .btn-next:disabled.is-active,.el-pagination.is-background .btn-prev.is-disabled.is-active,.el-pagination.is-background .btn-prev:disabled.is-active,.el-pagination.is-background .el-pager li.is-disabled.is-active,.el-pagination.is-background .el-pager li:disabled.is-active {
    background-color: var(--el-fill-color-dark);
    color: var(--el-text-color-secondary)
}

.el-pagination.is-background .btn-prev {
    margin-left: var(--el-pagination-item-gap)
}

.el-pagination--small .btn-next,.el-pagination--small .btn-prev,.el-pagination--small .el-pager li {
    font-size: var(--el-pagination-font-size-small);
    height: var(--el-pagination-button-height-small);
    line-height: var(--el-pagination-button-height-small);
    min-width: var(--el-pagination-button-width-small)
}

.el-pagination--small button,.el-pagination--small span:not([class*=suffix]) {
    font-size: var(--el-pagination-font-size-small)
}

.el-pagination--small .el-select {
    width: 100px
}

.el-pager {
    font-size: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    -webkit-user-select: none;
    user-select: none
}

.el-pager,.el-pager li {
    align-items: center;
    display: flex
}

.el-pager li {
    background: var(--el-pagination-bg-color);
    border: none;
    border-radius: var(--el-pagination-border-radius);
    box-sizing: border-box;
    color: var(--el-pagination-button-color);
    cursor: pointer;
    font-size: var(--el-pagination-font-size);
    height: var(--el-pagination-button-height);
    justify-content: center;
    line-height: var(--el-pagination-button-height);
    min-width: var(--el-pagination-button-width);
    padding: 0 4px;
    text-align: center
}

.el-pager li * {
    pointer-events: none
}

.el-pager li:focus {
    outline: none
}

.el-pager li:hover {
    color: var(--el-pagination-hover-color)
}

.el-pager li.is-active {
    color: var(--el-pagination-hover-color);
    cursor: default;
    font-weight: 700
}

.el-pager li.is-active.is-disabled {
    color: var(--el-text-color-secondary);
    font-weight: 700
}

.el-pager li.is-disabled,.el-pager li:disabled {
    background-color: var(--el-pagination-button-disabled-bg-color);
    color: var(--el-pagination-button-disabled-color);
    cursor: not-allowed
}

.el-pager li:focus-visible {
    outline: 1px solid var(--el-pagination-hover-color);
    outline-offset: -1px
}

.el-textarea {
    --el-input-text-color: var(--el-text-color-regular);
    --el-input-border: var(--el-border);
    --el-input-hover-border: var(--el-border-color-hover);
    --el-input-focus-border: var(--el-color-primary);
    --el-input-transparent-border: 0 0 0 1px transparent inset;
    --el-input-border-color: var(--el-border-color);
    --el-input-border-radius: var(--el-border-radius-base);
    --el-input-bg-color: var(--el-fill-color-blank);
    --el-input-icon-color: var(--el-text-color-placeholder);
    --el-input-placeholder-color: var(--el-text-color-placeholder);
    --el-input-hover-border-color: var(--el-border-color-hover);
    --el-input-clear-hover-color: var(--el-text-color-secondary);
    --el-input-focus-border-color: var(--el-color-primary);
    --el-input-width: 100%;
    display: inline-block;
    font-size: var(--el-font-size-base);
    position: relative;
    vertical-align: bottom;
    width: 100%
}

.el-textarea__inner {
    -webkit-appearance: none;
    background-color: var(--el-input-bg-color,var(--el-fill-color-blank));
    background-image: none;
    border: none;
    border-radius: var(--el-input-border-radius,var(--el-border-radius-base));
    box-shadow: 0 0 0 1px var(--el-input-border-color,var(--el-border-color)) inset;
    box-sizing: border-box;
    color: var(--el-input-text-color,var(--el-text-color-regular));
    display: block;
    font-family: inherit;
    font-size: inherit;
    line-height: 1.5;
    padding: 5px 11px;
    position: relative;
    resize: vertical;
    transition: var(--el-transition-box-shadow);
    width: 100%
}

.el-textarea__inner::placeholder {
    color: var(--el-input-placeholder-color,var(--el-text-color-placeholder))
}

.el-textarea__inner:hover {
    box-shadow: 0 0 0 1px var(--el-input-hover-border-color) inset
}

.el-textarea__inner:focus {
    box-shadow: 0 0 0 1px var(--el-input-focus-border-color) inset;
    outline: none
}

.el-textarea .el-input__count {
    background: var(--el-fill-color-blank);
    bottom: 5px;
    color: var(--el-color-info);
    font-size: 12px;
    line-height: 14px;
    position: absolute;
    right: 10px
}

.el-textarea.is-disabled .el-textarea__inner {
    background-color: var(--el-disabled-bg-color);
    box-shadow: 0 0 0 1px var(--el-disabled-border-color) inset;
    color: var(--el-disabled-text-color);
    cursor: not-allowed
}

.el-textarea.is-disabled .el-textarea__inner::placeholder {
    color: var(--el-text-color-placeholder)
}

.el-textarea.is-exceed .el-textarea__inner {
    box-shadow: 0 0 0 1px var(--el-color-danger) inset
}

.el-textarea.is-exceed .el-input__count {
    color: var(--el-color-danger)
}

.el-input {
    --el-input-text-color: var(--el-text-color-regular);
    --el-input-border: var(--el-border);
    --el-input-hover-border: var(--el-border-color-hover);
    --el-input-focus-border: var(--el-color-primary);
    --el-input-transparent-border: 0 0 0 1px transparent inset;
    --el-input-border-color: var(--el-border-color);
    --el-input-border-radius: var(--el-border-radius-base);
    --el-input-bg-color: var(--el-fill-color-blank);
    --el-input-icon-color: var(--el-text-color-placeholder);
    --el-input-placeholder-color: var(--el-text-color-placeholder);
    --el-input-hover-border-color: var(--el-border-color-hover);
    --el-input-clear-hover-color: var(--el-text-color-secondary);
    --el-input-focus-border-color: var(--el-color-primary);
    --el-input-width: 100%;
    --el-input-height: var(--el-component-size);
    box-sizing: border-box;
    display: inline-flex;
    font-size: var(--el-font-size-base);
    line-height: var(--el-input-height);
    position: relative;
    vertical-align: middle;
    width: var(--el-input-width)
}

.el-input::-webkit-scrollbar {
    width: 6px;
    z-index: 11
}

.el-input::-webkit-scrollbar:horizontal {
    height: 6px
}

.el-input::-webkit-scrollbar-thumb {
    background: var(--el-text-color-disabled);
    border-radius: 5px;
    width: 6px
}

.el-input::-webkit-scrollbar-corner,.el-input::-webkit-scrollbar-track {
    background: var(--el-fill-color-blank)
}

.el-input::-webkit-scrollbar-track-piece {
    background: var(--el-fill-color-blank);
    width: 6px
}

.el-input .el-input__clear,.el-input .el-input__password {
    color: var(--el-input-icon-color);
    cursor: pointer;
    font-size: 14px
}

.el-input .el-input__clear:hover,.el-input .el-input__password:hover {
    color: var(--el-input-clear-hover-color)
}

.el-input .el-input__count {
    align-items: center;
    color: var(--el-color-info);
    display: inline-flex;
    font-size: 12px;
    height: 100%
}

.el-input .el-input__count .el-input__count-inner {
    background: var(--el-fill-color-blank);
    display: inline-block;
    line-height: normal;
    padding-left: 8px
}

.el-input__wrapper {
    align-items: center;
    background-color: var(--el-input-bg-color,var(--el-fill-color-blank));
    background-image: none;
    border-radius: var(--el-input-border-radius,var(--el-border-radius-base));
    box-shadow: 0 0 0 1px var(--el-input-border-color,var(--el-border-color)) inset;
    cursor: text;
    display: inline-flex;
    flex-grow: 1;
    justify-content: center;
    padding: 1px 11px;
    transform: translateZ(0);
    transition: var(--el-transition-box-shadow)
}

.el-input__wrapper:hover {
    box-shadow: 0 0 0 1px var(--el-input-hover-border-color) inset
}

.el-input__wrapper.is-focus {
    box-shadow: 0 0 0 1px var(--el-input-focus-border-color) inset
}

.el-input__inner {
    --el-input-inner-height: calc(var(--el-input-height, 32px) - 2px);
    -webkit-appearance: none;
    background: none;
    border: none;
    box-sizing: border-box;
    color: var(--el-input-text-color,var(--el-text-color-regular));
    flex-grow: 1;
    font-size: inherit;
    height: var(--el-input-inner-height);
    line-height: var(--el-input-inner-height);
    outline: none;
    padding: 0;
    width: 100%
}

.el-input__inner:focus {
    outline: none
}

.el-input__inner::placeholder {
    color: var(--el-input-placeholder-color,var(--el-text-color-placeholder))
}

.el-input__inner[type=password]::-ms-reveal {
    display: none
}

.el-input__inner[type=number] {
    line-height: 1
}

.el-input__prefix {
    color: var(--el-input-icon-color,var(--el-text-color-placeholder));
    display: inline-flex;
    flex-shrink: 0;
    flex-wrap: nowrap;
    height: 100%;
    pointer-events: none;
    text-align: center;
    transition: all var(--el-transition-duration);
    white-space: nowrap
}

.el-input__prefix-inner {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    pointer-events: all
}

.el-input__prefix-inner>:last-child {
    margin-right: 8px
}

.el-input__prefix-inner>:first-child,.el-input__prefix-inner>:first-child.el-input__icon {
    margin-left: 0
}

.el-input__suffix {
    color: var(--el-input-icon-color,var(--el-text-color-placeholder));
    display: inline-flex;
    flex-shrink: 0;
    flex-wrap: nowrap;
    height: 100%;
    pointer-events: none;
    text-align: center;
    transition: all var(--el-transition-duration);
    white-space: nowrap
}

.el-input__suffix-inner {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    pointer-events: all
}

.el-input__suffix-inner>:first-child {
    margin-left: 8px
}

.el-input .el-input__icon {
    align-items: center;
    display: flex;
    height: inherit;
    justify-content: center;
    line-height: inherit;
    margin-left: 8px;
    transition: all var(--el-transition-duration)
}

.el-input__validateIcon {
    pointer-events: none
}

.el-input.is-active .el-input__wrapper {
    box-shadow: 0 0 0 1px var(--el-input-focus-color, ) inset
}

.el-input.is-disabled {
    cursor: not-allowed
}

.el-input.is-disabled .el-input__wrapper {
    background-color: var(--el-disabled-bg-color);
    box-shadow: 0 0 0 1px var(--el-disabled-border-color) inset
}

.el-input.is-disabled .el-input__inner {
    color: var(--el-disabled-text-color);
    -webkit-text-fill-color: var(--el-disabled-text-color);
    cursor: not-allowed
}

.el-input.is-disabled .el-input__inner::placeholder {
    color: var(--el-text-color-placeholder)
}

.el-input.is-disabled .el-input__icon {
    cursor: not-allowed
}

.el-input.is-exceed .el-input__wrapper {
    box-shadow: 0 0 0 1px var(--el-color-danger) inset
}

.el-input.is-exceed .el-input__suffix .el-input__count {
    color: var(--el-color-danger)
}

.el-input--large {
    --el-input-height: var(--el-component-size-large);
    font-size: 14px
}

.el-input--large .el-input__wrapper {
    padding: 1px 15px
}

.el-input--large .el-input__inner {
    --el-input-inner-height: calc(var(--el-input-height, 40px) - 2px)
}

.el-input--small {
    --el-input-height: var(--el-component-size-small);
    font-size: 12px
}

.el-input--small .el-input__wrapper {
    padding: 1px 7px
}

.el-input--small .el-input__inner {
    --el-input-inner-height: calc(var(--el-input-height, 24px) - 2px)
}

.el-input-group {
    align-items: stretch;
    display: inline-flex;
    width: 100%
}

.el-input-group__append,.el-input-group__prepend {
    align-items: center;
    background-color: var(--el-fill-color-light);
    border-radius: var(--el-input-border-radius);
    color: var(--el-color-info);
    display: inline-flex;
    justify-content: center;
    min-height: 100%;
    padding: 0 20px;
    position: relative;
    white-space: nowrap
}

.el-input-group__append:focus,.el-input-group__prepend:focus {
    outline: none
}

.el-input-group__append .el-button,.el-input-group__append .el-select,.el-input-group__prepend .el-button,.el-input-group__prepend .el-select {
    display: inline-block;
    margin: 0 -20px
}

.el-input-group__append button.el-button,.el-input-group__append button.el-button:hover,.el-input-group__append div.el-select .el-select__wrapper,.el-input-group__append div.el-select:hover .el-select__wrapper,.el-input-group__prepend button.el-button,.el-input-group__prepend button.el-button:hover,.el-input-group__prepend div.el-select .el-select__wrapper,.el-input-group__prepend div.el-select:hover .el-select__wrapper {
    background-color: transparent;
    border-color: transparent;
    color: inherit
}

.el-input-group__append .el-button,.el-input-group__append .el-input,.el-input-group__prepend .el-button,.el-input-group__prepend .el-input {
    font-size: inherit
}

.el-input-group__prepend {
    border-bottom-right-radius: 0;
    border-right: 0;
    border-top-right-radius: 0;
    box-shadow: 1px 0 0 0 var(--el-input-border-color) inset,0 1px 0 0 var(--el-input-border-color) inset,0 -1px 0 0 var(--el-input-border-color) inset
}

.el-input-group__append {
    border-bottom-left-radius: 0;
    border-left: 0;
    border-top-left-radius: 0;
    box-shadow: 0 1px 0 0 var(--el-input-border-color) inset,0 -1px 0 0 var(--el-input-border-color) inset,-1px 0 0 0 var(--el-input-border-color) inset
}

.el-input-group--prepend>.el-input__wrapper {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.el-input-group--prepend .el-input-group__prepend .el-select .el-select__wrapper {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    box-shadow: 1px 0 0 0 var(--el-input-border-color) inset,0 1px 0 0 var(--el-input-border-color) inset,0 -1px 0 0 var(--el-input-border-color) inset
}

.el-input-group--append>.el-input__wrapper {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.el-input-group--append .el-input-group__append .el-select .el-select__wrapper {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    box-shadow: 0 1px 0 0 var(--el-input-border-color) inset,0 -1px 0 0 var(--el-input-border-color) inset,-1px 0 0 0 var(--el-input-border-color) inset
}

.el-input-hidden {
    display: none!important
}

.el-tag {
    --el-tag-font-size: 12px;
    --el-tag-border-radius: 4px;
    --el-tag-border-radius-rounded: 9999px;
    --el-tag-bg-color: var(--el-color-primary-light-9);
    --el-tag-border-color: var(--el-color-primary-light-8);
    --el-tag-hover-color: var(--el-color-primary);
    align-items: center;
    background-color: var(--el-tag-bg-color);
    border-color: var(--el-tag-border-color);
    border-radius: var(--el-tag-border-radius);
    border-style: solid;
    border-width: 1px;
    box-sizing: border-box;
    color: var(--el-tag-text-color);
    display: inline-flex;
    font-size: var(--el-tag-font-size);
    height: 24px;
    justify-content: center;
    line-height: 1;
    padding: 0 9px;
    vertical-align: middle;
    white-space: nowrap;
    --el-icon-size: 14px
}

.el-tag.el-tag--primary {
    --el-tag-bg-color: var(--el-color-primary-light-9);
    --el-tag-border-color: var(--el-color-primary-light-8);
    --el-tag-hover-color: var(--el-color-primary)
}

.el-tag.el-tag--success {
    --el-tag-bg-color: var(--el-color-success-light-9);
    --el-tag-border-color: var(--el-color-success-light-8);
    --el-tag-hover-color: var(--el-color-success)
}

.el-tag.el-tag--warning {
    --el-tag-bg-color: var(--el-color-warning-light-9);
    --el-tag-border-color: var(--el-color-warning-light-8);
    --el-tag-hover-color: var(--el-color-warning)
}

.el-tag.el-tag--danger {
    --el-tag-bg-color: var(--el-color-danger-light-9);
    --el-tag-border-color: var(--el-color-danger-light-8);
    --el-tag-hover-color: var(--el-color-danger)
}

.el-tag.el-tag--error {
    --el-tag-bg-color: var(--el-color-error-light-9);
    --el-tag-border-color: var(--el-color-error-light-8);
    --el-tag-hover-color: var(--el-color-error)
}

.el-tag.el-tag--info {
    --el-tag-bg-color: var(--el-color-info-light-9);
    --el-tag-border-color: var(--el-color-info-light-8);
    --el-tag-hover-color: var(--el-color-info)
}

.el-tag.el-tag--primary {
    --el-tag-text-color: var(--el-color-primary)
}

.el-tag.el-tag--success {
    --el-tag-text-color: var(--el-color-success)
}

.el-tag.el-tag--warning {
    --el-tag-text-color: var(--el-color-warning)
}

.el-tag.el-tag--danger {
    --el-tag-text-color: var(--el-color-danger)
}

.el-tag.el-tag--error {
    --el-tag-text-color: var(--el-color-error)
}

.el-tag.el-tag--info {
    --el-tag-text-color: var(--el-color-info)
}

.el-tag.is-hit {
    border-color: var(--el-color-primary)
}

.el-tag.is-round {
    border-radius: var(--el-tag-border-radius-rounded)
}

.el-tag .el-tag__close {
    color: var(--el-tag-text-color);
    flex-shrink: 0
}

.el-tag .el-tag__close:hover {
    background-color: var(--el-tag-hover-color);
    color: var(--el-color-white)
}

.el-tag .el-icon {
    border-radius: 50%;
    cursor: pointer;
    font-size: calc(var(--el-icon-size) - 2px);
    height: var(--el-icon-size);
    width: var(--el-icon-size)
}

.el-tag .el-tag__close {
    margin-left: 6px
}

.el-tag--dark {
    --el-tag-bg-color: var(--el-color-primary);
    --el-tag-border-color: var(--el-color-primary);
    --el-tag-hover-color: var(--el-color-primary-light-3);
    --el-tag-text-color: var(--el-color-white)
}

.el-tag--dark.el-tag--primary {
    --el-tag-bg-color: var(--el-color-primary);
    --el-tag-border-color: var(--el-color-primary);
    --el-tag-hover-color: var(--el-color-primary-light-3)
}

.el-tag--dark.el-tag--success {
    --el-tag-bg-color: var(--el-color-success);
    --el-tag-border-color: var(--el-color-success);
    --el-tag-hover-color: var(--el-color-success-light-3)
}

.el-tag--dark.el-tag--warning {
    --el-tag-bg-color: var(--el-color-warning);
    --el-tag-border-color: var(--el-color-warning);
    --el-tag-hover-color: var(--el-color-warning-light-3)
}

.el-tag--dark.el-tag--danger {
    --el-tag-bg-color: var(--el-color-danger);
    --el-tag-border-color: var(--el-color-danger);
    --el-tag-hover-color: var(--el-color-danger-light-3)
}

.el-tag--dark.el-tag--error {
    --el-tag-bg-color: var(--el-color-error);
    --el-tag-border-color: var(--el-color-error);
    --el-tag-hover-color: var(--el-color-error-light-3)
}

.el-tag--dark.el-tag--info {
    --el-tag-bg-color: var(--el-color-info);
    --el-tag-border-color: var(--el-color-info);
    --el-tag-hover-color: var(--el-color-info-light-3)
}

.el-tag--dark.el-tag--danger,.el-tag--dark.el-tag--error,.el-tag--dark.el-tag--info,.el-tag--dark.el-tag--primary,.el-tag--dark.el-tag--success,.el-tag--dark.el-tag--warning {
    --el-tag-text-color: var(--el-color-white)
}

.el-tag--plain {
    --el-tag-border-color: var(--el-color-primary-light-5);
    --el-tag-hover-color: var(--el-color-primary);
    --el-tag-bg-color: var(--el-fill-color-blank)
}

.el-tag--plain.el-tag--primary {
    --el-tag-bg-color: var(--el-fill-color-blank);
    --el-tag-border-color: var(--el-color-primary-light-5);
    --el-tag-hover-color: var(--el-color-primary)
}

.el-tag--plain.el-tag--success {
    --el-tag-bg-color: var(--el-fill-color-blank);
    --el-tag-border-color: var(--el-color-success-light-5);
    --el-tag-hover-color: var(--el-color-success)
}

.el-tag--plain.el-tag--warning {
    --el-tag-bg-color: var(--el-fill-color-blank);
    --el-tag-border-color: var(--el-color-warning-light-5);
    --el-tag-hover-color: var(--el-color-warning)
}

.el-tag--plain.el-tag--danger {
    --el-tag-bg-color: var(--el-fill-color-blank);
    --el-tag-border-color: var(--el-color-danger-light-5);
    --el-tag-hover-color: var(--el-color-danger)
}

.el-tag--plain.el-tag--error {
    --el-tag-bg-color: var(--el-fill-color-blank);
    --el-tag-border-color: var(--el-color-error-light-5);
    --el-tag-hover-color: var(--el-color-error)
}

.el-tag--plain.el-tag--info {
    --el-tag-bg-color: var(--el-fill-color-blank);
    --el-tag-border-color: var(--el-color-info-light-5);
    --el-tag-hover-color: var(--el-color-info)
}

.el-tag.is-closable {
    padding-right: 5px
}

.el-tag--large {
    height: 32px;
    padding: 0 11px;
    --el-icon-size: 16px
}

.el-tag--large .el-tag__close {
    margin-left: 8px
}

.el-tag--large.is-closable {
    padding-right: 7px
}

.el-tag--small {
    height: 20px;
    padding: 0 7px;
    --el-icon-size: 12px
}

.el-tag--small .el-tag__close {
    margin-left: 4px
}

.el-tag--small.is-closable {
    padding-right: 3px
}

.el-tag--small .el-icon-close {
    transform: scale(.8)
}

.el-tag.el-tag--primary.is-hit {
    border-color: var(--el-color-primary)
}

.el-tag.el-tag--success.is-hit {
    border-color: var(--el-color-success)
}

.el-tag.el-tag--warning.is-hit {
    border-color: var(--el-color-warning)
}

.el-tag.el-tag--danger.is-hit {
    border-color: var(--el-color-danger)
}

.el-tag.el-tag--error.is-hit {
    border-color: var(--el-color-error)
}

.el-tag.el-tag--info.is-hit {
    border-color: var(--el-color-info)
}

.el-select-dropdown.is-multiple .el-select-dropdown__item.is-selected:after {
    background-color: var(--el-color-primary);
    background-position: 50%;
    background-repeat: no-repeat;
    border-right: none;
    border-top: none;
    content: "";
    height: 12px;
    -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    mask: url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    mask-size: 100% 100%;
    -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    -webkit-mask-size: 100% 100%;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px
}

.el-scrollbar {
    --el-scrollbar-opacity: .3;
    --el-scrollbar-bg-color: var(--el-text-color-secondary);
    --el-scrollbar-hover-opacity: .5;
    --el-scrollbar-hover-bg-color: var(--el-text-color-secondary);
    height: 100%;
    overflow: hidden;
    position: relative
}

.el-scrollbar__wrap {
    height: 100%;
    overflow: auto
}

.el-scrollbar__wrap--hidden-default {
    scrollbar-width: none
}

.el-scrollbar__wrap--hidden-default::-webkit-scrollbar {
    display: none
}

.el-scrollbar__thumb {
    background-color: var(--el-scrollbar-bg-color,var(--el-text-color-secondary));
    border-radius: inherit;
    cursor: pointer;
    display: block;
    height: 0;
    opacity: var(--el-scrollbar-opacity,.3);
    position: relative;
    transition: var(--el-transition-duration) background-color;
    width: 0
}

.el-scrollbar__thumb:hover {
    background-color: var(--el-scrollbar-hover-bg-color,var(--el-text-color-secondary));
    opacity: var(--el-scrollbar-hover-opacity,.5)
}

.el-scrollbar__bar {
    border-radius: 4px;
    bottom: 2px;
    position: absolute;
    right: 2px;
    z-index: 1
}

.el-scrollbar__bar.is-vertical {
    top: 2px;
    width: 6px
}

.el-scrollbar__bar.is-vertical>div {
    width: 100%
}

.el-scrollbar__bar.is-horizontal {
    height: 6px;
    left: 2px
}

.el-scrollbar__bar.is-horizontal>div {
    height: 100%
}

.el-scrollbar-fade-enter-active {
    transition: opacity .34s ease-out
}

.el-scrollbar-fade-leave-active {
    transition: opacity .12s ease-out
}

.el-scrollbar-fade-enter-from,.el-scrollbar-fade-leave-active {
    opacity: 0
}

.el-popper {
    --el-popper-border-radius: var(--el-popover-border-radius,4px);
    border-radius: var(--el-popper-border-radius);
    font-size: 12px;
    line-height: 20px;
    min-width: 10px;
    overflow-wrap: break-word;
    padding: 5px 11px;
    position: absolute;
    visibility: visible;
    z-index: 2000
}

.el-popper.is-dark {
    background: var(--el-text-color-primary);
    border: 1px solid var(--el-text-color-primary);
    color: var(--el-bg-color)
}

.el-popper.is-dark .el-popper__arrow:before {
    background: var(--el-text-color-primary);
    border: 1px solid var(--el-text-color-primary);
    right: 0
}

.el-popper.is-light {
    background: var(--el-bg-color-overlay);
    border: 1px solid var(--el-border-color-light)
}

.el-popper.is-light .el-popper__arrow:before {
    background: var(--el-bg-color-overlay);
    border: 1px solid var(--el-border-color-light);
    right: 0
}

.el-popper.is-pure {
    padding: 0
}

.el-popper__arrow {
    height: 10px;
    position: absolute;
    width: 10px;
    z-index: -1
}

.el-popper__arrow:before {
    background: var(--el-text-color-primary);
    box-sizing: border-box;
    content: " ";
    height: 10px;
    position: absolute;
    transform: rotate(45deg);
    width: 10px;
    z-index: -1
}

.el-popper[data-popper-placement^=top]>.el-popper__arrow {
    bottom: -5px
}

.el-popper[data-popper-placement^=top]>.el-popper__arrow:before {
    border-bottom-right-radius: 2px
}

.el-popper[data-popper-placement^=bottom]>.el-popper__arrow {
    top: -5px
}

.el-popper[data-popper-placement^=bottom]>.el-popper__arrow:before {
    border-top-left-radius: 2px
}

.el-popper[data-popper-placement^=left]>.el-popper__arrow {
    right: -5px
}

.el-popper[data-popper-placement^=left]>.el-popper__arrow:before {
    border-top-right-radius: 2px
}

.el-popper[data-popper-placement^=right]>.el-popper__arrow {
    left: -5px
}

.el-popper[data-popper-placement^=right]>.el-popper__arrow:before {
    border-bottom-left-radius: 2px
}

.el-popper[data-popper-placement^=top] .el-popper__arrow:before {
    border-left-color: transparent!important;
    border-top-color: transparent!important
}

.el-popper[data-popper-placement^=bottom] .el-popper__arrow:before {
    border-bottom-color: transparent!important;
    border-right-color: transparent!important
}

.el-popper[data-popper-placement^=left] .el-popper__arrow:before {
    border-bottom-color: transparent!important;
    border-left-color: transparent!important
}

.el-popper[data-popper-placement^=right] .el-popper__arrow:before {
    border-right-color: transparent!important;
    border-top-color: transparent!important
}

.el-select-dropdown {
    border-radius: var(--el-border-radius-base);
    box-sizing: border-box;
    z-index: calc(var(--el-index-top) + 1)
}

.el-select-dropdown .el-scrollbar.is-empty .el-select-dropdown__list {
    padding: 0
}

.el-select-dropdown__empty,.el-select-dropdown__loading {
    color: var(--el-text-color-secondary);
    font-size: var(--el-select-font-size);
    margin: 0;
    padding: 10px 0;
    text-align: center
}

.el-select-dropdown__wrap {
    max-height: 274px
}

.el-select-dropdown__list {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 6px 0
}

.el-select-dropdown__list.el-vl__window {
    margin: 6px 0;
    padding: 0
}

.el-select-dropdown__header {
    border-bottom: 1px solid var(--el-border-color-light);
    padding: 10px
}

.el-select-dropdown__footer {
    border-top: 1px solid var(--el-border-color-light);
    padding: 10px
}

.el-select-dropdown__item {
    box-sizing: border-box;
    color: var(--el-text-color-regular);
    cursor: pointer;
    font-size: var(--el-font-size-base);
    height: 34px;
    line-height: 34px;
    overflow: hidden;
    padding: 0 32px 0 20px;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap
}

.el-select-dropdown__item.is-hovering {
    background-color: var(--el-fill-color-light)
}

.el-select-dropdown__item.is-selected {
    color: var(--el-color-primary);
    font-weight: 700
}

.el-select-dropdown__item.is-disabled {
    background-color: unset;
    color: var(--el-text-color-placeholder);
    cursor: not-allowed
}

.el-select-dropdown.is-multiple .el-select-dropdown__item.is-selected:after {
    background-color: var(--el-color-primary);
    background-position: 50%;
    background-repeat: no-repeat;
    border-right: none;
    border-top: none;
    content: "";
    height: 12px;
    -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    mask: url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    mask-size: 100% 100%;
    -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    -webkit-mask-size: 100% 100%;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px
}

.el-select-dropdown.is-multiple .el-select-dropdown__item.is-disabled:after {
    background-color: var(--el-text-color-placeholder)
}

.el-select-group {
    margin: 0;
    padding: 0
}

.el-select-group__wrap {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative
}

.el-select-group__title {
    color: var(--el-color-info);
    font-size: 12px;
    line-height: 34px;
    padding-left: 20px
}

.el-select-group .el-select-dropdown__item {
    padding-left: 20px
}

.el-select {
    --el-select-border-color-hover: var(--el-border-color-hover);
    --el-select-disabled-color: var(--el-disabled-text-color);
    --el-select-disabled-border: var(--el-disabled-border-color);
    --el-select-font-size: var(--el-font-size-base);
    --el-select-close-hover-color: var(--el-text-color-secondary);
    --el-select-input-color: var(--el-text-color-placeholder);
    --el-select-multiple-input-color: var(--el-text-color-regular);
    --el-select-input-focus-border-color: var(--el-color-primary);
    --el-select-input-font-size: 14px;
    --el-select-width: 100%;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    width: var(--el-select-width)
}

.el-select__wrapper {
    align-items: center;
    background-color: var(--el-fill-color-blank);
    border-radius: var(--el-border-radius-base);
    box-shadow: 0 0 0 1px var(--el-border-color) inset;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    gap: 6px;
    line-height: 24px;
    min-height: 32px;
    padding: 4px 12px;
    position: relative;
    text-align: left;
    transition: var(--el-transition-duration)
}

.el-select__wrapper:hover {
    box-shadow: 0 0 0 1px var(--el-text-color) inset
}

.el-select__wrapper.is-filterable {
    cursor: text
}

.el-select__wrapper.is-focused {
    box-shadow: 0 0 0 1px var(--el-color-primary) inset
}

.el-select__wrapper.is-hovering:not(.is-focused) {
    box-shadow: 0 0 0 1px var(--el-border-color-hover) inset
}

.el-select__wrapper.is-disabled {
    background-color: var(--el-fill-color-light);
    box-shadow: 0 0 0 1px var(--el-select-disabled-border) inset;
    color: var(--el-text-color-placeholder);
    cursor: not-allowed
}

.el-select__wrapper.is-disabled:hover {
    box-shadow: 0 0 0 1px var(--el-select-disabled-border) inset
}

.el-select__wrapper.is-disabled.is-focus {
    box-shadow: 0 0 0 1px var(--el-input-focus-border-color) inset
}

.el-select__wrapper.is-disabled .el-select__selected-item {
    color: var(--el-select-disabled-color)
}

.el-select__wrapper.is-disabled .el-select__caret,.el-select__wrapper.is-disabled .el-tag {
    cursor: not-allowed
}

.el-select__prefix,.el-select__suffix {
    align-items: center;
    color: var(--el-input-icon-color,var(--el-text-color-placeholder));
    display: flex;
    flex-shrink: 0;
    gap: 6px
}

.el-select__caret {
    color: var(--el-select-input-color);
    cursor: pointer;
    font-size: var(--el-select-input-font-size);
    transform: rotate(0);
    transition: var(--el-transition-duration)
}

.el-select__caret.is-reverse {
    transform: rotate(180deg)
}

.el-select__selection {
    align-items: center;
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    gap: 6px;
    min-width: 0;
    position: relative
}

.el-select__selection.is-near {
    margin-left: -8px
}

.el-select__selection .el-tag {
    border-color: transparent;
    cursor: pointer
}

.el-select__selection .el-tag .el-tag__content {
    min-width: 0
}

.el-select__selected-item {
    display: flex;
    flex-wrap: wrap;
    -webkit-user-select: none;
    user-select: none
}

.el-select__tags-text {
    line-height: normal
}

.el-select__placeholder,.el-select__tags-text {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.el-select__placeholder {
    color: var(--el-input-text-color,var(--el-text-color-regular));
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%
}

.el-select__placeholder.is-transparent {
    color: var(--el-text-color-placeholder);
    -webkit-user-select: none;
    user-select: none
}

.el-select__popper.el-popper {
    background: var(--el-bg-color-overlay);
    border: 1px solid var(--el-border-color-light);
    box-shadow: var(--el-box-shadow-light)
}

.el-select__popper.el-popper .el-popper__arrow:before {
    border: 1px solid var(--el-border-color-light)
}

.el-select__popper.el-popper[data-popper-placement^=top] .el-popper__arrow:before {
    border-left-color: transparent;
    border-top-color: transparent
}

.el-select__popper.el-popper[data-popper-placement^=bottom] .el-popper__arrow:before {
    border-bottom-color: transparent;
    border-right-color: transparent
}

.el-select__popper.el-popper[data-popper-placement^=left] .el-popper__arrow:before {
    border-bottom-color: transparent;
    border-left-color: transparent
}

.el-select__popper.el-popper[data-popper-placement^=right] .el-popper__arrow:before {
    border-right-color: transparent;
    border-top-color: transparent
}

.el-select__input-wrapper {
    max-width: 100%
}

.el-select__input-wrapper.is-hidden {
    opacity: 0;
    position: absolute
}

.el-select__input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: none;
    color: var(--el-select-multiple-input-color);
    font-family: inherit;
    font-size: inherit;
    height: 24px;
    max-width: 100%;
    outline: none;
    padding: 0
}

.el-select__input.is-disabled {
    cursor: not-allowed
}

.el-select__input-calculator {
    left: 0;
    max-width: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    visibility: hidden;
    white-space: pre
}

.el-select--large .el-select__wrapper {
    font-size: 14px;
    gap: 6px;
    line-height: 24px;
    min-height: 40px;
    padding: 8px 16px
}

.el-select--large .el-select__selection {
    gap: 6px
}

.el-select--large .el-select__selection.is-near {
    margin-left: -8px
}

.el-select--large .el-select__prefix,.el-select--large .el-select__suffix {
    gap: 6px
}

.el-select--large .el-select__input {
    height: 24px
}

.el-select--small .el-select__wrapper {
    font-size: 12px;
    gap: 4px;
    line-height: 20px;
    min-height: 24px;
    padding: 2px 8px
}

.el-select--small .el-select__selection {
    gap: 4px
}

.el-select--small .el-select__selection.is-near {
    margin-left: -6px
}

.el-select--small .el-select__prefix,.el-select--small .el-select__suffix {
    gap: 4px
}

.el-select--small .el-select__input {
    height: 20px
}

.content {
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

 .btn-prev, .btn-next {
    border-radius: 4px!important
}

 .el-pagination__button {
    border-radius: 8px!important
}

 .el-pager li.is-active {
    color: #7532ff!important;
    background-color: #fff!important;
    border: 1px solid #7532ff!important;
    border-radius: 4px!important
}

.copy {
    box-shadow: 6px 4px 5.1px #0000001a
}

@media only screen and (max-width: 480px) {
    .share {
        flex-direction:column;
        justify-content: flex-start
    }

    .copy {
        top: 5px;
        right: 10px
    }

    .float-right {
        margin-top: 5px
    }
}

@media only screen and (min-width: 320px) and (max-width: 360px) {
    .card {
        height:710px
    }

    .title {
        width: 275px
    }

    .content {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 275px!important;
        max-height: 95px
    }
}

@media only screen and (min-width: 361px) and (max-width: 768px) {
    .card {
        width:100%!important;
        height: 710px
    }

    .card-img,.card-img img {
        width: 100%
    }

    .title {
        width: 275px!important
    }

    .content {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
        max-height: 95px
    }
}

@media only screen and (min-width: 1280px) {
    .card {
        width:100%;
        flex-direction: row
    }

    .card-img {
        width: 550px
    }
}

@media only screen and (min-width: 768px) and (max-width: 1279px) {
    .card {
        width:100%!important;
        height: 910px
    }

    .card-img,.card-img img,.title {
        width: 100%
    }

    .content {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
        max-height: 95px
    }
}

@media only screen and (max-width: 1280px) {
    .secOfFndsImage {
        -o-object-position:-360px 0;
        object-position: -360px 0
    }
}

@media only screen and (max-width: 768px) {
    .secOfFnds {
        border-radius:0 0 20px 20px
    }

    .secOfFndsImage {
        -o-object-position: -800px 0;
        object-position: -800px 0;
        border-radius: 0 0 20px 20px
    }
}

@media only screen and (max-width: 480px) {
    .secOfFndsImage {
        -o-object-position:-1000px 0;
        object-position: -1000px 0
    }
}

@media only screen and (max-width: 450px) {
    .secOfFndsImage {
        -o-object-position:-1080px 0;
        object-position: -1080px 0
    }
}

@keyframes fade-in-border-f6858dab {
    0% {
        color: var(--white-default)
    }

    to {
        box-shadow: inset 0 0 1px .5px #7532ffcc,inset 0 .5px 1px 1px #7532ffcc;
        color: var(--brand-colors-500-default)
    }
}

@keyframes fade-out-border-f6858dab {
    0% {
        box-shadow: inset 0 0 1px .5px #7532ffcc,inset 0 .5px 1px 1px #7532ffcc;
        color: var(--brand-colors-500-default)
    }

    to {
        color: var(--black-default)
    }
}

@keyframes fade-in-f6858dab {
    0% {
        background-color: var(--white-default);
        color: var(--brand-colors-500-default)
    }

    to {
        background-color: var(--brand-colors-500-default);
        color: var(--white-default)
    }
}

@keyframes fade-out-f6858dab {
    0% {
        background-color: var(--brand-colors-500-default);
        color: var(--white-default)
    }

    to {
        background-color: var(--white-default);
        color: var(--brand-colors-500-default)
    }
}

.buttonBorder {
    box-shadow: inset 0 0 1px .5px #7532ffcc,inset 0 .5px 1px 1px #7532ffcc
}

.animation-btn_two {
    animation: fade-in-f6858dab 1s linear
}

.animation-btn_two:hover {
    animation: fade-out-f6858dab 1s linear;
    background-color: var(--white-default);
    color: var(--brand-colors-500-default)
}

@media only screen and (max-width: 480px) {
    .read {
        flex-direction:column;
        justify-content: flex-start
    }

    .read p {
        margin-bottom: 20px
    }
}

 .btn-prev, .btn-next {
    border-radius: 4px!important
}

 .el-pagination__button {
    border-radius: 8px!important
}

 .el-pager li.is-active {
    color: #7532ff!important;
    background-color: #fff!important;
    border: 1px solid #7532ff!important;
    border-radius: 4px!important
}

 .btn-prev, .btn-next {
    border-radius: 4px!important
}

 .el-pagination__button {
    border-radius: 8px!important
}

 .el-pager li.is-active {
    color: #7532ff!important;
    background-color: #fff!important;
    border: 1px solid #7532ff!important;
    border-radius: 4px!important
}

@media only screen and (max-width: 480px) {
    .read {
        flex-direction:column;
        justify-content: flex-start
    }

    .read p {
        margin-bottom: 20px
    }
}

@media only screen and (max-width: 320px) {
    .banner p {
        width:310px
    }
}

 .btn-prev, .btn-next {
    border-radius: 4px!important
}

 .el-pagination__button {
    border-radius: 8px!important
}

 .el-pager li.is-active {
    color: #7532ff!important;
    background-color: #fff!important;
    border: 1px solid #7532FF!important;
    border-radius: 4px!important
}

@media only screen and (max-width: 480px) {
    .read {
        flex-direction:column;
        justify-content: flex-start
    }

    .read p {
        margin-bottom: 20px
    }
}

@media only screen and (max-width: 320px) {
    .banner p {
        width:300px
    }
}

.box.hoverBox .img {
    animation: transform-a737a7c4 1s forwards
}

@keyframes transform-a737a7c4 {
    0% {
        transform: scale(1)
    }

    to {
        transform: scale(1.2)
    }
}

.imageZoomInAndZoomOut {
    transition: transform 1s ease
}

.imageZoomInAndZoomOut:hover {
    transform: translate(-2%) scale(1.1)
}

@media only screen and (max-width: 600px) {
    .imagePosition {
        -o-object-position:-1000px 0;
        object-position: -1000px 0
    }
}

@media only screen and (min-width: 768px) {
    .beneFist:nth-child(1) {
        background:url(/assets/flexiblesbg-CWvQyLY6.jpg) no-repeat center;
        background-size: cover
    }

    .beneFist:nth-child(2) {
        background: url(/assets/easybg-BfsfxTIV.jpg) no-repeat center;
        background-size: cover
    }
}

img {
    -o-object-position: 85%;
    object-position: 85%
}

p {
    opacity: 0;
    animation: opacity-1265bb9b 1.5s forwards;
    animation-delay: 1.5s
}

@keyframes opacity-1265bb9b {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.imageZoomInAndZoomOut {
    transition: transform 1s ease
}

.imageZoomInAndZoomOut:hover {
    transform: translate(-5%) scale(1.1)
}

@media only screen and (max-width: 500px) {
    .imageobject {
        -o-object-position:-1060px 0;
        object-position: -1060px 0
    }
}

@media only screen and (max-width: 768px) {
    .content {
        top:0
    }
}

.segreGated{
    display: flex;
    flex-direction: column;
    gap: 100px;
    justify-content: space-between
}

.segreGated .segreGated_item{
    display: flex;
    gap: 38px;
    align-items: flex-start;
    flex-wrap: wrap
}

.segreGated .segreGated_item .item_left{
    display: flex
}

.segreGated .segreGated_item .item_right{
    flex: 1;
    text-align: left
}

@media only screen and (max-width: 768px) {
    .segreGated{
        gap:60px
    }

    .segreGated_item{
        flex-direction: column;
        align-items: center
    }
}

@media only screen and (max-width: 480px) {
    .segreGated_item{
        align-items:flex-start
    }

    .segreGated_item .item_left .item_left_text{
        width: 100%!important;
        flex: 1
    }
}

@media only screen and (min-width: 768px) {
    .item_left_text{
        width:200px
    }
}

.spacing {
    letter-spacing: -.48px
}

@media only screen and (max-width: 768px) {
    .spacingtitle {
        letter-spacing:-.72px
    }
}

.waterfall-item {
    opacity: 0
}

.waterfall-item-animate {
    animation: opacity-942cdb18 2s forwards
}

.waterfall-item-animate:nth-child(2) {
    animation-delay: 2s
}

.waterfall-item-animate:nth-child(3) {
    animation-delay: 3s
}

.waterfall-item-animate:nth-child(4) {
    animation-delay: 5s
}

.waterfall-item-animate:nth-child(5) {
    animation-delay: 6s
}

.waterfall-item-animate:nth-child(6) {
    animation-delay: 4s
}

@keyframes opacity-942cdb18 {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.waterfall-container {
    position: relative;
    width: 100%;
    box-sizing: border-box
}

.waterfall-item {
    position: absolute;
    width: 384px;
    box-sizing: border-box;
    box-shadow: inset 0 -1px 1px #54c5f133,inset 0 1px 2px #ffffffb3;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px)
}

@media only screen and (max-width: 768px) {
    .waterfall-item {
        width:100%;
        padding: 17px 21px;
        position: static;
        margin-bottom: 25px;
        height: auto!important
    }

    .waterfall-item .waterfall-item-conste {
        flex-direction: row;
        align-items: center
    }

    .waterfall-item .waterfall-item-text {
        height: 100%;
        font-size: 20px
    }

    .waterfall-item .waterfall-item-textTwo {
        font-size: 16px!important;
        font-weight: 400!important
    }
}

.customGradient {
    background: linear-gradient(187deg,#111114 2.3%,#11111400 80.63%)
}

@media only screen and (max-width: 768px) {
    .boxHeight {
        height: 100%;
    }

    .imgHigeth-erTo {
        top: 90px
    }

    .imgHigeth-erTo .imgHigeth-erTo-text {
        font-size: 36px;
        font-style: normal;
        font-weight: 600;
        line-height: 120%;
        letter-spacing: -.72px;
        margin-bottom: 100px;
        min-height: 120px;
        height: auto
    }
}

@media only screen and (min-width: 975px) and (max-width: 988px) {
    .imgHigeth {
        height:2900px
    }
}

.cyber-li ul li:last-child {
    margin-bottom: 0
}

@media only screen and (max-width: 468px) {
    .cyber-li {
        width:90%
    }
}

@media only screen and (max-width: 780px) {
    .cyber-li {
        width:100%
    }
}

@media only screen and (max-width: 600px) {
    .imagePosition {
        -o-object-position:-900px 0;
        object-position: -900px 0
    }
}

@media only screen and (max-width: 976px) and (min-width: 600px) {
    .imagePosition {
        -o-object-position:-600px 0;
        object-position: -600px 0
    }
}

.boxshow{
    box-shadow: 1px -1px #59c9f426 inset,-1px 1px #59c9f426 inset;
    -webkit-backdrop-filter: blur(13.1499996185px);
    backdrop-filter: blur(13.1499996185px)
}

.spacing {
    letter-spacing: -.48px
}

@media only screen and (max-width: 768px) {
    .spacingtitle {
        letter-spacing:-.72px
    }
}

.imageZoomInAndZoomOut {
    transition: transform 1s ease
}

.imageZoomInAndZoomOut:hover {
    transform: scale(1.2);
    transform: translate(-5%) scale(1.1)
}

.imageZoomInAndZoomOut {
    transition: transform 1s ease
}

.imageZoomInAndZoomOut:hover {
    transform: scale(1.2);
    transform: translate(-5%) scale(1.1)
}

.commImg{
    max-width: -moz-fit-content!important;
    max-width: fit-content!important
}

@media only screen and (min-width: 768px) {
    .beneFist:nth-child(1) {
        background:url(/assets/cenerousbg-DvHgI8rB.jpg) no-repeat center;
        background-size: 100% 100%
    }

    .beneFist:nth-child(2) {
        background: url(/assets/easybg-BfsfxTIV.jpg) no-repeat center;
        background-size: 100% 100%
    }

    .beneFist:nth-child(3) {
        background: url(/assets/flexiblesbg-CWvQyLY6.jpg) no-repeat center;
        background-size: 100% 100%
    }
}

@media only screen and (max-width: 768px) {
    .beneFist{
        background-color:var(--gray-200)
    }
}

.borderChangeTransparency {
    transition: border-color 1s ease
}

.borderChangeTransparency:hover {
    border: 1px solid var(--white-248-249-8)
}

 .nowarpa span {
    white-space: nowrap
}

.borderChangeTransparency {
    transition: border-color 1s ease
}

.borderChangeTransparency:hover {
    border: 1px solid var(--white-248-249-8)
}

@media only screen and (max-width: 1279px) {
    .box {
        flex-direction:column
    }
}

.box.hoverBox .img {
    animation: transform-98f2221e 1s forwards
}

@keyframes transform-98f2221e {
    0% {
        transform: scale(1)
    }

    to {
        transform: scale(1.2)
    }
}

.customBox img{
    transition: transform 1s ease
}

.customBox:hover img{
    transform: scale(1.1)
}

@media only screen and (max-width: 768px) {
    .content{
        position:absolute;
        top: 46px
    }
}

@media only screen and (max-width: 600px) {
    .imagePosition {
        -o-object-position:-920px 0;
        object-position: -920px 0
    }
}

@media only screen and (max-width: 976px) {
    .title {
        width:620px
    }
}

@media only screen and (max-width: 573px) {
    .title {
        width:420px
    }
}

@media only screen and (max-width: 380px) {
    .title {
        width:320px
    }
}

.collapes-dark .el-collapse-item__header {
    color: var(--white)
}

 .el-collapse-item__header {
    font-weight: 600;
    height: 24px;
    margin-bottom: 40px;
    font-size: 16px;
    border: none;
    background-color: transparent
}

 .el-collapse-item__wrap {
    border: none;
    background-color: transparent
}

 .el-collapse-item__content {
    padding-bottom: 40px
}

.sonLi:not(:first-child) {
    margin-top: 40px
}

.middle-scroll {
    scrollbar-width: none
}

.middle-scroll::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
    opacity: 0
}

.el-popup-parent--hidden {
    overflow: hidden
}

.el-drawer__wrapper {
    background-color: #0000006d
}

.el-drawer {
    background: transparent
}

@media only screen and (max-width: 1024px) {
    .menuBox {
        flex-direction:column
    }

    .menuBox .menuItem {
        width: 35vw;
        margin-right: 0
    }
}

.customShadow {
    box-shadow: -3px 22px 36.2px #00000040
}

@keyframes opacityChange-ea94ccf4 {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@media only screen and (max-width: 1024px) {
    .decBox {
        width:49vw
    }
}

.menv:hover {
    font-weight: bolder
}

@keyframes opacityChange-5db05549 {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fontBold {
    font-weight: 700
}

header {
    -webkit-backdrop-filter: blur(15.6000003815px);
    backdrop-filter: blur(15.6000003815px)
}

.rotateBelow {
    transform: rotate(180deg);
    animation: rotate-35f0d8a8 .5s
}

.rotateBelow0 {
    animation: rotate1-35f0d8a8 .5s
}

@keyframes rotate1-35f0d8a8 {
    0% {
        transform: rotate(180deg)
    }

    to {
        transform: rotate(0)
    }
}

@keyframes rotate-35f0d8a8 {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(180deg)
    }
}

.bgTransparent {
    background: transparent!important
}

.sonUl li:not(:first-child) {
    margin-top: 40px
}

@media only screen and (max-width: 975px) {
    .ul li:nth-of-type(3),.ul li:nth-of-type(4) {
        margin-top:36px!important
    }
}

.el-backtop {
    --el-backtop-bg-color: var(--el-bg-color-overlay);
    --el-backtop-text-color: var(--el-color-primary);
    --el-backtop-hover-bg-color: var(--el-border-color-extra-light);
    align-items: center;
    background-color: var(--el-backtop-bg-color);
    border-radius: 50%;
    box-shadow: var(--el-box-shadow-lighter);
    color: var(--el-backtop-text-color);
    cursor: pointer;
    display: flex;
    font-size: 20px;
    height: 40px;
    justify-content: center;
    position: fixed;
    width: 40px;
    z-index: 5
}

.el-backtop:hover {
    background-color: var(--el-backtop-hover-bg-color)
}

.el-backtop__icon {
    font-size: 20px
}

.el-switch {
    --el-switch-on-color: var(--el-color-primary);
    --el-switch-off-color: var(--el-border-color);
    align-items: center;
    display: inline-flex;
    font-size: 14px;
    height: 32px;
    line-height: 20px;
    position: relative;
    vertical-align: middle
}

.el-switch.is-disabled .el-switch__core,.el-switch.is-disabled .el-switch__label {
    cursor: not-allowed
}

.el-switch__label {
    color: var(--el-text-color-primary);
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    height: 20px;
    transition: var(--el-transition-duration-fast);
    vertical-align: middle
}

.el-switch__label.is-active {
    color: var(--el-color-primary)
}

.el-switch__label--left {
    margin-right: 10px
}

.el-switch__label--right {
    margin-left: 10px
}

.el-switch__label * {
    display: inline-block;
    font-size: 14px;
    line-height: 1
}

.el-switch__label .el-icon {
    height: inherit
}

.el-switch__label .el-icon svg {
    vertical-align: middle
}

.el-switch__input {
    height: 0;
    margin: 0;
    opacity: 0;
    position: absolute;
    width: 0
}

.el-switch__input:focus-visible~.el-switch__core {
    outline: 2px solid var(--el-switch-on-color);
    outline-offset: 1px
}

.el-switch__core {
    align-items: center;
    background: var(--el-switch-off-color);
    border: 1px solid var(--el-switch-border-color,var(--el-switch-off-color));
    border-radius: 10px;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-flex;
    height: 20px;
    min-width: 40px;
    outline: none;
    position: relative;
    transition: border-color var(--el-transition-duration),background-color var(--el-transition-duration)
}

.el-switch__core .el-switch__inner {
    align-items: center;
    display: flex;
    height: 16px;
    justify-content: center;
    overflow: hidden;
    padding: 0 4px 0 18px;
    transition: all var(--el-transition-duration);
    width: 100%
}

.el-switch__core .el-switch__inner .is-icon,.el-switch__core .el-switch__inner .is-text {
    color: var(--el-color-white);
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-user-select: none;
    user-select: none;
    white-space: nowrap
}

.el-switch__core .el-switch__action {
    align-items: center;
    background-color: var(--el-color-white);
    border-radius: var(--el-border-radius-circle);
    color: var(--el-switch-off-color);
    display: flex;
    height: 16px;
    justify-content: center;
    left: 1px;
    position: absolute;
    transition: all var(--el-transition-duration);
    width: 16px
}

.el-switch.is-checked .el-switch__core {
    background-color: var(--el-switch-on-color);
    border-color: var(--el-switch-border-color,var(--el-switch-on-color))
}

.el-switch.is-checked .el-switch__core .el-switch__action {
    color: var(--el-switch-on-color);
    left: calc(100% - 17px)
}

.el-switch.is-checked .el-switch__core .el-switch__inner {
    padding: 0 18px 0 4px
}

.el-switch.is-disabled {
    opacity: .6
}

.el-switch--wide .el-switch__label.el-switch__label--left span {
    left: 10px
}

.el-switch--wide .el-switch__label.el-switch__label--right span {
    right: 10px
}

.el-switch .label-fade-enter-from,.el-switch .label-fade-leave-active {
    opacity: 0
}

.el-switch--large {
    font-size: 14px;
    height: 40px;
    line-height: 24px
}

.el-switch--large .el-switch__label {
    font-size: 14px;
    height: 24px
}

.el-switch--large .el-switch__label * {
    font-size: 14px
}

.el-switch--large .el-switch__core {
    border-radius: 12px;
    height: 24px;
    min-width: 50px
}

.el-switch--large .el-switch__core .el-switch__inner {
    height: 20px;
    padding: 0 6px 0 22px
}

.el-switch--large .el-switch__core .el-switch__action {
    height: 20px;
    width: 20px
}

.el-switch--large.is-checked .el-switch__core .el-switch__action {
    left: calc(100% - 21px)
}

.el-switch--large.is-checked .el-switch__core .el-switch__inner {
    padding: 0 22px 0 6px
}

.el-switch--small {
    font-size: 12px;
    height: 24px;
    line-height: 16px
}

.el-switch--small .el-switch__label {
    font-size: 12px;
    height: 16px
}

.el-switch--small .el-switch__label * {
    font-size: 12px
}

.el-switch--small .el-switch__core {
    border-radius: 8px;
    height: 16px;
    min-width: 30px
}

.el-switch--small .el-switch__core .el-switch__inner {
    height: 12px;
    padding: 0 2px 0 14px
}

.el-switch--small .el-switch__core .el-switch__action {
    height: 12px;
    width: 12px
}

.el-switch--small.is-checked .el-switch__core .el-switch__action {
    left: calc(100% - 13px)
}

.el-switch--small.is-checked .el-switch__core .el-switch__inner {
    padding: 0 14px 0 2px
}

.__no-scroll {
    overflow: hidden
}

@media screen and (min-width: 640px) {
    body {
        overflow:auto!important
    }
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px 20px 0 0;
    padding: 47px 0 20px;
    z-index: 4;
    background-color: #fff;
    perspective: 1000px;
    overflow: hidden
}

.cookie-banner .bg1 {
    position: absolute;
    left: 0;
    top: 0;
    background: url(/assets/logo-icon-CRVGe0Xj.png) #d3d3d3 0px 0px/100% 100% no-repeat;
    transform-style: preserve-3d;
    filter: blur(500px)
}

@media screen and (min-width: 640px) {
    .cookie-banner .bg1 {
        top:-25%;
        left: -30%;
        width: 50vw;
        height: 30vh;
        transform: rotate(30deg) skew(-60deg)
    }
}

.cookie-banner .bg2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    height: 70vh;
    transform-style: preserve-3d;
    transform: translateY(-20%) rotate(-25deg);
    background: url(/assets/logo-icon-CRVGe0Xj.png) #d3d3d3 0px 0px/100% 100% no-repeat;
    filter: blur(150px)
}

@media screen and (min-width: 640px) {
    .cookie-banner .bg2 {
        right:-10%;
        width: 80vw;
        height: 30vh;
        transform: translateY(20%) rotate(25deg)
    }
}

.cookie-banner .close {
    position: absolute;
    right: 20px;
    top: 47px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-left: 20px;
    cursor: pointer;
    z-index: 5
}

@media screen and (min-width: 640px) {
    .cookie-banner .close {
        display:none
    }
}

.cookie-banner-container {
    overflow: auto;
    max-height: 75vh;
    position: relative;
    padding: 0 20px
}

@media screen and (min-width: 640px) {
    .cookie-banner-container {
        width:93%;
        margin: 0 auto;
        padding-right: 80px
    }
}

.banner-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-right: 47px
}

.banner-header .title {
    flex-grow: 1;
    color: var(--black-default, #111114);
    font-family: Inter;
    font-size: 16px;
    font-weight: 600;
    line-height: 120%
}

@media screen and (min-width: 640px) {
    .banner-header .title {
        font-family:Plus Jakarta Sans;
        font-size: 18px;
        font-weight: 400;
        letter-spacing: -.36px
    }
}

.banner-body {
    width: 100%
}

@media screen and (min-width: 1792px) {
    .banner-body {
        display:flex;
        justify-content: space-between;
        gap: 0 20px
    }
}

.banner-body .messages {
    color: var(--Brand-Colors-600, #0f1022);
    font-family: Inter;
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
    flex-grow: 1
}

.banner-body .messages p {
    margin-top: 1em
}

@media screen and (min-width: 640px) {
    .banner-body .messages .p1 {
        margin-bottom:1em
    }

    .banner-body .messages .p2,.banner-body .messages .p3 {
        display: inline
    }
}

.banner-body .messages .link {
    text-wrap: nowrap;
    color: var(--brand-colors-500-default, #7532ff);
    text-decoration-line: underline;
    cursor: pointer
}

.banner-body .banner-collapse {
    margin-top: 20px
}

.banner-body .banner-collapse .title {
    color: var(--black-default, #111114);
    font-family: Inter;
    font-size: 14px;
    font-weight: 600
}

.banner-body .banner-collapse .manager {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0 20px;
    font-family: Inter;
    padding-right: 0
}

@media screen and (min-width: 640px) {
    .banner-body .banner-collapse .manager {
        display:flex;
        flex-direction: row;
        justify-content: flex-start;
        flex-wrap: wrap
    }
}

.banner-body .banner-collapse .manager .manager-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 20px;
    line-height: 20px;
    flex-shrink: 0;
    margin-top: 18px
}

@media screen and (min-width: 640px) {
    .banner-body .banner-collapse .manager .manager-item {
        justify-content:flex-start
    }
}

.banner-body .banner-collapse .manager .manager-item .active-text {
    text-align: right;
    color: var(--black-default, #111114);
    font-size: 12px;
    font-weight: 600
}

.banner-body .cookie-consent-actions {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 20px
}

@media screen and (min-width: 640px) {
    .banner-body .cookie-consent-actions {
        flex-direction:row;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 12px;
        margin-right: 0
    }
}

.banner-body .cookie-consent-actions .button-layout {
    min-width: 173px;
    line-height: 44px;
    padding: 0 16px;
    font-size: 14px;
    gap: 10px;
    flex-shrink: 0;
    text-wrap: nowrap;
    border-radius: 12px;
    border: 1px solid #cbd1fc;
    background: var(--white-default, #fff);
    transition: 1s
}

@media screen and (min-width: 640px) {
    .banner-body .cookie-consent-actions .button-layout {
        width:auto!important;
        margin: 0!important
    }
}

.banner-body .cookie-consent-actions .button-layout.deny {
    border: 1px solid #cbd1fc;
    background: var(--white-default, #fff)
}

.banner-body .cookie-consent-actions .button-layout.deny:hover {
    background-color: #7532ff;
    color: #fff;
    border: 1px solid rgba(255,255,255,.14)
}

@media screen and (min-width: 640px) {
    .banner-body .cookie-consent-actions .button-layout.deny {
        order:3
    }
}

.banner-body .cookie-consent-actions .button-layout.accept {
    border: 1px solid rgba(255,255,255,.14);
    background: #7532ff;
    color: #fff
}

.banner-body .cookie-consent-actions .button-layout.accept:hover {
    background-color: #fff;
    color: #7532ff;
    border: 1px solid #cbd1fc
}

@media screen and (min-width: 640px) {
    .banner-body .cookie-consent-actions .button-layout.accept {
        order:1
    }
}

.banner-body .cookie-consent-actions .button-layout.confirm {
    border: 1px solid rgba(255,255,255,.14);
    background: #7532ff;
    color: #fff
}

.banner-body .cookie-consent-actions .button-layout.confirm:hover {
    background-color: #fff;
    color: #7532ff;
    border: 1px solid #cbd1fc
}

@media screen and (min-width: 640px) {
    .banner-body .cookie-consent-actions .button-layout.confirm {
        order:2
    }
}

.banner-footer .more {
    margin-top: 20px;
    line-height: 18px;
    color: var(--Gray-700, #727272);
    font-family: Inter;
    font-size: 12px;
    font-weight: 400
}

.banner-footer .more .link {
    color: var(--brand-colors-500-default, #7532ff);
    text-decoration-line: underline
}

.loading-bg {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    z-index: 10;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #1a1a1db3;
    -webkit-backdrop-filter: blur(11.0500001907px);
    backdrop-filter: blur(11.0500001907px)
}

#lottieId {
    width: 240px;
    height: 240px
}

@media only screen and (max-width: 1280px) {
    #lottieId {
        width:200px!important;
        height: 200px!important
    }
}

@media only screen and (max-width: 678px) {
    .loading-box {
        margin-top:-60px
    }

    #lottieId {
        width: 160px!important;
        height: 160px!important
    }
}
