:root {
  --blue: #0d0628;
  --ghost-white: #eeedf2;
  --8bit-orange: #ffaa31;
  --purple: #5c31ff;
  --pink: #f88cd4;
  --outline: rgba(92, 49, 255, .32);
  --pink-shading: #bc0d53;
  --dark-orange: #e47a09;
  --8bit-pink: #ee2073;
  --light-grey-1: #f3f3f5;
  --light-grey-2: #ccc;
  --dark-grey-2: #333;
  --black: black;
  --8bit-purple: #39206a;
  --grey: #1c1c1c;
  --yellow: #def141;
  --dark-background: rgba(0, 0, 0, .56);
  --dark-grey-1: #636363;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--blue);
  color: var(--ghost-white);
  font-family: DM Sans, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}

h1 {
  letter-spacing: .04em;
  margin-top: 0;
  margin-bottom: .1em;
  font-family: Pressstart2p, sans-serif;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  letter-spacing: .04em;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: .25em;
  font-family: Pressstart2p, sans-serif;
  font-size: 2.3em;
  font-weight: 700;
  line-height: 1.1;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: .25em;
  font-family: Pressstart2p, sans-serif;
  font-size: 1.7em;
  font-weight: 700;
  line-height: 1.4;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Pressstart2p, sans-serif;
  font-size: 1.3em;
  font-weight: 700;
  line-height: 1.4;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Pressstart2p, sans-serif;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.4;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Pressstart2p, sans-serif;
  font-size: .85em;
  font-weight: 700;
  line-height: 1.4;
}

p {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Pressstart2p, sans-serif;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
}

a {
  color: var(--8bit-orange);
  font-family: Pressstart2p, sans-serif;
  font-size: 1em;
  text-decoration: none;
}

blockquote {
  border-left: .4em solid #e2e2e2;
  margin-bottom: 1em;
  padding: 1em 2em;
  font-family: Pressstart2p, sans-serif;
  font-size: 100%;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 80px;
  display: flex;
}

