html {
  scroll-padding-top: 150px;
  scroll-behavior: smooth; }
  html body {
    display: flex;
    justify-content: top;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    background-color: #14191c;
    width: 100%; }
  html * {
    margin: 0;
    padding: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }

/* width */
::-webkit-scrollbar {
  width: 5px; }

/* Track */
::-webkit-scrollbar-track {
  background: #14191c; }

/* Handle */
::-webkit-scrollbar-thumb {
  background: #333333;
  border-radius: 10px; }

.pad32 {
  padding: 0 32px 0 32px;
  width: 100%;
  display: grid;
  justify-content: center; }

.mainBody {
  width: 100%;
  height: 100%; }

.subBody {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  margin: 0;
  padding: 0;
  max-width: 1512px;
  margin: auto; }

.fadeContainer {
  position: sticky;
  height: 100vh;
  top: 0;
  width: 100%; }
  .fadeContainer span {
    color: #00a47e; }

.fadeTarget, .animationTarget {
  position: absolute;
  width: 100%;
  height: 100vh;
  opacity: 0.001;
  transition: 0.75s;
  background: #14191c; }

.fadeTarget {
  transition: none; }

.activeSlide {
  opacity: 1;
  top: 0;
  transition: 0.5s;
  z-index: 1; }

.scrollDown {
  width: 100%;
  position: sticky;
  bottom: 20px;
  display: flex;
  justify-content: center;
  z-index: 9000; }
  .scrollDown .downArrow {
    animation-name: bobb;
    animation-duration: 3.5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    height: 15px; }

@keyframes bobb {
  0% {
    transform: translate(0, 0px); }
  50% {
    transform: translate(0, -15px); }
  100% {
    transform: translate(0, 0px); } }

@media only screen and (min-width: 1080px) {
  .onlyMobile {
    display: none; } }

.onlyDesktop {
  display: none; }
  @media only screen and (min-width: 1080px) {
    .onlyDesktop {
      display: unset; } }

.radialBgContainer {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: -20;
  overflow: hidden; }
  .radialBgContainer .radialBackground {
    position: relative;
    height: 90%;
    width: 90%;
    min-width: 700px; }

h1 {
  font-family: "space grotesk", sans-serif;
  font-size: 40px;
  color: #f6ede5;
  font-weight: 500; }
  @media (min-width: 1080px) {
    h1 {
      font-size: 60px; } }

h2 {
  font-family: "space grotesk", sans-serif;
  font-size: 30px;
  color: #f6ede5;
  font-weight: 400; }
  @media only screen and (min-width: 1080px) {
    h2 {
      font-size: 45px; } }

h3 {
  font-family: "space grotesk", sans-serif;
  font-size: 28px;
  color: #f6ede5;
  font-weight: 400; }

h4 {
  font-family: "space grotesk", sans-serif;
  font-size: 20px;
  color: #f6ede5;
  font-weight: 400; }

a {
  font-family: "Inter", sans-serif;
  color: #f6ede5;
  text-decoration: none; }

p,
label,
li {
  font-family: "Inter", sans-serif;
  text-decoration: none;
  color: #f6ede5; }

p {
  font-size: 20px;
  line-height: 140%;
  text-decoration: none; }

ul {
  color: #f6ede5; }

.docHeroSection {
  position: sticky;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 1512px;
  top: 0;
  width: 100%;
  padding-left: 32px;
  padding-right: 32px;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  height: auto; }
  .docHeroSection .whitePaper-img {
    max-width: 700px;
    width: 100%;
    position: relative;
    z-index: -10;
    padding-top: 15%; }
    @media only screen and (min-width: 1080px) {
      .docHeroSection .whitePaper-img {
        padding-top: unset; } }
  .docHeroSection .tokenImage-group {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    max-width: 1100px; }
    .docHeroSection .tokenImage-group .mainImg {
      width: 100%;
      max-width: 300px;
      position: relative;
      z-index: -10;
      padding: 200px 0 30px 0; }
    .docHeroSection .tokenImage-group .sideImg {
      width: 100%;
      max-width: 250px;
      position: relative;
      z-index: -10;
      padding: 200px 0 30px 0; }
    .docHeroSection .tokenImage-group .tokenFloating, .docHeroSection .tokenImage-group .mainFloating {
      animation-iteration-count: infinite;
      animation-timing-function: ease-in-out;
      width: 100%; }
    .docHeroSection .tokenImage-group .tokenFloating {
      animation-name: tokenFloat;
      animation-duration: 13.5s; }

@keyframes tokenFloat {
  0% {
    transform: translate(0, 0px); }
  50% {
    transform: translate(0, 20px); }
  100% {
    transform: translate(0, 0px); } }
    .docHeroSection .tokenImage-group .mainFloating {
      animation-name: mainFloat;
      animation-duration: 9.5s; }

@keyframes mainFloat {
  0% {
    transform: translate(0, 0px); }
  50% {
    transform: translate(0, 20px); }
  100% {
    transform: translate(0, 0px); } }
  .docHeroSection h1 {
    width: 100%; }

.docTitle {
  padding-bottom: 30px; }

.docBodySection {
  width: 100%;
  padding-left: 32px;
  padding-right: 32px;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 50px;
  flex-direction: column;
  padding-top: 0; }
  @media only screen and (min-width: 1080px) {
    .docBodySection {
      flex-direction: row;
      padding-top: 100px; } }
  .docBodySection .docContent {
    padding-top: 100px;
    max-width: 780px; }
    @media only screen and (min-width: 1080px) {
      .docBodySection .docContent {
        padding-top: 0px; } }
    .docBodySection .docContent a {
      text-decoration: underline;
      color: #00a47e; }
    .docBodySection .docContent ul {
      margin-left: 30px; }
    .docBodySection .docContent ol {
      font-size: 30px; }
    .docBodySection .docContent h2 {
      padding-top: 52px; }

@media only screen and (min-width: 1080px) {
  .altDocHero .docUpperTextContainer {
    position: absolute;
    left: 11%;
    top: 20%;
    display: flex;
    flex-direction: column; } }

.altDocHero .docUpperTextContainer .docTitle {
  width: auto; }

.altDocHero .docUpperTextContainer .magicEdenButton {
  height: 48px;
  min-width: 287px;
  background: linear-gradient(-90deg, #1c584e 0%, #364e74 100%);
  border-radius: 50px;
  border: 1px solid #ffffff;
  padding: 0 50px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 300px;
  font-size: 16px;
  cursor: pointer; }
  .altDocHero .docUpperTextContainer .magicEdenButton:hover {
    transform: scale(1.03);
    transition: transform 100ms ease-in-out; }

.altDocBody .docContent {
  padding: 0px; }
  @media only screen and (min-width: 1080px) {
    .altDocBody .docContent .onlyMobile {
      display: none; } }

.altDocBody #section0 {
  padding: 0; }

aside {
  position: relative;
  width: 300px;
  height: 70vh;
  padding-right: 50px;
  margin-top: 20px;
  overflow-y: auto;
  overflow-x: hidden;
  border-style: solid;
  border-color: #989898;
  border-width: 0 0 0 1px;
  z-index: 10; }

.desktopIndex {
  display: none;
  width: auto;
  padding: 0 52px 0 52px; }
  .desktopIndex h2 {
    padding: 36px 0 8px 0; }
  .desktopIndex p,
  .desktopIndex li,
  .desktopIndex ul {
    color: #c3c1cd; }
  .desktopIndex a {
    color: #959fa4; }
  .desktopIndex ul {
    margin-left: 20px; }
  @media (min-width: 1080px) {
    .desktopIndex {
      display: flex; } }

.asideHolder {
  position: -webkit-sticky;
  position: sticky;
  display: flex;
  flex-direction: column;
  top: 10vh;
  width: 100%;
  height: 90vh;
  z-index: 0; }

aside ul li .active {
  font-weight: bolder;
  transform: scale(1.1);
  transform-origin: left;
  transition: transform 100ms ease-in-out; }

aside ul {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  padding-left: 20px;
  margin-left: 20px; }

aside ul li .indicator {
  cursor: pointer;
  display: block;
  height: auto;
  width: auto;
  padding: 6px 0 6px 0px; }

aside a {
  font-family: "inter", sans-serif;
  color: #959fa4; }

/* TRACKELEY */
#trackeley {
  height: 100px;
  width: 100px;
  /* background-color: red; */
  position: absolute;
  bottom: 0; }

.wpSectionContents {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 50; }

/* Font Family stuff */
/* font-family: 'Inter', sans-serif;
      font-family: 'Space Grotesk', sans-serif; */
.contactFormSection {
  position: sticky;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 1512px;
  top: 0;
  width: 100%;
  padding-left: 32px;
  padding-right: 32px;
  margin-top: 5vh;
  max-width: 800px;
  position: relative; }
  .contactFormSection h1 {
    width: 100%;
    text-align: left;
    padding-bottom: 16px; }
    @media only screen and (min-width: 720px) {
      .contactFormSection h1 {
        text-align: center; } }

form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 32px 0; }
  form input {
    padding: 0 20px; }
  form input,
  form textarea {
    height: 48px;
    width: 100%;
    min-width: 200px;
    border-radius: 5px;
    color: white;
    border: 1px solid #ffffff;
    background-color: transparent; }
  form input,
  form textarea,
  form button {
    margin: 0 0 16px 0;
    min-width: 287px;
    font-family: 'Space Grotesk'; }
  form label {
    margin-bottom: 6px; }
  form button {
    height: 48px;
    min-width: 287px;
    background: linear-gradient(-90deg, #1c584e 0%, #364e74 100%);
    border-radius: 50px;
    border: 1px solid #ffffff;
    padding: 0 50px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 300px;
    font-size: 16px;
    cursor: pointer;
    min-width: 100px; }
    form button:hover {
      transform: scale(1.03);
      transition: transform 100ms ease-in-out; }
  form .msgBody {
    height: 200px;
    padding: 20px; }
  form .grecaptcha-badge {
    display: none; }

h1 {
  font-family: "space grotesk", sans-serif;
  font-size: 40px;
  color: #f6ede5;
  font-weight: 500; }
  @media (min-width: 1080px) {
    h1 {
      font-size: 60px; } }

h2 {
  font-family: "space grotesk", sans-serif;
  font-size: 30px;
  color: #f6ede5;
  font-weight: 400; }
  @media only screen and (min-width: 1080px) {
    h2 {
      font-size: 45px; } }

h3 {
  font-family: "space grotesk", sans-serif;
  font-size: 28px;
  color: #f6ede5;
  font-weight: 400; }

h4 {
  font-family: "space grotesk", sans-serif;
  font-size: 20px;
  color: #f6ede5;
  font-weight: 400; }

a {
  font-family: "Inter", sans-serif;
  color: #f6ede5;
  text-decoration: none; }

p,
label,
li {
  font-family: "Inter", sans-serif;
  text-decoration: none;
  color: #f6ede5; }

p {
  font-size: 20px;
  line-height: 140%;
  text-decoration: none; }

ul {
  color: #f6ede5; }

.fixedNav {
  position: fixed;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  background-color: #1d2429;
  z-index: 50; }
  .fixedNav .navSpacer {
    height: 80px; }
  .fixedNav .mobileIndex {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start; }
    @media (min-width: 1080px) {
      .fixedNav .mobileIndex {
        display: none; } }
    .fixedNav .mobileIndex ul {
      list-style-type: none; }
      .fixedNav .mobileIndex ul li {
        padding-bottom: 18px; }
    .fixedNav .mobileIndex h4 {
      font-size: 20px;
      color: #959fa4; }
    .fixedNav .mobileIndex #indexPointer {
      height: 7px;
      transition: all 500ms ease-in-out; }
    .fixedNav .mobileIndex #indexPointer.active {
      transform: rotate(180deg);
      transition: all 500ms ease-in-out; }
    .fixedNav .mobileIndex #accordionBtn {
      position: relative;
      height: 48px;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 50px;
      z-index: 20;
      background-color: #2e3b42;
      transition: all 500ms ease-in-out; }
    .fixedNav .mobileIndex .spacerContain {
      width: 100%;
      position: absolute; }
    .fixedNav .mobileIndex .spacer {
      height: 10px; }
    .fixedNav .mobileIndex #accordionBody {
      position: relative;
      background-color: #090d0f;
      width: 100%;
      padding: 68px 0px 10px 56px;
      border: 1px solid #ffffff;
      border-color: #959fa4;
      border-width: 0 0 3px 0;
      font-size: 18px;
      z-index: 10; }
      .fixedNav .mobileIndex #accordionBody .mobileList {
        height: 100vh;
        overflow-y: scroll; }
        @media only screen and (max-height: 750px) {
          .fixedNav .mobileIndex #accordionBody .mobileList {
            height: 75vh; } }

.voxcellMarketingSection {
  position: sticky;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 1512px;
  top: 0;
  justify-content: flex-end;
  overflow: hidden;
  z-index: 300;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 164, 126, 0.3) 0%, rgba(255, 255, 255, 0) 100%); }
  .voxcellMarketingSection .voxcellMarketingWrapper {
    min-height: 135vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
    max-width: 1300px;
    width: 100%; }
    .voxcellMarketingSection .voxcellMarketingWrapper .voxcellText {
      text-align: center;
      padding: 0 40px;
      max-width: 760px; }
      .voxcellMarketingSection .voxcellMarketingWrapper .voxcellText h1 {
        font-size: 34px; }
        @media only screen and (min-width: 720px) {
          .voxcellMarketingSection .voxcellMarketingWrapper .voxcellText h1 {
            font-size: 80px; } }
      .voxcellMarketingSection .voxcellMarketingWrapper .voxcellText p {
        font-family: "space grotesk", sans-serif;
        font-size: 15px; }
        @media only screen and (min-width: 720px) {
          .voxcellMarketingSection .voxcellMarketingWrapper .voxcellText p {
            font-size: 25px; } }
      .voxcellMarketingSection .voxcellMarketingWrapper .voxcellText h1, .voxcellMarketingSection .voxcellMarketingWrapper .voxcellText p {
        padding-bottom: 20px; }
    .voxcellMarketingSection .voxcellMarketingWrapper .voxcellLinkContainer {
      display: flex;
      padding-top: 15px;
      justify-content: center; }
      .voxcellMarketingSection .voxcellMarketingWrapper .voxcellLinkContainer .voxcellImg {
        padding: 0 8px; }
        @media only screen and (min-width: 720px) {
          .voxcellMarketingSection .voxcellMarketingWrapper .voxcellLinkContainer .voxcellImg {
            padding: 10px;
            width: unset; } }
    .voxcellMarketingSection .voxcellMarketingWrapper .voxcellArt {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 48vh;
      width: 100%; }
      @media only screen and (max-height: 950px) {
        .voxcellMarketingSection .voxcellMarketingWrapper .voxcellArt {
          max-height: 300px; } }
      .voxcellMarketingSection .voxcellMarketingWrapper .voxcellArt .voxcellsContainer {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 0;
        overflow: hidden; }
        @media only screen and (min-width: 720px) {
          .voxcellMarketingSection .voxcellMarketingWrapper .voxcellArt .voxcellsContainer {
            overflow: unset; } }
        .voxcellMarketingSection .voxcellMarketingWrapper .voxcellArt .voxcellsContainer img:nth-child(1) {
          position: relative;
          left: 0%; }
          @media screen and (min-width: 1080px) {
            .voxcellMarketingSection .voxcellMarketingWrapper .voxcellArt .voxcellsContainer img:nth-child(1) {
              left: 900px;
              top: 45%; } }
        .voxcellMarketingSection .voxcellMarketingWrapper .voxcellArt .voxcellsContainer img:nth-child(2) {
          position: relative;
          top: 40%;
          right: 150px; }
          @media screen and (min-width: 1080px) {
            .voxcellMarketingSection .voxcellMarketingWrapper .voxcellArt .voxcellsContainer img:nth-child(2) {
              top: 15%;
              right: 50px; } }
        .voxcellMarketingSection .voxcellMarketingWrapper .voxcellArt .voxcellsContainer img:nth-child(3) {
          position: relative;
          left: 85px;
          top: 20%; }
          @media screen and (min-width: 720px) {
            .voxcellMarketingSection .voxcellMarketingWrapper .voxcellArt .voxcellsContainer img:nth-child(3) {
              top: 25%;
              left: 270px; } }
          @media screen and (min-width: 1080px) {
            .voxcellMarketingSection .voxcellMarketingWrapper .voxcellArt .voxcellsContainer img:nth-child(3) {
              right: 110px;
              top: 48%;
              left: unset; } }
        .voxcellMarketingSection .voxcellMarketingWrapper .voxcellArt .voxcellsContainer img:nth-child(4) {
          position: relative;
          top: 25%;
          left: 285px; }
          @media screen and (min-width: 720px) {
            .voxcellMarketingSection .voxcellMarketingWrapper .voxcellArt .voxcellsContainer img:nth-child(4) {
              top: 60%;
              left: 75px; } }
          @media screen and (min-width: 1080px) {
            .voxcellMarketingSection .voxcellMarketingWrapper .voxcellArt .voxcellsContainer img:nth-child(4) {
              top: -18%;
              left: 390px; } }
        @media screen and (min-width: 1080px) {
          .voxcellMarketingSection .voxcellMarketingWrapper .voxcellArt .voxcellsContainer img:nth-child(5) {
            top: -25%;
            right: 500px;
            position: relative; } }
        .voxcellMarketingSection .voxcellMarketingWrapper .voxcellArt .voxcellsContainer .groupA {
          animation-name: midFloat;
          animation-duration: 10s;
          animation-iteration-count: infinite;
          animation-timing-function: ease-in-out;
          object-fit: contain; }

@keyframes midFloat {
  0% {
    transform: translate(0, 0px); }
  50% {
    transform: translate(0, 10px); }
  100% {
    transform: translate(0, 0px); } }
        .voxcellMarketingSection .voxcellMarketingWrapper .voxcellArt .voxcellsContainer .groupB {
          animation-name: rightFloat;
          animation-duration: 8s;
          animation-iteration-count: infinite;
          animation-timing-function: ease-in-out; }

@keyframes rightFloat {
  0% {
    transform: translate(0, 0px); }
  50% {
    transform: translate(0, 10px); }
  100% {
    transform: translate(0, 0px); } }
        .voxcellMarketingSection .voxcellMarketingWrapper .voxcellArt .voxcellsContainer .groupC {
          animation-name: leftFloat;
          animation-duration: 6.5s;
          animation-iteration-count: infinite;
          animation-timing-function: ease-in-out; }

@keyframes leftFloat {
  0% {
    transform: translate(0, 0px); }
  50% {
    transform: translate(0, 10px); }
  100% {
    transform: translate(0, 0px); } }
        .voxcellMarketingSection .voxcellMarketingWrapper .voxcellArt .voxcellsContainer .voxcells {
          height: 100px; }
          @media only screen and (min-width: 720px) and (max-width: 1080px) {
            .voxcellMarketingSection .voxcellMarketingWrapper .voxcellArt .voxcellsContainer .voxcells {
              height: 160px; } }
          @media only screen and (min-width: 1080px) {
            .voxcellMarketingSection .voxcellMarketingWrapper .voxcellArt .voxcellsContainer .voxcells {
              height: 185px; } }
      .voxcellMarketingSection .voxcellMarketingWrapper .voxcellArt .voxcellArtCenter {
        z-index: 500;
        height: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center; }
        .voxcellMarketingSection .voxcellMarketingWrapper .voxcellArt .voxcellArtCenter img {
          width: 100%;
          object-fit: contain;
          height: 100%; }

.TIV-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding: 0 6.5%;
  height: 100vh; }
  @media only screen and (min-width: 1080px) {
    .TIV-section {
      flex-direction: column-reverse; }
      .TIV-section h2 {
        font-size: 80px;
        text-align: center; } }

.voxelVision-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 6.5%; }

.navSpacer {
  position: relative;
  height: 80px;
  width: 100%;
  z-index: -50; }

.avatarHeroSection {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  height: 700vh;
  width: 100%;
  bottom: 100vh;
  z-index: 0;
  opacity: 0;
  margin-bottom: -200vh; }
  .avatarHeroSection h1 {
    font-size: 30px; }
  .avatarHeroSection .placeholderImg {
    height: 100%;
    position: absolute; }
  .avatarHeroSection .animationContainer {
    position: -webkit-sticky;
    position: sticky;
    height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    top: 2.5vh;
    width: 100%;
    z-index: 0;
    overflow: hidden; }
    .avatarHeroSection .animationContainer .textContainer {
      position: absolute;
      height: 100vh;
      width: 100%;
      top: 3em; }
      @media only screen and (min-width: 1080px) {
        .avatarHeroSection .animationContainer .textContainer {
          height: 100vh;
          top: 0; } }
      .avatarHeroSection .animationContainer .textContainer .heroTitle {
        position: absolute;
        text-align: center;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        height: 80px; }
        @media (min-width: 1080px) {
          .avatarHeroSection .animationContainer .textContainer .heroTitle {
            font-size: 40px;
            height: 100px; } }
      .avatarHeroSection .animationContainer .textContainer .animationText {
        position: absolute;
        height: 80px;
        width: 100%;
        top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        font-size: 20px; }
        @media (min-width: 1080px) {
          .avatarHeroSection .animationContainer .textContainer .animationText {
            height: 100px;
            font-size: 40px; } }

.fadeOut {
  transition: 0.75s ease-in;
  opacity: 1; }

.investSection {
  padding: 0 6.5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  align-items: center; }
  @media only screen and (min-width: 1080px) {
    .investSection h2 {
      font-size: 80px;
      text-align: center; } }
  .investSection .investButtons {
    display: flex;
    justify-content: center;
    max-width: 475px;
    width: 100%; }
    @media only screen and (min-width: 1080px) {
      .investSection .investButtons {
        width: 475px; } }
    .investSection .investButtons a {
      width: 100%;
      height: 100%;
      min-width: unset;
      max-width: 475px;
      padding: 0 5%; }
      .investSection .investButtons a img {
        width: inherit;
        max-width: 610px;
        height: unset; }
  .investSection .whitePaperButton {
    height: 48px;
    min-width: 287px;
    background: linear-gradient(-90deg, #1c584e 0%, #364e74 100%);
    border-radius: 50px;
    border: 1px solid #ffffff;
    padding: 0 50px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 300px;
    font-size: 16px;
    cursor: pointer; }
    .investSection .whitePaperButton:hover {
      transform: scale(1.03);
      transition: transform 100ms ease-in-out; }
  .investSection .mainImage {
    width: 100%;
    max-width: 610px; }

.whitePaperHero {
  width: 100%; }
  .whitePaperHero .heroSection {
    position: sticky;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 1512px;
    top: 0;
    height: 65vh;
    position: relative;
    top: 5em; }
    @media only screen and (min-width: 1080px) {
      .whitePaperHero .heroSection .heroMobile {
        display: none; }
      .whitePaperHero .heroSection .radialBgContainer {
        justify-content: flex-start; } }
    .whitePaperHero .heroSection .heroDesktop {
      display: none; }
      @media only screen and (min-width: 1080px) {
        .whitePaperHero .heroSection .heroDesktop {
          display: flex;
          max-height: 400px;
          max-width: 800px;
          bottom: 5%;
          margin-top: 0; } }
    .whitePaperHero .heroSection .heroVoxcells {
      position: relative;
      width: 100%;
      height: auto;
      margin-top: 32px;
      display: flex;
      bottom: -60px; }
      @media only screen and (min-width: 720px) and (max-width: 1080px) {
        .whitePaperHero .heroSection .heroVoxcells {
          bottom: 0; } }
      @media only screen and (min-width: 1080px) {
        .whitePaperHero .heroSection .heroVoxcells {
          bottom: 5%; } }
      .whitePaperHero .heroSection .heroVoxcells .mobileVoxcells {
        height: 65%;
        margin: auto; }
        @media only screen and (min-width: 720px) and (max-width: 1080px) {
          .whitePaperHero .heroSection .heroVoxcells .mobileVoxcells {
            height: 80%; } }
      .whitePaperHero .heroSection .heroVoxcells .leftCell {
        animation-name: leftFloat;
        animation-duration: 10s;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out; }

@keyframes leftFloat {
  0% {
    transform: translate(0, 0px); }
  50% {
    transform: translate(0, 10px); }
  100% {
    transform: translate(0, 0px); } }
      .whitePaperHero .heroSection .heroVoxcells .midCell {
        position: absolute;
        top: -40%;
        animation-name: midFloat;
        animation-duration: 13.5s;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out;
        width: 100%;
        object-fit: contain; }

@keyframes midFloat {
  0% {
    transform: translate(0, 0px); }
  50% {
    transform: translate(0, 10px); }
  100% {
    transform: translate(0, 0px); } }
        @media only screen and (min-width: 1080px) {
          .whitePaperHero .heroSection .heroVoxcells .midCell {
            position: relative;
            width: auto;
            object-fit: unset;
            top: -45%; } }
      .whitePaperHero .heroSection .heroVoxcells .rightCell {
        animation-name: rightFloat;
        animation-duration: 15s;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out; }

@keyframes rightFloat {
  0% {
    transform: translate(0, 0px); }
  50% {
    transform: translate(0, 10px); }
  100% {
    transform: translate(0, 0px); } }
    .whitePaperHero .heroSection .heroCtaBtn {
      height: 48px;
      min-width: 287px;
      background: linear-gradient(-90deg, #1c584e 0%, #364e74 100%);
      border-radius: 50px;
      border: 1px solid #ffffff;
      padding: 0 50px;
      color: #ffffff;
      display: flex;
      justify-content: center;
      align-items: center;
      max-width: 300px;
      font-size: 16px;
      cursor: pointer;
      margin-top: 32px; }
      .whitePaperHero .heroSection .heroCtaBtn:hover {
        transform: scale(1.03);
        transition: transform 100ms ease-in-out; }

.footer {
  border: #4f4f4f;
  border-style: solid;
  border-width: 3px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  width: 100vw;
  max-height: 125px;
  z-index: 50;
  padding: 20px 32px 15px 32px;
  background-color: #070707; }
  @media only screen and (min-width: 1080px) {
    .footer {
      flex-direction: row-reverse;
      min-height: 265px;
      flex: 33%; } }
  @media only screen and (min-width: 720px) and (max-width: 1080px) {
    .footer {
      align-items: flex-start; } }
  .footer p,
  .footer a {
    color: #959fa4;
    font-size: 16px; }
  .footer ul a {
    padding-left: 0;
    padding-right: 16px;
    margin-right: 16px;
    border-width: 0 1px 0 0;
    border-style: solid;
    border-color: #959fa4;
    line-height: 150%;
    color: #959fa4; }
  .footer .footerTop, .footer .footerBottom, .footer .footerMid {
    max-width: 1512px;
    width: 100%; }
    @media only screen and (min-width: 1080px) {
      .footer .footerTop, .footer .footerBottom, .footer .footerMid {
        max-width: 504px; } }
  .footer .footerTop {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    position: relative;
    height: 36%;
    width: 100%; }
    @media only screen and (min-width: 1080px) {
      .footer .footerTop {
        align-items: flex-end;
        max-width: 400px; } }
  @media only screen and (min-width: 1080px) {
    .footer .footerMid {
      text-align: center; } }
  .footer .footerBottom {
    display: flex;
    justify-content: space-between;
    position: relative;
    height: 36%;
    width: 100%;
    flex-direction: column; }
  .footer .pageLinkFooter {
    font-size: 16px;
    font-family: "Inter", sans-serif;
    text-decoration: none;
    padding: 0 40px 0 0;
    font-weight: bold; }
  .footer .footerSocialsHolder {
    position: relative; }
  .footer .copyright {
    position: relative; }
    @media only screen and (min-width: 1080px) {
      .footer .copyright {
        width: 50%; } }
  .footer ul {
    width: 100%;
    position: relative;
    margin: 10px 0; }
    .footer ul a:last-child {
      border: none;
      margin: 0;
      padding: 0; }
  .footer .socialIconFooter {
    padding: 0 32px 0 0;
    height: 24px; }
  .footer .pageLinksFooterHolder {
    position: relative;
    display: none; }

@media only screen and (min-width: 720px) and (max-width: 1080px) {
  .newsletterSection {
    padding: 0 32px; } }

.newsletterSection #mc_embed_signup {
  font-family: "space grotesk", sans-serif;
  width: 100%;
  display: flex;
  flex-direction: column;
  max-width: 900px;
  font-size: 10px; }
  @media only screen and (min-width: 720px) {
    .newsletterSection #mc_embed_signup {
      width: 100%; } }
  @media only screen and (min-width: 720px) and (max-width: 1080px) {
    .newsletterSection #mc_embed_signup #mc_embed_signup_scroll {
      width: 100%; } }
  .newsletterSection #mc_embed_signup #mc_embed_signup_scroll .mailChimpTitle {
    font-size: 26px;
    color: white;
    font-family: "space grotesk", sans-serif;
    padding-bottom: 16px;
    font-weight: 400;
    text-align: left; }
  .newsletterSection #mc_embed_signup #mc_embed_signup_scroll .mc-field-group {
    display: flex;
    justify-content: space-between;
    font-family: "inter", sans-serif;
    flex-direction: column;
    align-items: flex-start; }
    @media only screen and (min-width: 720px) {
      .newsletterSection #mc_embed_signup #mc_embed_signup_scroll .mc-field-group {
        flex-direction: row;
        width: 100%; } }

