/* [project]/styles/pages/Home.module.css [app-client] (css) */
.Home-module__NlB1sa__container {
  height: 100%;
  overflow-y: scroll;
}

.Home-module__NlB1sa__container h5 {
  font-weight: 500;
}

.Home-module__NlB1sa__main {
  height: fit-content;
  margin: 12.5% 0;
  display: block;
}

.Home-module__NlB1sa__main a {
  z-index: 1;
  color: currentColor;
  width: 120%;
  height: 120%;
  -webkit-text-decoration: unset;
  text-decoration: unset;
  border-radius: 15px;
  margin-top: -50px;
  margin-left: -50px;
  position: absolute;
}

.Home-module__NlB1sa__main a, .Home-module__NlB1sa__main a * {
  cursor: pointer;
}

.Home-module__NlB1sa__main a:hover {
  -webkit-text-decoration: unset;
  text-decoration: unset;
  color: currentColor;
}

.Home-module__NlB1sa__content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(100vw, 1400px);
  height: 100%;
  margin: 0 auto;
  padding: 2vw max(2vw, 40px);
  display: flex;
  position: relative;
}

@media screen and (max-width: 960px) {
  .Home-module__NlB1sa__container h3 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 600px) {
  .Home-module__NlB1sa__container h1 {
    font-size: 8vw;
  }

  .Home-module__NlB1sa__container h3 {
    font-size: 7vw;
  }

  .Home-module__NlB1sa__container h5 {
    font-size: 5vw;
  }

  .Home-module__NlB1sa__content {
    padding: 6vw;
  }
}

/* [project]/styles/components/Message.module.css [app-client] (css) */
.Message-module__Tqieja__container {
  width: 100vw;
  height: 100vh;
  position: absolute;
}

.Message-module__Tqieja__content {
  white-space: pre;
  text-align: center;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  transform: translate(-50%, -100%);
}

.Message-module__Tqieja__content * {
  margin: 0;
}

.Message-module__Tqieja__content h1 {
  margin-bottom: .35em;
  font-family: StretchBasic;
  font-size: 5vw;
}

.Message-module__Tqieja__content p {
  font-family: HelveticaNowDisplay;
  font-size: 2vw;
  font-weight: 500;
}

/* [project]/styles/components/NavBar.module.css [app-client] (css) */
.NavBar-module__xyjZXG__navigation {
  z-index: 10;
  background: #000;
  justify-content: center;
  align-items: center;
  height: 80px;
  font-size: 1rem;
  display: flex;
  position: sticky;
  top: 0;
}

.NavBar-module__xyjZXG__container {
  z-index: 1;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  height: 80px;
  padding: 0 15px;
  display: flex;
}

.NavBar-module__xyjZXG__mobile {
  background: var(--dark-color);
  text-align: center;
  z-index: 5;
  justify-content: center;
  width: 100%;
  max-height: 50vh;
  list-style: none;
  transition: all .5s;
  display: none;
  position: fixed;
  top: -100%;
  overflow-y: scroll;
}

.NavBar-module__xyjZXG__mobile li {
  margin-left: -40px;
}

.NavBar-module__xyjZXG__dropdown {
  top: 60px;
}

.NavBar-module__xyjZXG__logo {
  color: var(--light-color);
  cursor: pointer;
  justify-self: flex-start;
  align-items: center;
  margin-left: 24px;
  font-family: StretchPro;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  display: flex;
}

.NavBar-module__xyjZXG__icon {
  margin-right: 5px;
}

.NavBar-module__xyjZXG__toggle {
  cursor: pointer;
  font-size: 1.8rem;
  display: none;
  position: absolute;
  top: -11px;
  right: 0;
  transform: translate(-100%, 60%);
}

.NavBar-module__xyjZXG__open {
  margin-right: 12.5px;
}

.NavBar-module__xyjZXG__close {
  margin-right: 0;
}

.NavBar-module__xyjZXG__desktop {
  text-align: center;
  align-items: center;
  list-style: none;
  display: flex;
}

.NavBar-module__xyjZXG__mobile .NavBar-module__xyjZXG__item {
  height: 60px;
}

.NavBar-module__xyjZXG__item a {
  color: var(--light-color);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  text-decoration: none;
  display: flex;
}

.NavBar-module__xyjZXG__item a, .NavBar-module__xyjZXG__logo {
  transition: all .25s;
}

