/* general */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  background-color: #EEE;
}

h1,
h2,
h3 {
  font-weight: 400;
}

h6 {
  font-weight: 200;
  font-size: 11pt;
}

h1 {
  font-size: 3em;
}

h2 {
  font-size: 2em;
}

p {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 200;
  font-size: 14px;
  line-height: 26px;
}

a {
  color: black;
  text-decoration: none;
  border-bottom: 1px solid black;
  transition: all 150ms ease-in;
}

a:hover {
  color: #49F5F5;
  border-bottom-color: #49F5F5;
}

/* scroll */

#scroll_container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

#scroll_prompt {
  z-index: 100000;
  position: absolute;
  bottom: 50px;
  left: 50%;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  border-bottom: none;
  color: rgba(255,255,255,0.4);
  font-size: 2em;
  animation-timing-function: ease-in-out;
}

/* sticky header */

#sticky_header {
  z-index: 1000;
  position: fixed;
  text-align: center;
  width: 100%;
  height: 60px;
  top: 0;
  left: 0;
  opacity: 1;
  background: rgba(250,250,250,.9);
  transition: all 300ms ease-in-out;
}

#sticky_header .menu-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#sticky_header .header-links {
  list-style-type: none;
  float: left;
  margin-right: 20px;
}
#sticky_header .header-links li {
  float: left;
  padding-right: 25px;
}
#sticky_header .header-links li a {
  text-decoration: none;
  border-bottom: none;
  font-size: 100;
}
#sticky_header .header-links li a:hover {
  color: #000;
  opacity: .5;
}

#sticky_header:not(.sticky-visible) {
  transform: translateY(-50%);
  opacity: 0;
}

#sticky_header img {
  height: 40px;
}

.header_container {
  width: 100%;
  height: 60px;
  th: 1200px;
  margin: 0 auto;
  padding: 5px 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* backgrounds */

#backgrounds,
#backgrounds > div {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

#intro {
  background-image: url("/images/88d1605d10a79a75b7e50ccbf5b252f114029a18/background-gradient.png");
  background-color: #060606;
  background-size: cover;
  background-position: center right;
}

.background_intro {
  background-color: #060606;
}

.background_features {
  background-color: #151515;
}

.background_end {
  background-color: #1b1b1b;
}

.svg-container {
    position: relative;
    z-index: 5;
    margin-top: -100px;
    margin-bottom: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

.svg-container svg {
  width: 8px;
}

/* featured */

#featured {
  color: #aaa;
  text-align: center;
  padding: 20px;
}

#featured .logo {
  display: flex;
  justify-content: center;
  width: 33.333%;
}

#featured img {
  height: 75px;
  width: auto;
  opacity: .6;
  transition: opacity 500ms;
}

#featured img:hover {
  opacity: 1;
}

#featured h4 {
  margin: 0;
}

.featured_wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.fullscreen_graphic {
  width: 100%;
  height: auto;
}

/* section styles */

.section {
  position: relative;
}

.section-inverted {
  color: white;
}

.section_container {
  position: relative;
  width: 100%;
  min-height: 500px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px;
  display: flex;
}

.section-reverse .section_container {
  flex-direction: row-reverse;
}

.section_content {
  z-index: 10;
  position: relative;
  width: 50%;
  padding: 50px;
}

.section_graphic {
  position: absolute;
  top: 0;
  left: 20%;
  bottom: 0;
  width: 100%;
  height: 100%;
  transform: translate3d(0,0,0);
  transition: all 1s ease-in-out;
  pointer-events: none;
  background-size: 600px;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
}

.section_graphic.graphic-visible {
  opacity: 1;
}

.section-reverse .section_graphic {
  left: -25%;
}

.section:not(.section-visible) .section_graphic {
  transform: translate3d(50px,0,0);
}

.section.section-reverse:not(.section-visible) .section_graphic {
  transform: translate3d(-50px,0,0);
}

.section_graphic img {
  width: 150%;
}

/* profile section */
#profile .profile-feature-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  justify-content: space-around;
}
#profile .section_content {
  width: 100%;
  text-align: center;
}
#profile img.profile {
  padding: 80px 50px;
  max-width: 600px;
  width: 100%;
}
.profile-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 40px;
}
.profile-feature img {
  width: 75px;
}


/* exploded section */
#explode h2.title {
  text-align: center;
  font-size: 30px;
}
#explode h6.title {
  margin-top: 0;
  text-align: center;
  font-size: 18px;
}
#explode .section_container {
  display: flex;
  align-items: center;
  justify-content: center;
}

#explode .section_content {
  width: 100%;
}

#explode .interact_icon {
  display: block;
  text-align: center;
  font-size: 24px;
}

