.team-contents {
    transform: translateX(6.25rem)
}

.team-box.active .team-contents {
    transform: none;
    transition: all .5s ease-in-out
}

.function-opacity {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background: rgba(0, 0, 0, .1)
}

.function-play {
    animation-play-state: revert !important
}

.h1-br {
    display: none
}

.navbar {
    z-index: 100
}

.flex {
    display: flex
}

.i .text-center {
    text-align: center
}

.text-left {
    text-align: left
}

.uppercase {
    text-transform: uppercase
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animated--lay-in {
    -webkit-animation-name: layIn;
    animation-name: layIn
}

.animated--shake {
    -webkit-animation-name: shake;
    animation-name: shake
}

.animated-fade-in {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

.animated-fade-in-down {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

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

.animated--spin {
    -webkit-animation-name: spin;
    animation-name: spin
}

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

@-webkit-keyframes homeTextFadesIn {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50%);
        transform: translateY(50%)
    }

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

@keyframes homeTextFadesIn {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50%);
        transform: translateY(50%)
    }

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

@-webkit-keyframes homeTextFadesOut {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }
}

@keyframes homeTextFadesOut {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }
}

.hero {
    overflow: hidden
}

.hero ::selection,
.hero::selection {
    background-color: #ffe8db
}

.hero br {
    display: none
}

@media screen and (min-width:768px) {
    .hero br {
        display: block
    }

    .hero {
        padding-top: 2rem
    }
}

@media screen and (min-width:1024px) {
    .hero {
        padding-top: 0
    }
}

@-webkit-keyframes changePagerSelectorWidth {
    0% {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes changePagerSelectorWidth {
    0% {
        width: 0
    }

    to {
        width: 100%
    }
}

@-webkit-keyframes fillBulletProgressCircle {
    0% {
        stroke-dashoffset: 50
    }

    to {
        stroke-dashoffset: 6
    }
}

@keyframes fillBulletProgressCircle {
    0% {
        stroke-dashoffset: 50
    }

    to {
        stroke-dashoffset: 6
    }
}

@-webkit-keyframes fillButtonProgressCircle {
    0% {
        stroke-dashoffset: 150
    }

    to {
        stroke-dashoffset: 0
    }
}

@keyframes fillButtonProgressCircle {
    0% {
        stroke-dashoffset: 150
    }

    to {
        stroke-dashoffset: 0
    }
}

.hero-slider {
    --animation-duration: 5s;
    --animation-delay: 1s;
    margin-top: 47px;
    position: relative;
    -webkit-user-select: none;
    user-select: none
}

@media screen and (min-width:768px) {
    .hero-slider {
        margin-top: 2rem
    }
}

@media screen and (min-width:1024px) {
    .hero-slider {
        margin-top: 5.1875rem
    }
}

.hero-slider__slides {
    position: relative
}

.hero-slider__slide {
    --index-from-selected: 0;
    --scale: 1;
    --blur: 10px;
    --opacity: 1;
    --z-index: 10;
    -webkit-filter: blur(var(--blur));
    filter: blur(var(--blur));
    position: relative;
    -webkit-transform: translateX(calc(-8vw * var(--index-from-selected))) scale(var(--scale));
    transform: translateX(calc(-8vw * var(--index-from-selected))) scale(var(--scale));
    transition: -webkit-transform .8s cubic-bezier(.19, 1, .22, 1), -webkit-filter .8s cubic-bezier(.19, 1, .22, 1);
    transition: transform .8s cubic-bezier(.19, 1, .22, 1), filter .8s cubic-bezier(.19, 1, .22, 1);
    transition: transform .8s cubic-bezier(.19, 1, .22, 1), filter .8s cubic-bezier(.19, 1, .22, 1), -webkit-transform .8s cubic-bezier(.19, 1, .22, 1), -webkit-filter .8s cubic-bezier(.19, 1, .22, 1);
    width: 100%;
    will-change: transform, opacity;
    z-index: var(--z-index)
}

.hero-slider__slide:not(:first-child) {
    left: 0;
    position: absolute;
    top: 0
}

.was-shown .hero-slider__slide {
    transition-delay: 0s
}

.hero-slider__slide__image {
    display: block;
    height: auto;
    max-width: 100%
}

.hero-slider__slide__animation {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.hero-slider__slide__animation>.hero-slider__slide__image {
    left: 0;
    position: absolute;
    top: 0;
    visibility: hidden
}

.hero-slider__slide__animation--design {
    -webkit-transform: translateX(-7%);
    transform: translateX(-7%)
}

@-webkit-keyframes slideDesign2 {
    10% {
        opacity: 0;
        -webkit-transform: scale(.8);
        transform: scale(.8);
        -webkit-transform-origin: 33% 75%;
        transform-origin: 33% 75%;
        visibility: hidden
    }

    25% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: 33% 75%;
        transform-origin: 33% 75%;
        visibility: visible
    }

    to {
        visibility: visible
    }
}

@keyframes slideDesign2 {
    10% {
        opacity: 0;
        -webkit-transform: scale(.8);
        transform: scale(.8);
        -webkit-transform-origin: 33% 75%;
        transform-origin: 33% 75%;
        visibility: hidden
    }

    25% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: 33% 75%;
        transform-origin: 33% 75%;
        visibility: visible
    }

    to {
        visibility: visible
    }
}

.hero-slider__slide.is-selected #slide-design-2 {
    -webkit-animation: slideDesign2 var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay);
    animation: slideDesign2 var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay)
}

@media percy,
screen and (prefers-reduced-motion:reduce) {
    .hero-slider__slide.is-selected #slide-design-2 {
        -webkit-animation: slideDesign2 8s cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay);
        animation: slideDesign2 8s cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay)
    }
}

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

    65% {
        opacity: 0;
        -webkit-transform: translate(-18%, 22%) scale(.25);
        transform: translate(-18%, 22%) scale(.25);
        visibility: visible
    }

    80% {
        opacity: 1;
        -webkit-transform: translate(0) scale(1);
        transform: translate(0) scale(1);
        visibility: visible
    }

    to {
        visibility: visible
    }
}

@keyframes slideDesign3 {
    0% {
        opacity: 0
    }

    65% {
        opacity: 0;
        -webkit-transform: translate(-18%, 22%) scale(.25);
        transform: translate(-18%, 22%) scale(.25);
        visibility: visible
    }

    80% {
        opacity: 1;
        -webkit-transform: translate(0) scale(1);
        transform: translate(0) scale(1);
        visibility: visible
    }

    to {
        visibility: visible
    }
}

.hero-slider__slide.is-selected #slide-design-3 {
    -webkit-animation: slideDesign3 var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay);
    animation: slideDesign3 var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay)
}

@media percy,
screen and (prefers-reduced-motion:reduce) {
    .hero-slider__slide.is-selected #slide-design-3 {
        -webkit-animation: slideDesign3 8s cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay);
        animation: slideDesign3 8s cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay)
    }
}

@-webkit-keyframes slideDesignPointer {
    30% {
        opacity: 0;
        -webkit-transform: translate(-60%, 50%) scale(0);
        transform: translate(-60%, 50%) scale(0)
    }

    50% {
        opacity: 1;
        -webkit-transform: translate(-12%, 25%) scale(1);
        transform: translate(-12%, 25%) scale(1);
        visibility: visible
    }

    65% {
        opacity: 1;
        -webkit-transform: translate(-12%, 25%) scale(1);
        transform: translate(-12%, 25%) scale(1)
    }

    80% {
        opacity: 1;
        -webkit-transform: translate(10%, 8%) scale(1);
        transform: translate(10%, 8%) scale(1);
        visibility: visible
    }

    to {
        opacity: 1;
        -webkit-transform: translate(10%, 8%) scale(1);
        transform: translate(10%, 8%) scale(1);
        visibility: visible
    }
}

@keyframes slideDesignPointer {
    30% {
        opacity: 0;
        -webkit-transform: translate(-60%, 50%) scale(0);
        transform: translate(-60%, 50%) scale(0)
    }

    50% {
        opacity: 1;
        -webkit-transform: translate(-12%, 25%) scale(1);
        transform: translate(-12%, 25%) scale(1);
        visibility: visible
    }

    65% {
        opacity: 1;
        -webkit-transform: translate(-12%, 25%) scale(1);
        transform: translate(-12%, 25%) scale(1)
    }

    80% {
        opacity: 1;
        -webkit-transform: translate(10%, 8%) scale(1);
        transform: translate(10%, 8%) scale(1);
        visibility: visible
    }

    to {
        opacity: 1;
        -webkit-transform: translate(10%, 8%) scale(1);
        transform: translate(10%, 8%) scale(1);
        visibility: visible
    }
}

.hero-slider__slide.is-selected #slide-design-pointer {
    -webkit-animation: slideDesignPointer var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay);
    animation: slideDesignPointer var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay)
}

@media percy,
screen and (prefers-reduced-motion:reduce) {
    .hero-slider__slide.is-selected #slide-design-pointer {
        -webkit-animation: slideDesignPointer 8s cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay);
        animation: slideDesignPointer 8s cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay)
    }
}

@-webkit-keyframes slidePrototype1 {
    0% {
        visibility: visible
    }

    20% {
        visibility: visible
    }

    20.01% {
        visibility: hidden
    }

    to {
        visibility: hidden
    }
}

@keyframes slidePrototype1 {
    0% {
        visibility: visible
    }

    20% {
        visibility: visible
    }

    20.01% {
        visibility: hidden
    }

    to {
        visibility: hidden
    }
}