.container.is--nav {
  height: 14em;
  justify-content: center;
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.container.is--hero {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 250px;
  padding-bottom: 220px;
  display: flex;
  position: relative;
}

.container.is--sticky {
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 0;
  display: flex;
}

.container.hero {
  z-index: 40;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: -80px;
  padding-top: 0;
  padding-bottom: 60px;
  display: flex;
  position: relative;
}

.container.footer {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 100px;
}

.html {
  width: 0;
  height: 0;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.section {
  z-index: 3;
  width: 100%;
  position: static;
}

.section.is--nav {
  z-index: 100;
  position: -webkit-sticky;
  position: sticky;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.section.footer {
  height: 100vh;
  background-image: url('../images/floor-bottom.png');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  padding-bottom: 100px;
  display: flex;
}

.section.full {
  height: 90vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 200px;
  display: flex;
}

.section.full.hide {
  height: 90vh;
  margin-top: 200px;
  display: block;
}

.nav__logo-link {
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav__logo-link.w--current {
  overflow: visible;
}

.nav__logo-img {
  z-index: 999;
  width: 25em;
  position: fixed;
}

.nav__icon {
  width: 6.5em;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  margin-left: 4.9em;
  display: flex;
}

.hero_wrap {
  z-index: 20;
  width: 60%;
  max-width: 1000px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 100px;
  display: flex;
  position: relative;
}

.hero_wrap.padding-top {
  z-index: 1;
  z-index: 4;
  margin-top: 60px;
  margin-bottom: 0;
}

.hero_wrap.footer {
  margin-top: 0;
}

.page-gradient {
  z-index: 2;
  width: 200em;
  height: 200em;
  background-image: radial-gradient(circle farthest-corner at 50% 50%, var(--purple), rgba(92, 49, 255, 0) 69%);
  opacity: .9;
  margin-bottom: -133.1em;
  margin-right: -135.7em;
  position: fixed;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.page-gradient.other {
  width: 160em;
  height: 160em;
  background-image: radial-gradient(circle farthest-corner at 50% 50%, var(--pink), rgba(248, 140, 212, 0) 69%);
  opacity: .73;
  margin-bottom: -133.7em;
  margin-right: -40.6em;
}

.page-gradient.nav {
  z-index: 60;
  width: 100vw;
  height: 15em;
  opacity: .77;
  background-image: linear-gradient(rgba(20, 0, 95, .68), rgba(248, 140, 212, 0));
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.hero__card-contain {
  z-index: 3;
  perspective: 2000em;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.switch {
  width: 8em;
  height: 4em;
  background-color: #1c1c1c;
  border-radius: 100vw;
  justify-content: flex-start;
  align-items: center;
  margin-top: 2em;
  margin-bottom: 2em;
  padding: .4em;
  display: flex;
}

.horizontal-section {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  position: relative;
}

.horizontal-section.padding {
  margin-top: 0;
}

.horizontal-trigger {
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.horizontal-sticky {
  z-index: 10;
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.sticky_top {
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 2.5em;
  display: flex;
}

.sticky_top-line {
  width: 100%;
  height: 5px;
  background-color: var(--outline);
}

.sticky_title {
  white-space: nowrap;
  flex: none;
  padding-right: 1em;
  font-family: Pressstart2p, sans-serif;
}

.list {
  width: 100%;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.wrapper {
  width: 100%;
  cursor: pointer;
}

.horizontal-item {
  width: 34%;
  flex: none;
  padding-right: 20px;
}

.card {
  width: 100%;
  border: 5px solid var(--outline);
  background-color: rgba(92, 49, 255, .04);
  border-radius: 0;
  padding: 42px 42px 0;
}

.card_top {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.card_icon {
  width: 2em;
  flex: none;
}

.card_img {
  width: 250px;
  height: 400px;
  object-fit: contain;
  margin: 3em auto 0;
  display: block;
}

.button-grid {
  width: 190px;
  height: 70px;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 8px 8px 8px 8px 8px 8px 8px 8px;
  grid-template-columns: 8px 8px 8px 8px 8px 8px 8px 8px 8px 8px 8px 8px 8px 8px 8px 8px 8px 8px 8px 8px 8px 8px 8px;
  grid-auto-rows: 8px;
  grid-auto-columns: 8px;
  grid-auto-flow: row;
  align-content: center;
  justify-content: center;
}

.button-grid.discord {
  cursor: pointer;
}

.pixel {
  width: 100%;
  height: 100%;
  color: #ffaa31;
  background-color: #39206a;
}

.pixel.blue {
  background-color: #002ba2;
}

.pixel.pink {
  background-color: #6f0c44;
}

.pixel.orange {
  background-color: #873d01;
}

.button-shading {
  width: 100%;
  height: 100%;
  background-color: #004182;
}

.button-shading.blue {
  background-color: #0468bf;
}

.button-shading.pink {
  background-color: var(--pink-shading);
}

.button-shading.orange {
  background-color: var(--dark-orange);
}

.button-background {
  width: 100%;
  height: 100%;
  background-color: #0a66c2;
}

.button-background.blue {
  background-color: #1da1f2;
}

.button-background.pink {
  background-color: var(--8bit-pink);
}

.button-background.orange {
  background-color: var(--8bit-orange);
}

.button-text {
  height: 100%;
  color: #fff;
  justify-content: center;
  align-items: center;
  font-family: Pressstart2p, sans-serif;
  font-size: 13px;
  display: flex;
}

.div-block-5 {
  width: auto;
  grid-column-gap: 25px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  margin-top: 60px;
  display: grid;
}

.div-block-5.no-padding {
  cursor: pointer;
  margin-top: 60px;
}

.paragraph {
  margin-top: 60px;
  margin-bottom: 60px;
  font-family: Pressstart2p, sans-serif;
  font-size: 1.3em;
}

.paragraph.small {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1em;
}

.heading {
  font-family: Pressstart2p, sans-serif;
  font-size: 2.3em;
  line-height: 1.3;
}

.copyright {
  z-index: 20;
  background-color: #000;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  position: relative;
}

.paragraph-2 {
  font-family: Pressstart2p, sans-serif;
  font-size: 1em;
}

.heading-2 {
  font-family: Pressstart2p, sans-serif;
  font-size: 1.3em;
}

.button-explore {
  z-index: 100;
  cursor: pointer;
  position: relative;
}

.parallax-cover {
  width: 100vw;
  height: 240vh;
  max-width: 100vw;
  background-color: rgba(0, 0, 0, 0);
  margin-top: 0;
}

.parallax-images {
  z-index: 2;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  justify-content: center;
  align-items: flex-end;
  padding-top: 0;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  overflow: visible;
}

.roof {
  z-index: 4;
  width: 100vw;
  max-width: 100vw;
  position: absolute;
  top: -57%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.tv {
  z-index: 2;
  width: 100vw;
  max-width: 100vw;
  transform: scale3d(1none, 1none, 1none);
  transform-style: preserve-3d;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.poster {
  z-index: 1;
  width: 100vw;
  position: absolute;
  top: 5%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.body {
  background-color: #18063f;
}

.link {
  color: var(--8bit-pink);
}

.parallax-mobile {
  display: none;
}

.sticky-mobile-container {
  z-index: 2;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  justify-content: center;
  align-items: flex-end;
  padding-top: 0;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  overflow: visible;
}

.button-explore-mobile {
  z-index: 2;
  cursor: pointer;
  display: none;
  position: relative;
}

.image {
  width: 10px;
  display: none;
  position: absolute;
  top: 66%;
  bottom: -26%;
  left: 15%;
  right: 0%;
}

.pink-pixel {
  width: 10px;
  display: none;
  position: absolute;
  top: 32%;
  bottom: -25%;
  left: 23%;
  right: 0%;
}

.pink-pixel-2 {
  width: 10px;
  display: none;
  position: absolute;
  top: 62%;
  bottom: -25%;
  left: 75%;
  right: 2%;
}

.utility-page-wrap {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.utility-page-content {
  width: 260px;
  text-align: center;
  flex-direction: column;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.style-guide-wrap {
  background-color: #f3f3f5;
  padding-top: 1px;
  padding-bottom: 1px;
}

.type-column-1 {
  padding-right: 20px;
}

.style-guide-label-link {
  font-size: 11px;
  font-weight: 500;
  line-height: 11px;
  text-decoration: none;
  display: inline-block;
}

.style-guide-label-link:hover {
  text-decoration: underline;
}

.card-title {
  margin-top: 0;
}

.style-guide-label {
  color: #aaa;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 40px;
  font-size: 11px;
  line-height: 11px;
}

.style-guide-label.cc-box {
  justify-content: space-between;
  display: flex;
}

.card-2 {
  background-color: #fff;
  border-radius: 4px;
  flex: 1;
  margin: 15px;
  padding: 40px;
  text-decoration: none;
  transition: all .15s;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
}

.card-2:hover {
  margin: 12px;
  padding: 43px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
}

.style-guide-content {
  padding-top: 40px;
}

.style-guide-section {
  background-color: #fff;
  border-radius: 4px;
  margin: 20px;
  padding: 60px 30px;
  position: relative;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
}

.tabs {
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px #ccc;
}

.color-block {
  height: 70px;
  background-color: #ebebeb;
  border-radius: 4px;
  margin-top: 30px;
}

.color-block.cc-light-grey-1 {
  background-color: var(--light-grey-1);
}

.color-block.cc-brand-color-3 {
  background-color: var(--8bit-orange);
}

.color-block.cc-font-color-dark {
  color: #202237;
  background-color: #222;
}

.color-block.cc-dark-grey-1 {
  background-color: #636363;
}

.color-block.cc-light-grey-2 {
  background-color: var(--light-grey-2);
}

.color-block.cc-dark-grey-2 {
  background-color: var(--dark-grey-2);
}

.color-block.cc-brand-color-4 {
  background-color: var(--black);
}

.color-block.cc-brand-color-1 {
  background-color: var(--8bit-pink);
}

.color-block.cc-brand-color-2 {
  background-color: var(--8bit-purple);
}

.color-block.cc-font-color-light {
  background-color: #aaa;
}

.error-message {
  color: #ec3872;
  text-align: center;
  background-color: rgba(236, 56, 114, .1);
  border-radius: 4px;
}

.tab-pane {
  border-right: 4px solid var(--light-grey-2);
  border-bottom: 4px solid var(--light-grey-2);
  border-left: 4px solid var(--light-grey-2);
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 30px 40px 40px;
}

.style-guide-divider {
  width: 100%;
  height: 1px;
  background-color: #f3f3f5;
  margin-top: 20px;
  margin-bottom: 10px;
}

.success-message {
  color: #20ce7b;
  background-color: rgba(32, 206, 123, .1);
  border-radius: 4px;
}

.type-column-2 {
  padding-top: 30px;
  padding-left: 20px;
}

.tab-link {
  color: #aaa;
  background-color: rgba(0, 0, 0, 0);
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 5px;
  padding-right: 5px;
}

.tab-link:hover {
  color: #222;
}

.tab-link.w--current {
  color: #222;
  background-color: rgba(0, 0, 0, 0);
  box-shadow: inset 0 -1px #333;
}

.card-wrap {
  flex: 0 0 50%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.style-guide-title {
  color: #222;
  text-transform: uppercase;
  margin-top: 0;
  padding-top: 5px;
  padding-left: 18px;
  font-size: 22px;
  font-weight: 500;
  line-height: 44px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.tab-menu {
  border: 4px solid var(--light-grey-2);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  padding-left: 5px;
  padding-right: 5px;
  box-shadow: inset 0 -1px #ccc;
}

.style-guide-subhead {
  color: #ec3872;
  background-color: rgba(236, 56, 114, .1);
  border-radius: 4px;
  margin-bottom: 40px;
  padding: 20px;
}

.input {
  height: 44px;
  background-color: #fff;
  border: 4px solid #ccc;
  border-radius: 4px;
  line-height: 44px;
}

.input:hover {
  border-color: #636363;
}

.input:focus {
  border-color: #3898ec;
}

.input.cc-long {
  height: auto;
  min-height: 150px;
  border-width: 4px;
  border-radius: 0;
  line-height: 24px;
}

.card-paragraph {
  margin-bottom: 0;
}

.button-2 {
  height: 44px;
  color: #fff;
  letter-spacing: .5px;
  background-color: #3898ec;
  border-radius: 4px;
  padding: 0 20px;
  font-weight: 400;
  line-height: 43px;
  transition: box-shadow .2s;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0);
}

.button-2:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
}

.style-guide-logo-box {
  background-image: url('../images/transparent_1transparent.gif');
  background-position: 0 0;
  background-size: 16px;
  border: 1px solid #aaa;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 40px;
  display: flex;
}

.style-guide-logo-box.cc-light {
  background-image: linear-gradient(rgba(255, 255, 255, .5), rgba(255, 255, 255, .5)), url('../images/transparent_1transparent.gif');
  background-position: 0 0, 0 0;
  background-size: auto, 16px;
}

.style-guide-logo-box.cc-dark {
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/transparent_1transparent.gif');
  background-position: 0 0, 0 0;
  background-size: auto, 16px;
}

.button-text-2 {
  height: 100%;
  color: #fff;
  justify-content: center;
  align-items: center;
  font-family: Pressstart2p, sans-serif;
  font-size: 16px;
  display: flex;
}

.card-container {
  background-color: #f3f3f5;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 20px;
  display: flex;
}

.paragraph-3 {
  color: #ffaa31;
  text-align: center;
  font-size: 12px;
}

.paragraph-3.large {
  text-align: left;
}

.team-container {
  z-index: 10;
  width: 50vw;
  border: 5px solid var(--outline);
  align-self: auto;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 40px;
  position: relative;
}

.floor-1 {
  width: 17vw;
  position: absolute;
  top: 130%;
  bottom: 0%;
  left: auto;
  right: 3%;
}

.about-parallax {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
}

.bed {
  width: 22vw;
  position: absolute;
  top: 193%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.computer {
  width: 22vw;
  display: block;
  position: absolute;
  top: 46%;
  bottom: 0%;
  left: 0;
  right: auto;
}

.heading-3 {
  color: var(--8bit-pink);
}

.div-block-6 {
  width: 200px;
  height: 200px;
  border: 5px solid var(--outline);
  position: static;
  top: 65%;
  bottom: 0%;
  left: auto;
  right: -18%;
}

.floor-2 {
  width: 16vw;
  opacity: .85;
  position: absolute;
  top: 181%;
  bottom: 0%;
  left: 3%;
  right: auto;
}

.nav-bar {
  z-index: 999;
  height: 80px;
  color: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.menu-button {
  z-index: 999;
  width: 80px;
  height: 80px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  top: 5%;
  bottom: 0%;
  left: auto;
  right: 4%;
}

.burger-line {
  width: 30px;
  height: 2px;
  background-color: var(--purple);
  margin-top: 4px;
  margin-bottom: 4px;
}

.full-screen-menu {
  z-index: 50;
  background-color: var(--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: inline;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.nav-link {
  color: #5e5b5b;
  text-transform: capitalize;
  margin-top: 10px;
  text-decoration: none;
}

.nav-link:hover {
  color: rgba(94, 91, 91, .75);
}

.nav-link.large {
  color: var(--8bit-pink);
  font-size: 3em;
  line-height: 2;
  display: inline;
}

.div-block-7 {
  position: relative;
}

.image-2 {
  margin-top: 20px;
}

.image-3 {
  position: relative;
  top: 0;
}

.image-4 {
  position: relative;
}

.company-p {
  width: 100%;
  float: left;
  color: var(--purple);
  text-align: left;
}

.div-block-8 {
  width: 400px;
  text-align: left;
}

.link-block {
  min-height: 120px;
  text-align: center;
}

.link-block-2 {
  min-height: 100px;
  text-align: center;
}

.easy-reading {
  font-family: DM Sans, sans-serif;
  font-weight: 400;
}

.bold-text {
  font-weight: 400;
}

@media screen and (min-width: 1440px) {
  .paragraph-3.large {
    margin-top: 40px;
  }

  .image-3 {
    top: 20px;
  }

  .image-4 {
    top: 12px;
  }

  .company-p {
    text-align: center;
  }
}

@media screen and (min-width: 1920px) {
  .container.hero {
    margin-top: 0;
  }

  .section.footer {
    height: 90vh;
  }

  .section.full {
    height: 80vh;
    padding-top: 400px;
  }

  .paragraph {
    font-size: 1.5em;
  }

  .parallax-cover {
    margin-top: 100px;
  }

  .paragraph-3.large {
    margin-top: 40px;
    font-size: 18px;
  }

  .team-container {
    margin-left: 20vw;
    margin-right: 20vw;
  }

  .floor-1 {
    top: 72%;
  }

  .about-parallax {
    height: 80vh;
    margin-top: 300px;
    margin-bottom: 220px;
  }

  .bed {
    top: 97%;
  }

  .computer {
    top: 9%;
  }

  .floor-2 {
    top: 115%;
  }

  .full-screen-menu {
    display: none;
  }

  .easy-reading {
    font-family: DM Sans, sans-serif;
    font-size: 16px;
    font-weight: 400;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 2.5em;
  }

  .container {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .section.footer {
    background-position: 60% 100%;
    background-size: 140%;
  }

  .section.full {
    height: 80vh;
    margin-top: -100px;
  }

  .section.full.hide {
    margin-top: 0;
  }

  .hero_wrap {
    width: 100%;
    text-align: center;
    align-items: center;
  }

  .hero_wrap.padding-top {
    margin-bottom: 0;
    font-size: 10px;
  }

  .horizontal-section.padding {
    margin-top: 0;
  }

  .horizontal-item {
    width: 52%;
  }

  .paragraph.small {
    font-size: .9em;
  }

  .heading {
    font-size: 2.3em;
  }

  .heading-2 {
    font-family: Pressstart2p, sans-serif;
    font-size: 1.2em;
  }

  .button-explore, .parallax-cover {
    display: none;
  }

  .roof {
    display: block;
    top: -26%;
  }

  .roof.mobile {
    overflow: visible;
  }

  .parallax-mobile {
    height: 200vh;
    margin-top: 40px;
    display: block;
  }

  .sticky-mobile-container {
    height: 160vh;
    overflow: hidden;
  }

  .button-explore-mobile {
    display: block;
  }

  .paragraph-3.large {
    margin-bottom: 60px;
    font-size: 10px;
  }

  .team-container {
    margin-top: 0;
  }

  .about-parallax {
    height: auto;
    margin-bottom: 140px;
  }

  .heading-3 {
    font-size: 1.4em;
  }

  .full-screen-menu {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    margin-bottom: 14px;
    font-size: 5vw;
  }

  h2 {
    font-size: 2.4em;
  }

  .container.is--nav {
    height: 10em;
  }

  .section.footer {
    background-position: 70% 100%;
  }

  .section.full {
    height: 80vh;
    margin-top: -100px;
  }

  .section.full.hide {
    height: 70vh;
  }

  .nav__logo-img {
    width: 18em;
  }

  .nav__icon {
    margin-left: 0;
  }

  .hero_wrap {
    margin-top: 0;
  }

  .hero_wrap.no-padding {
    margin-bottom: 40px;
  }

  .horizontal-section.padding {
    margin-top: 0;
  }

  .horizontal-item {
    width: 100%;
    padding-right: 4vw;
  }

  .paragraph.small {
    font-size: .8em;
  }

  .heading {
    font-size: 2.4em;
  }

  .button-explore {
    display: none;
  }

  .roof {
    display: block;
    top: -22%;
  }

  .parallax-mobile {
    height: 140vh;
    padding-top: 100px;
  }

  .sticky-mobile-container {
    height: 140vh;
    padding-top: 2em;
    overflow: hidden;
  }

  .button-explore-mobile {
    display: block;
  }

  .card-wrap {
    flex: 1;
  }

  .team-container {
    width: 80vw;
    margin-top: 60px;
  }

  .floor-1 {
    top: 105%;
  }

  .about-parallax {
    margin-top: 60px;
    margin-bottom: 0;
  }

  .bed {
    top: 250%;
  }

  .computer {
    z-index: 5;
    top: 32%;
  }

  .floor-2 {
    top: 173%;
  }

  .heading-4 {
    font-size: 2.4em;
  }

  .menu-button {
    top: 2%;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 15vw;
  }

  h2 {
    font-size: 1.5em;
  }

  h3 {
    font-size: 1.2em;
  }

  .container.is--nav {
    height: 9em;
    justify-content: center;
  }

  .container.footer {
    padding-bottom: 100px;
  }

  .section.footer {
    height: 90vh;
    background-position: 100% 100%;
    background-size: 300%;
  }

  .section.full {
    height: 70vh;
    margin-top: 0;
  }

  .section.full.hide {
    margin-top: 0;
    margin-bottom: 100px;
    padding-top: 60px;
  }

  .nav__logo-link {
    font-size: .8em;
  }

  .nav__logo-img {
    width: 20em;
  }

  .nav__icon {
    font-size: .7em;
  }

  .hero_wrap {
    width: 91%;
  }

  .hero_wrap.padding-top {
    margin-top: 80px;
    margin-bottom: 0;
  }

  .horizontal-section.padding {
    margin-top: -120px;
  }

  .card {
    padding-left: 11vw;
    padding-right: 11vw;
  }

  .div-block-5.no-padding {
    flex-direction: column;
    align-content: start;
    align-items: center;
    justify-items: center;
    margin-top: 40px;
    display: flex;
  }

  .paragraph {
    font-size: 1.2em;
  }

  .paragraph.small {
    font-size: .7em;
  }

  .heading {
    font-size: 1.5em;
  }

  .button-explore {
    display: none;
  }

  .parallax-cover {
    width: 100vw;
    height: 100vh;
    display: none;
  }

  .parallax-images {
    overflow: hidden;
  }

  .roof {
    z-index: 5;
    display: block;
    top: -16%;
    overflow: visible;
  }

  .roof.mobile {
    display: block;
  }

  .tv {
    top: 12%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    transform: scale(1.5);
  }

  .poster {
    top: 7%;
    transform: scale(1.5);
  }

  .parallax-mobile {
    height: 100vh;
    padding-top: 0;
    overflow: hidden;
  }

  .sticky-mobile-container {
    z-index: 2;
    height: 100vh;
    padding-top: 0;
    overflow: hidden;
  }

  .team-container {
    width: 90vw;
  }

  .floor-1, .bed, .computer {
    display: none;
  }

  .heading-3 {
    font-size: 1.2em;
  }

  .floor-2 {
    display: none;
  }

  .heading-4 {
    font-size: 1.5em;
  }

  .heading-5 {
    font-size: 1em;
  }

  .menu-button {
    top: 2%;
    right: 0%;
  }

  .menu-button.hide {
    display: flex;
  }

  .full-screen-menu {
    display: none;
  }

  .nav-link.large {
    font-size: 2.2em;
  }

  .company-p {
    width: 100%;
    display: inline;
  }

  .div-block-8 {
    width: 100%;
  }

  .link-block {
    width: 100%;
    object-fit: fill;
    position: static;
    overflow: visible;
  }
}

#w-node-e0944853-24d6-fb55-96ae-af5a2462fa66-28149125 {
  grid-area: 1 / 2 / 2 / 23;
}

#w-node-e0944853-24d6-fb55-96ae-af5a2462fa67-28149125 {
  grid-area: 2 / 1 / 8 / 2;
}

#w-node-e0944853-24d6-fb55-96ae-af5a2462fa68-28149125 {
  grid-area: 2 / 23 / 8 / 24;
}

#w-node-e0944853-24d6-fb55-96ae-af5a2462fa69-28149125 {
  grid-area: 8 / 2 / 9 / 23;
}

#w-node-e0944853-24d6-fb55-96ae-af5a2462fa6a-28149125 {
  grid-area: 7 / 2 / 8 / 23;
}

#w-node-e0944853-24d6-fb55-96ae-af5a2462fa6b-28149125 {
  grid-area: 2 / 22 / 7 / 23;
}

#w-node-e0944853-24d6-fb55-96ae-af5a2462fa6c-28149125 {
  grid-area: 2 / 2 / 7 / 22;
}

#w-node-_5039cdd0-d516-8b3e-a4df-2222ff7d0f55-ff7d0f54 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5039cdd0-d516-8b3e-a4df-2222ff7d0f57-ff7d0f54 {
  grid-area: 1 / 2 / 2 / 23;
}

#w-node-_5039cdd0-d516-8b3e-a4df-2222ff7d0f58-ff7d0f54 {
  grid-area: 2 / 1 / 8 / 2;
}

#w-node-_5039cdd0-d516-8b3e-a4df-2222ff7d0f59-ff7d0f54 {
  grid-area: 2 / 23 / 8 / 24;
}

#w-node-_5039cdd0-d516-8b3e-a4df-2222ff7d0f5a-ff7d0f54 {
  grid-area: 8 / 2 / 9 / 23;
}

#w-node-_5039cdd0-d516-8b3e-a4df-2222ff7d0f5b-ff7d0f54 {
  grid-area: 7 / 2 / 8 / 23;
}

#w-node-_5039cdd0-d516-8b3e-a4df-2222ff7d0f5c-ff7d0f54 {
  grid-area: 2 / 22 / 7 / 23;
}

#w-node-_5039cdd0-d516-8b3e-a4df-2222ff7d0f5d-ff7d0f54 {
  grid-area: 2 / 2 / 7 / 22;
}

#w-node-_5039cdd0-d516-8b3e-a4df-2222ff7d0f60-ff7d0f54 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5039cdd0-d516-8b3e-a4df-2222ff7d0f62-ff7d0f54 {
  grid-area: 1 / 2 / 2 / 23;
}

#w-node-_5039cdd0-d516-8b3e-a4df-2222ff7d0f63-ff7d0f54 {
  grid-area: 2 / 1 / 8 / 2;
}

#w-node-_5039cdd0-d516-8b3e-a4df-2222ff7d0f64-ff7d0f54 {
  grid-area: 2 / 23 / 8 / 24;
}

#w-node-_5039cdd0-d516-8b3e-a4df-2222ff7d0f65-ff7d0f54 {
  grid-area: 8 / 2 / 9 / 23;
}

#w-node-_5039cdd0-d516-8b3e-a4df-2222ff7d0f66-ff7d0f54 {
  grid-area: 7 / 2 / 8 / 23;
}

#w-node-_5039cdd0-d516-8b3e-a4df-2222ff7d0f67-ff7d0f54 {
  grid-area: 2 / 22 / 7 / 23;
}

#w-node-_5039cdd0-d516-8b3e-a4df-2222ff7d0f68-ff7d0f54 {
  grid-area: 2 / 2 / 7 / 22;
}

