@keyframes scrollHorizontalLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes slide-up {
  0% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes scrollHorizontalRight {
  0% {
    transform: translateX(-100%);
    -webkit-transform: translateX (-100%);
  }
  100% {
    transform: translateX(0%);
    -webkit-transform: translateX (-100%);
  }
}

@keyframes scroll {
  0% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(10px);
  }
}

@keyframes scrollHand {
  0% {
    transform: translateY(20px);
  }
  50% {
    transform: translateY(-25px);
  }
  100% {
    transform: translateY(20px);
  }
}

@keyframes wave1 {
  0% {
    height: 70%;
  }
  50% {
    height: 20%;
  }
  100% {
    height: 70%;
  }
}
@keyframes wave2 {
  0% {
    height: 20%;
  }
  50% {
    height: 75%;
  }
  100% {
    height: 20%;
  }
}
@keyframes wave3 {
  0% {
    height: 75%;
  }
  50% {
    height: 20%;
  }
  100% {
    height: 75%;
  }
}
@keyframes wave4 {
  0% {
    height: 25%;
  }
  50% {
    height: 70%;
  }
  100% {
    height: 25%;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  display: block;
  cursor: pointer;
}

body {
  margin: 0px;
  font-family: azo-sans-web;
}

p {
  margin: 0px;
}

.pre-render-container {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 7;
  background: #151515;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: transform 1s;
}

.pre-render-container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: radial-gradient(
    77.84% 77.84% at 50% 50%,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.pre-render-container.hide {
  transform: translateY(-100vh);
}

.pre-render-heading {
  font-family: azo-sans-uber;
  font-style: normal;
  font-weight: 400;
  font-size: 48px;
  color: #ffffff;
  text-align: center;
}

.pre-render-bottom-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.pre-render-panda-pic {
  width: 83px;
  height: 83px;
  object-fit: contain;
}

.pre-render-loading {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  color: #b8b5b5;
}

.container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  padding-top: 120px;
}

.container canvas {
  touch-action: auto !important; /* overwriting threejs */
}

.container::after {
  position: absolute;
  width: 100vw;
  width: 100vh;
  background-image: url(three.js-master/Assets/grain.png);
}

.cursor {
  position: fixed;
  top: 50%;
  left: 50%;
  border-radius: 100%;
  z-index: 3;
  pointer-events: none;
  margin-left: 200px;
  background-color: red;
}

.cursor-tooltip {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 175px;
  background: rgba(194, 189, 189, 0.2);
  border-radius: 75px;
  padding: 7px 24px 7px 16px;
  position: absolute;
  right: 20px;
  top: 50%;
  z-index: 1;
  cursor: pointer;
}

.cursor-text {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  margin-left: 10px;
}

.menuContainer {
  width: 97%;
  min-height: 623px;
  position: fixed;
  z-index: 5;
  top: 20px;
  left: 1.5%;
  background: #151515;
  padding: 150px 70px 100px;
  border-radius: 40px;
  animation: moveIn 0.5s normal;
  transform: translateY(-1000px);
  transition: transform 1s;
}

.menuContainer.show {
  transform: translateY(0);
}

.menuContainer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: radial-gradient(
    77.84% 77.84% at 50% 50%,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.menu-inner {
  position: relative;
  z-index: 1;
}

.menu-text {
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  color: #ffffff;
  padding: 23px 0px;
  border-bottom: 1px solid #898686;
}

.menu-text.join {
  color: #848484;
  display: flex;
  width: 100%;
}

.coming-soon {
  font-style: normal;
  font-weight: 700;
  font-size: 10px;
  line-height: 22px;
  color: #ffffff;
  background-color: #5b20bc;
  height: 21px;
  border-radius: 100px;
  margin-left: 15px;
  width: 84px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.social-wrapper {
  display: flex;
  align-items: center;
  padding-top: 20px;
}

.social-text {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
  margin: 0px 5px 0px 17px;
}

.arrow {
  /* box-sizing: border-box; */
  width: 11.31px;
  height: 0px;
  border: 1px solid #ffffff;
  transform: rotate(-45deg);
}

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  z-index: 4;
}

.navbar.menu {
  padding: 50px 90px 0px;
  z-index: 6;
}

.nav-left-section {
  display: flex;
  align-items: center;
}

.logo {
  margin-right: 10px;
}

.logo-text {
  opacity: 0;
  transition: opacity 1s;
}

.nav-right-section {
  display: flex;
  align-items: center;
}

.diamond-btn {
  padding: 12px 20px;
  border: 1px solid #ffffff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  margin-right: 35px;
  cursor: pointer;
  background: rgba(165, 165, 165, 0.18);
}

.navbar.menu .diamond-btn {
  display: none;
}

.diamond-btn-txt {
  margin-left: 12px;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: #ffffff;
}

.menuWrapper {
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border-radius: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.menuWrapper .menu-line {
  width: 50%;
  height: 3px;
  background-color: #151515;
  margin: 2px 0px;
  transition: transform 1s;
}

.cross {
  position: absolute;
}

.cross:nth-child(1) {
  width: 50%;
  transform: rotate(45deg);
}
.cross:nth-child(2) {
  display: none;
}
.cross:nth-child(3) {
  width: 50%;
  transform: rotate(-45deg);
}

.inner-container {
  width: 100%;
  /* height: 300vh; */
}

.section1 {
  padding: 0px 40px 0px 40px;
  position: relative;
  opacity: 1;
  transition: opacity 1s;
}

.section1.hide {
  opacity: 0;
}

.section1-inner {
  position: sticky;
  top: 130px;
  height: 200vh;
}

.section1-inner-data {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: calc(100vh - 130px);
  justify-content: space-between;
  position: relative;
}

.section1-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
}

.dummy-height {
  width: 100%;
  height: 700vh;
}

.scroll-icon-desktop {
  width: 30px;
  height: 50px;
  border: 2px solid #ffffff;
  border-radius: 100px;
  bottom: 0;
  position: relative;
  margin-bottom: 110px;
  display: flex;
  justify-content: center;
  position: fixed;
  transition: opacity 2s;
}

.scroll-icon-mobile {
  width: 30px;
  height: 50px;
  bottom: 0;
  position: relative;
  margin-bottom: 110px;
  display: flex;
  justify-content: center;
  position: fixed;
  transition: opacity 2s;
  display: none;
}

.scroll-dot {
  width: 5px;
  height: 5px;
  background-color: #ffffff;
  border-radius: 100px;
  animation: scroll ease 1.5s infinite;
}

.scroll-text {
  position: absolute;
  bottom: -35px;
  width: 91px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #b8b5b5;
}

.hand {
  animation: scrollHand ease 1.5s infinite;
  margin-left: 5px;
  width: 50px;
}

.video-wrapper {
  width: 264px;
  height: 142px;
  position: fixed;
  right: 40px;
  bottom: 110px;
  border-radius: 8px;
  z-index: 1;
  transition: transform 2s;
  transform: translateX(500px);
}

.video-wrapper.show {
  transform: translateX(0px);
}

.video-wrapper video {
  width: 264px;
  height: 142px;
  object-fit: cover;
  border-radius: 8px;
}

.video-overlay {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.67), rgba(0, 0, 0, 0.67));
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.video-btn {
  display: flex;
  align-items: center;
  border-radius: 100px;
  padding: 5px 10px;
  background-color: #efefef;
}

.play-icon {
  margin-right: 10px;
}

.video-txt {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #000000;
}

.section {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 388px;
  height: fit-content;
  margin: auto 52px;
  opacity: 0;
  transition: 1s;
  transform: translateY(100px);
}

.section.left {
  left: 40px;
}

.section.show {
  opacity: 1;
  transform: translateY(0px);
}

.section3 {
  padding: 0px 33px 0px 100px;
  height: 200vh;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.top-heading {
  font-family: azo-sans-uber;
  font-style: normal;
  font-weight: 400;
  font-size: 4vw;
  line-height: 4vw;
  color: #ffffff;
  margin-left: 3.6vw;
  align-self: flex-start;
}

.top-subheading {
  font-family: azo-sans-uber;
  font-style: normal;
  font-weight: 400;
  font-size: 13.5vw;
  line-height: 13.5vw;
  color: #ffffff;
}

.top-text {
  font-style: normal;
  font-weight: 400;
  font-size: 1.6vw;
  line-height: 1.6vw;
  color: #ffffff;
  text-align: end;
  width: 19.8vw;
  align-self: flex-end;
}

.label {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #ffffff;
  margin-bottom: 4px;
}

.heading {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 58px;
  color: #ffffff;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.sub-heading {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #b8b5b5;
  width: 80%;
}

.image-slider-container {
  position: relative;
  margin-bottom: 100px;
}

.image-slider-container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    90deg,
    #741cc0 0%,
    rgba(116, 28, 192, 0) 18.36%,
    rgba(116, 28, 192, 0) 76.16%,
    #741cc0 100%
  );
  z-index: 1;
}

