:root {
  font-family: Helvetica;
}

::-webkit-scrollbar {
  display: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: white;
  --ColorAppleGray: #98989d;
  --ColorAppleBrown: #ac8e68;
  --ColorApplePink: #ff375f;
  --ColorApplePurple: #bf5af2;
  --ColorAppleIndigo: #5e5ce6;
  --ColorAppleBlue: #0a84ff;
  --ColorAppleCyan: #5ac8f5;
  --ColorAppleTeal: #6ac4dc;
  --ColorAppleMint: #66d4cf;
  --ColorAppleGreen: #32d74b;
  --ColorAppleYellow: #ffd60a;
  --ColorAppleOrange: #ff9f0a;
  --ColorAppleRed: #ff453a;
}

a {
  text-decoration: none;
}

html {
  scrollbar-width: none;
  background: #060C20;
}

.PageWrap {
  /* ------------PageWrap------------- */
  position: relative;
}

.PageWrap .container {
  display: flex;
  justify-content: center;
}

.PageWrap .container .row {
  max-width: 1300px;
  width: 100%;
}

@media (max-width: 600px) {
  .PageWrap .container .row {
    padding: 0 20px;
  }

  /* ------------/PageWrap------------- */
}

.Loader {
  /* ------------Loader------------- */
  position: fixed;
  z-index: 1;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #060C20;
}

.Loader h1 {
  font-weight: 600;
  font-size: 90px;
  color: #FFFFFF;
  display: flex;
}

.Loader h1 span {
  display: flex;
}

.Loader h2 {
  font-weight: 400;
  font-size: 20px;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-top: 10px;
  /* ------------/Loader------------- */
}

.VideoWrap {
  /* ------------VideoWrap------------- */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.VideoWrap .BGImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.VideoWrap video {
  width: 100vw;
  /* ------------/VideoWrap------------- */
}

.container.HeroSection .row {
  /* ------------HeroSection------------- */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 50vh;
  transform: translateY(50%);
}

.container.HeroSection .row .Intro {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.container.HeroSection .row .Intro h1 {
  font-weight: 600;
  font-size: 30px;
  text-align: center;
  color: #FFFFFF;
  width: 80%;
}

.container.HeroSection .row .Intro h2 {
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  color: #E6E6E6;
  width: 80%;
  margin-top: 10px;
}

.container.HeroSection .row .CTA {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 50px;
}

.container.HeroSection .row .CTA h1 {
  font-weight: 600;
  font-size: 20px;
  color: #FFFFFF;
}

.container.HeroSection .row .CTA .Btn {
  padding: 15px 30px;
  background: white;
  border: 2px solid #FFFFFF;
  border-radius: 10px;
  margin-top: 25px;
  transition: all 0.3s 0s ease-out;
  cursor: pointer;
}

.container.HeroSection .row .CTA .Btn h1 {
  font-weight: 500;
  font-size: 13px;
  color: #060C20;
  transition: all 0.3s 0s ease-out;
}

.container.HeroSection .row .CTA .Btn:hover {
  background: transparent;
}

.container.HeroSection .row .CTA .Btn:hover h1 {
  color: white;
  /* ------------/HeroSection------------- */
}