html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

* {
  margin: 0;
  padding: 0;
  font-family: Satoshi Variable;
  scroll-behavior: smooth;
}
@font-face {
  font-family: Satoshi Variable;
  src: url(Satoshi-Variable.ttf);
}

#page-loader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: grid;
  z-index: 1000;
}
#page-loader .bars {
  display: flex;
  justify-content: center;
  align-items: center;
  /*     background: black; */
}

#page-loader .bar {
  background: #dd1734;
  bottom: 1px;
  height: 3px;
  width: 10px;
  margin: 0px 4px;
  border-radius: 5px;
  animation: sound 0ms -600ms linear infinite alternate;
}

@keyframes sound {
  0% {
    /*        opacity: .35; */
    height: 10px;
  }
  100% {
    opacity: 1;
    height: 70px;
  }
}

#page-loader .bar:nth-child(1) {
  animation-duration: 0.5s;
  animation-delay: 0.1s;
}
#page-loader .bar:nth-child(2) {
  animation-duration: 0.5s;
  animation-delay: 0.2s;
}
#page-loader .bar:nth-child(3) {
  animation-duration: 0.5s;
  animation-delay: 0.5s;
}
#page-loader .bar:nth-child(4) {
  animation-duration: 0.5s;
  animation-delay: 0.2s;
}
#page-loader .bar:nth-child(5) {
  animation-duration: 0.5s;
  animation-delay: 0.1s;
}

.white-glass-effect {
  position: relative;
  transition: transform 1000ms ease-out;
  overflow: hidden;
}
.white-glass-effect::before {
  content: "";
  background: rgba(255, 255, 255, 0.2);
  width: 30%;
  height: 100%;
  top: 0%;
  left: -125%;
  transform: skew(45deg);
  position: absolute;
  transition: left 1000ms ease-out;
}
.white-glass-effect:hover::before {
  left: 150%;
}

.navbar {
  padding: 10px 160px;
  background: linear-gradient(
    90deg,
    rgba(68, 18, 27, 1) 15%,
    rgba(179, 32, 50, 1) 100%
  );
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
.navbarlinks {
  justify-content: center;
}

.navbar ul li a {
  color: #fff;
  font-family: Satoshi Variable;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.12px;
  text-transform: uppercase;
}
.connectwallet {
  position: absolute;
  right: 120px;
  color: #dd1734;
  font-family: Satoshi Variable;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.12px;
  border-radius: 10px;
  border: 0.5px solid #fff;
  background: #fff;
  box-shadow: 2px 2px 11px 0px rgba(211, 54, 77, 0.38);
}
.connectwallet:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.sec1 .left .button {
  border-radius: 10px;
  border: 1px solid #e4e4e4;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  color: #dd1734;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.12px;
  padding: 14px 45px;
  gap: 10px;
  /* margin: auto; */
  display: flex;
  margin-top: 20px;
  width: fit-content;
  /* transition: all 0.15s ease-in-out; */
}
.sec1 .left .button:hover {
  box-shadow: 0px 8px 19px -6px #dd1734;
  background: #fff;
  text-decoration: none;
}

.homeimg {
  margin: auto;
  display: flex;
  margin-top: 48px;
  width: 80%;
}
.sec3 .box2 {
  background: white;
  box-shadow: 0 34px 35px 0 rgba(84, 84, 84, 0.1);
  display: flex;
  flex-direction: column;
  position: relative;
  top: -113px;
  padding-bottom: 51px;
  border-radius: 15px;
  padding-top: 20px;
  margin-top: 200px;
}

.sec1 video {
  width: 600px;
  /* height: 400px; */
  border-radius: 10px;
  margin: 1rem 0;
  overflow: hidden;
}

/* Countdown timer CSS */
.daystxt {
  color: rgba(3, 11, 21, 1) !important;
  text-align: center;
  font-size: 0.8em !important;
  margin: auto;
  position: absolute;
  bottom: 30px;
}
#time {
  display: flex;
  gap: 30px;
  margin: auto;
}

#time .circle {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#time .circle svg {
  position: relative;
  width: 150px;
  height: 150px;
  transform: rotate(270deg);
}
#time .circle svg circle {
  width: 100%;
  height: 100%;
  fill: transparent;
  stroke-width: 8;
  stroke-linecap: round;
  stroke: rgba(243, 243, 243, 1);
  transform: translate(5px, 5px);
}
#time .circle svg circle:nth-child(2) {
  stroke: var(--clr);
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
}

#time div {
  position: absolute;
  text-align: center;
  font-weight: 500;
  color: rgba(3, 11, 21, 1);
  font-size: 1.5em;
}

