@font-face {
  font-family: Sofia Pro;
  src: url('../fonts/Sofia-Pro-Bold-Italic-Az.otf') format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Sofia Pro;
  src: url('../fonts/Sofia-Pro-Medium-Az.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Sofia Pro;
  src: url('../fonts/Sofia-Pro-Medium-Italic-Az.otf') format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Sofia Pro;
  src: url('../fonts/Sofia-Pro-Semi-Bold-Az.otf') format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Sofia Pro;
  src: url('../fonts/Sofia-Pro-Regular-Az.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Sofia Pro;
  src: url('../fonts/Sofia-Pro-Regular-Italic-Az.otf') format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Sofia Pro;
  src: url('../fonts/Sofia-Pro-Bold-Az.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --dodger-blue: #47a0ff;
  --oxford-blue: #012955;
  --bg-black: #1b1b1b;
  --inter: Inter, sans-serif;
  --ash-gray: #b9b9ae;
  --white: white;
  --800: #0b0e2c;
  --sandy-brown: #f1a655;
  --black: black;
  --rich-black: #09141f;
  --sofia-pro: "Sofia Pro", sans-serif;
  --powder-blue: #a0c5e4;
  --azure: #1283fc;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

body {
  color: #333;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
  overflow-x: hidden;
}

h1 {
  color: #fff;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 10vh;
  font-weight: 700;
  line-height: 10vh;
}

h2 {
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
}

h3 {
  color: #6b6b6b;
  margin-top: 10px;
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 400;
  line-height: 40px;
}

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

p {
  color: #6b6b6b;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 30px;
}

a {
  color: #000;
  text-decoration: underline;
}

.section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section.hero {
  background-image: linear-gradient(180deg, var(--dodger-blue) 10%, var(--oxford-blue));
  height: 100vh;
  display: flex;
}

.section.wide {
  background-color: #1b1b1b;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: auto;
  min-height: 20vh;
  padding-top: 56px;
  padding-bottom: 56px;
  display: flex;
}

.section.wide.tall {
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.section.wide.tall.learner {
  justify-content: flex-start;
  align-items: center;
  padding-top: 35px;
  padding-bottom: 35px;
}

.section.wide.tall.pharmacy {
  grid-column-gap: 3vh;
  grid-row-gap: 3vh;
  background-image: linear-gradient(180deg, white 5%, var(--bg-black));
  justify-content: center;
  align-items: center;
  padding-top: 3vh;
}

.section.wide.background-gradient {
  background-image: linear-gradient(180deg, var(--oxford-blue) 10%, var(--bg-black) 90%);
}

.section.wide.hidden {
  display: none;
}

.nav {
  background-color: #0000;
  justify-content: space-between;
  align-items: center;
  height: auto;
  display: flex;
}

.nav-inner {
  border-bottom: 1px #ffffff1a;
  justify-content: space-between;
  align-items: center;
  width: 80vw;
  padding-top: 2vh;
  padding-bottom: 0;
  display: flex;
}

.body {
  font-family: var(--inter);
  background-color: #0000;
  overflow-x: hidden;
}

.feature-inner-container {
  border: 1px #000;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
}

.feature-inner-container.pharmacy-feature-1, .feature-inner-container.pharmacy-feature-3, .feature-inner-container.pharmacy-feature-4 {
  align-items: center;
  width: auto;
}

.feature-inner-container.pharmacy-dashboard {
  align-items: center;
  width: 55vw;
  height: auto;
  overflow: hidden;
}

.feature-inner-container.width-50vw {
  width: 50vw;
}

.button {
  border: 3px solid var(--ash-gray);
  background-color: var(--oxford-blue);
  color: var(--white);
  text-align: center;
  text-transform: none;
  cursor: pointer;
  border-radius: 300px;
  margin-right: 0;
  padding: 7px 28px;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2em;
  transition: background-color .5s cubic-bezier(.789, .159, .25, 1), color .2s cubic-bezier(.789, .159, .25, 1);
  display: inline-block;
}

.button:hover {
  color: var(--800);
  background-color: #fff;
}

.button.ghost {
  background-color: #0000;
  margin-left: 10px;
  box-shadow: inset 0 0 0 2px #fff3;
}

.button.ghost:hover {
  background-color: var(--sandy-brown);
  box-shadow: none;
  color: #fff;
}

.button.ghost.pharmacy {
  border-color: var(--black);
  color: var(--black);
  text-align: center;
  white-space: nowrap;
  justify-content: center;
  align-self: auto;
  align-items: center;
  width: 20vw;
  margin-left: auto;
  margin-right: auto;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 2.4vh;
  line-height: 3.6vh;
}

.button.ghost.pharmacy:hover {
  color: var(--white);
}

.button.ghost.pharmacy.blue {
  border-color: var(--black);
  background-color: var(--dodger-blue);
  box-shadow: none;
  color: var(--rich-black);
  white-space: nowrap;
  font-size: 1.4em;
  line-height: 1.6em;
  text-decoration: none;
}

.button.ghost.pharmacy.blue:hover {
  background-color: var(--sandy-brown);
  color: var(--white);
}

.button.pharmacy {
  padding-left: 21px;
  padding-right: 21px;
}

.button.newsletter:hover {
  background-color: var(--sandy-brown);
  color: var(--white);
}

.cards-container {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: none;
  height: 55vh;
  display: flex;
  position: relative;
  top: 15vh;
  bottom: 7vh;
  left: auto;
  overflow: visible;
}

.cards-container.pharmacy {
  height: 50vh;
  top: 0;
  bottom: 3vh;
}

.wrap {
  grid-column-gap: 1vh;
  grid-row-gap: 1vh;
  text-align: center;
  flex-flow: column;
}

.feature-heading {
  color: var(--ash-gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 21px;
  font-family: Inter, sans-serif;
  font-size: 1.1rem;
  line-height: 1.75em;
}

.button-wrap {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  justify-content: center;
  width: auto;
  margin-top: 21px;
}

.button-wrap.pop-up {
  justify-content: flex-end;
  align-items: flex-start;
  width: 35px;
  height: 35px;
  margin-top: 7vh;
  margin-right: 7vw;
  padding-top: 0;
  padding-right: 0;
  display: block;
  position: absolute;
  inset: 0% 0% auto auto;
  overflow: visible;
}

.nav-link {
  color: #fff;
  flex: 0 auto;
  margin-left: 15px;
  margin-right: 15px;
  padding: 0;
  font-size: 1rem;
  line-height: 1em;
  transition: color .3s ease-in-out;
}

.nav-link:hover {
  color: var(--oxford-blue);
}

.nav-link.pharmacy-nav {
  font-size: .5em;
}

.nav-link.pharmacy-nav:hover {
  color: var(--ash-gray);
}

.hero-container {
  z-index: 90;
  width: 100%;
  padding-left: 105px;
  padding-right: 105px;
}

.feature-wrap {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px #000;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding-top: 42px;
  padding-left: 49px;
  padding-right: 49px;
  display: flex;
}

.feature-wrap.horizontal-left {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 77px;
  padding-left: 140px;
}

.feature-wrap.horizontal-rtl {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  flex-flow: row-reverse;
  justify-content: space-between;
}

.feature-wrap.horizontal-rtl.vertocal-tb.height-auto.pd-bottom-42px {
  padding-bottom: 42px;
}

.feature-wrap.pharmacy-feature-1 {
  grid-column-gap: 34px;
  grid-row-gap: 34px;
  height: auto;
  padding-bottom: 42px;
  padding-left: 7vw;
  padding-right: 7vw;
  overflow: hidden;
}

.feature-wrap.pharmacy-feature-3 {
  grid-column-gap: 1vh;
  grid-row-gap: 1vh;
  height: auto;
  padding: 42px 49px;
  overflow: hidden;
}

.feature-wrap.horizontal-right {
  flex-flow: row;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 77px;
  padding-left: 49px;
  padding-right: 140px;
}

.feature-wrap.vertical-top {
  justify-content: flex-start;
}

.feature-wrap.vertical-top.gap-42px {
  grid-column-gap: 42px;
  grid-row-gap: 42px;
}

.feature-wrap.vertical-top.gap-42px.vertical-mbl.height-auto {
  padding-bottom: 42px;
}

.feature-wrap.height-auto {
  height: auto;
}

.feature-wrap.height-auto.pd-top-0 {
  padding-top: 0;
}

.feature-wrap.gap-21px {
  grid-column-gap: 21px;
  grid-row-gap: 21px;
}

.feature-wrap.gap-21px.height-auto {
  padding-bottom: 42px;
}

.text-700 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 1.8rem;
  line-height: 1.25em;
}

.text-700.mg-bottom-14px {
  margin-bottom: 14px;
}

.text-700.text-small {
  font-size: 1.5em;
}

.text-700.color-white {
  color: var(--white);
}

.text-700.color-white.mg-bottom-7px {
  margin-bottom: 7px;
}

.text-700.color-white.mg-bottom-21px {
  margin-bottom: 21px;
}

.hero-subhead {
  color: var(--white);
  text-transform: uppercase;
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1em;
}

.bottom-image-wrap {
  max-width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.feature-icon {
  max-width: none;
  height: auto;
  margin-bottom: 21px;
}

.footer {
  background-color: #1b1b1b;
  justify-content: center;
  align-items: center;
  width: 100vw;
  display: flex;
  overflow: hidden;
}

.footer-list {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  padding-top: 7px;
  padding-bottom: 21px;
  display: flex;
}

.input {
  clear: none;
  border-style: solid none solid solid;
  border-width: 3px 0 3px 3px;
  border-color: var(--ash-gray);
  box-shadow: inset 0 0 0 0 var(--oxford-blue);
  color: #000;
  background-color: #fff;
  border-radius: 300px 0 0 300px;
  flex: 0 auto;
  height: 8vh;
  margin-bottom: 0;
  padding-left: 3vw;
  padding-right: 7vw;
  font-size: 2vh;
  line-height: 2vh;
  transition: border-color .3s cubic-bezier(.789, .159, .25, 1), box-shadow .3s cubic-bezier(.215, .61, .355, 1);
}

.input:hover {
  box-shadow: inset 0 0 0 2px var(--dodger-blue);
  border-right-width: 0;
}

.input:focus {
  border-style: solid none solid solid;
  border-width: 4px;
  border-color: var(--dodger-blue);
  box-shadow: none;
}

.input::placeholder {
  color: #555;
}

.input.password {
  border-right-style: solid;
  border-right-width: 3px;
  border-top-right-radius: 300px;
  border-bottom-right-radius: 300px;
  align-self: flex-start;
  padding-right: 3vw;
}

.input.password.form {
  height: 6vh;
  font-family: Inter, sans-serif;
}

.arrow {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.quote-slider {
  background-color: #0000;
  width: 75%;
  margin-bottom: 21px;
  display: none;
}

.slider-arrow {
  color: #d6d6d6;
}

.quote-wrap {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50vw;
  margin-left: auto;
  margin-right: auto;
}

.quote-attribution {
  justify-content: center;
  align-items: center;
  display: flex;
}

.quote-dash {
  background-color: #d3d3d3;
  flex: none;
  width: 30px;
  height: 1px;
  margin-left: 14px;
  margin-right: 14px;
}

.quote-icon {
  margin-bottom: 45px;
}

.slide-nav {
  font-size: 7px;
}

.nav-logo-wrap {
  flex: none;
}

.nav-menu-2 {
  mix-blend-mode: normal;
  align-items: flex-end;
  display: flex;
}

.brand-name {
  font-family: var(--sofia-pro);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 5.5rem;
  font-weight: 600;
  line-height: 1em;
  display: none;
}

.spline-scene {
  z-index: -1;
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  position: absolute;
  inset: -40vh 0% auto;
}

.spline-scene.sameer {
  padding-top: 10vh;
  padding-left: 0;
  padding-right: 20vw;
  top: 400vh;
  overflow: visible;
}

.spline-scene.cp {
  z-index: 1;
  box-sizing: border-box;
  width: 100vw;
  max-width: none;
  height: 100vh;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  display: block;
  position: absolute;
  inset: 300vh auto auto 0%;
  overflow: hidden;
}

.spline-scene.sameer {
  z-index: 1;
  box-sizing: border-box;
  object-fit: contain;
  width: 100vw;
  height: 85vh;
  padding-top: 10vh;
  padding-left: 0;
  padding-right: 0;
  display: block;
  position: absolute;
  top: 410vh;
  bottom: auto;
  overflow: hidden;
}

.spline-scene.logo {
  z-index: 1;
  width: 75vw;
  height: 75vh;
  top: 1%;
  left: auto;
  right: -20%;
}

.spline-scene.logo.left {
  top: 5%;
  left: -20%;
  right: auto;
}

.cards {
  z-index: auto;
  border-radius: 35px;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: absolute;
  bottom: auto;
  left: 0;
  right: 0;
  overflow: visible;
}

.card {
  width: auto;
  max-width: none;
  height: 55vh;
}

.card.pharmacy {
  height: 45vh;
}

.link {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  color: var(--white);
  white-space: nowrap;
  object-fit: fill;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  margin-left: 15px;
  margin-right: 15px;
  padding-top: 40px;
  font-size: 16px;
  display: flex;
  position: relative;
}

.link.cta {
  border: 3px solid var(--ash-gray);
  background-color: var(--oxford-blue);
  border-radius: 300px;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  height: auto;
  margin-left: 0;
  margin-right: 0;
  padding: 7px 14px;
  font-family: Inter, sans-serif;
  font-size: 1em;
  line-height: 1em;
  text-decoration: none;
  transition: color .2s cubic-bezier(.789, .159, .25, 1), background-color .5s cubic-bezier(.789, .159, .25, 1);
}

.link.cta:hover {
  background-color: var(--white);
  color: var(--800);
}

.link.language {
  padding-bottom: 10px;
}

.link.language.pharmacy {
  align-self: flex-end;
  width: auto;
}

.div-line {
  background-color: var(--oxford-blue);
  border-radius: 20px;
  width: 100%;
  height: 3px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  grid-column-gap: 1vh;
  grid-row-gap: 1vh;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.feature-text {
  text-align: center;
  margin-top: 28px;
  margin-bottom: 21px;
  font-size: 2rem;
  line-height: 1.25em;
}

.feature-text.text-black {
  color: var(--black);
}

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

.little-circle {
  background-color: var(--white);
  border: 0 solid #000;
  border-radius: 100px;
  width: 16px;
  height: 16px;
}

.little-circle:hover {
  background-color: var(--white);
}

.text-400 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  line-height: 1.75em;
}

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

.text-400.color-black {
  color: var(--black);
}

.text-400.color-black.mg-bottom-14px {
  margin-bottom: 14px;
}

.text-400.text-large {
  font-size: 3.5em;
  line-height: 1em;
}

.text-400.mg-bottom-14px {
  margin-bottom: 14px;
}

.text-400.text-small {
  font-size: 1em;
  line-height: 1.5em;
}

.text-400.text-small.color-ash-gray {
  color: var(--ash-gray);
}

.text-400.text-small.color-ash-gray.link-no-decoration {
  text-decoration: none;
}

.text-400.text-small.color-ash-gray.link-no-decoration.hover-white:hover {
  color: var(--white);
}

.text-400.color-ash-gray {
  color: var(--ash-gray);
}

.text-400.color-oxford-blue {
  color: var(--oxford-blue);
}

.slider {
  display: none;
}

.list-container {
  grid-column-gap: 21px;
  grid-row-gap: 21px;
  color: var(--oxford-blue);
  justify-content: center;
  align-items: center;
  display: flex;
}

.preloader {
  z-index: 999;
  background-color: var(--powder-blue);
  justify-content: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0% 0% auto auto;
  overflow: hidden;
}

.preloader--container {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  text-align: center;
  flex-flow: column;
  align-items: center;
  margin: auto;
  display: flex;
}

.image-9 {
  width: 25vw;
  height: 25vw;
}

.loading {
  color: var(--oxford-blue);
  text-align: center;
  font-size: 2.5em;
  line-height: 1em;
}

.paragraph-7 {
  color: var(--black);
  font-size: 1em;
  line-height: 1em;
}

.pharmacy {
  font-family: Inter, sans-serif;
  font-size: 4vh;
  line-height: 4.8vh;
}

.bp-log {
  object-fit: fill;
  width: 275px;
  max-width: none;
  position: relative;
  inset: 0% -7% auto auto;
}

.health-record {
  width: 275px;
  max-width: none;
  position: relative;
  top: 14%;
  left: -7%;
}

.video-feature {
  box-shadow: 0 2px 14px 1px var(--oxford-blue);
  max-width: 50%;
}

.video-feature.pharmacy-videos {
  max-width: 75%;
}

.bold-text {
  font-size: 2vh;
  line-height: 3vh;
}

.image-14 {
  width: 100vw;
  max-width: none;
}

.image-15 {
  border: 14px solid #000;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  max-width: 70%;
}

.list-item {
  font-size: 2vh;
}

.list-column {
  margin-bottom: 0;
  padding-left: 25px;
}

.nav-wrap {
  width: 100vw;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.body-pharmacy {
  overflow-x: hidden;
}

.body-wrap {
  position: relative;
  overflow-x: hidden;
}

.form-iframe {
  box-sizing: content-box;
  aspect-ratio: auto;
  object-fit: scale-down;
  justify-content: center;
  align-items: center;
  width: 60vw;
  max-width: 100%;
  max-height: 100%;
  margin-top: 0;
  margin-bottom: 0;
  display: block;
  overflow: visible;
}

.image-16 {
  object-fit: scale-down;
}

.pop-up-newsletter {
  z-index: 1000;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding-top: 0;
  padding-bottom: 0;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: auto;
}

.heading-7 {
  color: var(--oxford-blue);
  font-family: Inter, sans-serif;
  font-size: 4vh;
  line-height: 5vh;
}

.video-pharmacy-dashboard {
  box-shadow: -3px 2px 5px 1px var(--oxford-blue);
  width: 35vw;
}

.section-2 {
  width: 100vw;
  overflow: hidden;
}

.field-label-4 {
  font-family: Inter, sans-serif;
  font-size: 3vh;
  line-height: 4vh;
}

.heading-8 {
  color: var(--oxford-blue);
  white-space: nowrap;
  font-family: Inter, sans-serif;
  font-size: 4vh;
  line-height: 5vh;
}

.text-block-4 {
  font-family: Inter, sans-serif;
  font-size: 2vh;
  line-height: 3vh;
}

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

.grid-3-columns.gap-14px {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
}

.grid-3-columns.gap-14px.mg-left-21px {
  margin-left: 21px;
}

.grid-3-columns.gap-14px.mg-left-21px.mg-right-21px {
  margin-right: 21px;
}

.grid-3-columns.gap-14px.mg-left-21px.mg-right-21px.pd-top-77px {
  padding-top: 77px;
}

.flex {
  display: flex;
}

.flex.vertical {
  flex-flow: column;
}

.flex.vertical.align-center {
  align-items: center;
}

.flex.vertical.align-center.justify-stretch {
  justify-content: space-between;
}

.flex.vertical.align-center.justify-stretch.gap-7px {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
}

.flex.vertical.align-left {
  justify-content: flex-start;
  align-items: flex-start;
}

.flex.vertical.align-left.gap-35px {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
}

.flex.vertical.align-left.gap-35px.align-center-tb.align-right {
  align-items: flex-end;
}

.flex.gap-14px {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
}

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

.grid-4-columns.gap-14px {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
}

.grid-4-columns.gap-14px.width-100 {
  width: 100%;
}

.grid-4-columns.gap-14px.width-100.mg-top-70px {
  margin-top: 70px;
}

.grid-4-columns.gap-14px.width-100.mg-top-70px.mg-bottom-77px {
  margin-bottom: 77px;
}

.grid-4-columns.gap-14px.width-100.mg-top-70px.mg-bottom-77px._1-col-mbp {
  display: none;
}

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

.mg-bottom-14px {
  margin-bottom: 14px;
}

.cookie-modal_button-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: #f3f7f2;
  border-radius: 0 0 .25rem .25rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  display: flex;
}

.cookie-modal_button-wrap.is-small {
  justify-content: flex-start;
  padding: 1.5rem;
}

.cookie-modal_button-wrap.in-pref-manger {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  margin: 2rem -2rem -2.25rem;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.cookie-modal_link {
  text-decoration: none;
  transition: color .15s cubic-bezier(.25, .46, .45, .94);
}

.cookie-modal_closebutton {
  z-index: 5;
  cursor: pointer;
  background-color: #f3f7f2;
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 1.25rem 1.25rem -2.5rem auto;
  transition: background-color .2s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: relative;
}

.cookie-modal_closebutton.is-sticky {
  position: sticky;
  top: -1rem;
}

.cookie-modal_content-wrap {
  padding: 1.75rem 2rem;
}

.cookie-modal_content-wrap.is-small {
  padding: 1.5rem;
}

.cookie-popup_component {
  z-index: 9500;
  max-width: 25rem;
  position: fixed;
  inset: auto auto 1.25rem 1.25rem;
}

.cookie-modal_styles {
  display: none;
}

.cookie-modal_component {
  background-color: #fff;
  border-radius: .25rem;
  flex-direction: column;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  font-size: .9375rem;
  line-height: 1.4;
  display: flex;
  position: relative;
  box-shadow: 0 4px 1rem #2629260d;
}

.screenreader-only {
  width: 1px;
  height: 1px;
  margin: -1px;
  position: absolute;
  overflow: hidden;
}

.cookie-modal_title {
  margin-bottom: .1875em;
  font-size: 1.25rem;
  font-weight: 700;
}

.cookie-modal_title.is-small {
  color: var(--rich-black);
  font-size: 1.1875rem;
}

.cookie-modal_closebutton_line {
  background-color: #515750;
  width: 1rem;
  height: 2px;
  position: absolute;
}

.cookie-modal_closebutton_line.is-right {
  transform: rotate(-45deg);
}

.cookie-modal_closebutton_line.is-left {
  transform: rotate(45deg);
}

.cookie-modal_button {
  background-color: var(--oxford-blue);
  color: #fff;
  text-align: center;
  border-radius: .5rem;
  padding: .875em 1.5em 1rem;
  font-size: .9375rem;
  text-decoration: none;
  transition: color .2s cubic-bezier(.25, .46, .45, .94), background-color .2s cubic-bezier(.25, .46, .45, .94);
}

.cookie-modal_button:hover {
  background-color: var(--sandy-brown);
}

.cookie-modal_button.is-secondary {
  color: #515750;
  background-color: #0000;
  padding-left: 0;
  padding-right: 0;
  font-size: .875rem;
  font-weight: 700;
}

.cookie-modal_radio_label {
  cursor: pointer;
  margin-bottom: .25rem;
  font-size: .9375rem;
  font-weight: 600;
}

.cookie-preference_wrapper {
  width: 100%;
  max-height: 100%;
  padding: 2rem;
  position: relative;
  overflow: auto;
}

.cookie-preference_background {
  opacity: 1;
  -webkit-backdrop-filter: blur(.5rem);
  backdrop-filter: blur(.5rem);
  cursor: pointer;
  background-color: #d7e7d580;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.cookie-modal_radio {
  cursor: pointer;
  margin-top: 1rem;
  margin-bottom: 0;
  padding-left: 1.75rem;
  transition: color .15s cubic-bezier(.25, .46, .45, .94);
}

.cookie-modal_radio.is--not-allowed {
  cursor: not-allowed;
}

.cookie-modal_radio_button {
  float: left;
  border: 1.75px solid #999c98;
  border-radius: .375rem;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0;
  margin-left: -1.75rem;
  transition: background-color .2s cubic-bezier(.25, .46, .45, .94);
}

.cookie-modal_radio_button.w--redirected-checked {
  border: 1px solid var(--oxford-blue);
  background-color: var(--oxford-blue);
  background-image: url('../images/radio__checkmark.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: .625rem;
}

.cookie-modal_radio_button.w--redirected-focus {
  box-shadow: none;
}

.cookie-modal_radio_button.is-always-active {
  border-color: var(--oxford-blue);
  background-color: var(--oxford-blue);
  cursor: not-allowed;
  background-image: url('../images/radio__checkmark.svg');
  background-position: 45%;
  background-repeat: no-repeat;
  background-size: .625rem;
}

.cookie-modal_form-wrap {
  margin-bottom: 0;
}

.cookie-modal_form {
  padding-top: 1.25rem;
  padding-bottom: .5rem;
}

.cookie-preference_component {
  z-index: 9525;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0%;
}

.cookie-modal_radio_description {
  cursor: pointer;
  font-size: .875rem;
  font-weight: 400;
}

.cookie-preference-button {
  z-index: 9475;
  color: #262926;
  text-decoration: none;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 1.25rem;
}

.cookie-preference-button_flex {
  color: #262926;
  background-color: #fff;
  border-radius: .5rem .5rem 0 0;
  align-items: center;
  margin-bottom: -.125rem;
  padding: .75em 1em .875em;
  font-size: .9375rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: margin-bottom .2s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.cookie-preference-button_flex:hover {
  margin-bottom: 0;
}

.cookie-preference-button_icon {
  flex: none;
  width: 1.125rem;
  height: 1.125rem;
  margin-right: .375rem;
}

.display-none {
  display: none;
}

.arrow-container {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  top: 87vh;
}

.hero-arrow-text {
  margin-bottom: 14px;
}

.plan-price-wrapper {
  z-index: 2;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.pricing-row {
  flex-flow: column;
  display: flex;
}

.plan-name {
  color: #00000080;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: .9rem;
  font-weight: 600;
}

.pricing-table-container {
  perspective: 1000px;
  flex-wrap: wrap;
  width: 85%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding-top: 70px;
  display: flex;
}

.feature {
  background-image: url('../images/Path.svg');
  background-position: 0 60%;
  background-repeat: no-repeat;
  background-size: 13px;
  margin-bottom: 7px;
  padding-left: 21px;
  font-size: .8rem;
}

.pricing-plan {
  z-index: 1;
  perspective: 1000px;
  perspective-origin: 50%;
  background-color: #fff;
  border-width: 1px;
  border-color: #dddeeb;
  border-radius: 14px;
  width: 33.3333%;
  min-height: 400px;
  padding: 35px 35px 0;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  box-shadow: 0 50px 100px -25px #506a7980;
}

.pricing-plan.middle-pricing-plan {
  z-index: 2;
  transform-style: preserve-3d;
  transform: translate3d(0, 0, 100px);
  box-shadow: 0 0 50px 5px #2948521a, 0 85px 100px -35px #5a727733;
}

.feature-wrap-2 {
  margin-bottom: 35px;
  padding-top: 21px;
}

.d-133-3d-wrapper {
  perspective: 1000px;
  width: 250px;
  height: 350px;
  margin-left: 20px;
  margin-right: 20px;
  position: relative;
}

.cards-wrapper {
  grid-column-gap: 2.1rem;
  grid-row-gap: 2.1rem;
  margin-top: 2rem;
  display: flex;
  position: relative;
}

.card-front {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.card-head {
  color: var(--white);
  text-align: center;
  text-shadow: 0 2px 14px var(--oxford-blue);
  flex-direction: column;
  width: 100%;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5em;
  text-decoration: none;
}

.card_component {
  background-image: url('../images/unnamed.jpg');
  background-position: 0 0;
  background-size: 350px;
  border: 1px #1d1b1d;
  border-radius: 14px;
  justify-content: center;
  align-items: flex-end;
  width: 23rem;
  height: 26rem;
  padding: 1.25rem 1.25rem .75rem;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.card_component:hover {
  opacity: 1;
}

.card_component.sameer {
  background-position: 50% 0;
  background-size: 400px;
}

.card_component.sajad {
  background-image: url('../images/1683264207667.jpeg');
  background-position: 50%;
  background-size: 425px;
}

.card_component.cp {
  background-image: url('../images/1727654981238.jpg');
  background-position: 45% 0;
  background-size: 425px;
}

.card_scroll {
  z-index: 1;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--powder-blue);
  border-radius: 10px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 24rem;
  padding: 4rem 2rem;
  display: flex;
  position: absolute;
  inset: 0%;
  transform: translate(0, 101%);
}

.pricing-image {
  position: absolute;
  inset: 3% auto 0% 5%;
}

.pricing-image.middle {
  top: 5%;
}

.divider {
  background-color: #e9eaf3;
  height: 1px;
  margin-top: 80px;
  margin-bottom: 80px;
}

.divider.top-21px---bottom-35px {
  margin-top: 21px;
  margin-bottom: 35px;
}

.divider._28px {
  margin-top: 28px;
  margin-bottom: 28px;
}

.heading-h3-size {
  color: #0b0e2c;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.417em;
}

.module {
  background-color: #fff;
  border: 1px solid #e9eaf3;
  border-radius: 20px;
  box-shadow: 0 2px 10px #195dc212;
}

.module.privacy-policy {
  border-radius: 30px;
  max-width: 712px;
  margin-left: auto;
  margin-right: auto;
  padding: 48px 48px 32px;
}

.container-default {
  max-width: 1092px;
  padding-left: 21px;
  padding-right: 21px;
}

.image-17 {
  font-family: var(--sofia-pro);
}

.brand-name-image {
  width: 33.5rem;
  height: 4rem;
}

@media screen and (min-width: 1280px) {
  .brand-name {
    display: none;
  }

  .link.cta {
    border-width: 3px;
  }

  .video-feature {
    box-shadow: -3px 2px 5px 1px var(--oxford-blue);
  }
}

@media screen and (min-width: 1440px) {
  .spline-scene.sameer {
    left: 0;
  }

  .bp-log, .health-record {
    width: 300px;
  }
}

@media screen and (min-width: 1920px) {
  .cards-container {
    overflow: visible;
  }

  .button-wrap.pop-up {
    width: 3vw;
  }

  .feature-wrap.horizontal-rtl.vertocal-tb.video-mg {
    margin-top: 49px;
    margin-bottom: 49px;
  }

  .hero-subhead {
    line-height: 4vh;
  }

  .brand-name {
    line-height: 11vh;
  }

  .card {
    height: 53vh;
  }

  .card.pharmacy {
    width: auto;
  }

  .link.cta {
    font-size: 1.6vh;
    line-height: 2vh;
  }

  .pharmacy {
    width: 65vw;
  }

  .bp-log, .health-record {
    width: 350px;
  }
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 34px;
    line-height: 44px;
  }

  h3 {
    font-size: 20px;
    line-height: 32px;
  }

  .section.hero {
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 100vh;
    padding-bottom: 119px;
  }

  .section.wide.tall.learner {
    height: 115vh;
  }

  .section.wide.tall.pharmacy {
    height: auto;
    margin-top: 0;
    padding-top: 3vh;
    padding-bottom: 3vh;
  }

  .nav {
    width: 100vw;
  }

  .nav-inner {
    width: 100vw;
    padding-top: 3vh;
  }

  .feature-inner-container {
    text-align: left;
    justify-content: flex-start;
    align-items: center;
  }

  .feature-inner-container.pharmacy-feature-1 {
    justify-content: flex-start;
    align-items: center;
    width: 65vw;
    max-width: none;
  }

  .feature-inner-container.pharmacy-feature-3, .feature-inner-container.pharmacy-feature-4 {
    justify-content: flex-start;
    align-items: center;
    width: auto;
    max-width: none;
  }

  .feature-inner-container.pharmacy-dashboard {
    justify-content: flex-start;
    align-items: center;
    width: 85vw;
    max-width: none;
    height: auto;
  }

  .feature-inner-container.width-50vw {
    max-width: none;
  }

  .button.ghost {
    position: static;
  }

  .button.ghost.pharmacy {
    width: 30vw;
  }

  .button.download {
    white-space: nowrap;
  }

  .button.newsletter {
    position: static;
  }

  .cards-container {
    flex: 0 auto;
    display: none;
  }

  .cards-container.pharmacy {
    width: 90vw;
    display: none;
  }

  .wrap {
    grid-column-gap: 3vh;
    grid-row-gap: 3vh;
    justify-content: space-between;
    align-items: center;
    max-width: 75vw;
    padding-top: 0;
  }

  .feature-heading.text-left.text-center-tb {
    text-align: center;
  }

  .button-wrap.pop-up {
    width: 4vw;
    margin-right: 3vw;
    overflow: visible;
  }

  .nav-menu-wrap {
    flex-flow: column-reverse;
    justify-content: center;
    align-items: center;
  }

  .nav-link {
    padding-top: 20px;
  }

  .nav-link:hover {
    box-shadow: none;
    color: var(--dodger-blue);
  }

  .feature-wrap {
    flex-flow: column;
  }

  .feature-wrap.horizontal-left {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 77px;
  }

  .feature-wrap.horizontal-rtl.vertocal-tb {
    flex-flow: column;
    height: 80vh;
    padding-bottom: 42px;
  }

  .feature-wrap.pharmacy-feature-1 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .feature-wrap.pharmacy-feature-3 {
    height: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 3vh;
  }

  .feature-wrap.horizontal-right {
    padding-right: 77px;
  }

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

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

  .hero-subhead {
    font-size: 1.5em;
  }

  .bottom-image-wrap {
    background-image: none;
    height: auto;
  }

  .feature-icon {
    flex: none;
  }

  .input {
    height: 8vh;
    padding-top: 9px;
    padding-bottom: 9px;
    font-size: 2vh;
  }

  .arrow {
    bottom: 21px;
  }

  .quote-slider {
    width: 90%;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .quote-wrap {
    width: 70vw;
  }

  .menu-icon {
    color: #fff;
    font-size: 40px;
  }

  .menu-button.w--open {
    background-color: var(--rich-black);
  }

  .nav-menu-2 {
    background-color: var(--rich-black);
    min-width: 240px;
    margin-bottom: 0;
    margin-right: 0;
    padding: 20px 20px 2vh;
    display: block;
  }

  .brand {
    padding-left: 18px;
  }

  .brand-name {
    font-size: 6em;
  }

  .spline-scene {
    width: 100vw;
    height: 100vh;
    padding-left: 0;
    top: -75vh;
    left: auto;
    right: 0;
  }

  .spline-scene.cp {
    object-fit: scale-down;
    height: 100vh;
    padding-left: 0;
    padding-right: 0;
    inset: 310vh 14vw auto auto;
  }

  .spline-scene.sameer {
    top: 415vh;
    left: 7%;
    right: auto;
  }

  .spline-scene.logo {
    z-index: 0;
    top: -.75%;
    left: auto;
    right: auto;
  }

  .spline-scene.logo.left {
    top: -5%;
    left: auto;
  }

  .cards {
    flex: 0 auto;
    padding-top: 21px;
  }

  .cards.pharmacy {
    width: 90vw;
    bottom: 0;
  }

  .card.pharmacy {
    width: auto;
    max-width: 30vw;
    height: 45vh;
  }

  .card.pharmacy.slider {
    height: 42vh;
  }

  .link {
    width: 10vw;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1vh;
    padding-bottom: 1vh;
  }

  .link.cta {
    justify-content: center;
    width: 200px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-text {
    margin-top: 0;
    margin-bottom: 0;
  }

  .feature-text.text-black.text-left.text-center-tb {
    text-align: center;
  }

  .feature-text.text-black.text-left.text-center-tb.mg-bottom-14px {
    margin-bottom: 14px;
  }

  .text-400.text-center-tb {
    text-align: center;
  }

  .slider {
    background-color: var(--bg-black);
    width: 80vw;
    height: 65vh;
    margin-top: 7vh;
    margin-bottom: auto;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .slider.pharmacy {
    background-color: var(--white);
    height: 50vh;
    margin-top: 0;
    margin-bottom: 0;
  }

  .list-container {
    grid-column-gap: 4vw;
    grid-row-gap: 4vw;
  }

  .pharmacy {
    width: 70vw;
  }

  .bp-log {
    width: 275px;
    max-width: none;
    top: -21%;
    right: -60%;
  }

  .health-record {
    width: 275px;
    top: 21%;
    left: -3%;
  }

  .video-feature {
    box-sizing: border-box;
    aspect-ratio: auto;
    max-width: 75%;
  }

  .icon, .icon-2 {
    color: var(--oxford-blue);
  }

  .slide-nav-2 {
    font-size: 1.2vh;
    display: block;
  }

  .slide-nav-3 {
    top: 63vh;
  }

  .video-pharmacy-dashboard {
    width: 70vw;
  }

  .flex.vertical.align-left.gap-35px.align-center-tb {
    justify-content: center;
    align-items: center;
  }

  .flex.vertical.align-left.gap-35px.align-center-tb.align-right {
    align-items: center;
  }

  .flex.gap-14px.align-center-tb {
    justify-content: flex-start;
    align-items: center;
  }

  .arrow-container {
    top: 89vh;
  }

  .plan-price-wrapper {
    width: 50%;
    margin-left: 130px;
  }

  .pricing-row {
    display: flex;
  }

  .plan-name {
    margin-bottom: 20px;
  }

  .pricing-table-container {
    padding-top: 50px;
  }

  .pricing-plan {
    flex-direction: column;
    width: 100%;
    max-width: 600px;
    min-height: auto;
    margin-bottom: 14px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .pricing-plan.middle-pricing-plan {
    padding-bottom: 14px;
    transform: none;
  }

  .feature-wrap-2 {
    margin-bottom: 40px;
    padding-top: 0;
  }

  .d-133-3d-wrapper {
    margin-bottom: 80px;
  }

  .cards-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .card_component {
    width: 30rem;
  }

  .card_component:hover {
    opacity: 1;
  }

  .card_component.sameer {
    background-position: 50% 10%;
    background-size: cover;
  }

  .card_component.sajad {
    background-size: cover;
  }

  .card_component.cp {
    background-position: 0 0;
    background-size: cover;
  }

  .card_scroll {
    width: 30rem;
  }

  .container-default {
    max-width: 100vw;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .section.wide.tall.pharmacy {
    margin-top: 0;
  }

  .nav {
    justify-content: space-between;
    align-items: center;
  }

  .nav-inner {
    justify-content: space-between;
    align-items: flex-end;
  }

  .feature-inner-container {
    justify-content: flex-start;
    align-items: center;
  }

  .feature-inner-container.pharmacy-feature-1, .feature-inner-container.pharmacy-feature-3, .feature-inner-container.pharmacy-feature-4 {
    width: 90vw;
  }

  .feature-inner-container.pharmacy-dashboard {
    width: 90vw;
    height: auto;
  }

  .feature-inner-container.width-50vw.width-80vw-mbl {
    width: 80vw;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-inner-container.width-50vw.width-85vw-mbl {
    width: 85vw;
    margin-left: auto;
    margin-right: auto;
  }

  .button {
    white-space: nowrap;
    min-width: 35vw;
    padding-left: 4vw;
    padding-right: 4vw;
    position: relative;
  }

  .button.ghost {
    position: static;
  }

  .button.ghost.pharmacy {
    width: 40vw;
  }

  .button.download {
    top: 0;
  }

  .button.newsletter {
    width: 35vw;
    position: static;
  }

  .cards-container {
    display: none;
  }

  .cards-container.pharmacy {
    height: 35vh;
  }

  .wrap {
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
  }

  .feature-heading {
    text-align: center;
  }

  .button-wrap.pop-up {
    width: 6vw;
    margin-right: 3vw;
  }

  .feature-wrap {
    flex-direction: row;
  }

  .feature-wrap.horizontal-left {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    padding-left: 0;
    padding-right: 0;
  }

  .feature-wrap.horizontal-rtl {
    flex-flow: column;
  }

  .feature-wrap.horizontal-rtl.vertocal-tb {
    height: 70vh;
  }

  .feature-wrap.pharmacy-feature-1 {
    flex-flow: column;
    height: auto;
    padding-top: 3vh;
    padding-bottom: 3vh;
  }

  .feature-wrap.pharmacy-feature-3 {
    flex-flow: column;
  }

  .feature-wrap.horizontal-right {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    flex-flow: column-reverse;
    padding-left: 0;
    padding-right: 0;
  }

  .feature-wrap.vertical-top.gap-42px.vertical-mbl {
    flex-flow: column;
  }

  .text-700 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .text-700.mg-bottom-14px.text-center-mbl {
    text-align: center;
  }

  .hero-subhead {
    text-align: center;
    line-height: 3.2vh;
  }

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

  .input {
    text-align: left;
    border-bottom-style: solid;
    border-top-right-radius: 0;
    border-bottom-left-radius: 300px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .quote-attribution {
    flex-direction: row;
    align-items: center;
  }

  .menu-icon {
    font-size: 30px;
    transition: color .3s ease-in-out;
  }

  .nav-menu-2 {
    justify-content: flex-start;
    align-items: flex-end;
    top: 9vh;
  }

  .brand-name {
    font-size: 7vh;
    line-height: 9vh;
  }

  .spline-scene.cp {
    width: 100vw;
    height: 80vh;
    top: 315vh;
    right: 17.5vw;
  }

  .spline-scene.sameer {
    height: 70vh;
    top: 420vh;
    left: 0%;
  }

  .cards.pharmacy {
    bottom: -5vh;
  }

  .card.pharmacy {
    max-width: 35vw;
    height: 35vh;
  }

  .card.pharmacy.slider {
    height: 37.5vh;
  }

  .link.cta {
    justify-content: center;
    width: 200px;
  }

  .text-400 {
    font-size: 1em;
  }

  .text-400.text-small {
    font-size: .8em;
  }

  .text-400.text-center-mbl {
    text-align: center;
  }

  .text-400.text-center-mbl.height-175px-mbl {
    height: 175px;
  }

  .slider {
    width: 90vw;
    margin-top: 1vh;
    display: block;
  }

  .slider.pharmacy {
    margin-bottom: 0;
  }

  .preloader {
    display: none;
  }

  .preloader--container {
    flex-flow: column;
    align-items: center;
    display: flex;
  }

  .paragraph-7 {
    width: 75vw;
  }

  .pharmacy {
    font-size: 3.6vh;
  }

  .bp-log {
    width: 200px;
    top: 0%;
    right: -55%;
  }

  .health-record {
    width: 210px;
    top: 0%;
    left: 7%;
  }

  .video-feature {
    max-width: 90%;
  }

  .image-15 {
    max-width: 100%;
  }

  .list-column {
    min-width: 35vw;
    padding-left: 4vw;
  }

  .form-iframe {
    width: 70vw;
    overflow: hidden;
  }

  .cookie-modal_button-wrap {
    padding: 1.5rem;
  }

  .cookie-modal_button-wrap.in-pref-manger {
    margin: 1.5rem -1.5rem -2rem;
    padding-top: 1.25rem;
    position: sticky;
    bottom: -2rem;
  }

  .cookie-modal_closebutton {
    margin-right: 1.25rem;
  }

  .cookie-modal_closebutton.is-sticky {
    top: -1rem;
  }

  .cookie-modal_content-wrap {
    padding-bottom: 1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .cookie-preference_wrapper {
    padding-top: 2rem;
  }

  .cookie-modal_form {
    padding-top: .75rem;
  }

  .cookie-preference-button_icon {
    margin-right: 0;
  }

  .cookie-preference-button_text {
    display: none;
  }

  .plan-price-wrapper {
    margin-bottom: 28px;
    margin-left: 20%;
  }

  .pricing-row {
    padding-left: 0%;
  }

  .pricing-plan {
    padding-bottom: 5%;
    padding-left: 10%;
    padding-right: 10%;
  }

  .card-front {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .card-head {
    width: auto;
    font-size: 2rem;
  }

  .card_component {
    padding: 2rem;
  }

  .card_component.sameer {
    background-position: 50% 15%;
  }

  .divider {
    margin-top: 64px;
    margin-bottom: 64px;
  }

  .heading-h3-size {
    font-size: 22px;
  }

  .module.privacy-policy {
    border-radius: 20px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .container-default {
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand-name-image {
    width: 360px;
    height: 5vh;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 60px;
    line-height: 70px;
  }

  h3 {
    font-size: 16px;
  }

  .section.wide {
    padding-left: 14px;
    padding-right: 14px;
  }

  .section.wide.tall.learner {
    height: 120vh;
  }

  .section.wide.tall.pharmacy {
    height: auto;
    padding-top: 3vh;
    padding-bottom: 3vh;
  }

  .nav-inner {
    width: 100vw;
  }

  .feature-inner-container {
    width: auto;
  }

  .feature-inner-container.pharmacy-feature-1, .feature-inner-container.pharmacy-feature-3, .feature-inner-container.pharmacy-feature-4 {
    text-align: left;
  }

  .feature-inner-container.pharmacy-dashboard {
    text-align: left;
    height: auto;
  }

  .feature-inner-container.width-50vw.width-80vw-mbl, .feature-inner-container.width-50vw.width-85vw-mbl, .feature-inner-container.width-80vw-mbp {
    width: 90vw;
  }

  .button {
    min-width: 56vw;
    margin-top: 10px;
  }

  .button.ghost {
    width: 56vw;
    margin-top: 10px;
    margin-left: 0;
  }

  .button.ghost.pharmacy {
    width: 60vw;
  }

  .button.newsletter {
    width: 56vw;
  }

  .wrap {
    grid-column-gap: 0vh;
    grid-row-gap: 0vh;
  }

  .wrap.footer {
    padding-top: 3vh;
  }

  .button-wrap {
    flex-direction: column;
    align-items: center;
    width: 90vw;
  }

  .button-wrap.pop-up {
    justify-content: flex-start;
    align-items: flex-end;
    width: 10vw;
    margin-right: 9vw;
    padding-top: 0;
    padding-right: 0;
  }

  .hero-container {
    padding-left: 35px;
    padding-right: 35px;
  }

  .feature-wrap {
    flex-direction: column;
  }

  .feature-wrap.horizontal-left {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
  }

  .feature-wrap.horizontal-rtl {
    grid-column-gap: 7vh;
    grid-row-gap: 7vh;
  }

  .feature-wrap.horizontal-rtl.vertocal-tb {
    height: 65vh;
  }

  .feature-wrap.pharmacy-feature-1 {
    grid-column-gap: 3vh;
    grid-row-gap: 3vh;
    height: auto;
    padding-bottom: 3vh;
  }

  .feature-wrap.pharmacy-feature-3 {
    height: auto;
    padding-top: 3vh;
    padding-bottom: 3vh;
  }

  .feature-wrap.horizontal-right {
    flex-flow: column-reverse;
    height: 115vh;
  }

  .text-700.color-white.mg-bottom-7px.text-center, .text-700.color-white.mg-bottom-21px.text-center, .text-700.text-center {
    text-align: center;
  }

  .hero-subhead {
    text-align: center;
    font-size: 2vh;
    line-height: 3vh;
  }

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

  .input {
    border-right-style: solid;
    border-right-width: 3px;
    border-top-right-radius: 300px;
    border-bottom-right-radius: 300px;
    height: 6vh;
    padding-left: 21px;
    padding-right: 21px;
  }

  .input:hover {
    border-right-width: 3px;
  }

  .input:focus {
    border-right-style: solid;
  }

  .quote-slider {
    width: 100vw;
    height: 45vh;
    padding-top: 0;
    padding-bottom: 0;
  }

  .slider-arrow {
    font-size: 24px;
  }

  .left-arrow, .right-arrow {
    width: 15vw;
  }

  .nav-menu-2 {
    justify-content: flex-start;
    align-items: flex-end;
    top: 9vh;
  }

  .brand-name {
    font-size: 5.6vh;
    line-height: 9vh;
  }

  .spline-scene.cp {
    top: 325vh;
    right: 7%;
  }

  .spline-scene.sameer {
    height: 65vh;
    top: 430vh;
    left: -7%;
  }

  .spline-scene.logo {
    width: 80vw;
    height: 55vh;
    top: .5%;
  }

  .spline-scene.logo.left {
    top: 4%;
  }

  .cards.pharmacy {
    bottom: -7vh;
  }

  .card {
    height: 45vh;
  }

  .card.pharmacy {
    max-width: 45vw;
  }

  .card.pharmacy.slider {
    height: 35vh;
  }

  .text-400.text-center-mbl.height-175px-mbl.height-225px-mbp {
    height: 250px;
  }

  .text-400.text-center-mbl.height-175px-mbp {
    height: 175px;
  }

  .slider {
    margin-top: 14px;
  }

  .slider.pharmacy {
    height: 50vh;
  }

  .left-arrow-2 {
    left: -7%;
  }

  .right-arrow-2 {
    right: -7%;
  }

  .list-container {
    grid-column-gap: 7px;
    grid-row-gap: 7px;
    justify-content: center;
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
  }

  .pharmacy {
    width: 90vw;
    font-size: 3.6vh;
  }

  .bp-log {
    width: 175px;
    right: 7%;
  }

  .health-record {
    width: 175px;
    top: -1%;
  }

  .video-feature {
    max-width: 100%;
    margin-bottom: 70px;
  }

  .video-feature.pharmacy-videos {
    max-width: 100%;
  }

  .bold-text {
    line-height: 3.2vh;
  }

  .image-15 {
    max-width: 100%;
  }

  .slide-nav-2 {
    top: 42vh;
  }

  .slide-nav-3 {
    top: 51vh;
  }

  .form-iframe {
    width: 90vw;
    overflow: visible;
  }

  .video-pharmacy-dashboard {
    width: 100%;
  }

  .grid-3-columns.gap-14px.mg-left-21px.mg-right-21px.pd-top-77px._1-col-mbp {
    grid-template-columns: 1fr;
  }

  .flex.vertical.align-center.width-90vw-mbp {
    width: 90vw;
  }

  .grid-4-columns.gap-14px.width-100.mg-top-70px.mg-bottom-77px._1-col-mbp {
    grid-column-gap: 42px;
    grid-row-gap: 42px;
    grid-template-columns: 1fr;
  }

  .cookie-modal_button-wrap.is-small {
    justify-content: space-between;
    padding: 1.25rem;
  }

  .cookie-modal_button-wrap.in-pref-manger {
    bottom: 0;
  }

  .cookie-modal_closebutton {
    margin-top: 1rem;
    margin-right: 1rem;
  }

  .cookie-modal_content-wrap.is-small {
    padding-bottom: 1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .cookie-popup_component {
    max-width: 100%;
    display: none;
    inset: auto 0% 0%;
  }

  .cookie-modal_component {
    max-width: 100%;
  }

  .cookie-modal_button {
    flex: auto;
    padding-left: 1.25em;
    padding-right: 1.25em;
  }

  .cookie-preference_wrapper {
    max-width: 100%;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .cookie-preference_component {
    align-items: flex-end;
  }

  .cookie-preference-button {
    left: 1rem;
  }

  .arrow-container {
    flex-flow: column;
    display: flex;
  }

  .hero-arrow-text {
    max-width: 85%;
  }

  .plan-price-wrapper {
    flex-flow: column;
    align-self: flex-end;
    padding-right: 28px;
  }

  .pricing-row {
    flex-direction: column;
  }

  .pricing-plan {
    padding-right: 5%;
  }

  .cards-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .card-head {
    font-size: 1rem;
  }

  .card_component {
    width: 17rem;
  }

  .card_component.cp {
    background-position: 0 0;
  }

  .card_scroll {
    width: 17rem;
  }

  .module.privacy-policy {
    border-radius: 16px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .container-default {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-name-image {
    width: 290px;
    height: 4.5vh;
  }
}


@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/Sofia-Pro-Bold-Italic-Az.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/Sofia-Pro-Medium-Az.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/Sofia-Pro-Medium-Italic-Az.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/Sofia-Pro-Semi-Bold-Az.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/Sofia-Pro-Regular-Az.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/Sofia-Pro-Regular-Italic-Az.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/Sofia-Pro-Bold-Az.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}