* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: white;
  user-select: none;
}
::selection {
  background-color: transparent;
}

@font-face {
  font-family: mainFont;
  src: url(/fonts/D-DIN.ttf);
}
@font-face {
  font-family: mainFontBold;
  src: url(/fonts/D-DIN-Bold.ttf);
}
html {
  font-size: 62.5%;
  background: rgb(19, 19, 19);
  overflow-x: hidden;
}
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 4rem;
  height: 4rem;
  pointer-events: none;
  z-index: 9;
}

.cursor-circle {
  --circle-size: 40px;
  position: absolute;
  height: var(--circle-size);
  width: var(--circle-size);
  border: 1px solid white;
  border-radius: 100%;
  top: calc(var(--circle-size) / 2 * -1);
  left: calc(var(--circle-size) / 2 * -1);
}

.btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.btn a{
  text-decoration: none;
  color: white;
  transition: all 0.3s ease-in-out;
}
.btn:hover a{
  color: black;
}
.btn:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  color: black;
  right: 0;
  bottom: 0;
  background: white;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.rotateTop {
  transform: rotate(45deg);
  transform-origin: 48%;
}
.rotateBottom {
  transform: rotate(-45deg);
  transform-origin: 40%;
}
.btn:hover,
.btn:focus,
.btn:active {
  color: black;
}
.btn:hover:before,
.btn:focus:before,
.btn:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

body {
  position: relative;
}
.menuBarContainer {
  width: auto;
  height: auto;
}
.menuBar {
  width: 100vw;
  transform: translateX(105vw);
  height: 100vh;
  z-index: 100;
  transition: all 0.5s ease-in-out;
  backdrop-filter: blur(40px);
  position: fixed;
  top: 0;
}

.menu-mid {
  display: flex;
  justify-content: center;
  align-items: self-end;
  flex-direction: column;
  margin-top: 30vh;
  padding: 0 10vw;
  gap: 4vh;
}

.menu-navItems {
  position: relative;
  color: white;
  font-size: 4vw;
  text-decoration: none;
  font-family: mainFont;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
  border-bottom: 2px solid transparent;
}

.menu-navItems::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease-in-out;
}

.menu-navItems:hover::after {
  width: 100%;
}

nav {
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3vw 5vw 2vw 5vw;
  position: fixed;
  top: 0;
  z-index: 101;
}
.left img {
  width: 16vw;
}
.mid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3vw;
}
.navItems {
  color: white;
  font-size: 1.5vw;
  text-decoration: none;
  font-family: mainFont;
  font-weight: bold;
  text-transform: uppercase;
}
.right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3vw;
  cursor: pointer;
}

.signupBtn,
.contactBtn,
.loginBtn {
  text-decoration: none;
  font-size: 1.4vw;
  border: 0.1vw solid rgba(255, 255, 255, 0.628);
  border-radius: 100vw;
  font-family: mainFont;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
  padding: 0.8vw 3vw;
}

.signupBtn {
  margin: 0 2vw;
}

.signupBtn:hover {
  border: 0.3vw solid rgba(255, 255, 255, 0.628);
}
.loginBtn:hover {
  border: 0.3vw solid rgba(255, 255, 255, 0.628);
}
.contactBtn:hover {
  border: 0.3vw solid rgba(255, 255, 255, 0.628);
}
.cancel {
  cursor: pointer;
}
.stroke {
  transition: all 0.2s linear;
  width: 3vw;
  height: 0.15vw;
  background: #e9e9e9;
  z-index: 150;
}


.page1 {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.page1 img {
  position: absolute;
  width: auto;
  height: 100vh;
  object-fit: cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0.8);
}

.page1 div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 20vh;
}

.page1 h1 {
  color: white;
  font-family: mainFontBold;
  font-weight: bold;
  font-size: 8vw;
  z-index: 5;
}
.page1 h3 {
  color: rgb(193, 193, 193);
  z-index: 5;
  font-family: mainFont;
  font-size: 1.4vw;
  margin-top: 2rem;
}

.page2 {
  width: 100vw;
  height: 100vh;
  display: flex;
  padding: 0 10vw;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.page2 img {
  width: auto;
  height: 100vh;
  position: absolute;
  background-size: cover;
  background-position: center;
  z-index: -1;
  filter: brightness(0.8);
  background-repeat: no-repeat;
}

.page2 div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 20vh;
}

.page2 h2,
.page2 h3 {
  color: white;
  letter-spacing: 0px;
  font-family: mainFont;
  line-height: 7vh;
  text-align: center;
  font-weight: 100;
  font-size: 2vw;
}
.page2 h2 {
  margin-bottom: 10vh;
}

.page3 {
  width: 100vw;
  height: 100vh;
  display: grid;
  grid-template-columns: 50% 50%;
  background: url('/images/mars_why.jpg') no-repeat center/cover;
}

