* {
  margin:0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, Poppins, -apple-system, BlinkMacSystemPont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, system-ui;
}
.landPage {
  width: 100%;
  height: 100%;
}
.text-right{
  text-align: right;
}
.overflow-y-auto{
  overflow-y: auto;
}
div{
  box-sizing: border-box;
}
.scroll-hidden{
  overflow: hidden;
}
.absolute{
  position: absolute;
}
.opt-container{
  overflow: auto;
}
.w-full {
  width: 100%;
}
.h-full {
  height: 100%;
}
.text-14p{
  font-size: 14px;
}
.relative {
  position: relative;
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.bg-sign {
  background: #8b33fc;
}
.px-4 {
  padding-left: 12px;
  padding-right: 12px;
}
.h-7 {
  height: 24px;
}
.rounded-7 {
  border-radius: 24px;
}
.text-4 {
  font-size: 12px;
}
.px-9 {
  padding-left: 32px;
  padding-right: 32px;
}
.trans {
  transition: all 0.3s ease-in-out;
}

.font-medium {
  font-weight: 500;
}
.pl-3 {
  padding-left: 8px;
}
.pr-3 {
  padding-right: 8px;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.foot-700 {
  font-weight: 700;
}
.mt-4{
    margin-top: 12px;
  }
.pl-16 {
  padding-left: 16px;
}
.text-white-8{
  color: rgba(255,255,255,0.80);
}
.pr-16 {
  padding-right: 16px;
}
.fx-c {
  display: flex;
  align-items: center;
  justify-content: center;
}
.font-700 {
  font-weight: 700;
}
.block {
  display: block;
}
.overflow-hidden {
  overflow: hidden;
}
.fixed {
  position: fixed;
}
.h-13 {
  height: 48px;
}
a {
  text-decoration: none;
  color:#fff;
  font-weight: 400;
}
.left-0 {
  left: 0;
}
.z-50 {
  z-index: 50;
}
.w-73 {
  width: 73px;
}
.w-32{
  width: 32px;
}
.mr-opt-10{
  margin-right: 10px;
}
.rounded-full{
  border-radius: 50%;
}
.bottom-0 {
  bottom: 0;
}
.bg-black-6 {
  background: rgba(255, 255, 255, 0.06);
}

.backdrop-blur-40 {
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px); 
}
.flex-1 {
  flex: 1 1 0%;
}
.h-full {
  height: 100%;
}
.w-7 {
  width: 24px;
}
.text-14 {
  font-size: 14px;
}
.box-border{
  box-sizing: border-box;
}
.flex-shrink-0{
  flex-shrink: 0;
}
.carousel-track {
  display: flex;
  transition: transform 0.3s ease;
}
.carousel-item{
  padding:36px 24px 26px;
  background: rgba(172,110,255,0.12);
  border-radius: 18.53px;
}
.carouselDes {
  line-height: 20px;
}
.indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
}

.indicator {
  width: 18px;
  height: 2px;
  border-radius: 1.85px;
  background: rgba(255,255,255,0.2);
  transition: background 0.3s ease;

}

.indicator.active {
  background: rgba(255,255,255,0.8);
}
#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, 0.975);
  }
  60% {
    transform: translateY(-5px) scale(0.975, 1.025);
  }
  100% {
    transform: translateY(0px) scale(1, 1);
  }
}