#mce-EMAIL {
  height: 50px;
  width: 100%;
  max-width: 450px;
  padding-left: 10px;
  flex-grow: 1;
  font-size: 16px;
  border-style: solid;
  border-color: #ffffff;
  border-width: 1px;
  border-radius: 5px;
  background-color: transparent; }

.borderRadius {
  border-radius: 50px;
  margin-left: 32px;
  width: auto; }

/* MAILCHIMP WORKAROUND CODE */
#mc_embed_signup div.mce_inline_error {
  padding: 5px 0 !important;
  z-index: 1000 !important;
  color: #af0202 !important;
  font-family: "inter", sans-serif !important;
  position: absolute !important;
  clear: none !important;
  background-color: transparent !important;
  position: absolute !important;
  margin-top: 50px !important; }

.mcResponses {
  padding: 10px 0 10px 0;
  position: absolute;
  font-family: "inter", sans-serif !important;
  color: #444444; }

.response {
  display: none; }

.mc-field-group::placeholder {
  color: #ffffff !important; }

#mc-embedded-subscribe {
  height: 48px;
  min-width: 287px;
  background: linear-gradient(-90deg, #1c584e 0%, #364e74 100%);
  border-radius: 50px;
  border: 1px solid #ffffff;
  padding: 0 50px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 300px;
  font-size: 16px;
  cursor: pointer; }
  #mc-embedded-subscribe:hover {
    transform: scale(1.03);
    transition: transform 100ms ease-in-out; }
  @media only screen and (min-width: 720px) {
    #mc-embedded-subscribe {
      margin: 0;
      margin-left: 20px;
      width: 25%; } }