.NavBar-module__xyjZXG__mobile .NavBar-module__xyjZXG__item a {
  height: 100%;
}

.NavBar-module__xyjZXG__item a:hover, .NavBar-module__xyjZXG__logo:hover, .NavBar-module__xyjZXG__selected a {
  color: var(--primary-color);
}

@media screen and (max-width: 960px) {
  .NavBar-module__xyjZXG__toggle {
    display: block;
  }

  .NavBar-module__xyjZXG__desktop {
    display: none;
  }

  .NavBar-module__xyjZXG__mobile {
    display: grid;
  }

  .NavBar-module__xyjZXG__navigation {
    transition: all .8s;
  }
}

@media screen and (max-width: 480px) {
  .NavBar-module__xyjZXG__menu {
    grid-template-rows: repeat(6, 60px);
  }
}

/* [project]/styles/components/Home/Sections/Header.module.css [app-client] (css) */
.Header-module__nwbwma__container {
  height: calc(100% - 80px);
  min-height: 600px;
  position: relative;
}

.Header-module__nwbwma__content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(100vw, 1400px);
  height: 100%;
  margin: 0 auto;
  padding: 2vw max(2vw, 40px);
  display: flex;
}

.Header-module__nwbwma__text {
  flex-direction: column;
  width: 100%;
  margin-bottom: 10vh;
  display: flex;
}

.Header-module__nwbwma__title, .Header-module__nwbwma__subtitle {
  display: inline-block;
}

.Header-module__nwbwma__title {
  white-space: pre-wrap;
  font-family: StretchPro;
  font-size: min(6.25vw, 6rem);
  line-height: calc(1.25 * min(6.25vw, 6rem));
}

.Header-module__nwbwma__subtitle {
  margin-top: 1vw;
  font-family: StretchBasic;
  font-size: min(2.5vw, 2rem);
  line-height: calc(1.25 * min(1.75vw, 1.45rem));
}

.Header-module__nwbwma__arrow {
  cursor: pointer;
  width: fit-content;
  margin: 0 auto;
  position: absolute;
  bottom: 50px;
}

@media screen and (max-width: 960px) {
  .Header-module__nwbwma__text {
    margin-bottom: 15vh;
  }

  .Header-module__nwbwma__title {
    font-size: 6.35vw;
  }
}

/* [project]/styles/components/Home/Split.module.css [app-client] (css) */
.Split-module__gGWgea__black, .Split-module__gGWgea__blue {
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.Split-module__gGWgea__black {
  z-index: 1;
  color: var(--light-color);
  background-color: #000;
}

.Split-module__gGWgea__blue {
  color: var(--dark-color);
  background-color: var(--primary-color);
}

.Split-module__gGWgea__black .split-secondary {
  color: var(--primary-color);
}

.Split-module__gGWgea__blue .split-secondary {
  color: var(--light-color);
}

.Split-module__gGWgea__content {
  width: 100vw;
  height: 100%;
  display: block;
  position: absolute;
}

/* [project]/styles/components/Home/Sections/Footer.module.css [app-client] (css) */
.Footer-module__tuxuha__footer {
  width: 100vw;
  height: 12vw;
  margin-bottom: 80px;
  font-family: StretchBasic;
  font-size: 7vw;
  position: relative;
}

.Footer-module__tuxuha__typed {
  width: 100%;
  margin: 1vw 2vw;
  position: absolute;
}

/* [project]/styles/components/Home/Sections/Terminal.module.css [app-client] (css) */
#Terminal-module__c1VJ5G__left {
  color: var(--dark-color);
  background-color: #00fa70;
}

#Terminal-module__c1VJ5G__right {
  color: unset;
  cursor: text;
  padding: 0;
  overflow: scroll;
}

.Terminal-module__c1VJ5G__icon {
  margin-top: 15px;
}

/* [project]/styles/components/Home/Cards.module.css [app-client] (css) */
.Cards-module__4Nkqwa__group {
  flex-direction: row;
  width: 100%;
  margin: 12.5px 0;
  display: flex;
}

.Cards-module__4Nkqwa__card {
  border-radius: 15px;
  height: 550px;
  margin: 0 12.5px;
  padding: 50px;
  font-size: 2.25rem;
  position: relative;
  overflow: hidden;
}

.Cards-module__4Nkqwa__card h3 {
  margin: 0;
}

.Cards-module__4Nkqwa__small {
  background-color: var(--primary-color);
  width: calc(min(35vw, 490px) - 50px);
}

