@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&family=Syne:wght@400..800&display=swap');
:root {
  --font-body: 'Syne', sans-serif;
  --font-heading: 'Syne', serif;
  --font-inter: 'Inter', sans-serif;
  --color-primary: #24F3EA;
  --color-gray: #C5DBFF;
  --color-heading: #fff;
  --color-white: #fff;
  --color-black: #031B34;
  --color-dark: #0F172A;
  --color-default: #fff;
  --color-border: #EFF5F8;
  --color-blue: #4a21ef;
  --color-darkblue:#071626;
  --easing: cubic-bezier(0.67, 0.04, 0.3, 0.91);
  --JilAi-Blue-Linear: linear-gradient(90deg, #24F3EA 0.08%, #619DCA 89.66%);
  scroll-behavior: auto; 
}
.light {
  --color-primary: #1FABA5;
  --color-white: #031B34;
  --color-black: #fff;
  --color-gray: #637891;
  --color-darkblue:#FFF;
  --JilAi-Blue-Linear : linear-gradient(90deg, #1FABA5 1.99%, #0E88E1 99.95%);
}
html {
  scroll-behavior: smooth; }

body {
  padding: 0;
  margin: 0;
  font-weight: 400;
  position: relative;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 28px;
  color: var(--color-default);
  background-color: #000411;
}
body.light {
  background-color: #fff;
}
.body-bg {
  background-image: url(../img/home/body-bg.png);
  width: 100%;
  height: 100%;
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  background-attachment: fixed;
}
.light .body-bg {
  background-image: url(../img/home/light-bg1.png) !important;
}
::selection {
  background: #619DCA;
  color: var(--color-white);
  -webkit-background-clip: inherit;
  -webkit-text-fill-color: #FFF;
}
::-moz-selection {
  background: #619DCA;
 color: var(--color-white);
  -webkit-background-clip: inherit;
  -webkit-text-fill-color: #FFF;
}

p {
  font-family: var(--font-inter);
}
body::-webkit-scrollbar {
  width: 7px !important; 
}
body::-webkit-scrollbar-track {
  background: #080808 !important;
  border-radius: 10px !important; 
}
body::-webkit-scrollbar-thumb {
  background: #619DCA !important;
  border-radius: 10px !important; 
}
.xb-header-nav::-webkit-scrollbar {
  width: 6px !important; 
}

.language-dropdown::-webkit-scrollbar {
  width: 7px !important; 
}
.language-dropdown::-webkit-scrollbar-track {
  background: #fff !important;
  border-radius: 10px !important;
}
.language-dropdown::-webkit-scrollbar-thumb {
  background: #619DCA !important;
  border-radius: 10px !important; 
}

.xb-header-nav::-webkit-scrollbar-track {
  background: #080808 !important;
  border-radius: 10px !important; 
}
.xb-header-nav::-webkit-scrollbar-thumb {
  background: #619DCA !important;
  border-radius: 10px !important; 
}

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

ul {
  margin: 0px;
  padding: 0px; }

button {
  cursor: pointer; }

*:focus {
  outline: none; }

button {
  border: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }

button:focus {
  outline: none; }

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }
  a:hover {
    color: inherit; }

textarea {
  height: 100px; }

button {
  border: 0; }

table {
  width: 100%; }

p, li, span {
  margin-bottom: 0; }

.pos-rel {
  position: relative; }

.pos-absolute {
  position: absolute; }

  .body_wrap.toggleclicked,
  .toggleclicked .stricky-fixed {
    margin-left: 300px;
  }
  .body_wrap {
    margin-left: 0px;
  }
  .toggleclicked .header-bar-mobile {
    display: none;
  }
  .header-bar-mobile {
    display: block;
  }
.xb-close {
  background: rgba(0, 0, 0, 0.04);
  border: 9px solid transparent;
  color: #777;
  width: 36px;
  height: 36px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative; }
  .xb-close::before, .xb-close::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    top: 50%;
    left: 0;
    margin-top: -1px;
    transform-origin: 50% 50%;
    -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    -khtml-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    -ms-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    background-color: #fff; }
  .xb-close::before {
    -webkit-transform: rotate(45deg);
    -khtml-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg); }
  .xb-close::after {
    -webkit-transform: rotate(-45deg);
    -khtml-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg); }
  .xb-close:hover::before, .xb-close:hover::after {
    -webkit-transform: rotate(0);
    -khtml-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0); }

/* order & unorder list reset - start */
.ul_li, .ul_li_right, .ul_li_center, .ul_li_between {
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;row-gap: 12px; }

.ul_li > li, .ul_li_right > li, .ul_li_center > li, .ul_li_between > li {
  float: left;
  list-style: none;
  display: inline-block; }

 .ul_li {
  justify-content: flex-start; }

.ul_li_center {
  justify-content: center; }

.ul_li_right {
  justify-content: flex-end; }

.ul_li_between {
  justify-content: space-between; } */

.ul_li_block {
  margin: 0px;
  padding: 0px;
  display: block; }

.ul_li_block > li {
  display: block;
  list-style: none; }

.flex-1 {
  flex: 1; }

.mt-30 {
  margin-top: 30px; }

.mt-35 {
  margin-top: 35px; }

/*-- Margin Left --*/
.ml-5 {
  margin-left: 5px; }
.ml-10 {
  margin-left: 10px; }
.ml-15 {
  margin-left: 15px; }
.ml-20 {
  margin-left: 20px; }

.pt-60 {
  padding-top: 60px;
}
.pt-100 {
  padding-top: 100px; }
.pt-120 {
  padding-top: 120px; }
.pb-50 {
  padding-bottom: 50px; }

.pb-55 {
  padding-bottom: 55px; }
.pb-100 {
  padding-bottom: 100px; }
.pb-120 {
  padding-bottom: 120px; }
.pl-25 {
  padding-left: 10px;
}
input[type="text"], input[type="password"], input[type="email"], input[type="tel"], form select, textarea {
  width: 100%;
  height: 75px;
  border-radius: 0;
  background-color: #F3F4F5;
  padding: 24px 20px;
  border: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  color: var(--color-white);
  font-weight: 500; }
  input[type="text"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder, input[type="email"]::-webkit-input-placeholder, input[type="tel"]::-webkit-input-placeholder, form select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #888686;
    opacity: 1; }
  input[type="text"]::-moz-placeholder, input[type="password"]::-moz-placeholder, input[type="email"]::-moz-placeholder, input[type="tel"]::-moz-placeholder, form select::-moz-placeholder, textarea::-moz-placeholder {
    color: #888686;
    opacity: 1; }
  input[type="text"]:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder, input[type="email"]:-ms-input-placeholder, input[type="tel"]:-ms-input-placeholder, form select:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #888686;
    opacity: 1; }
  input[type="text"]:-moz-placeholder, input[type="password"]:-moz-placeholder, input[type="email"]:-moz-placeholder, input[type="tel"]:-moz-placeholder, form select:-moz-placeholder, textarea:-moz-placeholder {
    color: #888686;
    opacity: 1; }

/* reset css end */
/* typography css start */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: -0.02;
  color: var(--color-white);
  font-weight: 700;
  font-family: var(--font-heading); }

h2 {
  font-size: 32px; }

h3 {
  font-size: 22px; }

h4 {
  font-size: 20px; }

h5 {
  font-size: 18px; }

h6 {
  font-size: 16px; }

  .z-9{
    z-index:9;
    position:relative;
  }

.header-area {
  position: relative;
  z-index: 99;
  padding: 0; }
  /* @media (max-width: 991px) {
    .header-area .xb-header {
      padding: 10px 0; } } */

.side-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 48px;
  height: 48px;
}
  .side-menu a span {
    position: absolute;
    left: 47px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-transform: uppercase;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    padding-left: 8px; }
  .side-menu a svg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1; }
    .side-menu a svg path {
      fill: var(--color-primary); }


.side-menu-4 {
  margin-left: 40px; }

  .header-btn .login-btn1,
