.w-layout-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Syncopate, sans-serif;
  color: #fff;
  font-size: 38px;
  line-height: 44px;
  font-weight: 700;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Syncopate, sans-serif;
  color: #fff;
  font-size: 32px;
  line-height: 36px;
  font-weight: 700;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Syncopate, sans-serif;
  color: #fff;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Syncopate, sans-serif;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Syncopate, sans-serif;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Syncopate, sans-serif;
  color: #fff;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
}

a {
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #62aca0;
  text-decoration: none;
}

.body {
  background-color: #383056;
  font-family: Avenir, sans-serif;
  color: #c3c1cd;
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
}

.section-hero {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  min-height: 100vh;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #28213f;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(49%, rgba(40, 33, 63, 0.7)), to(rgba(40, 33, 63, 0))), url('../images/people-nodes.jpg');
  background-image: linear-gradient(90deg, rgba(40, 33, 63, 0.7) 49%, rgba(40, 33, 63, 0)), url('../images/people-nodes.jpg');
  background-position: 0px 0px, 640px 190%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
}

.section-better {
  overflow: hidden;
  min-height: 100vh;
  padding-top: 300px;
  padding-bottom: 100px;
  box-shadow: inset 0 100px 0 0 #2d2547, inset 0 200px 0 0 #342a4f;
}

.nav-bar {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  padding: 10px 20px;
  background-color: #2f2749;
  box-shadow: 0 6px 0 0 #241c3d, 0 20px 0 0 rgba(40, 33, 63, 0.5);
  color: #efd9dd;
}