.side-nav {
  position: sticky;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  top: 40px;
  min-height: 0px;
  height: 0;
  width: 100vw;
  padding: 0 32px;
  z-index: 2000; }
  @media only screen and (min-width: 1512px) {
    .side-nav {
      max-width: unset; } }
  .side-nav .side-nav__logo {
    position: absolute;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    width: 100vw;
    padding: 0 32px;
    z-index: 2000; }
    .side-nav .side-nav__logo a {
      color: #F6ECE5; }
    .side-nav .side-nav__logo .navbarLeft {
      display: flex;
      align-items: center;
      padding-left: 32px; }
      .side-nav .side-nav__logo .navbarLeft .logo {
        height: 32px;
        margin-bottom: -4px; }
      .side-nav .side-nav__logo .navbarLeft .logoText {
        font-size: 24px;
        font-weight: bold;
        padding-bottom: 6px;
        padding-left: 6px;
        color: #F6ECE5; }
  .side-nav a {
    color: #F6ECE5; }
  .side-nav .hamburger {
    display: flex;
    align-items: center;
    width: 36px;
    height: 26px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index: 10000; }
    .side-nav .hamburger span {
      display: block;
      position: absolute;
      height: 1px;
      width: 36px;
      background: #F6ECE5;
      opacity: 1;
      left: 0;
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-transition: .25s ease-in-out;
      -moz-transition: .25s ease-in-out;
      -o-transition: .25s ease-in-out;
      transition: .25s ease-in-out; }
      .side-nav .hamburger span:nth-child(1) {
        top: 0px; }
      .side-nav .hamburger span:nth-child(2), .side-nav .hamburger span:nth-child(3) {
        top: 12px; }
      .side-nav .hamburger span:nth-child(4) {
        top: 24px; }
  .side-nav .takeOut span:nth-child(1) {
    top: 12px;
    width: 0%;
    left: 50%; }
  .side-nav .takeOut span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg); }
  .side-nav .takeOut span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg); }
  .side-nav .takeOut span:nth-child(4) {
    top: 24px;
    width: 0%;
    left: 50%; }