@-webkit-keyframes slidePrototype2 {
    0% {
        visibility: hidden
    }

    20% {
        visibility: hidden
    }

    20.01% {
        visibility: visible
    }

    to {
        visibility: visible
    }
}

@keyframes slidePrototype2 {
    0% {
        visibility: hidden
    }

    20% {
        visibility: hidden
    }

    20.01% {
        visibility: visible
    }

    to {
        visibility: visible
    }
}

.hero-slider__slide.is-selected #slide-prototype-2 {
    -webkit-animation: slidePrototype2 var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay);
    animation: slidePrototype2 var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay)
}

@media percy,
screen and (prefers-reduced-motion:reduce) {
    .hero-slider__slide.is-selected #slide-prototype-2 {
        -webkit-animation: slidePrototype2 8s cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay);
        animation: slidePrototype2 8s cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay)
    }
}

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

    22% {
        opacity: 0;
        -webkit-transform: translateY(5%) scale(.6);
        transform: translateY(5%) scale(.6)
    }

    30% {
        opacity: 1;
        -webkit-transform: translate(0) scale(1);
        transform: translate(0) scale(1);
        visibility: visible
    }

    70% {
        visibility: visible
    }

    70.01% {
        visibility: hidden
    }
}

@keyframes slidePrototype3 {
    0% {
        opacity: 0
    }

    22% {
        opacity: 0;
        -webkit-transform: translateY(5%) scale(.6);
        transform: translateY(5%) scale(.6)
    }

    30% {
        opacity: 1;
        -webkit-transform: translate(0) scale(1);
        transform: translate(0) scale(1);
        visibility: visible
    }

    70% {
        visibility: visible
    }

    70.01% {
        visibility: hidden
    }
}

.hero-slider__slide.is-selected #slide-prototype-3 {
    -webkit-animation: slidePrototype3 var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay);
    animation: slidePrototype3 var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay)
}

@media percy,
screen and (prefers-reduced-motion:reduce) {
    .hero-slider__slide.is-selected #slide-prototype-3 {
        -webkit-animation: slidePrototype3 8s cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay);
        animation: slidePrototype3 8s cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay)
    }
}

@-webkit-keyframes slidePrototype4 {
    70% {
        visibility: hidden
    }

    70.01% {
        visibility: visible
    }

    to {
        visibility: visible
    }
}

@keyframes slidePrototype4 {
    70% {
        visibility: hidden
    }

    70.01% {
        visibility: visible
    }

    to {
        visibility: visible
    }
}

.hero-slider__slide.is-selected #slide-prototype-4 {
    -webkit-animation: slidePrototype4 var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay);
    animation: slidePrototype4 var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay)
}

@media percy,
screen and (prefers-reduced-motion:reduce) {
    .hero-slider__slide.is-selected #slide-prototype-4 {
        -webkit-animation: slidePrototype4 8s cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay);
        animation: slidePrototype4 8s cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay)
    }
}

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

    5% {
        opacity: 0
    }

    15% {
        opacity: 1;
        -webkit-transform: translate(36.5%, -43.5%);
        transform: translate(36.5%, -43.5%);
        visibility: visible
    }

    40% {
        opacity: 1;
        -webkit-transform: translate(36.5%, -43.5%);
        transform: translate(36.5%, -43.5%)
    }

    55% {
        opacity: 1;
        -webkit-transform: translateY(38%);
        transform: translateY(38%)
    }

    90% {
        opacity: 1;
        -webkit-transform: translateY(38%);
        transform: translateY(38%)
    }

    95% {
        opacity: 0;
        -webkit-transform: translate(10%, 50%);
        transform: translate(10%, 50%)
    }

    to {
        opacity: 0;
        -webkit-transform: translate(10%, 50%);
        transform: translate(10%, 50%)
    }
}

@keyframes slidePrototypePointer {
    0% {
        opacity: 0
    }

    5% {
        opacity: 0
    }

    15% {
        opacity: 1;
        -webkit-transform: translate(36.5%, -43.5%);
        transform: translate(36.5%, -43.5%);
        visibility: visible
    }

    40% {
        opacity: 1;
        -webkit-transform: translate(36.5%, -43.5%);
        transform: translate(36.5%, -43.5%)
    }

    55% {
        opacity: 1;
        -webkit-transform: translateY(38%);
        transform: translateY(38%)
    }

    90% {
        opacity: 1;
        -webkit-transform: translateY(38%);
        transform: translateY(38%)
    }

    95% {
        opacity: 0;
        -webkit-transform: translate(10%, 50%);
        transform: translate(10%, 50%)
    }

    to {
        opacity: 0;
        -webkit-transform: translate(10%, 50%);
        transform: translate(10%, 50%)
    }
}

.hero-slider__slide.is-selected #slide-prototype-pointer {
    -webkit-animation: slidePrototypePointer var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay);
    animation: slidePrototypePointer var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay)
}

@media percy,
screen and (prefers-reduced-motion:reduce) {
    .hero-slider__slide.is-selected #slide-prototype-pointer {
        -webkit-animation: slidePrototypePointer 8s cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay);
        animation: slidePrototypePointer 8s cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay)
    }
}

@-webkit-keyframes slideHandoff1 {
    0% {
        visibility: visible
    }

    40% {
        visibility: visible
    }

    40.01% {
        visibility: hidden
    }

    to {
        visibility: hidden
    }
}

@keyframes slideHandoff1 {
    0% {
        visibility: visible
    }

    40% {
        visibility: visible
    }

    40.01% {
        visibility: hidden
    }

    to {
        visibility: hidden
    }
}

.hero-slider__slide.is-selected #slide-handoff-1 {
    -webkit-animation: slideHandoff1 var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay);
    animation: slideHandoff1 var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay)
}

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

    28% {
        opacity: 0
    }

    32% {
        opacity: 1;
        visibility: visible
    }

    40% {
        opacity: 1
    }

    40.01% {
        opacity: 0
    }

    to {
        opacity: 0
    }
}

@keyframes slideHandoff2 {
    0% {
        opacity: 0
    }

    28% {
        opacity: 0
    }

    32% {
        opacity: 1;
        visibility: visible
    }

    40% {
        opacity: 1
    }

    40.01% {
        opacity: 0
    }

    to {
        opacity: 0
    }
}

.hero-slider__slide.is-selected #slide-handoff-2 {
    -webkit-animation: slideHandoff2 var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay);
    animation: slideHandoff2 var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay)
}

@-webkit-keyframes slideHandoff3 {
    0% {
        visibility: hidden
    }

    40% {
        visibility: hidden
    }

    40.01% {
        visibility: visible
    }

    to {
        visibility: visible
    }
}

@keyframes slideHandoff3 {
    0% {
        visibility: hidden
    }

    40% {
        visibility: hidden
    }

    40.01% {
        visibility: visible
    }

    to {
        visibility: visible
    }
}

.hero-slider__slide.is-selected #slide-handoff-3 {
    -webkit-animation: slideHandoff3 var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay);
    animation: slideHandoff3 var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay)
}

@-webkit-keyframes slideHandoff4 {
    0% {
        visibility: hidden
    }

    40% {
        visibility: hidden
    }

    40.01% {
        visibility: visible
    }

    63% {
        opacity: 1
    }

    66% {
        opacity: 0
    }

    to {
        opacity: 0
    }
}

@keyframes slideHandoff4 {
    0% {
        visibility: hidden
    }

    40% {
        visibility: hidden
    }

    40.01% {
        visibility: visible
    }

    63% {
        opacity: 1
    }

    66% {
        opacity: 0
    }

    to {
        opacity: 0
    }
}

.hero-slider__slide.is-selected #slide-handoff-4 {
    -webkit-animation: slideHandoff4 var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay);
    animation: slideHandoff4 var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay)
}

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

    74% {
        opacity: 0
    }

    78% {
        opacity: 1;
        visibility: visible
    }

    88% {
        opacity: 1
    }

    90% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes slideHandoff5 {
    0% {
        opacity: 0
    }

    74% {
        opacity: 0
    }

    78% {
        opacity: 1;
        visibility: visible
    }

    88% {
        opacity: 1
    }

    90% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.hero-slider__slide.is-selected #slide-handoff-5 {
    -webkit-animation: slideHandoff5 var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay);
    animation: slideHandoff5 var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay)
}

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

    90% {
        opacity: 0
    }

    92% {
        opacity: 1;
        visibility: visible
    }

    to {
        opacity: 1;
        visibility: visible
    }
}

@keyframes slideHandoff6 {
    0% {
        opacity: 0
    }

    90% {
        opacity: 0
    }

    92% {
        opacity: 1;
        visibility: visible
    }

    to {
        opacity: 1;
        visibility: visible
    }
}

.hero-slider__slide.is-selected #slide-handoff-6 {
    -webkit-animation: slideHandoff6 var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay);
    animation: slideHandoff6 var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay)
}

@-webkit-keyframes slideHandoffPointer {
    0% {
        opacity: 0;
        -webkit-transform: translate(20%, 20%);
        transform: translate(20%, 20%)
    }

    5% {
        opacity: 0;
        -webkit-transform: translate(20%, 20%);
        transform: translate(20%, 20%)
    }

    20% {
        opacity: 1;
        -webkit-transform: translate(-5%, -1%);
        transform: translate(-5%, -1%);
        visibility: visible
    }

    60% {
        opacity: 1;
        -webkit-transform: translate(-5%, -1%);
        transform: translate(-5%, -1%)
    }

    74% {
        opacity: 1;
        -webkit-transform: translate(32%, 34%);
        transform: translate(32%, 34%)
    }

    96% {
        opacity: 1;
        -webkit-transform: translate(32%, 34%);
        transform: translate(32%, 34%)
    }

    to {
        opacity: 0;
        -webkit-transform: translate(40%, 50%);
        transform: translate(40%, 50%)
    }
}

