.LandPage,
.LandPage body {
    background: #fff;
    color: #000;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#webs-splash {
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(210deg, #fff8a8 0%, #fff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

#webs-splash.hide {
    display: none;
}

#webs-splash img {
    display: block;
    width: 160px;
    height: auto;
    animation: webSplashAni 1.5s ease-in-out infinite;
}

@keyframes webSplashAni {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

#webs-intro {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 5;
    left: 0;
    top: 0;
    background: #fff;
    overflow-y: auto;
    font-family: Helvetica, sans-serif;
}

#webs-intro .wi-con {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

#webs-intro .web-header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 10;
}

#webs-intro .web-header .wi-con {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

#webs-intro .web-header .logo img {
    display: block;
    height: 48px;
    width: 132px;
}

#webs-intro .web-header .nav {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 100px;
    height: 62px;
    gap: 40px;
    font-size: 16px;
    flex: 1;
    font-weight: 500;
}

#webs-intro .web-header .nav a {
    color: inherit;
    text-decoration: none;
    position: relative
}

#webs-intro .web-header .nav a.actived {
    font-size: 20px;
    font-weight: bolder;
}

#webs-intro .web-header .nav a.actived::after {
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 0px;
    height: 4px;
    background: linear-gradient(180deg, #FFE808 0%, #FFBF10 100%);
    ;
    filter: blur(3px);
}

#webs-intro .web-header .btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: 100px;
    height: 42px;
    cursor: pointer;
    color: #fff;
    padding: 0 4px;
}

#webs-intro .web-header .btn-login .icon {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
}

#webs-intro .web-header .btn-login svg {
    display: block;
    width: 28px;
    height: 28px;
    fill: #fff;
}

#webs-intro .web-header .btn-login .txt {
    display: inline-block;
    font-size: 14px;
    padding: 0 10px;
    font-weight: bold;
}

#webs-intro .w-intro-1 {
    background: linear-gradient(210deg, rgba(255, 237, 36, 0.43) 0%, rgba(255, 255, 255, 0) 100%);
}

#webs-intro .w-intro-1 .wi-con {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 0 50px;
}

#webs-intro .w-intro-1 .the-txt {
    width: 40%;
}

#webs-intro .w-intro-1 .the-txt h1 {
    font-size: 65px;
    font-weight: bolder;
}

#webs-intro .w-intro-1 .the-txt h2 {
    font-size: 35px;
    padding: 0px 0 30px;
}

#webs-intro .w-intro-1 .the-txt p {
    font-size: 16px;
    line-height: 1.5;
    padding-right: 50px;
}

#webs-intro .w-intro-1 .the-txt .the-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 275px;
    height: 70px;
    background: linear-gradient(180deg, #FFE808 0%, #FFEF10 100%);
    border-radius: 100px;
    border: solid 2px #fff;
    box-shadow: 0px 0px 14px 0px rgba(255, 236, 36, 0.48);
    ;
    font-weight: bold;
    font-size: 20px;
    margin-top: 30px;
    cursor: pointer;
}

#webs-intro .w-intro-1 .the-img {
    flex: 1;
    margin-bottom: -100px;
}

#webs-intro .w-intro-1 .the-img img {
    display: block;
    width: 110%;
    transform: translateX(-5%);
}

#webs-intro .w-intro-2 {
    background: url(/images/homeLp/LP-bg-1.jpg) center top no-repeat;
    background-size: cover;
    border-top: solid 120px #000;
}

#webs-intro .w-intro-2 .wi-con {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 0;
    gap: 100px;
}

#webs-intro .w-intro-2 .the-img {
    width: 38%;
    flex: none;
}

#webs-intro .w-intro-2 .the-img img {
    display: block;
    width: 100%;
    height: auto;
}

#webs-intro .w-intro-2 .the-txt {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

#webs-intro .w-intro-2 .the-txt h2 {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 40px;
}

#webs-intro .w-intro-2 .the-txt h2 strong {
    font-weight: bolder;
    font-size: 64px;
}

#webs-intro .w-intro-2 .the-txt p {
    text-align: justify;
    padding-right: 60px;
}

#webs-intro .w-intro-2 .the-txt .the-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 275px;
    height: 70px;
    background: #000;
    color: #fff;
    border-radius: 100px;
    border: solid 2px #F8D801;
    box-shadow: 0px 0px 14px 0px rgba(0, 0, 36, 0.48);
    font-weight: bold;
    font-size: 20px;
    margin-top: 60px;
    cursor: pointer;
}

#webs-intro .w-intro-3 {
    background: linear-gradient(210deg, rgba(255, 237, 36, 0.43) 0%, rgba(255, 255, 255, 0) 100%);
    padding: 100px 0;
}