.sideNavMenu {
  position: fixed;
  height: 0vh;
  width: 100%;
  transition: 1s;
  overflow: hidden;
  z-index: 1000;
  background-color: #040505;
  touch-action: none;
  justify-content: center; }
  @media only screen and (min-width: 1080px) {
    .sideNavMenu {
      height: 100vh;
      width: 33%;
      right: -50%; } }
  .sideNavMenu .sideNav-socials__container {
    display: grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    width: 175px; }
    .sideNavMenu .sideNav-socials__container img {
      width: 30px;
      padding-top: 15px; }
  .sideNavMenu ul {
    display: flex;
    flex-direction: column;
    height: auto;
    list-style: none;
    opacity: 0;
    transition: 1s; }
    .sideNavMenu ul li {
      font-size: 25px;
      font-family: "space grotesk", sans-serif;
      font-weight: bold;
      padding-bottom: 30px; }
      .sideNavMenu ul li a {
        color: #F6ECE5; }
  .sideNavMenu .sideNav-bottom__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    bottom: 25px;
    width: 100%;
    max-width: 450px; }
    .sideNavMenu .sideNav-bottom__container a:nth-child(2) {
      padding: 10px 0; }
    @media only screen and (min-width: 1080px) {
      .sideNavMenu .sideNav-bottom__container {
        flex-direction: row;
        justify-content: space-evenly; } }