@keyframes slideHandoffPointer {
    0% {
        opacity: 0;
        -webkit-transform: translate(20%, 20%);
        transform: translate(20%, 20%)
    }

    5% {
        opacity: 0;
        -webkit-transform: translate(20%, 20%);
        transform: translate(20%, 20%)
    }

    20% {
        opacity: 1;
        -webkit-transform: translate(-5%, -1%);
        transform: translate(-5%, -1%);
        visibility: visible
    }

    60% {
        opacity: 1;
        -webkit-transform: translate(-5%, -1%);
        transform: translate(-5%, -1%)
    }

    74% {
        opacity: 1;
        -webkit-transform: translate(32%, 34%);
        transform: translate(32%, 34%)
    }

    96% {
        opacity: 1;
        -webkit-transform: translate(32%, 34%);
        transform: translate(32%, 34%)
    }

    to {
        opacity: 0;
        -webkit-transform: translate(40%, 50%);
        transform: translate(40%, 50%)
    }
}

.hero-slider__slide.is-selected #slide-handoff-pointer {
    -webkit-animation: slideHandoffPointer var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay);
    animation: slideHandoffPointer var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay)
}

@-webkit-keyframes slideCollaborate1a {
    0% {
        opacity: 0;
        -webkit-transform: translate(15%, 15%);
        transform: translate(15%, 15%);
        visibility: visible
    }

    20% {
        opacity: 0;
        -webkit-transform: translate(15%, 15%);
        transform: translate(15%, 15%);
        visibility: visible
    }

    30% {
        opacity: 1;
        -webkit-transform: translate(-2%);
        transform: translate(-2%);
        visibility: visible
    }

    55% {
        opacity: 1;
        -webkit-transform: translate(-2%);
        transform: translate(-2%);
        visibility: visible
    }

    65% {
        opacity: 1;
        -webkit-transform: translate(-8%, 5%);
        transform: translate(-8%, 5%);
        visibility: visible
    }

    to {
        opacity: 1;
        -webkit-transform: translate(-8%, 5%);
        transform: translate(-8%, 5%);
        visibility: visible
    }
}

@keyframes slideCollaborate1a {
    0% {
        opacity: 0;
        -webkit-transform: translate(15%, 15%);
        transform: translate(15%, 15%);
        visibility: visible
    }

    20% {
        opacity: 0;
        -webkit-transform: translate(15%, 15%);
        transform: translate(15%, 15%);
        visibility: visible
    }

    30% {
        opacity: 1;
        -webkit-transform: translate(-2%);
        transform: translate(-2%);
        visibility: visible
    }

    55% {
        opacity: 1;
        -webkit-transform: translate(-2%);
        transform: translate(-2%);
        visibility: visible
    }

    65% {
        opacity: 1;
        -webkit-transform: translate(-8%, 5%);
        transform: translate(-8%, 5%);
        visibility: visible
    }

    to {
        opacity: 1;
        -webkit-transform: translate(-8%, 5%);
        transform: translate(-8%, 5%);
        visibility: visible
    }
}

@-webkit-keyframes slideCollaborate1b {
    0% {
        visibility: visible
    }

    35% {
        visibility: visible
    }

    35.01% {
        visibility: hidden
    }
}

@keyframes slideCollaborate1b {
    0% {
        visibility: visible
    }

    35% {
        visibility: visible
    }

    35.01% {
        visibility: hidden
    }
}

@-webkit-keyframes slideCollaborate1c {
    40% {
        visibility: hidden
    }

    40.01% {
        visibility: visible
    }

    45% {
        visibility: visible
    }

    45.01% {
        visibility: hidden
    }
}

@keyframes slideCollaborate1c {
    40% {
        visibility: hidden
    }

    40.01% {
        visibility: visible
    }

    45% {
        visibility: visible
    }

    45.01% {
        visibility: hidden
    }
}

@-webkit-keyframes slideCollaborate1d {
    45% {
        visibility: hidden
    }

    45.01% {
        visibility: visible
    }

    50% {
        visibility: visible
    }

    50.01% {
        visibility: hidden
    }
}

@keyframes slideCollaborate1d {
    45% {
        visibility: hidden
    }

    45.01% {
        visibility: visible
    }

    50% {
        visibility: visible
    }

    50.01% {
        visibility: hidden
    }
}

@-webkit-keyframes slideCollaborate1e {
    50% {
        visibility: hidden
    }

    50.01% {
        visibility: visible
    }

    to {
        visibility: visible
    }
}

@keyframes slideCollaborate1e {
    50% {
        visibility: hidden
    }

    50.01% {
        visibility: visible
    }

    to {
        visibility: visible
    }
}

@-webkit-keyframes slideCollaborate2a {
    0% {
        opacity: 0;
        -webkit-transform: translate(15%, 15%);
        transform: translate(15%, 15%);
        visibility: visible
    }

    40% {
        opacity: 0;
        -webkit-transform: translate(15%, 15%);
        transform: translate(15%, 15%);
        visibility: visible
    }

    60% {
        opacity: 1;
        -webkit-transform: translate(-4%, -10%);
        transform: translate(-4%, -10%);
        visibility: visible
    }

    to {
        opacity: 1;
        -webkit-transform: translate(-4%, -10%);
        transform: translate(-4%, -10%);
        visibility: visible
    }
}

@keyframes slideCollaborate2a {
    0% {
        opacity: 0;
        -webkit-transform: translate(15%, 15%);
        transform: translate(15%, 15%);
        visibility: visible
    }

    40% {
        opacity: 0;
        -webkit-transform: translate(15%, 15%);
        transform: translate(15%, 15%);
        visibility: visible
    }

    60% {
        opacity: 1;
        -webkit-transform: translate(-4%, -10%);
        transform: translate(-4%, -10%);
        visibility: visible
    }

    to {
        opacity: 1;
        -webkit-transform: translate(-4%, -10%);
        transform: translate(-4%, -10%);
        visibility: visible
    }
}

.hero-slider__slide.is-selected #slide-collaborate-2a {
    -webkit-animation: slideCollaborate2a var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay);
    animation: slideCollaborate2a var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay)
}

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

    62% {
        opacity: 0
    }

    70% {
        opacity: 1;
        visibility: visible
    }

    to {
        opacity: 1
    }
}

@keyframes slideCollaborate2b {
    0% {
        opacity: 0
    }

    62% {
        opacity: 0
    }

    70% {
        opacity: 1;
        visibility: visible
    }

    to {
        opacity: 1
    }
}

.hero-slider__slide.is-selected #slide-collaborate-2b {
    -webkit-animation: slideCollaborate2b var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay);
    animation: slideCollaborate2b var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay)
}

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

    85% {
        opacity: 0
    }

    91% {
        opacity: 1;
        visibility: visible
    }

    91.01% {
        visibility: hidden
    }
}

@keyframes slideCollaborate3 {
    0% {
        opacity: 0
    }

    85% {
        opacity: 0
    }

    91% {
        opacity: 1;
        visibility: visible
    }

    91.01% {
        visibility: hidden
    }
}

.hero-slider__slide.is-selected #slide-collaborate-3 {
    -webkit-animation: slideCollaborate3 var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay);
    animation: slideCollaborate3 var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay)
}

@-webkit-keyframes slideCollaborate3a {
    91% {
        visibility: hidden
    }

    91.01% {
        visibility: visible
    }

    92% {
        visibility: visible
    }

    92.01% {
        visibility: hidden
    }
}

@keyframes slideCollaborate3a {
    91% {
        visibility: hidden
    }

    91.01% {
        visibility: visible
    }

    92% {
        visibility: visible
    }

    92.01% {
        visibility: hidden
    }
}

.hero-slider__slide.is-selected #slide-collaborate-3a {
    -webkit-animation: slideCollaborate3a var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay);
    animation: slideCollaborate3a var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay)
}

@-webkit-keyframes slideCollaborate3b {
    92% {
        visibility: hidden
    }

    92.01% {
        visibility: visible
    }

    to {
        visibility: visible
    }
}

@keyframes slideCollaborate3b {
    92% {
        visibility: hidden
    }

    92.01% {
        visibility: visible
    }

    to {
        visibility: visible
    }
}

.hero-slider__slide.is-selected #slide-collaborate-3b {
    -webkit-animation: slideCollaborate3b var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay);
    animation: slideCollaborate3b var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay)
}

@-webkit-keyframes slideCollaboratePointer {
    0% {
        -webkit-transform: translateY(20%);
        transform: translateY(20%);
        visibility: visible
    }

    70% {
        -webkit-transform: translateY(20%);
        transform: translateY(20%);
        visibility: visible
    }

    85% {
        -webkit-transform: translate(43%, -43.5%);
        transform: translate(43%, -43.5%);
        visibility: visible
    }

    90% {
        -webkit-transform: translate(43%, -43.5%);
        transform: translate(43%, -43.5%);
        visibility: visible
    }

    95% {
        -webkit-transform: translate(43%, -37.5%);
        transform: translate(43%, -37.5%);
        visibility: visible
    }

    to {
        -webkit-transform: translate(43%, -37.5%);
        transform: translate(43%, -37.5%);
        visibility: visible
    }
}

