@import url("https://fonts.googleapis.com/css2?family=Wix+Madefor+Text:ital,wght@0,400..800;1,400..800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Wix Madefor Text", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
body {
  width: 100%;
  display: flex;
  justify-content: center;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  padding: 10px 120px;
  position: fixed; /* Add this line */
  width: 100%; /* Add this line */
  top: 0; /* Add this line */
  z-index: 1; /* Add this line */
  max-width: 1600px;
  /* margin: auto; */
  z-index: 9999;
  transition: background-color 0.3s;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.home-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  padding: 10px 60px;
  position: fixed; /* Add this line */
  width: 100%; /* Add this line */
  top: 0; /* Add this line */
  z-index: 1; /* Add this line */
  max-width: 1600px;
  /* margin: auto; */
  z-index: 9999;
  transition: background-color 0.3s;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.home-header.scrolled {
  background-color: #ffffff79;
}

.header.scrolled {
  background-color: #00000079;
}

.logo {
  width: 250px;
  height: auto;
}

.nav {
  display: flex;
  gap: 40px;
}

.nav a {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

.nav-item {
  text-decoration: none;
  color: black;
}

.nav-item-white {
  text-decoration: none;
  color: white;
}

.nav.scrolled a {
  text-decoration: none;
  color: white;
}

.nav-item-white.scrolled {
}

.mobile-nav {
  display: none;
  height: 100vh;
  width: 0%;

  position: fixed;
  right: 0;
  z-index: 9999;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  transition: width 0.5s;
  box-shadow: -10px 0 10px -5px rgba(158, 158, 158, 0.5);
}

.mobile-nav.expanded {
  width: 60%; /* New width when expanded */
}

.mobile-nav-list {
  width: 100%;
  background: #fff;
  height: 100%;
  padding: 30px 30px;
  display: flex;
  justify-content: center;
  position: relative;
  align-content: center;
  flex-direction: column;
  align-items: flex-start;
}

.mobile-nav-list a {
  padding: 7px;
  font-size: 26px;
  font-weight: bold;
  text-align: right;
}

.mobile-nav-list a:hover {
  background: #b1b1b1;
  border-radius: 10px;
}
.closeButton {
  position: absolute;
  top: 13px;
  left: 13px;
  /* transform: translate(-130%, -50%); */
  font-size: 20px;
  padding: 5px;
}
.hamburger {
  cursor: pointer;
  width: 25px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  user-select: none;
}

.bar {
  width: 100%;
  height: 2px;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}

.hamburger.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  scroll-snap-align: start;
  max-height: 800px;
}

.mobile-only {
  display: none;
}

.project-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.progress-tab {
  position: absolute;
  left: -10px;
  bottom: 25px;
  width: 126px;
  background: #ff03b9;
  padding: 7px 8px;
  border-radius: 10px;
  color: #ffff;
}

.main-container {
  scroll-behavior: smooth;
  scroll-snap-points-y: repeat(100vh);
  -webkit-overflow-scrolling: touch;
  max-width: 1600px;
  /* margin: auto; */
  width: 100%;
}

.main-container::-webkit-scrollbar {
  display: none;
}

.hero-container {
  background: linear-gradient(to top, #dcf7ff, white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-height: 800px;
  width: 100%;

  padding: 0 60px;
  overflow-x: hidden;

  border-bottom-right-radius: 60px;
  border-bottom-left-radius: 60px;
  box-shadow: 0 4px 11px -6px #80c9ddd6;
  height: 95vh;
  overflow-y: hidden;
}

.hero-main-container {
  width: 100%;

  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  overflow: clip;
}

.slider-container {
  width: 1100px;
  height: 600px;
  position: relative;
}

.hero-heading-container {
  position: absolute;
  width: 100%;
  height: 200px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -80%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0px;
  overflow: clip;
}

.image-container {
  position: relative;
  width: 100%;

  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: clip;
}

.sub-heading-container {
  position: absolute;
  width: 60%;
  height: 40%;
  bottom: 0;
  /* background-color: #0026ff60; */
  display: flex;
  align-items: center;
  justify-content: start;

  transform: translateX(50px);
}

.sub-heading-container p {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 8px;
  text-transform: uppercase;
  line-height: 30px;
}
.hero-heading {
  font-size: 163px;
  text-transform: uppercase;
  font-weight: 700;
}

.metaverse-heading {
  font-size: 180px;
  text-transform: uppercase;
  font-weight: 700;
}

.exchange-heading {
  font-size: 195px;
  text-transform: uppercase;
  font-weight: 700;
}

.bidding-heading {
  font-size: 150px;
  text-transform: uppercase;
  font-weight: 700;
}

.blockchain-heading {
  font-size: 162px;
  text-transform: uppercase;
  font-weight: 700;
}

.nft-heading {
  font-size: 290px;
  text-transform: uppercase;
  font-weight: 700;
  transform: translateX(-253px);
}
.hero-girl {
  position: absolute;
  right: 0;
}

.slide-up {
  animation: slideUpOut 0.5s forwards;
}

.slide-down {
  animation: slideDownIn 0.5s forwards;
}

.nft-heading.slide-up {
  animation: nftSlideUpOut 0.5s forwards;
}

.nft-heading.slide-down {
  animation: nftSlideDownIn 0.5s forwards;
}

@keyframes slideUpOut {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-250px);
  }
}

@keyframes slideDownIn {
  from {
    transform: translateY(250px);
  }
  to {
    transform: translateY(0px);
  }
}

@keyframes nftSlideUpOut {
  from {
    transform: translate(-253px, 0px);
  }
  to {
    transform: translate(-253px, -250px);
  }
}

@keyframes nftSlideDownIn {
  from {
    transform: translate(-253px, 250px);
  }
  to {
    transform: translate(-253px, 0px);
  }
}

.zoom-in {
  animation: textZoomIn 1s forwards;
}

.zoom-out {
  animation: textZoomOut 0.5s forwards;
}
@keyframes textZoomOut {
  0% {
    transform: scale(1);
    opacity: 1;
    transform-origin: center;
  }

  100% {
    transform: scale(0);
    opacity: 0;
    transform-origin: center;
  }
}

@keyframes textZoomIn {
  0% {
    transform: scale(0);
    opacity: 0;
    transform-origin: center;
  }

  100% {
    transform: scale(1);
    opacity: 1;
    transform-origin: center;
  }
}

.metaverse-sub-heading {
  width: 400px;
}

.exchange-sub-heading {
  width: 450px;
}

.bidding-sub-heading {
  width: 400px;
}

.blockchain-sub-heading {
  width: 490px;
}

.nft-sub-heading {
  width: 547px;
}
/* Meta IMAGE ANIMATION */

.hero-meta-image {
  position: absolute;
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
}

.hero-meta-image.slide-out-left {
  animation: metaSlideLeftOut 1s forwards;
  -webkit-animation: metaSlideLeftOut 1s forwards;
}

.hero-meta-image.slide-in-right {
  animation: metaSlideRightIn 0.5s forwards;
  -webkit-animation: metaSlideRightIn 0.5s forwards;
}
.hero-meta-image.slide-out-right {
  animation: metaSlideRightOut 1s forwards;
  -webkit-animation: metaSlideRightOut 1s forwards;
}

.hero-meta-image.slide-in-left {
  animation: metaSlideLeftIn 1s forwards;
  -webkit-animation: metaSlideLeftIn 1s forwards;
}

@keyframes metaSlideLeftIn {
  from {
    transform: translateX(-400px);
    opacity: 0;
  }
  to {
    transform: translateX(0px);
    opacity: 1;
  }
}

@-webkit-keyframes metaSlideLeftIn {
  from {
    -webkit-transform: translateX(-400px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes metaSlideRightOut {
  from {
    transform: translateX(0px);
    opacity: 1;
  }
  to {
    transform: translateX(400px);
    opacity: 0;
  }
}

@-webkit-keyframes metaSlideRightOut {
  from {
    -webkit-transform: translateX(0px);
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(400px);
    opacity: 0;
  }
}

@keyframes metaSlideRightIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0px);
    opacity: 1;
  }
}

@-webkit-keyframes metaSlideRightIn {
  from {
    -webkit-transform: translateX(400px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes metaSlideLeftOut {
  from {
    transform: translateX(0px);
    opacity: 1;
  }
  to {
    transform: translateX(-250px);
    opacity: 0;
  }
}

@-webkit-keyframes metaSlideLeftOut {
  from {
    -webkit-transform: translateX(0px);
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(-250px);
    opacity: 0;
  }
}

/* Exchange IMAGE ANIMATION */

.hero-exchange-image {
  position: absolute;
  transform: translateX(220px);
  -webkit-transform: translateX(220px);
  width: 600px;
}

.hero-exchange-image.slide-out-left {
  animation: exchangeSlideLeftOut 1s forwards;
  -webkit-animation: exchangeSlideLeftOut 1s forwards;
}

.hero-exchange-image.slide-in-right {
  animation: exchangeSlideRightIn 0.5s forwards;
  -webkit-animation: exchangeSlideRightIn 0.5s forwards;
}

.hero-exchange-image.slide-out-right {
  animation: exchangeSlideRightOut 1s forwards;
  -webkit-animation: exchangeSlideRightOut 1s forwards;
}

.hero-exchange-image.slide-in-left {
  animation: exchangeSlideLeftIn 1s forwards;
  -webkit-animation: exchangeSlideLeftIn 1s forwards;
}

@keyframes exchangeSlideLeftIn {
  from {
    transform: translateX(-250px);
    opacity: 0;
  }
  to {
    transform: translateX(220px);
    opacity: 1;
  }
}

@-webkit-keyframes exchangeSlideLeftIn {
  from {
    -webkit-transform: translateX(-250px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(220px);
    opacity: 1;
  }
}

@keyframes exchangeSlideRightOut {
  from {
    transform: translateX(220px);
    opacity: 1;
  }
  to {
    transform: translateX(400px);
    opacity: 0;
  }
}

@-webkit-keyframes exchangeSlideRightOut {
  from {
    -webkit-transform: translateX(220px);
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(400px);
    opacity: 0;
  }
}

@keyframes exchangeSlideRightIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(220px);
    opacity: 1;
  }
}

@-webkit-keyframes exchangeSlideRightIn {
  from {
    -webkit-transform: translateX(400px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(220px);
    opacity: 1;
  }
}

@keyframes exchangeSlideLeftOut {
  from {
    transform: translateX(220px);
    opacity: 1;
  }
  to {
    transform: translateX(-250px);
    opacity: 0;
  }
}

@-webkit-keyframes exchangeSlideLeftOut {
  from {
    -webkit-transform: translateX(220px);
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(-250px);
    opacity: 0;
  }
}

/* Bidding IMAGE ANIMATION */

.hero-bidding-image {
  position: absolute;
  bottom: -30px;
  transform: translateX(260px);
  -webkit-transform: translateX(260px);
  width: 502px;
}

.hero-bidding-image.slide-out-left {
  animation: biddingSlideLeftOut 1s forwards;
  -webkit-animation: biddingSlideLeftOut 1s forwards;
}

.hero-bidding-image.slide-in-right {
  animation: biddingSlideRightIn 0.5s forwards;
  -webkit-animation: biddingSlideRightIn 0.5s forwards;
}

.hero-bidding-image.slide-out-right {
  animation: biddingSlideRightOut 1s forwards;
  -webkit-animation: biddingSlideRightOut 1s forwards;
}

.hero-bidding-image.slide-in-left {
  animation: biddingSlideLeftIn 1s forwards;
  -webkit-animation: biddingSlideLeftIn 1s forwards;
}

@keyframes biddingSlideLeftIn {
  from {
    transform: translateX(-250px);
    opacity: 0;
  }
  to {
    transform: translateX(260px);
    opacity: 1;
  }
}

@-webkit-keyframes biddingSlideLeftIn {
  from {
    -webkit-transform: translateX(-250px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(260px);
    opacity: 1;
  }
}

@keyframes biddingSlideRightOut {
  from {
    transform: translateX(260px);
    opacity: 1;
  }
  to {
    transform: translateX(400px);
    opacity: 0;
  }
}

@-webkit-keyframes biddingSlideRightOut {
  from {
    -webkit-transform: translateX(260px);
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(400px);
    opacity: 0;
  }
}

@keyframes biddingSlideRightIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(260px);
    opacity: 1;
  }
}

@-webkit-keyframes biddingSlideRightIn {
  from {
    -webkit-transform: translateX(400px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(260px);
    opacity: 1;
  }
}

@keyframes biddingSlideLeftOut {
  from {
    transform: translateX(260px);
    opacity: 1;
  }
  to {
    transform: translateX(-250px);
    opacity: 0;
  }
}

@-webkit-keyframes biddingSlideLeftOut {
  from {
    -webkit-transform: translateX(260px);
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(-250px);
    opacity: 0;
  }
}

/* BlockChain IMAGE ANIMATION */
.hero-blockchain-image {
  position: absolute;
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
  width: 730px;
}

.hero-blockchain-image.slide-out-left {
  animation: blockchainSlideLeftOut 1s forwards;
  -webkit-animation: blockchainSlideLeftOut 1s forwards;
}

.hero-blockchain-image.slide-in-right {
  animation: blockchainSlideRightIn 0.5s forwards;
  -webkit-animation: blockchainSlideRightIn 0.5s forwards;
}

.hero-blockchain-image.slide-out-right {
  animation: blockchainSlideRightOut 1s forwards;
  -webkit-animation: blockchainSlideRightOut 1s forwards;
}

.hero-blockchain-image.slide-in-left {
  animation: blockchainSlideLeftIn 1s forwards;
  -webkit-animation: blockchainSlideLeftIn 1s forwards;
}

@keyframes blockchainSlideRightIn {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0px);
    opacity: 1;
  }
}

@-webkit-keyframes blockchainSlideRightIn {
  from {
    -webkit-transform: translateX(100px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes blockchainSlideLeftOut {
  from {
    transform: translateX(0px);
    opacity: 1;
  }
  to {
    transform: translateX(-400px);
    opacity: 0;
  }
}

@-webkit-keyframes blockchainSlideLeftOut {
  from {
    -webkit-transform: translateX(0px);
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(-400px);
    opacity: 0;
  }
}

@keyframes blockchainSlideRightOut {
  from {
    transform: translateX(0px);
    opacity: 1;
  }
  to {
    transform: translateX(100px);
    opacity: 0;
  }
}

@-webkit-keyframes blockchainSlideRightOut {
  from {
    -webkit-transform: translateX(0px);
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(100px);
    opacity: 0;
  }
}

@keyframes blockchainSlideLeftIn {
  from {
    transform: translateX(-400px);
    opacity: 0;
  }
  to {
    transform: translateX(0px);
    opacity: 1;
  }
}

@-webkit-keyframes blockchainSlideLeftIn {
  from {
    -webkit-transform: translateX(-400px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0px);
    opacity: 1;
  }
}

/* NFT IMAGE ANIMATION */
.hero-nft-image {
  position: absolute;
  transform: translateX(300px);
  -webkit-transform: translateX(300px);
  width: 530px;
}

.hero-nft-image.slide-out-left {
  animation: nftSlideLeftOut 1s forwards;
  -webkit-animation: nftSlideLeftOut 1s forwards;
}

.hero-nft-image.slide-in-right {
  animation: nftSlideRightIn 0.5s forwards;
  -webkit-animation: nftSlideRightIn 0.5s forwards;
}

.hero-nft-image.slide-out-right {
  animation: nftSlideRightOut 1s forwards;
  -webkit-animation: nftSlideRightOut 1s forwards;
}

.hero-nft-image.slide-in-left {
  animation: nftSlideLeftIn 1s forwards;
  -webkit-animation: nftSlideLeftIn 1s forwards;
}

@keyframes nftSlideRightIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(300px);
    opacity: 1;
  }
}

@-webkit-keyframes nftSlideRightIn {
  from {
    -webkit-transform: translateX(400px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(300px);
    opacity: 1;
  }
}

@keyframes nftSlideLeftOut {
  from {
    transform: translateX(300px);
    opacity: 1;
  }
  to {
    transform: translateX(-100px);
    opacity: 0;
  }
}

@-webkit-keyframes nftSlideLeftOut {
  from {
    -webkit-transform: translateX(300px);
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(-100px);
    opacity: 0;
  }
}

@keyframes nftSlideRightOut {
  from {
    transform: translateX(300px);
    opacity: 1;
  }
  to {
    transform: translateX(400px);
    opacity: 0;
  }
}

@-webkit-keyframes nftSlideRightOut {
  from {
    -webkit-transform: translateX(300px);
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(400px);
    opacity: 0;
  }
}

@keyframes nftSlideLeftIn {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(300px);
    opacity: 1;
  }
}

@-webkit-keyframes nftSlideLeftIn {
  from {
    -webkit-transform: translateX(-100px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(300px);
    opacity: 1;
  }
}
/* .hero-carousel {
  width: 100%;
  height: 80%;
  overflow-x: clip;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
} */

.hero-prev-button,
.hero-next-button {
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  background-color: transparent;
  font-size: 25px;
}

/* .hero-image {
  max-height: 690px;
  letter-spacing: 10px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
} */

/* .hero-image-container {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
} */
/* .hero-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
} */

/* .hero-heading {
  font-size: 180px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 10px;
} */
/* 
.hero-paragraph {
  position: absolute;
  left: 19px;
  top: 203px;
  font-size: 20px;
  letter-spacing: 6px;
  line-height: 31px;
} */

.hero-button {
  background-color: rgb(60, 127, 252); /* Green background */
  border: none; /* No border */
  color: white; /* White text */
  padding: 13px 34px; /* Some padding */
  text-align: center; /* Centered text */
  text-decoration: none; /* No underline */
  display: inline-block;
  font-size: 16px;
  margin: 2px 2px;
  cursor: pointer; /* Mouse pointer on hover */
  transition-duration: 0.4s; /* Transition effect */
  margin-top: 15px;
}

.hero-button-red {
  background-color: rgb(252, 60, 60); /* Green background */
  border: none; /* No border */
  color: white; /* White text */
  padding: 13px 34px; /* Some padding */
  text-align: center; /* Centered text */
  text-decoration: none; /* No underline */
  display: inline-block;
  font-size: 16px;
  margin: 2px 2px;
  cursor: pointer; /* Mouse pointer on hover */
  transition-duration: 0.4s; /* Transition effect */
  margin-top: 15px;
}

.hero-button:hover {
  background-color: rgb(0, 89, 255);
}

/* .hero-prev-button {
  position: absolute;
  left: -15px;
} */
/* .hero-next-button {
  position: absolute;
  right: -15px;
} */

/* @keyframes slideUp {
  from {
    transform: translate(0px, 0px);
    opacity: 1;
  }
  to {
    transform: translate(0px, -100px);
    opacity: 0;
  }
}
@keyframes slideDown {
  from {
    transform: translate(0px, 100px);
    opacity: 0;
  }
  to {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}

@keyframes slideOutLeft {
  from {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  to {
    transform: translate(-500px, -50%);
    opacity: 0;
  }
}

@keyframes slideInRight {
  from {
    transform: translate(50px, -50%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  to {
    transform: translate(100px, -50%);
    opacity: 0;
  }
}

@keyframes slideInLeft {
  from {
    transform: translate(-500px, -50%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
} */

/* .zoom-in {
  animation: textZoomIn 1s forwards;
}

.zoom-out {
  animation: textZoomOut 1s forwards;
} */

/* hero section end  */

/* about section start */

.about-container {
  width: 100%;
  position: relative;
  overflow-x: clip;
  max-height: 850px;
  height: auto;

  /* background-image: url("assets/aboutBackground.png");
  object-fit: cover; */
}

.about-background-image {
  position: absolute;
  height: 100%;
  object-fit: cover;
  width: 100%;
  z-index: -1;
  /* top: -137px; */
  transform: translateY(-238px);
  opacity: 0.4;
}

/* .about-sphere-image-one {
  position: absolute;
  width: 40px;
  height: auto;
  left: 20em;
  top: 21em;
  animation: sphereAnimation 2s ease-in-out infinite alternate;
}

.about-sphere-image-two {
  position: absolute;
  width: 93px;
  height: auto;
  left: 3em;
  top: 38em;
  animation: sphereAnimation 2s ease-in-out infinite alternate;
  animation-delay: 3s;
}

.about-sphere-image-three {
  position: absolute;
  width: 90px;
  right: 20em;
  top: -3em;
  height: auto;
  animation: sphereAnimation 2s ease-in-out infinite alternate;
  animation-delay: 4s;
}
.about-sphere-image-four {
  position: absolute;
  width: 191px;
  right: -6em;
  top: 23em;
  height: auto;
  animation: sphereAnimationRotate 5s ease-in-out infinite alternate;
  animation-delay: 2s;
} */
.about-sphere-image {
  position: absolute;
  transition: transform 0.5s, opacity 0.5s;
  opacity: 1;
  z-index: 999;
}

.about-sphere-image-one {
  width: 40px;
  height: auto;
  transform: translateX(-100em);
}

.about-sphere-image-two {
  width: 93px;
  height: auto;
  transform: translate(-80em, -20em);
}

.about-sphere-image-three {
  width: 114px;
  height: auto;
  right: 0;
  transform: translateX(100%);
}

.about-sphere-image-four {
  width: 230px;
  height: auto;
  right: 0;
  transform: translateX(100%);
}

.about-sphere-image-one.visible {
  transform: translate(-38em, 0em);
  opacity: 1;
}
.about-sphere-image-two.visible {
  transform: translate(-48em, 18em);
  opacity: 1;
}
.about-sphere-image-three.visible {
  transform: translate(-28em, -35em);
  opacity: 1;
}
.about-sphere-image-four.visible {
  transform: translate(5em, 9em);
  opacity: 1;
}

@keyframes sphereAnimationRotateOne {
  0% {
    transform: translate(-38em, 0em);
  }
  100% {
    transform: translate(-42em, -3em);
  }
}

@keyframes sphereAnimationRotateTwo {
  0% {
    transform: translate(-48em, 18em);
  }
  100% {
    transform: translate(-52em, 15em);
  }
}
@keyframes sphereAnimationRotateThree {
  0% {
    transform: translate(-28em, -35em);
  }
  100% {
    transform: translate(-24em, -25em);
  }
}
@keyframes sphereAnimationRotateFour {
  0% {
    transform: translate(5em, 9em);
  }
  100% {
    transform: translate(1em, 9em);
  }
}

.about-sphere-image-one.visible.animated {
  animation: sphereAnimationRotateOne 5s ease-in-out infinite alternate;
  animation-delay: 2s;
}
.about-sphere-image-two.visible.animated {
  animation: sphereAnimationRotateTwo 5s ease-in-out infinite alternate;
  animation-delay: 5s;
}
.about-sphere-image-three.visible.animated {
  animation: sphereAnimationRotateThree 5s ease-in-out infinite alternate;
  animation-delay: 2s;
}
.about-sphere-image-four.visible.animated {
  animation: sphereAnimationRotateFour 5s ease-in-out infinite alternate;
  animation-delay: 2s;
}

.content-container {
  margin: auto;
  max-width: 950px;
  width: 950px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-content-one.moveInLeft {
  transform: translate(0px, 0px);
  transition: transform 0.3s ease-in-out 0s;
  opacity: 1;
}

.about-content-one.moveOutLeft {
  transform: translate(-300px, 0px);
  transition: transform 0.3s ease-in-out;
  animation: fadeOut 0.3s forwards;
}

.about-content-two.moveInRight {
  transform: translate(0px, 0px);
  transition: transform 0.3s ease-in-out 0s;
  opacity: 1;
}

.about-content-two.moveOutRight {
  transform: translate(300px, 0px);
  transition: transform 0.3s ease-in-out;
  animation: fadeOut 0.3s forwards;
}

.moveInRight {
  transform: translate(0px, 0px);
  transition: transform 0.3s ease-in-out 0s;
  opacity: 1;
}

.moveOutRight {
  transform: translate(300px, 0px);
  transition: transform 0.3s ease-in-out;
  animation: fadeOut 0.3s forwards;
}

.moveInLeft {
  transform: translate(0px, 0px);
  transition: transform 0.3s ease-in-out 0s;
  opacity: 1;
}

.moveOutLeft {
  transform: translate(-300px, 0px);
  transition: transform 0.3s ease-in-out;
  animation: fadeOut 0.3s forwards;
}

.fadeIn {
  animation: fadeIn 1s forwards;
}

.fadeOut {
  animation: fadeOut 1s forwards;
}

.slideInTop {
  animation: slidToBottom 1s forwards;
}

.slideOutTop {
  animation: slidToTop 1s forwards;
}

@keyframes slidToBottom {
  from {
    transform: translate(-50%, -200%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -80%);
    opacity: 1;
  }
}

@keyframes slidToTop {
  from {
    transform: translate(-50%, -80%);
    opacity: 1;
  }
  to {
    transform: translate(-50%, -200%);
    opacity: 0;
  }
}

.about-container {
  width: 100%;
  position: relative;
  padding: 60px 0;
  margin: auto;
}

.about-heading {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-heading h1 {
  font-size: 90px;
  font-weight: 700;
}

.about-heading p {
  font-size: 30px;
  font-weight: 500;
}
.about-content-one {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 120px;
  column-gap: 10px;
  margin: 80px 0;
}
.about-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 318px;
  width: 318px;
}

.about-card img {
  width: auto;
  object-fit: contain;
  height: 80px;
  max-height: 80px;
}

.about-card p {
  font-size: 27px;
  font-weight: 600;
  max-width: 300px;
  text-align: center;
}

.boder-seperator {
  height: 100%;
  width: 1px;
  background: rgb(92, 92, 92);
}

.about-content-two {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-content-two p {
  font-size: 20px;
  text-align: center;
  max-width: 850px;
  line-height: 32px;
  font-weight: 400;
  margin: auto;
}

.about-button {
  background-color: rgb(60, 127, 252); /* Green background */
  border: none; /* No border */
  color: white; /* White text */
  padding: 18px 49px; /* Some padding */
  text-align: center; /* Centered text */
  text-decoration: none; /* No underline */
  display: inline-block;
  font-size: 16px;
  margin: 2px 2px;
  cursor: pointer; /* Mouse pointer on hover */
  transition-duration: 0.4s; /* Transition effect */
  margin-top: 25px;
  text-transform: uppercase;
}

.about-button:hover {
  background-color: rgb(0, 89, 255);
}

/* about section end */

/* goal section start */
.goal-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 40px 0;
  margin-bottom: 60px;
}

.goal-sub-container {
  width: 75%;
  height: 500px;
  background: linear-gradient(to top, #191a1a, #265162);
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: white;
  padding: 20px;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px,
    rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

.goal-sub-container {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.goal-sub-container.visible {
  opacity: 1;
}

.goal-sub-container div:first-child {
  width: 20%;
  padding: 0 30px;
  align-self: first baseline;
}

.goal-sub-container div:nth-child(2) {
  flex: 1;
  padding: 0 22px;
  height: 340px;
  padding-right: 0;
}

.goal-sub-container div:nth-child(3) {
  width: 40%;
  padding: 0px 32px;
  height: 340px;
  padding-right: 13px;
}

.goal-sub-container div:nth-child(2) h1,
.goal-sub-container div:nth-child(3) h1 {
  font-size: 40px;
  font-weight: 600;
}

.goal-sub-container div:nth-child(2) p,
.goal-sub-container div:nth-child(3) p {
  font-size: 18px;
  font-weight: 300;
  line-height: 22px;
  padding: 12px 0px;
}

.rocket-image-container {
  position: relative;
  width: 100%;
}

.rocket-image-container img {
  width: 380px;
  height: auto;
  position: absolute;
  left: -138px;
  top: -99px;
}

.rocket-image-container img,
.vision-section img {
  position: absolute;
  transition: transform 1s ease-out;
}

.rocket-image-container img {
  transform: translate(-366px, 400px);
}

.rocket-image-container.visible img {
  transform: translate(0px, 0px);
  opacity: 1;
}

.vision-section img {
  transform: translateY(100%);
}

.rocket-image-container.animate img {
  /* animation: liveAnimation 2s ease-in-out infinite alternate; */
  animation-delay: 2s;
}

@keyframes liveAnimation {
  from {
    transform: translate(0px, 0px);
  }
  to {
    transform: translate(2px, 6px);
  }
}

.vision-section {
  position: relative;
}

.vision-section img {
  width: 325px;
  height: auto;
  position: absolute;
  bottom: -204px;
  right: -122px;
}

.mission-section {
  position: relative;
}

.vision-section .stars {
  position: absolute;
  background: #fff2d2c9;
  border-radius: 100%;
  box-shadow: rgb(255, 255, 255) 0px 0px 15px, rgb(250, 250, 250) 0px 0px 15px,
    rgb(255, 255, 255) 0px 0px 15px, rgb(255, 255, 255) 0px 0px 15px,
    rgb(255, 255, 255) 0px 0px 15px;
}

.star-one {
  width: 10px;
  height: 10px;
  left: -495px;
  bottom: -52px;
}

.star-two {
  width: 7px;
  height: 7px;
  left: 40px;
  bottom: -72px;
}

.star-three {
  width: 5px;
  height: 5px;
  left: 156px;
  bottom: -48px;
}
.star-four {
  width: 3px;
  height: 3px;
  left: 329px;
  bottom: 63px;
}

.carousel-heading {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100px);
  text-align: center;
  display: none;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
  animation-delay: 0.4s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* goal section end */

/* projects sections start here */

.projects-section {
  max-width: 1600px;
  margin: 50px 0;
  overflow-x: clip;
  height: 790px;
  max-height: 790px;
}

.projects-heading {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.projects-heading h1 {
  font-size: 85px;
  font-weight: 700;
}

.projects-heading p {
  font-size: 30px;
  text-align: center;
  font-weight: 600;
}

.projects-heading p:nth-child(3) {
  font-size: 20px;
  font-weight: 600;
  color: #797878;
  margin: 10px 0;
}
.carousel {
  position: relative;
  width: 100%;
  padding: 90px 0;
  height: auto;
}

.carousel-container {
  display: flex;
  transition: transform 0.5s ease;
  gap: 95px; /* Adjusted gap value */
  padding: 0px;
  box-sizing: border-box;
}

.carousel-card {
  flex: 0 0 calc(33.33% - 20px); /* Adjusted for equal spacing */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  height: 250px;
  cursor: pointer;
  position: relative;
  max-width: 500px;
}

.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.carousel-heading h3 {
  font-weight: 800;
  font-size: 25px;
  text-transform: uppercase;
  width: 300px;
}

.carousel-heading p {
  font-weight: 500;
  font-size: 12px;
  text-transform: capitalize;
  color: #7e7e7e;
}

.carousel-heading a {
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  color: #0026ff;
  text-decoration: underline;
  margin: 8px 0;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0);
  color: white;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1;
  height: 60px;
  width: 60px;
  font-size: 24px;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

@media (max-width: 768px) {
  .carousel-card {
    flex: 0 0 calc(100% - 13px); /* Adjusted for equal spacing */
  }

  .carousel-container {
    gap: 45px;
  }
}

@media (max-width: 480px) {
}

/* mobile carousel */

/* mobile carousel */

.mobile-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: none; /* Ensure proper positioning for absolute slides */
  margin-top: 30px;
}

.mobile-carousel-slides {
  display: flex;

  transition: transform 1.4s ease-in-out;
}

.mobile-carousel-slide {
  width: 100%; /* Each slide takes full width */
  flex-shrink: 0; /* Prevent shrinking of slides */
}

.mobile-carousel-slide img {
  width: 100%;
  display: block;
  /* max-height: 300px; */
  object-fit: cover;
  min-height: 300px;
  max-height: 300px;
}

.mobile-carousel-prev {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-150%);
  z-index: 20;
  background: #ffffff56;
  padding: 5px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.mobile-carousel-next {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-150%);
  z-index: 20;
  background: #ffffff56;
  padding: 5px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .mobile-carousel-slide img {
    min-height: 300px; /* Adjust height for smaller screens */
    max-height: 300px;
  }
}

@media only screen and (max-width: 576px) {
  .mobile-carousel-slide img {
    min-height: 250px; /* Further adjust height for smaller screens */
    max-height: 250px;
  }
}

/* mobile carousel end */
/* project section ends  */

/* metabt section starts */

.metabt-section {
  position: relative;
  margin: 50px 0;
  padding: 50px 0;
  height: 100vh;
  margin: 153px 0;
  overflow-x: clip;
}

.metabt-heading {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.metabt-heading h1 {
  font-size: 80px;
  font-weight: 700;
}

.metabt-heading p {
  font-size: 35px;
  font-weight: 400;
  max-width: 800px;
  text-align: center;
}

#particles-js {
  width: 100%;
  height: 100%;
  background-color: #ffff;
  background-image: url("");
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: absolute;
}

.metabt-container {
  display: flex;
  justify-content: center;
  margin: 18px 0;
}

.metabt-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 25px;
  z-index: 10;
}

.metabt-content img {
  width: 400px;
}

.metabt-text-container {
  width: 400px;
}

.metabt-text-container p {
  font-size: 21px;
  font-weight: 400;
}

.metabt-text-container p strong {
  font-size: 21px;
  font-weight: 400;
}

.metabt-buttom {
  background-color: rgb(60, 127, 252); /* Green background */
  border: none; /* No border */
  color: white; /* White text */
  padding: 18px 37px; /* Some padding */
  text-align: center; /* Centered text */
  text-decoration: none; /* No underline */
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer; /* Mouse pointer on hover */
  transition-duration: 0.4s; /* Transition effect */
  margin-top: 15px;
}

.metabt-buttom:hover {
  background-color: rgb(0, 89, 255); /* Green background on hover */
}

.particles-js-canvas-el {
  position: absolute;
  top: 0;
  z-index: 1;
  color: #b1b1b1;
}

/* metabt section end  */

/* Founder section start */

.founder-section {
  width: 100%;
  height: 500px;
  min-height: 500px;
  overflow-x: clip;
}

.founder-carousel {
  width: 100%;
}

.founder-slide {
  width: 100%;
  position: relative;
}

.founder-heading {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -80%);
}

.founder-heading {
  font-size: 195px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 20px;
  color: #c7c7c730;
  user-select: none;
}

.founder-image {
  width: auto;
  height: 500px;
}

.founder-prev-button {
  position: absolute;
  left: 10px;
}
.founder-next-button {
  position: absolute;
  right: 10px;
}

.founder-prev-button,
.founder-next-button {
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  background-color: transparent;
  font-size: 25px;
}

.founder-container {
  position: absolute;
  display: flex;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.founder-content {
  width: 400px;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.founder-content h1 {
  font-size: 30px;
  font-weight: 700;
}

.founder-container p {
  font-size: 16px;
  font-weight: 500;
}
.founder-container p:nth-child(3) {
  font-size: 15px;
  color: #0432ff;
  cursor: pointer;
  margin-top: 40px;
}

/* Founder section end */

/* Contact section start */

.contact-section {
  /* height: 106vh; */
  /* min-height: 616px; */
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0 60px;
  background: url(./assets/contactBackground.png) no-repeat;
  background-size: cover;
  height: 1213px;
  position: relative;
  overflow-x: clip;
}

.contact-section-gradient {
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(to Bottom, #5556589d, #01020323);
  opacity: 1;
}

.contact-content {
  max-width: 430px;
}

.contact-right-container {
  flex: 1;
}
.contact-left-container {
  flex: 1;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 20px;
  color: white;
}

.contact-left-container h1 {
  font-size: 85px;
  font-weight: 700;
  line-height: 74px;
}

.contact-left-container p {
  font-size: 16px;
  font-weight: 300;
}

.contact-form {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  row-gap: 20px;
  width: 414px;
  padding: 58px 22px;
  background: #060e27c7;
  border-radius: 20px;
}

form input,
form textarea {
  padding: 20px;
  border-radius: 6px;
  border: none;
  font-size: 16px;
}

form textarea {
  min-height: 120px;
  max-height: 120px;
  height: 120px;
  min-width: 100%;
  resize: none;
}

.form-button {
  font-size: 30px;
  text-align: end;
  border-radius: 8px;
  color: white;
}

.footer-section {
  background: #ebebeb;
}

.footer-container {
  height: 400px;
  display: grid;
  grid-template-columns: 40% 20% 40%;
  width: 100%;
}

.footer-first-section {
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icons {
  display: flex;
  flex-direction: row;
  column-gap: 10px;
  padding: 20px 0;
}

.social-icons i {
  font-size: 25px;
}
.footer-section-headings {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-section-contents {
  font-size: 14px;
  font-weight: 400;
  margin: 8px 0px;
  letter-spacing: 0.6px;
  line-height: 21px;
}

.footer-second-section {
  display: flex;
  align-items: center;
  justify-content: start;
}

.footer-second-section ul,
.footer-third-section ul {
  list-style: none;
  padding: 0;
}

.footer-second-section li,
.footer-third-section li {
  margin: 11px 0;
  font-size: 12px;
}

.footer-second-section li a,
.footer-third-section li a {
  text-decoration: none;

  font-weight: bold;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.4px;
}

.footer-third-section {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.quicklink-container {
  max-width: 300px;
  max-height: 400px;
  height: 250px;
}

.btcash-signature {
  width: 120px;
  height: auto;
}

.copyright-div {
  width: 100%;
  text-align: end;
  padding: 20px 20px;
}

.copyright-div p {
  color: #5a5a5a;
  font-size: 10px;
}

.copyright-div span {
  color: #313131;
  font-weight: 600;
  padding: 0 2px;
}

/* **************************************************** */

/* Game Page Start Here */
.game-content-container {
  width: 100%;
  height: 100%;
  background: linear-gradient(to Bottom, #0e0f31, #11123d, #2529a9);
  color: white;
  overflow-x: clip;
}

.project-content-container {
  width: 100%;
  height: 100%;
  background: linear-gradient(to Bottom, #000000, #240200);
  color: white;
  overflow-x: clip;
}

.project-list-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 25px;
  grid-row-gap: 53px;
  padding: 75px 120px;
  height: auto;
  max-height: 100%;
}

.project1 {
  grid-area: 1 / 1 / 2 / 2;
}
.project2 {
  grid-area: 1 / 2 / 2 / 3;
}
.project3 {
  grid-area: 1 / 3 / 2 / 4;
}
.project4 {
  grid-area: 2 / 1 / 3 / 2;
}
.project5 {
  grid-area: 2 / 2 / 3 / 3;
}
.project6 {
  grid-area: 2 / 3 / 3 / 4;
}
.project7 {
  grid-area: 3 / 1 / 4 / 2;
}
.project8 {
  grid-area: 3 / 2 / 4 / 3;
}
.project9 {
  grid-area: 3 / 3 / 4 / 4;
}

.project-list-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 28px;
  position: relative;
  height: 650px;
}

.card-title {
  font-size: 38px;
  font-weight: 600;
  color: white;
}

.project-list-card img {
  width: 369px;
  height: auto;
}

.project-list-text {
  font-size: 18px;
  color: #ffffff62;

  text-align: center;
}
.game-hero-container {
  background: url(./assets/btchashGame.png) no-repeat;
  background-size: cover;
  position: relative;
  /* background-color: #f33f3f; */
  /* 
  mask-image: linear-gradient(#0e0f31, rgba(0, 0, 0, 0));
  -webkit-mask-image: linear-gradient(#2b2e97, rgba(0, 0, 0, 0)); */
}

.game-hero-container::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 185px;
  color: white;
  bottom: -60px;
  background: linear-gradient(to Top, #0e0f31, #11123c, #11123c73, #2b2f9700);
}

.project-hero-container {
  background: url(./assets/projectHeroBanner.png) no-repeat;
  background-size: cover;
  position: relative;
  /* background-color: #f33f3f; */
  /* 
  mask-image: linear-gradient(#0e0f31, rgba(0, 0, 0, 0));
  -webkit-mask-image: linear-gradient(#2b2e97, rgba(0, 0, 0, 0)); */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-heading-container {
  height: 240px;
}

.project-hero-heading {
  font-size: 148px;
  color: white;
  text-transform: uppercase;
  margin-top: 200px;
}
.project-hero-container::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 185px;
  color: white;
  bottom: -60px;
  background: linear-gradient(to Top, #00000000, #000000, #000000, #00000010);
}

.card-container {
  width: 100%;
  padding: 0 120px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
  position: relative;
}

.project-card-section {
  max-height: 500px;
}

.project-card {
  width: 300px;
  height: 300px;
  overflow-x: clip;
}

.project-card h1 {
  font-size: 38px;
  width: 164px;
  font-weight: 600;
}

.project-card p {
  font-size: 18px;
  width: 278px;
}

.project-card-content {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.project-card img {
  width: 64.24px;
  height: auto;
  margin: 10px 0;
}

.game-rgb-underline {
  height: 6px;
  min-width: 108px;
  min-height: 6px;
  width: 108px;
  background: linear-gradient(to right, #5d1aea, #e32196);
}

.project-about-container {
  padding: 30px 120px;
  display: flex;
  flex-direction: row;
  width: 100%;
  max-height: 400px;
  position: relative;
  margin-top: 50px;
}

.project-about-container div:nth-child(1) {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 13px;
}

.game-rgb-underline-big {
  height: 6px;
  min-width: 108px;
  min-height: 6px;
  background: linear-gradient(to right, #5d1aea, #e32196);
  width: 224px;
}

.project-about-container h1 {
  font-size: 38px;
  max-width: 395px;
  font-weight: 600;
}

.project-about-container p {
  font-size: 18px;
  color: #f8f8f862;
  max-width: 92%;
}

.project-about-img {
  flex: 1;
  position: relative;
}

.project-about-img img:nth-child(1) {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: auto;
  z-index: 999;
}

.casino-hero-container {
  background: url(./assets/btcashCasino.png) no-repeat;
  background-size: cover;
}

.casino-hero-container::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 185px;
  color: white;
  bottom: -60px;
  background: linear-gradient(to Top, #1c0c00, #1c0c00fa, #1c0c00a6, #1c0c0000);
}

.casino-content-container {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1c0c00, #653500);
  color: white;
  overflow-x: clip;
}

.casino-rgb-underline {
  height: 6px;
  min-width: 108px;
  min-height: 6px;
  width: 108px;
  background: linear-gradient(to right, #ffab08, #fa3124);
}

.casino-rgb-underline-big {
  height: 6px;
  min-width: 108px;
  min-height: 6px;
  background: linear-gradient(to right, #ffab08, #fa3124);
  width: 224px;
}

.metaverse-hero-container {
  background: url(./assets/btcashMetaverse.png) no-repeat;
  background-size: cover;
}

.metaverse-hero-container::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 185px;
  color: white;
  bottom: -60px;
  background: linear-gradient(to Top, #00081c, #00081c, #00081c6b, #00081c00);
}

.metaverse-content-container {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #00081c, #003bad);
  color: white;
  overflow-x: clip;
}

.metaverse-rgb-underline {
  height: 6px;
  min-width: 108px;
  min-height: 6px;
  width: 108px;
  background: linear-gradient(to right, #08c4ff, #0057ff);
}

.metaverse-rgb-underline-big {
  height: 6px;
  min-width: 108px;
  min-height: 6px;
  background: linear-gradient(to right, #08c4ff, #0057ff);
  width: 224px;
}

.nft-hero-container {
  background: url(./assets/btchasNft.png) no-repeat;
  background-size: cover;
  position: relative;
}

.nft-hero-container::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 185px;
  color: white;
  bottom: -60px;
  background: linear-gradient(to Top, #090c13, #090c13, #090c1317, #090c1300);
}

.nft-content-container {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #090c13, #251756);
  color: white;
  overflow-x: clip;
}

.nft-rgb-underline {
  height: 6px;
  min-width: 108px;
  min-height: 6px;
  width: 108px;
  background: linear-gradient(to right, #ec7f00, #01b8e1);
}

.nft-rgb-underline-big {
  height: 6px;
  min-width: 108px;
  min-height: 6px;
  background: linear-gradient(to right, #ec7f00, #01b8e1);
  width: 224px;
}

.blockchain-hero-container {
  background: url(./assets/btcashBlockchain.png) no-repeat;
  background-size: cover;
  position: relative;
}

.blockchain-hero-container::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 185px;
  color: white;
  bottom: -60px;
  background: linear-gradient(to Top, #000000, #000000, #00000069, #00000000);
}

.blockchain-content-container {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #000000, #5d5d5d);
  color: white;
  overflow-x: clip;
}

.blockchain-rgb-underline {
  height: 6px;
  min-width: 108px;
  min-height: 6px;
  width: 108px;
  background: linear-gradient(to right, #e5b05c, #b5b5b5);
}

.blockchain-rgb-underline-big {
  height: 6px;
  min-width: 108px;
  min-height: 6px;
  background: linear-gradient(to right, #e5b05c, #b5b5b5);
  width: 224px;
}

.binary-hero-container {
  background: url(./assets/btchashBinary.png) no-repeat;
  background-size: cover;
}

.binary-hero-container::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 185px;
  color: white;
  bottom: -60px;
  background: linear-gradient(to Top, #050b15, #050b15e8, #050b1524, #050b1500);
}

.binary-content-container {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #050b15, #01304e);
  color: white;
  overflow-x: clip;
}

.binary-rgb-underline {
  height: 6px;
  min-width: 108px;
  min-height: 6px;
  width: 108px;
  background: linear-gradient(to right, #39abd9, #b1fbff);
}

.binary-rgb-underline-big {
  height: 6px;
  min-width: 108px;
  min-height: 6px;
  background: linear-gradient(to right, #39abd9, #b1fbff);
  width: 224px;
}

.exchange-hero-container {
  background: url(./assets/btchashExchange.png) no-repeat;
  background-size: cover;
  position: relative;
}

.exchange-hero-container::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 185px;
  color: white;
  bottom: -60px;
  background: linear-gradient(to Top, #160c09, #160c09, #160c0969, #160c0900);
}

.exchange-content-container {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #160c09, #412211);
  color: white;
  overflow-x: clip;
}

.exchange-rgb-underline {
  height: 6px;
  min-width: 108px;
  min-height: 6px;
  width: 108px;
  background: #ffcf58;
}

.exchange-rgb-underline-big {
  height: 6px;
  min-width: 108px;
  min-height: 6px;
  background: #ffcf58;
  width: 224px;
}

.bidding-hero-container {
  background: url(./assets/btcashBidding.png) no-repeat;
  background-size: cover;
  position: relative;
}

.bidding-hero-container::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 185px;
  color: white;
  bottom: -60px;
  background: linear-gradient(to Top, #080e1a, #080e1a, #080e1ab5, #080e1a00);
}

.bidding-content-container {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #080e1a, #112746);
  color: white;
  overflow-x: clip;
}

.bidding-rgb-underline {
  height: 6px;
  min-width: 108px;
  min-height: 6px;
  width: 108px;
  background: #5b47ff;
}

.bidding-rgb-underline-big {
  height: 6px;
  min-width: 108px;
  min-height: 6px;
  background: #5b47ff;
  width: 224px;
}

.wallet-hero-container {
  background: url(./assets/btcashWallet.png) no-repeat;
  background-size: cover;
  position: relative;
}

.wallet-hero-container::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 185px;
  color: white;
  bottom: -60px;
  background: linear-gradient(to Top, #080e1a, #080e1a, #080e1a30, #080e1a00);
}

.wallet-content-container {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #080e1a, #112746);
  color: white;
  overflow-x: clip;
}

.wallet-rgb-underline {
  height: 6px;
  min-width: 108px;
  min-height: 6px;
  width: 108px;
  background: #ea4ae4;
}

.wallet-rgb-underline-big {
  height: 6px;
  min-width: 108px;
  min-height: 6px;
  background: #ea4ae4;
  width: 224px;
}

.ellipse-gradient-one {
  position: absolute;
  width: 450.71px;
  height: 450.71px;
  right: -280px;
  top: -222px;
  transform: rotate(155deg);
}

.ellipse-gradient-two {
  position: absolute;
  width: 250.71px;
  height: 250.71px;
  left: -150px;
  bottom: -189px;
}

.game-about-image-background {
  position: absolute;
  z-index: 99;
  top: -232px;
  right: 24px;
  width: 253px;
  height: auto;
}

.casino-about-image-background {
  position: absolute;
  z-index: 99;
  top: -175px;
  left: 39px;
  width: 253px;
  height: auto;
}

.metaverse-about-image-background {
  position: absolute;
  z-index: 99;
  top: -166px;
  left: 81px;
  width: 253px;
  height: auto;
}

.nft-about-image-background {
  position: absolute;
  z-index: 99;
  top: -248px;
  left: 56px;
  width: 253px;
  height: auto;
}

.block-about-image-background {
  position: absolute;
  z-index: 99;
  top: -33px;
  right: 48px;
  width: 273px;
  height: auto;
}

.binary-about-image-background {
  position: absolute;
  z-index: 99;
  top: -270px;
  left: 14px;
  width: 273px;
  height: auto;
}

.exchange-about-image-background {
  position: absolute;
  z-index: 99;
  top: -178px;
  right: 155px;
  width: 264px;
  height: auto;
}

.bidding-about-image-background {
  position: absolute;
  z-index: 99;
  bottom: -186px;
  left: 46px;
  width: 322px;
  height: auto;
}

.wallet-about-image-background {
  position: absolute;
  z-index: 99;
  top: -243px;
  left: -13px;
  width: 365px;
  height: auto;
}

/* Contact section end */
/* For Mobile Devices */
@media (max-width: 575.98px) {
  .large-screen-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .header {
    padding: 10px 20px;
  }
  .home-header {
    padding: 10px 20px;
  }

  .logo {
    width: 150px;
  }

  .nav {
    display: none;
  }

  .nav a {
    font-size: 12px;
  }

  .main-container {
    max-width: 100%;
  }

  /* .hero-container {
    padding: 0 0;
  } */

  /* .hero-heading {
    font-size: 54px;
    letter-spacing: 6px;
  } */

  /* .hero-paragraph p {
    font-size: 9.5px;
    font-weight: 600;
  } */

  /* .hero-image {
    max-height: 385px;

    left: 50%;
    top: 5%;
  } */

  .hero-prev-button,
  .hero-next-button {
    font-size: 16px;
    z-index: 9999;
  }

  .hero-container {
    padding: 0 0px;
  }
  .hero-heading-container {
    justify-content: center;
  }

  /* .hero-paragraph {
    top: 59px;
    left: 6px;
    letter-spacing: 3px;
    line-height: 20px;
  } */

  .hero-heading-container {
    transform: translate(-50%, -365%);
    height: auto;
  }

  .hero-girl {
    position: absolute;
    right: 0;
    width: 302px;
  }

  .hero-heading-container {
    padding: 0;
  }

  .hero-heading {
    font-size: 38px;
    text-transform: uppercase;
    font-weight: 700;
  }

  .hero-button {
    padding: 13px 12px;
    font-size: 11px;
    margin-top: 7px;
  }

  .sub-heading-container {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 46px;
    /* background-color: #0026ff60; */
    display: flex;
    align-items: center;
    justify-content: start;
    transform: translateX(0px);
  }

  .image-container {
    overflow-x: visible;
  }
  .sub-heading-container p {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 18px;
  }

  .metaverse-sub-heading {
    width: auto;
  }

  .exchange-sub-heading {
    width: auto;
  }

  .bidding-sub-heading {
    width: auto;
  }

  .blockchain-sub-heading {
    width: auto;
  }

  .nft-sub-heading {
    width: auto;
  }

  .nft-heading.slide-up {
    animation: nftSlideUpOut 0.9s forwards;
  }

  .nft-heading.slide-down {
    animation: nftSlideDownIn 0.9s forwards;
  }
  @keyframes nftSlideUpOut {
    from {
      transform: translate(-2px, 0px);
    }
    to {
      transform: translate(-0px, -250px);
    }
  }

  @keyframes nftSlideDownIn {
    from {
      transform: translate(-0px, 250px);
    }
    to {
      transform: translate(-2px, 0px);
    }
  }

  /* MOBILE Meta IMAGE ANIMATION */

  .hero-meta-image {
    position: absolute;
    transform: translateX(0px);
    width: 302px;
  }

  .hero-meta-image.slide-out-left {
    animation: metaSlideLeftOut 1s forwards;
  }

  .hero-meta-image.slide-in-right {
    animation: metaSlideRightIn 0.5s forwards;
  }
  .hero-meta-image.slide-out-right {
    animation: metaSlideRightOut 1s forwards;
  }

  .hero-meta-image.slide-in-left {
    animation: metaSlideLeftIn 1s forwards;
  }

  @keyframes metaSlideLeftIn {
    from {
      transform: translateX(-400px);
      opacity: 0;
    }
    to {
      transform: translateX(0px);
      opacity: 1;
    }
  }

  @keyframes metaSlideRightOut {
    from {
      transform: translateX(0px);
      opacity: 1;
    }
    to {
      transform: translateX(400px);
      opacity: 0;
    }
  }

  @keyframes metaSlideRightIn {
    from {
      transform: translateX(400px);
      opacity: 0;
    }
    to {
      transform: translateX(0px);
      opacity: 1;
    }
  }

  @keyframes metaSlideLeftOut {
    from {
      transform: translateX(0px);
      opacity: 1;
    }
    to {
      transform: translateX(-250px);
      opacity: 0;
    }
  }

  /* MOBILE Exchange IMAGE ANIMATION */

  .hero-exchange-image {
    position: absolute;
    transform: translateX(0px);
    width: 302px;
  }

  .hero-exchange-image.slide-out-left {
    animation: exchangeSlideLeftOut 1s forwards;
  }

  .hero-exchange-image.slide-in-right {
    animation: exchangeSlideRightIn 0.5s forwards;
  }

  .hero-exchange-image.slide-out-right {
    animation: exchangeSlideRightOut 1s forwards;
  }

  .hero-exchange-image.slide-in-left {
    animation: exchangeSlideLeftIn 1s forwards;
  }

  @keyframes exchangeSlideLeftIn {
    from {
      transform: translateX(-250px);
      opacity: 0;
    }
    to {
      transform: translateX(0px);
      opacity: 1;
    }
  }

  @keyframes exchangeSlideRightOut {
    from {
      transform: translateX(0px);
      opacity: 1;
    }
    to {
      transform: translateX(250px);
      opacity: 0;
    }
  }

  @keyframes exchangeSlideRightIn {
    from {
      transform: translateX(250px);
      opacity: 0;
    }
    to {
      transform: translateX(0px);
      opacity: 1;
    }
  }

  @keyframes exchangeSlideLeftOut {
    from {
      transform: translateX(0px);
      opacity: 1;
    }
    to {
      transform: translateX(-250px);
      opacity: 0;
    }
  }

  /* MOBILE Bidding IMAGE ANIMATION */

  .hero-bidding-image {
    position: absolute;
    transform: translateX(0px);
    width: 238px;
    bottom: auto;
  }

  .hero-bidding-image.slide-out-left {
    animation: biddingSlideLeftOut 1s forwards;
  }

  .hero-bidding-image.slide-in-right {
    animation: biddingSlideRightIn 0.5s forwards;
  }

  .hero-bidding-image.slide-out-right {
    animation: biddingSlideRightOut 1s forwards;
  }

  .hero-bidding-image.slide-in-left {
    animation: biddingSlideLeftIn 1s forwards;
  }

  @keyframes biddingSlideLeftIn {
    from {
      transform: translateX(-250px);
      opacity: 0;
    }
    to {
      transform: translateX(0px);
      opacity: 1;
    }
  }

  @keyframes biddingSlideRightOut {
    from {
      transform: translateX(0px);
      opacity: 1;
    }
    to {
      transform: translateX(250px);
      opacity: 0;
    }
  }

  @keyframes biddingSlideRightIn {
    from {
      transform: translateX(250px);
      opacity: 0;
    }
    to {
      transform: translateX(0px);
      opacity: 1;
    }
  }

  @keyframes biddingSlideLeftOut {
    from {
      transform: translateX(0px);
      opacity: 1;
    }
    to {
      transform: translateX(-250px);
      opacity: 0;
    }
  }

  /* MOBILE BLockChain IMAGE ANIMATION */
  .hero-blockchain-image {
    position: absolute;
    transform: translateX(0px);
    width: 337px;
  }
  .hero-blockchain-image.slide-out-left {
    animation: blockchainSlideLeftOut 1s forwards;
  }

  .hero-blockchain-image.slide-in-right {
    animation: blockchainSlideRightIn 0.5s forwards;
  }

  .hero-blockchain-image.slide-out-right {
    animation: blockchainSlideRightOut 1s forwards;
  }

  .hero-blockchain-image.slide-in-left {
    animation: blockchainSlideLeftIn 1s forwards;
  }

  @keyframes blockchainSlideRightIn {
    from {
      transform: translateX(100px);
      opacity: 0;
    }
    to {
      transform: translateX(0px);
      opacity: 1;
    }
  }

  @keyframes blockchainSlideLeftOut {
    from {
      transform: translateX(0px);
      opacity: 1;
    }
    to {
      transform: translateX(-400px);
      opacity: 0;
    }
  }

  @keyframes blockchainSlideRightOut {
    from {
      transform: translateX(0px);
      opacity: 1;
    }
    to {
      transform: translateX(100px);
      opacity: 0;
    }
  }

  @keyframes blockchainSlideLeftIn {
    from {
      transform: translateX(-400px);
      opacity: 0;
    }
    to {
      transform: translateX(0px);
      opacity: 1;
    }
  }

  /*MOBILE NFT IMAGE ANIMATION */
  .hero-nft-image {
    position: absolute;
    transform: translateX(0px);
    width: 244px;
  }

  .hero-nft-image.slide-out-left {
    animation: nftSlideLeftOut 1s forwards;
  }

  .hero-nft-image.slide-in-right {
    animation: nftSlideRightIn 0.5s forwards;
  }

  .hero-nft-image.slide-out-right {
    animation: nftSlideRightOut 1s forwards;
  }

  .hero-nft-image.slide-in-left {
    animation: nftSlideLeftIn 1s forwards;
  }

  @keyframes nftSlideRightIn {
    from {
      transform: translateX(250px);
      opacity: 0;
    }
    to {
      transform: translateX(0px);
      opacity: 1;
    }
  }

  @keyframes nftSlideLeftOut {
    from {
      transform: translateX(0px);
      opacity: 1;
    }
    to {
      transform: translateX(-100px);
      opacity: 0;
    }
  }

  @keyframes nftSlideRightOut {
    from {
      transform: translateX(0px);
      opacity: 1;
    }
    to {
      transform: translateX(250px);
      opacity: 0;
    }
  }

  @keyframes nftSlideLeftIn {
    from {
      transform: translateX(-100px);
      opacity: 0;
    }
    to {
      transform: translateX(0px);
      opacity: 1;
    }
  }

  .hero-container {
    height: 650px;
  }
  /* about container */

  .about-container {
    max-width: 100%;
    padding: 0px 0px;
    margin-top: 47px;
    height: 740px;
  }

  .about-heading h1 {
    font-size: 30px;
    font-weight: 700;
  }

  .about-heading p {
    font-size: 16px;
    font-weight: 500;
  }

  .about-card p {
    font-size: 16px;
  }

  .about-content-one {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
    height: auto;
  }

  .content-container {
    max-width: 450px;
    width: 100%;
    margin: 0;
  }
  .about-sphere-image {
    display: none;
  }

  .about-content-two p {
    max-width: 350px;
    line-height: 21px;
    font-size: 14px;
    text-align: justify;
    margin-top: 20px;
    padding: 0px 10px;
  }

  .about-button {
    font-size: 14px;
  }

  .boder-seperator {
    display: none;
  }

  .projects-section {
    height: 550px;
    max-height: 630px;
    margin: 10px 0;
  }

  .projects-heading p:nth-child(3) {
    font-size: 13px;
    margin: 0;
  }

  .projects-heading h1 {
    font-size: 30px;
  }

  .projects-heading p {
    font-size: 16px;
    padding: 10px 10px;
  }

  .mobile-carousel-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .mobile-carousel-heading {
    text-align: center;
    padding: 10px 0;
  }
  .mobile-carousel-heading h3 {
    font-size: 25px;
    font-weight: 700;
  }

  .mobile-carousel-heading p {
    font-size: 16px;
    font-weight: 500;
    color: #4b4b4b;
  }

  .mobile-carousel-heading a {
    font-size: 15px;
    font-weight: 500;
    color: #0400ff;
  }

  .carousel-heading h3 {
    font-size: 22px;
  }

  .carousel-heading a {
    font-size: 9px;
    margin: 4px 0;
  }
  .carousel {
    padding: 40px 0;
    margin-top: 20px;
  }

  /* Animation */
  .slide {
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .slide.active {
    opacity: 1;
  }

  .rocket-image-container img {
    width: 203px;
  }

  .goal-container {
    overflow-x: hidden;
    overflow-y: hidden;
    height: fit-content;
    padding: 64px 10px;
  }

  .goal-container {
    margin-bottom: 40px;
  }

  .goal-sub-container {
    flex-direction: column;
    row-gap: 20px;
    width: 80%;
  }
  .goal-sub-container div:nth-child(2) p,
  .goal-sub-container div:nth-child(3) p {
    font-size: 11px;
    padding: 5px 0px;
  }

  .goal-sub-container div:nth-child(2) {
    width: 100%;
    padding: 0 0px;
    height: 50%;
  }

  .goal-sub-container div:nth-child(3) {
    width: 100%;
    padding: 0 0px;
    height: 50%;
  }

  .goal-sub-container {
    height: auto;
    padding: 36px 20px;
  }

  .vision-section img {
    width: 269px;
    bottom: -140px;
    right: -200px;
  }

  .metabt-section {
    margin: 0px 0;
    padding: 0px 0;
    position: relative;
    overflow-x: hidden;
    height: 451px;
  }

  .metabt-heading h1 {
    font-size: 30px;
    font-weight: 700;
  }

  .metabt-heading p {
    font-size: 16px;
    max-width: 350px;
    text-align: center;
  }
  .metabt-container {
    /* position: relative; */
    height: auto;
  }

  .metabt-content {
    flex-direction: column;
    justify-content: start;
  }

  .metabt-text-container {
    z-index: 10;
  }

  .metabt-content img {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -47%);
    z-index: 9;
    opacity: 0.4;
    width: 285px;
  }

  .metabt-text-container {
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .metabt-text-container p {
    text-align: justify;
    font-size: 17px;
    font-weight: 400;
  }

  .metabt-buttom {
    width: 174px;
    font-size: 14px;
    padding: 18px 37px;
  }

  .metabt-text-container p strong {
    font-size: 17px;
    font-weight: 400;
  }

  #particles-js {
    height: 100%;
    margin-top: 0;
    padding: 34px 0;
  }

  /* .about-container,
  .projects-section,
  .goal-container,
  .metabt-section {
    display: none;
  } */

  .founder-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .founder-content {
    height: 92px;
    display: flex;
    width: 320px;
    flex-direction: column;
    justify-content: end;
    align-items: center;
  }
  .founder-heading {
    font-size: 29px;
  }

  .founder-container p:nth-child(3) {
    margin-top: 20px;
  }

  .founder-image {
    width: 300px;
    height: auto;
    padding: 20px 0;
  }

  .contact-section {
    flex-direction: column;
    padding: 0 10px;
    min-height: 700px;
    padding-bottom: 54px;
    overflow-x: clip;
    height: 700px;
  }

  .contact-section-gradient {
    height: 700px;
    top: 0;
  }

  .founder-section {
    width: 100%;
    height: 50vh;
    min-height: 482px;
    overflow-x: clip;
  }
  .contact-content {
    max-width: 100%;
  }

  .contact-left-container {
    align-items: center;
    justify-content: center;
  }

  .contact-left-container h1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 42px;
    text-align: center;
  }

  .contact-left-container p {
    text-align: center;
    font-size: 16px;
  }

  .contact-form {
    max-width: 320px;
    padding: 24px 18px;
  }

  .temp-circle {
    display: none;
  }

  .footer-container {
    grid-template-columns: 40% 30% 30%;
  }

  .footer-second-section li,
  .footer-third-section li {
    margin: 3px 0;
    font-size: 12px;
  }

  .footer-section-contents {
    font-size: 12px;
    padding-right: 12px;
    margin: 4px 0px;
    letter-spacing: normal;
  }

  .btcash-signature {
    width: 90px;
    height: auto;
  }

  .copyright-div p {
    font-size: 9px;
  }
  .footer-section {
    padding: 0 10px;
  }

  .footer-section-headings {
    font-size: 15px;
  }

  .footer-container {
    height: 284px;
    display: grid;
    grid-template-columns: 40% 20% 40%;
    width: 100%;
    padding: 28px 0;
  }

  .footer-third-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .quicklink-container {
    flex: 1;
    max-width: fit-content;
    max-height: fit-content;
    height: fit-content;
  }

  /* Project pages max-width 575.98px */

  .project-card {
    width: 100%;
    height: 250px;
    position: relative;
  }
  .pentagon-element-image {
    position: absolute;
    right: 0;
  }

  .game-hero-container {
    background: url(./assets/gameMobile.png) no-repeat;
    background-size: cover;
    height: 35vh;
  }

  .project-hero-container {
    background: url(./assets/projectHeroBannerMobile.png) no-repeat;
    background-size: cover;
    height: 35vh;
  }
  .project-hero-container::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 82px;
    color: white;
    bottom: -60px;
    background: linear-gradient(to Top, #00000000, #000000, #000000, #00000010);
  }

  .project-list-container {
    padding: 40px 20px;
  }

  .project-list-card img {
    height: 444px;
    width: 100%;
  }

  .project-list-card-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(
      to Bottom,
      #00000000,
      #00000000,
      #00000024,
      #000000
    );
    z-index: 88;
  }

  .card-title {
    position: absolute;
    bottom: 98px;
    width: 100%;
    text-align: start;
    text-transform: uppercase;
    padding: 0 17px;
    z-index: 100;
    color: white;
  }

  .project-list-text {
    font-size: 16px;
    position: absolute;
    bottom: 35px;
    text-align: justify;
    padding: 0 17px;
    z-index: 100;
    color: #ffff;
  }

  .project-list-card {
    border: 1px solid #ffff;
    border-radius: 20px;
    height: auto;
  }

  .progress-bar-container {
    height: 40px;
    width: 100%;
    position: absolute;
    bottom: -2px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0px 17px;
    z-index: 100;
  }

  .progress-text {
    width: 10%;
    font-size: 13px;
    color: #ffff;
  }

  .progress-bar {
    width: 90%;
    background: #585858;
    height: 10px;
    border-radius: 10px;
    position: relative;
  }

  .progress {
    position: absolute;
    background: #ff03b9;
    border-radius: 10px;
    height: 100%;
    width: 42%;
    max-width: 100%;
  }

  .casino-hero-container {
    background: url(./assets/casinoMobile.png) no-repeat;
    background-size: cover;
    height: 35vh;
    position: relative;
  }

  .casino-hero-container::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 98px;
    color: white;
    bottom: -60px;
    background: linear-gradient(to Top, #1c0c00, #1c0c00fa, #1c0c00, #1c0c0000);
  }

  .metaverse-hero-container {
    background: url(./assets/metaverseMobile.png) no-repeat;
    background-size: cover;
    height: 35vh;
    position: relative;
  }

  .metaverse-hero-container::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 102px;
    bottom: -60px;
    background: linear-gradient(to Top, #00081c, #00081c, #00081c, #00081c00);
  }

  .nft-hero-container {
    background: url(./assets/nftMobile.png) no-repeat;
    background-size: cover;
    height: 35vh;
  }

  .nft-hero-container::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 92px;
    bottom: -60px;
    background: linear-gradient(to Top, #090c13, #090c13, #090c13, #090c1338);
  }

  .blockchain-hero-container {
    background: url(./assets/blockchainMobile.png) no-repeat;
    background-size: cover;
    height: 35vh;
    position: relative;
  }

  .blockchain-hero-container::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 121px;
    bottom: -60px;
    background: linear-gradient(to Top, #000000, #000000, #000000, #00000000);
  }

  .binary-hero-container {
    background: url(./assets/binaryMobile.png) no-repeat;
    background-size: cover;
    height: 35vh;
    position: relative;
  }

  .binary-hero-container::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 121px;
    bottom: -60px;
    background: linear-gradient(to Top, #050b15, #050b15, #050b15, #050b1500);
  }

  .exchange-hero-container {
    background: url(./assets/exchangeMobile.png) no-repeat;
    background-size: cover;
    height: 35vh;
    position: relative;
  }

  .exchange-hero-container::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 105px;
    bottom: -60px;
    background: linear-gradient(to Top, #160c09, #160c09, #160c09fa, #160c0900);
  }

  .bidding-hero-container {
    background: url(./assets/biddingMobile.png) no-repeat;

    background-size: cover;
    position: relative;
    height: 35vh;
  }

  .bidding-hero-container::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 94px;
    color: white;
    bottom: -60px;
    background: linear-gradient(to Top, #080e1a, #080e1a, #080e1a, #080e1a00);
  }

  .wallet-hero-container {
    background: url(./assets/walletMobile.png) no-repeat;

    background-size: cover;
    position: relative;
    height: 35vh;
  }

  .wallet-hero-container::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 96px;
    color: white;
    bottom: -60px;
    background: linear-gradient(to Top, #080e1a, #080e1a, #080e1a, #080e1a00);
  }

  .project-card-section {
    max-height: 100%;
    padding-top: 50px;
    padding: 28px 20px;
    margin-top: 54px;
  }

  .card-container {
    width: 100%;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 30px;
  }

  .project-about-container {
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: 100%;

    margin-top: 44px;
  }

  .project-card h1 {
    width: 223px;
  }

  .project-about-container h1 {
    font-size: 38px;
    max-width: 392px;
    font-weight: 600;
  }

  .project-about-container p {
    font-size: 18px;
    color: #f8f8f862;
    max-width: 100%;
    text-align: justify;
  }
  .project-about-img img:nth-child(1) {
    position: absolute;
    /* left: 50%; */
    /* bottom: 0; */
    transform: translate(-50%, -51%);
    width: 300px;
    height: auto;
  }

  .ellipse-gradient-one {
    display: none;
  }

  .ellipse-gradient-two {
    display: none;
  }

  .game-about-image-background {
    position: absolute;
    z-index: 99;
    top: -6px;
    right: -207px;
    width: 253px;
    height: auto;
  }

  .casino-about-image-background {
    position: absolute;
    z-index: 99;
    top: 42px;
    left: -212px;
    width: 253px;
    height: auto;
  }

  .metaverse-about-image-background {
    position: absolute;
    z-index: 99;
    top: 33px;
    left: -168px;
    width: 236px;
    height: auto;
  }

  .nft-about-image-background {
    position: absolute;
    z-index: 99;
    top: -4px;
    left: -188px;
    width: 253px;
    height: auto;
  }

  .block-about-image-background {
    position: absolute;
    z-index: 99;
    top: 156px;
    right: -177px;
    width: 236px;
    height: auto;
  }

  .binary-about-image-background {
    position: absolute;
    z-index: 99;
    top: -28px;
    left: -209px;

    width: 248px;
    height: auto;
  }

  .exchange-about-image-background {
    position: absolute;
    z-index: 99;
    top: 4px;
    right: -122px;
    width: 239px;
    height: auto;
  }

  .bidding-about-image-background {
    position: absolute;
    z-index: 99;
    bottom: -127px;
    left: -194px;
    width: 322px;
    height: auto;
  }

  .wallet-about-image-background {
    position: absolute;
    z-index: 99;
    top: -10px;
    left: -228px;
    width: 365px;
    height: auto;
  }

  .project-hero-heading {
    font-size: 68px;
    color: white;
    text-transform: uppercase;
    margin-top: 200px;
  }

  .project-list-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(9, 1fr);
    grid-column-gap: 11px;
    grid-row-gap: 40px;

    height: auto;
    max-height: 100%;
  }

  .project1 {
    grid-area: 1 / 1 / 2 / 2;
  }
  .project2 {
    grid-area: 2 / 1 / 3 / 2;
  }
  .project3 {
    grid-area: 3 / 1 / 4 / 2;
  }
  .project4 {
    grid-area: 4 / 1 / 5 / 2;
  }
  .project5 {
    grid-area: 5 / 1 / 6 / 2;
  }
  .project6 {
    grid-area: 6 / 1 / 7 / 2;
  }
  .project7 {
    grid-area: 7 / 1 / 8 / 2;
  }
  .project8 {
    grid-area: 8 / 1 / 9 / 2;
  }
  .project9 {
    grid-area: 9 / 1 / 10 / 2;
  }
}

@media (max-width: 400px) {
  .hero-heading {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 700;
  }

  .hero-button {
    padding: 9px 12px;
    font-size: 11px;
    margin-top: 7px;
  }

  .sub-heading-container {
    bottom: 82px;
  }

  .hero-heading-container {
    transform: translate(-50%, -440%);
    overflow-x: visible;
  }

  .hero-meta-image {
    position: absolute;
    transform: translateX(0px);
    width: 244px;
  }
}

@media (max-width: 1000px) {
  .carousel {
    display: none;
  }

  .mobile-carousel {
    display: block;
  }

  .mobile-nav {
    display: block;
  }

  .nav {
    display: none;
  }
}

@media (min-width: 1000px) {
  .owl-carousel {
    display: hidden;
  }

  .toggleButton {
    display: none;
  }
}
/* 
@media (max-width: 768px) {
  .hero-heading {
    font-size: 83px;
  }

  .hero-paragraph {
    position: absolute;
    left: 8px;
    top: 103px;
  }

  .hero-image {
    max-height: 505px;
    letter-spacing: 10px;
    position: absolute;
    left: 50%;
    top: 34%;
    transform: translate(-50%, -50%);
  }

  .logo {
    width: 194px;
    height: auto;
  }

  .hero-button {
    padding: 6px 11px;
  }

  .about-heading h1 {
    font-size: 50px;
    font-weight: 700;
  }

  .about-heading p {
    font-size: 19px;
    font-weight: 500;
  }

  .content-container {
    margin: auto;
    max-width: 768px;
    width: 100%;
  }

  .about-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 168px;
    width: 250px;
  }

  .about-card p {
    font-size: 14px;
    font-weight: 600;
    max-width: 300px;
    text-align: center;
  }

  .about-content-one {
    height: 84px;
  }

  .about-content-two p {
    font-size: 14px;

    max-width: 653px;
    line-height: 25px;
    font-weight: 500;
    margin: auto;
  }

  .about-button {
    padding: 10px 18px;
    text-align: center;
    font-size: 12px;
    margin: 2px 2px;
    margin-top: 20px;
  }

  .about-sphere-image-one.visible {
    transform: translate(-30em, 4em);
    opacity: 1;
  }

  .about-sphere-image-two.visible {
    transform: translate(-22em, 24em);
    opacity: 1;
  }

  .about-sphere-image-three.visible {
    transform: translate(-12em, -25em);
    opacity: 1;
  }

  .about-sphere-image-four.visible {
    transform: translate(11em, 9em);
    opacity: 1;
  }

  @keyframes sphereAnimationRotateOne {
    0% {
      transform: translate(-30em, 4em);
    }
    100% {
      transform: translate(-28em, 6em);
    }
  }

  @keyframes sphereAnimationRotateTwo {
    0% {
      transform: translate(-22em, 24em);
    }
    100% {
      transform: translate(-25em, 20em);
    }
  }
  @keyframes sphereAnimationRotateThree {
    0% {
      transform: translate(-12em, -25em);
    }
    100% {
      transform: translate(-14em, -23em);
    }
  }
  @keyframes sphereAnimationRotateFour {
    0% {
      transform: translate(11em, 9em);
    }
    100% {
      transform: translate(12em, 10em);
    }
  }

  .goal-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 40px 0;
    margin-bottom: 40px;
  }

  .goal-sub-container {
    column-gap: 20px;
    height: 450px;
  }

  .rocket-image-container img {
    width: 283px;
    height: auto;
    position: absolute;
    left: -138px;
    top: -99px;
  }
  .goal-sub-container div:first-child {
    width: 10%;
    padding: 0 30px;
    align-self: first baseline;
  }
  .goal-sub-container div:nth-child(2) {
    flex: 1;
    padding: 0 0px;
    height: 269px;
  }

  .goal-sub-container div:nth-child(3) {
    width: 40%;
    padding: 0 0px;
    height: 269px;
  }

  .goal-sub-container div:nth-child(2) p,
  .goal-sub-container div:nth-child(3) p {
    font-size: 13px;
    font-weight: 300;
  }

  .projects-section {
    height: 600px;
    max-height: 650px;
  }

  .projects-section {
    height: 600px;
    max-height: 650px;
    padding: 0 40px;
  }

  .founder-heading {
    font-size: 81px;
  }
} */
