:root {
  --base: #2e2d2a;
  --text-green: #7eaf78;
  --base-02: #436644;
  --base-03: #3f5640;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.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(--base);
  overflow: hidden;
}

.retro-tv {
  z-index: 3;
  pointer-events: none;
  color: #3330;
  flex-flow: column;
  flex: 0 auto;
  order: 1;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  width: 100vw;
  max-width: none;
  height: 100vh;
  display: flex;
  position: absolute;
}

.flex-wrapper {
  box-sizing: border-box;
  aspect-ratio: auto;
  object-fit: fill;
  background-image: url('../images/Persona-TV-BASE-alt.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  justify-content: space-between;
  align-items: stretch;
  width: auto;
  max-width: 100vw;
  height: 100vh;
  max-height: 100vh;
}

.hero {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: var(--text-green);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100vw;
  height: 100vh;
  font-family: Martian Mono, sans-serif;
  display: flex;
}

.psuedo-nav {
  opacity: .6;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 0;
  padding-top: 64px;
  padding-left: 64px;
  padding-right: 64px;
}

.psudo-nav-element {
  color: var(--text-green);
  text-transform: uppercase;
  flex: 1;
}

.psudo-nav-element.center {
  text-align: center;
}

.psudo-nav-element.right {
  text-align: right;
}

.text-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: center;
  max-width: 960px;
  margin-top: 12vh;
}

.h1 {
  text-align: center;
  font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, sans-serif;
  font-size: 96px;
  line-height: 86px;
}

.paragraph {
  text-align: center;
}

.paragraph.home-p {
  text-transform: uppercase;
  max-width: 60vw;
}

.btn-group {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
}

.btn {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 1px solid var(--text-green);
  background-color: var(--base-02);
  border-radius: 8px;
  padding: 8px 12px;
  text-decoration: none;
  display: flex;
}

.btn:hover, .btn:active, .btn:focus {
  background-color: var(--base-03);
}

.btn.alt {
  border-style: solid;
  border-color: var(--base-03);
  background-color: var(--base-03);
}

.btn.alt:hover, .btn.alt:active, .btn.alt:focus {
  background-color: var(--base-02);
}

.btn.alt.in-menu {
  width: 100%;
}

.btn.alt.in-menu:hover, .btn.alt.in-menu:focus {
  background-color: var(--base-02);
}

.btn.dropdown {
  z-index: 1;
  padding: 0;
}

.pre-header {
  font-size: 24px;
  line-height: 32px;
}

.title-wrapper {
  justify-content: flex-start;
  align-items: center;
}

.preview {
  background-image: url('../images/demo-preview.png');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  flex: 1;
  width: 100%;
  max-width: none;
  overflow: visible;
}

.link {
  color: var(--text-green);
  text-decoration: none;
}

.text-block {
  color: var(--text-green);
  text-transform: uppercase;
}

.text-block-2, .icon {
  color: var(--text-green);
}

.dropdown-toggle {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  padding: 8px 12px;
  display: flex;
}

.dropdown-toggle.w--open {
  padding: 8px 12px;
}

.dropdown-list {
  background-color: var(--base-03);
  border-radius: 8px;
  top: 1px;
}

.dropdown-list.w--open {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 4px;
  display: flex;
  top: 40px;
  left: -1px;
}

.smaller {
  font-size: 10px;
  display: block;
}

.intro-animation {
  z-index: 2;
  background-color: var(--base);
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 64px;
  display: none;
  position: absolute;
  overflow: visible;
}

.lottie {
  width: 320px;
}

.image {
  box-sizing: border-box;
  aspect-ratio: auto;
  object-fit: fill;
  object-position: 50% 50%;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  display: block;
}

@media screen and (max-width: 991px) {
  .psudo-nav-element.center {
    text-align: right;
  }

  .psudo-nav-element.right {
    display: none;
  }

  .text-wrapper {
    margin-top: 96px;
  }

  .h1 {
    font-size: 64px;
    line-height: 60px;
  }

  .paragraph.home-p {
    max-width: 80vw;
  }

  .preview {
    max-width: 960px;
  }

  .intro-animation {
    height: 230%;
    padding-top: 32px;
    padding-left: 32px;
  }
}

@media screen and (max-width: 767px) {
  .hero {
    height: 100vh;
  }

  .psuedo-nav {
    padding-left: 32px;
    padding-right: 32px;
  }

  .text-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }

  .h1 {
    font-size: 48px;
    line-height: 44px;
  }

  .pre-header {
    font-size: 18px;
  }

  .preview {
    flex: 1;
    height: 100%;
  }
}

@media screen and (max-width: 479px) {
  .body {
    overflow: scroll;
  }

  .retro-tv {
    display: flex;
  }

  .hero {
    height: auto;
  }

  .psuedo-nav {
    padding-left: 24px;
    padding-right: 24px;
  }

  .psudo-nav-element {
    font-size: 10px;
  }

  .text-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    margin-top: 64px;
  }

  .paragraph.home-p {
    max-width: 100%;
    font-size: 12px;
    line-height: 20px;
  }

  .btn-group {
    flex-flow: column;
    width: 100%;
  }

  .btn.alt {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .btn.dropdown {
    width: 100%;
  }

  .pre-header {
    font-size: 14px;
    line-height: 24px;
  }

  .preview {
    flex: none;
    height: 140px;
  }

  .dropdown-toggle {
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}