#w-node-_5bbe24fe-1848-7eac-9bb4-d1892f6ae4d9-2f6ae4c0 {
  grid-area: 1 / 2 / 2 / 23;
}

#w-node-_5bbe24fe-1848-7eac-9bb4-d1892f6ae4da-2f6ae4c0 {
  grid-area: 2 / 1 / 8 / 2;
}

#w-node-_5bbe24fe-1848-7eac-9bb4-d1892f6ae4db-2f6ae4c0 {
  grid-area: 2 / 23 / 8 / 24;
}

#w-node-_5bbe24fe-1848-7eac-9bb4-d1892f6ae4dc-2f6ae4c0 {
  grid-area: 8 / 2 / 9 / 23;
}

#w-node-_5bbe24fe-1848-7eac-9bb4-d1892f6ae4dd-2f6ae4c0 {
  grid-area: 7 / 2 / 8 / 23;
}

#w-node-_5bbe24fe-1848-7eac-9bb4-d1892f6ae4de-2f6ae4c0 {
  grid-area: 2 / 22 / 7 / 23;
}

#w-node-_5bbe24fe-1848-7eac-9bb4-d1892f6ae4df-2f6ae4c0 {
  grid-area: 2 / 2 / 7 / 22;
}

#w-node-_5bbe24fe-1848-7eac-9bb4-d1892f6ae4e4-2f6ae4c0 {
  grid-area: 1 / 2 / 2 / 23;
}