#webs-intro .w-intro-3 h2 {
    font-size: 32px;
    text-align: center;
    padding: 0 100px 50px;
}

#webs-intro .w-intro-3 h2 strong {
    font-size: 64px;
}

#webs-intro .w-intro-3 .the-list {
    display: flex;
    ;
    align-items: center;
    justify-content: space-between;
}

#webs-intro .w-intro-3 .the-list .olist {
    flex: none;
    width: 280px;
    height: 290px;
    background: url(/images/homeLp/LP-card-bg.png) center top no-repeat;
    background-size: 100% auto;
    color: #fff;
    padding: 10px 20px 20px 55px;
}

#webs-intro .w-intro-3 .the-list .olist h3 {
    height: 100px;
    display: flex;
    align-items: center;
    font-size: 16px;
}

#webs-intro .w-intro-4 {
    background: #fff;
    padding: 100px 0;
}

#webs-intro .w-intro-4 h2 {
    font-size: 32px;
    text-align: center;
    padding: 0 200px 50px;
}

#webs-intro .w-intro-4 h2 strong {
    font-size: 64px;
}

#webs-intro .w-intro-4 .st {
    text-align: center;
    padding: 0 180px 50px;
    font-size: 16px;
}

#webs-intro .w-intro-4 .the-list {
    margin: 0 40px;
}

#webs-intro .w-intro-4 .the-list .olist {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 30px;
}

#webs-intro .w-intro-4 .the-list .olist img {
    display: block;
    width: 192px;
    height: 132px;
}

#webs-intro .w-intro-4 .the-list .olist strong {
    font-size: 24px;
    font-style: italic;
    display: block;
    margin-bottom: 15px;
}

#webs-intro .w-intro-4 .the-list .olist p {
    font-size: 14px;
    line-height: 1.5;
}

#webs-intro .w-intro-5 {
    background: #FFDE00 url(/images/homeLp/LP-bg-1.jpg) center -10px no-repeat;
    background-size: cover;
}

#webs-intro .w-intro-5 .wi-con {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 0 20px;
}

#webs-intro .w-intro-5 .the-txt {
    width: 45%;
}

#webs-intro .w-intro-5 .the-txt h2 {
    font-size: 62px;
}

#webs-intro .w-intro-5 .the-txt h3 {
    font-size: 30px;
    padding: 20px 0
}

#webs-intro .w-intro-5 .the-txt p {
    font-size: 12px;
    line-height: 1.5;
}

#webs-intro .w-intro-5 .the-txt .the-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 275px;
    height: 70px;
    background: #000;
    color: #fff;
    border-radius: 100px;
    border: solid 2px #F8D801;
    box-shadow: 0px 0px 14px 0px rgba(0, 0, 36, 0.48);
    font-weight: bold;
    font-size: 20px;
    margin-top: 60px;
    cursor: pointer;
}

#webs-intro .w-intro-5 .the-img {
    flex: 1
}

#webs-intro .w-intro-5 .the-img img {
    display: block;
    width: 100%;
}

#webs-intro .w-intro-6 {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 50px 0 10px;
}

#webs-intro .w-intro-6 .logo {
    display: block;
    margin: 0 auto 60px;
    width: 120px;
}

#webs-intro .w-intro-6 .foot-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    color: #fff;
    padding-bottom: 40px;
}

#webs-intro .w-intro-6 .foot-nav a {
    color: inherit;
    text-decoration: none;
    font-size: 14px;
}

#webs-intro .w-intro-6 .copyright {
    font-size: 12px;
    opacity: .5;
    line-height: 1.5;
}

#webs-intro .w-intro-1 .the-btn {
    position: relative;
}

#webs-intro .w-intro-1 .the-btn .sicon {
    position: absolute;
    right: -130px;
    top: -6px;
    width: 92px;
    height: 92px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 4px #fff;
    box-shadow: 0px 0px 7px 0px rgba(197, 139, 255, 0.39), 0px 0px 15px 0px rgba(255, 236, 36, 0.48);
}

#webs-intro .w-intro-1 .the-btn .sicon svg {
    display: block;
    width: 40px;
    height: 40px;
}