body {
  width: 100%;
  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;
  margin-top: 88px;
}
.lph-one-screen .lph-content .main-lt h1 {
  font-size: 58px;
  margin: 0 0 12px;
}
.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: 13.75px;
}
.lph-one-screen .lph-content .the-banner > div {
  position: absolute;
  width: 40%;
  height: 100%;
  left: 30%;
  top: 50%;
  margin-top: 0%;
  transition: all 0.6s;
  display: none;
}
.lph-one-screen .lph-content .the-banner > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 13.75px;
}
.lph-one-screen .lph-content .the-banner > .img0 {
  display: block;
  transform: rotate(-6deg) translate(-230%, -6%);
}
.lph-one-screen .lph-content .the-banner > .img1 {
  display: block;
  transform: rotate(-3deg) translate(-115%, -3%);
}
.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(3deg) translate(115%, -3%);
}
.lph-one-screen .lph-content .the-banner > .img4 {
  display: block;
  transform: rotate(6deg) translate(230%, -6%);
}
.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;
  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: 700;
  line-height: 50px;
}
.text-c {
  text-align: center;
}
.seo-page .section-con p {
  font-size: 16px;
  line-height: 26px;
  margin-top: 0;
  margin-bottom: 0;
}
.seo-page .section-con p + p {
  margin-top: 16px;
}
.tr .seo-page .user-call,.fr .seo-page .user-call{
  width:320px;
}
.seo-page .user-call {
  height: 48px;
  width: 288px;
  box-sizing: border-box;
  color: #fff;
  padding:0 15px;
  background: #8B33FC;
  border-radius: 100px;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  -webkit-animation: callIconAni 2s infinite;
  animation: callIconAni 2s infinite;
  font-size: 22px;
  margin-top: 16px !important;
}
.seo-page .user-call .icon-video2 {
  font-size: 16px;
  margin-right: 10px;
}
.ar .seo-page .user-call .icon-video2{
  margin-left: 10px;
}
.section1 {
  padding: 54px 16px 0;
}
.title {
  font-size: 24px;
  color: #FFFFFF;
  text-align: center;
  line-height: 28px;
}
.des {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.80);
  text-align: center;
  line-height: 20px;
  font-weight: 400;
}
/* .seo-page .section2 {
  padding: 50px 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;
} */


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

.content-item:nth-child(even) .content-img {
  order: 0;
}