.nav-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.brand {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.nav-link {
  margin-left: 4vw;
  padding-right: 0px;
  padding-left: 0px;
  color: #fff;
  font-size: 18px;
  line-height: 25px;
  font-weight: 700;
}

.nav-link:hover {
  color: #6ed4c4;
}

.nav-link.w--current {
  color: #6ed4c4;
}

.nav-link.first {
  margin-left: 0px;
}

.nav-cta {
  top: -3px;
  margin-left: 4vw;
  padding: 16px 26px 13px;
  border-radius: 120px;
  background-color: #fff;
  box-shadow: 0 6px 0 0 #dbdbdb;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: Syncopate, sans-serif;
  color: #3c786e;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

.nav-cta:hover {
  -webkit-transform: translate(0px, -6px);
  -ms-transform: translate(0px, -6px);
  transform: translate(0px, -6px);
}

.nav-cta.w--current {
  color: #6ed4c4;
}

.hero-overlay {
  padding-right: 20px;
  padding-left: 20px;
}

.hero-heading {
  max-width: 1060px;
  margin-top: 0px;
  margin-bottom: 30px;
  font-size: 60px;
  line-height: 80px;
}

.hero-container {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.hero-intro {
  max-width: 810px;
  margin-bottom: 38px;
  color: #fff;
}

.hero-cta {
  display: inline-block;
  margin-right: 40px;
  margin-left: 0px;
  padding: 23px 40px 17px;
  border-radius: 120px;
  background-color: #fff;
  box-shadow: 0 6px 0 0 #dbdbdb;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: Syncopate, sans-serif;
  color: #3c786e;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  text-decoration: none;
}

.hero-cta:hover {
  top: -6px;
  -webkit-transform: translate(0px, -6px);
  -ms-transform: translate(0px, -6px);
  transform: translate(0px, -6px);
}

.hero-cta-secondary {
  display: inline-block;
  margin-right: 40px;
  margin-left: 0px;
  padding: 23px 40px 17px;
  border-style: solid;
  border-width: 2px;
  border-color: #fff;
  border-radius: 120px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: Syncopate, sans-serif;
  color: #fff;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  text-decoration: none;
}

.hero-cta-secondary:hover {
  -webkit-transform: translate(0px, -6px);
  -ms-transform: translate(0px, -6px);
  transform: translate(0px, -6px);
}

.nav-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.narrow-container {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.heading-deserve {
  max-width: 1060px;
  margin-top: 0px;
  margin-bottom: 20px;
  font-size: 52px;
  line-height: 66px;
}

.subheading-deserve {
  max-width: 720px;
  margin-bottom: 60px;
}

.section-connected {
  position: relative;
  min-height: 100vh;
  margin-bottom: 150px;
  background-image: url('../images/icon-offgrid-big.svg'), url('../images/girl-connected.jpg');
  background-position: 100% 50%, 0% 50%;
  background-size: 25%, 70%;
  background-repeat: no-repeat, no-repeat;
}

.container-connected {
  position: absolute;
  left: 50%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.heading-connected {
  max-width: 600px;
  margin-top: 0px;
  margin-bottom: 20px;
  font-size: 40px;
  line-height: 50px;
}

.description-connected {
  max-width: 600px;
}

.section-forall {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  margin-bottom: 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-image: url('../images/icon-distributed-big.svg'), url('../images/for-all.jpg');
  background-position: 0% 50%, 100% 50%;
  background-size: 25%, 70%;
  background-repeat: no-repeat, no-repeat;
}

.wide-container-centered {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.container-forall {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 50%;
  bottom: 0%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.section-benefits {
  min-height: 200vh;
  margin-bottom: 0px;
  padding-top: 300px;
  padding-bottom: 0px;
  background-color: #29213f;
  background-image: url('../images/icon-planetary-big.svg');
  background-position: -291px 300px;
  background-repeat: no-repeat;
  box-shadow: inset 0 100px 0 0 #342a4f, inset 0 200px 0 0 #2d2547;
}

.heading-different {
  margin-top: 0px;
  margin-bottom: 25px;
  font-size: 52px;
  line-height: 66px;
}

.description-different {
  max-width: 720px;
}

.grid-benefits {
  margin-top: 100px;
  grid-column-gap: 40px;
  grid-row-gap: 59px;
}

.benefit-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.benefit-icon {
  margin-bottom: 50px;
}

.heading-benefit-item {
  max-width: 360px;
  margin-top: 0px;
  margin-bottom: 20px;
  line-height: 36px;
}

.paragraph {
  max-width: 360px;
}

.section-pre-heading {
  margin-top: 0px;
  margin-bottom: 20px;
  font-family: Avenir, sans-serif;
  color: #6ed4c4;
  font-weight: 500;
  text-transform: uppercase;
}

.wide-container {
  width: 100%;
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.heading-more {
  max-width: 800px;
  margin-top: 0px;
  margin-bottom: 100px;
  font-size: 52px;
  line-height: 66px;
}

.grid-features {
  grid-column-gap: 2vw;
  grid-row-gap: 6vw;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.feature-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.icon-feature {
  margin-bottom: 20px;
}

.heading-feature {
  margin-top: 0px;
  margin-bottom: 15px;
  font-family: Avenir, sans-serif;
  font-size: 22px;
  line-height: 35px;
  font-weight: 500;
}

.feature-description {
  margin-bottom: 0px;
  font-size: 18px;
  line-height: 24px;
}

.text-link {
  color: #6ed4c4;
  text-decoration: none;
}

.text-link:hover {
  border-bottom: 2px solid #6ed4c4;
}

.section-scuttlebutt {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-image: url('../images/network-map.svg');
  background-position: 94% 50%;
  background-size: 38%;
  background-repeat: no-repeat;
}

.scuttlebutt-cta {
  display: inline-block;
  margin-right: 40px;
  margin-left: 0px;
  padding: 23px 40px 17px;
  border-style: solid;
  border-width: 2px;
  border-color: #fff;
  border-radius: 120px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: Syncopate, sans-serif;
  color: #fff;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  text-decoration: none;
}

.scuttlebutt-cta:hover {
  border-color: #6ed4c4;
  -webkit-transform: translate(0px, -6px);
  -ms-transform: translate(0px, -6px);
  transform: translate(0px, -6px);
  color: #6ed4c4;
}

.description-scuttlebutt {
  max-width: 600px;
  margin-bottom: 30px;
}

.section-join {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  margin-bottom: 200px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-image: url('../images/planetary-background.jpg');
  background-position: 50% 100%;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 100px 0 0 #342a4f, 0 200px 0 0 #2d2547;
}

.footer-heading {
  max-width: 1220px;
  margin-top: 0px;
  margin-bottom: 30px;
  font-size: 74px;
  line-height: 84px;
}

.isotype-footer {
  margin-bottom: 60px;
}

.join-email-input {
  height: 50px;
  padding-right: 20px;
  padding-left: 20px;
  border: 1px none #000;
  border-radius: 50px;
  box-shadow: inset 0 5px 0 0 #e6e6e6;
  color: #0f3561;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}

.join-cta {
  padding-right: 35px;
  padding-left: 35px;
  border: 1px none #000;
  border-radius: 50px;
  background-color: #62aca0;
  box-shadow: 0 5px 0 0 #2c6d62;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: Syncopate, sans-serif;
  font-size: 18px;
  line-height: 32px;
  font-weight: 600;
  text-shadow: 0 2px 0 #2c6d62;
  cursor: pointer;
}

.join-cta:hover {
  -webkit-transform: translate(0px, -6px);
  -ms-transform: translate(0px, -6px);
  transform: translate(0px, -6px);
}

.footer {
  padding-top: 60px;
  padding-bottom: 140px;
  background-color: #452243;
}

.footer-grid {
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.footer-link-heading {
  margin-top: 3px;
  font-family: Syncopate, sans-serif;
  color: hsla(0, 0%, 100%, 0.3);
  font-weight: 600;
}

.footer-link-li {
  line-height: 30px;
}

.footer-link-item {
  -webkit-transition: color 200ms ease;
  transition: color 200ms ease;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.footer-link-item:hover {
  color: #62aca0;
}

.description-join {
  max-width: 720px;
  margin-bottom: 40px;
  color: #fff;
}

.section-footer {
  min-height: 417px;
  padding-top: 100px;
  padding-bottom: 140px;
  background-color: #28213f;
}

.wide-container-test {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.contain-30 {
  width: 40%;
}

.contain-70 {
  width: 60%;
}

.grid {
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.form-columns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.form-column-1 {
  width: 50%;
  padding-right: 20px;
}

.form-column-2 {
  width: 50%;
  padding-left: 20px;
}

.hero-image {
  position: absolute;
  z-index: 1;
}

.hero-image-container {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 1;
  display: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.hero-image-container.benefits-container {
  margin-bottom: 200px;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 960px;
}

.hands-background {
  position: absolute;
  left: 0%;
  top: auto;
  right: auto;
  bottom: 100px;
  max-width: none;
  min-width: 1100px;
}

.section-more {
  margin-bottom: 100px;
  padding-top: 140px;
  padding-bottom: 300px;
  background-color: #29213f;
  box-shadow: inset 0 -100px 0 0 #342a4f, inset 0 -200px 0 0 #2d2547;
}

.form-success {
  padding: 40px 0px;
  background-color: transparent;
}

.text-block {
  color: #6ed4c4;
  text-align: left;
}

.form-error {
  margin-top: 40px;
  padding: 20px;
  border-radius: 25px;
  background-color: #e77676;
}

.text-block-2 {
  color: #fff;
}

.screens-row {
  max-height: 600px;
  max-width: none;
}

.heading-team {
  margin-top: 0px;
  margin-bottom: 60px;
  font-size: 52px;
  line-height: 66px;
}

.grid-team {
  grid-column-gap: 19px;
  grid-row-gap: 40px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}

.team-member {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.team-member-picture {
  overflow: hidden;
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
  border-style: solid;
  border-width: 5px;
  border-color: #6ed4c4;
  border-radius: 200px;
}

.team-member-name {
  margin-top: 0px;
  margin-bottom: 15px;
  font-family: Avenir, sans-serif;
  font-size: 22px;
  line-height: 35px;
  font-weight: 500;
}

.team-member-description {
  margin-bottom: 0px;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .body {
    font-size: 20px;
    line-height: 26px;
  }
  .section-hero {
    min-height: 100vh;
    padding-bottom: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(23%, rgba(40, 33, 63, 0.9)), to(rgba(40, 33, 63, 0.2))), url('../images/people-nodes.jpg');
    background-image: linear-gradient(90deg, rgba(40, 33, 63, 0.9) 23%, rgba(40, 33, 63, 0.2)), url('../images/people-nodes.jpg');
    background-position: 0px 0px, -30% 130%;
    background-size: auto, cover;
    background-repeat: repeat, no-repeat;
  }
  .section-better {
    padding-top: 150px;
    box-shadow: inset 0 50px 0 0 #2d2547, inset 0 100px 0 0 #342a4f;
  }
  .nav-bar {
    padding-right: 20px;
    padding-left: 40px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#2d2547), to(transparent));
    background-image: linear-gradient(180deg, #2d2547, transparent);
  }
  .brand {
    z-index: 100;
  }
  .nav-link {
    margin-left: 0px;
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 0px;
  }
  .nav-link.first {
    margin-left: 0px;
  }
  .nav-cta {
    max-width: 230px;
    margin-top: 15px;
    margin-left: 0px;
    text-align: center;
  }
  .hero-overlay {
    padding-right: 40px;
    padding-left: 40px;
  }
  .hero-heading {
    font-size: 52px;
    line-height: 64px;
  }
  .hero-container {
    padding-top: 50px;
  }
  .hero-cta {
    padding: 19px 30px 13px;
    font-size: 18px;
    line-height: 18px;
  }
  .hero-cta-secondary {
    padding: 19px 30px 13px;
    font-size: 18px;
    line-height: 18px;
  }
  .nav-menu {
    left: 20px;
    right: 20px;
    margin-top: 20px;
    padding: 20px 40px 40px 30px;
    border-radius: 30px;
    background-color: #423366;
    box-shadow: 0 7px 0 0 #312452, 0 12px 0 0 rgba(25, 19, 43, 0.6);
  }
  .narrow-container {
    padding-right: 40px;
    padding-left: 40px;
  }
  .narrow-container.benefits-container {
    margin-bottom: 0px;
    padding-right: 40px;
    padding-left: 40px;
  }
  .heading-deserve {
    font-size: 40px;
    line-height: 50px;
  }
  .section-connected {
    margin-bottom: 40px;
    background-image: url('../images/girl-connected.jpg'), url('../images/icon-offgrid-big.svg');
    background-position: 40px 0%, 94% 80%;
    background-size: 83%, 25%;
    background-repeat: no-repeat, no-repeat;
  }
  .container-connected {
    left: 40px;
    top: 50%;
    right: 40px;
    bottom: 0%;
    padding-right: 0px;
  }
  .heading-connected {
    max-width: 100%;
  }
  .description-connected {
    max-width: 100%;
    margin-bottom: 0px;
  }
  .section-forall {
    margin-bottom: 0px;
    background-image: url('../images/for-all.jpg'), url('../images/icon-distributed-big.svg');
    background-position: 40px 0%, 0% 50%;
    background-size: 83%, 25%;
    background-repeat: no-repeat, no-repeat;
  }
  .container-forall {
    left: 40px;
    top: 50%;
    right: 40px;
    bottom: 0%;
    padding-left: 0px;
  }
  .section-benefits {
    min-height: auto;
    margin-bottom: 0px;
    padding-top: 150px;
    padding-bottom: 0px;
    background-position: 120% 150px;
    background-size: 40%;
    box-shadow: inset 0 50px 0 0 #342a4f, inset 0 100px 0 0 #2d2547;
  }
  .heading-different {
    font-size: 40px;
    line-height: 50px;
  }
  .description-different {
    margin-bottom: 0px;
  }
  .grid-benefits {
    margin-top: 60px;
    grid-column-gap: 4vw;
    grid-row-gap: 6vw;
  }
  .benefit-icon {
    width: 38%;
    margin-bottom: 24px;
  }
  .heading-benefit-item {
    font-size: 20px;
    line-height: 30px;
  }
  .wide-container {
    padding-right: 40px;
    padding-left: 40px;
  }
  .heading-more {
    margin-bottom: 40px;
    font-size: 40px;
    line-height: 50px;
  }
  .grid-features {
    grid-column-gap: 4vw;
    grid-row-gap: 6vw;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto auto auto;
    grid-template-rows: auto auto auto auto;
  }
  .section-scuttlebutt {
    background-position: 40px 40px;
    background-size: 38%;
  }
  .description-scuttlebutt {
    max-width: 100%;
  }
  .section-join {
    margin-bottom: 100px;
    box-shadow: 0 50px 0 0 #342a4f, 0 100px 0 0 #2d2547;
  }
  .footer-heading {
    font-size: 52px;
    line-height: 64px;
  }
  .section-footer {
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 100px;
  }
  .wide-container-test {
    padding-right: 40px;
    padding-left: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .contain-30 {
    width: 100%;
    margin-bottom: 40px;
  }
  .contain-70 {
    width: 100%;
  }
  .form-column-1 {
    width: 60%;
  }
  .form-column-2 {
    width: 40%;
  }
  .menu-button {
    top: -3px;
    padding: 12px;
    border-radius: 60px;
    background-color: #523b7c;
    box-shadow: 0 6px 0 0 #3e2963;
  }
  .menu-button.w--open {
    z-index: 90;
    background-color: #62aca0;
    box-shadow: 0 6px 0 0 #376e66;
  }
  .hero-image-container {
    position: relative;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: auto;
    width: 100%;
    height: 50vh;
    padding-right: 0px;
  }
  .hero-image-container.benefits-container {
    margin-bottom: 100px;
    padding-right: 40px;
    padding-left: 40px;
  }
  .hero-image-wrapper {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    overflow: hidden;
    max-width: none;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .hands-background {
    position: static;
    left: 0%;
    top: auto;
    right: 0%;
    bottom: 0%;
    min-width: auto;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 100%;
    object-position: 50% 100%;
  }
  .section-more {
    margin-bottom: 0px;
    padding-top: 100px;
    padding-bottom: 150px;
    background-image: none;
    box-shadow: inset 0 -50px 0 0 #342a4f, inset 0 -100px 0 0 #2d2547;
  }
  .screens-row {
    max-height: 424px;
  }
  .heading-team {
    font-size: 40px;
    line-height: 50px;
  }
}

@media screen and (max-width: 767px) {
  .section-hero {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(23%, rgba(40, 33, 63, 0.9)), to(rgba(40, 33, 63, 0.2))), url('../images/people-nodes.jpg');
    background-image: linear-gradient(90deg, rgba(40, 33, 63, 0.9) 23%, rgba(40, 33, 63, 0.2)), url('../images/people-nodes.jpg');
    background-position: 0px 0px, -20% 130%;
    background-size: auto, cover;
    background-repeat: repeat, no-repeat;
  }
  .section-better {
    padding-bottom: 60px;
  }
  .nav-bar {
    padding-left: 20px;
    background-image: none;
  }
  .brand {
    padding-left: 0px;
  }
  .hero-overlay {
    padding-right: 20px;
    padding-left: 20px;
  }
  .hero-heading {
    margin-bottom: 20px;
    font-size: 40px;
    line-height: 50px;
  }
  .hero-container {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    padding-top: 0px;
  }
  .hero-cta {
    margin-right: 20px;
    padding-right: 25px;
    padding-left: 25px;
    font-size: 16px;
    line-height: 16px;
  }
  .hero-cta-secondary {
    padding-right: 25px;
    padding-left: 25px;
    font-size: 16px;
    line-height: 16px;
  }
  .narrow-container {
    padding-right: 20px;
    padding-left: 20px;
  }
  .narrow-container.benefits-container {
    padding-right: 20px;
    padding-left: 20px;
  }
  .heading-deserve {
    font-size: 30px;
    line-height: 40px;
  }
  .section-connected {
    background-position: 20px 40px, 94% 80%;
    background-size: 93%, 25%;
  }
  .container-connected {
    left: 20px;
    top: 48%;
    right: 20px;
  }
  .heading-connected {
    font-size: 30px;
    line-height: 40px;
  }
  .section-forall {
    background-position: 20px 0%, 0% 50%;
    background-size: 92%, 25%;
  }
  .container-forall {
    left: 20px;
    top: 48%;
    right: 20px;
  }
  .heading-different {
    font-size: 30px;
    line-height: 40px;
  }
  .wide-container {
    padding-right: 20px;
    padding-left: 20px;
  }
  .heading-more {
    font-size: 30px;
    line-height: 40px;
  }
  .heading-feature {
    margin-bottom: 10px;
  }
  .section-scuttlebutt {
    background-size: 53%;
  }
  .scuttlebutt-cta {
    padding: 19px 25px 13px;
    font-size: 16px;
    line-height: 16px;
  }
  .footer-heading {
    font-size: 40px;
    line-height: 50px;
  }
  .join-cta {
    width: 100%;
  }
  .wide-container-test {
    padding-right: 20px;
    padding-left: 20px;
  }
  .form-columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .form-column-1 {
    width: 100%;
    margin-bottom: 20px;
  }
  .form-column-2 {
    width: 50%;
    padding-left: 0px;
  }
  .hero-image-container {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    display: none;
    width: auto;
    height: auto;
    padding-right: 0px;
    padding-left: 0px;
  }
  .hero-image-container.benefits-container {
    padding-right: 20px;
    padding-left: 20px;
  }
  .hero-image-wrapper {
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
  }
  .hands-background {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
  }
  .form-success {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .screens-row {
    max-height: 328px;
  }
  .heading-team {
    font-size: 30px;
    line-height: 40px;
  }
  .grid-team {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto auto;
  }
  .team-member-name {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 479px) {
  .body {
    overflow: scroll;
    font-size: 16px;
    line-height: 24px;
  }
  .section-hero {
    padding-bottom: 140px;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    background-position: 0px 0px, 20% -30%;
    background-size: auto, auto 80%;
  }
  .section-better {
    min-height: auto;
  }
  .brand {
    max-width: 160px;
  }
  .hero-overlay {
    padding-right: 20px;
    padding-left: 20px;
  }
  .hero-heading {
    font-size: 30px;
    line-height: 1.2;
  }
  .hero-cta {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 25px;
    text-align: center;
  }
  .hero-cta-secondary {
    width: 100%;
    margin-right: 0px;
    text-align: center;
  }
  .heading-deserve {
    font-size: 22px;
    line-height: 32px;
  }
  .subheading-deserve {
    margin-bottom: 40px;
  }
  .section-connected {
    min-height: auto;
    margin-bottom: 0px;
    padding-top: 80vw;
    padding-bottom: 60px;
    background-position: 0% 0%, 94% 80%;
    background-size: 100%, 25%;
  }
  .container-connected {
    position: static;
    padding-right: 20px;
    padding-left: 20px;
  }
  .heading-connected {
    font-size: 28px;
    line-height: 38px;
  }
  .section-forall {
    min-height: auto;
    padding-top: 80vw;
    padding-bottom: 40px;
    background-position: 0px 0%, 0% 50%;
    background-size: 100%, 25%;
  }
  .wide-container-centered {
    position: static;
  }
  .container-forall {
    position: static;
    padding-right: 20px;
    padding-left: 20px;
  }
  .heading-different {
    font-size: 28px;
    line-height: 38px;
  }
  .grid-benefits {
    grid-row-gap: 7vw;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto auto auto;
    grid-template-rows: auto auto auto auto;
  }
  .benefit-icon {
    width: 100px;
    margin-bottom: 20px;
  }
  .heading-benefit-item {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 24px;
  }
  .section-pre-heading {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 24px;
  }
  .heading-more {
    font-size: 28px;
    line-height: 38px;
  }
  .heading-feature {
    font-size: 18px;
    line-height: 26px;
  }
  .section-scuttlebutt {
    min-height: auto;
    padding-top: 92vw;
    background-position: 50% 0%;
    background-size: 80%;
  }
  .description-scuttlebutt {
    margin-bottom: 20px;
  }
  .section-join {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .footer-heading {
    margin-bottom: 14px;
    font-size: 22px;
    line-height: 32px;
  }
  .isotype-footer {
    max-width: 100px;
    margin-bottom: 40px;
  }
  .description-join {
    margin-bottom: 30px;
  }
  .section-footer {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto auto;
  }
  .form-column-1 {
    margin-bottom: 10px;
    padding-right: 0px;
  }
  .form-column-2 {
    width: 100%;
  }
  .text-breakpoint {
    display: block;
  }
  .hands-background {
    -o-object-position: 70% 50%;
    object-position: 70% 50%;
  }
  .section-more {
    margin-bottom: 40px;
  }
  .screens-row {
    max-height: 340px;
  }
  .heading-team {
    font-size: 28px;
    line-height: 38px;
  }
  .grid-team {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .team-member-picture {
    width: 160px;
    height: 160px;
    margin-bottom: 20px;
  }
  .team-member-name {
    font-size: 18px;
    line-height: 26px;
  }
}

@font-face {
  font-family: 'Avenir';
  src: url('../fonts/AvenirLTStd-Roman.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Avenir';
  src: url('../fonts/AvenirLTStd-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}