@keyframes slideCollaboratePointer {
    0% {
        -webkit-transform: translateY(20%);
        transform: translateY(20%);
        visibility: visible
    }

    70% {
        -webkit-transform: translateY(20%);
        transform: translateY(20%);
        visibility: visible
    }

    85% {
        -webkit-transform: translate(43%, -43.5%);
        transform: translate(43%, -43.5%);
        visibility: visible
    }

    90% {
        -webkit-transform: translate(43%, -43.5%);
        transform: translate(43%, -43.5%);
        visibility: visible
    }

    95% {
        -webkit-transform: translate(43%, -37.5%);
        transform: translate(43%, -37.5%);
        visibility: visible
    }

    to {
        -webkit-transform: translate(43%, -37.5%);
        transform: translate(43%, -37.5%);
        visibility: visible
    }
}

.hero-slider__slide.is-selected #slide-collaborate-pointer {
    -webkit-animation: slideCollaboratePointer var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay);
    animation: slideCollaboratePointer var(--animation-duration) cubic-bezier(.19, 1, .22, 1) forwards var(--animation-delay);
    -webkit-transform: translateY(20%);
    transform: translateY(20%);
    visibility: visible
}

.hero-slider__pager-wrapper {
    display: flex;
    justify-content: center
}

@media screen and (min-width:1440px) {
    .hero-slider__pager-wrapper {
        display: none
    }
}

.hero-slider__pager {
    background-color: rgba(255, 255, 255, .3);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    font-size: .75rem;
    justify-content: center;
    margin-top: 1.75rem;
    padding: .5rem .75rem;
    position: relative;
    -webkit-user-select: none;
    user-select: none;
    z-index: 10
}

.hero-slider__pager>:not(:last-child) {
    margin-right: .75rem
}

@media screen and (min-width:390px) {
    .hero-slider__pager {
        font-size: .875rem
    }
}

.hero-slider__pager__item__trigger {
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    background-color: rgba(255, 255, 255, .6);
    border: 0;
    border-radius: 0;
    border-radius: 50%;
    display: block;
    height: .5rem;
    line-height: normal;
    margin: 0;
    padding: 0;
    position: relative;
    text-indent: -200vw;
    width: 6px;
    height: 6px
}

@media (pointer:none) {
    .hero-slider__pager__item__trigger {
        pointer-events: none
    }
}

.hero-slider__pager__item__trigger__progress {
    border-radius: 50%;
    display: block;
    height: 1rem;
    left: -80%;
    position: absolute;
    top: -80%;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    width: 1rem
}

.hero-slider__pager__item__trigger__progress__circle {
    stroke: rgba(255, 255, 255, .5);
    stroke-width: 2;
    fill: transparent;
    stroke-dasharray: 50;
    -webkit-animation-duration: calc(var(--animation-duration) + var(--animation-delay) * 2);
    animation-duration: calc(var(--animation-duration) + var(--animation-delay) * 2);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    opacity: 0
}

.hero-slider__pager__item__trigger.is-selected {
    background-color: #fff
}

.hero-slider__pager__item__trigger.is-selected .hero-slider__pager__item__trigger__progress__circle {
    -webkit-animation-name: fillBulletProgressCircle;
    animation-name: fillBulletProgressCircle;
    opacity: 1
}

.hero-slider__button {
    align-items: center;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    line-height: normal;
    margin: 0;
    min-width: 5rem;
    padding: 0;
    position: absolute;
    top: calc(50% - 2.5rem);
    z-index: 95
}

.hero-slider__button:hover .hero-slider__button__label {
    opacity: 1;
    -webkit-transform: translateY(-2.3125rem);
    transform: translateY(-2.3125rem)
}

@media screen and (max-width:1439px) {
    .hero-slider__button {
        display: none
    }
}

.hero-slider__button__circle__wrapper {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

.hero-slider__button--previous {
    left: -7.5rem
}

.hero-slider__button--previous .hero-slider__button__circle {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.hero-slider__button--previous .hero-slider__button__circle__progress {
    display: none
}

.hero-slider__button--next {
    right: -3.5rem
}

.hero-slider__button__label {
    background-color: rgba(0, 0, 0, .85);
    border-radius: 8px;
    color: #fff;
    font-size: .75rem;
    font-weight: 400;
    opacity: 0;
    padding: .5rem .625rem;
    pointer-events: none;
    position: absolute;
    text-transform: capitalize;
    -webkit-transform: translateY(-1.5rem);
    transform: translateY(-1.5rem);
    transition: opacity 125ms cubic-bezier(.165, .84, .44, 1), -webkit-transform .25s cubic-bezier(.165, .84, .44, 1);
    transition: transform .25s cubic-bezier(.165, .84, .44, 1), opacity 125ms cubic-bezier(.165, .84, .44, 1);
    transition: transform .25s cubic-bezier(.165, .84, .44, 1), opacity 125ms cubic-bezier(.165, .84, .44, 1), -webkit-transform .25s cubic-bezier(.165, .84, .44, 1)
}

@media percy,
screen and (prefers-reduced-motion:reduce) {
    .hero-slider__button__label {
        transition-duration: 1ms
    }
}

.hero-slider__button__circle {
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative
}

.hero-slider__button__circle__arrow {
    stroke: #fff;
    position: absolute
}

.hero-slider__button__circle__fill {
    fill: #212123
}

.hero-slider__button__circle__progress {
    stroke: rgba(0, 0, 0, .3);
    stroke-width: 2;
    fill: transparent;
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
    -webkit-animation-duration: calc(var(--animation-duration) + var(--animation-delay) * 2);
    animation-duration: calc(var(--animation-duration) + var(--animation-delay) * 2);
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    left: 0;
    position: absolute;
    top: 0
}

.hero-slider__button__circle.is-active .hero-slider__button__circle__progress {
    -webkit-animation-name: fillButtonProgressCircle;
    animation-name: fillButtonProgressCircle
}

.thumbnail-title-link {
    align-items: flex-start;
    color: #212123;
    display: flex;
    flex-direction: row;
    gap: 1.5rem
}

.thumbnail-title-link:hover {
    color: rgba(0, 0, 0, .64)
}

@media screen and (min-width:1024px) {
    .thumbnail-title-link {
        padding-left: 2.75rem;
        padding-right: 2.75rem
    }
}

.thumbnail-title-link:not(.thumbnail-title-link--aligned) .thumbnail-title-link__heading {
    margin-top: .5rem
}

.thumbnail-title-link--aligned {
    align-items: center
}

.thumbnail-title-link__image {
    border-radius: 6px;
    display: block
}

.thumbnail-title-link__heading {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.5rem;
    transition: .4s cubic-bezier(.455, .03, .515, .955)
}

.thumbnail-title-link__heading:after {
    background-image: url(https://cms.pixso.cn/images/homepage2/banner-right.svg);
    background-size: contain;
    content: "";
    display: inline-block;
    height: 1.5rem;
    opacity: .32;
    vertical-align: -.4375em;
    width: 1.5rem
}

@media percy,
screen and (prefers-reduced-motion:reduce) {
    .thumbnail-title-link__heading {
        transition-duration: 1ms
    }
}

.thumbnail-title-link__heading strong {
    font-weight: 600
}

.thumbnail-title-link__heading:after {
    margin-right: -1.5rem
}

.thumbnail-title-link[target="_blank"] .thumbnail-title-link__heading:after {
    background-image: url(https://cms.pixso.cn/images/homepage2/banner-right.svg);
    background-size: contain;
    content: "";
    display: inline-block;
    height: 1.5rem;
    opacity: .32;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    vertical-align: -.4375em;
    width: 1.5rem
}

.pill-prism {
    background-color: rgba(0, 0, 0, .08);
    border-radius: 6px;
    color: rgba(0, 0, 0, .7);
    display: inline-block;
    font-size: .6875rem;
    font-weight: 600;
    line-height: 0;
    padding: .75rem .5rem;
    text-transform: uppercase
}

@-webkit-keyframes slide-logo {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }

    to {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}

@keyframes slide-logo {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }

    to {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}

.blog-latest,
.company-logos,
.extensions,
.hero,
.home,
.home__cta {
    position: relative
}

.hero-slider-section {
    overflow: hidden
}

.banner {
    background: #000 url(../png/banner-bg2560-2.png) center center/cover no-repeat
}

@media(max-width:576px) {
    .banner {
        background: #000 url(../png/mobile-banner-home4.png) center center/cover no-repeat
    }

    .banner:after {
        width: 0
    }

    .wrapper {
        width: 320px
    }
}

.enterprise-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap
}

.enterprise-item {
    width: 15.2%;
    max-width: 206px;
    min-width: 178px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    height: 64px;
    box-shadow: 0 12px 40px rgb(25 25 26 / 3%), 0 4px 10px rgb(25 25 26 / 3%);
    flex-wrap: wrap
}

.enterprise.enterprise {
    padding-bottom: 20px;
    max-width: 1356px;
    width: calc(100% - 88px);
    margin-left: auto;
    margin-right: auto
}

.enterprise-item-img {
    width: 100%
}

@media(max-width:1450px) {
    .enterprise-item-img {
        width: 95%
    }

    .enterprise-item {
        width: 14%;
        min-width: 120px
    }
}

@media(max-width:576px) {
    .enterprise-item-img-16 {
        height: 16px !important
    }

    .enterprise-item:last-child .enterprise-item-img {
        height: 20px
    }

    .enterprise-item {
        height: 32px;
        width: 28%;
        min-width: 88px
    }

    .enterprise-item-img {
        height: 14px;
        width: auto
    }

    .enterprise-grid {
        gap: 12px
    }

    .enterprise.enterprise {
        width: calc(100% - 48px)
    }
}

.compare-detail img {
    width: 24px;
    height: 24px
}

.feature-format img {
    width: 64px;
    height: 64px
}

.tab-operator .twonums {
    min-width: 94px
}

.tab-manager .twonums {
    min-width: 94px
}

.tab-coder .threenums {
    min-width: 130px
}

body {
    font-weight: 400
}

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

.news-title {
    font-size: 24px;
    color: #121212;
    line-height: 32px;
    margin-top: 24px;
    white-space: nowrap
}

.news-time {
    color: rgba(0, 0, 0, .5);
    font-size: 18px
}

.news-item {
    flex: 1;
    transform: rotate(0)
}

.news-list .news-item:not(:last-child) {
    margin-right: 32px
}

.news-item--box img {
    transition: transform 1s cubic-bezier(0, 0, 0, 1);
    will-change: transform;
    border-radius: 12px
}

.news-item--box:hover .w-100 {
    transform: scale(1.05)
}

html {
    font-size: 16px !important
}

main a:hover {
    text-decoration: none
}

.banner {
    padding-top: 197px;
    padding-bottom: 149px
}

.py-128 {
    padding: 8rem 0
}

.py-208 {
    margin: 6.5rem 0
}

.download-free-btn,
.use-online-btn {
    width: 12.5rem;
    height: 3.75rem;
    border-radius: 3.25rem
}

.download-free-btn {
    background-color: #fff
}

.use-online-btn {
    color: #fff !important;
    border: 2px solid #fff;
    background-color: transparent
}

.banner-btn-container {
    width: 26.5rem
}

.px-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(73, 33, 172, .42);
    will-change: transform;
    transition: transform .32s ease, box-shadow .32s ease
}

.px-btn:hover .btn-arrow {
    animation-play-state: paused
}

.px-btn:hover {
    box-shadow: 0 10px 30px rgba(73, 33, 172, .42);
    transform: translateY(-6px)
}

.btn-arrow {
    animation: btnArrowEffect 3s both infinite;
    margin-left: -4px
}

@keyframes btnArrowEffect {
    0% {
        transform: translate(0)
    }

    10% {
        transform: translate(4px)
    }

    20% {
        transform: translate(-2px)
    }

    30% {
        transform: translate(4px)
    }

    40% {
        transform: translate(-2px)
    }

    50% {
        transform: translate(0)
    }
}

.px-text {
    color: var(--v2--color-text-brand-normal);
    font-weight: 500
}

.homepage-main .title {
    font-size: 3rem;
    font-weight: 700;
    color: #121212;
    line-height: 3.5rem;
    margin-bottom: 5rem
}

.banner h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 5rem;
    color: #fff;
    margin-bottom: 1.5rem
}

.banner .desc {
    line-height: 1.75rem;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 2rem
}

.scroll-cursor::after {
    content: '';
    display: inline-block;
    background: url(../png/canvas-bg.png) center center/cover no-repeat;
    height: 116%;
    width: 119%;
    max-width: 1920px;
    z-index: -1;
    position: absolute;
    top: -16%;
    left: -8%;
    animation: spin 8s linear infinite alternate;
    filter: blur(10px)
}

@keyframes spin {
    0% {
        opacity: .7;
        transform: rotate(-5deg) scale(1)
    }

    25% {
        opacity: .9;
        transform: rotate(0) scale(1.01)
    }

    50% {
        opacity: 1;
        transform: rotate(7deg) scale(1.05)
    }

    100% {
        opacity: .8;
        transform: rotate(10deg) scale(1.01)
    }
}

.banner-main {
    max-width: 77.125rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%)
}