.image-slider-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.image-slider {
  display: flex;
  align-items: center;
  animation: scrollHorizontalLeft 18s linear infinite;
}

.image-slider.right {
  animation: scrollHorizontalRight 18s linear infinite;
}

.image-slider-gap {
  height: 10px;
}

.imageWrapper img {
  height: 200px;
  width: auto;
}

.top-and-footer {
  position: relative;
  overflow-x: hidden;
}

.top-container {
  /* background-color: #5b20bc; */
  padding: 42px;
}

.faq-container {
  display: flex;
}

.faq-title {
  font-family: azo-sans-uber;
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  color: #ffffff;
  width: 400px;
  margin-right: 130px;
}

.faq-list {
  flex: 1;
}

.faq-item {
  padding-bottom: 24px;
  margin-bottom: 42px;
  border-bottom: 0.7px solid #ffffff;
  cursor: pointer;
}

.accordion-content {
  margin-top: 24px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  margin-left: 35px;
}

.faq-item .accordion-content {
  display: none;
}

.faq-item.show .accordion-content {
  display: block;
}

.faq-item .minus {
  display: none;
  width: 15px;
  height: 4px;
  background-color: #ffffff;
}

.faq-item.show .plus {
  display: none;
}

.faq-item.show .minus {
  display: block;
}

