@import url(https://fonts.googleapis.com/css?family=Montserrat:300,500,600,700);/* Base styles */

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.image {
  max-width: 100%;
  display: block;
}

/* Component styles */

.header {
  padding-top: 32px;
  background: #032E5A url("/images/landing-page/header-bg-mobile.svg") no-repeat 80% -150px/cover;
  height: 925px;
  overflow-y: hidden;
  position: relative;
  max-width: 1920px;
  margin: auto;
  z-index: 1;
}

.header__inner {
  padding-left: 15px;
  padding-right: 15px;
  max-width: 920px;
  margin: auto;
}

@media (min-width: 992px) {
  .header__inner {
    position: relative;
  }
}

.header__logo {
  margin: 0 auto 8vh;
}

@media (min-width: 768px) {
  .header__logo {
    margin-bottom: 70px;
  }
}

@media (min-width: 992px) {
  .header__logo {
    margin-left: 0;
  }
}

.header__heading {
  font-weight: 300;
  line-height: 29px;
  font-size: 1.5rem;
  text-align: center;
  color: #F8F8F8;
  margin: 0 auto 18px;
  max-width: 460px;
}

@media (min-width: 768px) {
  .header__heading {
    line-height: 37px;
    font-size: 1.875rem;
    max-width: 575px;
    margin-bottom: 12px;
  }
}

@media (min-width: 768px) {
  .header__heading {
    text-align: left;
  }
}

.header__text {
  font-weight: 600;
  line-height: 22px;
  font-size: 1.125rem;
  text-align: center;
  color: #00FCFF;
  margin: 0 auto 5vh;
  max-width: 298px;
}

@media (min-width: 768px) {
  .header__text {
    margin-bottom: 40px;
  }
}

@media (min-width: 992px) {
  .header__text {
    margin-left: 0;
    margin-bottom: 50px;
    text-align: left;
  }
}

.header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  max-width: 400px;
  width: 100%;
  margin: auto;
}

@media (min-width: 992px) {
  .header__buttons {
    margin-left: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.header__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 149px;
  font-weight: bold;
  line-height: 16px;
  font-size: 0.875rem;
  border-radius: 21.5px;
  height: 40px;
  outline: 0;
  border: 0;
  text-decoration: none;
  -webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  -webkit-transition: -webkit-transform 0.15s;
  transition: -webkit-transform 0.15s;
  transition: transform 0.15s;
  transition: transform 0.15s, -webkit-transform 0.15s;
}

.header__button--green {
  color: white;
  background-color: #01C2D0;
  margin-right: 22px;
}

.header__button--white {
  color: #01C2D0;
  background-color: white;
}

.header__button:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
          box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

.header__app-button {
  display: inline-block;
  -webkit-transition: opacity 0.15s, -webkit-transform 0.15s;
  transition: opacity 0.15s, -webkit-transform 0.15s;
  transition: transform 0.15s, opacity 0.15s;
  transition: transform 0.15s, opacity 0.15s, -webkit-transform 0.15s;
  opacity: 0.95;
}

.header__app-button:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  opacity: 1;
}

.header__app-badge {
  height: 50px;
  width: auto;
  display: block;
}

@media (min-width: 768px) {
  .header__app-badge {
    height: 55px;
  }
}

@media (min-width: 992px) {
  .header__content {
    display: inline-block;
  }
}

.header__image {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -51vw;
  margin: 0 auto;
  left: 0;
  right: 0;
}

@media (min-width: 768px) {
  .header__image {
    bottom: -165px;
  }
}

@media (min-width: 992px) {
  .header__image {
    left: 72%;
    bottom: -70%;
    -webkit-transform: none;
            transform: none;
  }
}

@media (min-width: 768px) {
  .header {
    background-image: url("/images/landing-page/header-bg-desktop.svg");
    background-position: 15% -210px;
  }
}

@media (min-width: 992px) {
  .header {
    padding-top: 74px;
    height: 650px;
  }
}

@media (min-width: 1200px) {
  .header {
    background-position: 0px -150px;
  }
}

.content {
  padding-top: 38px;
}