.Cards-module__4Nkqwa__medium {
  background-color: #1c1c1c;
  width: calc(min(50vw, 700px) - 50px);
}

.Cards-module__4Nkqwa__large {
  background-color: var(--dark-color);
  width: calc(min(65vw, 910px) - 50px);
}

.Cards-module__4Nkqwa__parallax {
  background-color: red;
  height: 550px;
  margin: 100px;
  display: flex;
  position: relative;
}

@media screen and (max-width: 1300px) {
  .Cards-module__4Nkqwa__card {
    font-size: 2rem;
  }
}

@media screen and (max-width: 1100px) {
  .Cards-module__4Nkqwa__card {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 960px) {
  .Cards-module__4Nkqwa__group {
    margin: 0;
    padding: 0;
    display: block;
  }

  .Cards-module__4Nkqwa__card {
    width: calc(100vw - 80px);
    height: 500px;
    margin: 40px 0 0;
    font-size: 2.25rem;
  }
}

@media screen and (max-width: 600px) {
  .Cards-module__4Nkqwa__card {
    width: 88vw;
    padding: 9vw;
  }
}

/* [project]/styles/components/Home/Terminal/Commands.module.css [app-client] (css) */
.Commands-module__Yvb2fa__banner {
  margin-left: -42px;
}

.Commands-module__Yvb2fa__semibold {
  font-weight: 600;
}

.Commands-module__Yvb2fa__underline {
  text-decoration: underline;
}

.Commands-module__Yvb2fa__topMargin {
  margin-top: .75rem;
}

.Commands-module__Yvb2fa__commands {
  flex-direction: column;
  grid-template-columns: 6.25rem 6.25rem;
  padding: 0;
  list-style: none;
  display: grid;
}

.Commands-module__Yvb2fa__helpFooter {
  flex-direction: column;
  margin-top: 1.25rem;
  display: flex;
}

@media screen and (max-width: 768px) {
  .Commands-module__Yvb2fa__commands {
    grid-template-columns: 4.25rem 4.25rem;
  }
}

/* [project]/styles/components/Home/Terminal/Console.module.css [app-client] (css) */
.Console-module__ZXpKZa__container {
  width: 100%;
  min-height: 100%;
  padding: 50px;
  font-family: CascadiaCode, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
  font-size: 1rem;
}

.Console-module__ZXpKZa__output {
  white-space: pre-wrap;
  overflow-wrap: break-word;
  width: 100%;
  margin-left: 40px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .Console-module__ZXpKZa__container * {
    font-size: .75rem;
  }
}

/* [project]/styles/components/Home/Terminal/ConsoleInput.module.css [app-client] (css) */
.ConsoleInput-module__Q7UlGq__input {
  margin-top: 10px;
  display: flex;
}

.ConsoleInput-module__Q7UlGq__input textarea {
  background-color: var(--dark-color);
  resize: none;
  caret-color: currentColor;
  border: none;
  outline: 0;
  flex-grow: 1;
  margin-top: -4px;
  font-family: CascadiaCode;
  font-size: 1rem;
}

.ConsoleInput-module__Q7UlGq__arrow {
  margin-right: .5rem;
}

.ConsoleInput-module__Q7UlGq__default {
  color: currentColor;
}

.ConsoleInput-module__Q7UlGq__failure {
  color: #ef4444;
}

.ConsoleInput-module__Q7UlGq__success {
  color: #10b981;
}

.ConsoleInput-module__Q7UlGq__prompt {
  color: #93c5fd;
  margin-right: .25rem;
}

.ConsoleInput-module__Q7UlGq__hidden {
  color: #0000;
}

@media screen and (max-width: 768px) {
  .ConsoleInput-module__Q7UlGq__input textarea {
    font-size: .75rem;
  }
}

/* [project]/styles/components/Home/Arrow.module.css [app-client] (css) */
.Arrow-module__VGs9Ia__rightArrow {
  position: absolute;
  bottom: 50px;
  right: 50px;
}

.Arrow-module__VGs9Ia__leftArrow {
  bottom: top;
  position: absolute;
  left: 50px;
}

@media screen and (max-width: 600px) {
  .Arrow-module__VGs9Ia__rightArrow {
    bottom: 9vw;
    right: 9vw;
  }

  .Arrow-module__VGs9Ia__leftArrow {
    top: 9vw;
    left: 9vw;
  }
}

/* [project]/styles/components/Home/Sections/DocsLibrary.module.css [app-client] (css) */
#DocsLibrary-module__Q1X6wa__left, #DocsLibrary-module__Q1X6wa__right {
  align-items: center;
  display: flex;
}