.hamburgerHelper {
  display: none; }

.shinyBurger {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  overflow: hidden; }
  @media only screen and (min-width: 1080px) {
    .shinyBurger {
      right: 0; } }
  .shinyBurger ul {
    opacity: 1; }

.navbar {
  position: absolute;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
  width: 100vw;
  max-width: 1512px;
  padding: 0 32px;
  z-index: 2000; }
  .navbar a {
    color: #F6ECE5; }
  .navbar .navbarLeft {
    display: flex;
    align-items: center; }
    .navbar .navbarLeft .logo {
      height: 32px;
      margin-bottom: -4px; }
    .navbar .navbarLeft .logoText {
      font-size: 24px;
      font-weight: bold;
      padding-bottom: 6px;
      padding-left: 6px;
      color: #F6ECE5; }

.navbar {
  position: absolute;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
  width: 100vw;
  max-width: 1512px;
  padding: 0 32px;
  z-index: 2000; }
  .navbar a {
    color: #F6ECE5; }
  .navbar .navbarLeft {
    display: flex;
    align-items: center; }
    .navbar .navbarLeft .logo {
      height: 32px;
      margin-bottom: -4px; }
    .navbar .navbarLeft .logoText {
      font-size: 24px;
      font-weight: bold;
      padding-bottom: 6px;
      padding-left: 6px;
      color: #F6ECE5; }
  .navbar .navbarCenter {
    display: none; }
    @media only screen and (min-width: 1080px) {
      .navbar .navbarCenter {
        display: block; }
        .navbar .navbarCenter .pageLink {
          font-size: 16px;
          font-family: "Inter", sans-serif;
          text-decoration: none;
          padding: 0 32px 0 10px;
          font-weight: bolder; } }
    .navbar .navbarCenter .pageLink:last-child {
      padding-right: 0; }
  .navbar .navbarRight {
    display: none; }
    @media only screen and (min-width: 1080px) {
      .navbar .navbarRight {
        display: block; } }
    .navbar .navbarRight .socialIcon {
      height: 30px;
      padding: 10px 0 0 32px; }
  .navbar .hamburger {
    display: flex;
    align-items: center;
    width: 36px;
    height: 26px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer; }
    @media only screen and (min-width: 1080px) {
      .navbar .hamburger {
        display: none; } }
    .navbar .hamburger span {
      display: block;
      position: absolute;
      height: 1px;
      width: 36px;
      background: #F6ECE5;
      opacity: 1;
      left: 0;
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-transition: .25s ease-in-out;
      -moz-transition: .25s ease-in-out;
      -o-transition: .25s ease-in-out;
      transition: .25s ease-in-out; }
      .navbar .hamburger span:nth-child(1) {
        top: 0px; }
      .navbar .hamburger span:nth-child(2), .navbar .hamburger span:nth-child(3) {
        top: 12px; }
      .navbar .hamburger span:nth-child(4) {
        top: 24px; }
  .navbar .takeOut span:nth-child(1) {
    top: 12px;
    width: 0%;
    left: 50%; }
  .navbar .takeOut span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg); }
  .navbar .takeOut span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg); }
  .navbar .takeOut span:nth-child(4) {
    top: 24px;
    width: 0%;
    left: 50%; }