.content-desc > .content-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 36px;
  margin-bottom: 20px;
}
.content-desc > .content-desc {
  line-height: 1.4;
}
.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 {
  margin-top: 80px;
  width: 100%;
  padding: 0 16px;
}
.section6 .title2 {
  font-size: 24px;
  color: #FFFFFF;
  text-align: center;
  line-height: 28px;
}
.section6 .section-container {
  width: 892px;
  margin: 0 auto;
}
.section6 .qa-list {
  margin-top: 65px;
}
.section6 .qa-item {
  background: rgba(172,110,255,0.12);
  border-radius: 14px;
  color: #fff;
  padding: 20px 40px;
  box-sizing: border-box;
  margin-bottom: 14px;
  position: relative;
  cursor: pointer;
  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-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%;
  border-radius: 18px;
}
.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;
  }
}
.w-6{
  width: 20px;
}
.text-5{
  font-size: 16px;
}
@media screen and (max-width: 680px) {
  .lph-one-screen {
    /* padding:50px 0 0; */
    padding: 0;
    /* height:100vh; */
  }
  .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;
  }
  .mt-30{
    margin-top: 30px;
  }
  .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;
  }
  .screen-content{
    width: 100%;
    overflow: hidden;
    /* height: 100%; */
  }
  .lph-one-screen .lph-content {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    flex-direction: column;
    display: flex;
    
  }
  .firstBack {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    padding: 0 16px;
    overflow: hidden;
  }
  .firstBack img {
    width: 100%;
  }

  .firstDesWrap {
    position: absolute;
    top: 70px;
    left: 16px;
  }
  .firstH1 {
    font-size: 24px;
    color: #FFFFFF;
    line-height: 37px;
  }
  .firstH2 {
    margin-top: 4px;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 25px;
    font-weight: 400;
  }

  .backBottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 160px;
    background-image: linear-gradient(0deg, #000000 0%, rgba(0,0,0,0.63) 63%, rgba(0,0,0,0.00) 100%);
  }

  @keyframes scroll {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
  }


  .aboutImg {
    vertical-align: middle;
    animation: scroll 20s linear infinite;
  }
  .startVideo {
    position: absolute;
    bottom: 26px;
    font-size: 16px !important;
  }
  .lph-one-screen .lph-content .main-lt {
    width: 100%;
  }
  .bg-left-bg {
    background: rgba(47,44,55,0.96);
  }
  .w-240 {
    width: 240px;
    
  }
  .leftMenu{
    box-sizing: border-box;
  }
  .rounded-tr-7 {
    border-top-right-radius: 24px;
  }
  .rounded-br-7 {
    border-bottom-right-radius: 24px;
  }
  .ar .rounded-tr-7 {
    border-top-left-radius: 24px;
    border-top-right-radius: 0px;

  }
  .ar .rounded-br-7 {
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 0px;

  }
  .-left-240 {
    left: -240px;
  }
  .w-112 {
    width: 112px;
  }
  .top-0{
    top:0;
  }
  .h-59{
    height:59px;
  }
  
  .text-5{
    font-size:16px;
  }
  .leading-6{
    line-height:20px;
  }
  .mt-66 {
    margin-top: 66px;
  }
  .mb-50 {
    margin-bottom: 50px;
  }
  .z-100 {
    z-index: 100;
  }
  .fixed {
    position: fixed;
  }
  

  .leftBarIn {
    left: -240px;
  }

  .leftBarOut {
    left: -0;
  }
  .ar .leftBarIn{
    right:-240px;
  }
  .ar .leftBarOut{
    right:0;
  }
 
  .lph-one-screen .lph-content .main-lt h1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 37px;
  }
  .lph-one-screen .lph-content .main-lt p {
    margin: 0;
    padding:0 16px;
  }
  .lph-one-screen .lph-content .the-banner {
    background: none;
    flex: 1;
    width: 100%;
  }
  .lph-one-screen .lph-content .the-banner > div {
    height: 88%;
    width:52%;
    left: 24%;
    top:0;
    margin-top:40px;
    border-bottom-left-radius: 13.75px;
    border-bottom-right-radius: 13.75px;
    
  }
  .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: 24px;
    line-height: 28px;
    padding: 30px 0 0;
    margin: 0;
  }
  /*.seo-page .text-c {
    padding: 0;
    font-size: 28px;
    color: #000;
  }*/
  .section-new .section-title {
    color: #fff;
  }
  /*.seo-page .section-img {
    width: 100%;
    margin-top: 40px;
  }*/
  .section-new .section-img {
    width: 100%;
    padding: 30px 62px 0 28px;
  }
  .content-desc > .content-title {
    font-size: 20px;
    line-height: 28px;
  }
  .section-box .section-container {
    width: 100% !important;
    flex-direction: column;
  }
  .section5 .section-container,
  .section6 .section-container {
    box-sizing: border-box;
    padding: 0 16px 50px;
  }
  .section6 .qa-list {
    margin-top: 30px;
  }
  .section6 .qa-item.qa-active {
    background: #5f16de;
    border-radius: 12px;
    color: #fff;
  }

  .section6 .qa-item-answer {
    padding: 16px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
  }
  .section6 .qa-item {
    padding: 0;
  }
  .section6 .qa-item .qa-item-tit {
    width:100%;
    font-size: 14px;
    overflow: hidden;
    padding-left: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .section6 .qa-item .qa-item-tit .arrow {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    background: url('/omegle/images/ic_faq_down@2x.svg') no-repeat;
  }

  .section6 .qa-item .qa-item-tit .arrow.active {
    background: url('/omegle/images/ic_faq_up@2x.svg') no-repeat;
  }

    .section6 .qa-item .qa-item-tit .qa-item-title-content{
/*      width: 100%;*/
/*      text-align: center;*/
      padding-right: 16px;
      font-weight: 500;
      padding-top: 16px;
      padding-bottom: 16px;
      font-size: 14px;
      line-height: 22px;



    }
  .section6 .qa-active .qa-item-tit .qa-item-title-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
/*    width:100%;*/
  }
  
  #leftMenu{
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
  }
  
  .leftMenu-header a{
    display: block;
    border-bottom:1px solid rgba(255,255,255,0.05);
    line-height: 59px;
  }
  #leftMenu .jumpMain:active{
    background: rgba(0,0,0,0.10);
  }
  .section2 {
    background-size: cover;
  }
  .bg{
    padding-top: 50px;
  }

  .section2InsWrap {
    width: 100%;
    margin-top: 40px;
    padding: 0 16px;
  }
  .section2Ins {
    width: 100%;
    height: 46px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 14px;
    font-weight: 500;
    background: rgba(172,110,255,0.12);
    border-radius: 12px;
  }
  .section2InsMargin {
    margin-top: 16px;
  }

  .section2Ins img {
    width: 26px;
    margin-left: 24px;
    margin-right: 8px;
  }

  .section10 {
    width: 100%;
    position: relative;
  }

  .section10 .section-title {
    font-size: 24px;
    color: #FFFFFF;
    text-align: center;
    line-height: 28px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .section10 .section-img {
    width: 100%;
    padding: 0 50px;
  }
  .section10List {
    width: 100%;
    margin-top: 30px;
    padding: 0 16px;
  }

  .section10Item {
    background: rgba(172,110,255,0.12);
    border-radius: 11.5px;
    width: 100%;
    padding: 24px 14px;
    list-style-type: none;
  }
  .section10Item.active {
    margin-top: 16px;
  }
  .section10Item .content {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255,255,255,0.80);
    text-align: center;
    line-height: 20px;
    text-align: center;
  }
  .section10Item .name {
    display: flex;
    align-items: center;
  }

  .section10Item .name img {
    margin-right: 12px;
    margin-left: 12px;
    width: 56px;
  }

  .section10Item .name h4 {
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
  }

  .timelineWrap {
    width: 100%;
    padding: 0 30px;
  }

  .timeline {
    position: relative;
    padding-left: 10px;
    width: 100%;
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255,255,255,0.80);
    line-height: 20px;
  }

  .timeline::before {
    content: none;
  }

  .timeline-item {
    position: relative;
    margin-bottom: 16px;
    padding-left: 10px;
  }

  .timeline-item:last-child {
    margin-bottom: 30px;
  }

  .timeline-item::before {
    content: '';
    position: absolute;
    left: -20px; 
    top: 50%; 
    transform: translateY(-50%); 
    width: 8px; 
    height: 8px; 
    border-radius: 50%; 
    background-color: #8a2be2; 
    border: 2px solid #8a2be2; 
    z-index: 1; 
  }

  .timeline-item::after {
    content: '';
    position: absolute;
    left: -15px;
    top: 0%; 
    bottom: -30px; 
    width: 2px; 
    background-color: #8a2be2; 
    z-index: 0; 
  }

  .timeline-item:first-child::after {
    top: 50%; 
  }

  .timeline-item:last-child::after {
    top: 0; 
    bottom: 50%;
  }

  .timeline-item p {
    margin: 0;
  }

  .timelineWrap2 {
    width: 100%;
    padding: 0 30px;
  }

  .timeline2 {
    position: relative;
    padding-left: 10px;
    width: 100%;
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255,255,255,0.80);
    line-height: 20px;
  }

  .timeline2::before {
    content: none;
  }

  .timeline-item2 {
    position: relative;
    margin-bottom: 16px;
    padding-left: 10px;
  }

  .timeline-item2:last-child {
    margin-bottom: 30px;
  }

  .timeline-item2::before {
    content: '';
    position: absolute;
    left: -20px; 
    top: 50%; 
    transform: translateY(-50%); 
    width: 8px; 
    height: 8px; 
    border-radius: 50%; 
    background-color: #8a2be2; 
    border: 2px solid #8a2be2; 
    z-index: 1; 
  }

  .timeline-item2::after {
    content: '';
    position: absolute;
    left: -15px;
    top: 0%; 
    bottom: -30px; 
    width: 2px; 
    background-color: #8a2be2; 
    z-index: 0; 
  }

  .timeline-item2:first-child::after {
    top: 50%; 
  }

  .timeline-item2:last-child::after {
    top: 0; 
    bottom: 50%;
  }

  .timeline-item2 p {
    margin: 0;
  }

  .section11 {
    width: 100%;
    margin-top: 80px;
  }
  .padding-16 {
    padding: 0 16px;
  }
  .map {
    width: 100%;
    margin-top: 24px;
  }
  .map img {
    width: 100%;
  }

  .numberWrap {
    width: 100%;
    padding: 0 16px;
  }
  .numberItem {
    width: 100%;
    height: 76px;
    display: flex;
    align-items: center;
    background: rgba(172,110,255,0.12);
    border-radius: 11.5px;
  }
  .numberItem.active {
    margin-top: 16px;
  }

  .numberItem img {
    margin-left: 14px;
    margin-right: 12px;
    width: 56px;
  }

  .numberItem .number {
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
  }

  .numberWord {
    font-size: 14px;
    color: rgba(255,255,255,0.80);
  }

  .section11 .section-title {
    font-size: 24px;
    color: #FFFFFF;
    text-align: center;
    line-height: 28px;
    padding-left: 16px;
    padding-right: 16px;
  }
 
  .section3 {
    width: 100%;
    position: relative;
  }
  .section3Img {
    margin: 60px 0;
    width: 100%;
    padding: 0 50px;
  }
  .section3Img img {
    width: 100%;
  }
  .section3Info {
    font-size: 14px;
    color: rgba(255,255,255,0.80);
    text-align: center;
    line-height: 20px;
    width: 100%;
    padding: 24px 16px 30px;
  }
  .section3 .title1 h2{
    margin-top: 36px;
    font-size: 24px;
    color: #fff;
    text-align: center;
    font-weight: 500;
  }
  .section3 .content1 {
    margin-top: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    padding: 0 16px;
    text-align: center;
  }
  
  .section3 .title2 {
    margin-top: 80px;
    font-size: 28px;
    color: #fff;
    line-height: 32px;
    width: 100%;
    text-align: center;
    padding-left: 16px;
    padding-right: 16px;
    font-weight: 700;
  }
  .section2 .title-bg{
    
    background-image: linear-gradient(-11deg, #11061A 0%, #11081D 60%, #13194E 100%);
  }
  .section2 .text-c{
    padding-left: 16px;
    padding-right: 16px;
  }
   .language-selector {
    bottom:82px;
    transform: translateX(-50%);
    left: 50%;
    
    }
    .language-content{
      white-space: nowrap;
    }
   
    .language-box{
      position: relative;
      width:100%;
      height:100%;
    }
    .language-icon{
      width:10px;
      margin-left: 7px;
    }
    .language-icon{
      transition: all 0.3s ease-in-out;
      margin-left:7px;
      width:10px;
    }
    .ar .language-icon{
      margin-right: 7px;
    }
    .language-icon.box{
      transform: rotate(180deg);
    }

#language-button {
    border: none;
    color: white;
    border-radius: 24px;
    background: rgba(75,69,85,1);
    font-size: 14px;
    display: flex;
    align-items: center;
    line-height: 20px;
    padding:6px 0;
    width:176px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.language-dropdown {
    display: grid;
    height:0;
    transition: all 0.3s ease-in-out;
    position: absolute;
    bottom:40px;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr; 
    left: 50%;
    transform: translateX(-50%);
    background-color:  rgba(75,69,85,1);
    
    

    border-radius: 14px;
    z-index: 100;
    padding:0;
    overflow: hidden;
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px); 
}
.language-active{
  padding:10px 0;
  height:288px;
  
  
  
}
.language-dropdown .active a{
  font-weight: 500;
  color: #fff;
}
.language-dropdown .active a:active{
  background: rgba(0,0,0,0.10);
} 
.language-option a{
  display: flex;
  height:100%;
  width:100%;
  padding: 10px 10px;
  line-height: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  color: rgba(255,255,255,0.40);
  align-items: center;
  justify-content: center;


  
  text-align:center;
}