.header-btn .login-btn {
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 700;
  padding: 5px 33px;
  border-radius: 50px;
  background: linear-gradient(283deg, #619DCA 6.73%, #24F3EA 97.21%);
  color: #031B34;
  border: 0px solid #24F3EA;
  /* height: 50px; */
  border-radius: 50px;
  margin-left: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  /* min-width: 134px; */
  cursor: pointer;
}
.light .them-btn,
.light .header-btn .login-btn {
background: linear-gradient(90deg, rgba(31, 171, 165, 0.80) 1.99%, rgba(14, 136, 225, 0.80) 99.95%);
  color: #fff;
}
  .header-btn .login-btn:hover {
    color: var(--color-white);
    border-radius: 50px;
    border: 0px solid #619DCA;
    background: linear-gradient(283deg, #24F3EA 6.73%, #619DCA 97.21%);
    } 
    .light .header-btn .login-btn:hover,
    .header-btn .login-btn:hover i {
      color: #000411; }
.header-btn .login-btn1 {
border: 1px solid #24F3EA;
background: linear-gradient(90deg, rgba(36, 243, 234, 0.40) 0.08%, rgba(97, 157, 202, 0.40) 89.66%);
}
.header-btn .login-btn1:hover {
  background: linear-gradient(283deg, #24F3EA 6.73%, #619DCA 97.21%);
}
.xb-header .container-fluid {
    padding: 30px 40px 15px;
}
.xb-header.stricky-fixed .container-fluid{
  padding: 15px 40px !important;
}
.container{padding-left:40px;padding-right:40px;}

.xb-nav-mobile {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border: 1px solid transparent; */
  color: var(--color-white);
  font-size: 22px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%; 
  background: linear-gradient(90deg, #24F3EA 0.08%, #619DCA 89.66%);

}
.light .xb-nav-mobile {
  color: #fff;
}
  .xb-nav-mobile:hover {
    background: linear-gradient(90deg, rgba(36, 243, 234, 0.30) 0.08%, rgba(97, 157, 202, 0.30) 89.66%);
    border: 1px solid #24F3EA;
  }
  .light .xb-nav-mobile:hover {
    background: linear-gradient(90deg, rgba(31, 171, 165, 0.80) 1.99%, rgba(14, 136, 225, 0.80) 99.95%);
  }
  /* .stricked-menu.stricky-fixed .container-fluid {
      padding: 0;
  } */

/* .stricked-menu {
  visibility: hidden; } */
  .stricked-menu .main-menu ul li a {
    padding: 35px 0; }
  
.stricked-menu.stricky-fixed {
  -webkit-transform: translateY(-100%);
  -khtml-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  -khtml-transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  -moz-transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  -ms-transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  -o-transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  background-color: #000411;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  /* padding: 20px 0px; */
  -webkit-transform: translateY(0%);
  -khtml-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
  visibility: visible;
  -webkit-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -khtml-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -moz-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -ms-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -o-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09); }
.light .stricked-menu.stricky-fixed {
  background-color: #ECF1F9;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}
  .sale-ends {
    border-radius: 100px;
    border: 1px solid rgba(36, 243, 234, 0.50);
    background: linear-gradient(90deg, rgba(36, 243, 234, 0.30) 0.08%, rgba(97, 157, 202, 0.30) 89.66%);
    padding: 15px 20px;
    & p {
      font-size: 18px;
      font-weight: 700;
      line-height: 20px;
      color: var(--color-white);
      & span {
        color: var(--color-primary);
      }
    }
    & .vr {
      background-color: #677B9C;
      opacity: 1;
    }
  }
  .light .sale-ends {
    border-radius: 100px;
    border: 1px solid #1FABA5;
    background: linear-gradient(90deg, rgba(31, 171, 165, 0.15) 1.99%, rgba(14, 136, 225, 0.15) 99.95%);
  }
  .light .sale-ends p {
    color: var(--color-white) !important;
  }
  @media screen and (max-width: 1380px) {
    .sale-ends p {
        font-size: 15px;
      }
  }

/* Navigation css */
.main-menu {
  display: flex;
  align-items: center;
  flex-grow: 1; }
  .main-menu__wrap {
    position: static; }
  .main-menu ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0; }
    .main-menu ul li {
      position: relative; }
      .main-menu ul li:not(:last-child) {
        margin-right: 32px; }
      .main-menu ul li .submenu li {
        margin-right: 0; }
      .main-menu ul li a {
        display: inline-block;
        text-decoration: none;
        font-size: 16px;
        font-weight: 400;
        color: var(--color-white);
        padding: 38px 0;
        position: relative;
        line-height: normal;
        /* text-transform: capitalize; */
        position: relative;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s; }
        .main-menu ul li a.active::before,
        .main-menu ul li a::before {
          position: absolute;
          content: '';
          bottom: 20px;
          height: 6px;
          width: 6px;
          border-radius: 90px;
          background: transparent;
          place-items: center;
          left: 50%;
          right: 50%;
          z-index: -1;
        } 
        .main-menu ul li a:hover, .main-menu ul li a.active {
          color: var(--color-primary);
         }
      .main-menu ul li:hover > a:before,  .main-menu ul li a.active::before {
        background: #24F3EA;
       }

  .xb-inner .xb-item--content {
    padding-left: 10px; }
    .xb-inner .xb-item--content a {
      color: var(--color-default);
      text-decoration: underline; }

.about {
  z-index: 1;
  position: relative; }
  .title-wrap h2,
  .about .about-wrap .xb-item--title,
  .about .about-wrap .xb-item--title.xb-item--title1 {
    font-family: var(--font-inter);
    color: var(--color-white);
    font-size: 38px;
    font-weight: 600;
    line-height: 127%;
    padding-bottom: 40px;
  }
  .title-wrap h2 span,
  .about .about-wrap .xb-item--title span {
    color: var(--color-primary);
  }
  .about .about-wrap .xb-item--title.xb-item--title1 {
    font-weight: 600;
  }
  .xb-item--content.xb-item--content1 {
    padding-bottom: 28px !important;
  }

  .feature-content p,
    .title-wrap p,
  .about .about-wrap .xb-item--content {
    color: var(--color-gray);
    font-family: 'Inter';
    font-size: 20px;
    font-weight: 500;
    line-height: 31px;
    /* padding-bottom: 44px; */
  }
  .feature-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
    .title-wrap p,
  .about .about-wrap .xb-item--content1 {
    font-size: 18px;
    line-height: 30px; }
  .about .about-wrap .xb-item--list span {
    color: var(--color-gray);
    font-family: Syne;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    padding-right: 20px;
    margin-bottom: 26px;
    display: inline-block; }
    @media (max-width: 1199px) {
      .about .about-wrap .xb-item--list span {
        padding-right: 40px; } }
    .about .about-wrap .xb-item--list span svg {
      margin-right: 5px; }
  /* .about .about-img img {
    position: absolute;
    right: -14%;
    top: -113px;
    z-index: -1; }
    @media only screen and (min-width: 1200px) and (max-width: 1500px) {
      .about .about-img img {
        right: -26%; } }
    @media (max-width: 1199px) {
      .about .about-img img {
        right: -27%;
        top: -2%; } }
    @media (max-width: 991px) {
      .about .about-img img {
        position: relative;
        right: auto;
        left: 0;
        top: -12%;
        margin-bottom: -150px; } } */

.mt-none-130 {
  margin-top: -130px; }

.token .token-distribut {
  padding: 35px;
  border-radius: 20px;
  background: #112030;
  height: 100%;
  margin-right: 24px; }
  .light .token .token-distribut {
    background: #fff;
  }
  @media (max-width: 991px) {
    .token .token-distribut {
      margin-right: 0; }
      .body_wrap.toggleclicked,
      .toggleclicked .stricky-fixed {
        margin-left: 0px;
      }
      /* .body_wrap {
        margin-left: 0px;
      }
      .toggleclicked .header-bar-mobile {
        display: none;
      } */
 }
  @media (max-width: 767px) {
    .token .token-distribut {
      padding: 28px 25px 53px 25px; } }
  .token .token-distribut .xb-item--title {
    color: var(--color-white);
    font-family: var(--font-inter);
    font-size: 24px;
    font-weight: 700;
    line-height: 127%;
    padding-bottom: 35px;
}
  .token .token-distribut .xb-item--list {
    margin-bottom: 55px; }
    .token .token-distribut .xb-item--list li {
      font-family: var(--font-inter);
      line-height: 24px;
      font-weight: 600;
      text-transform: capitalize;
      list-style: none;
      margin-bottom: 28px;
      position: relative;
      padding-left: 35px; 
      color:var(--color-gray);
    }
      .token .token-distribut .xb-item--list li::after {
        content: '';
        height: 20px;
        width: 20px;
        background: #07BCFF;
        border-radius: 2px;
        left: 0;
        top: 12px;
        transform: translateY(-50%);
        position: absolute; }
      .token .token-distribut .xb-item--list li:nth-child(2)::after {
        background: #00AE63; }
      .token .token-distribut .xb-item--list li:nth-child(3)::after {
        background: #F34B4B; }
      .token .token-distribut .xb-item--list li:nth-child(4)::after {
        background: #FFD529; }
      .token .token-distribut .xb-item--list li:nth-child(5)::after {
        background: #FF1CC2; }
      .token .token-distribut .xb-item--list li:nth-child(6)::after {
        background: #FF1CC2; }
      /* .token .token-distribut .xb-item--list li:nth-child(7)::after {
        background: #FFFFFF; } */
  .token .token-distribut .xb-item--list-circle {
    position: relative;
    width: auto;
    height: 241px; }
  .token .token-distribut .xb-item--circle {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 171px;
    width: 171px;
    border-radius: 50%;
    background: #07BCFF;
    position: absolute; }
    @media (max-width: 767px) {
      .token .token-distribut .xb-item--circle {
        height: 100px;
        width: 100px; } }
    .token .token-distribut .xb-item--circle span {
      font-family: var(--font-inter);
      font-weight: 700;
      line-height: normal;
      letter-spacing: -0.03px;
      font-size: 48px;
      color: #000; }
      @media (max-width: 767px) {
        .token .token-distribut .xb-item--circle span {
          font-size: 30px; } }
    .token .token-distribut .xb-item--circle:nth-child(1) {
      top: 18px; }
    .token .token-distribut .xb-item--circle:nth-child(2) {
      background: #00AE63;
      height: 104px;
      width: 104px;
      bottom: 0;
      left: 167px; }
      .token .token-distribut .xb-item--circle:nth-child(2) span {
        font-size: 28px; }
      @media (max-width: 767px) {
        /* .token .token-distribut .xb-item--circle:nth-child(2) {
          left: 0; }  */
        }
    .token .token-distribut .xb-item--circle:nth-child(3) {
background: linear-gradient(0deg, #F34B4B 0%, #F34B4B 100%), #00AE63;
      height: 120px;
      width: 120px;
      left: 177px;
      top: -20px; }
      .token .token-distribut .xb-item--circle:nth-child(3) span {
        font-size: 30px; }
        
        @media (max-width: 991px) {
          .token .token-distribut .xb-item--circle:nth-child(3) {
            left: 170px;
          }
        }
    .token .token-distribut .xb-item--circle:nth-child(4) {
      background: #FF1CC2;
      height: 45px;
      width: 45px;
      right: 8px;
      top: 140px; }
      .token .token-distribut .xb-item--circle:nth-child(4) span {
        font-size: 12px; }
      @media (max-width: 767px) {
        /* .token .token-distribut .xb-item--circle:nth-child(4) {
          right: 200px;
          top: 94px; }  */
        }
    .token .token-distribut .xb-item--circle:nth-child(5) {
      background: #FFD529;
      height: 58px;
      width: 58px;
      top: 0;
      right: -15px; }
      .token .token-distribut .xb-item--circle:nth-child(5) span {
        font-size: 14px; }
        @media (max-width: 991px) {
            .token .token-distribut .xb-item--circle:nth-child(5) {
              right: 233px;
          }
          .token .token-distribut .xb-item--circle:nth-child(4) {
            right: 265px;
        }
        .token .token-distribut .xb-item--circle { height: 150px;width: 150px;}
          }
      @media (max-width: 767px) {
        .token .token-distribut .xb-item--circle:nth-child(5) {
          right: 80px; } 
        }
    .token .token-distribut .xb-item--circle:nth-child(6) {
      background: #FF1CC2;
      height: 45.31px;
      width: 45.31px;
      bottom: 34px;
      right: 20px; }
      .token .token-distribut .xb-item--circle:nth-child(6) span {
        font-size: 12px; }
      @media (max-width: 767px) {
        .token .token-distribut .xb-item--circle:nth-child(6) {
          bottom: 0;
          right: 133px; } }
    .token .token-distribut .xb-item--circle:nth-child(7) {
      background: #FFFFFF;
      height: 49.55px;
      width: 49.55px;
      right: 0;
      top: 85px; }
      .token .token-distribut .xb-item--circle:nth-child(7) span {
        font-size: 20px; }
      @media (max-width: 767px) {
        .token .token-distribut .xb-item--circle:nth-child(7) {
          right: 100px; } }
.token .token-sale {
  border-radius: 15px;
  background: #112030;
  padding: 35px;
  margin-left: -30px; }
  .light .token .token-sale {
    background: #fff;
  }
  @media (max-width: 991px) {
    .token .token-sale {
      margin-left: 0; } }
  @media (max-width: 767px) {
    .token .token-sale {
      padding: 40px 20px 33px 20px; } }
  .token .token-sale:not(:last-child) {
    margin-bottom: 22px; }
  .token .token-sale .xb-item--title {
    font-size: 30px;
    line-height: 40px;
    text-transform: capitalize;
    margin-bottom: 67px;
    max-width: 430px; }
  .token .token-sale .xb-item--parcenteg {
    font-size: 20px;
    font-weight: 800;
    line-height: 40px;
    letter-spacing: -0.02px;
    padding-bottom: 6px;
    font-family: --fonts-heading; }
    .token .token-sale .xb-item--parcenteg span:nth-child(1) {
      color: #2DD98F;
      margin-right: 276px; }
      @media only screen and (min-width: 1200px) and (max-width: 1500px) {
        .token .token-sale .xb-item--parcenteg span:nth-child(1) {
          margin-right: 243px; } }
    .token .token-sale .xb-item--parcenteg span:nth-child(2) {
      color: #4D57FF;
      margin-right: 121px; }
    .token .token-sale .xb-item--parcenteg span:nth-child(3) {
      color: #1BB8FF;
      margin-right: 75px; }
    .token .token-sale .xb-item--parcenteg span:nth-child(4) {
      color: #7bd6ff; }
  .token .token-sale .xb-item--token_progress {
    height: 10px;
    width: 100%;
    border-radius: 15px;
    margin-bottom: 23px;
    flex-wrap: nowrap; }
    .token .token-sale .xb-item--token_progress span:nth-child(1) {
      height: 10px;
      width: 317px;
      border-radius: 15px 0 0 15px;
      background: #2DD98F; }
    .token .token-sale .xb-item--token_progress span:nth-child(2) {
      height: 10px;
      width: 163px;
      background: #4D57FF; }
    .token .token-sale .xb-item--token_progress span:nth-child(3) {
      height: 10px;
      width: 114px;
      background: #1BB8FF; }
    .token .token-sale .xb-item--token_progress span:nth-child(4) {
      height: 10px;
      width: 65px;
      background: #7bd6ff;
      border-radius: 0 15px 15px 0; }

    .process-main {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }
    .process-type {
      padding-left: 20px;
      position: relative;
    }
    .process-type::before {
      position: absolute;
      top: 5px;
      bottom: 5px;
      left: 0;
      content: "";
      width: 5px;
      border-radius: 2px;
      background: #07BCFF;
    }
    .process-type.one::before {
      background: #07BCFF !important;
    }
    .process-type.two::before {
      background: #00AE63 !important;
    }
    .process-type.three::before {
      background: #F34B4B !important;
    }
    .process-type.four::before {
      background: #FFD529 !important;
    }.process-type.five::before {
      background: #FF1CC2 !important;
    }
    .process-type p {
      color: var(--color-white);
      font-family: var(--font-inter);
      font-size: 18px;
      font-weight: 400;
      line-height: 25px;
    }   
  .process-type span, .process-type .span  {
    display: flex;
    gap: 5px;
    color: var(--color-gray);
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    position: relative;
    flex-wrap: wrap;
    & > div {
      font-weight: 700;
    }
  }
  @media (max-width: 1199px) {.process-type span, .process-type .span {font-size: 15px;}}
  @media (max-width: 767px) {.process-type span, .process-type .span {font-size: 14px;}}
  @media (max-width: 575px) {.process-type span, .process-type .span {font-size: 12px;line-height: 14px;padding-bottom: 5px;}.process-type::before {width: 4px;}}
 
.xb-team {
  margin-top: 22px;
  position: relative; }
  .xb-team .xb-item--img {
    overflow: hidden;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px; }
    .xb-team .xb-item--img img {
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s;
      width: 100%; }
  .xb-team .xb-item--link {
    height: 40px;
    width: 40px;
    border-radius: 50px;
    background: #000411;
    color: var(--color-white);
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    position: absolute;
    margin-top: -23px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }
  .xb-team .xb-item--title {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 22px;
    line-height: 40px;
    text-transform: capitalize;
    margin-bottom: -5px;
    padding-top: 31px; }
  .xb-team .xb-item--sub-title {
    color: #C1C7DE;
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
   }
  .xb-team:hover .xb-item--link {
    background: linear-gradient(283deg, #619DCA 6.73%, #24F3EA 97.21%) !important;
    color: var(--color-white);
    /* border: 1px solid var(--color-primary);*/ } 
  .xb-team:hover .xb-item--img img {
    transform: scale(1.05); }
  .xb-team.xb-team1 {
    background: linear-gradient(239deg, #435fb2 0%, #111b5e 66.48%, #0c1449 100%);
    border-radius: 20px;
    margin-right: -30px; }
    @media (max-width: 991px) {
      .xb-team.xb-team1 {
        margin-right: 0; } }
    .xb-team.xb-team1 .xb-item--link {
      margin-top: -20px; }
    .xb-team.xb-team1 .xb-item--title {
      font-size: 30px;
      margin-bottom: 5px;
      padding-top: 44px; }
    .xb-team.xb-team1 .xb-item--sub-title {
      padding-bottom: 40px;
      display: inline-block; }

.top-center {
  background-position: top center; }


/* FAQ Start */
.faq .section-title .title span{
  background: var(--JilAi-Blue-Linear);
  background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
    .faq__blockchain .accordion.block.active-block .acc-btn .arrow::after {
      opacity: 1; }
    .faq__blockchain .accordion.block.active-block .acc-btn .arrow span::before {
      opacity: 0; }
    .faq__blockchain .accordion.block.active-block .acc-btn .arrow span::after {
      opacity: 1; }
  .faq__blockchain .acc-btn::before, .faq__blockchain .acc-btn::after {
    display: none; }
  .faq__blockchain .acc-btn.active .arrow::after {
    opacity: 1; }
  .faq__blockchain .acc-btn.active .arrow span::before {
    opacity: 0; }
  .faq__blockchain .acc-btn.active .arrow span::after {
    opacity: 1; }
  .faq__blockchain .acc-btn span {
    margin: 0 !important; }
  .faq__blockchain .arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
    .faq__blockchain .arrow span::before, .faq__blockchain .arrow span::after {
      position: absolute;
      top: 50%;
      left: 50%;
      content: "\f078";
      font-family: "Font Awesome 5 Pro";
      font-weight: 400;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      font-size: 18px;
      line-height: 22px;
      color: var(--color-white); }
    .faq__blockchain .arrow span::after {
      content: "\f077";
      opacity: 0;
      color: #07BCFF;
      z-index: 1;
      top: 48%; }
      .light .faq__blockchain .arrow span::after {
        color: #1FABA5;
      }
.accordion_box .block {
  padding: 24px 0;
}
.accordion_box .block:first-child {
  padding-top: 0;
}
  .accordion_box .block:not(:last-child) {
    border-bottom: 1px solid rgba(69, 114, 151, 0.80); }
    .light .accordion_box .block:not(:last-child) {
      border-bottom: 1px solid #BFCADB ;
    }
    .accordion_box .accordion .acc-btn p {
      font-family: 'Inter', sans-serif;
      color: var(--color-white);
      font-size: 18px;
      letter-spacing: -0.72px;
      line-height: 22px;
      width: calc(100% - 64px);
      cursor: pointer;
    }
.accordion_box .block .acc-btn span {
  display: block;
  cursor: pointer;
}
.accordion_box .block .acc-btn::before,
.accordion_box .block .acc-btn::after {
  position: absolute;
  top: 53%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  border: 9px solid transparent;
  border-top: 14px solid rgba(255, 255, 255, 0.3);
  content: ""; }
.accordion_box .block .acc-btn::after {
  opacity: 1;
  border: 9px solid transparent;
  border-bottom: 14px solid var(--color-white);
  opacity: 0;
  top: 31%; }
.accordion_box .block.active-block .acc-btn::after {
  opacity: 1; }
.accordion_box .block.active-block .acc-btn::before {
  opacity: 0; }
.accordion_box .block .content p {
  font-size: 18px;
  color: #B3B3C0; }
  .faq__blockchain .accordion_box .block .content {
    font-size: 16px;
    color: var(--color-gray);
    line-height: 26px;
    padding: 10px 35px 0 0;
   }
.accordion_box .block .acc_body {
  position: relative;
  display: none; }
.accordion_box .block .acc_body.current {
  display: block; }
  /* END */

.section-title .title {
  color: var(--color-white);
  font-size: 38px;
  font-family: var(--font-inter);
  font-weight: 700;
  line-height: 47px;
  text-align: center; }
  .section-title .title.faq {
    font-size: 32px;
    width:85%;
  }
  .light .section-title .title {
    color: #000;
  }
.section-title .title  span {
  color: var(--color-primary);
    /* background: #24F3EA;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}
/* .light .section-title .title  span {
  background: #1FABA5;
  background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */
.section-title p {
  color: var(--color-gray);
  padding: 30px 0px 45px;
  font-family: var(--font-inter);
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}
.hero .section-title p {
  font-size: 19px;
  padding: 0 0 20px;
}
.light .hero .section-title p {
  color: #637891;
}
.second-title {
  font-family: var(--font-inter);
  color: var(--color-gray);
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  padding-bottom: 20px !important;
}

.partner-section .second-title  {
  font-weight: 600;
  color: var(--color-white);   
  /* padding-bottom: 40px !important;     */
  padding-bottom: 15px !important;
  text-align: center;                     
  & span {
    color: var(--color-primary);
  }
}
.section-title.fund p {
  padding: 15px 0px 55px;
}
/* .light .title-wrap h2,
.light .partner-section .second-title {
  color: #031B34;
} */
 .partner-section .para {
  font-size: 12px;
  color: var(--color-gray);
  line-height: 18px;
 }

  @media (max-width: 991px) {
    .section-title .title {
      font-size: 36px;
      line-height: 45px; } }
  @media (max-width: 767px) {
    .section-title .title {
      font-size: 32px;
      letter-spacing: 0;
      line-height: 38.5px; } }

/*----------------------------------------*/
/*  03. globel
/*----------------------------------------*/
  @media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
      max-width: 1200px; } 
    }

.mxw_1660 {
  max-width: 1660px; }

.mxw_1820 {
  max-width: 1820px; }

.px-60 {
  padding: 0 60px; }

@media (max-width: 991px) {
  .container.px-60 {
    padding-left: 15px;
    padding-right: 15px; } }

.g-15 {
  padding: 0 5px; }
  .g-15 > * {
    padding-left: 8px;
    padding-right: 8px; }

.mt-12 {
  margin-top: 12px; }

.mt-none-12 {
  margin-top: -12px; }

.body-overlay {
  background-color: #000000;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1010;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear 0s;
  transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease; }

.body-overlay.active {
  opacity: .5;
  visibility: visible; }

  .hero__btn {
    margin-top: 40px;
    display: flex;
    /* align-items: center; */
    justify-content: flex-start;
    gap: 24px;
    flex-wrap: wrap; }
 
.them-btn {
  line-height: 1;
  font-family: var(--font-inter);
  font-size: 16px;
  overflow: hidden;
  font-weight: 700;
  /* border: 2px solid transparent; */
  -webkit-transition: 300ms;
  transition: 300ms;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: flex;
  height: 54px;
  padding: 20px 30px;
  align-items: center;
  gap: 10px;
  align-items: center;
  letter-spacing: 1px;
  border-radius: 50px;
  background: linear-gradient(90deg, #24F3EA 0.08%, #619DCA 89.66%);
  /* display: -webkit-inline-box;
  display: -ms-inline-flexbox; */
  display: inline-flex;
  color: #031B34;
  /* -webkit-box-pack: center;
  -ms-flex-pack: center; */
  justify-content: center;
  cursor: pointer;

} 
.them-btn:hover {
  background: linear-gradient(283deg, #24F3EA 6.73%, #619DCA 97.21%);
  color: var(--color-white);
}
.light .them-btn:hover {
  color: var(--color-black);
}
.them-btn.btn-transparent {
  color: var(--color-black);
  background: linear-gradient(90deg, rgba(36, 243, 234, 0.20) 0.19%, rgba(39, 110, 162, 0.20) 99.81%);
}
.them-btn.btn-transparent:hover {
  background: linear-gradient(283deg, #619DCA 6.73%, #24F3EA 97.21%);
}
.them-btn.btn-transparent {
  position: relative;
  z-index: 1;
}
.them-btn.btn-transparent::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px; /* Border thickness */
  background: linear-gradient(90deg, #24F3EA 0.08%, #619DCA 89.66%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
}

.them-btn .btn_icon {
  line-height: 1;
  font-size: 16px;
  /* margin-left: 20px; */
 }
 .them-btn:hover svg path {
  fill: #fff;
}
  .them-btn .btn_icon svg path {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }

.them-btn .btn_label {
  position: relative;
  display: inline-block;
  padding: 27px 0px 25px;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.15, 0.85, 0.31, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.15, 0.85, 0.31, 1);
  transition: transform 0.4s cubic-bezier(0.15, 0.85, 0.31, 1);
  transition: transform 0.4s cubic-bezier(0.15, 0.85, 0.31, 1), -webkit-transform 0.4s cubic-bezier(0.15, 0.85, 0.31, 1); }

.them-btn .btn_label:before {
  top: 120%;
  left: 50%;
  width: 100%;
  display: block;
  position: absolute;
  content: attr(data-text);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%); }



.them-btn:hover .btn_label {
  -webkit-transform: translateY(-81%);
  transform: translateY(-81%); }
#submitText{
  font-family: 'Inter';
  font-size: 16px;
  color: var(--color-black);
  font-weight: 700;
}

/*----------------------------------------*/
/*  27. backtotop
/*----------------------------------------*/
.xb-backtotop {
  right: 20px;
  z-index: 999;
  bottom: 50px;
  position: fixed;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden; }
  .xb-backtotop.active {
    bottom: 85px;
    opacity: 1;
    visibility: visible; }
  .xb-backtotop .scroll {
    z-index: 1;
    width: 40px;
    height: 40px;
    display: block;
    background: linear-gradient(289deg, #619DCA 4.95%, #24F3EA 93.99%);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    font-size: 14px; }
    .xb-backtotop .scroll:hover {
      background: #fff;
      color: #619DCA ;
      border: 1px solid #619DCA;
      margin-bottom: 4px; }
  .xb-backtotop.style-ins .scroll {
    background: var(--color-ins);
    color: #052328; }
  .xb-backtotop.style-law .scroll {
    background: var(--color-law); }
  .xb-backtotop.style-advisor .scroll {
    background: var(--color-advisor); }
  .xb-backtotop.style-marketing .scroll {
    background: var(--color-marketing); }
  .xb-backtotop.style-business .scroll {
    background: var(--color-business);
    color: #03080B; }

/*----------------------------------------*/
/*  30. mobile-menu
/*----------------------------------------*/
.xb-hamburger-menu {
  display: none; }
  @media (max-width: 991px) {
    .xb-hamburger-menu {
      display: block; } }

.xb-nav-mobile-button {
  position: relative;
  cursor: pointer;
  font-size: 25px;
  color: var(--color-dark); }
  .xb-nav-mobile-button.btn-white {
    color: var(--color-white); }

.xb-header-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -khtml-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  visibility: hidden; }

.xb-header-menu {
  position: fixed;
  min-height: 100vh;
  width: 300px;
  top: 0;
  left: 0;
  bottom: 0;
  margin: 0;
  z-index: 1010;
  /* overflow: hidden; */
  -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -khtml-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: translateX(-100%);
  -khtml-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  visibility: hidden;
  border-right: 1px solid transparent;
  border-image: linear-gradient(90deg, rgba(36, 243, 234, 0.15) 0.19%, rgba(97, 157, 202, 0.15) 99.81%);
  border-image-slice: 1;
  background: linear-gradient(90deg, rgba(36, 243, 234, 0.15) 0.19%, rgba(97, 157, 202, 0.15) 99.81%);
  backdrop-filter: blur(150px);
}
.light .xb-header-menu  {
  background: #e7f1f8 !important;
  border-right: 1px solid #1FABA5 !important;
}
.xb-header-menu.active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(0%);
  -khtml-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%); }

.xb-header-menu.active + .xb-header-menu-backdrop {
  opacity: 1;
  visibility: visible; }

.xb-header-menu-scroll {
  height: 100%;
  padding: 42px 20px 20px; }
.xb-header-nav {
  /* height: calc(100vh - 115px);
  overflow-y: auto;
  padding-right: 5px; */
}
.xb-header-menu-scroll .xb-close {
  position: absolute;
  top: 27px;
  right: 10px; }

.xb-header-menu-scroll .xb-menu-primary > li {
  padding-left: 0;
  padding-right: 0; }

.xb-header-menu-scroll .xb-menu-primary > li > a .left-icon {
  margin-right: 4px; }

.xb-header-menu-scroll .xb-menu-primary > li .elementor-section {
  max-width: 100%; }

.xb-header-menu-scroll .xb-menu-primary > li .elementor-container {
  margin: 10px 0 !important; }

.xb-header-menu-scroll .xb-menu-primary > li .sub-menu.xb-mega-menu, .xb-header-menu-scroll .xb-menu-primary > li .children.xb-mega-menu {
  padding-left: 0; }

.xb-menu-toggle {
  position: absolute;
  top: 10px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  right: 0;
  width: 28px;
  cursor: pointer;
  font-size: 15px;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -khtml-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  color: #1b1b1b;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0.03);
  display: inline-block; }

.xb-menu-toggle:before {
  content: "\f107";
  font-weight: 400;
  font-family: "Font Awesome 5 Pro"; }

.xb-menu-toggle.active:before {
  content: "\f106"; }

.xb-menu-primary {
  list-style: none;
  margin: 0;
  padding: 0; 
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.xb-menu-primary li {
  position: relative; }

  .light .documents.dropdown a svg path {
    stroke: #000;
  }
  .light .documents.dropdown a .document path {
    stroke: none;
  }
  .light .documents.dropdown a.show .document path {
    fill: #1FABA5;
  }
.xb-menu-primary li a {
  font-family: var(--font-inter);
  display: block;
  line-height: normal;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 400;
  border-radius: 10px;
padding: 15px 16px;
&.active {
  font-weight: 600;
  color: #24F3EA;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(36, 243, 234, 0.15) 0.19%, rgba(97, 157, 202, 0.15) 99.81%);
}
&:hover {
  color: #24F3EA;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(36, 243, 234, 0.15) 0.19%, rgba(97, 157, 202, 0.15) 99.81%);
}
& span {
  display: flex;
  align-items: center;
  gap: 12px;
}
}
.xb-menu-primary li a span svg path {
  fill: #9CA3AF;
} 
.xb-menu-primary .documents.dropdown .scrollspy-btn.show,
.xb-menu-primary li a.active span svg path {
  fill: #1FABA5;
}
.xb-menu-primary li a:hover span svg path {fill: #1FABA5;}
.light .xb-menu-primary li:hover a span {
  color: #1FABA5;
}
.light .xb-menu-primary li a span {color: #031B34;}
.light .xb-menu-primary li a.show span {color: #1FABA5;}
.light .xb-menu-primary li.scrollspy-btn.show span ,
.light .xb-menu-primary li a.active span {
  color: #1FABA5;
}
/* .light .xb-menu-primary li a:hover {
  background: linear-gradient(90deg, rgba(36, 243, 234, 0.5) 0.19%, rgba(97, 157, 202, 0.5) 99.81%);
} */
.light #downloadAll:hover,
.light #downloadAll {
  color: #031B34;
}

.xb-menu-primary li > a:hover, .xb-menu-primary li > a.current, .xb-menu-primary li.current_page_item > a, .xb-menu-primary li.current-menu-item > a, .xb-menu-primary li.current_page_ancestor > a, .xb-menu-primary li.current-menu-ancestor > a {
  color: #24F3EA; }

.xb-menu-primary .sub-menu, .xb-menu-primary .children {
  position: relative;
  display: none;
  list-style: none;
  margin: 0;
  padding: 0; }

.xb-menu-primary .sub-menu li a, .xb-menu-primary .children li a {
  font-weight: 500;
  padding-left: 14px; }

.xb-menu-primary > li > .sub-menu > li > .sub-menu > li a {
  padding-left: 28px; }

.xb-menu-primary .xb-megamenu .elementor-container > .elementor-column {
  width: 100%; }

.xb-menu-primary .xb-megamenu .elementor-container .elementor-widget-wrap {
  padding: 0 !important; }

.xb-menu-primary .xb-megamenu .xb-link li {
  margin: 0; }

.xb-menu-primary .xb-megamenu .xb-heading {
  padding-left: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 12px;
  padding-bottom: 12px; }

.xb-menu-primary .xb-megamenu .xb-heading .xb-item--title {
  margin-bottom: 0 !important;
  font-size: 15px !important;
  border-bottom: none !important; }

.xb-menu-primary .xb-megamenu .elementor-widget-heading > .elementor-widget-container {
  margin-bottom: 0 !important;
  border-bottom: none !important; }

.xb-menu-primary .xb-megamenu .elementor-section .elementor-container {
  flex-wrap: wrap; }

.xb-menu-primary .xb-menu-toggle:hover {
  color: var(--color-primary); }

.xb-logo-mobile {
  margin-bottom: 36px; }

/* .xb-menu-close {
  background-color: rgba(0, 0, 0, 0.03);
  position: absolute;
  top: 0;
  right: 0;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px; } */

.xb-header-wrap .xb-menu-toggle {
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.03); }
.xb-header-wrap .xb-menu-close {
  padding: 9px;
  display: flex;
  align-items: center;
  border-radius: 50px;
  border: 1px solid #24F3EA;
  background: linear-gradient(283deg, #619DCA 6.73%, #24F3EA 97.21%);
  cursor: pointer;
  transition: all 0.3s ease;
}
.light .xb-header-wrap .xb-menu-close {
  border: 1px solid #1FABA5;
}
.xb-header-wrap .xb-menu-close:hover {
  background: linear-gradient(283deg, #619DCA 6.73%, #24F3EA 97.21%);
  color: #031B34;
}

.xb-header-wrap .xb-menu-close:hover svg path {
  stroke: #031B34; /* ensure SVG icon changes color */
}
.xb-header-wrap .xb-menu-close svg {
  transition: transform 0.3s ease;
}

.xb-header-wrap .xb-menu-close:hover svg {
  transform: rotate(90deg); /* rotate 90 degrees on hover */
}
.xb-header-wrap .xb-close::before,
.xb-header-wrap .xb-close::after {
  background-color: #fff; }

  @media (max-width: 1199px) {
    .xb-header-menu-scroll {
      padding: 30px 20px 20px;
  }
  .xb-menu-primary li a {font-size: 18px;}
  }

/*----------------------------------------*/
/*  32. preloader
/*----------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000411;
  z-index: 800;
  height: 100%;
  width: 100%;
  display: table;
  transition: .2s; }

.loader {
  display: table-cell;
  text-align: center;
  vertical-align: middle; }

.line-scale > div:nth-child(1) {
  -webkit-animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div:nth-child(2) {
  -webkit-animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div:nth-child(3) {
  -webkit-animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div:nth-child(4) {
  -webkit-animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div:nth-child(5) {
  -webkit-animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div {
  background-color: #619DCA;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block; }

@-webkit-keyframes line-scale {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1); }
  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4); }
  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1); } }
@keyframes line-scale {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1); }
  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4); }
  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1); } }

    .features-main {
      row-gap: 70px;
      margin-top: 60px;
    }
    .feature-card {
      text-align: center;
      background: var(--color-gray);
      padding: 34px 22px;
      border-radius: 15px;
      background: var(--color-darkblue);
      height: 100%;
    }
    .card-title {
      color: var(--color-white);
      font-size: 26px;
      font-weight: 500;
      line-height: 30px;
      padding-bottom: 20px;
    }
    /* .map-card .card-title {
      color: #FFF;
      font-family: 'Syne';
      font-size: 22px;
      font-weight: 500;
      line-height: 30px;
    } */
    .roadmap-section .title-wrap p{
      padding-bottom: 40px;
    }
    .feature-card p {
      color: var(--color-gray);
      text-align: center;
      font-family: 'Syne';
      font-size: 16px;
      font-weight: 400;
      line-height: 23px;
    }
    .feature-card img {
      margin-top: -80px;
      padding-bottom: 20px;
    }
    .found-raising-section,
    .roadmap-section {
      position: relative;
      z-index: 2;
      overflow-x: hidden;
    }
    .roadmap-main {
      position: relative;
      width: 140%;
      overflow-x: hidden;
    }
    .map-card {
      padding: 34px 24px;
      border-radius: 15px;
      border: 1px solid #457297;
      background: #000410;
    }
    .map-card p {
      color: var(--color-gray);
      font-size: 18px;
      font-weight: 600;
      line-height: 25px; /* 138.889% */
    }
    .year-end {
      color: #00D26A;
      font-size: 14px;
      font-style: normal;
      font-weight: 700;
      line-height: 127%;
      display: inline-flex;
      padding: 10px 17px;
      justify-content: center;
      align-items: center;
      gap: 10px;
      border-radius: 20px;
      background: rgba(0, 210, 106, 0.20);
      margin-bottom: 35px;
    }
    .year-end.end-2 {
      color: #FCD53F;
      background: rgba(252, 213, 63, 0.20);
    }
    .year-end.end-3 {
      color: #14A7FF;
      background: rgba(0, 116, 186, 0.20);
    }
    .year-end.end-4 {
      color: #FF6723;
      background: rgba(255, 103, 35, 0.20);
    }
    .link-line {
      position: relative;
    }
    .link-line::before {
      position: absolute;
      content: "";
      width: 3px;
      height: 70px;
      bottom: 24px;
      left: 10px;
      background: #0B404B;
  }
  .swiper-button-prev, 
  .swiper-button-next {
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    z-index: -1;
    align-items: center;
    /* border: 1px solid #FFF; */
  }
  .swiper-button-next:after,
  .swiper-button-prev:after {
    position: absolute;
    content: '';
    top: 0 !important;
    right: 0 !important;
}
.swiper-wrapper {
  z-index: 2;
}
.swiper-wrapper.buttons {
  position: relative;
  top: 30px;
}
 .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
 color: #0F3358;
  top: 25px;
  left: auto;
  right: 80px;
  transition: .3s ease-in-out;
}
.light .swiper-button-prev, .swiper-container-rtl .swiper-button-next,
.light .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  color: rgb(31 171 165 / 70%);
}
.swiper-button-prev:hover, .swiper-container-rtl .swiper-button-next {
  color: #24F3EA;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  color: #0F3358;
  transition: 0.3s ease-in-out;
  top: 25px;
}
.swiper-button-next:hover, .swiper-container-rtl .swiper-button-prev {
  color: #24F3EA;
}
/* .modal.fade.play-modal .modal-dialog {
    transform: translate(0, -50px);
} */
.modal-backdrop {
  z-index: 99;
}
.modal-body {
  padding: 0px;
}
.close-icon {
  position: absolute;
    top: -30px;
    right: -60px;
    /* width: 40px; */
    /* height: 40px; */
    display: flex;
    background: transparent;
    align-items: center;
    justify-content: center;
}

 /* Contact Us Start */
 .xb-contact {
  border-radius: 22px;
  overflow: hidden;
}
.xb-inner {
border-radius: 20px;
background: linear-gradient(0deg, var(--color-darkblue) 0%, var(--color-darkblue) 100%), lightgray 0% 0% / 100.49020051956177px 100.49020051956177px repeat;
padding: 46px 41px 41px 35px;
}
.light .xb-inner {
  background: #244A66;
}
.xb-inner .xb-item--title {
  font-family: var(--font-inter);
  color: var(--color-heading);
font-size: 30px;
line-height: 38px;
letter-spacing: -0.04px;
margin-bottom: 40px;
}
.xb-inner .xb-item--field {
  position: relative;
  margin-bottom: 23px; 
}
.xb-inner .xb-item--field span {
  position: absolute;
  top: 43%;
  left: 0;
  transform: translateY(-43%);
  & svg {
    opacity: 0.8;
  }
}
.xb-inner .xb-item--field input {
  font-family: var(--font-inter);
  background: none;
  border-bottom: 2px solid #457297;
  font-weight: 500;
  line-height: 24px;
  font-size: 16px;
  padding: 0 0 0 29px;
  height: 56px;
  color: var(--color-white); 
}
.xb-inner .xb-item--field input::placeholder {
  color: #C1C7DE;
  opacity: 0.5;
 }
 .xb-inner .xb-item--field input::-webkit-input-placeholder {
  color: #C1C7DE;
  opacity: 0.5;
 }
 .xb-inner .xb-item--field input:-moz-placeholder {
  color: #C1C7DE;
  opacity: 0.5;
 }
 .xb-inner .xb-item--field input::-moz-placeholder {
  color: #C1C7DE;
  opacity: 0.5;
 }
 .xb-inner .xb-item--field input:-ms-input-placeholder {
  color: #C1C7DE;
  opacity: 0.5;
 }
 .xb-inner .xb-item--field input::-ms-input-placeholder {
  color: #C1C7DE;
  opacity: 0.5;
 }
 .xb-inner .xb-item--checkbox {
  padding-left: 35px;
  padding-top:10px;
}
.xb-inner .xb-item--checkbox .form-check-label, .xb-inner .xb-item--checkbox .form-check-label a {
  font-family: var(--font-inter);
  color: #b0b3c7;
 }
 .light .xb-inner .xb-item--checkbox .form-check-label, .xb-inner .xb-item--checkbox .form-check-label a {
  color: #C4C7DB;
 }
 .xb-inner .xb-item--checkbox .form-check-label a {
  text-underline-offset: 3px;
 }
 .xb-inner .xb-item--contact-btn {
  padding-top: 40px; }
  .xb-inner .xb-item--contact-btn .them-btn {
    width: auto;
    height: 50px;
    & .btn_label {
      font-size: 16px;
    }
   }
   input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 2px solid #B0B3C7;
    background-color: transparent;
    margin-top: 6px;
    cursor: pointer;
  }
  input[type=checkbox]:checked {
    background-color: #24F3EA;
    border-color: #24F3EA;
  }
  input[type="checkbox"]:focus {
    box-shadow: 0 0 0 0;
    border-color: #24F3EA;
  }
  .testimonial-wrap {
    border-radius: 0 20px 20px 0;
    background: linear-gradient(0deg, var(--color-darkblue) 0%, var(--color-darkblue) 100%) repeat ;
    border-left: 1px solid #457297;
    padding: 31px 31px 41px;
    }
    .testimonial-slider {
      /* padding-bottom: 250px; */
      height:100%
     }
     .testimonial-slider .swiper-pagination .swiper-pagination-bullet {
      height: 10px;
      width: 10px;
      border-radius: 2px;
      background: #222530;
      opacity: 1;
     }
     .testimonial-slider .swiper-pagination .swiper-pagination-bullet-active {
      background: linear-gradient(283deg, #619DCA 6.73%, #24F3EA 97.21%);
     }
     .xb-testimonial .xb-item--avater {
      margin-bottom: 26px;
     }
     .xb-item--avater .xb-item--holder {
      width: calc(100% - 88px);
     }
     .xb-testimonial .xb-item--img {
      margin-right: 20px; 
    & img {
      border-radius: 10px;
    }
    }
      .xb-testimonial .xb-item--nationality span {
        font-size: 12px;
        font-weight: 500;
        line-height: 15px;
        padding-left: 8px;
        color: #c1c7de;
      }
      .xb-testimonial .xb-item--title {
        font-size: 16px;
        font-family: var(--font-inter);
        line-height: normal;
        letter-spacing: -0.02px;
       }
      .xb-testimonial .xb-item--sub-title {
        font-size: 10px;
        font-family: var(--font-inter);
        line-height: normal;
        letter-spacing: -0.02px;
        font-weight: 500;
        color: #C1C7DE;
      }
      .xb-testimonial .xb-item--comment {
        font-family: var(--font-inter);
        font-size: 16px;
        font-weight: 500;
        line-height: 23px;
        color: var(--color-gray); }
        .testimonial-wrap .swiper-container-horizontal > .swiper-pagination-bullets {
          bottom: 0;
      }

/* Contact Us End */

/* Footer Start */
.xb-footer-bottom {
  padding: 64px 0px 60px;
 }
 .xb-footer-bottom .footer-copyright {
  padding-top: 31px;
  & p {
    font-size: 14px;
    line-height: 20px;
    color: var(--color-white);
  }
}
.xb-footer-bottom .disclaimer{
  /* padding:0 0 30px; */
  border-top: 1px solid #457297;
}
.light .xb-footer-bottom .disclaimer {
  border-top: 1px solid #BFCADB;
}
.xb-footer-wrap .xb-item--footer_widget span {
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--color-gray);
  text-transform: uppercase;
  opacity: 0.8;
}
.xb-footer-wrap .xb-item--footer_widget-list {
  list-style: none;
  margin-top: 20px; 
  gap: 11px;
  & li {
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--color-white);
    line-height: 20px;
  }
}
.xb-item--footer_widget-list.w75 {
  width: 85%; 
  font-family: var(--font-inter);
  & li {
    line-height: 23px;
  }
}
.xb-item--footer_widget-list.w70 {
  width: 70%; 
}
  .xb-footer-wrap .xb-item--footer_widget-list li a {
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    color: var(--color-white);
    transition: .2s ease-in-out;
    &:hover {
      color: #24F3EA;
    }
   }
   .light .xb-footer-wrap .xb-item--footer_widget-list li a:hover {
    color: #0f92f0;
   }
   .xb-footer-wrap {
    padding-bottom: 45px;
    align-items: flex-start;
    position: relative;
   }
   .xb-item--social-link li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
  }
  
  .xb-item--social-link li a:hover {
    background-color: rgba(36, 243, 234, 0.15); /* light glow */
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(97, 157, 202, 0.4);
  }
  .footer-logo span {
    font-family: var(--font-heading) !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #24F3EA !important;
    opacity: 1 !important;
  }
  .light .footer-logo span {
    color: #1FABA5 !important;
  }
   /* Footer End */

@media screen and (max-width: 1199px) {
  /* Footer Start */
  .xb-item--footer_widget-list.w75, .xb-item--footer_widget-list.w70 {
    width: 95%; 
  }
  .xb-footer-wrap .xb-item--footer_widget-list {
    margin-top: 15px;
} /* Footer End */
/* Contact Us Start */
.xb-inner .xb-item--title {
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 30px;
}
.xb-inner .xb-item--checkbox .form-check-label, .xb-inner .xb-item--checkbox .form-check-label a {
  font-size: 15px;
  line-height: 24px;
}
.xb-testimonial .xb-item--comment, .xb-testimonial .xb-item--title {
  font-size: 15px;
}
.xb-inner .xb-item--contact-btn {
  padding-top: 35px;
}
/* Contact Us End */
.footer-logo img {
  width: 44px;
  height: 44px;
}
.footer-logo span {
  font-size: 18px !important;
}

}
@media screen and (max-width: 991px) {
  /* Contact Us Start */
  .xb-inner {
    border-radius: 20px;
    padding: 35px;
  }
  .xb-inner .xb-item--title {
    font-size: 24px;
    margin-bottom: 24px;
}
.testimonial-wrap {
  border-radius: 20px;
  border-left: 0;
  padding: 30px;
}
.testimonial-slider {
  padding-bottom: 80px;
}
input[type="checkbox"] {
  width: 14px;
  height: 14px;
  margin-top: 8px;
}
.xb-inner .xb-item--field input {
  height: 50px;
}
  /* Contact Us End */
}
@media screen and (max-width: 767px) {
   /* Contact Us Start */
.xb-testimonial .xb-item--title {
  font-size: 15px;
}
.xb-inner .xb-item--title {
  font-size: 22px;
}
.xb-testimonial .xb-item--avater {
  margin-bottom: 20px;
}
.xb-footer-bottom .footer-copyright {
  padding-top: 25px;
}
 /* Contact Us End */

   /* Footer Start */
    .xb-footer-bottom {
      padding: 34px 0px 30px;
  }
  .xb-footer-wrap {
    padding-bottom: 30px;
}
.xb-footer-wrap .xb-item--footer_widget-list {
  margin-top: 10px;
}  /* Footer End */
  }
  @media screen and (max-width: 575px) {
    /* Contact Us Start */
    .xb-inner {
      padding: 20px;
  }
  .xb-inner .xb-item--contact-btn {
    padding-top: 25px;
}
.testimonial-slider {
  padding-bottom: 60px;
}
.xb-inner .xb-item--title {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 20px;
}
.testimonial-wrap {
  padding: 20px 20px 10px 20px;
}
.xb-testimonial .xb-item--comment, .xb-inner .xb-item--contact-btn .them-btn #submitText, .xb-testimonial .xb-item--title{
  font-size: 14px;
}
.xb-inner .xb-item--field input {
  font-size: 15px;
  height: 45px;
}
.xb-inner .xb-item--checkbox {
  padding-left: 45px;
}
.xb-inner .xb-item--checkbox .form-check-label, .xb-inner .xb-item--checkbox .form-check-label a {
  font-size: 14px;
  line-height: 22px;
}
.xb-testimonial .xb-item--img {
  margin-right: 15px;
}
.xb-footer-wrap {
  padding-bottom: 20px;
}
.xb-item--footer_widget-list.w75, .xb-item--footer_widget-list.w70 {
  width: 100%; 
}
.xb-footer-bottom .footer-copyright {
  padding-top: 20px;
  & p {
    font-size: 13px;
    line-height: 20px;
}
}
  .xb-footer-wrap .xb-item--footer_widget-list {
    gap: 8px;
}
.xb-item--social-link svg {
  width:25px;
  height:25px;
 }
/* Contact Us End */
.footer-logo img {
  width: 40px;
  height: 40px;
}
.footer-logo span {
  font-size: 16px !important;
}
  }
  @media screen and (max-width: 380px) {
    .xb-inner .xb-item--title {
      font-size: 18px;
      line-height: 26px;
    }
  }
.pro-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.projects {
  padding-left: 20px;
  position: relative;
}
.projects::before {
  position: absolute;
  content: " ";
  left: 0;
  top: 8px;
  width: 12px;
  min-height: 12px;
  border-radius: 50%;
  background: linear-gradient(90deg, #24F3EA 0.08%, #619DCA 89.66%);
}
.light .projects::before {
  background: linear-gradient(90deg, #1FABA5 1.99%, #0E88E1 99.95%);
}
.projects p {
  color: var(--color-white);
  font-family: var(--font-inter);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
} 
.projects.num p {
  font-family: 'Inter';
}
.projects span {
  font-family: var(--font-inter);
  color: var(--color-gray);
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
}
.found-card {
  border-radius: 15px;
  border: 1px solid #457297;
  height: 100%;
  background: #000410;
}
.light .found-card {
  border-radius: 15px;
  border: 1px solid #DDE4EF;
  background: #FFF;
}
.found-card .title {
  padding: 15px 25px;
  background: rgba(21, 156, 255, 0.15);
  border-radius: 15px 15px 0px 0px;
}
.light .found-card .title {
  border-radius: 15px 15px 0px 0px;
  background: rgba(31, 171, 165, 0.30);
}
.found-card .list-main {
  padding: 20px 25px;
  border-radius: 0px 0px 15px 15px;
  display: flex;
  flex-direction: column;
  gap:15px;
}
.found-card .title span {
  display: block;
  color: var(--color-white);
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}
.light .found-card .title span {
  color: #006662;
}
.found-card .title p {
  background: linear-gradient(283deg, #619DCA 6.73%, #24F3EA 97.21%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Syne;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}
.list {
  position: relative;
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.list::before {
  position: absolute;
  content: " ";
  left: 0;
  top: 3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(283deg, #619DCA 6.73%, #24F3EA 97.21%);
}
.light .list::before {
  background: linear-gradient(90deg, #1FABA5 1.99%, #0E88E1 99.95%);
}
.year-list {
  display: inline-block;
  margin: 0px 4px 2px 0px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(283deg, #619DCA 6.73%, #24F3EA 97.21%);
}
.list span {
  font-family: var(--font-inter);
  color: var(--color-gray);
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  display: block;
}
.list p {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}
.token-sale.model.burn-plan {
  border-radius: 15px;
  background: var(--color-darkblue);
  padding: 35px;
}
.token-sale.model.burn-plan .process-type::before {
  background: linear-gradient(283deg, #619DCA 6.73%, #24F3EA 97.21%) !important;
}
.token.middle-section {
  position: relative;
}
/* .token.middle-section::before {
  position: absolute;
  content: " ";
  top: -300px;
  background-image: url(../img/home/mid-blue-blur.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 1437px;
  z-index: -1;
} */
.footer.bg_img {
  position: relative;
}
.bg_img {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.top-blue-blur.bg_img{
  position: absolute;
  top: 0;
  left:0;
  background-image: url(../img/home/top-blue-blur.png);
  background-position:top center;
  height: 820px;
  width: 100%;
  z-index: -1;
  background-size: 100% 100%;
}
.light .top-blue-blur.bg_img {
  background-image: url(../img/home/top-blue-blur-light.png);
  z-index: 1;
}
.light main {position: relative; z-index: 3;}
.mid-blue-blur.bg_img{
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url(../img/home/mid-blue-blur.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 1579px;
  z-index: -1;
}
.mid-blue-blur2.bg_img{
  position: absolute;
  left:0;
  top: -110px;
  background-image: url(../img/home/mid-blue-blur.png);
  background-position:top center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 1437px;
  width: 100%;
  z-index: -1;
}
.bottom-blue-blur.bg_img{
  position: absolute;
  left:0;
  top: 0;
  background-image: url(../img/home/bottom-blue-blur.png);
  background-position:top center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.footer-section{
  background:var(--color-darkblue);
  position: relative;
  z-index: 2;
}
.light .footer-section {
  background: #ECF1F9;
}
.social-icon svg {
  color: var(--color-white);
}
.social-icon svg:hover {
  color: #24F3EA;
}
.social-icons {
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  color: var(--color-white);
  border-radius: 100px;
  border: 1px solid #24F3EA;
  background: linear-gradient(90deg, rgba(36, 243, 234, 0.30) 0.08%, rgba(97, 157, 202, 0.30) 89.66%);
  padding: 11px 11px;
}
.social-icons span {
  padding: 4px;
  border-radius: 24px;
  border: 1px solid #24F3EA;
  background: linear-gradient(90deg, rgba(36, 243, 234, 0.30) 0.19%, rgba(39, 110, 162, 0.30) 99.81%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.light .social-icons span {
  border: none;
  background: none;
  /* color: #276EA2; */
}
.light .group-hover {
  color: #276EA2;
}
.light .group-hover:hover,
.group-hover {
  color: var(--color-white);
  transition: color 0.3s ease;
}
.light .group-hover:hover,
.group-hover:hover {
  background: linear-gradient(283deg, #619DCA 6.73%, #24F3EA 97.21%);
  color: var(--color-black);
  & span {
    border-color: #031B34;
  }
}
.light .checkbox-label,
.light .group-hover {
  /* color: #031B34; */
  border-radius: 100px;
  border: 1px solid #1FABA5;
  background: linear-gradient(90deg, rgba(31, 171, 165, 0.12) 1.99%, rgba(14, 136, 225, 0.12) 99.95%);
}
.modal-body iframe {
  display: block;
}
/* .modal {
  margin-top: 50px;
} */

.demo-section {
  position: relative;
}
.rotate {
  animation: rotation 6s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.play-icon svg {
  color: var(--color-white);
}
.play-icon svg:hover {
  color: #24F3EA;
}
.play-icon {
  position: absolute;
  /* padding: 20px; */
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(1, 9, 25, 0.5);
  animation: anim-glow 2s linear infinite;
}
@keyframes anim-glow {
	0% {
		box-shadow: 0 0 rgba(1, 9, 25, 0.5);
	}
	100% {
		box-shadow: 0 0 20px 25px transparent;
		/* border-width: 2px; */
	}
}
.outer-ring {
  position: absolute;
  content: "";
  width: 430px;
  height: 430px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.demo-section {
  width: 422px;
  height: 422px;
  margin: 0 auto;
}
.rotate-reverse {
  animation: rotationreverse 3s infinite linear;
}

@keyframes rotationreverse {
  from {
    transform: rotate(359deg);
  }
  to {
    transform: rotate(0deg);
  }
}

.waves {
  position: absolute;
  content: " ";
  width: 310px;
  height: 310px;
  /* background: linear-gradient(286deg, #619DCA 12.17%, #24F3EA 88.49%); */
  /* background:url('../img/home/video-bg.webp') no-repeat center center/cover; */
  opacity: 1;
  border-radius: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
   /* -webkit-animation: waves 2s ease-in-out infinite;
  animation: waves 2s ease-in-out infinite; */
}
@keyframes waves {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.token-burn-plan-section {
  position: relative;
  z-index: 2;
}

/* our partners section */
.our-partner-main {
  border-radius: 15px;
  background: var(--color-darkblue);
  padding: 38px 57px 49px;
}
.partners p {
  color: var(--color-gray);
  font-family: 'Syne';
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}
.xb-header-wrap .header-btn{
  display:none !important;
}
/* responsive style */

.header-logos a span {
  font-family: var(--font-heading);
  font-size: 26px;
  color: #24F3EA;
  font-weight: 700;
}
.light .header-logos a span {
  color: #1FABA5;
}

@media screen and (max-width: 1440px) {
  .token.middle-section::before {
    height: 1900px;
  }
  .roadmap-main {
    width: 120%;
  }
}
@media (max-width: 1390px) {
  /* .token .token-distribut .xb-item--circle {
    width: 150px;
    height: 150px;
  } */
  .token .token-distribut .xb-item--circle span {
    font-size: 40px;
  }
  /* .token .token-distribut .xb-item--circle:nth-child(3) {
    background: #424CFF;
    height: 75.66px;
    width: 75.66px;
    left: 150px;
    top: 0;
  } */
  /* .token .token-distribut .xb-item--circle:nth-child(2) {
    background: #00AE63;
    height: 90.41px;
    width: 90.41px;
    bottom: -10px;
    left: 130px;
  } */
  .token.middle-section::before {
    top: -150px;
  }
  .main-menu ul li:not(:last-child) {
    margin-right: 20px;
  }
  .main-menu ul li a {
    font-size: 15px;
  }
}
@media (max-width: 1280px) {
  .xb-header .container-fluid {
    padding: 30px 35px 15px;
  }
  .xb-header.stricky-fixed .container-fluid{
    padding: 15px 35px !important;
  }
.container{padding-left:35px;padding-right:35px;}
  .main-menu ul li:not(:last-child) {
    margin-right: 20px;
  }
  .social-icon svg {
    width: 40px;
    height: 40px;
  }
  .header-btn .login-btn1,
  .header-btn .login-btn {
    padding: 5px 15px;
  }
  .side-menu a {
    width: 44px;
    height: 44px;
  }
  .xb-nav-mobile {
    font-size: 22px;
  }
  .sale-ends {
    padding: 13px 15px;
    & p {
      font-size: 15px;
    }
  }
  .header-logos a img {
    width: 44px;
    height: auto;
  }
  .header-logos a span {
    font-size: 22px;
  }
}

@media (max-width: 1199px) {
  .xb-header .container-fluid {
    padding: 30px 25px 15px;
  }
  .xb-header.stricky-fixed .container-fluid{
    padding: 15px 25px !important;
  }
.container{padding-left:25px;padding-right:25px;}
  /* .section-title .title {
    font-size: 40px;
  } */
  /* .header-logo a img {
    width: 150px;
    height: auto;
  } */
  /* .main-menu ul li:not(:last-child) {
    margin-right: 10px;
  } */
  .stricked-menu .main-menu ul li a,
  .main-menu ul li a {
    font-size: 14px;
    padding: 25px 0px;
  }
  .main-menu ul li a.active::before, .main-menu ul li a::before {
    bottom: 15px;
    height: 5px;
    width: 5px;
  }
  .header-btn .login-btn1,
  .header-btn .login-btn {
    font-size: 13px;
    margin-left: 0;
  }
  .feature-content {
    gap: 30px;
  }
  .feature-content p, .title-wrap p, .about .about-wrap .xb-item--content {
    font-size: 18px;
    line-height: 28px;
  }
  .social-icon svg {
    width: 35px;
    height: 35px;
  }
  .side-menu a {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .header-logos a img {
    width: 40px;
  }
  .header-logos a span {
    font-size: 20px;
  }
  .title-wrap p, .about .about-wrap .xb-item--content {
    font-size: 16px;
    line-height: 26px;
  }
  .title-wrap h2, .about .about-wrap .xb-item--title {
    font-size: 28px;
    line-height: 32px;
  }
  .section-title .title {
    font-size: 32px;
    line-height: 40px;
}
.hero__btn {margin-top: 35px;}
.them-btn, .xb-inner .xb-item--contact-btn .them-btn {font-size: 15px;height: 50px;}
  .card-title {
    font-size: 24px;
    padding-bottom: 15px;
  }
  .feature-card {
    padding: 30px 20px;
  }
  .feature-card img {
    padding-bottom: 15px;
    width: 90px;
    height: 90px;
  }
  .features-main {
    margin-top: 55px;
  }
  .process-main {
    gap: 25px;
  }
  .process-type p {
    font-size: 17px;
  }
  .section-title .title.faq {
    font-size: 28px;
  }
  .section-title p {
    font-size: 16px;
    padding: 20px 0px 40px;
  }
  .hero .section-title p {
    font-size: 16px;
    padding: 0 0 15px !important;
}
  br {
    display: none;
  }
  .xb-team .xb-item--sub-title br {
    display: block;
  }
  .header-btn.ul_li .gap-sm-3 {
    gap: 0.75rem !important;
  }
  .modal-body iframe {
    height: 350px;
  }
  #exampleModalToggle .modal-lg {
    --bs-modal-width: 640px;
  }
  .header-logo img {
    width: auto;
    height: 50px;
  }
  .sale-ends p {
    font-size: 11px;
}
.sale-ends {
  padding: 10px 15px;
}
.social-icons {
  font-size: 12px;
  padding: 7px 11px;
  & > svg {
    width: 20px;
    height: 20px;
  }
}
}
@media (max-width: 991px) {
  .xb-header .container-fluid {
    padding: 20px 25px 15px;
  }
  .xb-header.stricky-fixed .container-fluid{
    padding: 15px 25px !important;
  }
  .pt-120,
  .pt-100 {
    padding-top: 80px;
  }
  .pb-120 {
    padding-bottom: 90px;
  }
  .title-wrap p, .about .about-wrap .xb-item--content {
   padding-bottom: 26px;
  }
  .pb-55 {
    padding-bottom: 35px;
  }
  .side-menu a {
    width: 40px;
    height: 40px;
  }
  .section-title .title.faq {
    font-size: 24px;
    line-height: 34px;
  }
  .faq__blockchain .accordion_box .block .content {
    font-size: 15px;
    line-height: 24px;
  }
  .accordion_box .accordion .acc-btn p {
    font-size: 17px;}
    .accordion_box .block {
      padding: 20px 0;
  }
  .xb-team .xb-item--sub-title {
    font-size: 15px;
  }
  .map-card .card-title {
    font-size: 19px;
  }
  .our-partner-main {
    padding: 30px 55px 40px;
  }
  .header-btn.ul_li .gap-sm-3 {
    gap: 0.4rem !important;
  }
  .modal-body iframe {
    height: 280px;
  }
  #exampleModalToggle .modal-lg {
    --bs-modal-width: 500px;
  }
  .xb-logo-mobile a img {
    width: 40px;
    height: auto;
  }
  .light .xb-logo-mobile a span {
    color: #1FABA5;
  }
  .xb-logo-mobile a span {
      font-size: 20px;
      font-weight: 700;
      font-family: var(--font-heading);
      color: #24F3EA;
  }
}
@media (max-width: 767px) {
  .section-title .title {
    font-size: 28px;
    line-height: 32px;
  }
  /* .them-btn {
    padding: 20px;
    height: 50px;
  } */
  .title-wrap h2, .about .about-wrap .xb-item--title, .about .about-wrap .xb-item--title.xb-item--title1 {
    font-size: 26px;
    line-height: 30px;
  }
  .process-type p,
  .section-title p,
  .about-wrap .xb-item--content {
    font-size: 15px;
    line-height: 24px;
  }
  .token .token-distribut .xb-item--circle:nth-child(4) {
    right: 115px;
  }
  .card-title {
    font-size: 20px;
    line-height: 24px;
    padding-bottom: 10px;
  }
  .features-main {
    margin-top: 45px;
    row-gap:60px;
  }
  .feature-card {
    padding: 30px 15px 20px;
  }
  .feature-card p {
      font-size: 15px;
      }
      .feature-card img {
        padding-bottom: 0;
        width: 75px;
        height: 75px;
    }
  .token .token-distribut .xb-item--title {
    font-size: 20px;
    padding-bottom: 30px;
  }
  .token .token-distribut .xb-item--list li {
    margin-bottom: 20px;
  }
  .token .token-distribut .xb-item--circle span {
    font-size: 35px;
  }
  .token .token-distribut .xb-item--circle:nth-child(2) span {
    font-size: 24px;
  }
  .pt-120, .pt-100 {
    padding-top: 70px;
  }
  .pl-25 {
    padding-left: 0px;
  }
  .pb-100,
  .pb-120 {
    padding-bottom: 60px;
  }
  /* .faq__blockchain {
    padding: 0 10px;
  } */
  .close-icon {
    width: 45px;
    height: auto;
    top: -26px;
    right: -42px;
  }
  .section-title .title.faq {
    font-size: 24px;
  }
  .faq__blockchain .accordion_box .block .content {
    padding-right: 20px;
  }
  .xb-logo-mobile {
    margin-bottom: 20px;
  }
  /* .xb-menu-primary li a {
    line-height: 40px;
  } */
  .xb-header-menu {
    width: 260px;
  }
  .xb-header-menu-scroll {
    padding: 25px 15px 15px;
}
.xb-menu-primary li a {
  font-size: 16px;
  padding: 12px 16px;
}
.xb-header-nav::-webkit-scrollbar {
  width: 5px !important;
}
.header-logo img {
  width: 120px;
  height: 40px;
}
  .section-title .title.faq {
    font-size: 22px;
    line-height: 30px;
  }
  .section-title.fund p {
    padding: 10px 0px 40px;
  }
  .list p, .found-card .title p, .found-card .title span {
    font-size: 15px;
  }
  .swiper-wrapper.buttons {
    height: 20px;
    top: 0px;
    right:50px
  }
  .swiper-button-next, .swiper-container-rtl .swiper-button-prev,
  .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    top: -20px;
  }
  .swiper-button-prev, .swiper-button-next {
    width: 40px;
    height: 40px;
  }
  .our-partner-main {
    padding: 20px 30px 40px;
  }
  .pt-60 {
    padding-top: 50px;
  }
  .xb-header .container-fluid {
    padding: 20px 25px 15px;
}
  .xb-header.stricky-fixed .container-fluid{
    padding: 15px 25px !important;
  }
.container{padding-left:25px;padding-right:25px;}
.header-btn .login-btn1, .header-btn .login-btn {
  padding: 4px 15px;
}
.xb-logo-mobile a span {
  font-size: 18px;
}
}
@media (max-width: 575px) {
  .container {
    padding: 0px 20px;
  }
  .xb-header .container-fluid {
    padding: 15px;
  }
  .xb-header.stricky-fixed .container-fluid{
    padding: 10px 15px !important;
  }
  .section-title .title {
    font-size: 24px;
    line-height: 32px;
  }
  .process-type p, .section-title p, .about-wrap .xb-item--content {
    font-size: 15px;
    line-height: 22px;
  }
  .title-wrap h2, .about .about-wrap .xb-item--title, .about .about-wrap .xb-item--title.xb-item--title1 {
    font-size: 22px;
    line-height: 26px;
  }
  .title-wrap h2, .about .about-wrap .xb-item--title {
    padding-bottom: 10px;
  }
  .title-wrap p, .about .about-wrap .xb-item--content {
    padding-bottom: 20px;
  }
  .year-end {
    font-size: 16px;
    /* padding-top: 10px; */
  }
  .map-card {
    padding: 22px;
  }
  .map-card p {
    font-size: 15px;
  }
  .link-line::before {
    height: 60px;
    }
  .token .token-distribut .xb-item--circle:nth-child(5) {
    top: 20px;
    width: 48px;
    height: 48px;
  }
  .token .token-distribut .xb-item--circle:nth-child(4) {
    right: 150px;
    top: 125px;
    width: 40px;
    height: 40px;
  }
  .token .token-distribut .xb-item--circle:nth-child(6) {
    bottom: 0;
    right: 70px;
  }
  .projects p {
    font-size: 18px;
  }
  .section-title p {
    padding: 20px 0px 30px;
  }
  .token-sale.model.burn-plan {
    padding: 25px;
  }
  .accordion_box .block .acc-btn {
    font-size: 20px;
  }
  .roadmap-main {
    width: 100%;
  }
  .title-wrap p, .about .about-wrap .xb-item--content {
    font-size: 14px;
    line-height: 22px;
  }
  .about .about-wrap .xb-item--list span {
    margin-bottom: 15px;
  }
  .xb-team .xb-item--title {
    font-size: 20px;
    padding-top: 20px;
  }
  .section-title.fund p {
    padding: 10px 0px 30px;
  }
  .token .token-distribut .xb-item--circle {
    width: 110px;
    height: 110px;
  }
  .token .token-distribut .xb-item--circle span {
    font-size: 30px;
  }
  .token .token-distribut .xb-item--circle:nth-child(2) {
    width: 85px;
    height: 85px;
    left: 100px;
    bottom: 40px;
  }
  .token .token-distribut .xb-item--circle:nth-child(2) span {
    font-size: 20px;
  }
  .token .token-distribut .xb-item--circle:nth-child(3) {
    left: 130px;
    height: 90px;
    width: 90px;
  }
  .token .token-distribut .xb-item--circle:nth-child(3) span {
    font-size: 14px;
  }
  .token .token-distribut .xb-item--circle:nth-child(4) span {
    font-size: 12px;
  }
  .modal-body iframe {
    height: 240px;
  }
  .modal-dialog {
    width: 90%;
    margin: 0 auto;
}
  .close-icon {
    top: -50px;
    right: 0;
  }
  .faq__blockchain .accordion_box .block .content {
    padding-right: 0px;
    font-size: 14px;
  }
  .accordion_box .accordion .acc-btn p {
    font-size: 16px;
  }
  .xb-team {
    margin-top: 15px;
  }
  .features-main {
    row-gap: 50px;
  }
  /* .play-icon {
    padding: 30px;
  } */
  .waves {
    width: 300px;
    height: 300px;
  }
  .pl-25 {
    padding-left: 0;
  }
  .pb-55 {
    padding-bottom: 25px;
  }
  .swiper-wrapper.buttons {
    height: 40px;
  }
  /* .swiper-wrapper.buttons.road-map {
    height: 0px !important;
  } */
  /* .roadmap-main {
    z-index: -1;
  } */
  .swiper-wrapper.buttons.road-map .swiper-button-next, .swiper-container-rtl .swiper-button-prev, 
  .swiper-wrapper.buttons.road-map .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    top: 0;
    z-index: 1;
  }
  .swiper-button-next, .swiper-container-rtl .swiper-button-prev, 
  .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    top: 10px;
  }
  /* .xb-backtotop.active {
    bottom: 70px;
  } */
  /* .header-btn .login-btn {
    padding: 5px 6px;
    font-size: 12px;
  } */
  /* .header-btn.ul_li .login-btn1,
  .header-btn.ul_li .login-btn{
    display:none;
  } */
  .xb-header-wrap .header-btn{
    display:flex !important;
  }
  .xb-header-wrap .header-btn .login-btn{
    margin:10px 0 0 0;
    padding:5px 10px;
  }
  .side-menu a {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .header-logos a img {
    width: 35px;
  }
  .header-logos a span {
    font-size: 18px;
  }
  .header-logo img {
    width: 100px;
    height: 37px;
}
.xb-header-menu {
  width: 240px;
}
.xb-menu-primary li a {
  font-size: 15px;
  padding: 10px 12px;
}
/* .xb-logo-mobile a img {
  width: 110px;
} */
.xb-header-wrap .xb-menu-close {padding: 7px;}
.xb-menu-primary { gap: 8px;}
.xb-header-menu-scroll {
  padding: 20px 15px 15px;
}
.token .token-distribut .xb-item--list li {
  font-size: 15px;
}
.xb-logo-mobile a img {
  width: 36px;
}
.xb-logo-mobile a span {
    font-size: 16px;
}
}
@media (max-width: 480px) {
  .pt-60 {
    padding-top: 40px;
  }
  .token .token-distribut .xb-item--circle {
    width: 90px;
    height: 90px;
  }
  .token .token-distribut .xb-item--circle span {
      font-size: 25px;
  }
  .token .token-distribut .xb-item--circle:nth-child(1) {
    top: 30px;
  }
  .token .token-distribut .xb-item--circle:nth-child(3) {
    width: 70px;
    height: 70px;
    left: 100px;
    top: 20px;
  }
  .token .token-distribut .xb-item--circle:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 80px;
    bottom: 75px;
  }
  .token .token-distribut .xb-item--circle:nth-child(2) span {
    font-size: 16px;
}
  .token .token-distribut .xb-item--circle:nth-child(4) {
    width: 35px;
    height: 35px;
    right: 100px;
  }
  .token .token-distribut .xb-item--circle:nth-child(4) span {
    font-size: 10px;
}
  .token .token-distribut .xb-item--circle:nth-child(5) {
    width: 44px;
    height: 44px;
    right: 75px;
  }  
  .token .token-distribut .xb-item--circle:nth-child(6) {
    bottom: 15px;
  }
  .token .token-distribut .xb-item--list {
    margin-bottom: 0px;
  }
  .token .token-distribut {
    padding: 25px 25px 0;
  }
  .section-title .title.faq {
    font-size: 22px;
    line-height: 24px;
  }
  .xb-team .xb-item--title {
    font-size: 18px;
    line-height: 30px;
  }
  .xb-team .xb-item--sub-title {
    display: block;
    font-size: 14px;
    line-height: 22px;
  }
  .accordion_box .block {
    padding: 15px 0;
}
.accordion_box .block:last-child {
  padding-bottom: 0;
}
  .faq__blockchain .arrow span::before, .faq__blockchain .arrow span::after {
    font-size: 18px;
  }
  .faq__blockchain .accordion_box .block .content {
    line-height: 22px;
  }
  .pb-120,
  .pb-100 {
    padding-bottom: 50px;
  }
  .xb-backtotop {
      right: 10px;
  }
  .xb-backtotop .scroll {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
  .our-partner-main {
    padding: 10px 30px 40px;
  }
  .waves {
    width: 280px;
    height: 280px;
  }
  .demo-section {
    width: 380px;
    height: 380px;
  }
  .outer-ring {
    width: 385px;
    height: 385px;
  }
  .play-icon svg {
    width: 50px;
    height: 50px;
  }
  .modal-body iframe {
    height: 200px;
  }
  .projects{
    width:45%;
  }
}
@media (max-width: 425px) {
  .header-btn .login-btn {
    font-size: 10px;
    padding: 2px 10px;
  }
  .social-icon svg {
    width: 30px;
    height: 30px;
  }
  .side-menu a {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  .header-logos a img {
    width: 32px;
  }
  .header-logos a span {
    font-size: 16px;
  }
  /* .header-logo a img {
    width: 80px;
    height: 35px;
  } */
  .pt-120, .pt-100 {
    padding-top: 50px;
  }
  .section-title .title {
    font-size: 22px;
    line-height: 26px;
  }
  /* .them-btn {
    font-size: 14px;
    padding: 15px;
    height: 40px;
  } */
  .hero__btn {
    gap: 20px;
  }
  .xb-item--title {
    font-size: 20px;
    line-height: 26px;
  }
  .title-wrap p, .about .about-wrap .xb-item--content {
    font-size: 14px;
    line-height: 22px;
  }
  .about .about-wrap .xb-item--list span {
    margin-bottom: 10px;
  }
  .title-wrap h2, .about .about-wrap .xb-item--title, .about .about-wrap .xb-item--title.xb-item--title1 {
    font-size: 20px;
    line-height: 24px;
}
  .card-title {
    font-size: 20px;
    padding-bottom: 14px;
  }
  .feature-card p {
    font-size: 14px;
    line-height: 22px;
  }
  .token .token-distribut .xb-item--title {
    font-size: 18px;
    line-height: 25px;
    padding-bottom: 20px;
  }
  .token .token-distribut .xb-item--list li {
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 14px;
  }
  .token .token-distribut .xb-item--list li::after {
    width: 15px;
    height: 15px;
    top: 12px;
  }
  .projects span {
    font-size: 14px;
    line-height: 22px;
  }
  .projects p {
    font-size: 16px;
  }
  .token .token-sale {
    padding: 20px 20px;
  }
  .process-type p, .section-title p, .about-wrap .xb-item--content {
    font-size: 14px;
    line-height: 22px;
  }
  .demo-section {
    width: 330px;
    height: 330px;
  }
  .outer-ring {
    width: 335px;
    height: 335px;
  }
  .waves {
    width: 235px;
    height: 235px;
  }
  /* .year-end {
    padding-bottom: 30px;
  } */
  .link-line::before {
    height: 50px;
  }
  .pro-list {
    gap: 10px;
  }
  .pro-list {
    flex-direction: column;
    align-items: self-start;
  }
  .projects {
    width: 100%;
    height: auto;
  }
  .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    right: 50px;
  }
  .swiper-button-prev, .swiper-button-next {
    width: 30px;
    height: 30px;
  }
.container{padding-left:20px;padding-right:20px;}
.social-icons {
  font-size: 10px;
  padding: 4px 7px;
}
}
@media (max-width: 380px) {
  .header-logo a img {
    width: 80px;
    height: 35px;
  }
  /* .side-menu a {
    width: 30px;
    height: 30px;
    font-size: 14px;
  } */
  .ml-10 {
    margin-left: 5px;
}
  /* .header-btn .login-btn {
    padding: 6px;
  } */
  .token .token-distribut .xb-item--circle:nth-child(1) {
    top: 50px;
  }
  .token .token-distribut .xb-item--circle:nth-child(2) {
    left: 90px;
    width: 55px;
    height: 55px;
  }
  .token .token-distribut .xb-item--circle:nth-child(3) {
    width: 60px;
    height: 60px;
  }
  .token .token-distribut .xb-item--circle:nth-child(4) {
    right: 35px;
    top: 115px;
  }
  .token .token-distribut .xb-item--circle:nth-child(5) {
    right: 15px;
  }
  .token .token-distribut .xb-item--circle:nth-child(6) {
    right: 10px;
  }
  .token .token-distribut .xb-item--circle:nth-child(5) span {
    font-size: 13px;
    line-height: normal;
}
  .demo-section {
    width: 260px;
    height: 260px;
  }
  .outer-ring {
    width: 265px;
    height: 265px;
  }
  .waves {
    width: 190px;
    height: 190px;
  }
  .about .about-wrap .xb-item--list span {
    padding-right: 0px;
  }
  .modal-body iframe {
    height: 150px;
  }
  .play-icon svg {
    width: 40px;
    height: 40px;
  }
}

.policy h1{padding-bottom:40px;}
.policy h2{padding-bottom:15px;padding-top:20px;font-size: 28px;font-family: var(--font-inter);font-weight: 600;}
.policy h3{padding-bottom:15px;padding-top:20px;font-size: 24px;color: var(--color-gray);font-family: var(--font-inter);}
.light .policy h3 {color: #1FABA5;}
.policy .section-title .title.faq{padding-bottom: 20px;font-size: 32px;}
.policy h4{padding-bottom:20px;color: var(--color-gray);}
.policy p{padding-bottom:20px; color: var(--color-white);}
.policy .xb-item--list a,
.policy p a {color: #fff;text-decoration: underline;}
.light .policy .xb-item--list a, .policy p a,
.light .policy p a {color: #1FABA5;}
.policy .xb-item--list span{
  display:block;
  margin-bottom:20px;
  position:relative;
  padding-left:30px;
  color: var(--color-white);
  font-family: var(--font-inter);
}
.policy .xb-item--list span svg{
  position:absolute;
  left:0;
  top:4px;
}
.xb-item--list b{
    color: var(--color-gray);
    background: linear-gradient(283deg, #619DCA 6.73%, #24F3EA 97.21%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-family: var(--font-inter);
}
.light .xb-item--list b{
  background: linear-gradient(4deg, #619DCA 6.73%, #24F3EA 97.21%);
  background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.custom b{
  background: none;
  background-clip: inherit;
  -webkit-background-clip: inherit;
  -webkit-text-fill-color: var(--color-gray);
  font-weight: 500;
}
.policy table{font-size: 18px;font-family: var(--font-inter);}
.policy table thead tr{background: linear-gradient(90deg, rgba(36, 243, 234, 0.30) 0.08%, rgba(97, 157, 202, 0.30) 89.66%);}
.policy table th{ color: var(--color-white);   border: 1px solid rgba(36, 243, 234, 0.50);padding: 10px 15px;background: transparent;}
.policy table tbody tr{background: linear-gradient(90deg, rgba(36, 243, 234, 0.15) 0.19%, rgba(97, 157, 202, 0.15) 99.81%);}
.policy table td{border: 1px solid #1faba47c;padding: 7px 15px;color:var(--color-white);background: transparent;}

.light .policy table thead tr{background: linear-gradient(90deg, rgba(31, 171, 165, 0.15) 1.99%, rgba(14, 136, 225, 0.15) 99.95%);}
.light .policy table th{border: 1px solid #1faba47c;}
.light .policy table tbody tr{background: white;}
.light .policy table td{border: 1px solid #1faba47c;}

@media (max-width: 991px) {
  .policy h1{padding-bottom:25px;}
  .policy h2{padding-top:15px;font-size: 28px;}
  .policy h3{padding-top:15px;font-size: 24px;}
  .policy h4{padding-bottom:15px;}
  .policy p{padding-bottom:15px;font-size: 14px;line-height: 25px;}
  .policy .xb-item--list span{margin-bottom:15px;padding-left:28px;font-size: 14px;line-height: 25px;}
  .policy .section-title .title.faq{padding-bottom: 20px;font-size: 32px;}
  .policy table{font-size:16px;}
  .policy table th{padding: 10px 15px;}
  .policy table td{padding: 7px 15px;}
  .xb-header-menu{background: #000;}
  .xb-header-menu-scroll{        border-right: 1px solid transparent;
        border-image: linear-gradient(90deg, rgba(36, 243, 234, 0.15) 0.19%, rgba(97, 157, 202, 0.15) 99.81%);
        border-image-slice: 1;
        background: linear-gradient(90deg, rgba(36, 243, 234, 0.15) 0.19%, rgba(97, 157, 202, 0.15) 99.81%);
        backdrop-filter: blur(150px);
  }
}
@media (max-width: 767px) {
  .policy .section-title .title.faq{padding-bottom: 20px;font-size: 28px;line-height: 34px;}
  .policy h2{padding-top:15px;font-size: 24px;}
  .policy h3{padding-top:15px;font-size: 22px;}
  .policy h4{padding-bottom:15px;}
  .policy p{padding-bottom:15px;font-size: 14px;line-height: 25px;}
  .policy .xb-item--list span{margin-bottom:15px;padding-left:28px;font-size: 14px;line-height: 25px;}
  .policy table{font-size:15px;}
  .policy table th{padding: 7px 15px;line-height: 22px;}
  .policy table td{padding:5px 15px;}
}
@media (max-width: 576px) {
  .policy .section-title .title.faq{font-size: 24px;line-height: 34px;}
  .policy h2{font-size: 20px;}
  .policy h3{font-size: 18px;}
  .policy h4{padding-bottom:15px;}
  .policy p{padding-bottom:15px;font-size: 14px;line-height: 25px;}
  .policy .xb-item--list span{margin-bottom:15px;padding-left:10px;font-size: 14px;line-height: 25px;}
  .policy table{font-size:14px;}
  .policy table th{padding: 7px 15px;}
  .policy table td{padding:5px 15px;}
}
@media (max-width: 420px) {
  .policy .section-title .title.faq {font-size: 20px;line-height: 30px;}
  .policy h2{font-size: 18px;}
  .policy h3{font-size: 16px;}
  .policy table{font-size:13px;}
  .policy table th{padding: 7px 10px;}
  .policy table td{padding:5px 10px;}
}


.about-card {
  display: flex;
  padding: 35px 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  border-radius: 20px;
  background: #112030;
  backdrop-filter: blur(155.40609741210938px);
}
.light .about-card{
  background: #fff;
}
.about-card p {
  color: var(--color-gray);
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
}

.our-process-sticky {
  top: 100px;
  position: sticky;
}
.process-wrap {
  padding-bottom: 35px;
  border-bottom: 0.5px solid #457297;
}
.light .process-wrap {
  border-bottom: 0.5px solid #DDE4EF;
}
.process-wrap h3 {
  font-family: var(--font-inter);
  color: var(--color-primary);
font-size: 26px;
font-weight: 700;
line-height: 31px;
padding-bottom: 30px;
}
.process-wrap p {
  position: relative;
  color: var(--color-gray);
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  padding-left: 16px;
}
.process-wrap p span {
  color: var(--color-white);
  font-weight: 700;
}
.process-wrap p::before {
  position: absolute;
  left: 0;
  width: 5px;
  height: 100%;
  content: "";
  border-radius: 2px;
  background: linear-gradient(90deg, #24F3EA 0.08%, #619DCA 89.66%);
}
.light .process-wrap p::before {
background: linear-gradient(90deg, #1FABA5 1.99%, #0E88E1 99.95%);
}
.process-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 575px) {.process-wrap p::before {width: 4px;}}

.ai-card {
  position: relative;
  display: flex;
  padding: 0px 24px 41px 24px;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  border-radius: 15px;  
  background: var(--color-gray);
  margin-top: 30px;
  height: calc(100% - 30px);
}
.ai-card h3 {
  color: var(--color-white);
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
  margin-top: 10px;
}
.ai-card p {
  color: var(--color-gray);
  text-align: center;
  font-family: Syne;
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
}
.ai-logoes {
  display: flex;
  width: 106px;
  height: 108px;
  padding: 18px;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background: #0D424D;
  margin-top: -40px;
}
.light .ai-card {
  background: #ecf1f9;
}
.light .ai-logoes{
  background: #ddf0f8;
}
.light .ai-logoes svg{
  color:#1faba5;
}
.light .ai-card p{color:#031B34;}
.ai-card {
  background: #112030;
}
.ai-logoes{
  background: #154b56;
}
.ai-logoes svg{
  color:#24F3EA;
}
.ai-card p{color:#FFF;}

@media (max-width: 1199px) {
  .process-wrap h3 {
    font-size: 24px;
  }
  .process-wrap p {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .section-title .title {
    font-size: 28px;
  }
  .hero__btn {
    margin-top: 30px;
}
.hero {padding: 60px 0 50px;}
.them-btn, .xb-inner .xb-item--contact-btn .them-btn {
  height: 45px;
  padding: 15px 20px;
}
  .title-wrap h2, .about .about-wrap .xb-item--title, .about .about-wrap .xb-item--title.xb-item--title1 {
    padding-bottom: 30px;
  }
  .about-card {
    padding: 30px 24px;
  }
  .about-card p {
    font-size: 14px;
  }
  .feature-content {
    gap: 20px;
  }
  .feature-content p, .title-wrap p, .about .about-wrap .xb-item--content {
    font-size: 17px;
  }
  .ai-logoes {
    width: 90px;
    height: 90px;
  }
  .map-card p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .section-title .title {
    font-size: 24px;
    line-height: 33px;
}
.hero .section-title p {
  font-size: 15px;
  padding: 0 0 12px !important;
}
.them-btn, .xb-inner .xb-item--contact-btn .them-btn {
  height: 40px;
  font-size: 14px;
}
  .title-wrap h2, .about .about-wrap .xb-item--title, .about .about-wrap .xb-item--title.xb-item--title1 {
    font-size: 24px;
    line-height: 28px;
    padding-bottom: 20px;
  }
  .process-wrap h3 {
    font-size: 20px;
    padding-bottom: 20px;
  }
  .ai-card h3 {
    font-size: 22px;
  }
  .ai-logoes {
    width: 80px;
    height: 80px;
  }
  .year-end {
    font-size: 12px;
  }
}

@media (max-width: 575px){
  .section-title .title {
    font-size: 22px;
    line-height: 31px;
}
.hero__btn {
  margin-top: 25px;
}
.hero .section-title p {
  font-size: 14px;
}
.about-wrap {
  text-align: center;
}
.title-wrap h2, .about .about-wrap .xb-item--title, .about .about-wrap .xb-item--title.xb-item--title1 {
  font-size: 22px;
}
.ai-card h3 {
  font-size: 20px;
  line-height: 28px;
}
.second-title {
  font-size: 18px;
  padding-bottom: 10px !important;
}
.partner-section .second-title {
  font-size: 18px;
  /* padding-bottom: 30px !important; */
}
.feature-content p, .title-wrap p, .about .about-wrap .xb-item--content {
  font-size: 16px;
  line-height: 24px;
}
}
@media (max-width: 425px) {
  .section-title .title {
    font-size: 20px;
}
  .hero__btn {
    margin-top: 20px;
  }
  .second-title {
    font-size: 16px;
    line-height: 20px;
  }
  .partner-section .second-title {
    font-size: 18px;
  }
  .about-card {
    gap: 20px;
  }
  .process-wrap h3 {
    font-size: 18px;
    line-height: 26px;
  }
  .ai-card h3 {
    font-size: 18px;
    line-height: 24px;
  }
  .title-wrap h2, .about .about-wrap .xb-item--title, .about .about-wrap .xb-item--title.xb-item--title1 {
    font-size: 20px;
  }
  .swiper-button-next, .swiper-container-rtl .swiper-button-prev, .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    top: -5px;
  }
  .swiper-wrapper.buttons.road-map .swiper-button-next, .swiper-container-rtl .swiper-button-prev, .swiper-wrapper.buttons.road-map .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    top: 20px;
  }
  .feature-content p, .title-wrap p, .about .about-wrap .xb-item--content,
  .process-wrap p {
    font-size: 14px;
    line-height: 22px;
  }
  .ai-logoes {
    width: 70px;
    height: 70px;
  }
}
.policy{
  z-index:9;
}
.error-message{
  position: absolute;
    font-size: 12px;
    color: red;
}
.xb-item--field input:-webkit-autofill,
.xb-item--field input:-webkit-autofill:hover,
.xb-item--field input:-webkit-autofill:focus,
.xb-item--field input:-webkit-autofill:active,
.xb-item--field input:-internal-autofill-selected {
  transition: background-color 5000s ease-in-out 0s !important;
  background-color: transparent !important;
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}
.circle-spinner {
  animation: spinner .8s linear infinite;
  border: 2px solid #FFF;
  border-right-color: transparent;
  border-radius: 100%;
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-indent: -9999px;
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin: 0;
}
@keyframes spinner {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
  }
}

.form-check-label {
  display: inline !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.list-stlye-one{
  list-style:none;
  margin:0;
  position:absolute;
  top:0;
  /* left:0; */
  display:none;  
  line-height: 1;
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 700;
  -webkit-transition: 300ms;
  transition: 300ms;
  padding: 12px;
  gap: 25px;
  letter-spacing: 1px;
  justify-content: center;
  flex-direction:column;
  border-radius:12px;
  border: 1px solid #24F3EA;
  color: var(--color-white);
  /* z-index: 99; */
  background: #0A2945;  
  left: 300px;
  z-index: 999;
  width: 350px;
}
.light .list-stlye-one {
  background: #cbf1f6;
}
.list-stlye-one.dropdown-menu[data-bs-popper] {
  top: 0;
  left: 300px;
  margin-top: 0;
}
.documents{
  position:relative;
  z-index: 99;
}
.documents.open .list-stlye-one{
  display:flex;
  /* width:100%; */
}
.documents.dropdown .scrollspy-btn.show {
  font-weight: 600;
  color: var(--color-primary);
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(36, 243, 234, 0.15) 0.19%, rgba(97, 157, 202, 0.15) 99.81%);
}
.documents.open .documents-toggle span {
  color: var(--color-primary);
}
.list-stlye-one li{
  list-style:none;
}
.list-stlye-one ul{
  gap: 6px;
  display: flex;
  flex-direction: column;
}
.list-stlye-one li a{
  display:flex;
  justify-content:space-between;
  align-items: center;
  color:#fff;
  cursor: pointer;
  font-size: 16px;
  gap: 10px;
  line-height: 22px;
  & span {
    width: calc(100% - 30px);
    white-space: break-spaces;
  }
}
.list-stlye-one li a:hover{
  color:var(--color-primary);  
  font-weight: 600;
}
.documents-toggle{  
  font-family: 'Syne';
  font-size: 16px;
  font-weight: 700;
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:center;
}
.documents-toggle, .documents-toggle:focus, .documents-toggle:hover{
  border:0;
  background:none;
  outline:none;
  box-shadow:none;
}
#downloadAll:hover {
  color:var(--color-primary);
}
.z-99{
  z-index:99;
}
@media (max-width: 991px) {
  .list-stlye-one {
    position: relative;width:100%;padding: 10px;}
    .list-stlye-one.dropdown-menu[data-bs-popper] {
      top: 100%;
      left: 0;
      margin-top: 8px;
  }
  .list-stlye-one li a {
    font-size: 12px;
    line-height: 19px;
    padding: 6px 10px;
}
}

/* .documents {
  line-height: 1;
  font-family: 'Syne';
  font-size: 16px;
  font-weight: 700;
  -webkit-transition: 300ms;
  transition: 300ms;
  position: relative;
  padding: 20px 30px;
  gap: 10px;
  align-items: center;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  border-radius: 50px;
  color: #fff;
  z-index: 1;
  background: linear-gradient(90deg, rgba(36, 243, 234, 0.20) 0.19%, rgba(39, 110, 162, 0.20) 99.81%);
} */
/* .documents:hover,  */
/* .documents.open{
  border-radius:20px 20px 0 0;
  background: linear-gradient(90deg, rgba(36, 243, 234, 0.20) 0.19%, rgba(39, 110, 162, 0.20) 99.81%);
} */
/* .documents::before, .list-stlye-one::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(90deg, #24F3EA 0.08%, #619DCA 89.66%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
} */
/* .documents:hover::before,  */
/* .documents.open::before{
  padding-bottom: 0px;
} */
/* .list-stlye-one:hover::before{
  padding-top: 0px;
} */
/* .documents span{color:#FFF;} */
.list-stlye-one hr{
  margin:0 !important;
}
#downloadAll{
  color:var(--color-gray);
}



@media (max-width:480px){
  .documents, .list-stlye-one{
    font-size:14px;
  }
}

.faq-sticky{
  position:sticky;
  top:105px;
}

/* Language Dropdown Start */
.language-main {
  padding: 12px;
}
.language-dropdown {
  /* position: absolute;
  top: 100%;
  right: 0; */
  margin-top: 18px !important;
  padding: 12px;
  width: 260px;
  border-radius: 14px;
border: 1px solid #1FABA5;
background: linear-gradient(90deg, rgba(36, 243, 234, 0.15) 0.19%, rgba(97, 157, 202, 0.15) 99.81%);
backdrop-filter: blur(150px);
/* display: flex;
flex-direction: column;
gap: 4px; */
max-height: calc(100vh - 180px);
overflow-y: auto;
}
.light .language-dropdown {
  background: #e7f1f8 !important;
}
.stricky-fixed .language-dropdown {
  max-height: calc(100vh - 100px);
}

.language-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  color: white;
  cursor: pointer;
  transition: background 0.2s ease;
  border-radius: 8px;
  margin-bottom: 4px;
  &:last-child {
    margin-bottom: 0;
  }
  & .check-icon {
    display: none;
  }
  & a {
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white);
    display: flex;
    gap: 12px;
  }
}
.language-item:hover a {
  color: var(--color-primary);
}

.language-item:hover {
  background: linear-gradient(90deg, rgba(36, 243, 234, 0.15) 0.19%, rgba(97, 157, 202, 0.15) 99.81%);
}

.language-item.active {
  background: linear-gradient(90deg, rgba(36, 243, 234, 0.15) 0.19%, rgba(97, 157, 202, 0.15) 99.81%);
  & a {
    font-weight: 600;
    color: var(--color-primary);
  }
  & .check-icon {
    display: block;
  }
}
.light .language-item.active {
  background: linear-gradient(90deg, rgba(36, 243, 234, 0.15) 0.19%, rgba(97, 157, 202, 0.15) 99.81%);}
.light .language-item.active .check-icon svg path {
  stroke: #000;
}
@media screen and (max-width: 1199px) {
  .language-dropdown {width: 250px;}
  .language-item a {
        font-size: 15px;
    }
}
@media screen and (max-width: 767px) {
  .language-dropdown {
      width: 230px;
      margin-top: 12px !important;
      padding: 10px;
  }
  .language-item {padding: 6px 10px;}
}
@media screen and (max-width: 575px) {
  .language-item a {
    font-size: 14px;
  }
  .language-dropdown {
    width: 200px;
}
}
.banner-img-main {
  position: relative;
  width: 100%;
}
.play-btn {
  position: absolute;
  top: 50%;
left: 50%;
transform: translate(-50%, -50%);
  background: rgba(36, 243, 234, 0.5);
  border: 1px solid rgba(36, 243, 234, 0.4);
  padding: 20px;
  border-radius: 100%;
  cursor: pointer;
  transition: 0.3s;
  &:hover{
    background: linear-gradient(90deg, #24F3EA 0.08%, #619DCA 89.66%);
  }
}
.light .play-btn {
  background: rgba(31, 171, 165, 0.50);
border: 1px solid #1FABA5;
}
.light .play-btn:hover {
  background: linear-gradient(283deg, #619DCA 6.73%, #24F3EA 97.21%);
  /* background: linear-gradient(90deg, #1FABA5 1.99%, #0E88E1 99.95%); */
}
.light .play-btn svg path {
  fill: hsla(211, 89%, 11%, 0.8);
}
@media (max-width: 1199px) {
  .play-btn {
    padding: 15px;
    & svg {
      width: 55px;
      height: 55px;
    }
}}
@media (max-width: 767px) {
  .play-btn {
    padding: 10px;
    & svg {
      width: 50px;
      height: 50px;
  }
  }
}
@media (max-width: 575px) {
  .play-btn {
    padding: 8px;
    & svg {
      width: 45px;
      height: 45px;
  }
  }
}
.hero { 
  min-height: calc(100vh - 102px);
    padding: 60px 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner-section {
  padding-top: 60px;
  padding-bottom: 40px;
}
@media (max-width: 575px) {.partner-section { padding-top: 40px; padding-bottom: 30px;}}
@media (max-width: 480px) {
  .hero {padding: 50px 0 50px; }
}
@media (max-width: 480px) {
  .hero {padding: 30px 0 30px; }
}
.bg-coin {
  background: linear-gradient(0deg, rgba(21, 156, 255, 0.10) 47%, rgba(21, 156, 255, 0.10) 95%);
}
.light .bg-coin {
  background: linear-gradient(0deg, rgba(21, 156, 255, 0.06) 47%, rgba(21, 156, 255, 0.06) 95%);
}
.wallet-card {
  padding: 45px 20px;
border-radius: 20px;
background: #101222;
display: flex;
align-items: center;
flex-direction: column;
gap: 24px;
& p {
  font-family: var(--font-inter);
  font-size: 20px;
  color: var(--color-gray);
  font-weight: 600;
  line-height: normal;
}
}
.light .wallet-card p,
.light .about-card p, .light .partner-section .para {
  color: #031B34;
}
.light .wallet-card {
  background: #ECF3FE;
}
@media (max-width: 1199px) {
  .wallet-card {padding: 30px 20px;
    & p {
      font-size: 18px;
    }
  }
}
@media (max-width: 767px) {
  .wallet-card {padding: 25px 15px;gap:15px;
    & p {
      font-size: 16px;
    }
  }
}
@media (max-width: 480px) {
  .wallet-card {padding: 25px 15px;gap:15px;
    & p {
      font-size: 15px;
    }
  }
  .about-card {
    padding: 25px 24px;
}
}
.social-share-main {
  position: fixed;
  right: -16px;
  bottom: 85px;
  transform: translate(-50%, -50%);
  z-index: 10;
  border-radius: 100px;
border: 1px solid #24F3EA;
background: linear-gradient(90deg, rgba(36, 243, 234, 0.30) 0.19%, rgba(39, 110, 162, 0.30) 99.81%);
backdrop-filter: blur(150px);
padding: 15px;
& a {
  transition: 0.3s ease-in-out;
}
& hr {
  opacity: 1;
  border-color: var(--color-gray);
}
}
.light .social-share-main {
  border-radius: 100px;
  border: 1px solid #1FABA5;
  background: linear-gradient(90deg, rgba(31, 171, 165, 0.12) 1.99%, rgba(14, 136, 225, 0.12) 99.95%);
}
.light .sticky-social a:hover svg path{
  fill: #193359;
}
.sticky-social a:hover svg path {
  fill: #2beae7;
}
.light .sticky-social a svg path {
  fill: #276EA2;
}

@media (max-width: 1280px) {.social-share-main {right: -7px;}}
@media (max-width: 1199px) {
  .social-share-main {right: -7px;padding: 10px;
  & .sticky-social svg {
    width: 25px;height: 25px;
  }
  & hr {
    margin: 12px 0;
  }
  }
}
@media (max-width: 425px) {
  .social-share-main {
    right: -10px;
    padding: 7px;
    & .sticky-social svg {
      width: 22px;
      height: 22px;
  }
  & hr {
    margin: 9px 0;
}
  }
}
.xb-contact .them-btn {
  color: var(--color-white);
}
.light .xb-contact .them-btn:hover #submitText {
  color: #031B34;
}
/* header translate Start */
.goog-te-combo {visibility: hidden;position: absolute;}
.goog-logo-link,
.goog-te-gadget,
iframe.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate, .goog-gt-tt, .skiptranslate iframe, .skiptranslate, .VIpgJd-ZVi9od-aZ2wEe-wOHMyf{display: none !important;}
body {top: 0 !important;}
/* header translate End */

/* banner Play modal start */
.play-modal .modal-content {
  background: #112030;border: 1px solid rgba(36, 243, 234, 0.50);
  & .modal-header {
    padding: 0;
    & button {padding: 9px;display: flex;align-items: center;border-radius: 50px;border: 1px solid #24F3EA;background: linear-gradient(90deg, rgba(36, 243, 234, 0.30) 0.08%, rgba(97, 157, 202, 0.30) 89.66%);backdrop-filter: blur(150px);cursor: pointer;transition: all 0.3s ease;position: absolute;right: -20px;z-index: 1;
      &:hover {
        background: linear-gradient(283deg, #619DCA 6.73%, #24F3EA 97.21%);color: #031B34;transform: rotate(90deg);
      }
    }
  }
  & .modal-body {
    & video {border-radius: 10px;height: 450px;object-fit: cover;}
  }
}
@media (max-width:1199px) {
  .play-modal .modal-content .modal-body video {height: 400px;}
}
@media (max-width:991px) {
  .play-modal .modal-content .modal-body video {height: 380px;}
}
@media (max-width:767px) {
  .play-modal .modal-content .modal-body video {height: 350px;}
}
@media (max-width: 575px) {
  .play-modal .modal-content .modal-header button {padding: 7px;right: -12px;}
  .play-modal .modal-content .modal-body video {height: 300px;}
}
@media (max-width:400px) {
  .play-modal .modal-content .modal-body video {height: 250px;}
}
@media (max-width:330px) {
  .play-modal .modal-content .modal-body video {height: 220px;}
}
/* banner Play modal End */


.topbar {
    position: relative;
    padding-top: 20px;
}
.stricked-menu.stricky-fixed .top-card{
    margin-top: 0px;
}
.banner-video-wrapper {
  width: 398px;
  height: 400px;
  position: relative;
  border-radius: 10px;
  border: 3px solid rgba(36, 243, 234, 0.15);
  overflow: hidden;
}
#bannerVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
}
.banner-video-wrapper::before{
  content:'';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background:#24F3EA14;
  z-index: 9;
}
.light .banner-video-wrapper::before {
  background: rgba(31, 171, 165, 0.20);
}
.light .banner-video-wrapper {
  border: 3px solid transparent;
}
.play-btn{
  z-index:99;
}
.xb-logo-mobile h3{
  color: var(--color-white);
  font-family: var(--font-inter);
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 1400px) {
.banner-video-wrapper {
  height: 326px;
} 
}
@media (max-width: 1280px) {
  .toggleclicked .banner-video-wrapper {
    width: 100%;
  }
  }
  @media (max-width: 991px) {
    .toggleclicked .banner-video-wrapper {
      width: 398px;
      height: 326px;
    }
    }
@media (max-width: 480px) {
  .banner-video-wrapper{
    width: 100%;
    height: 280px;
  }
  .toggleclicked .banner-video-wrapper {
    width: 100%;
    height: 280px;
  }
}
@media (max-width: 400px) {
  .banner-video-wrapper{
    height: 230px;
  }
  .toggleclicked .banner-video-wrapper {
    height: 230px;
  }
}
.xb-header-nav {
    overflow-y: auto;
    max-height: calc(100vh - 140px);
  }
@media (max-width: 991px) {
.xb-header-nav {
    padding-right: 3px;
    margin-bottom: 5px;
}
.sale-ends p {
        font-size: 11px;
  }
.sale-ends {
  padding: 6px 10px;
  }
  .topbar {
    padding-top: 10px;
}
}
@media (max-width: 767px) {
.sale-ends p {
  font-size: 10px;
}
  .checkbox-label {
    height: 36px;
  }
}
@media (max-width: 640px) {
  .sale-ends p {
    font-size: 9px;
    line-height: 15px;
  }
  .sale-ends {
    padding: 6px 20px;
  }
}
@media (max-width: 400px) {
  .sale-ends {
    padding: 6px 12px;
  }
  .sale-ends p {
    font-size: 8px;
  }
}


/* Theme toggle button styles */
.checkbox {
  opacity: 0;
  position: absolute;
}

.checkbox-label {
  position: relative;
  display: flex;
  width: 55px;
  height: 28px;
  padding: 4px 8px;
  justify-content: space-between;
  align-items: center;
  border-radius: 56.818px;
  background: #122939;
  cursor: pointer;
}
.checkbox-label .ball {
  width: 21px;
  height: 21px;
  position: absolute;
  /* z-index: -1; */
  left: 3px;
  top: 3px;
  border-radius: 50%;
  transition: transform 0.2s linear;
}
/* .light .checkbox-label .ball {
  background: #276EA2;
  z-index: -1;
} */
.checkbox-label svg {
  z-index: 1;
}
.checkbox + .checkbox-label .ball {
  transform: translateX(1px);
}
.checkbox:checked + .checkbox-label .ball {
  transform: translateX(26px);
}
.bi-brightness-high {
  color: #fff;
}
/* .light .bi-brightness-high {
  color: #fff;
} */
.light .checkbox-label .ball {
    background-color:#276EA2;
}
.checkbox:checked + .checkbox-label .ball{
  background-color: #24F3EA;
}
/* .light .checkbox-label .ball {
  background: #276EA2;
} */
/* .checkbox:checked label .bi-moon-fill {
width: 20px;
height: 20px;
} */
/* @media (max-width: 1199px) {
  .checkbox-label {width: 78px; height: 38px;}
  .checkbox-label svg {
    width: 20px;
    height: 20px;
  }
  .checkbox-label .ball {
    width: 27px;
    height: 27px;
    left: 7px;
    top: 5px;
  }
}
@media (max-width: 767px) {
    .checkbox-label {
      height: 36px;
    }
    .checkbox-label svg {
      width: 20px;
      height: 20px;
    }
}
@media (max-width: 640px) {
  .checkbox-label svg {
    width: 16px;
    height: 16px;
  }
  .checkbox-label .ball {
    width: 22px;
    height: 22px;
    top: 4px;
  }
  .checkbox-label {
    width: 65px;
    height: 32px;
 }
 .checkbox:checked + .checkbox-label .ball {
  transform: translateX(25px);
}
.social-icons {
  padding: 5px 8px;
}
}
@media (max-width: 380px) {
  .social-icons {
    padding: 5px 5px;
  }
  .xb-header .container-fluid {
    padding: 15px 15px;
  }
  .checkbox-label .ball {
    width: 20px;
    height: 20px;
  }
  .checkbox-label {
    padding: 8px 6px;
    width: 56px;
  }
  .checkbox:checked + .checkbox-label .ball {
    transform: translateX(22px);
  }
} */

.theme-btn {
  display: flex;
  height: 57px;
  padding: 16px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(36, 243, 234, 0.15) 0.19%, rgba(97, 157, 202, 0.15) 99.81%);
  justify-content: space-between;
  align-items: center;
  color: #24F3EA;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
}
.light .theme-btn {
  color: #1FABA5;
}
@media (max-width: 1199px) {
  .theme-btn {
    height: 52px;
    padding: 14px;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .theme-btn {
    height: 46px;
    font-size: 16px;
    padding: 12px 16px;
  }
}
@media (max-width: 575px) {
  .theme-btn {
    height: 42px;
    font-size: 15px;
    padding: 10px 12px;
  }
}

/* Document page styles */
.document-card-section {
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}
.document-second-title {
  color: #FFF;
  font-size: 44px;
  font-weight: 700;
  line-height: 58px;
}
.document-second-title a{
  color: #FFF;
}
.light .policy .document-second-title a{
  color: var(--color-white);
}
.document-second-title span {color: #29ECE7;}
.document.hero__btn {margin-top: 12px !important;}
.pb-80 {padding-bottom: 80px;}

.documant-card {
  display: flex;
  padding: 30px 20px;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  border-radius: 20px;
  background: #112030;
}
.light .documant-card {
background: linear-gradient(90deg, rgba(36, 243, 234, 0.15) 0.19%, rgba(97, 157, 202, 0.15) 99.81%);
}
.light .card-details .content {
  color: #031B34;
}

.light .document-icon svg path {
  fill: #1FABA5;
}
.light .card-details .details {
  color: #1FABA5;
}
.card-body {
  display: flex;
  gap: 20px;
  align-items: center;
}
.actions {
  display: flex;
  gap: 20px;
  align-items: center;
}
.card-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card-details .content {
  color: #C5DBFF;
  font-size: 24px;
  font-weight: 600;
  line-height: 25px;
}
.card-details .details {
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
}
.actions .i-icon {
  cursor: pointer;
  display: flex;
  width: 40px;
  height: 40px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #24F3EA;
  background: linear-gradient(90deg, rgba(36, 243, 234, 0.30) 0.19%, rgba(39, 110, 162, 0.30) 99.81%);
}
.light .actions .i-icon {
  color: #276EA2;
  border: 1px solid #1FABA5;
  background: linear-gradient(90deg, rgba(31, 171, 165, 0.12) 1.99%, rgba(14, 136, 225, 0.12) 99.95%);
}
.light .actions .i-icon svg path {
  fill: #276EA2;
}
.actions .download-icon {
  cursor: pointer;
  display: flex;
  width: 40px;
  height: 40px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  border-radius: 8.333px;
  border: 0.833px solid #24F3EA;
  background: linear-gradient(90deg, #24F3EA 0.08%, #619DCA 89.66%), linear-gradient(90deg, rgba(36, 243, 234, 0.30) 0.19%, rgba(39, 110, 162, 0.30) 99.81%);
}
/* .actions .download-icon:hover {
  background: linear-gradient(90deg, rgba(36, 243, 234, 0.30) 0.19%, rgba(39, 110, 162, 0.30) 99.81%);

} */
.document-card-row {
  row-gap: 34px;
}

@media (max-width: 1300px) {
  .documant-card {
    padding: 25px 20px;
  }
  .card-details .content {font-size: 20px;}
  .card-details .details {font-size: 15px;}
  .document-card-row {
    row-gap: 30px;
  }
}
@media (max-width: 1199px){
  .card-details .content {
    font-size: 18px;
  }
  .card-details .details {
    font-size: 14px;
    line-height: 18px;
  }
  .actions .i-icon,
  .actions .download-icon {width: 35px; height: 35px; padding: 8px;}
  .documant-card {gap: 20px; padding: 20px;}
  .actions,
  .card-body {gap: 16px;}
  .document-icon svg {width: 50px; height: 50px;}
  .document-card-row {
    row-gap: 25px;
}
}
@media (max-width: 767px) {
  .documant-card {
    padding: 16px;
  }
  .document-card-section,
  .pb-80 {
    padding-bottom: 60px;
  }
  .card-details {gap: 5px;}
}
@media (max-width: 575px) {
  .document-card-section,
  .pb-80 {
    padding-bottom: 50px;
  }
  .card-details .content {
    font-size: 17px;
  }
  .card-details .details {
    font-size: 13px;
    line-height: 16px;
  }
  .actions .i-icon,
  .actions .download-icon {width: 30px; height: 30px; padding: 6px;}
  .document-icon svg {
    width: 45px;
    height: 45px;
}
.documant-card {gap: 16px;}
.actions, .card-body {
  gap: 14px;
}
.document-card-row {
  row-gap: 20px;
}
}
@media (max-width: 480px) {
  .documant-card {
    padding: 10px;
  }
  .card-details .content {
    font-size: 15px;
}
.card-details .details {
  font-size: 12px;
  line-height: 15px;
}
.actions, .card-body {
  gap: 12px;
}
.document-icon svg {
  width: 35px;
  height: 35px;
}
.documant-card {
  border-radius: 10px;
  gap: 14px;
}
.actions .i-icon, .actions .download-icon {
  width: 25px;
  height: 25px;
  padding: 4px; 
  border-radius: 4px;
}
.document-card-row {
  row-gap: 16px;
}
.pt-60 {
  padding-top: 25px;
}
}
@media (max-width: 380px) {
  .documant-card {
    padding: 8px;
  }
  .card-details .content {
    font-size: 14px;
    line-height: 18px;
}
.card-details .details {
  font-size: 10px;
  line-height: 12px;
}
.actions, .card-body {
  gap: 6px;
}
.document-icon svg {
  width: 30px;
  height: 30px;
}
.actions .i-icon, .actions .download-icon {
  width: 22px;
  height: 22px;
}
}
.partner-active-one .swiper-wrapper {
  transition-timing-function: linear !important;
}

 .slider-wrap {
      position: relative;
      --swiper-navigation-top-offset: -100px; 
      --swiper-navigation-sides-offset: 0px;  
    }

    .swiper.partner-active-one {
      overflow: hidden;
      width: 100%;
    }


    #jil-chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

#chat-toggle {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

#chat-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}

#chat-window {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 350px;
  height: 450px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.chat-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.chat-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px;
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h3 {
  margin: 0;
  font-size: 16px;
}

.status-indicator {
  color: #4ade80;
  font-size: 12px;
}

.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
}

.chat-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  background: #f8fafc;
}

.message {
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 8px;
  max-width: 85%;
}

.bot-message {
  background: white;
  border-left: 3px solid #667eea;
  color: #000;
}

.user-message {
  background: #667eea;
  color: white;
  margin-left: auto;
}

.chat-input-area {
  padding: 15px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  gap: 10px;
}

#chat-input {
  flex: 1;
  padding: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  outline: none;
  height: auto !important;
  color: #031B34;
}

.send-btn {
  background: #667eea;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
}

@media (max-width: 480px) {
  #chat-window {
    width: 300px;
    height: 400px;
  }
  .social-icons span {
    padding: 1px;
  }
  .mobile-social-icon{
    width: 30px;
    height: 30px;
  }
}

/* .language-dropdown .disabled {
  pointer-events: none;
  opacity: 0.5;
} */