.scroll-cursor,
.scroll-decoration {
    max-width: 77.125rem;
    height: 47.1875rem;
    margin: 0 auto;
    position: relative;
    top: 8.95vh
}

.cursor {
    max-width: 9.125rem
}

.cursor-ui {
    top: 221px;
    left: 150px;
    animation: bannerToLeft .05s linear infinite;
    animation-play-state: paused;
    animation-delay: calc(var(--scroll) * -1s);
    animation-iteration-count: 1;
    animation-fill-mode: both
}

@keyframes bannerToLeft {
    to {
        left: 90px
    }
}

@keyframes bannerToRight {
    to {
        left: 90px
    }
}

.cursor-coder {
    top: 5.5625rem;
    right: -.5rem
}

.cursor-pm {
    top: 15.5625rem;
    right: 8.5rem
}

.cursor-marking {
    top: 25rem;
    right: 8.5rem
}

.decoration {
    box-shadow: 0 .3125rem 2rem rgba(107, 107, 107, .13), .5rem .9375rem 1.25rem rgba(11, 35, 183, .07);
    border-radius: 1rem;
    backdrop-filter: blur(20px)
}

.banner-right {
    max-width: 16.875rem;
    top: 7.125rem;
    right: -7.8125rem
}

.comment {
    width: 3rem;
    height: 3rem;
    border-radius: 0 50% 50% 0
}

.comment-coder {
    top: calc(286px + 48px);
    left: calc(245px - 48px);
    box-shadow: .875rem .6875rem 1.25rem rgba(199, 208, 221, .34)
}

.comment-pm {
    top: calc(119px + 48px);
    right: calc(271px + 48px);
    box-shadow: .4375rem .8125rem 1.25rem rgba(199, 208, 221, .49)
}

.comment-design {
    width: 11.375rem;
    height: 5.0625rem;
    top: calc(444px + 48px);
    right: calc(170px + 182px);
    border-radius: 21px 21px 21px 0;
    backdrop-filter: blur(20px);
    box-shadow: 0 1.3125rem 2rem rgba(96, 96, 96, .1), .5rem .9375rem 1.25rem rgba(199, 208, 221, .24)
}

.banner-main,
.comment,
.cursor,
.decoration {
    will-change: transform;
    transform-style: preserve-3d;
    animation-fill-mode: forwards
}

.comment,
.decoration {
    opacity: 0
}

.comment {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
    animation-duration: .2s;
    animation-iteration-count: 1
}

.comment-coder.active {
    animation-name: commentOthersEffect;
    animation-delay: .4s
}

.comment-pm.active {
    animation-name: commentOthersEffect;
    animation-delay: .3s
}

.comment-design.active {
    animation-name: commentDesignEffect;
    animation-delay: .2s
}

.banner-left {
    max-width: 16.375rem;
    top: 18.875rem;
    left: -5.625rem
}

.banner-left.active {
    animation-name: bannerLeftEffect;
    animation-duration: .3s;
    animation-iteration-count: 1
}

.banner-right.active {
    animation-name: bannerLeftEffect;
    animation-duration: .5s;
    animation-iteration-count: 1
}

