* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

a {
  text-decoration: none; }

html {
  font-size: 15px; }

body {
  font-family: "Gilroy Regular", "Benton Sans Reg", sans-serif;
  overflow-x: hidden;
  /* TODO */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: #12121F; }

input {
  font-family: "Gilroy Regular", "Benton Sans Reg", sans-serif; }

input::-webkit-input-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder,
input:-moz-placeholder {
  /* Chrome/Opera/Safari */
  color: #7F7F84; }

img {
  width: 100%; }

section {
  width: 100vw;
  height: 100vh;
  position: relative;
  top: 0;
  left: 0; }

.hero {
  height: calc(100vh - 60px); }

::-webkit-input-placeholder {
  color: #DEDEDE; }

p {
  font-size: 1rem;
  line-height: 1.42rem; }

header {
  height: 60px;
  width: 100%;
  opacity: 0;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #fff;
  border-bottom: #F2F2F2 1px solid;
  transition: 0.3s ease-in-out all;
  transform: translateY(-10px); }
  header.header--trans {
    background-color: transparent;
    border-bottom: 0px;
    position: absolute; }
  header.active {
    opacity: 1;
    transform: translateY(0px); }

.header .btn--main {
  text-transform: uppercase;
  font-family: "Gilroy Semi Bold";
  line-height: 0px;
  padding: 30px 20px;
  color: #0096B8;
  transition: 0.3s ease-in-out all; }
  .header .btn--main:hover {
    cursor: pointer;
    color: #225378; }
    .header .btn--main:hover.color--white {
      color: #BEA2E3 !important; }

.header__menu {
  z-index: 9998;
  background-color: #48288B;
  top: 0px;
  transition: 0.3s ease-in-out all;
  opacity: 0; }
  .header__menu.active {
    transform: translateY(60px);
    opacity: 1; }
  .header__menu .header__menu__item {
    width: 33%;
    color: #fff;
    text-align: center;
    transition: 0.1s linear all; }
    .header__menu .header__menu__item:hover {
      cursor: pointer;
      color: #BEA2E3; }

.flex {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between; }

.major {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-around;
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around; }

.buttonGroup {
  text-align: center;
  margin-top: 40px; }

.header__link {
  font-size: 0.9rem;
  padding: 12px 25px;
  color: #7F7F84;
  transition: 0.2s linear all;
  -webkit-transition: 0.2s linear all;
  -moz-transition: 0.2s linear all;
  -o-transition: 0.2s linear all; }

.header__link:hover {
  color: #12121F;
  cursor: pointer; }

.btn {
  text-transform: uppercase;
  padding: 16px 25px 12px 25px;
  font-family: "Gilroy Semi Bold", "Benton Sans Med", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.02rem;
  border-radius: 3px;
  display: inline-block;
  margin: 0 20px;
  transition: 0.2s linear all;
  -webkit-transition: 0.2s linear all;
  -moz-transition: 0.2s linear all;
  -o-transition: 0.2s linear all;
  text-align: center;
  width: 200px; }

.btn--submit {
  background-color: #fff;
  border: none;
  border-radius: 20px; }

.btn--action {
  background-color: #0096B8;
  color: #fff;
  border: 1px #0096B8 solid; }

.btn--action:hover {
  background-color: #225378;
  border-color: #225378;
  cursor: pointer; }

.btn--primary {
  background-color: #48288B;
  color: #fff;
  border: 1px #48288B solid; }

.btn--primary:hover {
  background-color: #20194E;
  border-color: #20194E;
  cursor: pointer; }

.btn--stroke {
  color: #48288B;
  border: 1px #48288B solid;
  min-width: 180px;
  background-color: transparent; }

.btn--stroke--teal {
  color: #0096B8;
  border-color: #0096B8; }

.btn--stroke:hover {
  background-color: #20194E;
  border-color: #20194E;
  color: #fff;
  cursor: pointer; }

.btn--stroke--teal:hover {
  background-color: #225378;
  border-color: #225378; }

.form__label {
  color: #12121F;
  font-size: 0.95rem;
  font-family: "Gilroy Semi Bold", "Benton Sans Med", sans-serif;
  text-transform: uppercase;
  margin-bottom: 5px; }

.form--request {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex; }
  .form--request .email {
    padding: 12px 50px 12px 25px;
    font-size: 0.9rem;
    outline: none;
    transform: translateX(4px);
    -webkit-transform: translateX(4px);
    -ms-transform: translateX(4px);
    -moz-transform: translateX(4px);
    width: 0;
    padding: 12px 0px;
    border: 0px solid #BABABA;
    border-radius: 3px 0px 0px 3px;
    border-right: 0px;
    transition: all 0.1s linear;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    -o-transition: all 0.1s linear; }
    .form--request .email:hover, .form--request .email:active, .form--request .email:focus {
      width: auto;
      padding: 12px 50px 12px 25px;
      border: 1px solid #BABABA;
      border-right: 0px; }
  .form--request .btn {
    margin-left: 0px;
    position: relative; }
  .form--request:hover .btn, .form--request:active .btn, .form--request:focus .btn {
    border-radius: 0px 3px 3px 0px; }
  .form--request:hover .email, .form--request:active .email, .form--request:focus .email {
    width: auto;
    padding: 12px 50px 12px 25px;
    border: 1px solid #BABABA;
    border-right: 0px; }

.header-logo {
  max-height: 100%;
  width: 110px;
  padding-top: 10px;
  margin: 0 25px; }

.is-hidden {
  display: none; }

.image--download {
  position: absolute;
  top: 50%;
  width: 40%;
  max-width: 400px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  margin-left: 50px; }

.hero__heading--teal {
  color: #0096B8; }

.hero__heading {
  position: relative;
  left: 0;
  top: 0; }
  .hero__heading .hero__heading__item {
    width: 100%;
    transition: 0.3s all ease-in;
    -webkit-transition: 0.3s all ease-in;
    -moz-transition: 0.3s all ease-in;
    -o-transition: 0.3s all ease-in; }
  .hero__heading .hero__heading__item--sub {
    position: absolute;
    top: 0;
    width: 100%;
    margin: auto; }
  .hero__heading .heading--hidden {
    opacity: 0;
    transform: translateY(10%);
    -webkit-transform: translateY(10%);
    -moz-transform: translateY(10%);
    -ms-transform: translateY(10%); }

.hero__arrow {
  width: 40px;
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  opacity: 0.3;
  transition: 0.5s all ease-in;
  -webkit-transition: 0.5s all ease-in;
  -moz-transition: 0.5s all ease-in;
  -o-transition: 0.5s all ease-in; }

.is-hidden-opacity {
  transform: translateX(-50%) translateY(-20%);
  -webkit-transform: translateX(-50%) translateY(-20%);
  -moz-transform: translateX(-50%) translateY(-20%);
  -ms-transform: translateX(-50%) translateY(-20%);
  opacity: 0; }

.hero__arrow:hover {
  cursor: pointer;
  opacity: 1;
  transform: translateX(-50%) translateY(50%);
  -webkit-transform: translateX(-50%) translateY(50%);
  -moz-transform: translateX(-50%) translateY(50%);
  -ms-transform: translateX(-50%) translateY(50%); }

.hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  width: 80%; }

.heading--lg {
  font-size: 3.2rem;
  line-height: 3.8rem;
  letter-spacing: 0.02rem;
  font-family: "Gilroy Ultra Light", "Benton Sans Lt", sans-serif;
  text-align: center; }

.page__heading {
  text-align: left;
  margin-left: 100px;
  width: 40%; }
  .page__heading .heading--lg {
    text-align: left; }
  .page__heading .heading--med {
    margin-bottom: 0px; }

.image--sm {
  margin-top: 25px;
  width: 150px; }
  .image--sm img {
    width: 150px; }

.image--med {
  width: 200px;
  display: inline-block;
  margin: 25px 25px; }
  .image--med img {
    width: 200px; }

.page__image {
  width: 60%; }

.hero__image {
  width: 50%;
  margin: auto; }

.group--btn {
  text-align: center; }

.intro {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  align-items: center;
  -webkit-align-items: center;
  height: 80vh; }

.intro--story {
  height: initial;
  padding: 0px 0px 50px 0px; }

.intro--team {
  height: initial;
  padding: 25vh 0px; }

.intro__img {
  width: 40%;
  height: 100%;
  overflow: hidden; }
  .intro__img img {
    height: 100%;
    width: auto; }

.intro__content {
  width: 75%;
  padding: 0px 10%;
  margin: auto; }

.heading--med {
  font-size: 2.2rem;
  line-height: 2.8rem;
  font-family: "Gilroy Ultra Light", "Benton Sans Lt", sans-serif;
  margin-bottom: 25px; }

.heading--sm {
  font-size: 1.5rem;
  font-family: "Gilroy Ultra Light", "Benton Sans Lt", sans-serif; }

.body--lg {
  font-size: 1.6rem;
  line-height: 2.2rem; }

.body--med {
  margin-top: 25px;
  font-size: 1.3rem;
  line-height: 1.8rem; }

.txt--center {
  text-align: center; }

.btn--link {
  padding: 0px;
  color: #0096B8;
  margin: 25px 0px; }

.btn--team {
  margin: 0;
  text-align: center;
  margin-top: 25px; }

.ico--arrow {
  fill: #0096B8;
  width: 15px;
  margin: 0px 10px;
  transition: 0.2s linear all;
  -webkit-transition: 0.2s linear all;
  -moz-transition: 0.2s linear all;
  -o-transition: 0.2s linear all;
  display: inline-block; }

.btn--link--group {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  align-items: center;
  -webkit-align-items: center;
  direction: ltr; }
  .btn--link--group:hover {
    cursor: pointer; }
    .btn--link--group:hover .btn--link {
      color: #225378; }
    .btn--link--group:hover .ico--arrow {
      fill: #225378;
      transform: translateX(5px);
      -webkit-transform: translateX(5px);
      -moz-transform: translateX(5px);
      -ms-transform: translateX(5px); }
    .btn--link--group:hover .btn--page {
      color: #225378; }

.hr--section {
  width: 10%;
  height: 1px;
  color: #000;
  margin: 25px 0 12.5px; }

.step {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; }
  .step .phone {
    position: absolute;
    top: 50%;
    left: 15%;
    height: 600px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%); }
    .step .phone img {
      height: 100%;
      width: auto; }
  .step .phone--fixed {
    position: fixed; }
  .step #phone--last .phone__screen img {
    height: 99%; }
  .step .phone--hide {
    opacity: 0; }
  .step #phone--last {
    z-index: -1; }
  .step .phone__screen {
    position: absolute;
    top: 13.6%;
    left: 8.9%;
    height: 73.2%;
    overflow: hidden; }
    .step .phone__screen .screen__chain {
      position: relative;
      left: 0;
      top: 0;
      transition: 0.3s all ease-in;
      -webkit-transition: 0.3s linear all;
      -moz-transition: 0.3s linear all;
      -o-transition: 0.3s linear all;
      height: 300%; }
      .step .phone__screen .screen__chain img {
        height: 33%;
        width: auto; }
    .step .phone__screen .screen__chain--1 {
      transform: translateY(0);
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0); }
    .step .phone__screen .screen__chain--2 {
      transform: translateY(-33.33%);
      -webkit-transform: translateY(-33.33%);
      -moz-transform: translateY(-33.33%);
      -ms-transform: translateY(-33.33%); }
    .step .phone__screen .screen__chain--3 {
      transform: translateY(-66.66%);
      -webkit-transform: translateY(-66.66%);
      -moz-transform: translateY(-66.66%);
      -ms-transform: translateY(-66.66%); }
  .step .step__content {
    width: 40%;
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%); }

.partner--logo {
  width: 200px;
  margin-top: 10px; }

.btn--heading {
  margin-top: 0px;
  text-align: left; }

.modal {
  position: fixed;
  height: 100vh;
  width: 100vw;
  z-index: 99999;
  opacity: 1;
  transition: 0.1s linear all; }
  .modal .modal__blackout {
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    left: 0; }
  .modal .modal__container {
    position: absolute;
    top: 50vh;
    left: 50vw;
    transform: translate(-50%, -50%);
    width: 600px;
    padding: 50px;
    background-color: #fff; }

.page {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  height: initial;
  color: #12121F;
  margin: auto;
  background-color: #F2F2F2;
  padding: 80px 25px; }

.page--triple {
  background-color: #fff;
  padding-bottom: 80px; }

.page--remy {
  background-color: #fff;
  padding-left: 200px;
  padding-right: 200px;
  align-items: center; }
  .page--remy .remy--hello {
    width: 40%; }

.bio {
  max-width: 70%;
  margin-left: 25px;
  font-size: 1.1rem;
  line-height: 1.6rem;
  margin-top: 20px; }

.page--advisors {
  padding: 0 100px; }
  .page--advisors .flex {
    flex-wrap: nowrap; }

.bio--img {
  width: 250px;
  height: 250px;
  border-radius: 100%;
  overflow: hidden; }
  .bio--img img {
    width: 100%; }

#forEmployers {
  margin-left: 0;
  margin-top: 25px; }

.margin-bottom {
  margin-top: 50px; }

.margin-h-even {
  margin: 20px 0px; }

.modalHidden {
  display: none; }

.modalOpacity {
  opacity: 0; }

.center {
  text-align: center;
  justify-content: center; }

.heading--input {
  outline: none;
  border: none;
  font-size: 2.2rem;
  border-bottom: 1px dotted #7F7F84;
  font-family: 'Gilroy Ultra Light', "Benton Sans Lt", sans-serif;
  width: 250px; }

.heading-sm-input {
  outline: none;
  border: none;
  font-size: 1.5rem;
  border-bottom: 1px dotted #7F7F84;
  font-family: 'Gilroy Ultra Light', "Benton Sans Lt", sans-serif;
  width: 60%; }

.form--employer {
  padding: 0 50px;
  text-align: center; }
  .form--employer .form__item {
    margin: 25px 0;
    text-align: left; }
  .form--employer .heading--med {
    margin-bottom: 50px; }
  .form--employer .form__fields {
    margin: auto;
    width: 50%;
    margin-bottom: 50px; }

.form--apply {
  padding: 50px 0; }
  .form--apply .form__fields {
    width: 100%; }

.page--how {
  padding-top: 0px; }

.page--form {
  background-color: #fff; }

.page--stats {
  background-color: #F2F2F2;
  padding: 0px;
  display: block; }
  .page--stats .general__content {
    padding-bottom: 0px; }

.stats__bar {
  background-color: #48288B;
  padding: 25px 100px;
  color: #fff;
  margin-top: -73px; }

.half {
  width: 50%;
  position: relative;
  top: 0;
  left: 0;
  text-align: right; }
  .half .num {
    color: #48288B;
    font-size: 15rem;
    font-family: 'Gilroy Ultra Light', "Benton Sans Lt", sans-serif; }
  .half:first-child {
    text-align: left; }
  .half .num--head {
    height: 30px;
    color: #7F7F84; }

.heading--stats {
  color: #7F7F84;
  text-align: center;
  padding: 0px 50px;
  margin-bottom: 50px; }

.page--features {
  background-color: #fff;
  padding-left: 100px;
  padding-right: 100px; }

.btn--page {
  border: 0px;
  padding: 0px;
  border: 0px;
  color: #0096B8; }

.page__cta {
  position: relative;
  top: 0;
  left: 0;
  width: 50%;
  text-align: center; }

.page__img {
  width: 50%;
  overflow: hidden; }
  .page__img img {
    min-height: 100%;
    min-width: 100%;
    width: auto; }

.remy__title {
  font-family: "Gilroy Ultra Light", "Benton Sans Lt", sans-serif;
  font-size: 2.2rem;
  margin: 0px;
  width: 85%;
  padding: 20px 40px 20px 0;
  text-align: left;
  direction: ltr; }
  .remy__title.remy__title--reverse {
    padding: 20px 0 20px 40px; }

.flex__right {
  font-family: "Gilroy Ultra Light", "Benton Sans Lt", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6rem;
  margin: 0px;
  width: 85%;
  padding-left: 15%; }

.general__content {
  width: 100%;
  padding: 50px 100px; }

.content__narrow {
  padding: 100px 250px; }

.page__content {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  text-align: left; }
  .page__content .page__title {
    font-family: "Gilroy Ultra Light", "Benton Sans Lt", sans-serif;
    font-size: 2.2rem;
    margin: 0px;
    padding: 0 15%; }
  .page__content .features__title {
    font-size: 1.5rem;
    min-height: 50px;
    margin: 0px;
    text-align: left;
    padding: 0 15%; }
  .page__content .page__description {
    color: #7F7F84;
    padding: 0 15%;
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.6rem;
    padding-bottom: 25px;
    padding-top: 25px;
    min-height: 10vh; }
    .page__content .page__description.fixed {
      min-height: 180px; }
  .page__content .features__icon {
    height: 150px;
    display: inline-block;
    padding: 0 15%;
    padding-bottom: 25px; }
    .page__content .features__icon .icon--doctor {
      border-radius: 100%;
      border: 3px #F2F2F2 solid;
      transition: 0.15s opacity ease-in-out; }
      .page__content .features__icon .icon--doctor:hover {
        opacity: 0.75; }
    .page__content .features__icon img {
      margin-left: 2px;
      height: 100%;
      width: auto; }
  .page__content .btn--link--group {
    display: inline-block;
    padding: 0 15%; }
    .page__content .btn--link--group .btn {
      margin: 0; }

.features__content {
  text-align: left; }

.team {
  text-align: center; }
  .team p {
    margin-bottom: 25px; }

.txt--sm {
  font-size: 1.1rem;
  line-height: 1.6rem;
  color: #7F7F84; }

.txt--margin {
  margin-top: 20px; }

.tcoCalc {
  margin: 100px 25px 0 25px; }
  .tcoCalc .insured {
    color: #7F7F84;
    padding: 10px 20px;
    margin: 20px 0px 10px 0px;
    text-align: center;
    border-bottom: solid 3px #F2F2F2;
    transition: 0.1s ease-in-out all; }
    .tcoCalc .insured:hover {
      cursor: pointer; }
    .tcoCalc .insured.active {
      border-bottom: solid 3px #7F7F84;
      color: #0096B8;
      border-color: #0096B8; }
  .tcoCalc .tco--input {
    background-color: #F2F2F2;
    font-size: 2.2rem;
    color: #7F7F84;
    outline: none;
    border: none;
    border-bottom: 1px dotted #7F7F84;
    width: 90%; }
  .tcoCalc .input--title {
    font-size: 1.1rem;
    font-family: 'Gilroy Semi Bold', "Benton Sans Med";
    color: #7F7F84;
    text-transform: uppercase;
    padding-bottom: 20px; }
  .tcoCalc .hra.hidden {
    visibility: hidden; }

.footer {
  height: auto;
  background-color: #12121F;
  overflow: hidden; }
  .footer .footer__container {
    width: 80%;
    margin: 0 10%;
    padding: 40px 0px;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    align-items: flex-end;
    -webkit-align-items: flex-end;
    justify-content: space-between;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between; }
  .footer .logo {
    width: 150px;
    opacity: 0.3; }
  .footer .social {
    color: #fff;
    width: 25%; }
    .footer .social .social__link {
      display: block;
      text-align: right;
      margin: 5px 0px;
      transition: 0.2s linear all;
      -webkit-transition: 0.2s linear all;
      -moz-transition: 0.2s linear all;
      -o-transition: 0.2s linear all;
      color: #fff; }
    .footer .social .social__link:hover {
      color: #BABABA;
      cursor: pointer; }
    .footer .social .social__icons {
      margin-top: 20px;
      width: 100%;
      display: flex;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      align-items: center;
      -webkit-align-items: center;
      justify-content: space-between;
      -moz-justify-content: space-between;
      -webkit-justify-content: space-between; }
    .footer .social .ico {
      width: 20px;
      display: inline-block;
      transition: opacity linear 0.2s;
      -webkit-transition: opacity linear 0.2s;
      -moz-transition: opacity linear 0.2s;
      -o-transition: opacity linear 0.2s; }
    .footer .social .ico:hover {
      opacity: 0.5;
      cursor: pointer; }
  .footer .footer__copyright {
    color: #7F7F84;
    border-top: 1px solid #7F7F84;
    width: 80%;
    margin: 0 10% 10px 10%; }
    .footer .footer__copyright p {
      margin-top: 10px; }

.subheading {
  color: #48288B;
  margin-top: 25px; }

.headshots {
  margin: 25px auto;
  height: initial; }

.headshots__container {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  align-items: top;
  -webkit-align-items: top;
  justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  width: 80%;
  margin: auto;
  padding-top: 25px; }
  .headshots__container .headshot__item {
    width: 23%;
    position: relative;
    top: 0;
    left: 0; }
    .headshots__container .headshot__item .headshot__txt {
      background-color: #12121F;
      color: #fff;
      opacity: 0;
      transition: 0.2s linear all;
      -webkit-transition: 0.2s linear all;
      -moz-transition: 0.2s linear all;
      -o-transition: 0.2s linear all;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      padding: 20px 25px; }
      .headshots__container .headshot__item .headshot__txt p {
        font-size: 0.92rem;
        line-height: 1.25rem;
        border: 3px solid #fff;
        height: 82%;
        width: 100%;
        padding: 10px 12.5px; }
    .headshots__container .headshot__item:hover .headshot__txt {
      opacity: 1; }
    .headshots__container .headshot__item .headshot__description {
      position: relative;
      background-color: #12121F;
      padding: 20px 25px;
      color: #fff; }
      .headshots__container .headshot__item .headshot__description .name {
        font-family: "Gilroy Ultra Light", "Benton Sans Lt", sans-serif;
        font-size: 1.5rem; }
      .headshots__container .headshot__item .headshot__description .title {
        text-transform: uppercase;
        font-family: "Gilroy Semi Bold", "Benton Sans Lt", sans-serif;
        color: #7F7F84;
        margin-top: 5px;
        font-size: 0.7rem; }

.lpage__splash {
  width: 100vw;
  height: 40vh;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #0096B8; }
  .lpage__splash.hero__teal600 {
    background-color: #0096B8; }
  .lpage__splash.hero__teal900 {
    background-color: #225378; }
  .lpage__splash.hero__crimson600 {
    background-color: #D56175; }
  .lpage__splash.hero__royal600 {
    background-color: #48288B; }
  .lpage__splash.hero__grey900 {
    background-color: #12121F; }

.animate {
  transition: 0.4s linear all; }

.noOpacity {
  opacity: 0; }

.noShow {
  display: none; }

.full {
  width: 100% !important; }

.loading--content {
  background-color: #fff !important; }

.loading {
  border: 3px solid #225378;
  border-radius: 100%;
  width: 30px !important;
  color: transparent; }

.lpage {
  margin: auto;
  width: 100%;
  max-width: 900px;
  position: relative;
  top: 0;
  left: 0;
  min-height: 120vh !important;
  height: auto; }
  .lpage .lpage__hero {
    background-color: #0096B8;
    width: 100%;
    height: 40vh;
    position: relative;
    top: 0px;
    left: 0px; }
    .lpage .lpage__hero.hero__teal600 {
      background-color: #0096B8; }
    .lpage .lpage__hero.hero__teal900 {
      background-color: #225378; }
    .lpage .lpage__hero.hero__crimson600 {
      background-color: #D56175; }
    .lpage .lpage__hero.hero__royal600 {
      background-color: #48288B; }
    .lpage .lpage__hero.hero__grey900 {
      background-color: #12121F; }
    .lpage .lpage__hero .hero__title {
      font-size: 2.4rem;
      color: #fff;
      font-family: "Gilroy Ultra Light", "Benton Sans Lt", sans-serif;
      width: 55%;
      position: absolute;
      bottom: 25px;
      left: 25px; }
    .lpage .lpage__hero .hero__phone {
      height: 600px;
      position: absolute;
      right: 25px;
      top: 100px; }
      .lpage .lpage__hero .hero__phone img {
        height: 600px;
        width: auto; }
  .lpage .lpage__content {
    padding: 50px 25px; }
    .lpage .lpage__content .content__text {
      font-size: 1.3rem;
      padding: 0px 0px 25px 0px;
      width: 55%; }
      .lpage .lpage__content .content__text .para__text {
        padding-bottom: 20px; }
      .lpage .lpage__content .content__text.content__footer {
        font-size: 0.9rem;
        padding-top: 20px; }
    .lpage .lpage__content .content__btngroup .btn {
      width: 200px;
      margin: 0px;
      border: 1px #0096B8 solid; }
    .lpage .lpage__content .content__btngroup .btn--teal {
      background-color: #0096B8;
      color: #fff; }
      .lpage .lpage__content .content__btngroup .btn--teal:hover {
        background-color: #225378;
        cursor: pointer;
        border-color: #225378; }
    .lpage .lpage__content .content__btngroup .btn--tealStroke {
      background-color: transparent;
      border-color: #0096B8;
      color: #0096B8;
      margin-left: 25px; }
      .lpage .lpage__content .content__btngroup .btn--tealStroke:hover {
        background-color: #225378;
        color: #fff;
        cursor: pointer;
        border-color: #225378; }

.headshots__container--short {
  justify-content: space-around;
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around; }

.view__container {
  min-height: 100vh;
  width: 100vw;
  background-color: #fff;
  position: relative; }

.form-login {
  position: absolute;
  top: 50vh;
  left: 50vw;
  transform: translate(-50%, -50%);
  max-width: 450px;
  margin: 0px 25px; }
  .form-login .form-login__title {
    font-family: 'Gilroy Ultra Light', "Benton Sans Lt", sans-serif;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 25px; }
  .form-login .form-login__field {
    display: block;
    width: 450px;
    padding: 15px;
    margin-top: 20px; }
  .form-login .form-login__btn {
    width: 450px;
    margin: 0px;
    margin-top: 25px; }
  .form-login .form-login__error {
    text-align: center;
    color: #D56175;
    margin-top: 10px; }

.main__container {
  margin: 100px 150px; }

.pdf__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  flex-wrap: wrap; }
  .pdf__container .pdf__item {
    margin-top: 40px;
    width: 400px;
    height: 150px;
    padding: 20px;
    border-radius: 5px;
    border: #BABABA 1px solid;
    transition: 0.3s linear all;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .pdf__container .pdf__item:hover {
      box-shadow: 0px 0px 10px #BABABA;
      cursor: pointer;
      border-color: #48288B; }
    .pdf__container .pdf__item .patient-name {
      font-size: 1.6rem;
      font-family: 'Gilroy Ultra Light', "Benton Sans Lt", sans-serif;
      color: #7F7F84;
      display: block;
      width: 100%; }
    .pdf__container .pdf__item .patient-dob {
      color: #BABABA;
      display: block;
      width: 100%; }
    .pdf__container .pdf__item .patient-image {
      width: 75px;
      height: 75px;
      border-radius: 100%;
      overflow: hidden; }
      .pdf__container .pdf__item .patient-image img {
        width: 100%; }

.conversation--grad {
  background: linear-gradient(#fff, #F2F2F2);
  padding-bottom: 0px;
  padding-top: 160px; }
  .conversation--grad .heading--med {
    margin: 0; }

.page--conversation {
  height: auto;
  background-color: #F2F2F2;
  padding: 40px 160px; }
  .page--conversation .message {
    width: 100%;
    text-align: left;
    font-size: 1.3rem;
    line-height: 1.8rem;
    color: #12121F; }
    .page--conversation .message .message__float {
      background-color: #fff;
      width: 60%;
      display: inline-block;
      margin: 20px 0px;
      border-radius: 0px 20px 20px 20px;
      box-shadow: 2px 2px 10px rgba(186, 186, 186, 0.2);
      position: relative;
      top: 0;
      left: 0; }
      .page--conversation .message .message__float .remy {
        position: absolute;
        top: -30px;
        left: -20px;
        display: flex;
        align-items: flex-start; }
        .page--conversation .message .message__float .remy img {
          width: 50px;
          display: inline-block; }
        .page--conversation .message .message__float .remy .remy__item {
          display: inline-block;
          margin-left: 10px; }
          .page--conversation .message .message__float .remy .remy__item:nth-child(3) {
            display: none; }
      .page--conversation .message .message__float .message__text {
        padding: 30px 40px; }
  .page--conversation .message--self {
    text-align: right; }
    .page--conversation .message--self .message__float {
      background-color: #8C73D3;
      width: 40%;
      color: #fff;
      border-radius: 20px 0px 20px 20px;
      text-align: left;
      box-shadow: 2px 2px 10px rgba(140, 115, 211, 0.6); }
  .page--conversation .message__buttonGroup {
    width: 100%;
    border-top: 4px #F2F2F2 solid;
    display: flex; }
    .page--conversation .message__buttonGroup .btn {
      text-align: center;
      display: inline-block;
      width: 100%;
      color: #0096B8;
      margin: 0;
      transition: 0.2s linear all; }
      .page--conversation .message__buttonGroup .btn.btn--full {
        width: 100%;
        border: none; }
      .page--conversation .message__buttonGroup .btn:hover {
        cursor: pointer;
        color: #225378; }
      .page--conversation .message__buttonGroup .btn.employer {
        color: #48288B;
        border-right: none;
        border-left: 2px solid #F2F2F2; }
        .page--conversation .message__buttonGroup .btn.employer:hover {
          cursor: pointer;
          color: #20194E; }
  .page--conversation .message__form {
    padding: 20px 40px; }
    .page--conversation .message__form .message__input {
      width: 100%;
      outline: none;
      border: none;
      font-size: 2.2rem;
      margin-bottom: 10px; }

.message__form {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  padding: 20px 0px;
  margin: 0px 100px; }
  .message__form .message__input {
    margin-left: 25px;
    width: 30%;
    outline: none;
    border: none;
    color: #12121F;
    font-size: 2.2rem;
    margin-bottom: 10px;
    border-bottom: 3px solid #BABABA; }

.color--white {
  color: #fff !important; }

.color--royal {
  color: #48288B !important; }

.color--teal {
  color: #0096B8 !important; }

.color--grey-300 {
  color: #BABABA; }

.font--med {
  font-family: 'Gilroy Semi Bold', 'Benton Sans Med', sans-serif; }

.font--reg {
  font-family: 'Gilroy Regular', 'Benton Sans Reg', sans-serif; }

.align-left {
  text-align: left; }

.page--white {
  background-color: #fff; }

.page--royal {
  background: #48288B; }

.wrap {
  flex-wrap: wrap; }

.doctor-profile .profile__hero {
  width: 100vw;
  height: 10vh;
  background: linear-gradient(to left, #48288B, #8C73D3); }
.doctor-profile .profile__hr {
  background-color: #F2F2F2;
  width: 100%;
  height: 1px;
  margin-top: 38px; }
.doctor-profile .profile__name {
  background: linear-gradient(to left, #48288B, #8C73D3);
  border-bottom: 1px solid #F2F2F2;
  padding: 0px 15%;
  width: 100%;
  display: flex;
  align-items: flex-end;
  position: relative; }
  .doctor-profile .profile__name .name__content {
    width: 70%;
    bottom: -40px; }
  .doctor-profile .profile__name .name__title {
    top: -2.2rem;
    padding-left: 50px;
    font-family: 'Gilroy Ultra Light', 'Benton Sans Lt', sans-serif;
    font-size: 2.2rem;
    color: #fff; }
  .doctor-profile .profile__name .name__subtitle {
    text-transform: uppercase;
    color: #7F7F84;
    padding-left: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
    letter-spacing: 0.06rem;
    font-family: 'Gilroy Semi Bold', 'Benton Sans Reg', sans-serif;
    margin-bottom: -40px; }
  .doctor-profile .profile__name .name__picture {
    width: 30%;
    border: 1px solid #F2F2F2;
    margin-bottom: -40px; }
    .doctor-profile .profile__name .name__picture img {
      width: 100%;
      margin: 0;
      padding: 0; }
.doctor-profile .profile__main {
  display: flex;
  align-items: flex-start;
  padding: 0px 15%; }
.doctor-profile .profile__content {
  margin: 25px 0px;
  width: 70%; }
  .doctor-profile .profile__content .content__education {
    font-family: 'Gilroy Ultra Light', 'Benton Sans Lt', sans-serif;
    font-size: 1.3rem; }
  .doctor-profile .profile__content .section {
    padding-bottom: 25px; }
  .doctor-profile .profile__content .content__title {
    width: 100%;
    text-transform: uppercase;
    color: #7F7F84;
    padding-left: 50px;
    letter-spacing: 0.06rem;
    font-family: 'Gilroy Semi Bold', 'Benton Sans Reg', sans-serif;
    padding-bottom: 5px; }
  .doctor-profile .profile__content .content__text {
    padding-left: 50px;
    font-size: 1.1rem;
    line-height: 1.6rem;
    padding-bottom: 10px;
    color: #12121F; }
  .doctor-profile .profile__content.profile__content--sm {
    margin: 25px 0px;
    width: 30%; }
    .doctor-profile .profile__content.profile__content--sm .content__title, .doctor-profile .profile__content.profile__content--sm .content__text {
      padding-left: 0px;
      font-size: 0.95rem;
      padding-bottom: 5px; }

.page--reverse {
  direction: rtl; }

.no-margin {
  margin: 0 !important; }

.no-padding {
  padding: 0 !important; }

.no-margin-top {
  padding-top: 0 !important; }

.margin-top {
  margin-top: 25px !important; }

@media screen and (max-width: 1180px) {
  .doctor-profile .profile__main, .doctor-profile .profile__name {
    padding: 0px 10%; }

  .hero__image {
    width: 65%; }

  .step .step__content {
    right: 10%; }
  .step .phone {
    left: 10%; }

  #forEmployers {
    margin-left: 20px; }

  .half .num {
    font-size: 12rem; }

  .stats__bar {
    margin-top: -58px; }

  .form--employer .form__fields {
    width: 80%; }

  .page--remy,
  .general__content {
    padding-left: 80px;
    padding-right: 80px; }

  .page--features {
    padding-left: 40px;
    padding-right: 40px; }

  .page--conversation {
    padding-left: 80px;
    padding-right: 80px; }
    .page--conversation .message .message__float {
      width: 80%; }
    .page--conversation .message.message--self .message__float {
      width: 60%; }

  .hero__content {
    width: 90%; }

  .page__heading {
    margin-left: 40px; }

  .page__content .page__description {
    font-size: 0.95rem;
    line-height: 1.34rem; }

  .headshots {
    height: initial; }

  .headshots__container {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    justify-content: space-around;
    -moz-justify-content: space-around;
    -webkit-justify-content: space-around;
    width: 80%; }
    .headshots__container .headshot__item {
      width: 35%;
      margin: 20px 0px; }
      .headshots__container .headshot__item .headshot__txt p {
        font-size: 0.92rem;
        line-height: 1.25rem; }

  .flex {
    flex-wrap: wrap; }
    .flex.form__item {
      justify-content: space-between; }

  .page__image {
    width: 80%; }

  .page__heading {
    margin-left: 0px;
    width: 80%;
    text-align: center; }
    .page__heading .heading--lg {
      text-align: center; }

  .tcoCalc .flex {
    flex-wrap: nowrap;
    justify-content: space-between; }

  .page--advisors {
    padding: 0 25px; } }
@media screen and (max-width: 865px) {
  .header__link {
    display: none; }

  .step .step__content {
    width: 35%; }

  .page--triple {
    flex-wrap: wrap; }
    .page--triple .page__cta {
      width: 100%; }

  .page__content {
    padding-bottom: 40px; }
    .page__content .page__description.fixed {
      padding-bottom: 0px;
      padding-top: 0px;
      min-height: auto; }

  .tco--input {
    width: 20vw; }

  .form--employer {
    padding: 0px; }

  .heading--sm {
    font-size: 1.3rem; }

  .half .num {
    font-size: 10rem; }

  .headshots__container .headshot__item {
    width: 45%; } }
@media screen and (max-width: 768px) {
  html {
    font-size: 13px; }

  .page--features {
    height: initial; }

  .step .step__content {
    right: 10%; }
  .step .phone {
    left: 5%; }

  .lpage .lpage__hero .hero__title {
    width: 80vw; }
  .lpage .lpage__hero .hero__phone {
    display: none; }
  .lpage .lpage__content .content__text {
    width: 80vw; }

  .half .num {
    font-size: 8rem; }

  .stats__bar {
    margin-top: -34px; }

  .page__image,
  .page__heading {
    width: 100%; }

  .remy__title {
    width: 100%;
    font-size: 1.6rem;
    line-height: 2.2rem;
    padding-right: 0; }
    .remy__title.remy__title--reverse {
      padding-left: 0; }

  .page {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap; }

  .page--remy {
    justify-content: center; }
    .page--remy .flex__right {
      padding-left: 0px; }

  .page__cta {
    margin: 25px auto;
    width: 100%; }
    .page__cta .page__content .page__description {
      font-size: 1.3rem;
      line-height: 1.8rem; }

  .hero__content {
    width: 80%;
    max-width: initial; }

  .page--advisors {
    padding: 0; }
    .page--advisors .flex {
      flex-wrap: wrap; }
      .page--advisors .flex .bio {
        width: 100%;
        margin-left: 0px; } }
@media screen and (max-width: 675px) {
  .image--sm {
    margin-left: 10px;
    margin-right: 10px; }

  .doctor-profile .profile__main, .doctor-profile .profile__name {
    padding: 0px 5%; }

  .hero__image {
    width: 80%; }

  .intro__img {
    display: none; }

  .intro__content {
    width: 100%; }

  .footer .social {
    width: 100%; }

  .headshots__container {
    width: 90%; }
    .headshots__container .headshot__item {
      width: 48%; }

  .general__content,
  .page--remy {
    padding-left: 20px;
    padding-right: 20px; }

  .stats__bar {
    padding-left: 40px;
    padding-right: 40px; }

  .page__content .features__title,
  .page__content .page__description {
    padding-left: 40px;
    padding-right: 40px; }

  .page {
    padding: 40px 25px; } }
@media screen and (max-width: 620px) {
  html {
    font-size: 12px; }

  .image--download {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
    -moz-transform: none;
    text-align: center; }

  .doctor-profile .profile__main, .doctor-profile .profile__name {
    display: block; }
    .doctor-profile .profile__main .name__title, .doctor-profile .profile__main .content__title, .doctor-profile .profile__main .content__text, .doctor-profile .profile__name .name__title, .doctor-profile .profile__name .content__title, .doctor-profile .profile__name .content__text {
      padding-left: 0px; }
    .doctor-profile .profile__main .name__content, .doctor-profile .profile__name .name__content {
      width: 100%; }
    .doctor-profile .profile__main .name__title, .doctor-profile .profile__main .name__subtitle, .doctor-profile .profile__name .name__title, .doctor-profile .profile__name .name__subtitle {
      text-align: right; }
    .doctor-profile .profile__main .profile__content, .doctor-profile .profile__name .profile__content {
      width: 100%; }

  .screen__chain img {
    display: none; }
    .screen__chain img:first-child {
      display: inline-block; }

  .form--employer .form__fields {
    width: 100%; }

  .page--remy {
    justify-content: center; }

  .remy__title {
    width: 100%; }
    .remy__title.remy__title--reverse {
      padding: 20px 0px; }

  .step {
    height: initial;
    margin: 50px auto; }
    .step .phone {
      position: relative;
      top: auto;
      left: auto;
      right: auto;
      bottom: auto;
      transform: none;
      -webkit-transform: none;
      -ms-transform: none;
      -moz-transform: none;
      text-align: center; }
    .step .phone__screen {
      left: auto;
      width: 100%; }
    .step .step__content {
      width: 80%;
      padding: 25px 0px;
      margin: auto;
      position: static;
      top: auto;
      left: auto;
      right: auto;
      bottom: auto;
      transform: none;
      -webkit-transform: none;
      -ms-transform: none;
      -moz-transform: none; }

  .page__cta {
    width: 100%; }

  .page__img {
    display: none; }

  .footer .footer__container {
    width: 80%;
    flex-wrap: wrap; }

  .page--conversation {
    padding-left: 40px;
    padding-right: 40px; }
    .page--conversation .message .message__float {
      width: 100%; }
    .page--conversation .message.message--self .message__float {
      width: 80%; }

  .heading--stats {
    padding: 0 20px; } }
@media screen and (max-width: 480px) {
  .footer .social .social__link {
    font-size: 18px;
    text-align: center;
    margin: 15px 0px; }

  .lpage .lpage__content .content__btngroup .btn {
    width: 100%; }
  .lpage .lpage__content .content__btngroup .btn--tealStroke {
    margin-left: 0;
    margin-top: 20px; }

  .hero__image {
    width: 95%; }

  .doctor-profile .profile__main, .doctor-profile .profile__name {
    display: block; }
    .doctor-profile .profile__main .name__title, .doctor-profile .profile__main .name__subtitle, .doctor-profile .profile__name .name__title, .doctor-profile .profile__name .name__subtitle {
      text-align: center;
      padding-left: 0px; }
    .doctor-profile .profile__main .name__picture, .doctor-profile .profile__name .name__picture {
      margin: auto;
      text-align: center;
      padding: 0px;
      margin-bottom: 10px; }

  .tcoCalc .flex {
    flex-wrap: wrap; }
    .tcoCalc .flex div {
      width: 100%; }
  .tcoCalc .input--title {
    margin-top: 20px;
    margin-bottom: 0px; }

  .half .num {
    font-size: 6rem; }

  .stats__bar {
    margin-top: -23px; }

  .headshots {
    height: initial; }

  .headshots__container {
    display: block;
    width: 75%; }
    .headshots__container .headshot__item {
      width: 100%;
      margin: 25px 0px; }
      .headshots__container .headshot__item .headshot__txt p {
        font-size: 0.92rem;
        line-height: 1.25rem; } }
.video__container {
  width: 100vw;
  height: 100vh;
  position: relative;
  background-color: #12121F; }

video {
  height: 90vh;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%); }

.minor {
  display: flex; }

.hero__content {
  width: 90%; }

.btn {
  width: 300px;
  margin-bottom: 10px; }
  .btn.btn--doctor {
    width: auto;
    margin-left: 50px; }

.body--margin {
  margin-left: 100px;
  margin-right: 100px; }

.menu {
  padding: 12px 25px;
  border-left: 1px solid #F2F2F2; }
  .menu:hover {
    cursor: pointer; }
  .menu .menu__line {
    width: 26px;
    height: 1px;
    background-color: #7F7F84;
    margin-top: 8px;
    margin-bottom: 8px;
    transition: 0.3s ease-in-out all; }
  .menu.active .menu__line:nth-child(2) {
    opacity: 0; }
  .menu.active .menu__line:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px); }
  .menu.active .menu__line:nth-child(3) {
    transform: rotate(-45deg) translate(2px, -3px); }
  .menu .form-login {
    max-width: 350px; }
    .menu .form-login .form-login__field {
      display: block;
      width: 350px;
      padding: 15px;
      margin-top: 20px; }
    .menu .form-login .form-login__btn {
      width: 350px;
      margin: 0px;
      margin-top: 25px; }

/*# sourceMappingURL=style.css.map */