.content__inner {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .content__inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.content__heading {
  font-weight: 600;
  line-height: 29px;
  font-size: 1.5rem;
  text-align: center;
  color: #032E5A;
  margin: 0 auto 26px;
  max-width: 872px;
}

@media (min-width: 768px) {
  .content__heading {
    margin-bottom: 42px;
    line-height: 37px;
    font-size: 1.875rem;
  }

  .content__heading--bottom {
    max-width: 463px;
    margin-bottom: 9px;
  }
}

.content__opportunities {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  text-align: center;
}

@media (min-width: 768px) {
  .content__opportunities {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto 36px;
    max-width: 680px;
  }
}

.content__opportunity {
  font-weight: bold;
  line-height: 18px;
  font-size: 0.875rem;
  color: #21CED9;
}

@media (min-width: 768px) {
  .content__opportunity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .content__opportunity::after {
    content: '';
    background-color: #21CED9;
    width: 4px;
    height: 4px;
    display: inline-block;
    margin-left: 20px;
    border-radius: 50%;
  }

  .content__opportunity--last::after {
    content: none;
  }
}

.content__phones {
  margin: auto;
}

.content__text {
  font-weight: 500;
  line-height: 22px;
  font-size: 1.125rem;
  text-align: center;
  color: #032E5A;
  margin-top: 0;
  margin-bottom: 19px;
}

.content__text--small {
  display: none;
  margin: 0 auto 55px;
  max-width: 633px;
}

@media (min-width: 768px) {
  .content__text--small {
    display: block;
  }
}

.content__text--bottom {
  max-width: 340px;
  margin: 0 auto 19px;
}

@media (min-width: 768px) {
  .content__text--bottom {
    margin-bottom: 63px;
    max-width: 765px;
  }
}

.content__tablets {
  margin: 0 auto 23px;
}

@media (min-width: 992px) {
  .content__tablets {
    margin: 0;
  }
}

@media (min-width: 768px) {
  .content__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 462px;
    margin: 0 auto 68px;
  }
}

.content__big-heading {
  font-weight: 300;
  line-height: 37px;
  font-size: 1.875rem;
  color: #032E5A;
  margin-top: 0;
  margin-bottom: 26px;
  text-align: center;
  margin-left: -3px;
  margin-right: -3px;
}

@media (min-width: 768px) {
  .content__big-heading {
    margin: 0 auto 34px;
  }
}

.content__app-store {
  margin: 0 auto 23px;
}

@media (min-width: 768px) {
  .content__app-store {
    margin-bottom: 0;
  }
}

.content__play-store {
  margin: 0 auto 40px;
}

@media (min-width: 768px) {
  .content__play-store {
    margin-bottom: 0;
  }
}

.content__logo {
  margin: 0 auto 27px;
}

.content__info {
  font-weight: 500;
  line-height: 22px;
  font-size: 1.125rem;
  text-align: center;
  color: #032E5A;
  margin: 0 auto 38px;
}

.content__social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 274px;
  width: 100%;
  margin: auto;
  list-style: none;
  padding: 0;
  display: none;
}

.content--bottom {
  padding-bottom: 40px;
}

.content__extra-tablets {
  display: none;
}

@media (min-width: 992px) {
  .content__extra-tablets {
    display: block;
  }
}

@media (min-width: 992px) {
  .content__images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    max-width: 960px;
    margin: 0 auto 69px;
  }
}

@media (min-width: 768px) {
  .content {
    padding-top: 50px;
  }

  .content--bottom {
    padding-bottom: 110px;
  }
}

@media (min-width: 992px) {
  .content {
    padding-top: 75px;
  }
}

.viewing {
  background-color: #EDEDED;
  padding-top: 41px;
  padding-bottom: 70px;
  position: relative;
  z-index: 1;
}

.viewing__inner {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .viewing__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 992px) {
  .viewing__inner {
    padding-left: 0;
    padding-right: 0;
    max-width: 837px;
    margin: auto;
  }
}

@media (min-width: 768px) {
  .viewing__content {
    min-height: 445px;
  }
}

.viewing__heading {
  font-weight: 600;
  line-height: 29px;
  font-size: 1.5rem;
  color: #032E5A;
  margin-top: 0;
  margin-bottom: 35px;
}

@media (min-width: 768px) {
  .viewing__heading {
    max-width: 396px;
    line-height: 37px;
    font-size: 1.875rem;
  }
}

.viewing__tabs {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 15px;
  margin: 0 auto 30px;
  max-width: 385px;
  width: 100%;
}

@media (min-width: 768px) {
  .viewing__tabs {
    margin-left: 0;
    margin-bottom: 44px;
  }
}

.viewing__tab {
  font-weight: bold;
  line-height: 15px;
  font-size: 0.6875rem;
  color: #A0A4AE;
}