#DocsLibrary-module__Q1X6wa__left {
  color: #ffd635;
}

#DocsLibrary-module__Q1X6wa__right {
  color: #4169e1;
}

.DocsLibrary-module__Q1X6wa__title, .DocsLibrary-module__Q1X6wa__subtitle {
  color: #fff;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}

.DocsLibrary-module__Q1X6wa__subtitle {
  opacity: .8;
}

.DocsLibrary-module__Q1X6wa__icon {
  text-align: center;
  width: fit-content;
  margin: 0 auto 15px;
}

.DocsLibrary-module__Q1X6wa__content {
  width: 100%;
  margin: auto 0;
}

.DocsLibrary-module__Q1X6wa__background {
  white-space: pre-wrap;
  -webkit-user-select: none;
  user-select: none;
  cursor: default;
  color: #fff;
  opacity: .05;
  font-family: CascadiaCode;
  font-size: 2.25rem;
  position: absolute;
  inset: -50px;
  transform: rotate(-17deg);
}

/* [project]/styles/components/Home/Sections/Servers.module.css [app-client] (css) */
#Servers-module__QIBamq__right {
  color: var(--dark-color);
}

#Servers-module__QIBamq__right h3 {
  padding-top: 75px;
}

#Servers-module__QIBamq__left {
  padding: 0;
  position: relative;
}

#Servers-module__QIBamq__image {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  bottom: 0;
}

.Servers-module__QIBamq__icon {
  margin-top: 15px;
}

@media screen and (max-width: 455px) {
  #Servers-module__QIBamq__image {
    width: unset;
    min-width: 100%;
    height: 100%;
    min-height: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* [project]/styles/components/Home/Sections/DownloadsApps.module.css [app-client] (css) */
#DownloadsApps-module__KQmuMq__left {
  color: var(--light-color);
  background-color: var(--secondary-color);
  padding: 20px 20px 50px;
  position: relative;
}

#DownloadsApps-module__KQmuMq__left h3 {
  text-align: center;
  width: calc(95% - 40px);
  margin: 0 2.5%;
  position: absolute;
  bottom: 40px;
}

#DownloadsApps-module__KQmuMq__right {
  background-color: var(--dark-color);
}

#DownloadsApps-module__KQmuMq__right h3 {
  margin: 0;
}

.DownloadsApps-module__KQmuMq__file {
  width: 20%;
  padding: 2%;
}

.DownloadsApps-module__KQmuMq__content {
  width: calc(100% - 40px);
  margin: 0;
  position: absolute;
  bottom: 30%;
}

.DownloadsApps-module__KQmuMq__icons {
  width: 160%;
  position: absolute;
  bottom: 0;
  left: -30%;
}

@media screen and (max-width: 1300px) {
  .DownloadsApps-module__KQmuMq__icons {
    width: 200%;
    left: -50%;
  }

  .DownloadsApps-module__KQmuMq__content {
    bottom: 27%;
  }
}

@media screen and (max-width: 1100px) {
  .DownloadsApps-module__KQmuMq__icons {
    width: 240%;
    left: -70%;
  }
}

@media screen and (max-width: 960px) {
  #DownloadsApps-module__KQmuMq__left h3 {
    bottom: 50px;
  }

  .DownloadsApps-module__KQmuMq__icons {
    width: 160%;
    left: -30%;
  }
}

@media screen and (max-width: 768px) {
  #DownloadsApps-module__KQmuMq__left h3 {
    bottom: 40px;
  }

  .DownloadsApps-module__KQmuMq__content {
    bottom: 27%;
  }

  .DownloadsApps-module__KQmuMq__icons {
    width: 190%;
    left: -45%;
  }
}

@media screen and (max-width: 600px) {
  #DownloadsApps-module__KQmuMq__right {
    padding: 7vw;
  }

  #DownloadsApps-module__KQmuMq__left h3 {
    bottom: 4%;
  }

  .DownloadsApps-module__KQmuMq__content {
    bottom: 26%;
  }
}

@media screen and (max-width: 455px) {
  .DownloadsApps-module__KQmuMq__icons {
    width: 322%;
    left: -85%;
  }
}

/*# sourceMappingURL=styles_892c1f34._.css.map*/