@media (min-width: 320px) {
  /* smartphones, iPhone, portrait 480x320 phones */
}

@media (min-width: 481px) {
  /* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */
}

@media (min-width: 641px) {
  /* portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones */
}

@media (min-width: 961px) {
  /* tablet, landscape iPad, lo-res laptops ands desktops */
}

@media (min-width: 1025px) {
  /* big landscape tablets, laptops, and desktops */
}

@media (min-width: 1281px) {
  /* hi-res laptops and desktops */
}

.bgVid {
  position: fixed;
  z-index: -2;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  background-image: url("../../images/EDIT_astronaut_blue_red_vertical.png");
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
}

@media (max-width: 641px) {
  .bgVid {
    opacity: 1;
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
  }
}

.bgVid .shader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
}

.bgVid .bgv {
  opacity: 1;
  min-height: 100vh;
  min-width: 100vw;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

@media (max-width: 641px) {
  .bgVid .bgv {
    display: none;
  }
}

.loadScreen {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: black;
}

@media (min-width: 320px) {
  /* smartphones, iPhone, portrait 480x320 phones */
}

@media (min-width: 481px) {
  /* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */
}

@media (min-width: 641px) {
  /* portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones */
}

@media (min-width: 961px) {
  /* tablet, landscape iPad, lo-res laptops ands desktops */
}

@media (min-width: 1025px) {
  /* big landscape tablets, laptops, and desktops */
}

@media (min-width: 1281px) {
  /* hi-res laptops and desktops */
}

.phoneSlideNav, .deskLSlideNav {
  display: none;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.651)));
  background: linear-gradient(to top, rgba(255, 255, 255, 0.651) rgba(255, 255, 255, 0.675) 100%);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3;
  margin: -100vh 0;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: 'Sora', sans-serif;
}

.phoneSlideNav .closeButton, .deskLSlideNav .closeButton {
  position: absolute;
  top: 1rem;
  right: 2rem;
  color: black;
  cursor: pointer;
}

.phoneSlideNav a, .deskLSlideNav a {
  color: black;
  text-decoration: none;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  cursor: none;
  padding: 3px 7px;
}

.phoneSlideNav a::after, .deskLSlideNav a::after {
  border-radius: 5px;
  -webkit-transition: all .25s;
  transition: all .25s;
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  width: 100%;
  height: 0;
  left: 0;
  right: 0;
  background: #272727;
}

.phoneSlideNav a:hover, .deskLSlideNav a:hover {
  color: white;
  -webkit-transition: color .25s, font-weight .15s;
  transition: color .25s, font-weight .15s;
}

.phoneSlideNav a:hover::after, .deskLSlideNav a:hover::after {
  height: 100%;
}

@media (min-width: 641px) {
  .deskLSlideNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    width: 310px;
    margin: 0 0;
    margin-right: -311px;
    font-weight: 600;
  }
  .deskLSlideNav .closeButton {
    position: absolute;
    top: .5rem;
    right: 1rem;
    color: white;
    color: black;
    -webkit-transition: color .3s;
    transition: color .3s;
  }
  .deskLSlideNav .closeButton:hover {
    color: #525252;
  }
  .deskLSlideNav a {
    color: white;
    color: black;
    font-size: 14px;
    margin: 0 5px;
  }
}

.desktopNav, .phoneNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: 'Sora', sans-serif;
  position: fixed;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
  right: 0;
  width: 100vw;
  color: white;
  z-index: 2;
  padding: .5rem 1rem;
}

.desktopNav .logo, .phoneNav .logo {
  display: inline;
}

.desktopNav .tabs, .phoneNav .tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 100;
}

.desktopNav .tabs li, .phoneNav .tabs li {
  font-size: 20px;
  margin-right: 1rem;
  padding: 0.3rem;
}

.desktopNav .tabs li a, .phoneNav .tabs li a {
  color: white;
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  position: relative;
  border-radius: 5px;
  padding: 3px 7px;
  font-weight: 200;
}

.desktopNav .tabs li a::after, .phoneNav .tabs li a::after {
  border-radius: 5px;
  -webkit-transition: all .2s;
  transition: all .2s;
  content: "";
  position: absolute;
  z-index: -1;
  background: white;
  bottom: 0;
  width: 100%;
  height: 0;
  left: 0;
  right: 0;
}

.desktopNav .tabs li a:hover, .phoneNav .tabs li a:hover {
  -webkit-transition: color .25s, font-weight .15s;
  transition: color .25s, font-weight .15s;
  color: black;
  font-weight: 200;
}

.desktopNav .tabs li a:hover::after, .phoneNav .tabs li a:hover::after {
  height: 100%;
}

@media (max-width: 480px) {
  .desktopNav .tabs li, .phoneNav .tabs li {
    font-size: 10px;
    padding: .1rem;
  }
}

.desktopNav .tabs li .burger, .phoneNav .tabs li .burger {
  list-style-type: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  cursor: pointer;
  position: relative;
}

.desktopNav .tabs li .burger:hover li, .phoneNav .tabs li .burger:hover li {
  opacity: .4;
}

.desktopNav .tabs li .burger li, .phoneNav .tabs li .burger li {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  cursor: pointer;
  padding: 0;
  margin: 0;
  height: 2px;
  width: 12px;
  margin: 5px 0;
  background-color: white;
}

.phoneNav {
  display: none;
}

@media (max-width: 641px) {
  .phoneNav {
    display: block;
    position: fixed;
    top: 15px;
    right: 9px;
    width: auto;
  }
}

@media (max-width: 641px) {
  .desktopNav {
    display: none;
  }
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*::-webkit-scrollbar {
  width: 7px;
}

*::-webkit-scrollbar-thumb {
  background-color: #383838;
}

*::-webkit-scrollbar-track {
  background: black;
}

*::-moz-selection {
  background-color: white;
  color: black;
}

*::selection {
  background-color: white;
  color: black;
}

body {
  padding: 0;
  margin: 0;
  background: #020024;
  background: linear-gradient(225deg, #020024 0%, #090979 50%, #00d4ff 100%);
}

ul {
  margin: 0;
  padding: 0;
}

li {
  padding: 0;
  margin: 0;
}
/*# sourceMappingURL=global.css.map */