.viewing__tab--active {
  color: #21CED9;
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

.viewing__tab:hover {
  cursor: pointer;
}

@media (min-width: 360px) {
  .viewing__tab {
    font-size: 0.75rem;
  }
}

@media (min-width: 768px) {
  .viewing__tab {
    font-size: 0.875rem;
  }
}

.viewing__line {
  background-color: #21CED9;
  height: 3px;
  width: 125px;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: left 0.4s cubic-bezier(0.76, 0.13, 0.01, 1.26), width 0.4s;
  transition: left 0.4s cubic-bezier(0.76, 0.13, 0.01, 1.26), width 0.4s;
}

@media (min-width: 768px) {
  .viewing__line {
    width: 144px;
  }
}

.viewing__line--right {
  left: calc(100% - 172px);
  width: 172px;
}

@media (min-width: 768px) {
  .viewing__line--right {
    left: calc(100% - 202px);
    width: 202px;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .viewing__line {
    display: none;
  }
}

.viewing__text {
  opacity: 0;
  height: 0;
  font-weight: 500;
  line-height: 15px;
  font-size: 0.75rem;
  color: #0F2139;
  margin: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  overflow: hidden;
}

.viewing__text--active {
  opacity: 1;
  height: auto;
  margin: 0 auto 43px 0;
}

@media (min-width: 768px) {
  .viewing__text {
    max-width: 415px;
    line-height: 22px;
    font-size: 1.125rem;
  }
}

@media (min-width: 992px) {
  .viewing__text {
    max-width: 455px;
  }
}

.viewing__phone {
  display: none;
  margin: auto;
}

.viewing__phone--active {
  display: block;
}

@media (min-width: 992px) {
  .viewing__phone {
    margin-right: 0;
  }

  .viewing__phone-wrapper {
    display: block;
    margin-left: auto;
  }
}

@media (min-width: 768px) {
  .viewing {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 992px) {
  .viewing {
    padding-top: 132px;
    padding-bottom: 148px;
  }
}

.informed {
  background-color: #21CED9;
  padding-top: 43px;
  padding-bottom: 73px;
  position: relative;
  z-index: 1;
  min-height: 926px;
}

@media (min-width: 992px) {
  .informed__inner {
    padding: 0;
    max-width: 837px;
    margin: auto;
    position: relative;
  }
}

@media (min-width: 992px) {
  .informed__picture {
    width: 40%;
  }
}

.informed__tablet {
  display: none;
  margin: 0 0 36px -8%;
  width: calc(100% - 28px);
}

.informed__tablet--active {
  display: block;
}

@media (min-width: 768px) {
  .informed__tablet {
    width: calc(100% - 60px);
  }
}

@media (min-width: 992px) {
  .informed__tablet {
    width: auto;
    margin: auto;
    position: absolute;
    top: 271px;
    left: -400px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media (min-width: 1200px) {
  .informed__tablet {
    left: -590px;
    -webkit-transform: none;
            transform: none;
    top: 11%;
  }
}

.informed__content {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .informed__content {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 992px) {
  .informed__content {
    padding: 0;
    max-width: 380px;
    margin-left: auto;
  }
}

.informed__heading {
  font-weight: 600;
  line-height: 29px;
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-top: 0;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .informed__heading {
    line-height: 37px;
    font-size: 1.875rem;
  }
}

.informed__tabs {
  max-width: 307px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0 15px;
  position: relative;
  list-style: none;
  margin: 0 0 41px;
}

.informed__tab {
  font-weight: bold;
  line-height: 18px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.informed__tab--active {
  color: #032E5A;
}

.informed__tab:hover {
  cursor: pointer;
}

.informed__line {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #032E5A;
  height: 3px;
  width: 140px;
  -webkit-transition: left 0.4s cubic-bezier(0.76, 0.13, 0.01, 1.26), width 0.4s;
  transition: left 0.4s cubic-bezier(0.76, 0.13, 0.01, 1.26), width 0.4s;
}

.informed__line--right {
  width: 122px;
  left: calc(100% - 122px);
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .informed__line {
    display: none;
  }
}

.informed__text {
  font-weight: 500;
  line-height: 15px;
  font-size: 0.75rem;
  color: #FFFFFF;
  margin: 0;
  max-width: 302px;
  height: 0;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  overflow: hidden;
}

.informed__text--active {
  opacity: 1;
  height: auto;
}

@media (min-width: 768px) {
  .informed__text {
    line-height: 22px;
    font-size: 1.125rem;
    max-width: none;
  }
}

.informed__benefits {
  list-style: none;
  padding: 0 0 0 60px;
  margin: 63px 0 0 0;
}

@media (min-width: 768px) {
  .informed__benefits {
    padding-left: 30px;
    margin-top: 40px;
  }
}

.informed__benefit {
  font-weight: 500;
  line-height: 22px;
  font-size: 1.125rem;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.informed__benefit--last {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .informed {
    padding-top: 73px;
  }
}

@media (min-width: 992px) {
  .informed {
    padding-top: 96px;
    padding-bottom: 113px;
    min-height: 776px;
  }
}