.ingredientsDropdown {
  position: fixed;
  height: 0vh;
  width: 100%;
  transition: 1.5s;
  overflow: hidden;
  z-index: 1000;
  background-color: #14191c;
  touch-action: none;
  justify-content: center; }
  .ingredientsDropdown ul {
    display: flex;
    flex-direction: column;
    height: auto;
    list-style: none;
    opacity: 0;
    transition: 1s; }
    .ingredientsDropdown ul li {
      font-size: 40px;
      font-family: "space grotesk", sans-serif;
      font-weight: bold;
      padding-bottom: 50px; }
      .ingredientsDropdown ul li a {
        color: #F6ECE5; }

.hamburgerHelper {
  display: none; }

.shinyBurger {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh; }
  .shinyBurger ul {
    opacity: 1; }

#s1Container {
  padding-top: 30px;
  text-align: center; }
  #s1Container .season-one__grid {
    display: flex;
    flex-wrap: wrap;
    max-width: 1512px;
    justify-content: center; }
    @media only screen and (min-width: 1080px) {
      #s1Container .season-one__grid {
        height: 100vh; } }
    #s1Container .season-one__grid .s1Wrapper {
      height: 100vh; }
      @media screen and (min-width: 1080px) {
        #s1Container .season-one__grid .s1Wrapper {
          width: 16%;
          height: auto; } }
      #s1Container .season-one__grid .s1Wrapper .s1-grid__item {
        color: white;
        text-align: center;
        position: relative;
        top: 15%; }
        #s1Container .season-one__grid .s1Wrapper .s1-grid__item img {
          width: 100%;
          object-fit: contain; }
        #s1Container .season-one__grid .s1Wrapper .s1-grid__item p {
          color: white;
          font-size: 20px; }

/*# sourceMappingURL=style.css.map */