.marsInfoDiv {
  padding: 5vh 5vw;
}
.marsInfoDiv h1 {
  font-family: mainFontBold;
  font-size: 4vw;
}
.marsInfoDiv #marsInfoP {
  font-family: mainFont;
  font-size: 1.3vw;
  line-height: 4vh;
  margin-top: 4vh;
}
#marsInfoTable {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 5px;
  align-items: center;
}
#marsInfoTable p {
  font-family: mainFontBold;
  font-size: 1.2vw;
  margin: 1vw 0;
  padding: 2vh 0;
  border-bottom: 1.3px solid rgb(123, 123, 123);
}
#marsTableRight {
  text-align: end;
}
#marsTableRight span {
  font-size: 1.2vw;
  color: rgb(138, 138, 138);
}

.page4 {
  width: 100vw;
  height: 100vh;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page4 div {
  display: grid;
  place-items: center;
  margin-bottom: 10%;
}

.page4 h1 {
  font-size: 10vw;
  font-family: mainFontBold;
  position: absolute;
}

.page4 h2 {
  font-size: 2vw;
  font-family: mainFont;
  letter-spacing: 1px;
  position: absolute;
  margin-top: 25vh;
}

.page5 {
  width: 100vw;
  height: 100vh;
  background: url('/images/WebsiteStarshipStack_Render_Desktop.jpg') no-repeat
    center/cover;
  display: grid;
  grid-template-columns: 50% 50%;
}
.page5 div {
  margin-top: 5vh;
  padding: 10vh 5vw;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.page5 h1 {
  margin: 5vh 0px;
  font-size: 4vw;
  font-family: mainFontBold;
}
.page5 p {
  font-size: 1.4vw;
  font-family: mainFont;
  line-height: 5vh;
  margin-bottom: 8vh;
}
.page5 button {
  /* transition: all .3s linear; */
  cursor: pointer;
  text-decoration: none;
  font-family: mainFontBold;
  color: rgb(237, 237, 237);
  background: transparent;
  outline: none;
  border-radius: 0.2rem;
  padding: 3% 10%;
  font-size: 1.2vw;
  text-transform: uppercase;
  border: 2px solid rgb(212, 212, 212);
  /* position: absolute; */
}

.page6 {
  width: 100vw;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 5vh 2vw;
}
.page6 h1 {
  font-size: 4vw;
  margin-top: 30vh;
  font-family: mainFontBold;
}
.page6 > h2 {
  font-size: 1.4vw;
  font-family: mainFont;
  line-height: 5vh;
  margin-top: 5vh;
  margin: 0 9vw;
  text-align: center;
  color: rgb(189, 189, 189);
}
.page6 svg {
  width: 80vw;
}

.stepDiv {
  display: grid;
  grid-template-columns: 16.666% 16.666% 16.666% 16.666% 16.666% 16.666%;
  margin: 10vh 0 30vh 0;
}

.stepDiv div {
  margin: 0 1.2vw;
}

.stepsH1 {
  font-size: 1.2vw;
  font-family: mainFontBold;
}
.stepsP {
  font-size: 1vw;
  margin-top: 2vh;
  font-family: mainFont;
}

.stepsP {
  opacity: 0;
  transition: all 0.5s ease-in-out;
  transform: translateY(50px);
}

.stepsH1 {
  cursor: pointer;
}

.stepsH1:hover + .stepsP {
  opacity: 100;
  transform: translateY(0px);
}

.page7 {
  width: 100vw;
  height: 100vh;
  position: relative;
}

.page7 div {
  width: 50vw;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  bottom: 50vh;
  margin-left: 5vw;
}
.page7 video {
  position: absolute;
  position: absolute;
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  filter: brightness(0.5);
}

.page7 h1 {
  font-size: 4vw;
  position: absolute;
  z-index: 5;
  font-family: mainFontBold;
  margin-bottom: 10vh;
}
.page7 h2 {
  z-index: 5;
  position: absolute;
  font-size: 1.4vw;
  font-family: mainFont;
  line-height: 5vh;
  margin-top: 33vh;
  text-align: start;
  color: rgb(189, 189, 189);
}

.page8 {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: grid;
  grid-template-columns: 50% 50%;
}
.page8 img {
  width: auto;
  height: 100vh;
  position: absolute;
  background-size: cover;
  background-position: center;
  z-index: -1;
  filter: brightness(0.5);
  background-repeat: no-repeat;
}
.page8 div {
  margin-top: 5vh;
  padding: 10vh 5vw;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.page8 h1 {
  margin: 5vh 0px;
  font-size: 4vw;
  font-family: mainFontBold;
}
.page8 p {
  font-size: 1.4vw;
  font-family: mainFont;
  line-height: 5vh;
  margin-bottom: 8vh;
}
.page8 button {
  /* transition: all .3s ease-in-out; */
  cursor: pointer;
  text-decoration: none;
  font-family: mainFontBold;
  color: rgb(237, 237, 237);
  background: transparent;
  outline: none;
  border-radius: 0.2rem;
  padding: 3% 10%;
  font-size: 1.2vw;
  text-transform: uppercase;
  border: 2px solid rgb(212, 212, 212);
}

.page9 {
  position: relative;
  height: 100vh;
  width: 100vw;
  background: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.line {
  width: 1px;
  height: 25vh;
  border-radius: 100rem;
  border: 1px solid rgb(149, 149, 149);
}
.page9 > p {
  font-size: 1.2vw;
  font-family: mainFont;
  margin: 6vh;
  color: rgb(189, 189, 189);
}
.page9 button {
  /* transition: all .3s ease-in-out; */
  cursor: pointer;
  text-decoration: none;
  font-family: mainFontBold;
  color: rgb(237, 237, 237);
  background: transparent;
  outline: none;
  border-radius: 0.2rem;
  padding: 1rem 3rem;
  font-size: 1.2vw;
  text-transform: uppercase;
  border: 2px solid rgb(212, 212, 212);
}
.page9 #footer {
  position: absolute;
  bottom: 6vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5vw;
}
.page9 div > p {
  text-transform: uppercase;
  font-size: 1vw;
  font-family: mainFontBold;
  color: rgb(189, 189, 189);
}

@media (max-width: 600px) {
  .menuBarContainer {
    height: auto;
    width: auto;
  }

  nav {
    padding: 3vh 8vw;
  }
  nav .mid {
    display: none;
  }
  .right {
    gap: 0.9vw;
  }
  nav .right .stroke {
    width: 7vw;
    height: 0.3vh;
  }

  nav .cancel .stroke {
    width: 7vw;
    height: 0.3vh;
  }

  .menu-navItems {
    font-size: 10vw;
  }

  nav .left img {
    width: 40vw;
  }

  .page1 h1 {
    font-size: 12vw;
  }
  .page1 h3 {
    font-size: 3vw;
  }
  .page1 {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .page2 h2 {
    font-size: 4vw;
    line-height: 5vh;
  }
  .page2 h3 {
    font-size: 4vw;
  }

  .page3 {
    grid-template-columns: 0% 100%;
    place-items: center;
  }
  .page3 h1 {
    font-size: 12vw;
    text-align: center;
  }
  .page3 #marsInfoP {
    font-size: 3vw;
    text-align: center;
    margin-bottom: 5vh;
  }

  .page3 #marsTableRight p,
  .page3 #marsTableLeft p {
    font-size: 3vw;
  }
  .page4 div h2 {
    font-size: 6vw;
  }

  #marsTableRight span {
    font-size: 2.5vw;
  }
  .page5 {
    grid-template-columns: 72% 28%;
  }
  .page5 div {
    padding: 1vh 5vw;
    align-items: center;
  }
  .page5 h1 {
    font-size: 13vw;
  }
  .page5 p {
    font-size: 4vw;
    text-align: center;
    margin-bottom: 4vh;
  }
  .page5 button {
    font-size: 4vw;
  }

  .page6 h1 {
    margin-top: 20vh;
    font-size: 10vw;
  }
  .page6 h2 {
    margin-top: 5vh;
    font-size: 3vw;
    line-height: 3vh;
  }
  .page6 svg {
    width: 95vw;
  }
  .page6 .stepDiv {
    padding: 0 2vw;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
  }
  .page6 .stepDiv h2 {
    font-size: 4vw;
  }
  .page6 .stepDiv p {
    font-size: 3vw;
    padding-bottom: 1vh;
    border-bottom: 1px solid #898989;
  }

  .page7 {
    display: grid;
    place-items: center;
  }
  .page7 div {
    width: 90vw;
  }
  .page7 h1 {
    font-size: 10vw;
    bottom: 5vh;
    text-align: center;
  }
  .page7 h2 {
    top: -10vh;
    margin-top: 0;
    font-size: 4vw;
    text-align: center;
  }

  .page8 {
    grid-template-columns: 100% 0%;
    place-items: center;
  }

  .page8 div {
    align-items: center;
    margin: 0;
  }
  .page8 h1 {
    font-size: 10vw;
    text-align: center;
  }
  .page8 p {
    font-size: 4vw;
    line-height: 4vh;
    text-align: center;
  }
  .page8 button {
    font-size: 4vw;
  }

  .page9 p {
    font-size: 4.8vw;
    text-align: center;
    line-height: 3.6vh;
  }

  .page9 button {
    font-size: 4vw;
  }
  .page9 #footer p {
    font-size: 3vw;
  }

  .page8 img {
    right: -100vw;
  }
  .cursor {
    display: none;
  }
  .signupBtn,
  .contactBtn,
  .loginBtn {
    font-size: 3.4vw;
    padding: 2vw 4vw;
  }
}

#topStroke {
  transform-origin: 20% !important;
}
#bottomStroke {
  transform-origin: 20% !important;
}