@keyframes bannerLeftEffect {
    0% {
        transform: scale(.4);
        opacity: 1
    }

    25% {
        transform: scale(.7);
        opacity: 1
    }

    50% {
        transform: scale(.9);
        opacity: 1
    }

    75% {
        transform: scale(1.05);
        opacity: 1
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

@keyframes commentDesignEffect {
    0% {
        width: 120px;
        height: 21px;
        opacity: 0
    }

    25% {
        width: 140px;
        height: 41px;
        opacity: .5
    }

    50% {
        width: 182px;
        height: 81px;
        opacity: 1
    }

    75% {
        width: 200px;
        height: 100px;
        opacity: 1
    }

    to {
        width: 182px;
        height: 81px;
        opacity: 1
    }
}

@keyframes commentOthersEffect {
    0% {
        width: 18px;
        height: 18px;
        opacity: 0
    }

    25% {
        width: 36px;
        height: 36px;
        opacity: .5
    }

    50% {
        width: 48px;
        height: 48px;
        opacity: 1
    }

    75% {
        width: 52px;
        height: 52px;
        opacity: 1
    }

    to {
        width: 48px;
        height: 48px;
        opacity: 1
    }
}

.pic-box {
    list-style: none;
    padding-left: 0
}

.pic-box-item {
    max-width: 48.75rem;
    position: absolute;
    opacity: 0;
    height: calc(100vh - 104px);
    display: flex;
    align-items: center;
    transition: opacity .4s ease-in;
    background-color: #fff;
    will-change: opacity
}

.pic-box-item video {
    opacity: 0;
    transition: opacity .4s ease-in
}

.pic-box-item.active video {
    opacity: 1;
    transition: opacity .4s ease-in
}

.intro-left {
    height: calc(100vh - 6.375rem);
    min-height: 41rem
}

.intro-left {
    width: 48%;
    max-width: 48.75rem
}

.intro-right {
    padding-left: 80px;
    display: flex;
    justify-content: flex-end;
    width: 100%
}

.intro-right--container {
    flex: 0 0 39.1%
}

.active.pic-box-item {
    opacity: 1;
    transition: opacity .4s ease-in-out
}

.intro-content {
    height: calc(100vh - 104px)
}

.intro-title {
    line-height: 56px;
    font-size: 2.5rem;
    color: #121212;
    margin-bottom: 2.5rem
}

.intro-desc {
    color: rgba(0, 0, 0, .5);
    font-size: 1.125rem;
    margin-bottom: 8rem;
    line-height: 34px
}

.intro-btn {
    color: var(--v2--color-text-brand-normal) !important;
    font-size: 1.25rem;
    line-height: 2.25rem;
    align-items: center
}

.intro-btn,
.intro-desc,
.intro-title {
    opacity: .2;
    transition-property: all;
    transition-duration: .4s;
    will-change: opacity, transform
}

.active .intro-btn,
.active .intro-desc,
.active .intro-title {
    opacity: 1;
    transform: none
}

.active .intro-title {
    transition-delay: .1s
}

.active .intro-desc {
    transition-delay: .2s
}

.active .intro-btn {
    transition-delay: .4s
}

.intro-arrow {
    transition: all .3s
}

.intro-btn:hover .intro-arrow {
    transition: all .3s;
    transform: translateX(8px)
}

.control {
    background: #fafafa;
    border-radius: 4.0625rem;
    position: absolute;
    padding: .5rem;
    top: 50%;
    transform: translateY(-50%);
    right: -38.4vw;
    transition: all .3s
}

.control-item {
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4d4d4
}

.control-item:hover {
    background-color: rgba(0, 0, 0, .05)
}

.control-item:not(:last-child) {
    margin-bottom: 1rem
}

.control-item.active {
    color: #fff
}

.control-item[data-index='0'].active {
    background-color: #6c48f2
}

.control-item[data-index='1'].active {
    background-color: #3788ff
}

.control-item[data-index='2'].active {
    background-color: #f360cb
}

.control-item[data-index='3'].active {
    background-color: #33b9fe
}

.control-item[data-index='4'].active {
    background-color: #1ad0bb
}

.intro-left__top {
    position: absolute;
    top: auto;
    bottom: auto
}

.intro-left__fixed {
    position: fixed;
    top: 6.375rem;
    bottom: auto
}

.intro-left__bottom {
    position: absolute;
    top: auto;
    bottom: 0
}

.pic-box--img {
    border-radius: 12px
}

.team-tab {
    max-width: 61rem;
    min-width: 470px;
    list-style: none;
    margin: 0 auto 4rem;
    overflow: hidden;
    padding-left: 0
}

.team-tab--item {
    color: #121212;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.75rem
}

.team-tab--img {
    max-width: 88px;
    opacity: .3;
    transition: all .3s
}

.team-tab--item.active {
    color: #13161b
}

.team-tab--item.active .team-tab--img {
    opacity: 1
}

.team-left {
    max-width: 548px;
    border-radius: 24px
}

.team-title {
    color: #121212;
    font-size: 1.75rem;
    line-height: 2.25rem;
    margin-bottom: 1rem
}

.team-desc {
    color: rgba(0, 0, 0, .5);
    font-size: 1.125rem;
    line-height: 2.125rem;
    text-align: left
}

.team-contents {
    height: 25.75rem
}

.team-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: -1;
    width: 100%
}

.team-content.active {
    opacity: 1;
    visibility: visible;
    z-index: 0
}

.team-right {
    transform: translateX(6.25rem);
    opacity: 0;
    transition: all .6s ease-in-out 0s;
    will-change: opacity, transform;
    visibility: hidden;
    padding-left: 5rem
}

.team-content.active .team-right {
    transform: none;
    transition: all .5s ease-in-out;
    opacity: 1;
    visibility: visible
}

.team-datas {
    list-style: none;
    margin-top: 80px;
    margin-bottom: 0;
    min-width: 679px
}

.team-num {
    color: #121212;
    font-size: 64px;
    font-weight: 500;
    line-height: 95px;
    margin-bottom: 0;
    display: inline-block;
    font-family: 'Barlow Condensed', -apple-system !important
}

.sub-text {
    position: relative;
    color: #121212;
    font-size: 18px;
    height: 24px;
    line-height: 24px;
    margin-left: 8px;
    top: 0
}

.sup-text {
    position: absolute;
    color: #121212;
    font-size: 18px;
    height: 24px;
    right: 0;
    line-height: 24px;
    transform: translate(0, -50%);
    top: -59%
}

.team-datas .team-item:nth-child(2) {
    margin: 0 80px
}

#num1 {
    min-width: 46px
}

#num2 {
    min-width: 115px
}

#num3 {
    min-width: 55px
}

#num4 {
    min-width: 55px
}

#num5 {
    min-width: 84px
}

#num6 {
    min-width: 112px
}

#num7 {
    min-width: 55px
}

#num8 {
    min-width: 56px
}

#num9 {
    min-width: 74px
}

#num10 {
    min-width: 26px
}

#num11 {
    min-width: 84px
}

#num12 {
    min-width: 75px
}

#num13 {
    min-width: 103px
}

#num14 {
    min-width: 57px
}

.feature-format {
    flex: 47%;
    height: 112px;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid linear-gradient(#fff 0, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(rgba(255 255 255 /75%) 0, rgba(255 255 255 / 48%) 97.115%);
    display: flex;
    box-shadow: 3px 4px 52px rgba(195, 195, 210, .24);
    position: relative;
    backdrop-filter: blur(80px)
}

.feature-format::after {
    content: '';
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    filter: blur(80px);
    z-index: -1
}

.feature-format-box .feature-format:nth-child(2n+1) {
    margin-right: 24px
}

.format-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: #121212;
    margin-bottom: 4px
}

.format-desc {
    color: rgba(0, 0, 0, .5);
    line-height: 24px;
    margin-bottom: 0
}

.feature-left,
.feature-right {
    flex: 0 0 50%;
    max-width: 548px
}

.feature-left {
    height: 776px;
    margin-right: 16px;
    padding: 120px 42px 40px;
    background: #f6f7fb url(../png/format-bg.png) center top/cover no-repeat;
    border-radius: 20px
}

.feature-right {
    margin-left: 16px
}

.feature-format-box .feature-format:nth-child(n+3) {
    margin-top: 32px
}

.feature-title {
    color: #121212;
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 12px
}

.feature-desc {
    color: rgba(0, 0, 0, .5);
    font-size: 18px;
    line-height: 34px
}

.feature--img {
    min-width: 548px;
    width: 100%
}

.feature-right--first {
    background: #f7f8fb;
    height: 372px;
    border-radius: 20px;
    overflow: hidden
}

.feature-right--second {
    height: 372px;
    border-radius: 20px;
    background: #f7f8fb;
    margin-top: 32px
}

.compare-list {
    height: 1020px;
    background-color: #f7f8fb;
    border-radius: 20px;
    overflow: hidden
}

.compare-item {
    border-radius: 20px;
    height: 100%;
    padding-top: 32px
}

.compare-px {
    padding: 32px 12px 12px;
    flex: 0 0 37.41%;
    background: linear-gradient(135deg, #7a54df .234%, #675eef 20.57%, #417afc 54.642%, #56d3ff 100%)
}

.compare-others {
    flex: 1;
    background-color: #f7f8fb;
    margin-left: 16px
}

.logo-title {
    line-height: 1.5;
    font-size: 18px;
    color: #121212;
    margin-left: 12px
}

.compare-logo {
    width: 32px
}

.compare-px-content {
    background: linear-gradient(rgba(255 255 255 / 20%) 0, rgba(254 255 255 / 6%) 90.83%);
    border: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(4px);
    border-radius: 16px
}

.compare-others-content {
    background: linear-gradient(rgba(255, 255, 255, .3) 0, rgba(255, 255, 255, .2) 90.83%)
}

.compare-px-content {
    padding: 12px;
    position: relative;
    z-index: 1
}

.compare-detail {
    padding: 16px;
    border-radius: 8px;
    transition: .3s
}

.compare-detail img {
    width: 24px
}

.compare-detail:not(:last-child) {
    margin-bottom: 4px
}

.compare-detail.active {
    background: rgba(255, 255, 255, .2)
}

.compare-others .compare-detail.active {
    background: rgba(255, 255, 255, .8)
}

.others-disable {
    color: rgba(0, 0, 0, .5)
}

.compare-others .compare-detail {
    justify-content: center
}

.px-bottom {
    padding: 144px 0 64px
}

.px-bottom .title {
    margin-bottom: 56px
}

.bottom-try--btn {
    width: 220px;
    height: 60px;
    background: var(--v2--color-bg-brand-normal);
    box-shadow: 0 14px 37px #1e2b40;
    border-radius: 52px
}

.px-bottom::after {
    display: inline-block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 802px;
    width: 100%;
    background: #000;
    z-index: -1
}

.wsc-footer-segment {
    color: #fff
}

.resource .title {
    margin-bottom: 48px
}

.resource-tab {
    background: rgba(255, 255, 255, .1);
    height: 3.5rem;
    padding: .25rem;
    border-radius: 1.875rem;
    display: flex;
    max-width: 864px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    justify-items: center;
    z-index: 1;
    margin-bottom: 5rem;
    margin-top: 3rem;
    gap: 24px
}

.resource-tab input[name=resource-tab--item] {
    position: absolute;
    visibility: hidden
}

.active-tab {
    position: absolute;
    left: .25rem;
    top: .25rem;
    height: 3rem;
    width: calc(100% / 5 - 1.25rem);
    transition: left .3s ease-out;
    background: rgb(76, 135, 255);
    border-radius: 1.5rem;
    z-index: -1
}

.resource-tab input[name=resource-tab--item]:checked+label {
    color: #fff
}

.resource-tab input[name=resource-tab--item]:nth-of-type(1):checked~.active-tab {
    left: calc((100% / 5) * 0 + .25rem)
}

.resource-tab input[name=resource-tab--item]:nth-of-type(2):checked~.active-tab {
    left: calc((100% / 5) * 1 + .45rem)
}

.resource-tab input[name=resource-tab--item]:nth-of-type(3):checked~.active-tab {
    left: calc((100% / 5) * 2 + .6rem)
}

.resource-tab input[name=resource-tab--item]:nth-of-type(4):checked~.active-tab {
    left: calc((100% / 5) * 3 + .8rem)
}

.resource-tab input[name=resource-tab--item]:nth-of-type(5):checked~.active-tab {
    left: calc((100% / 5) * 4 + 1rem)
}

.tab-title {
    border-radius: 1.5rem;
    color: rgba(255, 255, 255, .7);
    flex: 1;
    height: 3rem;
    line-height: 3rem;
    font-weight: 500;
    font-size: 1.25rem;
    transition: color .3s ease-in, background-color .2s ease;
    margin-bottom: 0
}

.tab-icon {
    margin-top: -2px
}

.tab-title:hover {
    color: #fff
}

.resource-row {
    will-change: transform
}

.resource-box:hover .resource-row {
    animation-play-state: paused
}

.resource::after {
    content: '';
    display: inline-block;
    position: absolute;
    background: #07032b url(../png/resource-bg.png) center center/contain no-repeat;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1
}

.resource-item {
    border-radius: 1.25rem;
    width: 26.25rem;
    height: 15.75rem;
    overflow: hidden;
    margin: 0 12px;
    text-align: center;
    background-color: #e7e8ea;
    will-change: transform;
    transition: transform .4s ease-out
}

.resource-item--img {
    height: 100%;
    width: 420px
}

.resource-item:hover {
    transform: scale(1.05)
}

.to-left {
    width: calc(420px * 12 + 11 * 24px);
    animation: left-effect 30s linear infinite
}

.to-right {
    width: calc(420px * 14 + 13 * 24px);
    animation: right-effect 30s linear infinite
}

.news {
    background: #fafafa
}

@keyframes left-effect {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

@keyframes right-effect {
    0% {
        transform: translateX(-50%)
    }

    100% {
        transform: translateX(0)
    }
}

.px-container {
    margin-left: auto;
    margin-right: auto;
    width: 100%
}

.homepage-main+#wsc-footer .footer-container {
    border-bottom: solid 1px rgba(255, 255, 255, .5)
}

.homepage-main+#wsc-footer {
    /* background-color: transparent !important; */
    z-index: 1;
    position: relative
}