.question-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-text {
  color: #ffffff;
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
}

.left-wrapper {
  width: 50%;
  position: relative;
  z-index: 3;
}

.bottom-wrapper {
  padding: 42px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #151515 89.47%);
}

.bottom-title {
  font-family: azo-sans-uber;
  font-style: normal;
  font-weight: 400;
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 18px;
}

.bottom-text {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 23px;
  color: #ffffff;
}

.social-buttons {
  display: flex;
  align-items: center;
  margin-bottom: 77px;
}

.social-button,
.social-button-2 {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  color: #ffffff;
  background-color: #5b20bc;
  border-radius: 100px;
  padding: 13px 16px 13px 21px;
  display: flex;
  align-items: center;
}

.social-button-2 {
  background-color: unset;
  border: 1px solid #ffffff;
  margin-left: 25px;
  padding: 12px 16px 12px 21px;
}

.social-icon {
  margin-left: 22px;
}

.footer {
  display: flex;
  justify-content: center;
  margin-bottom: -35px;
}

.audio-wave {
  position: absolute;
  top: -53px;
  right: 0;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  cursor: pointer;
}

.audio-wave .line {
  width: 4px;
  border-radius: 100px;
  margin: 0px 2.5px;
  background-color: #ffffff;
}

.audio-wave .line:nth-child(1) {
  height: 70%;
}
.audio-wave .line:nth-child(2) {
  height: 40%;
}
.audio-wave .line:nth-child(3) {
  height: 75%;
}
.audio-wave .line:nth-child(4) {
  height: 45%;
}

.audio-wave.move .line:nth-child(1) {
  animation: wave1 1s infinite;
}
.audio-wave.move .line:nth-child(2) {
  animation: wave2 1s infinite;
}
.audio-wave.move .line:nth-child(3) {
  animation: wave3 1s infinite;
}
.audio-wave.move .line:nth-child(4) {
  animation: wave4 1s infinite;
}

.sticky-footer {
  display: flex;
  justify-content: space-between;
  padding: 11px 0px;
  position: relative;
  border-top: 0.7px solid #ffffff;
  z-index: 3;
  position: fixed;
  bottom: 0;
  left: 40px;
  width: calc(100% - 80px);
  color: #ffffff;
  margin-top: -38.5px;
}

.footer-image {
  position: absolute;
  bottom: 0;
  right: 120px;
  z-index: 2;
}

.footer-image img {
  width: 410px;
  height: auto;
}

.footer-title {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
}

.footer-text {
  font-style: normal;
  font-weight: 350;
  font-size: 12px;
}

