@font-face {
  font-family: Neue;
  src: url(./PPNeueMontreal-Medium.88ee7c9.woff2);
}

@font-face {
  font-family: found;
  src: url(./founders-grotesk-x.cd2d353.woff2);
}

:root {
  --pri: #e5e7df;
  --sec: #1e1e1e;
}

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

html,
body {
  height: 100%;
  width: 100%;
}

body {
  overflow-x: hidden;
}

html.lenis,
html.lenis body {
  height: auto;
}

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

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

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

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

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}
#loader {
  height: 100vh;
  width: 100%;
  background-color: #1E1E1E;
  position: fixed;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hourglassBackground {
  position: relative;
  background-color: rgb(71, 60, 60);
  height: 130px;
  width: 130px;
  border-radius: 50%;
  margin: 30px auto;
}

.hourglassContainer {
  position: absolute;
  top: 30px;
  left: 40px;
  width: 50px;
  height: 70px;
  -webkit-animation: hourglassRotate 2s ease-in 0s infinite;
  animation: hourglassRotate 2s ease-in 0s infinite;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.hourglassContainer div,
.hourglassContainer div:before,
.hourglassContainer div:after {
  transform-style: preserve-3d;
}

@-webkit-keyframes hourglassRotate {
  0% {
    transform: rotateX(0deg);
  }

  50% {
    transform: rotateX(180deg);
  }

  100% {
    transform: rotateX(180deg);
  }
}

@keyframes hourglassRotate {
  0% {
    transform: rotateX(0deg);
  }

  50% {
    transform: rotateX(180deg);
  }

  100% {
    transform: rotateX(180deg);
  }
}

.hourglassCapTop {
  top: 0;
}

.hourglassCapTop:before {
  top: -25px;
}

.hourglassCapTop:after {
  top: -20px;
}

.hourglassCapBottom {
  bottom: 0;
}

.hourglassCapBottom:before {
  bottom: -25px;
}

.hourglassCapBottom:after {
  bottom: -20px;
}

.hourglassGlassTop {
  transform: rotateX(90deg);
  position: absolute;
  top: -16px;
  left: 3px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  background-color: #999999;
}

.hourglassGlass {
  perspective: 100px;
  position: absolute;
  top: 32px;
  left: 20px;
  width: 10px;
  height: 6px;
  background-color: #999999;
  opacity: 0.5;
}

.hourglassGlass:before,
.hourglassGlass:after {
  content: '';
  display: block;
  position: absolute;
  background-color: #999999;
  left: -17px;
  width: 44px;
  height: 28px;
}

.hourglassGlass:before {
  top: -27px;
  border-radius: 0 0 25px 25px;
}

.hourglassGlass:after {
  bottom: -27px;
  border-radius: 25px 25px 0 0;
}

.hourglassCurves:before,
.hourglassCurves:after {
  content: '';
  display: block;
  position: absolute;
  top: 32px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #333;
  animation: hideCurves 2s ease-in 0s infinite;
}

.hourglassCurves:before {
  left: 15px;
}

.hourglassCurves:after {
  left: 29px;
}

@-webkit-keyframes hideCurves {
  0% {
    opacity: 1;
  }

  25% {
    opacity: 0;
  }

  30% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@keyframes hideCurves {
  0% {
    opacity: 1;
  }

  25% {
    opacity: 0;
  }

  30% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

.hourglassSandStream:before {
  content: '';
  display: block;
  position: absolute;
  left: 24px;
  width: 3px;
  background-color: white;
  -webkit-animation: sandStream1 2s ease-in 0s infinite;
  animation: sandStream1 2s ease-in 0s infinite;
}

.hourglassSandStream:after {
  content: '';
  display: block;
  position: absolute;
  top: 36px;
  left: 19px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  animation: sandStream2 2s ease-in 0s infinite;
}

@-webkit-keyframes sandStream1 {
  0% {
    height: 0;
    top: 35px;
  }

  50% {
    height: 0;
    top: 45px;
  }

  60% {
    height: 35px;
    top: 8px;
  }

  85% {
    height: 35px;
    top: 8px;
  }

  100% {
    height: 0;
    top: 8px;
  }
}

@keyframes sandStream1 {
  0% {
    height: 0;
    top: 35px;
  }

  50% {
    height: 0;
    top: 45px;
  }

  60% {
    height: 35px;
    top: 8px;
  }

  85% {
    height: 35px;
    top: 8px;
  }

  100% {
    height: 0;
    top: 8px;
  }
}

@-webkit-keyframes sandStream2 {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  51% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  91% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes sandStream2 {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  51% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  91% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.hourglassSand:before,
.hourglassSand:after {
  content: '';
  display: block;
  position: absolute;
  left: 6px;
  background-color: white;
  perspective: 500px;
}

.hourglassSand:before {
  top: 8px;
  width: 39px;
  border-radius: 3px 3px 30px 30px;
  animation: sandFillup 2s ease-in 0s infinite;
}

.hourglassSand:after {
  border-radius: 30px 30px 3px 3px;
  animation: sandDeplete 2s ease-in 0s infinite;
}

@-webkit-keyframes sandFillup {
  0% {
    opacity: 0;
    height: 0;
  }

  60% {
    opacity: 1;
    height: 0;
  }

  100% {
    opacity: 1;
    height: 17px;
  }
}

@keyframes sandFillup {
  0% {
    opacity: 0;
    height: 0;
  }

  60% {
    opacity: 1;
    height: 0;
  }

  100% {
    opacity: 1;
    height: 17px;
  }
}

@-webkit-keyframes sandDeplete {
  0% {
    opacity: 0;
    top: 45px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  1% {
    opacity: 1;
    top: 45px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  24% {
    opacity: 1;
    top: 45px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  25% {
    opacity: 1;
    top: 41px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  50% {
    opacity: 1;
    top: 41px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  90% {
    opacity: 1;
    top: 41px;
    height: 0;
    width: 10px;
    left: 20px;
  }
}

@keyframes sandDeplete {
  0% {
    opacity: 0;
    top: 45px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  1% {
    opacity: 1;
    top: 45px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  24% {
    opacity: 1;
    top: 45px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  25% {
    opacity: 1;
    top: 41px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  50% {
    opacity: 1;
    top: 41px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  90% {
    opacity: 1;
    top: 41px;
    height: 0;
    width: 10px;
    left: 20px;
  }
}



nav {
  width: 100%;
  height: 10%;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--pri);
  padding: 30px 30px;
  position:fixed;
  z-index: 1;
  transition: background-color 0.3s ease, color 0.3s ease;
}

nav img {
  width: 9%;
  mix-blend-mode: difference;
}

.tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 17%;
}

nav a {
  text-decoration: none;
  color: var(--sec);
  margin-left: 3px;
  color: inherit;
  font-family: Neue;
  font-size: 21px;
  font-weight: 600;
  transition: 0.5s ease-in-out;
  position: relative;
  padding-bottom: 5px;
  /* Add some space for the underline */
}

nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #000;
  /* Underline color */
  left: 0;
  bottom: 0;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
  /* Full width on hover */
}

.cursor {
  padding: 8px 10px;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #fff;
  border-radius: 5px;
  z-index: 9;
  opacity: 0;
}

.cursor img {
  height: 3vw;
  width: 3vw;
  border-radius: 5px;
}

.cursor h2 {
  font-size: 2vw;
  font-family: Neue;
  font-weight: 100;
}

.main {
  background: var(--pri);
  padding: 0 1rem;
}

.page1 {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--pri);
}

.text {
  padding-top: 150px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.left {
  width: 20%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.left p {
  font-family: Neue;
  font-size: 17px;
}

.left a {
  text-decoration: none;
  width: 70%;
  padding: 5px 0px;
  color: var(--sec);
  margin-top: 19px;
  font-size: 17px;
  font-family: Neue;
  display: inline-block;
  /* background-color: blue; */
  border-bottom: 1px solid var(--sec);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.left i {
  font-size: 19px;
  margin-bottom: -7px;
}

.left input {
  width: 80%;
  font-size: 19px;
  font-family: Neue;
  color: black;
  padding: 10px;
  margin-top: 10px;
  background: none;
  border: none;
}

.left input::placeholder {
  color: #000000;
}

.right {
  width: 60%;
  margin-top: -10px;
  margin-right: 2px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  font-family: Neue;
  font-size: 42px;
  font-weight: 400;
}

#page1-heading {
  height: 50%;
  margin-top: 3%;
  width: 100%;
  padding-bottom: 3vw;
  display: flex;
  /* border: 2px solid red; */
}

#page1-heading .textdiv {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  width: fit-content;
  gap: 2vw;
  padding-right: 10vw;
  animation-name: move;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.textdiv h1 {
  font-size: 30vw;
  font-family: found;
  text-transform: uppercase;
}

.textdiv img {
  height: 90%;
  margin-top: 3vw;
}

@keyframes move {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.page2 {
  width: 100%;
  height: 68vh;
  margin-top: 20%;
}

.page2-content {
  width: 75%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.para {
  font-size: 42.6667px;
  color: #1e1e1e;
  line-height: 45.6533px;
  font-family: Neue;
  height: fit-content;
  overflow: hidden;
}

.textpara,
.text-para {
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  height: fit-content;
  overflow: hidden;
}

.page3 {
  width: 100%;
  height: 100vh;
  border-top: 1px solid #a9aca5;
}

.columns {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 20px;

}

.col1 {
  width: 45%;
  height: 100%;
}

.col1-text {
  width: 100%;
  font-size: 17.5px;
  font-weight: 500;
  font-family: Neue;
  color: #1e1e1e;
  display: flex;
  align-items: flex-start;
}

.col1-text i {
  font-size: 17px;
  margin-right: 10px;
}

.col2 {
  width: 35%;
  height: 100%;
  padding: 10px 10px;
}

.text-1 {
  margin-top: -5rem;
}

.col2 h4 {
  font-family: Neue;
  margin-top: 5rem;
  font-size: 18.7733px;
  font-style: normal;
  font-weight: 500;

}

.col2 p {
  font-family: Neue;
  margin-top: 1rem;
  font-size: 18.7733px;
  color: gray;
  font-weight: 500
}

.col3 {
  width: 20%;
  height: 100%;
}

.col3-text p {
  width: 100%;
  margin-left: 70%;
  font-size: 17.5px;
  font-weight: 500;
  font-family: Neue;
  color: #1e1e1e;
  display: flex;
  align-items: flex-start;
}

#page4 {
  min-height: 100vh;
  width: 104%;
  background-color: #fff;
  padding: 12vh 4vw;
  padding-bottom: 50vh;
  position: relative;
  margin-left: -1rem;
}

.page4-heading {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  width: 100%;

}

.page4-heading h1 {
  font-size: 31vw;
  font-family: found;
  text-transform: uppercase;
  line-height: 0.76;

}

.page4-video {
  height: 20vw;
  width: 30vw;
  position: absolute;
  top: 43%;
  /* background-color: red; */
  left: 37.5%;
  scale: 1;
  opacity: 0;
  border-radius: 10px;
  overflow: hidden;
}

.page4-video video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.page5 {
  min-height: 100vh;
  width: 104%;
  position: relative;
  margin-left: -1rem;
  background-color: #1E1E1E;
  padding: 1rem;
}

.page5-box1 {
  width: 100%;
  display: flex;
  display: flex;
  justify-content: space-between;
}

.page5-text {
  font-size: 17.5px;
  font-weight: 500;
  font-family: Neue;
  color: var(--pri);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page5-con {
  /* width: 50%; */
  font-size: 17.5px;
  font-weight: 500;
  font-family: Neue;
  color: var(--pri);
  display: flex;
  align-items: flex-start;
}

.page5-text2 {
  /* width: 80%; */
  margin-right: 6rem;

}

.page5-text2 p {
  color: var(--pri);
  font-family: Neue;
  font-size: 42.6667px;
  font-style: normal;
  font-variant-caps: normal;
  font-variant-east-asian: normal;
  font-variant-ligatures: normal;
  font-variant-numeric: normal;
  font-weight: 500
}

.page5-box2 h1 {
  font-family: found;
  font-size: 405.333px;
  font-style: normal;
  font-variant-caps: normal;
  font-variant-east-asian: normal;
  font-variant-ligatures: normal;
  font-variant-numeric: normal;
  font-weight: 700;
  color: white;

}

.page5-box3 {
  width: 100%;
  height: 65vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: white;

}

.page5-content {
  width: 40%;
  height: 50%;
  margin-top: 30px;


}

.page5-content h4 {
  font-family: Neue;
  font-size: 18.7733px;
  font-weight: 500
}

.row {
  display: flex;
  /* align-items:center; */
  /* justify-content: center; */
  gap: 5rem;
  border-bottom: 0.5px solid white;
  padding: 2rem 3rem 1rem 0;
  text-align: left;
}

.row p {
  font-size: 20px;
}

.row p span {
  font-family: Neue;
  text-align: left;
  margin-bottom: 1rem;
  font-size: 18.7733px;
  font-weight: 500
}

.more {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.more a {
  color: white;
  font-size: 17.5px;
  font-weight: 500;
  text-decoration: none;
}

.page6 {
  min-height: 70vh;
  width: 104%;
  position: relative;
  margin-left: -1rem;
  background-color: #1E1E1E;
  border-top: 1px solid gray;
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
}

.page6-content {
  width: 65%;
  height: 50%;
  margin-top: 5rem;
}

.page6-content h4 {
  font-family: Neue;
  font-size: 42.6667px;
  font-weight: 500;
  color: var(--pri);
  margin-bottom: 3rem;
}

.page6-content2 {
  height: 40%;
  width: 48%;
  display: flex;
  justify-content: flex-start;

}

.photo {
  width: 24%;
  height: 50%;
}

.page6-content2 img {
  width: 70%;
  border-radius: 50%;
}

.page6-name {
  margin-top: 10px;
  margin-left: -20px;
  font-family: Neue;
  font-size: 17.0667px;
  color: var(--pri);
  font-weight: 500
}

.page6-content2 {
  font-family: Neue;
  font-size: 42.6667px;
  font-weight: 500;
  color: var(--pri);
  margin-bottom: 3rem;
}

.page7 {
  min-height: 70vh;
  width: 104%;
  position: relative;
  margin-left: -1rem;
  background-color: var(--pri);
  border-top: 1px solid gray;
}

.page7-content1 {
  /* width: 100%; */
  display: flex;
  flex-direction: column;
  align-items: end;

}

.page7-box1 {
  width: 100%;
  margin-top: -2rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

.page7-box1 h1 {
  line-height: 0.8;
  font-family: found;
  font-size: 24rem;
  color: var(--sec);
  font-weight: 700
}

.page7-box1 img {
  width: 27%;
  height: auto;
  margin-top: 3rem;
}

.page8 {
  min-height: 100vh;
  width: 104%;
  position: relative;
  margin-left: -1rem;
  background-color: var(--sec);
  border-top: 1px solid gray;
}

.page8-banner {
  width: 100%;
  color: var(--pri);
  font-size: 6rem;
  display: flex;
  margin-top: 1rem;
  align-items: start;
  justify-content: center;
  font-family: Neue;
  font-weight: bold;

}

.page8-banner i {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.page8-box1 {
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  padding: 20px;
  justify-content: center;

}

.page8-col1,
.page8-col2,
.page8-col3 {
  width: 33%;
  height: 60%;
  border-right: 1px solid gray;
  padding: 30px;
}

.page8-box1 h4 {
  margin-bottom: 1rem;
  font-family: Neue;
  font-size: 24px;
  font-weight: 700;
  color: var(--pri);
}

.page8-box1 p {
  font-family: Neue;
  font-size: 20px;
  color: var(--pri);

}

.footer {
  text-align: right;
  margin-right: 2rem;
  margin-top: 1rem;
  font-family: Neue;
  font-size: 20px;
  color: var(--pri);
}