/*
    Created by John Dummett - Founder of Hermicity

    Feel free to reuse this code in anyway you like, as long as you don't forget to...

    ~~ R E S P E C T ~~ V A P O R ~~
*/

* {
  margin: 0;
  padding: 0;
}

html, body {
  font-size: 100%;
  font-family: "helvetica Neue", helvetica, arial, sans-serif;
  color: #fbfcfc;
}

blockquote {
  padding: 1em 2em;
}

.container {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  background: black;
}

/*START HEADER AREA*/
header {
  height: 8rem;
  display: flex;
  align-items: center;
  background-color: black;
  justify-content: space-between;
  padding: 0 2em;
}

header h1 {
  color: white;
  text-align: center;
}

header h2 {
  border-bottom: .2em solid white;
  margin: .2em;
}

header h2 a {
  text-decoration: none;
}

header h2:hover {
  cursor: pointer;
  border-bottom: .3em solid white;
}
/*END HEADER AREA*/

/*HERO ANIMATION AREA*/
.hero {
  flex: 0 0 100%;
  height: 65vh;
  overflow: hidden;
  position: relative;
}

.sun-route, .cloud-route, .wisp-route, .drone-route, .hero-soylent, .drone-route-2, .hero-soylent-2 {
  position: absolute;
}

.sun-route {
  width: 100%;
  height: 8vh;
  box-sizing: border-box;
  padding: .5em 0 0 .5em;
}

.cloud-route {
  height: 5vh;
  margin-top: 11vh;
}

.hero-sun, .hero-cloud, .hero-wisp, .hero-drone, .hero-drone-2 {
  height: 100%;
}

.wisp-route {
  height: 6vh;
  margin-top: 3vh;
}

.drone-route {
  width: 100%;
  margin-top: 18vh;
  height: 5vh;
}

.hero-soylent {
  width: 1em;
  padding: 0 2em;
  margin-top: 21vh;
  -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.drone-route-2 {
  width: 100%;
  margin-top: 30vh;
  height: 5vh;
}

.hero-soylent-2 {
  width: 1em;
  padding: 0 2em;
  margin-top: 34vh;
}

.tree-route {
  margin-top: 50vh;
  height: 15vh;
  background: url("forrest.png") repeat-x bottom;
  background-size: auto 10vh;
  width: 100%;
  position: relative;
}
/*END HERO ANIMATION AREA STYLES*/

.main-content {
  max-width: 55em;
  margin: 0 auto;
  width: 100%;
  padding: 8em 0;
  display: flex;
  align-items: stretch;
}

.main-content h2 {
  width: 40%;
  font-size: 175%;
  padding-right: 2em;
}

.main-content div {
  width: 60%;
  border-left: .2em solid white;
  padding-left: 1em;
  line-height: 2em;
}

.main-details {
  max-width: 40em;
  margin: 0 auto;
  width: 100%;
  padding: 5em 0;
}

.main-details div {
  border-left: .2em solid white;
  padding-left: 1em;
  line-height: 2em;
}

.contact-us {
  max-width: 35em;
  margin: 0 auto;
  width: 100%;
  padding: 8em 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.contact-us form {
  width: 100%;
  line-height: 2em;
  color: #f4a62a;
  padding: 2em 0 0 0;
}

.animated-break {
  height: 15vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}

#email {
  width: 100%;
  border: none;
  font-size: 1.5rem;
  line-height: 1.5;
  padding: .5rem 0 .5rem 0;
  color: #c6acc9;
  font-family: "helvetica Neue", helvetica, arial, sans-serif;
  box-sizing: border-box;
  border-radius: .1rem;
  padding: .1rem;
}

textarea {
  width: 100%;
  border: none;
  font-size: 1.5rem;
  line-height: 1.5;
  padding: .2rem 0 .2rem 0;
  color: #c6acc9;
  font-family: "helvetica Neue", helvetica, arial, sans-serif;
  box-sizing: border-box;
  height: 10rem;
  resize: vertical;
  border-radius: .1rem;
  padding: .1rem;
}

#submit {
  width: 100%;
  border: none;
  font-size: 1.5rem;
  line-height: 1.5;
  color: white;
  font-family: "helvetica Neue", helvetica, arial, sans-serif;
  box-sizing: border-box;
  border-radius: .1rem;
  padding: .2rem 0 .2rem 0;
  border-bottom: solid .2rem white;
  -webkit-appearance: none;
  -moz-appearance: none;
}

#submit:click {
  border-bottom: none;
}

.rainbow-details {
  max-width: 55em;
  display: flex;
  margin: 2em auto 8em auto;
  flex-wrap: wrap;
  flex-direction: column;
}

.paper {
  width: 35em;
  margin: 0 auto;
  display: block;
  padding: 2em 0;
}

.paper img {
  border: solid white .2em;
  width: 100%;
  margin: 0 auto;
  display: block;
}

.paper-link {
  margin: 0 auto 4em auto;
  text-decoration: none;
  border-bottom: .2em solid white;
  font-size: 1.5em;
  font-weight: bold;
}

.rainbow-details div {
  width: 35em;
  margin: 0 auto;
  line-height: 2em;
  border-left: .2em solid white;
  padding-left: 1em;
  line-height: 2em;
  box-sizing: border-box;
}

.button {
  font-size: 1.3rem;
}

footer {
  width: 100%;
  background-color: black;
  line-height: 1.2;
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
  float: left;
}

footer p, footer a {
  color: white;
  text-decoration: none;
}

.hide {
  display: none;
}

a {
  text-decoration: underline;
  color: white;
}

.dwelling {
  background-image: url("microdwelling.png");
  background-size: auto 80%;
  background-repeat: repeat-x;
  background-position: bottom;
  height: 100%;
  width: 100%;
}

.papers {
  margin: 0 auto;
  height: 100%;
  display: block;
}

.faces {
  margin: 0 auto;
  display: block;
  height: 13vh;
  margin-top: 2vh;
}

/*BEGIN MOBILE STYLES*/
@media all and (max-width: 850px) {
  .papers {
    width: 100%;
    height: auto !important;
    position: absolute;
    bottom: 0;
  }

  .faces {
    height: 8vh;
    margin-top: 7vh;
  }

  header {
    height: 4rem;
    padding: 1rem;
    justify-content: center;
  }

  header h2 {
    display: none;
  }

  article p, #email, #submit, textarea {
    font-size: 1rem;
  }

  section {
    flex: 0 0 100%;
  }

  article h2 {
    font-size: 2.5rem;
  }

  .main-content, .contact-us, .rainbow-details {
  max-width: 60em;
  margin: 0 auto;
  width: 100%;
  padding: 4em 2em;
  flex-wrap: wrap;
}

.paper {
  width: 100%;
}

.main-content h2, .contact-us h2 {
  width: 100%;
  margin: 0;
  padding: 0;
}

.main-content div, .contact-us div {
  width: 100%;
  border: none;
  padding-left: 0;
  margin-top: 2em;
}

.rainbow-details div {
  width: 100%;
  border: none;
  padding-left: 0;
}

.main-content div, .contact-us div {
  line-height: 2em;
}

.main-details {
  padding: 0;
}

.main-details div {
  padding: 4em 2em;
  border: none;
}

.contact-us {
  margin: 0 auto;
  width: 100%;
  padding: 5em 2em;
}

.contact-us h2 {
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 175%;
}

.contact-us form {
  width: 100%;
  padding: 2em 0 0 0;
  line-height: 2em;
  color: #f4a62a;
  box-sizing: border-box;
}
}
/*END MOBILE STYLES*/