@keyframes bgScroll {
  0% {
    background-position: 0px 0px;
  }
  100% {
    background-position: -300vw 0;
  }
}
@keyframes bgRandom {
  0% {
    background-position-y: 0px;
  }
  50% {
    background-position-y: 20px;
  }
  100% {
    background-position-y: 0px;
  }
}
@keyframes bgRandom2 {
  0% {
    background-position-x: 0px;
    background-position-y: 0px;
  }
  50% {
    background-position-x: 2px;
    background-position-y: 5px;
  }
  100% {
    background-position-x: 0px;
    background-position-y: 0px;
  }
}
.bg-container {
  position: fixed;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}

.bg-container #bg_colour {
  background: url("/img/bg/bg colour.png");
}

.bg-container #background_cityscape {
  background: url("/img/bg/background cityscape.png");
}

.bg-container #mid_trees {
  background: url("/img/bg/midtrees.png");
}

.bg-container #mid_robots {
  background: url("/img/bg/midrobot.png");
}

.bg-container #foreground {
  background: url("/img/bg/foreground.png");
  z-index: 0;
}

.bg-container #foreground_robot {
  background: url("/img/bg/foregroundrobot.png");
}

.bg-container #godrays {
  background: url("/img/bg/godrays.png");
}

.bg-container #godrays,
.bg-container #foreground_robot,
.bg-container #foreground,
.bg-container #mid_robots,
.bg-container #mid_trees,
.bg-container #background_cityscape,
.bg-container #bg_colour {
  position: absolute;
  height: 100%;
  width: 5000px;
  background-size: cover;
  animation: bgScroll 150s linear infinite;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

.bg-container #background_cityscape {
  animation: bgScroll 150s linear infinite, bgRandom 5s linear infinite;
}

.bg-container #godrays {
  animation: bgScroll 150s linear infinite, bgRandom 5s linear infinite;
}

.bg-container #foreground {
  animation: bgScroll 150s linear infinite, bgRandom 2s linear infinite, bgRandom2 2s linear infinite;
}

.bg-container #foreground_robot {
  animation: bgScroll 150s linear infinite, bgRandom 2s linear infinite, bgRandom2 2s linear infinite;
}

@media only screen and (max-width: 1000px) {
  .bg-container #godrays,
.bg-container #foreground_robot,
.bg-container #foreground,
.bg-container #mid_robots,
.bg-container #mid_trees,
.bg-container #background_cityscape,
.bg-container #bg_colour {
    background-size: contain;
  }
}
.logo {
  max-width: 600px;
  margin: auto;
}
.logo img {
  width: 100%;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

.textbox_container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: auto;
  justify-content: center;
}