.modular-view {
  margin-left: -3%;
  width: 80%;
}

.explode-feature-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.explode-feature {
  width: 33.3333%;
  padding: 10px;
}

.explode-feature h2 {
  font-size: 1.5em;
  text-align: center;
}

section#explode .image-container {
  text-align: center;
}

/* animations */

@keyframes breathe {
  0% { transform: translate(0,-5px); }
  60% { transform: translate(0,5px); }
  100% { transform: translate(0,-5px); }
}

@keyframes splash {
  0% { box-shadow: 0 0 0 0 rgba(73,245,245,0); }
  25% { box-shadow: 0 0 0 5px rgba(73,245,245,0.5); }
  100% { box-shadow: 0 0 0 20px rgba(73,245,245,0); }
}

/* signup form */

.signup_form {
  margin-top: 10px;
  margin-left: auto;
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
}

.signup_form p {
  margin-bottom: 5px;
}
.signup_form ul {
  margin-top: 0;
}
.signup_form li {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: .9em;
  line-height: 1.7em;
}

.signup_form input {
  height: 40px;
  border: none;
  outline: none;
  line-height: 40px;
  padding: 0 10px;
  font-size: 16px;
  border: 2px solid #11111C;
  border-radius: 40px;
}

.signup_form button {
  margin-top: 5px;
}

/* buttons */

button {
  padding: 12px 20px;
  border-radius: 20px;
  border: 2px solid #000;
  outline: none !important;
  color: rgba(17,17,29,1);
  background-color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  font-size: 12px;
  transition: all 300ms ease-in-out;
  cursor: pointer;
}

button:hover {
  color: #49F5F5;
  background: rgba(17,17,29,.8);
  border: 2px solid #49F5F5;
  animation: splash 1200ms ease-out infinite;
}

/* sections */

#intro,
#intro .section_container {
  height: 100vh;
}

#intro .logo {
  width: 100%;
  max-width: 250px;
}

#intro h6 span + span:before {
  content: "|";
  margin: 0 3px;
}

#intro .section_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

#intro .section_graphic {
  background-size: 600px;
}

#interact .section_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#interact .section_content {
  width: 100%;
  display: flex;
  justify-content: space-around;
}

#interact .interact_block {
  width: 33.3333%;
  padding: 5px;
  flex-shrink: 0;
  text-align: center;
}

#interact .interact_overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 1;
  transition: all 300ms ease-in-out;
}

#interact .interact_icon {
  font-size: 2em;
}

#interact .interact_block h2 {
  margin-top: 0;
  font-size: 1em;
  cursor: default;
}

#interact .interact_bubble {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
}

#interact .interact_bubble img {
  height: auto;
  width: 100%;
}

#interact .interact_bubble:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 5px;
  border: 2px solid rgba(223,222,222,.8);
  background-color: rgba(223,222,222,.8);
  transition: all 200ms ease-in-out;
}

#interact .interact_block.playing .interact_bubble:after,
#interact .interact_block:hover .interact_bubble:after {
  background-color: rgba(0,0,0,0);
}

#interact .interact_block.playing .interact_overlay,
#interact .interact_block:hover .interact_overlay {
  transform: scale(1.2) translateY(-50px);
  opacity: 0;
}

#temperature {
  background-color: #333;
}

#charging {
  background-color: #5a7eaa;
  color: white;
}
#touch {
  background-color: #fafafa;
}
#touch .section_graphic {
  background-size: 500px;
}

#colors .section_container {
  max-width: none;
  display: block;
  min-height: auto;
  padding: 0;
}

#colors img {
  position: relative;
  left: calc(100% - 600px);
  width: 800px;
}

#temperature .section_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#temperature .section_content {
  top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#temperature .section_content h2 {
  padding-bottom: 200px;
}

#temperature .section_graphic {
  display: flex;
  left: 0%;
  justify-content: center;
  align-items: center;
  background-position: center;
}

.social_content {
  padding: 20px;
}

.social_icons a {
  border-bottom: none;
}

.social_icons i  {
  margin: 0 5px;
  display: inline-block;
  font-size: 32px;
  text-align: center;
}

#faq .section_container {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
}

#faq .section_content {
  display: flex;
  top: 100px;
  right: 50px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#faq .section_graphic {
  height: 800px;
  top: -150px;
  background-size: 50%;
  background-position: 90% center;
}

#outro {
  overflow: hidden;
}

#outro .section_container {
  display: flex;
  flex-direction: row-reverse;
  height: 100vh;
}

#outro .section_content {
  margin-top: 50px;
}

#outro .outro_links {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

