@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Inter", "Arial", sans-serif;
  position: relative;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

header {
  width: 100%;
  height: 5rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #dcdcdc;
}

header h1 {
  margin: 0 2rem;
  z-index: 1;
}

header nav {
  font-family: monospace;
}

header nav ul li {
  display: inline-block;
}

header nav ul li::before {
  content: "/ ";
}

header nav ul li#final::after {
  content: " /";
}

header nav ul li a {
  color: #000;
}

div.fullViewSec {
  min-height: 600px;
  height: 100vh;
  display: flex;
}

div.fullViewSec article {
  padding: 6rem;
  width: 100%;
}

#future {
  margin: 4rem 0;
  height: calc(100vh - 5rem);
  background-size: cover;
  align-items: center;
}

#future h1 {
  float: right;
  color: black;
  font-size: 6rem;
  line-height: 100%;
  margin-bottom: 1rem;
  flex: 1;
}

#future h2 {
  font-weight: 400;
}

div.divider {
  flex: 1;
  display: flex;
  flex-direction: column;
}

div.flex-spread {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

div.blob {
  margin-right: 2rem;
  margin-top: 2rem;
  padding: 2rem 1rem;
  background-color: rgb(81, 81, 236);
  display: inline-block;
  border-radius: 2rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  color: white;
  max-width: 23rem;
  max-height: 13rem;
}

div.blob-header {
  position: relative;
  height: 3rem;
  margin-bottom: 3rem;
}

div.blob-header h2 {
  padding-right: 5rem;
  font-family: monospace;
  font-size: 2rem;
  line-height: 100%;
  display: inline-block;
}

div.blob img {
  position: absolute;
  width: 5rem;
  top: 0;
  right: 0;
  filter: invert(100%);
}

div.icons {
  display: flex;
}

div.icon {
  margin-top: 1rem;
  margin-right: 2rem;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 10% 20%, rgba(216, 241, 230, 0.46) 0.1%, rgba(233, 226, 226, 0.28) 90.1%);
  border-radius: 2rem;
  padding: 1rem 2rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

div.icons img {
  margin-right: 2rem;
  height: 5rem;
}

#team {
  display: grid;
  grid-template-rows: 1fr 3fr 3fr 3fr;
  grid-template-columns: 1fr 1fr;
  min-height: 1080px;
}

#team h2 {
  font-size: 5rem;
  font-weight: 600;
  margin-left: 4rem;
}

div.teamMember {
  display: flex;
}

div.teamMember div.imageContainer {
  display: flex;
  align-items: center;
  justify-content: center;
}

div.teamMember img {
  width: 16rem;
  height: 16rem;
  border-radius: 100%;
  margin: 0 3rem;
}

div.teamMember div.description {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

div.teamMember div.description ul li {
  float: left;
  list-style-position: inside;
  margin-right: 1rem;
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

div.teamMember div.description p {
  max-width: 100%;
}

div.teamMember:nth-child(3), div.teamMember:nth-child(6), div.teamMember:nth-child(7) {
  background-color: #ebebeb;
}

footer {
  color: white;
  height: 12rem;
  padding: 2rem;
  background-color: rgb(0, 0, 0);
  display: flex;
  font-size: 0.8rem;
}

footer div {
  padding: 0 2rem;
  border-right: solid white 1px;
}

footer h2, footer h3 {
  font-weight: 500;
  line-height: 2rem;
}

footer ul li {
  list-style: none;
}

footer a {
  display: block;
  color: white;
  font-family: monospace;
}

#mockup {
  background: url("../assets/desert.png");
  background-size: cover;
  margin-bottom: 3rem;
  color: white;
}

#mockup h2 {
  font-size: 6rem;
  margin-left: 3rem;
  margin-top: 3rem;
  line-height: 100%;
}

#mockup h3 {
  margin-left: 3rem;
  font-weight: 400;
  font-size: 1.5rem;
}

#mockup ul {
  display: flex;
  flex-direction: column;
}

#mockup li {
  background-color: white;
  display: inline-block;
  width: 25rem;
  color: black;
  height: 4rem;
  font-size: 2rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  margin: 0.5rem 0;
  margin-left: 3rem;
  padding-left: 1rem;
}

#mockup li.required {
  font-weight: 600;
  background-color: rgba(0, 0, 0, 0);
  margin-top: 2rem;
  color: white;
}

#mockup li img {
  width: 2.5rem;
  margin-right: 1rem;
}

@media only screen and (max-width: 1750px) {
  html {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1520px) {
  html {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1460px) {
  html {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1370px) {
  html {
    font-size: 12px;
  }
  div.icon {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1260px) {
  html {
    font-size: 11px;
  }
  footer {
    font-size: 1rem;
  }
  div.teamMember div.description p {
    font-size: 1.2rem;
  }
  header {
    height: 7rem;
  }
  header h1 {
    font-size: 3rem;
  }
  header nav ul li a {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 1120px) {
  html {
    font-size: 10px;
  }
}
@media only screen and (max-width: 1050px) {
  div.fullViewSec {
    height: auto;
  }
  #future {
    flex-direction: column-reverse;
    height: auto;
    text-align: center;
    margin-bottom: 5rem;
  }
  div.divider {
    display: block;
  }
  #future h1 {
    margin-top: 5rem;
  }
  div.icons {
    justify-content: center;
  }
  #team {
    display: block;
    min-height: 100px;
  }
  div.teamMember:nth-child(3), div.teamMember:nth-child(6), div.teamMember:nth-child(7) {
    background-color: white;
  }
  #team div.teamMember:nth-child(even) {
    background-color: #ebebeb;
  }
  div.teamMember div.imageContainer {
    padding: 2rem 0;
  }
}
div.mobileMenu {
  display: none;
  margin-right: 3rem;
  cursor: pointer;
  z-index: 1;
}

div.burger {
  width: 3rem;
  height: 0.5rem;
  background-color: black;
  margin: 0.5rem 0;
}

div.mobileSelector {
  height: fit-content;
  max-height: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  background: white;
  width: 100vw;
  transition: max-height 0.3s ease-in-out;
  border-bottom: 1px solid #dcdcdc;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

div.mobileSelector a {
  display: block;
  color: black;
  font-family: monospace;
  font-size: 2rem;
  text-align: center;
  margin: 2rem 0;
}

@media only screen and (max-width: 700px) {
  header {
    justify-content: space-between;
  }
  header nav {
    display: none;
  }
  header .mobileMenu {
    display: block;
  }
}
@media only screen and (max-width: 516px) {
  html {
    font-size: 9px;
  }
}
@media only screen and (max-width: 470px) {
  html {
    font-size: 8px;
  }
}/*# sourceMappingURL=style.css.map */