.wsc-footer-left {
    border: 0
}

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

    .compare .px-container,
    .feature .px-container {
        max-width: 1128px
    }

    .feature-format {
        max-width: 220px
    }

    .team-right {
        width: 697px;
        box-sizing: content-box
    }
}

@media(max-width:1640px) {
    .control {
        right: -41vw
    }
}

@media(max-width:1600px) {
    .tab-cell2 {
        display: block !important
    }

    .team-right {
        flex: 1;
        max-width: 545px;
        table-layout: fixed;
        word-wrap: break-word;
        width: 100%
    }

    .scroll-cursor::after {
        border-radius: 20% 40% 30% 20%
    }

    .banner-scroll {
        max-width: 1234px;
        margin: 0 auto;
        min-width: 943px;
        padding: 0 168px;
        box-sizing: content-box
    }

    .px-container {
        min-width: 1040px;
        max-width: 1360px;
        padding: 0 120px
    }

    .introduction .px-container {
        max-width: 100%
    }

    .intro-left {
        min-width: 594px
    }

    .team-left {
        max-width: 548px;
        width: 50%
    }

    .banner-right {
        right: -6.8125rem
    }

    .banner-main {
        max-width: 1234px;
        min-width: 943px;
        width: 110%
    }
}

@media(max-width:1300px) {
    .team-right {
        padding-left: 60px
    }
}

@media(max-width:1230px) {

    .m-feature-1,
    .m-feature-2,
    .m-feature-3 {
        position: static !important;
        margin-top: 30px
    }

    .feature-left {
        height: 100%;
        padding: 42px 42px 42px
    }

    .banner-scroll {
        padding: 0 16px
    }

    .banner {
        padding-bottom: 64px
    }

    .intro-mobile {
        margin: 60px 0
    }

    .m-intro-title {
        color: #121212;
        font-size: 24px;
        font-weight: 400;
        line-height: 32px;
        margin-top: 30px;
        text-align: left
    }

    .m-intro-desc {
        text-align: left;
        color: rgba(0, 0, 0, .5);
        margin-bottom: 0
    }

    .m-intro-list .col {
        flex: 0 0 60%
    }

    .m-intro-list {
        justify-content: center
    }

    .intro-desc,
    .intro-title {
        opacity: 1
    }

    .intro-btn {
        display: none !important
    }

    .m-intro--item {
        position: relative;
        text-align: center
    }

    .m-intro-list .col.col {
        margin-top: 0;
        margin-bottom: 64px
    }

    .introduction {
        display: none
    }

    .px-container {
        padding: 0 30px;
        min-width: auto
    }

    .compare-list {
        min-width: 1180px
    }

    .scroll-cursor {
        display: none
    }

    .mobile-banner {
        display: block;
        width: 98%;
        margin: 98px auto 0
    }

    .feature-left,
    .feature-right {
        flex: 0 0 100%;
        max-width: 100%;
        margin: 0
    }

    .feature-right {
        margin-top: 48px;
        display: flex;
        justify-content: space-between
    }

    .feature-right--second {
        margin-top: 0
    }

    .feature-right--first,
    .feature-right--second {
        flex: 0 0 48%;
        height: auto
    }

    .m-feature-2,
    .m-feature-3 {
        padding: 0 42px 42px
    }

    .feature-row {
        flex-wrap: wrap
    }

    .feature--img {
        max-width: 548px;
        min-width: 100%
    }
}

@media(max-width:999px) {
    .news-list {
        flex-wrap: wrap
    }

    .title {
        font-size: 2.5rem
    }

    .m-intro-list .col {
        flex: 0 0 80%
    }

    .team-contents {
        height: 22.75rem;
        background: #fff;
        box-shadow: 0 7px 28px rgba(0, 0, 0, .04);
        border-radius: 12px;
        padding: 30px 0 42px;
        width: 96%;
        margin: 0 auto
    }

    .team-datas {
        margin-top: 32px
    }

    .news-list .news-item:not(:last-child) {
        margin-right: 0
    }

    .news-item {
        flex: 0 0 62%
    }

    .news-list {
        justify-content: center
    }

    .news-list .news-item:not(:first-child) {
        margin-top: 32px
    }

    .team-left {
        display: none
    }

    .team-right {
        padding-left: 0
    }
}

