/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop
$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop
1em = 16px
*/
* {
  font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-display: swap;
  color: #333333;
  z-index: 1; }

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  font-size: 62.5%; }
  @media only screen and (max-width: 65.625em) {
    html {
      font-size: 56.25%; } }
  @media only screen and (max-width: 50em) {
    html {
      font-size: 50%; } }
  @media only screen and (min-width: 112.5em) {
    html {
      font-size: 75%; } }

a {
  color: inherit;
  text-decoration: inherit; }

button, input[type="submit"], input[type="reset"] {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit; }

.landing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }
  .landing__main-body {
    height: calc(100vh - 7rem  - calc(4.5rem + 8.5rem));
    min-height: 55rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
  .landing__header {
    display: flex;
    justify-content: center;
    margin-top: 0;
    font-size: 4rem;
    letter-spacing: .09rem;
    text-align: center; }
    .landing__header > p:first-child {
      font-weight: 300; }
      .landing__header > p:first-child:after {
        content: '\00a0'; }
    .landing__header > div {
      position: relative;
      overflow-x: auto;
      overflow-y: hidden; }
      .landing__header > div > span {
        opacity: 0;
        user-select: none; }
    .landing__header > div > p {
      font-weight: 500;
      position: absolute;
      left: 0;
      display: none;
      transition-duration: 155ms !important;
      scrollbar-width: none;
      overflow-y: scroll; }
      .landing__header > div > p:after {
        content: '.'; }
      .landing__header > div > p::-webkit-scrollbar {
        display: none; }
      .landing__header > div > p.active {
        display: initial;
        animation: moveTo 1s;
        -webkit-animation: moveTo 1s;
        -moz-animation: moveTo 1s;
        -o-animation: moveTo 1s; }
      .landing__header > div > p.leaving {
        display: initial;
        top: -100%;
        animation: moveAway 1s;
        -webkit-animation: moveAway 1s;
        -moz-animation: moveAway 1s;
        -o-animation: moveAway 1s; }
  .landing__body {
    padding: 0 14.5%;
    margin-top: 8rem;
    display: flex;
    align-items: center; }
    .landing__body > * {
      width: 50%; }
    .landing__body--desc {
      padding-right: 14%; }
      .landing__body--desc > *:not(:last-child) {
        margin-bottom: 2rem; }
      .landing__body--desc--header {
        color: #4F4F4F;
        font-size: 2.7rem;
        letter-spacing: .07rem;
        line-height: 3.65rem; }
      .landing__body--desc--paragraph {
        font-weight: 300;
        font-size: 1.8rem;
        letter-spacing: .037rem;
        line-height: 3.2rem; }
      .landing__body--desc--button {
        margin-top: 3rem; }
    .landing__body--photo {
      height: 39rem;
      position: relative;
      user-select: none; }
      .landing__body--photo--backing {
        position: absolute;
        top: -9rem;
        left: -10rem;
        margin: 1.6rem 3rem 1.6rem 1.7rem;
        width: calc(59rem - 3.1rem); }
      .landing__body--photo--content {
        position: absolute;
        margin: 1.45rem 3rem 1.6rem 1.7rem;
        width: calc(59rem - 3.1rem); }
      .landing__body--photo--front {
        position: absolute;
        width: 59rem; }
    @media only screen and (max-width: 95em) {
      .landing__body {
        padding: 0 9%; }
        .landing__body--desc {
          padding-right: 10%; }
          .landing__body--desc--paragraph {
            line-height: 3rem; }
        .landing__body--photo {
          height: 36rem;
          position: relative;
          left: -2%; }
          .landing__body--photo--content {
            position: absolute;
            margin: 1.6rem 3rem 1.6rem 1.7rem;
            width: calc(54rem - 3.1rem); }
          .landing__body--photo--front {
            position: absolute;
            width: 54rem; } }
  .landing__footer {
    width: 100%;
    position: relative;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: calc(4.5rem + 8.5rem); }
    .landing__footer--lead {
      position: relative;
      width: auto;
      height: 4.5rem; }
      .landing__footer--lead > a {
        color: #828282;
        font-weight: 500;
        font-size: 1.33rem;
        letter-spacing: .04rem; }
      .landing__footer--lead > div {
        margin-top: .7rem;
        background-color: #F2F2F2;
        height: 2px;
        width: 100%; }
    .landing__footer--brands {
      background-color: #232730;
      width: 100%;
      height: 8.5rem;
      display: flex;
      align-items: center;
      overflow-x: hidden; }
      .landing__footer--brands > .socials > a {
        background-color: #EFEFEF;
        height: 2.2rem;
        width: 2.2rem;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center; }
        .landing__footer--brands > .socials > a > img {
          height: 100%;
          width: 100%; }
      .landing__footer--brands > p {
        margin-left: 11rem;
        margin-right: 1rem;
        text-transform: uppercase;
        font-size: 1.3rem;
        font-weight: 400;
        letter-spacing: .05rem;
        color: white; }
        .landing__footer--brands > p.email {
          font-weight: 300;
          display: flex;
          align-items: center;
          letter-spacing: .02rem;
          font-size: 1.3rem;
          text-transform: none;
          margin-left: 0; }
          .landing__footer--brands > p.email > span {
            margin-left: 1rem;
            font-size: 1.3rem;
            color: white; }
      .landing__footer--brands > img {
        height: 5.6rem;
        margin-left: 5rem; }
      @media only screen and (max-width: 95em) {
        .landing__footer--brands > img:nth-child(6) {
          display: none; } }
      @media only screen and (max-width: 77.625em) {
        .landing__footer--brands > img:nth-child(5) {
          display: none; } }
      @media only screen and (max-width: 65.625em) {
        .landing__footer--brands > img:nth-child(4) {
          display: none; } }
      @media only screen and (max-width: 50em) {
        .landing__footer--brands {
          flex-wrap: wrap;
          height: auto;
          justify-content: center;
          overflow-x: initial; }
          .landing__footer--brands > p {
            width: 100%;
            margin: 2rem 0 1.4rem 0;
            text-align: center; }
          .landing__footer--brands > img {
            margin: 0 0 2rem 0; } }
  @media only screen and (max-width: 77.625em) {
    .landing__main-body {
      min-height: 70rem; }
    .landing__body {
      padding: 0 6.2%;
      margin-bottom: 0;
      margin-top: 3rem;
      flex-direction: column-reverse;
      justify-content: initial; }
      .landing__body--desc {
        padding-right: 0%;
        width: 90rem;
        display: flex;
        flex-direction: column;
        align-items: center; }
        .landing__body--desc--header {
          display: none; }
        .landing__body--desc--paragraph {
          text-align: center;
          margin-bottom: 2.55rem !important; }
        .landing__body--desc > .button {
          margin-top: 0; }
      .landing__body--photo {
        left: 0;
        width: 54rem;
        margin-bottom: 2.5rem; } }
  @media only screen and (max-width: 65.625em) {
    .landing__main-body {
      min-height: 84rem; }
    .landing__header {
      font-size: 4.5rem; }
    .landing__body--desc {
      width: 74rem; }
      .landing__body--desc > .button {
        width: 25rem;
        height: 5.4rem; } }
  @media only screen and (max-width: 50em) {
    .landing__header {
      display: flex;
      flex-direction: column;
      align-items: center;
      font-size: 5.2rem; }
      .landing__header > p {
        margin-bottom: 1rem; }
      .landing__header > div > p {
        left: 50%;
        transform: translateX(-50%); }
    .landing__body {
      margin-top: 2.4rem; }
      .landing__body--desc {
        max-width: 74rem;
        width: 88%; } }
  @media only screen and (max-width: 36.3em) {
    .landing__main-body {
      min-height: 93rem; }
    .landing__footer {
      display: none; }
    .landing__header {
      font-size: 4.2rem; }
    .landing__body {
      padding: 0; }
      .landing__body--desc--paragraph {
        margin-bottom: 3.3rem !important; }
      .landing__body--desc--button {
        font-size: 1.85rem !important; }
      .landing__body--photo {
        height: 26.5rem;
        width: 38.4rem;
        margin-bottom: 5rem; }
        .landing__body--photo--content {
          margin: 1rem 0rem 0rem 1.06rem;
          width: calc(38.4rem - 2rem); }
        .landing__body--photo--front {
          position: absolute;
          width: 38.4rem; } }

.contact {
  justify-content: center; }

@keyframes moveTo {
  0% {
    top: 100%; }
  100% {
    top: 0; } }

@keyframes moveAway {
  0% {
    top: 0; }
  100% {
    top: -100%; } }

.referral {
  margin-top: 9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }
  .referral__header {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center; }
    .referral__header > div {
      margin-bottom: 2.35rem;
      display: flex;
      align-items: center;
      justify-content: center; }
      .referral__header > div > p {
        font-size: 4rem;
        font-weight: 300;
        letter-spacing: .13rem; }
        .referral__header > div > p > span {
          font-weight: 400; }
      .referral__header > div .arrow {
        background: black;
        height: 2px;
        width: 85px;
        margin: 0 auto;
        position: relative;
        cursor: pointer;
        margin: .53rem 4.05rem 0 4.05rem; }
        .referral__header > div .arrow:before, .referral__header > div .arrow:after {
          content: "";
          background: black;
          position: absolute;
          height: 2px;
          width: 15px; }
        .referral__header > div .arrow:before {
          right: -2px;
          bottom: -5px;
          transform: rotate(-45deg); }
        .referral__header > div .arrow:after {
          right: -2px;
          top: -5px;
          transform: rotate(45deg); }
    .referral__header > p {
      font-size: 1.6rem;
      letter-spacing: .04rem;
      line-height: 2.8rem;
      font-weight: 300;
      width: 60rem;
      text-align: center; }
  .referral__reward {
    margin-bottom: 4.1rem;
    display: flex;
    border: 1px solid #E8E8E8;
    width: 80%;
    max-width: 110rem; }
    .referral__reward > .container {
      display: flex;
      flex-direction: column;
      align-items: center; }
    .referral__reward > div:first-child {
      border-right: 1px solid #E8E8E8; }
    .referral__reward--header {
      margin-bottom: 2.6rem;
      width: 100%;
      height: 2.8rem;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #F2F2F2;
      color: #242424;
      font-size: 1.4rem;
      font-weight: 500;
      letter-spacing: .033rem; }
      .referral__reward--header.highlighted {
        color: #2875EA; }
    .referral__reward--tagline {
      margin-bottom: 2.6rem;
      font-size: 3rem;
      font-weight: 500;
      letter-spacing: .071rem; }
    .referral__reward--body {
      margin-bottom: 2.6rem;
      font-size: 1.3rem;
      line-height: 2.2rem;
      letter-spacing: .03rem;
      font-weight: 300;
      text-align: center;
      width: 81.5%; }
  .referral__share {
    width: 80%;
    max-width: 110rem;
    border: 1px solid #E8E8E8;
    border-left: 6px solid #3571DE;
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: flex;
    height: auto;
    position: relative; }
    .referral__share--info {
      margin-left: 4.5%;
      position: relative;
      width: 67.5%; }
      .referral__share--info > div {
        display: flex; }
        .referral__share--info > div > p {
          font-weight: 600;
          font-size: 2.4rem;
          letter-spacing: .056rem;
          margin-bottom: 1.4rem; }
        .referral__share--info > div > div {
          height: 2rem;
          width: 20rem; }
      .referral__share--info > input {
        width: calc(100% - 1.5rem - 1.5rem); }
      .referral__share--info > p {
        font-size: 1.3rem;
        color: #3B3B3B;
        letter-spacing: .03rem;
        margin-bottom: 3.2rem;
        margin-left: .2rem; }
      .referral__share--info > textarea {
        width: calc(100% - 1.5rem - 2.5rem);
        height: 10rem; }
    .referral__share--section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      width: 28%; }
      .referral__share--section > .button:last-child {
        margin-bottom: calc(5rem + (1.65rem / 2));
        transform: translateY(50%); }
      .referral__share--section > .copy-link {
        background-color: white;
        border: 1px solid black;
        height: 3.1rem;
        color: black;
        margin-bottom: calc(5rem + (1.65rem / 2) + (2.5rem / 2));
        cursor: pointer; }
        .referral__share--section > .copy-link > img {
          margin-left: 1rem;
          width: 1.8rem;
          height: 1.8rem; }
  @media only screen and (max-width: 65.625em) {
    .referral__share {
      flex-direction: column; }
      .referral__share--info {
        width: 90%; }
      .referral__share--section {
        flex-direction: row-reverse;
        margin-left: 4.5%;
        justify-content: flex-end;
        width: auto; }
        .referral__share--section > .button:last-child, .referral__share--section .button:first-child {
          margin: 2rem 3rem 0 0;
          transform: none; } }
  @media only screen and (max-width: 50em) {
    .referral__header > div {
      flex-direction: column; }
      .referral__header > div > p {
        margin-bottom: 0.2rem; }
      .referral__header > div .arrow {
        display: none; }
    .referral__header > p {
      width: 50rem; }
    .referral__reward {
      flex-direction: column;
      border: none; }
      .referral__reward > .container {
        border: 1px solid #E8E8E8; }
        .referral__reward > .container:first-child {
          margin-bottom: 3rem; }
    .referral__share {
      margin-bottom: 6rem; } }

.input {
  border-style: inset;
  border: 1px solid #D8D9DC;
  color: black;
  display: flex;
  align-items: center;
  border-radius: 4px;
  padding: 2rem 0 2rem 1.5rem;
  font-weight: 300; }
  .input::placeholder {
    color: #5E5E5E;
    opacity: .9; }
  .input:focus {
    outline: none !important; }
  .input.full {
    max-width: 100%; }
  .input.half {
    width: 48%; }
    .input.half:first-child {
      margin-right: 4%; }
  @media only screen and (max-width: 95em) {
    .input {
      padding: 2rem 0 2rem 1.5rem;
      font-size: 1.25rem; } }

.textarea {
  border-style: inset;
  border: 1px solid #D8D9DC;
  color: black;
  display: flex;
  align-items: center;
  border-radius: 4px;
  padding: .65rem 1.5rem 1rem 1rem;
  resize: none;
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: .03rem; }
  .textarea::placeholder {
    color: #5E5E5E;
    opacity: .9; }
  .textarea:focus {
    outline: none !important; }
  .textarea.full {
    max-width: 100%; }
  .textarea.half {
    width: 48%; }
    .textarea.half:first-child {
      margin-right: 4%; }
  @media only screen and (max-width: 95em) {
    .textarea {
      padding: .65rem 1.5rem 1rem 1rem;
      font-size: 1.25rem; } }

.thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: relative; }
  .thanks > .logo {
    position: absolute;
    top: 0;
    margin-top: 12rem;
    color: black; }
    .thanks > .logo > a > *:first-child {
      font-size: 5.75rem; }
  .thanks > .header {
    font-weight: 300;
    color: #353851;
    letter-spacing: .09rem;
    font-size: 4.3rem;
    margin-bottom: 4rem;
    margin-top: 4rem; }
  .thanks > .sub-header {
    font-size: 1.6rem;
    letter-spacing: .035rem;
    line-height: 2.86rem;
    width: 60rem;
    color: #353851;
    text-align: center;
    max-width: 90%; }
  .thanks > a {
    position: absolute;
    bottom: 0;
    margin-bottom: 5rem;
    color: #3375B0;
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: .042rem;
    text-align: center;
    width: 30rem;
    padding: 2rem 0; }
    .thanks > a > a > *:first-child {
      font-size: 5.75rem; }

.get-involved {
  display: flex;
  width: 100vw;
  height: 100vh;
  position: relative;
  min-height: 90rem; }
  .get-involved__input {
    border-style: inset;
    border: 1px solid #D8D9DC;
    color: black;
    display: flex;
    align-items: center;
    border-radius: 4px;
    padding: 2rem 0 2rem 1.5rem;
    margin-bottom: 2.3rem;
    font-weight: 300; }
    .get-involved__input::placeholder {
      color: #333333;
      opacity: .9; }
    .get-involved__input:focus {
      outline: none !important; }
    .get-involved__input.full {
      max-width: 100%; }
    .get-involved__input.half {
      width: 48%; }
      .get-involved__input.half:first-child {
        margin-right: 4%; }
    @media only screen and (max-width: 95em) {
      .get-involved__input {
        padding: 1.45rem 0 1.45rem 1.5rem;
        font-size: 1.25rem; } }
  .get-involved > .background {
    width: 45%;
    max-height: 100%;
    overflow: hidden;
    object-fit: cover; }
    @media only screen and (max-width: 65.625em) {
      .get-involved > .background {
        display: none; } }
  .get-involved > .thin {
    width: 55%; }
  .get-involved > .wide {
    width: 70%; }
  .get-involved > .body {
    position: relative; }
    @media only screen and (max-width: 77.625em) {
      .get-involved > .body {
        width: 100%; } }
    .get-involved > .body > .content {
      width: 72%;
      height: 100%;
      left: 14%;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      color: #353851; }
      .get-involved > .body > .content > .logo {
        color: black;
        position: absolute;
        top: 4.5rem; }
      .get-involved > .body > .content > .header {
        font-size: 4rem;
        letter-spacing: .09rem;
        font-weight: 300;
        margin-bottom: 2rem;
        margin-top: 2rem;
        font-weight: 300; }
      .get-involved > .body > .content > .sub-header {
        font-size: 1.5rem;
        letter-spacing: .04rem;
        max-width: 90%;
        line-height: 2.55rem;
        margin-bottom: 3.8rem;
        font-weight: 300; }
      .get-involved > .body > .content > .half {
        display: flex;
        width: 100%;
        position: relative; }
      .get-involved > .body > .content > .apply {
        display: flex;
        margin-bottom: 2.5rem;
        margin-top: 2rem; }
        .get-involved > .body > .content > .apply > button {
          width: 20rem;
          margin-right: 3rem; }
        .get-involved > .body > .content > .apply > div {
          font-size: 1.4rem;
          font-weight: 500;
          letter-spacing: .026rem;
          display: flex;
          flex-direction: column;
          justify-content: space-around; }
          .get-involved > .body > .content > .apply > div > p {
            color: black; }
          .get-involved > .body > .content > .apply > div > a {
            color: #3375B0; }
      .get-involved > .body > .content > .tos {
        color: #979797;
        font-size: 1.3rem;
        line-height: 2.2rem; }
        .get-involved > .body > .content > .tos > span {
          text-decoration: underline; }
        .get-involved > .body > .content > .tos:not(:last-child) {
          margin-bottom: 2rem; }
      @media only screen and (max-width: 95em) {
        .get-involved > .body > .content > .logo {
          top: 2.8rem; }
        .get-involved > .body > .content > .header {
          font-size: 3.5rem; }
        .get-involved > .body > .content > .sub-header {
          font-size: 1.5rem; }
        .get-involved > .body > .content > .tos {
          font-size: 1.2rem; }
        .get-involved > .body > .content > .apply {
          margin-top: 1.7rem;
          margin-bottom: 2.2rem; }
          .get-involved > .body > .content > .apply > button {
            width: 16rem;
            height: 5rem;
            font-size: 1.44rem;
            font-weight: 400; }
          .get-involved > .body > .content > .apply > div {
            font-weight: 400;
            font-size: 1.33rem; } }

.logo {
  display: flex;
  align-items: center;
  color: white; }
  .logo.black {
    color: black; }
  .logo > * > *:first-child {
    font-weight: 500;
    font-size: 3.2rem;
    letter-spacing: -.24rem; }
  .logo > * > *:nth-child(2) {
    font-weight: 400;
    font-size: .8rem;
    margin: 0 1rem 0 .38rem; }
  .logo > * > *:nth-child(3) {
    font-weight: 300;
    font-size: 2rem;
    letter-spacing: .047rem;
    margin-bottom: 1rem;
    display: none; }

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3%;
  border-bottom: 1px solid #E0E0E0;
  height: calc(4rem + 3rem);
  box-sizing: border-box; }
  .nav > * {
    flex-basis: 0;
    flex-grow: 1; }
  .nav__cta {
    padding-top: 1.1rem;
    font-size: 1.3rem;
    letter-spacing: .03rem;
    text-align: center; }
    .nav__cta > span {
      color: #337447;
      font-weight: 600; }
  .nav__sign-up > .button {
    float: right;
    height: 3.4rem;
    width: 9.6rem;
    font-size: 1.28rem; }

.button {
  background-color: #3571DE;
  color: white;
  border-radius: 500px;
  height: 5.15rem;
  width: 18.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: .04rem;
  font-weight: 500;
  font-size: 1.48rem;
  cursor: pointer; }