.textbox {
  max-width: 600px;
  margin: auto;
  background-image: url("https://cdn.discordapp.com/attachments/913686029276418049/914281697338601512/ui.gif");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 80px;
  margin: -50px -50px 0 -50px;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

.textbox_content {
  padding: 0 9% 7% 9%;
  margin: 20px 5px 20px 5px;
  color: white;
  font-family: chevy-vector;
  font-size: 19px;
}

@media only screen and (max-width: 800px) {
  .textbox {
    padding: 70px 50px 100px 50px;
    margin: -50px -30px 0 -30px;
  }

  .textbox_content {
    font-size: 16px;
  }
}
@media only screen and (max-width: 450px) {
  .textbox {
    padding: 70px 50px 100px 50px;
    margin: -50px -20px 0 -20px;
  }

  .textbox_content {
    font-size: 16px;
    padding: 0 5% 7% 5%;
    margin: 20px 5px 20px 5px;
  }
}
footer {
  color: white;
  font-family: chevy-vector;
  margin-right: auto;
  font-size: 22px;
}
footer nav {
  background: radial-gradient(circle, #0a1115 0%, rgba(255, 255, 255, 0) 100%);
  padding-block: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

footer .socials {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
footer .socials img {
  width: 50px;
}

.footerimg {
  height: 200px;
}
.footerimg img {
  height: 100%;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

header {
  position: absolute;
  top: 30px;
  right: 10%;
}

header .socials {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
header .socials img {
  width: 50px;
}

@media only screen and (max-width: 800px) {
  header .socials img {
    width: 40px;
  }
}
.roadmap_container {
  display: grid;
  grid-template-rows: repeat(4, auto);
  grid-template-columns: repeat(2, auto);
  max-width: 800px;
  margin: 25px auto 75px auto;
  padding: 40px;
  border-radius: 14px;
  background-color: rgba(10, 17, 21, 0.8);
}

.roadmap_image {
  grid-column: 1;
  max-width: 500px;
}
.roadmap_image img {
  width: 100%;
}

#devroadmap .roadmap_info_container {
  gap: 20px;
}

#initialroadmap .roadmap_info_container {
  gap: 70px;
}

.roadmap_info_container {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.roadmap_info {
  grid-column: 2;
  color: white;
  font-family: chevy-vector;
  font-size: 17px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 300px;
}

.roadmap_info_title {
  font-family: tachyon, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
}

@media only screen and (min-width: 800px) {
  #grilla {
    margin-top: 25px;
  }

  #deflation {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 800px) {
  .roadmap_container {
    padding: 20px 0 30px 0;
    margin-bottom: 75px;
  }

  .roadmap_info {
    font-size: 15px;
    max-width: unset;
    margin: 0 20px 0 20px;
  }

  .roadmap_info_container {
    gap: 15px;
    grid-column: span 1/3;
  }

  .roadmap_image {
    position: absolute;
    max-width: 300px;
    right: 0;
    opacity: 0%;
  }
  .roadmap_image img {
    width: 100%;
  }

  .roadmap_info_title {
    text-align: center;
  }

  #devroadmap .roadmap_info_container {
    gap: 20px;
  }

  #initialroadmap .roadmap_info_container {
    gap: 20px;
  }
}
.utility_container {
  display: flex;
  max-width: 1500px;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 50px;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
}

.utility_item {
  position: relative;
  max-width: 400px;
}

.utility_item_image {
  max-width: 400px;
}
.utility_item_image img {
  width: 100%;
}

.utility_item_content {
  color: white;
  font-size: 19px;
  font-family: tachyon, sans-serif;
  position: absolute;
  top: 60%;
  margin: 0 13% 0 16%;
}

@media only screen and (max-width: 800px) {
  .utility_item_content {
    font-size: 16px;
  }
}
@media only screen and (max-width: 450px) {
  .utility_container {
    gap: 0px;
  }

  .utility_item {
    position: relative;
    max-width: 270px;
  }

  .utility_item_content {
    font-size: 12px;
  }
}
.team_container {
  display: flex;
  max-width: 1500px;
  flex-wrap: wrap;
  flex: 1;
  margin: 100px auto 50px auto;
  justify-content: center;
  column-gap: 40px;
  row-gap: 20px;
  margin-bottom: 200px;
}
.team_container .team_item {
  max-width: 250px;
  position: relative;
}
.team_container .team_item .team_item_frame {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.team_container .team_item .team_item_frame img {
  width: 100%;
}
.team_container .team_item .team_item_image {
  margin-left: 10%;
  margin-top: 25%;
}
.team_container .team_item .team_item_image img {
  width: 90%;
}
.team_container .team_item .team_item_title {
  color: white;
  font-family: tachyon, sans-serif;
  font-size: 20px;
  text-align: center;
  margin-top: 50px;
}
.team_container .team_item .team_item_job {
  font-family: chevy-vector, sans-serif;
  color: white;
  text-align: center;
  font-size: 20px;
}

.team_item {
  cursor: pointer;
}

.team_item:hover .team_item_frame {
  transition: 3s;
  filter: hue-rotate(360deg);
}

@media only screen and (min-width: 1900px) {
  #browningcard {
    transform: translateY(-20px);
  }
}
@media only screen and (max-width: 800px) {
  .team_container {
    margin-top: 30px;
    margin-bottom: 80px;
  }
  .team_container .team_item {
    max-width: 150px;
  }
  .team_container .team_item .team_item_title {
    font-size: 15px;
  }
  .team_container .team_item .team_item_job {
    font-size: 12px;
  }
}
.accordion {
  background: linear-gradient(to right, #334b33, #397a39);
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  margin: auto;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  color: white;
  font-family: tachyon;
  font-size: 25px;
  border-radius: 15px 15px 0 0;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background: #8ebe43;
}

.active + .panel {
  padding: 20px 18px;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0px 18px;
  background-color: #2e342a;
  color: white;
  font-family: chevy-vector;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-in-out, padding 0.2s ease-in-out;
  margin-bottom: 10px;
  font-size: 20px;
}

.faq {
  margin: 50px auto 0 auto;
  display: flex;
  flex-direction: column;
  max-width: 900px;
  padding: 20px;
}

#faqheading {
  margin-top: 0;
}

@media only screen and (max-width: 800px) {
  .accordion {
    font-size: 15px;
  }

  .panel {
    font-size: 15px;
  }
}
.description, .link {
  font-family: "Amatic SC", cursive;
  text-align: center;
}

.description {
  font-size: 35px;
}

.btn {
  border: none;
  display: block;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  outline: none;
  overflow: hidden;
  position: relative;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  background-color: #222;
  padding: 17px 60px;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 490%;
  width: 140%;
  background: #78c7d2;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
  transform: translateX(-98%) translateY(-25%) rotate(45deg);
}

.btn:hover:after {
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
}

.link {
  font-size: 20px;
  margin-top: 30px;
}

.link a {
  color: #000;
  font-size: 25px;
}

@font-face {
  font-family: chevy-vector;
  src: url("/fonts/ChevyRay_-_Vector.ttf");
}
* {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
}

#content {
  margin-top: 100px;
  padding-bottom: 100px;
}

.page-container {
  width: 100%;
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 18px;
  height: 18px;
  transition: 500ms;
}

::-webkit-scrollbar-thumb {
  background: #409C50;
  border-radius: 4px;
  cursor: pointer;
}

::-webkit-scrollbar-thumb:hover {
  background: #3bd252;
}

::-webkit-scrollbar-track {
  background: #000000;
  border-radius: 0px;
  box-shadow: inset 0px 0px 0px 0px #8f7d5d;
}

.heading {
  margin: auto;
  max-width: 700px;
}
.heading img {
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  width: 100%;
  margin: auto;
}

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