#outro .outro_links li {
  margin: 5px 10px;
  list-style-type: none;
}

#outro .outro_links a {
  font-weight: bold;
  font-size: 22px;
}

.outro-img {
  width: 100vw;
}

#convenience {
  background: #fafafa;
}

#outro .section_graphic {
  left: -40%;
  top: 200px;
  background-size: 100%;
}

#convenience .section_content,
#charging .section_content,
#touch .section_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#convenience .section_content h2,
#temperature .section_content h2,
#charging .section_content h2,
#touch .section_content h2 {
  margin-top: 0;
}

/* helpers */

.mobile-show {
  display: none;
}

@media screen and (max-width: 991px) {

  #outro .section_graphic {
    top: 100px;
  }

}

/* tablet */

@media screen and (max-width: 768px) {
  #intro .section_container {
    min-height: 100vh;
    flex-direction: column;
  }

  #intro .section_content h2 {
    font-size: 1.5em;
  }

  #intro h6 span {
    display: block;
  }

  #intro h6 span:before {
    display: none;
  }

  #intro .section_content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
  }

  #intro .section_graphic {
    top: 50px;
    left: 0;
  }

  #faq .section_graphic {
    display: none;
  }

  #outro .section_graphic {
   left: 0px;
   top: 200px;
   background-size: cover;
   background-position: left top;
 }
}

@media screen and (max-width: 767px) {

  /* helpers */

  .mobile-show {
    display: block;
  }

  .mobile-hide {
    display: none;
  }

  /* layout */

  .section_container {
    min-height: 500px;
    flex-direction: column !important;
    padding: 0;
  }

  .section_content {
    width: 100%;
  }

  .section_graphic {
    top: 100px;
    left: 0;
    transform: none !important;
  }

  .section-reverse .section_graphic {
    left: 0px;
  }

  .modular-view {
    margin-left: -85px;
    width: calc(100% + 150px);
  }

  #featured img {
    height: 50px;
  }

  #profile .profile-feature img {
    width: 75px;
  }
  #explode .section_content {
    display: block;
  }
  #explode .explode-feature {
    width: 100%;
    padding: 20px 0;
  }
  #explode .explode-feature-container {
    margin: 0 auto;
  }
  #explode .explode-feature h2 {
    text-align: center;
  }
  #explode .explode-feature h2 br {
    display: none;
  }

  #charging .section_graphic {
    background-size: contain;
    background-position: right center;
  }

  #interact .section_content {
    flex-direction: column;
    align-items: center;
  }

  #interact .interact_block {
    width: 70%;
    display: flex;
    align-items: center;
  }

  #interact .interact_overlay {
    display: none;
  }

  #colors img {
    position: relative;
    left: calc(100% - 400px);
    width: 500px;
  }

  #outro .section_graphic {
    left: 0px;
    top: 200px;
    background-size: cover;
    background-position: left top;
  }

}

/* mobile */

@media screen and (max-width: 480px) {

  /* layout */

  h2 {
    font-size: 1.5em;
  }

  #sticky_header {
    height: 50px;
  }

  #sticky_header img {
    height: 30px;
  }

  #sticky_header button {
    font-size: 10px;
    padding: 5px 10px;
  }

  .header_container {
    height: 50px;
    padding: 5px 20px;
  }

  .section_graphic {
    background-size: 120%;
  }

  #featured .logo {
    margin: 20px 0;
    width: 250px;
  }

  #profile .profile-feature-container {
    flex-wrap: wrap;
  }

  #profile .profile-feature {
    width: 50%;
    padding: 10px;
  }

  #profile .profile-feature img {
    width: 50px;
  }

  #explode .explode-feature-container {
    flex-direction: column;
    align-items: center;
  }

  #explode .explode-feature h2 {
    margin-top: 0;
  }

  .svg-container {
    display: none;
  }

  #interact .section_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #interact .section_content {
    flex-direction: column;
  }

  #interact .interact_block {
    width: 100%;
    display: block;
  }

  #interact .interact_block h2 {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }

  #interact .interact_icon {
    margin: 0;
  }


  #convenience .section_content,
  #temperature .section_content,
  #charging .section_content,
  #touch .section_content {
    padding-bottom: 0;
  }

  #convenience .section_graphic,
  #temperature .section_graphic,
  #charging .section_graphic,
  #touch .section_graphic {
    position: static;
    width: 100%;
    height: 300px;
    background-size: 100%;
  }

  #temperature .section_graphic {
    background-size: 80%;
  }

  #charging .section_graphic {
    background-position: 30px;
  }

  #outro .section_content {
    margin-top: 0;
  }

  #outro .outro_links {
    flex-direction: column;
  }
}
