.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;
}

body {
  background-color: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  color: #333;
  font-size: 16px;
  line-height: 23px;
}

.section {
  padding: 20px;
}

.section.footer {
  padding-top: 75px;
  padding-bottom: 35px;
  background-image: linear-gradient(160deg, #181d27, #2c3649 71%, #435579);
}

.section.hero {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #181d27;
}

.section.hero.playground {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 80vh;
  padding: 0px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background-color: #181d27;
}

.section.main {
  padding-bottom: 75px;
  background-color: #fff;
}

.section.margin {
  height: 65vh;
  background-color: #0a2540;
  background-image: linear-gradient(173deg, #6b3970, #58255e 73%, #fff 0);
}

.section.margin._1 {
  background-image: linear-gradient(173deg, #fff 64%, #2b2553 0, #2b2553);
}

.section.margin.first {
  height: 57vh;
  background-image: linear-gradient(173deg, #1e5890, #133f69 28%, #143e66 69%, #fff 0);
}

.section.margin._2 {
  background-image: linear-gradient(173deg, #fff 74%, #6b3970 0, #6b3970);
}

.section.margin._3 {
  background-image: linear-gradient(173deg, #fff 73%, #5e2526 0, #722c2d);
}

.section.margin._4 {
  background-image: linear-gradient(173deg, #2b2553, #2e2953 73%, #fff 0);
}

.container {
  height: 75%;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}

.container.footer-container {
  text-align: center;
}

.container.hero {
  max-width: 1100px;
}

.heading-h1 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 45px;
  line-height: 60px;
  font-weight: 600;
}

.heading-h1.main {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  color: #fff;
  font-size: 125px;
  line-height: 50px;
  font-weight: 800;
  text-align: center;
}

.heading-h1.footer {
  margin-top: 70px;
  margin-bottom: 25px;
  color: #fff7c8;
  font-size: 40px;
  line-height: 50px;
  text-align: center;
}

.heading-h1.plan-heading {
  margin-top: 65px;
  margin-bottom: 65px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  color: #181d27;
  font-size: 60px;
  line-height: 65px;
  font-weight: 700;
  text-align: center;
}

.heading-h2 {
  margin-top: 50px;
  font-size: 35px;
  line-height: 45px;
  text-align: center;
}

.heading-h2.card-header {
  margin-top: 0px;
  margin-bottom: 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  color: #fffbe0;
  font-size: 28px;
  line-height: 40px;
}

.heading-h2.hero-subheader {
  margin-top: 0px;
  color: #eee;
  font-size: 33px;
  font-weight: 500;
  text-align: center;
}

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

.form-container {
  width: 425px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.newsletter-form {
  position: relative;
  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: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.form-input {
  margin-bottom: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
  border-style: solid;
  border-width: 0px 0px 1px;
  border-color: #000 #000 #fff7c8;
  border-radius: 0px;
  background-color: transparent;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.form-input:focus {
  border-color: #fff #fff #fffadd;
  border-bottom-width: 2px;
}

.form-input::-webkit-input-placeholder {
  color: #b4b4b4;
  font-size: 20px;
}

.form-input:-ms-input-placeholder {
  color: #b4b4b4;
  font-size: 20px;
}

.form-input::-ms-input-placeholder {
  color: #b4b4b4;
  font-size: 20px;
}

.form-input::placeholder {
  color: #b4b4b4;
  font-size: 20px;
}

.submit-button {
  margin-top: 9px;
  margin-bottom: 9px;
  padding: 20px 15px;
  border-radius: 100px;
  background-color: #fff7c8;
  background-image: linear-gradient(122deg, #fffdcf 35%, #cac7a2);
  color: #333;
  font-size: 18px;
  font-weight: 700;
}

.success-message {
  width: 500px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 5px;
  background-color: #fff7c8;
  color: #eee;
  font-size: 18px;
  font-weight: 400;
}

.error-message {
  width: 500px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 5px;
  background-color: #9e5252;
  text-align: center;
}

.card {
  padding: 50px 30px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  border-radius: 7px;
  background-color: #252d3d;
}

.text-span {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  color: #ddd;
  font-size: 37px;
  line-height: 65px;
  font-style: italic;
  font-weight: 500;
}

.card-paragraph {
  color: #f1f1f1;
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  text-align: center;
}

.hero-div {
  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;
}

.hero-image {
  width: 375px;
  height: 500px;
  border-radius: 13px;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero-image.playground {
  width: 50%;
  height: 100%;
  -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: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4))), url('../images/Chamath_Palihapitiya_Portrait.jpg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/Chamath_Palihapitiya_Portrait.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
}

.hero-text-div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.copyright-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 65px;
  margin-bottom: 0px;
  -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;
  color: #fff;
  text-align: center;
}

.highlight {
  color: #fff7c8;
}

.text-block {
  color: #222;
  font-weight: 500;
}

.div-block {
  height: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}

.disclaimer {
  margin-top: 5px;
  margin-bottom: 0px;
  color: #fff;
  font-size: 12px;
  text-align: left;
}

.link {
  color: #fff7c8;
}

.policy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0px;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #e2e2e2;
}

.policy._1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #222;
}

.policy.first {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 100px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.policy-heading {
  width: 450px;
  margin-top: 0px;
  margin-bottom: 0px;
  color: #fff;
  font-size: 55px;
  line-height: 65px;
}

.policy-heading._1 {
  color: #000;
}

.policy-paragraph {
  width: 450px;
  margin-bottom: 0px;
  color: #fff;
  font-size: 22px;
  line-height: 30px;
}

.policy-paragraph._1 {
  color: #000;
}

@media screen and (max-width: 991px) {
  .section.footer {
    padding-top: 50px;
  }

  .section.hero {
    padding-top: 50px;
    padding-bottom: 75px;
  }

  .section.main {
    padding-bottom: 60px;
  }

  .container.hero {
    max-width: 990px;
  }

  .heading-h1.main {
    margin-bottom: 55px;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    font-size: 100px;
  }

  .heading-h1.plan-heading {
    margin-top: 40px;
    margin-bottom: 55px;
    font-size: 54px;
  }

  .heading-h2.card-header {
    font-size: 27px;
  }

  .heading-h2.hero-subheader {
    padding-right: 25px;
    padding-left: 25px;
    font-size: 28px;
  }

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

  .form-container {
    width: 400px;
    margin: 0px auto;
  }

  .card {
    padding-right: 20px;
    padding-left: 20px;
  }

  .text-span {
    font-size: 33px;
  }

  .card-paragraph {
    font-size: 19px;
  }

  .hero-div {
    -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;
  }

  .hero-image {
    width: 275px;
    height: 300px;
    margin-bottom: 50px;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }

  .hero-text-div {
    margin-right: 0px;
  }
}

@media screen and (max-width: 767px) {
  .heading-h1 {
    font-size: 40px;
    line-height: 50px;
  }

  .heading-h1.plan-heading {
    font-size: 52px;
    line-height: 60px;
  }

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

  .form-container {
    padding-right: 0px;
    padding-left: 0px;
  }

  .newsletter-form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 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: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .form-input {
    font-size: 16px;
  }

  .submit-button {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
  }

  .card {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 479px) {
  .section {
    padding-top: 0px;
  }

  .section.hero {
    padding-bottom: 50px;
  }

  .heading-h1 {
    font-size: 33px;
    line-height: 40px;
  }

  .heading-h1.main {
    margin-bottom: 40px;
    font-size: 60px;
  }

  .heading-h1.footer {
    margin-top: 0px;
    margin-bottom: 30px;
    font-size: 30px;
    line-height: 45px;
  }

  .heading-h1.plan-heading {
    margin-bottom: 35px;
    font-size: 32px;
    line-height: 45px;
  }

  .heading-h2 {
    margin-bottom: 25px;
    font-size: 35px;
  }

  .heading-h2.hero-subheader {
    margin-bottom: 0px;
    font-size: 21px;
    line-height: 30px;
  }

  .form-container {
    width: 280px;
    margin-bottom: 0px;
    padding-right: 0px;
    padding-left: 0px;
  }

  .newsletter-form {
    display: block;
    width: 100%;
    margin-right: 0px;
    margin-left: 0px;
  }

  .form-input {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 15px;
    padding-top: 28px;
    padding-bottom: 28px;
    font-size: 17px;
  }

  .submit-button {
    width: 100%;
    margin-top: 10px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .success-message {
    width: 280px;
  }

  .text-span {
    font-size: 27px;
    line-height: 60px;
  }

  .card-paragraph {
    font-size: 18px;
  }

  .hero-image {
    width: 250px;
  }
}