@media screen and (max-width: 680px) {
    #webs-intro .wi-con {
        max-width: 100%;
    }

    #webs-intro .web-header {
        top: 0px;
    }

    #webs-intro .web-header .wi-con {
        gap: 0px;
        padding: 12px 20px;
    }

    #webs-intro .web-header .logo img {
        height: 36px;
        width: 100px;
    }

    #webs-intro .web-header .nav {
        display: none;
    }

    #webs-intro .web-header .btn-login {
        height: 32px;
    }

    #webs-intro .web-header .btn-login .icon {
        width: 26px;
        height: 26px;
    }

    #webs-intro .web-header .btn-login svg {
        width: 22px;
        height: 22px;
    }

    #webs-intro .web-header .btn-login .txt {
        font-size: 12px;
        padding: 0 8px;
    }

    #webs-intro .w-intro-1 {
        overflow: hidden;
    }

    #webs-intro .w-intro-1 .wi-con {
        flex-direction: column-reverse;
        padding: 50px 24px 40px;
    }

    #webs-intro .w-intro-1 .the-txt {
        width: 100%;
        position: relative;
        padding-top: 100px;
        text-align: center;
        ;
    }

    #webs-intro .w-intro-1 .the-txt h1 {
        font-size: 48px;
        margin-bottom: 10px;
        font-weight: 900;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }

    #webs-intro .w-intro-1 .the-txt h2 {
        font-size: 24px;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        padding: 0px 0 10px;
    }

    #webs-intro .w-intro-1 .the-txt p {
        padding-right: 0px;
    }

    #webs-intro .w-intro-1 .the-img {
        margin-bottom: 0px;
    }

    #webs-intro .w-intro-1 .the-img img {
        width: 116%;
        transform: translateX(-7%);
    }

    #webs-intro .w-intro-1 .the-txt .the-btn {
        width: 320px;
        height: 104px;
        position: absolute;
        top: 0;
        left: 50%;
        margin: 0 0 0 -160px;
        background: url(/images/homeLp/LP-btn-bg.png) center no-repeat;
        background-size: cover;
        box-shadow: none;
        border: 0;
        animation: LPbtnAni 2s ease-in-out infinite;
    }

    #webs-intro .w-intro-1 .the-btn .sicon {
        display: none
    }

    #webs-intro .w-intro-2 {
        background: #FFDE00 url(/images/homeLp/LP-bg-1.jpg) right -10px no-repeat;
        background-size: cover;
        border-top: 0
    }

    #webs-intro .w-intro-2 .wi-con {
        flex-direction: column;
        padding: 40px 24px 60px;
        gap: 20px;
    }

    #webs-intro .w-intro-2 .the-img {
        width: 100%;
    }

    #webs-intro .w-intro-2 .the-txt h2 {
        font-size: 24px;
        text-align: center;
        margin-bottom: 20px;
    }

    #webs-intro .w-intro-2 .the-txt p {
        text-align: center;
        padding-right: 0;
    }

    #webs-intro .w-intro-2 .the-txt .the-btn {
        width: 265px;
        height: 60px;
        margin: 40px auto 0;
        cursor: pointer;
    }

    #webs-intro .w-intro-3 {
        padding: 50px 24px 80px;
    }

    #webs-intro .w-intro-3 h2 {
        font-size: 24px;
        text-align: center;
        padding: 0 20px 40px;
    }

    #webs-intro .w-intro-3 .the-list {
        flex-direction: column;
        padding-right: 20px;
    }

    #webs-intro .w-intro-4 {
        background: #fff;
        padding: 60px 24px;
    }

    #webs-intro .w-intro-4 h2 {
        font-size: 24px;
        padding: 0 0px 30px;
    }

    #webs-intro .w-intro-4 .st {
        padding: 0 0px 50px;
        font-size: 14px;
    }

    #webs-intro .w-intro-4 .the-list {
        margin: 0;
    }

    #webs-intro .w-intro-4 .the-list .olist {
        margin-bottom: 20px;
        gap: 5px;
    }

    #webs-intro .w-intro-4 .the-list .olist img {
        display: block;
        width: 156px;
        height: 106px;
    }

    #webs-intro .w-intro-4 .the-list .olist strong {
        font-size: 16px;
        margin-bottom: 10px;
    }

    #webs-intro .w-intro-4 .the-list .olist p {
        font-size: 12px;
    }

    #webs-intro .w-intro-5 .wi-con {
        flex-direction: column;
        padding: 60px 24px 0;
    }

    #webs-intro .w-intro-5 .the-txt {
        width: 100%;
        margin-bottom: 50px;
        text-align: center;
    }

    #webs-intro .w-intro-5 .the-txt h2 {
        font-size: 62px;
    }

    #webs-intro .w-intro-5 .the-txt h3 {
        font-size: 24px;
        padding: 20px 0
    }

    #webs-intro .w-intro-5 .the-txt .the-btn {
        width: 265px;
        height: 60px;
        margin: 40px auto 0;
    }

    #webs-intro .w-intro-6 .logo {
        margin: 0 auto 50px;
        width: 100px;
    }

    #webs-intro .w-intro-6 .foot-nav {
        flex-direction: column;
        gap: 20px;
    }

    #webs-intro .w-intro-6 .copyright {
        font-size: 10px;
        opacity: .5;
    }
}