@media only screen and (max-width: 600px) {
  .pre-render-heading {
    font-size: 24px;
  }

  .pre-render-loading {
    font-size: 10px;
  }

  .pre-render-bottom-wrapper {
    margin-bottom: 100px;
  }

  .pre-render-panda-pic {
    width: 40px;
    height: 40px;
  }

  .container {
    padding-top: 100px;
  }

  .scroll-icon-desktop {
    display: none;
  }

  .scroll-icon-mobile {
    display: flex;
  }

  .scroll-text {
    width: 71px;
  }

  .cursor {
    display: none;
  }

  .navbar {
    padding: 20px;
  }

  .navbar.menu {
    padding: 20px;
  }

  .logo {
    width: 56px;
  }

  .logo-text {
    width: 100px;
  }

  .diamond-btn {
    display: none;
  }

  .section1-top {
    margin-top: 50px;
  }

  .section {
    width: 195px;
    margin: 0px 20px;
  }

  .section.left {
    left: 0px;
  }

  #section1 {
    top: 20%;
    bottom: unset;
  }

  #section2 {
    bottom: 20%;
    top: unset;
  }

  #section3 {
    bottom: 20%;
    right: 0;
    top: unset;
  }

  .section1 {
    padding: 0px 16px 0px 10px;
  }

  .video-wrapper {
    width: 264px;
    height: 142px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 200px;
    margin: auto;
    display: none;
    z-index: 2;
  }

  .top-container {
    padding: 20px;
  }

  .top-heading {
    font-size: 10vw;
    line-height: 10vw;
    margin-left: 0px;
    text-align: center;
    margin-bottom: 5px;
    align-self: center;
  }

  .top-subheading {
    text-align: center;
    margin-bottom: 8px;
  }

  .top-text {
    font-style: normal;
    font-weight: 400;
    font-size: 2.5vw;
    line-height: 2.5vw;
    width: 30vw;
  }

  .label {
    font-size: 10px;
  }

  .heading {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 7px;
  }

  .sub-heading {
    font-size: 12px;
    line-height: 12px;
    width: 85%;
  }

  .menuContainer {
    transform: translateX(102%);
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    border-radius: unset;
    padding: 100px 20px 0px;
  }

  .menuContainer.show {
    transform: translateX(0);
  }

  .menuWrapper {
    width: 40px;
    height: 40px;
  }

  .menuWrapper .menu-line {
    margin: 1.5px 0px;
  }

  .main-container {
  }

  .image-slider-gap {
    height: 5px;
  }

  .imageWrapper img {
    height: 150px;
    width: auto;
  }

  .faq-container {
    flex-direction: column;
  }

  .faq-title {
    font-family: azo-sans-uber;
    font-size: 24px;
    color: #ffffff;
    margin-right: 130px;
    width: 100%;
    text-align: center;
    margin-bottom: 55px;
  }

  .faq-list {
    flex: 1;
    transition: 2s;
  }

  .faq-item {
    padding-bottom: 15px;
    margin-bottom: 20px;
  }

  .faq-text {
    font-size: 20px;
  }

  .accordion-content {
    font-size: 12px;
    margin-left: 23px;
    margin-top: 12px;
  }

  .left-wrapper {
    width: 100%;
  }

  .bottom-wrapper {
    padding: 20px 20px 0px;
  }

  .left-wrapper {
    width: 80%;
  }

  .bottom-title {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .bottom-text {
    font-size: 10px;
    margin-bottom: 20px;
    width: 70%;
  }

  .social-buttons {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
  }

  .social-button,
  .social-button-2 {
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    color: #ffffff;
    background-color: #5b20bc;
    border-radius: 100px;
    padding: 7px 8px 7px 10px;
    display: flex;
    align-items: center;
  }

  .social-button-2 {
    background-color: unset;
    margin-left: 12px;
    padding: 6px 8px 6px 10px;
  }

  .social-icon {
    margin-left: 11px;
    width: 10px;
    height: 10px;
    object-fit: contain;
  }

  .sticky-footer {
    left: 20px;
    width: calc(100% - 40px);
    margin-top: -32.5px;
  }

  .footer-image {
    position: absolute;
    bottom: 0;
    left: 60vw;
  }

  .footer-image img {
    width: 233px;
    height: 200px;
    margin-bottom: -4px;
  }

  .footer {
    padding: 11px 0px;
    width: calc(100% - 40px);
    margin-left: 20px;
    z-index: 0;
    margin-bottom: 0px;
  }

  .footer-title {
    font-size: 8px;
    margin-top: 10px;
  }

  .footer-text {
    font-size: 8px;
  }
}