.language-option:active,.selected-language {
    background-color: #535455;
    
}
  .title-bottom-bg {
    width: 100%;
    height: 120px;
    transform: scaleX(-1) scaleY(-1);
    background-image: linear-gradient(
      -20deg,
      #1d0f3c 0%,
      #210f3c 60%,
      #3f1b4f 100%
    );
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .special-item {
    width: 50%;
  }

  .content-item:nth-child(even) .content-img {
    order: 1;
  }
  .content-list {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .content-list-item {
    width: 100%;
  }

  .seo-page .section6 {
    padding: 0;
    background: none;
  }
  .section4 {
    background: #11061a;
    position: relative;
    box-sizing: border-box;
  }
  .section4 .title-bg  {
    padding-left: 16px;
    padding-right: 16px;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-image: linear-gradient(
      -11deg,
      #11061a 0%,
      #11081d 60%,
      #13194e 100%
    );
    position: absolute;
    left: 0;
    top: 0;
  }
  .section4 .title-bg h2{
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;

  }
  .section4 .box {
    padding-top: 94px;
    padding-bottom: 50px;
  }
  .section4 .people {
    margin-top: 40px;
    padding: 0 16px;
  }
  .section5 {
    background: #050208;
    padding-top: 46px;
  }
  .section5 .logo {
    width: 108px;
  }
  .section5 .content {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
  }
  .section5 .foot-list {
    margin-top: 46px;
  }
  .section5 .foot-item {
    font-size: 14px;
    margin-top: 14px;
  }
  .section5 .foot-item a {
    color: rgba(255, 255, 255, 0.72);
  }
  .mt-16 {
    margin-top: 16px;
    padding-bottom: 12px;
  }
  .footer-bottom {
    border-top: 0.5px solid rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.3);
    font-size: 10px;
    margin-top: 46px;
    padding-top: 15px;
  }
  .text-center {
    text-align: center;
  }

  .footer__nav .nav-list {
    flex-direction: column;
    gap: 10px;
  }
  .footer__nav .nav-list li {
    position: relative;
  }
  .seo-page .section8 {
    padding-bottom: 60px;
  }
  .swiper-container{
    width: 100%;
    height: 267px;
    position: relative;
    margin:0px auto;
    

  }
  .swiper-person{
    position: absolute;
    bottom:26px;
    left:24px;
  }
  .swiper-box {
    width: 100%;
    position: relative;
    padding-top: 30px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .upper{
    width: 40px;
    position: absolute;
    top:15px;
    left:15px;
  }
  .lower{
    width: 40px;
    position: absolute;
    bottom:75px;
    right:15px;
  }
  .upper img,.lower img{
    width:40px;
  }
  .swiper {
    width: 100%;
    height: 267px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 18.53px;
    position: absolute;
  }

/* .language-selector {
    min-width:176px;
    bottom:82px;
    left:32px;
}

#language-button {
    background-color: #535455;
    border: none;
    color: white;
    padding: 3px 55px;
    border-radius: 18px;
    font-size: 16px;
    border: 1px solid rgba(255,255,255,0.10);
    position: absolute;
    left:0;
    top:0;
    z-index: 10;
}

.language-dropdown {
    display: none;
    position: absolute;
    border: 1px solid rgba(255,255,255,0.20);
    bottom:-39px;
    left: 0;
    min-width: 134px;
    background-color:  #404142;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 5;
    padding-bottom:40px;
    padding-top: 10px;
}


.language-option a{
  display: block;
  height:100%;
  width:100%;
  cursor: pointer;
  transition: background-color 0.3s;
  color:#fff;
  text-align:center;
}

.language-option:active,.selected-language {
    background-color: #535455;
    
}
.language-icon{
  transition: all 0.3s ease-in-out;
  margin-left:4px;
  width:10px;
}
.ar .language-icon{
  margin-right: 4px;
}
.language-icon.box{
  transform: rotate(180deg);
}

.language-box {
    flex-wrap: wrap;
    justify-content: space-between;
    padding:24px;
    position: absolute;
    display: flex;
    right:8px;
    bottom:8px;
    left:8px;
    background: rgba(47,44,55,0.96);
    box-shadow: 0px 0px 30px 0px rgba(14,0,29,0.5);
    border-radius: 24px;
    transition: all 0.3s ease-in-out;
    transform: translateY(120%);
    z-index: 50;
}
.language-btn{
  position: absolute;
  left:0;
  bottom:0;
  top:0;
  right:0;
  z-index: 10;
} */
/* .language-content-box{
  position: fixed;
  left:0;
  top:0;
  bottom:0;
  right:0;
  z-index: 50;
  display: none;
}
.language-box-active{
  transform: translateY(0);
}
.language-box{
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr; 
  gap: 24px; 
}
.language-box a {
    text-align: center; 
    display: block;
    height:36px;
    border-radius: 18px;
    font-size:16px;
    line-height: 36px;
    color: rgba(255,255,255,0.60);
    background: rgba(0,0,0,0.15);
    font-weight: 500;
}
.language-box .active{
  background: #fff;
  color: #000000;
} */
}
@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%);
  }
}
@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;
}
.language-item{
  font-weight: 500;
}

.mt-3 {
  margin-top: 8px;
}

.cookie-popup {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 500;
  padding-bottom: 28px;
  display: flex;
  flex-direction: column;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  background-color: #262728;
  display: none;
}

.close-btn-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 10px;
  right: 10px;
}

.cookie-title {
  font-size: 24px;
  color: white;
  width: 100%;
  text-align: center;
  font-weight: 500;
  margin-top: 18px;
}

.cookie-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  padding-left: 24px;
  padding-right: 24px;
  line-height: 18px;
}

.cookie-text a {
  color: white;
  text-decoration: underline;
  cursor: pointer;
}

.button-container {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.accept-button {
  background-color: white;
  border-radius: 24px;
  font-weight: 500;
  width: 180px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.9);
  padding-left: 20px;
  padding-right: 20px;
  cursor: pointer;
  font-size: 20px;
}

.h-screen {
  height: calc(var(--vh) * 100);
}