#time div span {
  position: absolute;
  transform: translateX(-50%) translateY(-10px);
  font-size: 0.35em;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#time .dots {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 1000;
}

/* #time .dots::before {
  content: "";
  position: absolute;
  top: -3px;
  height: 15px;
  width: 15px;
  background: var(--clr);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--clr), 0 0 60px var(--clr);
} */
/* Count down css end */
.topgraph h1 {
  --bg-size: 400%;
  --color-one: rgba(68, 18, 27, 1) 15%;
  --color-two: rgba(179, 32, 50, 1) 100%;

  text-align: center;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 75px; /* 288.462% */
  letter-spacing: -0.26px;
  margin-bottom: 2rem;
  background: linear-gradient(
      90deg,
      var(--color-two),
      var(--color-one),
      var(--color-two)
    )
    0 0 / var(--bg-size) 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}
.topgraph img {
  width: 70%;
  margin: 30px 0px;
}
.sec1 .container {
  position: relative;
}
.sec2 {
  justify-content: center;
  display: flex;
  padding: 100px 0;
  min-height: calc(100vh - 80px);
  background: linear-gradient(46deg, #0b0b0b 0%, #390910 42.5%, #c7021f 100%);
  overflow: hidden;
}
.sec2 .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.sec2 .inner .video-container {
  border-radius: 16px;
  overflow: hidden;
  width: 80%;
}
.sec2 .inner .video-container video {
  width: 100%;
  height: 100%;
}

/* @media screen and (max-width: 992px) {
} */

.sec2 h4 {
  color: #fff;
  font-family: Satoshi Variable;
  font-size: 36px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.27px;
}

.whatwedoing_p {
  color: #fff;
  font-family: Satoshi Variable;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 145.045%; /* 24.658px */
  letter-spacing: 0.128px;
}

.whatwedoing_txt {
  color: #fff;
  font-family: Satoshi Variable;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.12px;
  opacity: 0.7;
}
.sec_h1 span {
  color: #f03e58;
  text-align: center;
  font-family: Satoshi Variable;
  font-size: 36px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.27px;
}
.sec_h1 {
  color: #000;
  font-family: Satoshi Variable;
  font-size: 36px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.27px;
  text-align: center;
}
.blockchain_sec h1 {
  color: #000;
  font-family: Satoshi Variable;
  font-size: 28px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.195px;
}
.sec3 p {
  color: #505050;
  text-align: center;
  font-family: Satoshi Variable;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.12px;
  margin-top: 1.5rem;
}
.sec3_top_p {
  width: 70%;
  display: flex;
  margin: auto;
}

.blockchain_box {
  background: #fff;
  box-shadow: 0px 34px 35px rgba(84, 84, 84, 0.1);
  padding: 50px;
  border-radius: 15px;
  margin-top: 30px;
}
.blockchainhead {
  justify-content: center;
  align-items: center;
  display: flex;
}

.blockchain_p p {
  text-align: left;
  color: #505050;
  font-family: Satoshi Variable;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.12px;
}
.sec3 {
  padding: 100px 0;
  overflow: hidden;
}
.sec3 .blockchain_sec svg {
  width: 100%;
  max-height: 300px;
}
.readvoiceban:hover,
.readvoiceban {
  border-radius: 10px;
  background: linear-gradient(90deg, #f6583d 31.58%, #e42e47 100%);
  padding: 10px 22px;
  color: #fff;
  font-family: Satoshi Variable;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.sec4 .img-container {
  overflow: hidden;
  border-radius: 26px;
}
.sec4 .img-container img {
  height: 100%;
  width: 100%;
}
.sec4 h1 {
  color: #000;
  font-family: Satoshi Variable;
  font-size: 36px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.27px;
}

.sec4 h1 span {
  color: #f03e58;
  font-family: Satoshi Variable;
  font-size: 36px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.27px;
}

.whitepaper_head {
  color: #000;
  font-family: Satoshi Variable;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.135px;
}
.listingheader {
  color: #828282;
  font-family: Satoshi Variable;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.12px;
}
.sec4 ul li {
  color: #828282;
  font-family: Satoshi Variable;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.12px;
  list-style-type: none;
  margin-top: 5px;
}

.sec4 {
  padding-bottom: 100px;
}

.sec5 {
  background: linear-gradient(180deg, #030b15 0%, #7a0012 100%),
    url(images/voicebanbg.png);
  min-height: calc(100vh - 80px);
  padding: 100px;
  overflow: hidden;
}
/* .sec5_img {
  background-image: url(images/voicebanbg.png);
  background-repeat: no-repeat;
  background-size: cover;
} */

.sec5 h2 {
  color: #fff;
  text-align: center;
  font-family: Satoshi Variable;
  font-size: 36px;
  font-style: normal;
  font-weight: 900;
  line-height: 52px; /* 144.444% */
  letter-spacing: -0.36px;
}
.sec5 h2 span {
  color: #f03e58;
  font-family: Satoshi Variable;
  font-size: 36px;
  font-style: normal;
  font-weight: 900;
  line-height: 52px;
  letter-spacing: -0.36px;
}
.voiceban_head {
  color: #fff;
  font-family: Satoshi Variable;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 48px; /* 127.273% */
}

.voiceban_disc {
  color: #fff;
  font-family: Satoshi Variable;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 146.667% */
  opacity: 0.7;
}
.sec5 .row {
  margin-top: 70px;
}
.vbantabs ul {
  border-radius: 20px;
  border: 1px solid #cacaca;
  background: #f1f1f1;
  padding: 10px;
}
.nav-pills .nav-link.active {
  border-radius: 8px;
  background: linear-gradient(90deg, #f6583d 31.58%, #e42e47 100%);
}

.nav-pills .nav-link {
  color: #000;
  font-family: Satoshi Variable;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 150% */
}
.leftlisting ul {
  list-style-type: none;
}
.leftlisting ul li p {
  color: #000;
  font-family: Satoshi Variable;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0;
  margin-left: 10px;
}
.leftlisting ul li {
  display: flex;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 4px 19px 0px rgba(0, 0, 0, 0.08);
  padding: 22px 22px 22px 25px;
  margin-top: 23px;
}
.leftlisting ul li svg {
  margin-top: 2px;
}
.sec6 h2 {
  color: #000;
  text-align: center;
  font-family: Satoshi Variable;
  font-size: 36px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.27px;
}
.sec6 h2 span,
.sec7 h2 span {
  color: #f03e58;
  font-family: Satoshi Variable;
  font-size: 36px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.27px;
}

.sec6 {
  padding: 100px 0;
  /* min-height: calc(100vh - 80px); */
  overflow: hidden;
}
.sec8 {
  background: #f2e8ea;
  padding: 100px 0;
  /* min-height: calc(100vh - 80px); */
  overflow: hidden;
}
.sec8 ul {
  margin-top: 40px;
}
.sec8 ul li {
  border-radius: 10px;
  background: #fff;
  list-style-type: none;
  margin-top: 20px;
  cursor: pointer;
}
.faqhead {
  padding: 33px 55px;
}
.faqhead p {
  color: #030b15;
  font-family: Satoshi Variable;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 125% */
  margin: 0;
}

.faqarrow {
  /* width: 16px; */
  /* height: 16px; */
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  right: 50px;
  top: 30px;
  color: #b4b4b4;
  transform: rotate(180deg);
}
.faqarrow.active {
  -webkit-transform: rotate(90deg);
  transform: rotate(0deg);
  color: #ff0000;
}

.sec8 .card {
  border: none;
  padding: 0;
  border-bottom: 2px solid #f03e58;
  border-radius: 0;
}

.sec8 .card p {
  padding: 0 55px 33px 55px;
}
.sec8 h2 span {
  color: #f03e58;
  font-family: Satoshi Variable;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 62px;
  letter-spacing: -0.72px;
}
.sec8 h2 {
  color: var(--black, #030b15);
  text-align: center;
  font-family: Satoshi Variable;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 62px; /* 172.222% */
  letter-spacing: -0.72px;
}
.sec9 {
  background: #fff;
  overflow: hidden;
}

.getintouchbox input,
.getintouchbox textarea {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  padding: 12px 23px;
  width: 100%;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.getintouchbox .form-control:focus {
  color: white;
  border-color: rgba(255, 255, 255, 0.7);
}
.sec9 h3 {
  color: #fff;
  font-family: Satoshi Variable;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px; /* 166.667% */
  letter-spacing: -1.08px;
}
.contactus_box a {
  color: #fff;
  font-family: Satoshi Variable;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contactus_box {
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    rgba(255, 255, 255, 0.06);
  padding: 34px 26px 30px 36px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.donate-btn-container {
  width: 100%;
}
.sendmessage {
  border-radius: 7px;
  background: linear-gradient(90deg, #f6583d 31.58%, #e42e47 100%);
  color: #fff;
  font-family: Satoshi Variable;
  font-size: 22.344px;
  font-style: normal;
  font-weight: 700;
  padding: 9.344px 25px;
  line-height: normal;
  /* float: right; */
}
.sendmessage:hover {
  color: #fff;
}
.subscribe {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 26px 23px 0px rgba(81, 98, 132, 0.06);
  padding: 25px;
  position: absolute;
  width: 100%;
  bottom: -45px;
}
.subscribe_head {
  color: #030b15;
  font-family: Satoshi Variable;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1px;
}
.subscribe_input {
  border-radius: 10px;
  background: #f4f4f4;
  padding: 7px 11px 7px 23px;
}

.subscribebtn {
  border-radius: 8px;
  background: linear-gradient(90deg, #f6583d 31.58%, #e42e47 100%);
  color: #fff;
  font-family: Satoshi Variable;
  font-size: 22.344px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.subscribebtn:hover {
  color: #fff;
}
.subscribearrow {
  border-radius: 8px;
  background: linear-gradient(90deg, #f6583d 31.58%, #e42e47 100%);
  color: #fff;
  font-family: Satoshi Variable;
  font-size: 22.344px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: none;
}
.bgimage {
  background: url(images/contactus.png),
    lightgray 0px -11.114px / 100% 103.303% no-repeat;
  background-size: cover;
  padding: 50px 0 200px 0;
  position: relative;
}

.subscribe input {
  background: none;
  border: none;
  box-shadow: none;
}

.form-control:focus {
  color: #495057;
  background: none;
  border-color: none;
  outline: 0;
  box-shadow: none;
}

.rightlink ul {
  list-style-type: none;
  display: flex;
  justify-content: end;
  gap: 1.5rem;
}
.leftlink ul {
  list-style-type: none;
  display: flex;
  justify-content: space-evenly;
}
.linkscontainer {
  padding: 90px 0;
}
.leftlink ul li a {
  color: #000;
  font-family: Satoshi Variable;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.28px;
}

.rightlink ul li a:hover {
  color: #f03e58;
}
.rightlink ul li a {
  color: #cfc7c7;
}

.scrolltotop_link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  bottom: 37px;
}

.scrolltotop_link {
  color: #0a142f;
  text-align: center;
  font-family: Satoshi Variable;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.scrolltotop_link svg {
  color: #f03e58;
}

.copyright a {
  color: #0a142f;
  font-family: Satoshi Variable;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.copyright ul {
  display: flex;
  list-style-type: none;
}

.copyright ul li {
  margin-left: 20px;
}

.scrolltotop_link p {
  margin-top: 5px;
}
.scrolltotop_link a {
  color: #0a142f;
  font-family: Satoshi Variable;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.tearmsservice {
  justify-content: end;
  display: flex;
}

/* Roadmap Css */
.sec7 {
  padding: 100px 0;
  background: url(images/roadmapbg.svg);
  background-size: cover;
  min-height: calc(100vh - 80px);
  overflow: hidden;
}
.sec7 h2 {
  color: #fff;
  text-align: center;
  font-family: Satoshi Variable;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 52px; /* 144.444% */
  letter-spacing: -0.36px;
  margin-bottom: 50px;
}
.roadmap_container {
  overflow: auto;
  /* background: url(images/roadmapbg2.png);
  background-size: cover; */
}
.mailline {
  opacity: 0.1;
  background: linear-gradient(248deg, #ff4581 0%, #4388dd 100%);
  width: 0;
  /* width: 1903px; */
  height: 8px;
  flex-shrink: 0;
}
.subhead {
  color: #fff;
  font-family: Satoshi Variable;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.roadmap_p {
  color: #d8d8d8;
  font-family: Satoshi Variable;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 162.5% */
}
.content_header {
  content: "Start of Q1 2020";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  position: absolute;
  top: -30px;
  left: -50px;
}
.content_header2 {
  content: "Start of Q1 2020";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  position: absolute;
  bottom: -40px;
  left: -50px;
}

.bottom_box {
  display: flex;
  position: relative;
  left: 20px;
  align-items: center;
  top: -6px;
  width: 16rem;
  margin: 0;
  height: 300px;
  min-height: 214px;
}
.top_box {
  display: flex;
  position: relative;
  left: 20px;
  align-items: center;
  top: 7px;
  width: 16rem;
  margin: 0;
  height: 300px;
  min-height: 214px;
}
.text_content {
  padding-left: 10px;
  width: 230px;
}
.dot {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50px;
  position: absolute;
  top: -4px;
  left: -7px;
}
.dot2 {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50px;
  position: absolute;
  bottom: -4px;
  left: -7px;
}
.topcontent {
  width: fit-content;
  position: relative;
  left: 0;
  right: 0;
  margin: 0 auto;
  gap: 1rem;
}
.bottom_content {
  width: fit-content;
  position: relative;
  left: 0;
  right: 0;
  margin: 0 auto;
  gap: 1rem;
}

.pink {
  background: #ff4581;
}
.pink_border {
  border-left: 1px solid #ff4581;
}

.pink_txt {
  color: #ff4581;
}
.blue {
  background: #007ff4;
}
.blue_border {
  border-left: 1px solid #007ff4;
}
.blue_txt {
  color: #007ff4;
}
.orange {
  background: #ff9700;
}
.orange_border {
  border-left: 1px solid #ff9700;
}
.orange_txt {
  color: #ff9700;
}
.lightblue {
  background: #00c4f4;
}
.lightblue_border {
  border-left: 1px solid #00c4f4;
}
.lightblue_txt {
  color: #00c4f4;
}
.green {
  background: #309d27;
}
.green_border {
  border-left: 1px solid #309d27;
}
.green_txt {
  color: #309d27;
}
.purple {
  background: #8900f4;
}
.purple_border {
  border-left: 1px solid #8900f4;
}
.purple_txt {
  color: #8900f4;
}
.sec7.mobile {
  display: none !important;
}

/* Roadmap Mobile CSS */
@media screen and (max-width: 1024px) {
  .sec7.desktop {
    display: none !important;
  }
  .sec7.mobile {
    display: block !important;
    padding-bottom: 0;
  }
  .sec7.mobile .container {
    display: flex;
    padding: 50px;
    padding-bottom: 0;
  }
  .sec7.mobile .box-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
  .sec7.mobile .mailline {
    position: absolute;
    width: 8px;
    height: 0;
    /* height: 1770px; */
    transform: translateY(-5rem);
  }
  .sec7.mobile .box-container .text_content {
    width: 100%;
  }
  /* pink border */
  .sec7.mobile .top_box,
  .sec7.mobile .bottom_box {
    left: 4px;
    top: 0;
    margin-left: 0;
    height: 0;
    width: 100%;
    padding-left: 2rem;
    min-height: 195px;
  }
  .sec7.mobile .dot,
  .sec7.mobile .dot2 {
    top: -7px;
  }
  .sec7.mobile .content_header,
  .sec7.mobile .content_header2 {
    top: -30px;
    left: 20px;
  }
  .sec7.mobile .pink_border {
    border-left: 0 !important;
    border-top: 1px solid #ff4581;
  }
  .sec7.mobile .blue_border {
    border-left: 0 !important;
    border-top: 1px solid #007ff4;
  }
  .sec7.mobile .orange_border {
    border-left: 0 !important;
    border-top: 1px solid #ff9700;
  }
  .sec7.mobile .lightblue_border {
    border-left: 0 !important;
    border-top: 1px solid #00c4f4;
  }
  .sec7.mobile .green_border {
    border-left: 0 !important;
    border-top: 1px solid #309d27;
  }
  .sec7.mobile .purple_border {
    border-left: 0 !important;
    border-top: 1px solid #8900f4;
  }
}

@media screen and (max-width: 767px) {
  .main-timeline .timeline {
    width: 100%;
  }
}

@media screen and (max-width: 1300px) {
  .connectwallet {
    position: absolute;
    right: 40px;
  }
  .navbar {
    padding: 10px 80px;
  }
}
@media screen and (max-width: 1199px) {
  .connectwallet {
    position: absolute;
    right: 40px;
  }
  .navbar {
    padding: 10px 80px;
  }
  .sec3 .box2 {
    top: -89px;
  }
  .sec1 {
    background-size: 120%;
  }
  .navbarlinks {
    justify-content: initial;
  }
}
@media screen and (max-width: 1025px) {
  .navbar {
    padding: 10px 35px;
  }
  .sec1 {
    background-size: 154%;
  }
}
@media screen and (max-width: 992px) {
  #time {
    display: unset;
  }
  #time .circle {
    margin-top: 20px;
  }
  .navbarlinks {
    position: absolute;
    background: white;
    top: 63px;
    width: 100%;
    width: 100%;
    z-index: 111;
    padding: 10px;
    left: 0;
    border-radius: 0 0px 15px 15px;
  }
  .navbarlinks ul li a {
    color: #000;
    text-align: left;
    margin-top: 10px;
  }
  .connectwallet {
    position: relative;
    right: auto;
    padding: 10px 0;
  }
  .connectwallet {
    width: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, #f6583d 31.58%, #e42e47 100%);
    color: white;
    border: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 10px 0;
  }
  .subscribebtn {
    display: none;
  }
  .subscribearrow {
    display: block;
  }
  .sec3 .box2 {
    top: -65px;
  }
  .sec1 .heading {
    font-size: 24px;
  }
  .sec1 p {
    font-size: 16px;
  }
  .topgraph img {
    width: 70%;
    margin: 13px 0px;
  }
  .sec2 h4 {
    font-size: 30px;
  }
  .sec_h1 {
    font-size: 30px;
  }
  .blockchain_sec h1 {
    font-size: 26px;

    margin-top: 20px;
    margin-bottom: 15px;
  }
  .blockchainhead {
    justify-content: start;
  }
  .sec4 h1 {
    color: #000;
    font-family: Satoshi Variable;
    font-size: 30px;
  }
  .whitepaper_head {
    font-size: 16px;
  }
  .voiceban_head {
    margin: 20px 0;
  }
  .leftlisting ul li p {
    font-size: 16px;
  }

  .nav-pills .nav-link {
    font-size: 16px;
  }
  .sec6 h2 {
    font-size: 30px;
  }
  .sec8 h2 {
    font-size: 30px;
  }
  .faqhead p {
    font-size: 22px;
  }
  .sec9 h3 {
    font-size: 30px;
  }
  .subscribe_head {
    font-size: 30px;
  }
  .rightlink {
    justify-content: center;
    align-items: center;
    display: flex;
  }
  .rightlink ul {
    width: 40%;
  }
  .tearmsservice {
    justify-content: center;
  }
  .tearmsservice ul {
    margin-top: 20px;
  }
  .copyright a {
    text-align: center;
  }
  .copyrighttxt {
    justify-content: center;
    display: flex;
  }
  .linkscontainer {
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .sec4 img {
    margin-top: 30px;
  }
  .faqhead {
    padding: 25px 55px;
  }
  .getintouchbox {
    margin-top: 40px;
  }
  .subscribe_head {
    text-align: center;
  }
  .sec1 {
    background-size: 217%;
  }
  .sec3 .box2 {
    top: -46px;
  }
  .whatwedoing_box {
    width: 100%;
  }
  .whatwedoing_box {
    border-radius: 20px;
  }
}
@media screen and (max-width: 644px) {
  video {
    width: 400px;
    height: 300px;
  }
}
@media screen and (max-width: 576px) {
  .subscribe {
    width: 95%;
  }
  .topgraph {
    top: -45px;
  }
  .sec1 {
    background-size: 270%;
  }
  .leftlink ul {
    display: block;
  }
  .leftlink {
    justify-content: center;
    align-items: center;
    display: flex;
  }
  .leftlink ul li {
    margin-top: 20px;
    text-align: center;
  }
  .rightlink {
    margin-top: 20px;
  }
  .sec1 {
    background-size: 300%;
  }
  .sec2 h4 {
    font-size: 24px;
  }
  .whatwedoing_p {
    font-size: 16px;
  }
  .sec_h1 {
    font-size: 24px;
  }
  .sec_h1 span {
    font-size: 24px;
  }
  .sec3 p {
    font-size: 16px;
  }
  .blockchain_sec h1 {
    font-size: 20px;
  }
  .sec4 h1 {
    font-size: 24px;
  }
  .sec4 h1 span {
    font-size: 24px;
  }
  .sec5 h2 {
    font-size: 22px;
  }
  .sec5 h2 span {
    font-size: 22px;
  }
  .sec6 h2 {
    font-size: 24px;
  }
  .sec6 h2 span {
    font-size: 24px;
  }
  .sec8 h2 {
    font-size: 24px;
  }

  .sec8 h2 span {
    font-size: 24px;
  }
  .faqhead p {
    font-size: 16px;
  }
  .sec9 h3 {
    font-size: 24px;
    text-align: center;
  }
  .subscribe_head {
    font-size: 24px;
  }
  .sendmessage {
    display: flex;
    margin: auto;
    float: none;
    justify-content: center;
  }
  .navbarlinks {
    position: absolute;
    background: white;
    top: 63px;
    width: 100%;
    width: 100%;
    z-index: 111;
    padding: 10px;
    left: 0;
    border-radius: 0 0px 15px 15px;
  }
  .navbarlinks ul li a {
    color: #000;
    text-align: left;
    margin-top: 10px;
  }
  .connectwallet {
    position: relative;
    right: auto;
    padding: 10px 0;
  }
  .connectwallet {
    width: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, #f6583d 31.58%, #e42e47 100%);
    color: white;
    border: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 10px 0;
  }
  .subscribebtn {
    display: none;
  }
  .subscribearrow {
    display: block;
  }
}
@media screen and (max-width: 470px) {
  .sec1 {
    background-size: 345%;
  }
  .topgraph {
    top: -35px;
  }
}
@media screen and (max-width: 400px) {
  .sec1 {
    background-size: 380%;
  }
  .topgraph {
    top: -25px;
  }
  video {
    width: 300px;
    height: 200px;
  }
}
@media screen and (max-width: 322px) {
  .sec1 {
    background-size: 495%;
  }
  .topgraph {
    top: -20px;
  }
}
@media screen and (max-width: 300px) {
  .navbar-brand img {
    width: 130px;
  }
}

/* width */
::-webkit-scrollbar {
  width: 0;
}

/* Track */
::-webkit-scrollbar-track {
  background: none;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: none;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: none;
}
/* styles.css */
#sticky-header {
  width: 100%;
  background-color: white;
  color: white;
  transition: top 0.3s;
}
/* .navbar {
  background-image: url(images/bg_wave.svg);
  background-size: cover;
} */
.navbar {
  position: fixed;
  top: 0;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
  z-index: 100;
  height: 80px;
  width: 100%;
  /* backdrop-filter: blur(20px); */
}

.particles {
  position: absolute;
  inset: 0;
  opacity: 0.7;
}
#particles2 {
  opacity: 0.5;
}

.sec1 {
  min-height: 100vh;
  display: flex;
  padding-top: 5rem;
  padding-left: 7rem;
  padding-right: 7rem;
  position: relative;
  overflow: hidden;
}
.sec1 > .inner {
  display: flex;
  align-items: center;
}
.sec1 .left {
  width: 40%;
  display: flex;
  align-items: center;
  /* padding-right: 0 4rem; */
}
.sec1 .left .heading {
  display: flex;
  flex-wrap: wrap;
  font-size: 3rem;
  margin-bottom: 1rem;
}
.sec1 .left .heading .word {
  display: flex;
}
.sec1 .left .heading .word .char {
  --bg-size: 400%;
  --color-one: rgba(68, 18, 27, 1) 15%;
  --color-two: rgba(179, 32, 50, 1) 100%;
  background: linear-gradient(
      90deg,
      var(--color-two),
      var(--color-one),
      var(--color-two)
    )
    0 0 / var(--bg-size) 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: move-bg 8s linear infinite;
}
@keyframes move-bg {
  to {
    background-position: var(--bg-size) 0;
  }
}

.sec1 .right * {
  transform-style: preserve-3d;
}
.sec1 .right {
  --inner-box-shadow: 0px 0px 0px 0px rgb(149 149 149),
    0px 0px 10px 0.5px rgb(200 200 200);

  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec1 .right > .inner {
  width: 75%;
  position: relative;
  border-radius: 1rem;
  transform: translateY(100px) rotate(-30deg) rotateY(40deg) rotateX(40deg);
  scale: 1;
  /* opacity: 0; */
}
.sec1 .right > .inner .base {
  border-radius: 1rem;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.sec1 .right > .inner .app-body {
  position: absolute;
  width: 100%;
  height: 93%;
  top: 7.2%;
  left: 0;
}
.sec1 .right > .inner .app-body .app-navbar {
  width: 100%;
  height: 7.2%;
  padding: 0 1%;
  position: absolute;
  top: 1%;
  left: 0;
  /* opacity: 0; */
}
.sec1 .right > .inner .app-body .app-navbar img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 0px 0px 0px rgb(149 149 149),
    0px 4px 5px -3px rgb(200 200 200);
}
.sec1 .right > .inner .app-body .app-container {
  position: absolute;
  top: 7.2%;
  width: 100%;
  padding: 2% 2.8%;
  height: 92.4%;
  display: flex;
  justify-content: space-between;
}
.sec1 .right > .inner .app-body .app-container .left-sidebar {
  width: 21.4%;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.sec1 .right .left-sidebar .top,
.sec1 .right .left-sidebar .bottom,
.sec1 .right .right-sidebar img {
  position: relative;
  border-radius: 16px;
  box-shadow: var(--inner-box-shadow);
  /* opacity: 0; */
}
.sec1 .right .right-sidebar {
  width: 20.9%;
}
.sec1 .right .right-sidebar img {
  width: 100%;
}
.sec1 .right .sections {
  width: 54.7%;
  height: 97.5%;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.sec1 .right .app-section-1 {
  position: relative;
  margin: 0 2%;
}
.sec1 .right .app-section-1 .prev,
.sec1 .right .app-section-1 .next {
  position: absolute;
  width: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  opacity: 0;
}
.sec1 .right .app-section-1 .prev {
  left: 0;
  transform: translate(-50%, -50%);
}
.sec1 .right .app-section-1 .next {
  right: 0;
  transform: translate(50%, -50%);
}
.sec1 .right .app-section-1 .items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0.5rem;
}
.sec1 .right .app-section-1 .items img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--inner-box-shadow);
  opacity: 1;
  /* opacity: 0; */
}
.sec1 .right .app-section-2-3-container {
  padding: 0 0.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.sec1 .right .app-section-2 {
  position: relative;
  border-radius: 16px;
  /* opacity: 0; */
}
.sec1 .right .app-section-2 img {
  border-radius: 16px;
  box-shadow: var(--inner-box-shadow);
  width: 100%;
}
.sec1 .right .app-section-3 {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 0.25rem;
}
.sec1 .right .app-section-3 .filter {
  width: 22%;
  margin-right: 2%;
  opacity: 0;
}
.sec1 .right .app-section-3 .feed {
  width: 100%;
  position: relative;
  border-radius: 16px;
  box-shadow: var(--inner-box-shadow);
  /* opacity: 0; */
}

.sec5 .mobile-img {
  display: none;
}
.sec5 .left .items {
  padding-right: 1rem;
}
.sec5 .left .item {
  min-height: calc(100vh - 80px);
  padding-top: 2rem;
}
.sec5 .left .item:last-child {
  min-height: calc(70vh - 80px);
}
.sec5 .desktop-images {
  width: 600px;
  height: 450px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.sec5 .desktop-images img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec7.desktop .item {
  opacity: 0;
}

@media screen and (max-width: 1200px) {
  .sec1 > .inner {
    flex-direction: column;
    gap: 4rem;
    padding: 4rem 0;
  }
  .sec1 .left {
    width: 70%;
  }
  .sec1 .right {
    width: 100%;
  }
  .sec1 .right > .inner {
    transform: rotate(0deg) rotateY(0deg) rotateX(0deg);
    scale: 1;
  }
  .sec1 .right .app-section-1 .prev,
  .sec1 .right .app-section-1 .next,
  .sec1 .right .app-section-3 .filter {
    opacity: 1;
  }

  .sec5 .left .item {
    min-height: fit-content !important;
  }
  .sec5 .mobile-img {
    display: block;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
    height: 60vw;
    object-fit: cover;
  }
  /* .sec5 .item:first-child .mobile-img {
    object-fit: contain;
  } */
}
@media screen and (max-width: 1024px) {
  .sec1 .right > .inner .base {
    border-radius: 0.5rem;
  }
  .sec1 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .sec1 .right .left-sidebar .top,
  .sec1 .right .left-sidebar .bottom,
  .sec1 .right .right-sidebar img {
    border-radius: 10px;
  }
  .sec1 .right .app-section-2 img {
    border-radius: 10px;
  }
  .sec1 .right .app-section-3 .feed {
    border-radius: 10px;
  }

  .sec2,
  .sec3,
  .sec6,
  .sec7.mobile,
  .sec8 {
    padding: 60px 20px;
  }
  .sec2 .inner .video-container {
    border-radius: 10px;
    width: 100%;
  }

  .sec3 .blockchain_box {
    padding: 0 20px 30px;
  }
  .sec3 .box2 {
    margin-top: 100px;
  }

  .sec5 {
    padding: 60px 0;
  }
  .sec5 .row {
    margin-top: 0;
  }
  .sec5 .container > .heading,
  .sec5 .container > .heading span {
    font-size: 24px;
  }
  .sec5 .item .heading {
    font-size: 22px;
    margin: 0;
  }
  .sec5 .item .voiceban_disc {
    font-size: 16px;
  }

  .sec7.mobile > .heading,
  .sec7.mobile > .heading span {
    font-size: 24px;
  }
}
@media screen and (max-width: 640px) {
  .sec1 .left {
    width: 100%;
  }
  .sec1 .right > .inner {
    width: 100%;
    scale: 0.85 !important;
  }
  .sec1 .right > .inner .app-body .app-container .left-sidebar {
    width: 20.4%;
    padding: 0.3rem 0;
  }
  .sec1 .right .right-sidebar {
    width: 20.3%;
    padding: 0.3rem 0;
  }
  .sec1 .right .sections {
    width: 52.4%;
    padding: 0.3rem 0;
  }

  .sec3_top_p {
    width: 100%;
  }

  .sec4 {
    padding: 0 10px 60px;
  }

  .nav-pills .nav-link {
    font-size: 14px;
  }
}