@media(max-width:576px) {
    .hero-slider__pager {
        margin-bottom: 24px
    }

    .h1-br {
        display: block
    }

    .feature--img {
        height: 150px;
        width: 327px
    }

    .m-feature-2,
    .m-feature-3 {
        margin-top: 0;
        padding: 0 19px
    }

    .resource::after {
        background: #07032b url(../png/resource-bg-mobile.png) center center/106% 64% no-repeat;
        width: 113%;
        height: 123%;
        top: 31px;
        left: 0;
        z-index: -1
    }

    .feature-format .ml-3 {
        margin-left: 12px !important
    }

    .m-intro--item {
        display: flex;
        flex-direction: column
    }

    .news-item {
        flex: 0 0 100%
    }

    .resource-item {
        width: 219px;
        height: 131px;
        margin: 0 8px;
        border-radius: 8px
    }

    .resource-item--img {
        width: 100%
    }

    .homepage-main+#wsc-footer {
        background: #000 !important
    }

    .feature-right--first,
    .feature-right--second {
        flex: 0 0 98%
    }

    .feature-right {
        flex-wrap: wrap;
        margin-top: 24px
    }

    .feature-right--second {
        margin-top: 24px
    }

    .to-left {
        width: calc(216px * 12 + 11 * 16px)
    }

    .compare-detail {
        padding: 8px;
        font-size: 14px
    }

    .compare-item {
        max-width: 300px;
        max-height: 715px;
        padding: 24px 8px 8px;
        border-radius: 12px
    }

    .compare-px-content {
        border-radius: 10px
    }

    .compare-list {
        height: 100%
    }

    .logo-title {
        font-size: 14px
    }

    .compare-detail img {
        width: 18px;
        height: 18px
    }

    .to-right {
        width: calc(216px * 14 + 13 * 16px)
    }

    .resource .title {
        margin-bottom: 32px
    }

    .resource-tab {
        margin-bottom: 64px;
        max-width: 310px;
        height: 40px;
        gap: 0
    }

    .resource-tab input[name=resource-tab--item]:checked+label .tab-text {
        display: inline-block
    }

    .tab-title {
        display: flex;
        align-items: center;
        justify-content: center
    }

    .tab-text {
        font-size: 14px
    }

    .resource-tab input[name=resource-tab--item]:nth-of-type(2):checked~.active-tab {
        left: 56px
    }

    .resource-tab input[name=resource-tab--item]:checked+label {
        flex: 0 0 102px
    }

    .resource-tab input[name=resource-tab--item]:nth-of-type(3):checked~.active-tab {
        left: 106px
    }

    .resource-tab input[name=resource-tab--item]:nth-of-type(4):checked~.active-tab {
        left: 156px
    }

    .resource-tab input[name=resource-tab--item]:nth-of-type(5):checked~.active-tab {
        left: 205px
    }

    .active-tab,
    .tab-title {
        height: 32px;
        line-height: 32px
    }

    .tab-icon {
        width: 18px;
        height: 18px;
        margin-top: 0;
        margin-right: 4px
    }

    .active-tab {
        width: 102px
    }

    .px-bottom::after {
        height: 100%
    }

    .feature-format {
        padding: 16px
    }

    .team-contents {
        height: 23.58rem;
        padding: 30px 20px 42px;
        width: 100%
    }

    .title {
        font-size: 32px !important;
        line-height: 42px !important;
        margin-bottom: 32px !important
    }

    .team-tab--img {
        max-width: 48px
    }

    .team-tab--item {
        font-size: 14px;
        line-height: 28px
    }

    .team-tab {
        min-width: 344px;
        margin-bottom: 64px
    }

    .team-title {
        font-size: 16px;
        margin-bottom: 12px;
        line-height: 24px
    }

    .team-num {
        font-size: 42px;
        line-height: 62px;
        min-width: auto !important
    }

    .team-item {
        flex: 0 0 49%
    }

    .sub-text {
        font-size: 14px
    }

    .py-128 {
        padding: 64px 0
    }

    .news {
        padding-top: 0;
        background-color: #fff
    }

    .news-title {
        font-size: 20px;
        margin-top: 12px;
        line-height: 28px
    }

    .px-bottom {
        padding: 64px 0
    }

    .news-time {
        font-size: 14px;
        line-height: 22px
    }

    .feature-format-box .feature-format.feature-format {
        margin-right: 0
    }

    .feature-format {
        flex: 0 0 48%;
        height: 74px;
        border-radius: 12px
    }

    .feature-format::after {
        display: none
    }

    .format-desc {
        font-size: 12px
    }

    .feature-format img {
        width: 42px;
        height: 42px
    }

    .feature-left,
    .feature-right--first,
    .feature-right--second {
        height: auto;
        padding: 46px 19px 20px;
        border-radius: 12px
    }

    .feature-right--first,
    .feature-right--second {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0
    }

    .tab-text {
        display: none
    }

    .px-container {
        padding: 0 24px
    }

    .banner h1 {
        font-size: 32px;
        font-weight: 700;
        line-height: 47px;
        margin-bottom: 8px
    }

    .banner .desc {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 24px
    }

    .banner {
        padding-bottom: 0 !important
    }

    .download-free-btn,
    .use-online-btn {
        width: 7.5rem;
        height: 2.44rem
    }

    .use-online-btn {
        border: 1px solid #fff
    }

    .px-btn {
        font-size: 14px;
        box-shadow: 0 14px 37px rgba(39, 78, 188, .58)
    }

    .banner-btn-container {
        width: 16rem
    }

    .intro-mobile {
        margin: 64px 0 0
    }

    .m-intro-list .col {
        flex: 0 0 100%
    }

    .m-intro-desc {
        font-size: 14px;
        line-height: 24px
    }

    .m-intro-title {
        margin: 30px 0 16px;
        font-weight: 700
    }

    .sup-arrow-down,
    .sup-text svg {
        width: 13px
    }

    section .col {
        padding-left: 0;
        padding-right: 0
    }

    section .row {
        margin-left: 0;
        margin-right: 0
    }

    .feature-title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 8px
    }

    .feature-desc {
        font-size: 14px;
        line-height: 22px
    }

    .pic-box--img {
        border-radius: 4px;
        height: 100%
    }

    .btn-arrow {
        width: 25px;
        margin-left: 0
    }

    .mobile-banner {
        margin: 59px auto 0;
        z-index: 1;
        width: 96%;
        max-width: 349px
    }

    .mobile-banner-box::after {
        content: "";
        display: inline-block;
        width: 554px;
        height: 436px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: -58%;
        background: url(../png/mobile-canvas-bg.png) center bottom/contain no-repeat;
        z-index: -1
    }

    .team-right .text-left {
        text-align: center !important
    }

    .team-desc {
        font-size: 14px;
        text-align: center;
        line-height: 26px
    }

    .team-datas {
        flex-wrap: wrap;
        margin-top: 32px;
        min-width: auto
    }

    .team-right {
        padding: 0 20px
    }

    .team-content {
        left: 0
    }

    .team-datas .team-item:nth-child(2) {
        margin: 0
    }

    .format-title {
        font-size: 14px;
        line-height: 18px
    }

    .feature-format-box .feature-format:nth-child(n+3) {
        margin-top: 16px
    }
}

@media(max-width:437px) {

    .feature-right--first,
    .feature-right--second {
        flex: 0 0 100%
    }

    .feature-right {
        flex-wrap: wrap
    }

    .feature-right--second {
        margin-top: 24px
    }
}

@media(min-width:1231px) {
    .pic-box-item {
        max-width: 864px
    }

    .intro-mobile,
    .mobile-banner {
        display: none !important
    }
}

@media(min-width:1280px) {
    .homepage-main+#wsc-footer .container {
        max-width: 1128px !important
    }
}

@media(min-width:1921px) {
    .scroll-cursor {
        max-width: 1400px;
        width: 65%
    }

    .banner-main {
        max-width: 1364px;
        width: 98%
    }

    .scroll-cursor::after {
        background-size: cover;
        width: 125%
    }

    .feature-right--first,
    .feature-right--second {
        height: 399px
    }

    .feature-left,
    .feature-right {
        height: 830px
    }

    .banner-left {
        max-width: 262px
    }

    .banner-right {
        max-width: 270px
    }

    .comment-design {
        max-width: 182px
    }

    .px-container {
        max-width: 1504px;
        padding: 0 280px;
        box-sizing: content-box;
        width: auto
    }

    .compare .px-container,
    .feature .px-container {
        max-width: 1248px;
        padding: 0 408px
    }

    .team .px-container {
        max-width: 1285px
    }

    .intro-left {
        max-width: 864px;
        width: 41%
    }

    .feature-left,
    .feature-right {
        max-width: 608px
    }

    .team-left {
        max-width: 548px
    }

    .team-right {
        min-width: 794px
    }
}

@media(min-width:2064px) {
    .team .px-container {
        max-width: 1504px;
        padding: 0 368px
    }

    .team-left {
        max-width: 608px;
        border-radius: 28px;
        width: 41%
    }
}

@media(max-height:850px) {
    .banner {
        padding-bottom: 5%
    }
}

@media(min-height:1080px) {

    .banner-scroll,
    .scroll-wrapper {
        min-height: auto;
        height: auto
    }
}

.active-footer {
    background-color: transparent !important;
    z-index: 1;
    position: relative
}

.active-footer .wsc-footer-left {
    border: 0
}

.wsc-footer-list a:hover {
    color: #fff !important
}

.hide-scroll::-webkit-scrollbar {
    display: none
}

.hide-scroll {
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow-x: hidden;
    overflow-y: auto
}

.news-item--box {
    transform: rotate(0)
}

.px-btn:active {
    transform: scale(.96) translateY(-6px)
}

.hero-slider__button {
    background-color: transparent;
    border: 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    line-height: normal;
    margin: 0;
    min-width: 80px;
    padding: 0;
    position: absolute;
    top: calc(50% - 40px);
    z-index: 95
}

.hero-slider__button__circle__arrow {
    stroke: #fff;
    position: absolute
}

.hero-slider__button__circle {
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative
}

.hero-slider__button--previous .hero-slider__button__circle {
    transform: rotate(180deg)
}

.hero-slider__button--previous {
    left: -120px
}

@-webkit-keyframes fillButtonProgressCircle {
    0% {
        stroke-dashoffset: 150
    }

    to {
        stroke-dashoffset: 0
    }
}

@keyframes fillButtonProgressCircle {
    0% {
        stroke-dashoffset: 150
    }

    to {
        stroke-dashoffset: 0
    }
}

.hero-slider__button__circle.is-active .hero-slider__button__circle__progress {
    animation-name: fillButtonProgressCircle
}

.hero-slider__button--next {
    right: -120px
}

.pad-viewport {
    padding-left: 16px;
    padding-right: 16px
}

.hero-slider-section {
    overflow: hidden
}

.wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px
}

.hero-slider__pager-wrapper {
    display: flex;
    justify-content: center
}

.hero-slider__slides {
    position: relative
}

@media screen and (min-width:1440px) {
    .hero-slider__pager-wrapper {
        display: none
    }
}

@media screen and (max-width:1439px) {
    .hero-slider__button {
        display: none
    }
}

@media screen and (min-width:1220px) {
    .pad-viewport {
        padding-right: 32px;
        padding-left: 32px
    }
}

@media screen and (min-width:640px) {
    .pad-viewport {
        padding-right: 24px;
        padding-left: 24px
    }
}

.function-one {
    --index-from-selected: 1;
    --scale: 0.9;
    --blur: 0.5px;
    --z-index: 89;
    opacity: .9
}

.function-two {
    --index-from-selected: 0;
    --scale: 0.9;
    --blur: 0.5px;
    --z-index: 89;
    opacity: .9
}

.function-three {
    --index-from-selected: -1;
    --scale: 0.9;
    --blur: 0.5px;
    --z-index: 89;
    opacity: .9
}

.function-one.is-selected {
    --index-from-selected: 0;
    --scale: 1;
    --blur: 0;
    --z-index: 90;
    opacity: 1
}

.function-two.is-selected {
    --index-from-selected: 0;
    --scale: 1;
    --blur: 0;
    --z-index: 90;
    opacity: 1
}

.function-three.is-selected {
    --index-from-selected: 0;
    --scale: 1;
    --blur: 0;
    --z-index: 90;
    opacity: 1
}

.function-one.is-selected .function-opacity {
    height: 0
}

.function-two.is-selected .function-opacity {
    height: 0
}

.function-three.is-selected .function-opacity {
    height: 0
}

.function-draw:hover {
    transform: none;
    cursor: default
}

.lists-active-left {
    --index-from-selected: 1;
    --scale: 0.9;
    --blur: 0.5px;
    --z-index: 89
}

.lists-active-right {
    --index-from-selected: -1;
    --scale: 0.9;
    --blur: 0.5px;
    --z-index: 89
}