@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;500&display=swap");
body {
  background: #030426;
  margin: 0;
  font-family: 'JetBrains Mono', monospace;
  color: white;
}

a {
  text-decoration: none;
}

aside {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: auto;
  padding-right: 1em;
  background: black;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateX(300px);
          transform: translateX(300px);
  -webkit-transition: -webkit-transform 0.75s;
  transition: -webkit-transform 0.75s;
  transition: transform 0.75s;
  transition: transform 0.75s, -webkit-transform 0.75s;
}

aside ul {
  margin-block: auto;
  justify-items: space-between;
  list-style: none;
  margin-left: 0;
  margin-right: 2em;
}

aside ul li {
  margin-block: 1em;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

aside ul li a {
  background: -webkit-gradient(linear, left top, right top, from(white), color-stop(48.23%, white), color-stop(48.24%, rgba(196, 196, 196, 0)), to(rgba(196, 196, 196, 0)));
  background: linear-gradient(90deg, white 0%, white 48.23%, rgba(196, 196, 196, 0) 48.24%, rgba(196, 196, 196, 0) 100%);
  -webkit-transition: background-position-x 0.75s ease;
  transition: background-position-x 0.75s ease;
  background-position: 100%;
  background-size: 400% 400%;
  padding-inline: 0.5em;
  padding-block: 0.25em;
}

aside ul li a.cta {
  background: -webkit-gradient(linear, left top, right top, from(white), color-stop(48.23%, white), color-stop(48.24%, #ff6a00), to(#FF6B00));
  background: linear-gradient(90deg, white 0%, white 48.23%, #ff6a00 48.24%, #FF6B00 100%);
  -webkit-transition: background-position-x 0.75s ease;
  transition: background-position-x 0.75s ease;
  background-position: 100%;
  background-size: 400% 400%;
  padding-inline: 0.5em;
  padding-block: 0.25em;
}

aside ul li:hover a {
  -webkit-transform: translate(2px, -4px);
          transform: translate(2px, -4px);
  background-position: 0%;
  color: #5338F6;
}

aside a {
  color: white;
}

aside a:hover {
  color: #5338F6;
}

aside.menuShown {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

.caret {
  width: 10px;
  height: 20px;
  position: relative;
  top: 36px;
  left: 15px;
  background: white;
}

.caretEnabled {
  -webkit-animation: blinkAnim 0.5s none 0s infinite alternate;
          animation: blinkAnim 0.5s none 0s infinite alternate;
}

.header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 5.25em;
  background: black;
}

.header .logo {
  size: 1.5em;
  padding: 1.5em;
  position: absolute;
  top: 0.5em;
  left: 1.5em;
  color: #FF6B00;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.header .logo span {
  color: white;
}

.header .logo :hover {
  color: white;
}

.header .logo :hover span {
  color: #4AD12C;
  text-decoration: underline;
}

.header .menucontainer {
  position: fixed;
  top: 0em;
  right: 0em;
  padding: 1.5em;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 200;
}

.header .menucontainer .menu {
  border: 0;
  background-color: #ff6a0057;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-items: center;
  border: 0;
  width: 50px;
  height: 50px;
  padding: 0;
  -webkit-transition: border-radius 0.3s;
  transition: border-radius 0.3s;
}

.header .menucontainer .menu img.top {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  opacity: 100;
  -webkit-transition: opacity 1s,-webkit-transform 1s;
  transition: opacity 1s,-webkit-transform 1s;
  transition: transform 1s,opacity 1s;
  transition: transform 1s,opacity 1s,-webkit-transform 1s;
}

.header .menucontainer .menu img.bottom {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  opacity: 0;
  -webkit-transition: opacity 1s,-webkit-transform 1s;
  transition: opacity 1s,-webkit-transform 1s;
  transition: transform 1s,opacity 1s;
  transition: transform 1s,opacity 1s,-webkit-transform 1s;
}

.header .menucontainer .menu img.top.menuShown {
  opacity: 0;
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.header .menucontainer .menu img.bottom.menuShown {
  opacity: 100;
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.header .menucontainer:hover {
  -webkit-transform: scale(20);
          transform: scale(20);
}

.header .menucontainer:hover .menu {
  border-radius: 50px;
}

.header .menucontainer.hidden {
  -webkit-transform: translatex(200px);
          transform: translatex(200px);
}

.hero {
  height: calc(100vh - 5.25em);
  background: -webkit-gradient(linear, left top, left bottom, from(#000000), color-stop(73.41%, #030426));
  background: linear-gradient(180deg, #000000 0%, #030426 73.41%);
}

.hero .container {
  height: inherit;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  padding: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.hero .container .heroTextR span {
  color: #FF6B00;
}

.hero .container .heroL {
  font-size: 3em;
  max-width: 530px;
}

.hero .container .heroR {
  margin-top: auto;
  margin-bottom: 3.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  font-size: 0.8em;
}

.hero .container .heroR h2 {
  opacity: 100;
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
}

.hero .container .heroR img {
  max-width: 2.5em;
  margin-left: 1em;
  -webkit-animation: arrowAnim 0.5s ease-in 0s infinite alternate;
          animation: arrowAnim 0.5s ease-in 0s infinite alternate;
  -webkit-transition: translate 2s;
  transition: translate 2s;
}

.hero .container .heroR.hidden h2 {
  opacity: 0;
}

.hero .container .heroR.hidden img {
  -webkit-transform: translateX(200px);
          transform: translateX(200px);
}

.console {
  height: 100vh;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  -webkit-transform: translatey(50px);
          transform: translatey(50px);
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

.console .container {
  height: 100%;
  width: 100%;
  margin: none;
  padding: none;
  display: block;
  padding-top: calc((100vh - 700px) / 2);
}

.console .container .consoleStartContainer {
  background: black;
  display: block;
  width: 1200px;
  height: 700px;
  margin: auto;
}

.console .container .consoleStartContainer .header {
  width: 100%;
  height: auto;
}

.console .container .consoleStartContainer .textStart {
  font-size: 18px;
  font-weight: lighter;
  margin: 15px;
}

.console .container .consoleStartContainer .textStart .red {
  color: red;
}

.console .container .consoleStartContainer .textStart .blue {
  color: #5338F6;
}

.console .container .consoleEndContainer {
  display: flex-block;
  width: 1200px;
  height: 700;
  margin: auto;
}

.console .container .consoleEndContainer .topContainer {
  top: 10px;
}

.console .container .consoleEndContainer .topContainer #textEndOn {
  -o-object-fit: fill;
     object-fit: fill;
}

.console .container .consoleEndContainer .topContainer #textEndOff {
  -o-object-fit: fill;
     object-fit: fill;
}

.console .container .consoleEndContainer .bottomContainer {
  width: 1200px;
  height: 30px;
}

.console .container .consoleEndContainer .bottomContainer .background {
  width: 100%;
  height: 100%;
  background-color: #C4C4C4;
}

.console.fadeIn {
  opacity: 100;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.consoleTrigger {
  min-height: 1px;
}

.spacer {
  min-height: 400px;
}

@-webkit-keyframes arrowAnim {
  0% {
    -webkit-transform: translateY(-0.75em);
            transform: translateY(-0.75em);
  }
  100% {
    -webkit-transform: translateY(0em);
            transform: translateY(0em);
  }
}

@keyframes arrowAnim {
  0% {
    -webkit-transform: translateY(-0.75em);
            transform: translateY(-0.75em);
  }
  100% {
    -webkit-transform: translateY(0em);
            transform: translateY(0em);
  }
}

@-webkit-keyframes blinkAnim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100;
  }
}

@keyframes blinkAnim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100;
  }
}
/*# sourceMappingURL=main.css.map */