html,body {
    margin: 0;
    padding: 0;
    background: #0A070F;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.fx-c {
    display: flex;
    align-items: center;
    justify-content: center;
}
#home-splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 500;
    background: #0A070F;
    display: flex;
    align-items: center;
    justify-content: center;
}
#home-splash.hide {
    display: none;
}
#home-splash img {
    height: 50px;
    animation: splashANi 2s infinite;
    display: block;
    transform-origin: center bottom;
}
@keyframes splashANi {
    0% {
        transform: translateY(0) scale(1,1);
    }
    30% {
        transform: translateY(5px) scale(1.025, .975);
    }
    60% {
        transform: translateY(-5px) scale(.975, 1.025);
    }
    100% {
        transform: translateY(0px) scale(1, 1);
    }
}
.LandPage, .LandPage body {
    height: 100%;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif 
}
.lph-one-screen {
    height: 100%;
    display: flex;
    width: 100%;
    box-sizing: border-box;
    flex-direction: column;
    padding: 120px 30px 10px;
    position: relative;
}
.lph-one-screen .lph-header {
    background: #222;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 0 20px 0 40px;
    box-sizing: border-box;
    height: 80px;
    position: fixed;
    left: 30px;
    right: 30px;
    top: 20px;
    z-index: 200;
}
.lph-one-screen .lph-header .the-menu {
    display: none;
    cursor: pointer;
}
.lph-one-screen .lph-header .the-logo img {
    display: block;
    height: 54px;
    width: 180px;
    cursor: pointer;
}
.lph-one-screen .lph-header .the-nav {
    display: flex;
    list-style: none;
    margin: 0 0 0 20px;
    padding: 0;
    font-size: 22px;
    font-weight: bold;
    flex: 1;
}
.lph-one-screen .lph-header .the-nav li {
    display: block;
    padding: 0 20px;
    color: #fff;
}
.lph-one-screen .lph-header .the-nav li a {
    color: #fff;
    text-decoration: none;
}
.lph-one-screen .lph-header .the-nav li a.cur {
    text-decoration: underline;
}
.lph-one-screen .lph-header .the-login {
    background: linear-gradient(135deg,#f99e47,#ff3463);
    border-radius: 20px;
    padding: 5px;
    color: #fff;
    cursor: pointer;
}
.lph-one-screen .lph-header .the-login .the-txt {
    font-size: 15px;
    font-weight: 700;
    padding: 0 10px;
    display: block;
}
.lph-one-screen .lph-header .the-login .user-icon {
    width: 32px;
    height: 32px;
    background: #000;
    border: solid 2px #fff;
    border-radius: 50%;
    box-sizing: border-box;
}
.lph-one-screen .lph-header .the-login .user-icon svg {
    width: 20px;
}
.lph-one-screen .lph-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    margin-right: 100px;
}
.lph-one-screen .lph-content .main-lt {
    width: 48%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.lph-one-screen .lph-content .main-lt h1 {
    font-size: 58px;
    margin: 0 0 10px;
}
.lph-one-screen .lph-content .main-lt p {
    font-size: 18px;
    margin: 20px 40px;
    line-height: 1.5;
    font-weight: normal;
}
.lph-one-screen .lph-content .main-lt .the-btn {
    width: 275px;
    height: 60px;
    color: #fff;
    box-sizing: border-box;
    background: linear-gradient(135deg,#f99e47,#ff3463);
    border-radius: 100px;
    cursor: pointer;
    font-size: 18px;
    margin-top: 40px;
    font-weight: 700;
    animation: callIconAni 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.lph-one-screen .lph-content .main-lt .the-btn svg {
    width: 30px;
}
.lph-one-screen .lph-content .the-banner {
    width: 52%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: url(/images/home-lp/gometcard-bg.png) center no-repeat;
    background-size: cover;
    border-radius: 30px;
}
.lph-one-screen .lph-content .the-banner > div {
    position: absolute;
    width: 40%;
    height: 60%;
    left: 30%;
    top: 50%;
    margin-top: -30%;
    transition: all .6s;
    display: none;
}
.lph-one-screen .lph-content .the-banner > div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}
.lph-one-screen .lph-content .the-banner > .img0 {
    display: block;
    transform: rotate(-24deg) translate(-270%,-20%);
}
.lph-one-screen .lph-content .the-banner > .img1 {
    display: block;
    transform: rotate(-12deg) translate(-135%,-10%);
}
.lph-one-screen .lph-content .the-banner > .img2 {
    display: block;
    transform: rotate(0) translate(0,0);
}
.lph-one-screen .lph-content .the-banner > .img3 {
    display: block;
    transform: rotate(12deg) translate(135%,-10%);
}
.lph-one-screen .lph-content .the-banner > .img4 {
    display: block;
    transform: rotate(24deg) translate(270%,-20%);
}
.lph-sider {
    position: absolute;
    right: 30px;
    top: 120px;
    bottom: 0;
    background: linear-gradient(180deg,#222,rgba(34,34,34,0));
    width: 95px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}
.lph-sider .the-top {
    padding-top: 30px;
    cursor: pointer;
}
.lph-sider .the-bot {
    padding-bottom: 40px;
}
.lph-sider .the-bot img {
    display: block;
    margin: 30px auto;
    width: 22px;
    cursor: pointer;
}
.lph-bot {
    display: none;
    cursor: pointer;
}
.seo-page {
    background: #0A070F;
    color: #fff;
    font-size: 16px;
    height: 100%;
    overflow: auto;
}
.seo-page [data-aos=fade-up] {
    transition-duration: 1s;
    transition-timing-function: ease;
    transform: translate3d(0, 100px, 0);
    opacity: 0;
    transition-property: opacity, transform;
}
.seo-page [data-aos^=fade].aos-animate {
    opacity: 1;
    transform: none;
}
.seo-page .section-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 50px;
}
.text-c {
    text-align: center;
}
.seo-page .section-con p {
    font-size: 16px;
    line-height: 26px;
}
.seo-page .section-con p+p {
    margin-top: 16px;
}
.seo-page .user-call {
    width: 320px;
    height: 75px;
    padding: 0 15px;
    box-sizing: border-box;
    color: #fff;
    background: linear-gradient(135deg, #f99e47 0%, #ff3463 100%);
    border-radius: 100px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    -webkit-animation: callIconAni 2s infinite;
    animation: callIconAni 2s infinite;
    font-size: 22px;
}
.seo-page .user-call .icon-video2 {
    font-size: 30px;
    margin-right: 10px;
}
.seo-page .section1 {
    padding: 57px 0 109px;
}
.section1 .section-container {
    width: 960px;
    margin: 0 auto;
    display: flex;
    position: relative;
    align-items: center;
}
.section1 .section-con {
    margin-bottom: 42px;
    margin-top: 22px;
}
.section1 .section-left {
    flex: 1;
}
.section1 .section-left .square-img {
    position: relative;
    height: 717px;
}
.section1 .section-left .square-img .top {
    position: relative;
}
.section1 .section-left .square-img .animated {
    position: absolute;
    top: 0;
}
.section1 .section-left .square-img .animated img {
    width: 450px;
}
.section1 .section-left .square-img .animated1 {
    z-index: 9;
    animation: fadeOutRight 6s linear infinite;
}
.section1 .section-left .square-img .animated2 {
    z-index: 8;
    transform: scale(0.8);
    opacity: 0;
    animation: fadeOutRight 6s 2s infinite;
}
.section1 .section-left .square-img .animated3 {
    z-index: 7;
    opacity: 0;
    animation: fadeOutRight 6s 4s infinite;
}
.section1 .section-right {
    margin-left: 50px;
    width: 400px;
    flex-grow: 0;
}
.seo-page .section2 {
    padding: 67px 0 85px;
    background: url('https://h5.livuchat.com/static/images/web/livcam/s2-bg.jpg') top center, linear-gradient(152deg, #F99E47 0%, #FA8E4B 15%, #FF3463 100%);
    background-size: cover;
}
.section2 .section-container {
    width: 1048px;
    margin: 0 auto;
}
.section2 .page-two-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    align-items: stretch;
}
.section2 .page-two-content .two {
    margin: 0 -100px 0 -80px;
}
.page-two-content .content {
}
.page-two-content h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.2;
}
.section2 .page-two-content .one, .section2 .page-two-content .three {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.section2 .page-two-content .one {
    z-index: 2;
}
.section2 .page-two-content .three .content {
    padding-bottom: 40px;
}
.seo-page .section3 {
    padding: 60px 0 ;
}
.section3 .section-container {
    width: 1140px;
    margin: 0 auto;
}
.special-list {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    justify-content: space-between;
}
.special-item {
    width: 25%;
    height: 240px;
    box-sizing: border-box;
    padding: 20px 20px 0;
    text-align: center;
}
.special-item .item-img {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}
.special-item .item-img img {
    width: 100% 
}
.special-item .item-title {
    font-size: 20px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 26px;
    margin-bottom: 10px;
}
.special-item p {
    font-size: 16px;
    line-height: 20px;
}
.seo-page .section4 {
    padding: 200px 0 0;
    background: url('https://h5.livuchat.com/static/images/web/livcam/s4-bg.png') top center, linear-gradient(152deg, #F99E47 0%, #FA8E4B 15%, #FF3463 100%);
    background-repeat: no-repeat;
    background-size: contain;
}
.section4 .section-container {
    width: 800px;
    margin: 0 auto;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}
.section4 .content-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
}
.section4 .content-item>.content-desc {
    width: 380px;
    flex-grow: 0;
}
.section4 .content-img {
    width: 330px;
    flex-grow: 0;
    order: 1;
}
.content-item:nth-child(even) .content-img {
    order: 0;
}
.section4 .content-img img {
    width: 100%;
}
.content-desc>.content-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 36px;
    margin-bottom: 20px;
}
.content-desc>.content-desc {
    line-height: 1.4;
}
.seo-page .section5 {
    padding: 80px 0 131px;
}
.section5 .section-container {
    width: 892px;
    margin: 0 auto;
}
.content-list {
    display: grid;
    margin-top: 87px;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 63px;
    font-size: 27px;
    font-weight: bold;
}
.content-list-item {
    width: 415px;
    height: 220px;
    padding: 10px 20px;
    background: #222;
    border-radius: 24px;
    box-sizing: border-box;
}
.content-list-item .item-con {
    margin-top: 20px;
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
    color: #ffffffd8;
}
.content-list-item .item-top {
    height: 88px;
    margin-top: -54px;
    margin-left: 20px;
    display: flex;
    align-items: flex-end;
}
.content-list-item .item-top-img {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
}
.content-list-item .item-top img {
    width: 100%;
}
.content-list-item .item-top p {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 10px;
    margin-left: 17px;
}
.seo-page .section6 {
    background: linear-gradient(152deg, #F99E47 0%, #FA8E4B 15%, #FF3463 100%);
    padding: 76px 0 104px;
}
.section6 .section-container {
    width: 892px;
    margin: 0 auto;
}
.section6 .qa-list {
    margin-top: 65px;
}
.section6 .qa-item {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    border: 1px solid #FFFFFF;
    color: #fff;
    padding: 20px 40px;
    box-sizing: border-box;
    margin-bottom: 14px;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.3s ease-in-out;
}
.section6 .qa-item .qa-item-tit {
    font-size: 20px;
    font-weight: 800;
    line-height: 28px;
}
.section6 .qa-item .qa-item-answer {
    display: none;
    margin-top: 6px;
}
.section6 .qa-item.qa-active {
    height: auto;
    background: #fff;
    color: #000;
}
.section6 .qa-item .qa-item-arrow {
    width: 28px;
    height: 16px;
    background: url(https://h5.livuchat.com/static/images/web/livcam/arrow-down.png) center/cover no-repeat;
    position: absolute;
    right: 22px;
    top: 27px;
    display: inline-block;
}
.section6 .qa-item.qa-active .qa-item-answer {
    display: block;
}
.section6 .qa-item.qa-active .qa-item-arrow {
    display: none;
}
.seo-page .section7 {
    padding: 60px 0 35px;
}
.section7 .section-container {
    width: 800px;
    margin: 0 auto;
    text-align: center;
}
.section7 .section-con {
    margin: 22px auto 32px;
}
.section7 .section-con .user-call {
    margin: 32px auto 0;
}
.section-img img {
    width: 100%;
}
.seo-page .section8 {
    background: #222;
    padding: 32px 0;
}
.section8 .section-container {
    margin: 0 auto;
    text-align: center;
}
.footer__nav a {
    color: #ffffffa8;
    text-decoration: none;
}
.footer__nav .nav-list{
  display: flex;
  align-items: center;
  gap:20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__nav .nav-list li {
    display: inline-block;
    position: relative;
    line-height: 26px;
}
.footer__copyright {
    margin-top: 15px;
    color: #6c6c6c;
    font-size: 12px;
}
.diversion-list {
    margin-bottom: 20px;
}
.diversion-list a {
    color: #ffa148;
    cursor: pointer;
    font-size: 14px;
}
@keyframes fadeOutRight {
    0% {
        opacity: 0;
        transform: scale(0.8) translateX(0);
    }
    10% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
    35% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
    50% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 0;
    }
}
@media screen and (max-width: 680px) {
    .lph-one-screen {
        padding:50px 0 0;
    }
    .lph-one-screen .lph-header {
        border-radius: 0;
        padding: 0 10px;
        left: 0;
        top: 0;
        right: 0;
        height: 50px;
    }
    .lph-one-screen .lph-header .the-logo {
        flex: 1;
    }
    .lph-one-screen .lph-header .the-logo img {
        height: 30px;
        width: auto;
    }
    .lph-one-screen .lph-header .the-nav {
        display: none;
    }
    .lph-one-screen .lph-header .the-login {
        padding: 6px 5px;
    }
    .lph-one-screen .lph-header .the-login .user-icon {
        display: none;
    }
    .lph-one-screen .lph-header .the-login .the-txt {
        font-size: 14px;
        font-weight: 700;
    }
    .lph-one-screen .lph-header .the-menu {
        display: block;
        margin-right: 18px;
    }
    .lph-one-screen .lph-header .the-menu img {
        display: block;
        height: 17px;
    }
    .lph-one-screen .lph-content {
        margin: 0;
        flex-direction: column;
        background: url(/images/home-lp/gometcard-bg.png) center no-repeat;
        background-size: cover 
    }
    .lph-one-screen .lph-content .main-lt {
        width: 100%;
    }
    .lph-one-screen .lph-content .main-lt h1 {
        font-size: 38px;
        padding: 40px 0 0 
    }
    .lph-one-screen .lph-content .main-lt p {
        margin: 0;
    }
    .lph-one-screen .lph-content .the-banner {
        background: none;
        width: 100%;
    }
    .lph-one-screen .lph-content .the-banner > div {
        height: 90%;
        width: 52%;
        left: 24%;
        margin-top: -28%;
    }
    .lph-sider {
        display: none;
    }
    .lph-bot {
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 100;
    }
    .lph-bot img {
        display: block;
        width: 100%;
    }
    .seo-page .section-title {
        font-size: 30px;
        line-height: 38px;
    }
    .content-desc>.content-title {
        font-size: 20px;
        line-height: 28px;
    }
    .section-box .section-container {
        width: 100% !important;
        flex-direction: column;
    }
    .seo-page .section1 {
        padding-bottom: 40px;
    }
    .section1 .section-left {
        flex: auto;
        height: 430px;
    }
    .section1 .section-left .square-img {
        width: 266px;
        height: auto;
        margin: 0 auto;
        position: relative;
    }
    .section1 .section-left .square-img .animated img {
        width: 266px;
    }
    .section1 .section-right {
        margin-left: 0;
        width: 100%;
        padding: 20px 30px 0;
        text-align: center;
        box-sizing: border-box;
    }
    .seo-page .user-call, .section1 .section-right .user-call {
        margin: 0 auto;
        height: 55px;
        width: 240px;
        font-size: 16px;
        padding: 0 15px;
        box-sizing: border-box;
    }
    .seo-page .section2 {
        background: linear-gradient(152deg, #F99E47 0%, #FA8E4B 15%, #FF3463 100%);
    }
    .section2 .page-two-content {
        flex-direction: column;
    }
    .section2 .page-two-content .two {
        margin: 0;
        max-width: 100%;
    }
    .page-two-content .content {
        padding: 40px 20px 0;
    }
    .section2 .page-two-content .three .content {
        padding-bottom: 0;
    }
    .section2 .page-two-content .two img {
        max-width: 100%;
    }
    .section2 .page-two-content .one, .section2 .page-two-content .three {
        text-align: center;
    }
    .section2 .page-two-content .three {
        margin-top: -78px;
    }
    .special-item {
        width: 50%;
    }
    .seo-page .section4 {
        background-size: auto;
    }
    .section4 .content-item {
        flex-direction: column;
        padding: 0 20px;
        text-align: center;
        box-sizing: border-box;
        margin-bottom: 35px;
    }
    .section4 .content-item>.content-desc {
        width: 100%;
    }
    .content-item:nth-child(even) .content-img {
        order: 1;
    }
    .content-list {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .content-list-item {
        width: 100%;
    }
    .section5, .section6 {
        display: none;
    }
    .section5 .section-container, .section6 .section-container {
        box-sizing: border-box;
        padding: 0 20px;
    }
    .section6 .qa-item {
        padding: 15px 40px 15px 15px;
    }
    .section6 .qa-item .qa-item-tit {
        font-size: 14px;
        line-height: 18px;
    }
    .section7 .section-container {
        padding: 0 20px;
        box-sizing: border-box;
    }
    .footer__nav .nav-list {
      flex-direction: column;
      gap: 10px;
    }
    .footer__nav .nav-list li {
        position: relative;
    }
    .seo-page .section8 {
        padding-bottom: 60px;
    }
}
@keyframes callIconAni {
    0% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.9);
    }
}
@keyframes to-top {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}
@keyframes to-down {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0%);
    }
}
.seo-page a {
    color: inherit 
}
@media screen and (max-width: 680px) {
    [lang='ar'] .lph-one-screen .lph-header .the-menu,[lang='he'] .lph-one-screen .lph-header .the-menu,[lang='ur'] .lph-one-screen .lph-header .the-menu {
        margin-left:18px;
        margin-right: 0;
    }
}
 ul{
    padding:0
}

.site-footer{
    background:#222;
    padding:42px 0 0;
    .sf-con{
        max-width: 1200px;
        margin:0 auto;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        gap:60px;
        box-sizing: border-box;
        padding:0 20px 30px;
        .osf.last{
            max-width: 300px;
        }
        h3{
            font-size: 20px;
        }
        ul{
            list-style: none;
            padding:0;
            li{
                font-size:14px;
                padding-bottom:10px;
            }
            a{
                text-decoration: none;
                opacity: .6;

            }
            a:hover{
                opacity: 1;
            }
        }
    }
    .copyright{
        padding: 20px;
        background:#00000050;
        text-align: center;
        font-size:12px;
        opacity: .6;
        margin:0;
    }
}


@media screen and (max-width: 680px) {
  .site-footer{
    padding: 40px 0 0;
    .sf-con{
        max-width: 100%;
        box-sizing: border-box;
        padding:0 20px 10px;
        flex-wrap: wrap;
        gap:0;
        justify-content: space-between;
        h3{
            font-size: 16px;
            margin:0 0 10px;
        }
        .osf{
            width: 48%;
            margin-bottom:20px;

            &.last{
                max-width: auto;
            }
        }

        ul{
            list-style: none;
            padding:0;
            li{
                font-size: 12px;
                padding-bottom:6px;
            }
        }
    }
    .copyright{
        padding: 20px 10px;
        font-size:9px
    }
  } 
}