.rc-pop-cookie {
    position: fixed;
    box-sizing: border-box;
    z-index: 99;
    left: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: rgba(34, 34, 34, 0.12);
}

.rc-pop-cookie .pop-content-box {
    width: 100%;
    background: #000000c7;
    display: flex;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.rc-pop-cookie .pop-content {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    padding: 12px 12px 12px 40px;
    font-size: 14px;
    color: #fff
}

.rc-pop-cookie .big {
    font-size: 20px;
    font-weight: 700
}

.rc-pop-cookie a {
    cursor: pointer;
    color: #008bff;
}

.rc-pop-cookie p {
    margin: 0;
    margin-right: 20px;
}

.rc-pop-cookie .m-btn {
    margin-left: 20px
}

.rc-pop-cookie .m-btn.mini {
    white-space: nowrap
}

@media screen and (max-width: 680px) {
    .rc-pop-cookie {
        padding: 0;
        z-index: 101;
        bottom: 0;
        background: rgba(23, 22, 31, 0.8);
    }

    .rc-pop-cookie .pop-content {
        flex-direction: column;
        text-align: center;
        padding: 12px 12px 20px;
        border-radius: 14px 14px 0 0;
        font-size: 12px;
        backdrop-filter: blur(5px);
    }

    .rc-pop-cookie .big {
        padding-bottom: 10px;
        font-size: 16px;
    }

    .rc-pop-cookie p {
        padding: 10px 20px 25px;
        font-size: 14px;
    }

    .rc-pop-cookie .m-btn {
        width: 100%;
        margin: 15px 0 0;
        font-size: 15px;
        height: 46px;
    }
}

@media screen and (max-width: 1024px) {
    #webs-intro .w-intro-1 .the-btn .sicon {
        right: -86px;
        top: -10px;
        width: 70px;
        height: 70px;
    }

    #webs-intro .w-intro-1 .the-btn .sicon svg {
        width: 36px;
        height: 36px;
    }
}

@keyframes LPbtnAni {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

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

@media screen and (max-width: 680px) {
    #webs-intro.scrolled .web-header {
        background: #ffffff50;
        backdrop-filter: blur(10px);
    }
}

#webs-intro .trust-strip {
    max-width: 900px;
    margin: 40px auto 0;
    padding: 20px 30px;
    background: #fff;
    border: solid 2px #FFE808;
    border-radius: 100px;
    text-align: center;
    box-shadow: 0px 4px 14px 0px rgba(255, 236, 36, 0.18);
}

#webs-intro .trust-strip p {
    font-size: 15px;
    font-weight: 500;
    color: #01102C;
    line-height: 1.5;
    margin: 0;
}

#webs-intro .w-intro-faq {
    background: #FFFDF5;
    padding: 100px 0 80px;
}

#webs-intro .w-intro-faq .wi-con {
    max-width: 860px;
    padding: 0 20px;
}

#webs-intro .w-intro-faq h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: #01102C;
    font-weight: bolder;
}

#webs-intro .w-intro-faq details {
    border-bottom: 1px solid #ECE3C2;
}

#webs-intro .w-intro-faq summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 44px 20px 6px;
    font-size: 18px;
    font-weight: bold;
    color: #01102C;
    position: relative;
}

#webs-intro .w-intro-faq summary::-webkit-details-marker {
    display: none;
}

#webs-intro .w-intro-faq summary::after {
    content: "+";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    font-weight: 400;
    color: #01102C;
    line-height: 1;
}

#webs-intro .w-intro-faq details[open] {
    background: #FFE808;
    border-radius: 18px;
    border-bottom: none;
    margin-bottom: 8px;
}

#webs-intro .w-intro-faq details[open] summary {
    padding: 20px 44px 14px 22px;
}

#webs-intro .w-intro-faq details[open] summary::after {
    content: "–";
    right: 24px;
}

#webs-intro .w-intro-faq .ans {
    padding: 0 22px 22px;
    font-size: 16px;
    line-height: 1.65;
    color: #3a3522;
}

#webs-intro .w-intro-faq details:not([open]) .ans {
    display: none;
}

@media screen and (max-width: 680px) {
    #webs-intro .trust-strip {
        margin: 30px 24px 0;
        padding: 16px 20px;
        border-radius: 20px;
    }

    #webs-intro .trust-strip p {
        font-size: 13px;
    }

    #webs-intro .w-intro-faq {
        padding: 60px 24px 50px;
    }

    #webs-intro .w-intro-faq h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    #webs-intro .w-intro-faq summary {
        font-size: 16px;
    }

    #webs-intro .w-intro-faq .ans {
        font-size: 14px;
    }
}