#w-node-_5bbe24fe-1848-7eac-9bb4-d1892f6ae4e5-2f6ae4c0 {
  grid-area: 2 / 1 / 8 / 2;
}

#w-node-_5bbe24fe-1848-7eac-9bb4-d1892f6ae4e6-2f6ae4c0 {
  grid-area: 2 / 23 / 8 / 24;
}

#w-node-_5bbe24fe-1848-7eac-9bb4-d1892f6ae4e7-2f6ae4c0 {
  grid-area: 8 / 2 / 9 / 23;
}

#w-node-_5bbe24fe-1848-7eac-9bb4-d1892f6ae4e8-2f6ae4c0 {
  grid-area: 7 / 2 / 8 / 23;
}

#w-node-_5bbe24fe-1848-7eac-9bb4-d1892f6ae4e9-2f6ae4c0 {
  grid-area: 2 / 22 / 7 / 23;
}

#w-node-_5bbe24fe-1848-7eac-9bb4-d1892f6ae4ea-2f6ae4c0 {
  grid-area: 2 / 2 / 7 / 22;
}

#w-node-e4850886-50e4-bbef-7a40-f3edd7ddeb37-2814912d {
  grid-area: 1 / 2 / 2 / 23;
}

#w-node-e4850886-50e4-bbef-7a40-f3edd7ddeb38-2814912d {
  grid-area: 2 / 1 / 8 / 2;
}

#w-node-e4850886-50e4-bbef-7a40-f3edd7ddeb39-2814912d {
  grid-area: 2 / 23 / 8 / 24;
}

#w-node-e4850886-50e4-bbef-7a40-f3edd7ddeb3a-2814912d {
  grid-area: 8 / 2 / 9 / 23;
}

#w-node-e4850886-50e4-bbef-7a40-f3edd7ddeb3b-2814912d {
  grid-area: 7 / 2 / 8 / 23;
}

#w-node-e4850886-50e4-bbef-7a40-f3edd7ddeb3c-2814912d {
  grid-area: 2 / 22 / 7 / 23;
}

#w-node-e4850886-50e4-bbef-7a40-f3edd7ddeb3d-2814912d {
  grid-area: 2 / 2 / 7 / 22;
}


@font-face {
  font-family: 'Pressstart2p';
  src: url('../fonts/PressStart2P-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Grifter';
  src: url('../images/') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}