@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
@media (min-width: 501px) {
  :root {
    --fontSizeH1: 40px;
  }
}
@media (min-width: 801px) {
  :root {
    --contentPadding: 1.5rem;
    --logoHeight: 36px;
    --headerHeight: 60px;
    --fontSizeBase: 22px;
    --fontSizeH1: 44px;
  }
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #003;
  scroll-behavior: smooth;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
}

html {
  font-size: var(--fontSizeBase, 18px);
}

body, input, button, select {
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

p, li {
  font-size: 1em;
  margin: 1em 0;
  line-height: 1.5em;
}

h1, h2, h3, h4 {
  margin: 0.5rem 0;
  padding: 0;
  line-height: 1.25em;
  font-weight: 600;
}

h1 {
  flex: 0 0 auto;
  font-size: var(--fontSizeH1, 28px);
}

h2 {
  font-size: var(--fontSizeH2, 26px);
  color: #5A5AE2;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
}

h4 {
  font-size: 1em;
}

b {
  font-weight: 500;
}

sup {
  font-size: 0.6em;
  vertical-align: super;
  line-height: 1em;
}

img {
  display: block;
  border: none;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

section span, h1 > span {
  display: inline-block;
}

#container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
}
#container nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
#container nav ul li {
  display: block;
  margin: 0;
  padding: 0;
}

#container > header > div, #container > header nav > div, #container > footer > div, main > section > div {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--contentPadding, 16px);
  box-sizing: border-box;
}

main {
  flex: 1 1 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding-top: var(--headerHeight, 56px);
  z-index: 1;
}
main > section {
  padding: 0 10px;
  box-sizing: border-box;
}
main > section:last-of-type {
  flex: 1 1 auto;
}
main > section > div {
  padding: var(--loosePadding, 40px) var(--contentPadding, 16px);
}
main > section a {
  text-decoration: underline;
  color: #5A5AE2;
}
main > section a:hover {
  color: #339;
}
main > section.accent, main > section.dark {
  color: #fff;
}
main > section.accent a, main > section.dark a {
  text-decoration: underline;
  color: #BEBEEE;
}
main > section.accent a:hover, main > section.dark a:hover {
  color: #DEDEF6;
}
main > section.accent {
  background: #5A5AE2;
}
main > section.accent h2 {
  color: inherit;
}
main > section.dark {
  background: #003;
}

button, a.btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0;
  padding: var(--tightPadding, 12px) var(--contentPadding, 16px);
  color: #fff;
  background-color: #003;
  font-size: 0.8rem;
  line-height: 1.2em;
  text-align: center;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  text-decoration: none;
}
button:hover, a.btn:hover {
  background-color: #339;
  color: #fff;
  text-decoration: none;
}
button:focus, a.btn:focus {
  outline: 2px solid #BEBEEE;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9;
  opacity: 0;
  transition: opacity 0.25s ease-in-out, width 0s 0.25s, height 0s 0.25s;
}
body.nav-open {
  overflow: hidden;
}
body.nav-open::before {
  opacity: 1;
  width: 100%;
  height: 100%;
  transition: opacity 0.25s;
}

#container > header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--headerHeight, 56px);
  z-index: 10;
}
#container > header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background-color: #fff;
}

#container > header > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--contentPadding, 16px);
  height: 100%;
  padding: 0 var(--contentPadding, 16px);
}
#container > header > div > * {
  z-index: 3;
}
#container > header > div > a:first-child {
  position: relative;
  display: block;
  width: auto;
  height: var(--logoHeight, 28px);
  margin-right: auto;
}
#container > header > div > a:first-child img {
  width: auto;
  height: 100%;
}
#container > header > div > nav {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  bottom: 1px;
  background: #fff;
  z-index: 1;
  transition: transform 0.25s ease-in-out;
}
body.nav-open #container > header > div > nav {
  transform: translateY(100%);
}
#container > header > div > nav > div h3 {
  font-size: 1rem;
}
#container > header > div > nav > div h3:not(:first-child) {
  margin-top: 1em;
}
#container > header > div > nav > div ul {
  flex-direction: column;
  margin-left: 1rem;
}
#container > header > div > nav > div ul li, #container > header > div > nav > div ul a {
  color: #5A5AE2;
}
#container > header > div > nav > div ul li {
  margin-bottom: 0.5em;
}

#nav-toggle {
  position: relative;
  display: block;
  width: auto;
  height: 24px;
  margin: 0;
  padding: 0;
  background: none;
  color: #003;
  outline: none;
}
@media (min-width: 501px) {
  #nav-toggle {
    height: 32px;
  }
}
#nav-toggle svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
}
#nav-toggle svg path {
  transition: transform 250ms, opacity 250ms;
}
#nav-toggle svg path:first-child {
  transform-origin: 5px 1px;
}
#nav-toggle svg path:nth-child(2) {
  transform-origin: 50% 50%;
}
#nav-toggle svg path:last-child {
  transform-origin: 5px 7px;
}
body.nav-open #nav-toggle svg path:first-child {
  transform: translateY(3px) rotate(-45deg);
}
body.nav-open #nav-toggle svg path:nth-child(2) {
  opacity: 0;
  transform: rotate(45deg);
}
body.nav-open #nav-toggle svg path:last-child {
  transform: translateY(-3px) rotate(45deg);
}

#container > footer {
  padding-top: 1rem;
  background: #003;
  color: #fff;
  font-size: 0.65rem;
}
#container > footer > div > nav ul {
  gap: 2em;
  margin: 0.5rem 0 2rem;
}
#container > footer > div > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
#container > footer > div > div:nth-child(2) a {
  position: relative;
  display: block;
}
#container > footer > div > div:nth-child(2) a img {
  width: auto;
  height: var(--logoHeight, 28px);
}
#container > footer > div > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#container > footer > div > div:last-child > div {
  padding-top: 1em;
}
#container > footer > div > div:last-child > div:first-child {
  width: 100%;
  max-width: 400px;
  border-top: 1px solid #fff;
}
#container > footer > div > div:last-child > div:last-child {
  color: rgba(255, 255, 255, 0.5);
}
@media (min-width: 801px) {
  #container > footer > div > div:last-child {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

#hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #003;
  color: #fff;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
#hero svg {
  position: absolute;
  display: block;
  top: 0;
  width: auto;
  height: 100%;
  z-index: 1;
}
#hero svg#hero-bg-left-mobile, #hero svg#hero-bg-left-desktop {
  left: 0;
}
#hero svg#hero-bg-right-mobile, #hero svg#hero-bg-right-desktop {
  right: 0;
}
#hero svg#hero-bg-left-desktop, #hero svg#hero-bg-right-desktop {
  display: none;
}
#hero > div {
  position: relative;
  z-index: 2;
}
#hero h1 b {
  display: block;
  font-weight: inherit;
  color: #5A5AE2;
}
@media (max-width: 500px) {
  #hero h1 {
    margin-top: -1rem;
  }
}
@media (min-width: 501px) {
  #hero h1 {
    font-size: 36px;
  }
}
@media (min-width: 801px) {
  #hero {
    height: 300px;
  }
  #hero h1 {
    font-size: var(--fontSizeH1, 28px);
  }
  #hero svg#hero-bg-left-desktop, #hero svg#hero-bg-right-desktop {
    display: block;
  }
  #hero svg#hero-bg-left-mobile, #hero svg#hero-bg-right-mobile {
    display: none;
  }
}

#intro > div {
  max-width: 838px;
}

#tiles {
  margin-top: 50px;
}
#tiles > div {
  padding: 0;
}
#tiles > div > img {
  width: auto;
  height: 100px;
  max-width: 100%;
  margin: -50px auto 30px;
  object-fit: contain;
}
#tiles h2 {
  padding: 0 20px;
}
#tiles ul {
  list-style: none;
  display: block;
  margin: 0;
  padding: 0 30px;
}
#tiles ul li {
  position: relative;
  display: block;
  max-width: 400px;
  margin: var(--loosePadding, 40px) auto;
  padding: var(--loosePadding, 40px) var(--contentPadding, 16px);
  background: #003;
  color: #fff;
  border-radius: 20px;
  box-sizing: border-box;
}
#tiles ul li img {
  width: 100px;
  height: auto;
  max-height: 100px;
  margin: 0 auto;
}
#tiles ul li h4 {
  margin: 1em 0;
}
#tiles ul li sup {
  margin-left: -0.1em;
}
@media (min-width: 801px) {
  #tiles ul li {
    max-width: 750px;
    min-height: calc(100px + var(--loosePadding, 40px) * 2);
    padding-left: calc(100px + var(--loosePadding, 40px) * 2);
    text-align: left;
    font-size: 0.85rem;
  }
  #tiles ul li img {
    position: absolute;
    left: var(--loosePadding, 40px);
    top: var(--loosePadding, 40px);
  }
  #tiles ul li h4 {
    margin: 0 0 0.5em;
  }
}

#cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px 0 0;
  padding: 0 0 80px 0;
  background: #003;
  color: #fff;
}
#cta > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
  margin: -50px auto;
  padding: var(--contentPadding, 16px) var(--loosePadding, 40px);
  background: #5A5AE2;
  border-radius: 20px;
}
#cta h2 {
  color: inherit;
}
#cta .btn {
  margin: 1rem auto;
  font-size: 1rem;
}
@media (max-width: 650px) {
  #cta > div {
    width: 350px;
  }
  body.page-ent #cta > div {
    width: 300px;
  }
  #cta .btn {
    width: 130px;
    padding: 6px var(--loosePadding, 40px);
  }
}

#specialties {
  position: relative;
}
#specialties::before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  right: 0;
  height: 230px;
  background: #5A5AE2;
  z-index: 0;
}
#specialties > div {
  position: relative;
  padding-top: 0;
  z-index: 1;
}
#specialties img {
  position: relative;
  left: -10px;
  width: auto;
  height: 300px;
  margin: 10px auto var(--contentPadding, 16px);
}
@media (min-width: 1021px) {
  #specialties::before {
    height: 50px;
  }
  #specialties > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--loosePadding, 40px);
    max-width: 1100px;
    text-align: left;
  }
  #specialties > div > div {
    flex: 0 0 auto;
    width: 600px;
    padding-top: 50px;
  }
  #specialties picture {
    position: relative;
    display: block;
    flex: 1 1 auto;
  }
  #specialties img {
    left: 0;
    width: 100%;
    height: auto;
  }
}

#fineprint {
  padding: 0;
  text-align: left;
  background: #003;
  color: #939598;
}
#fineprint > div {
  padding-bottom: 0;
}
#fineprint p {
  margin: 0.25em 0;
  font-size: 9px;
}
#fineprint p:last-child {
  max-width: 700px;
  margin-top: 1em;
}

#sleep-sync > div {
  max-width: 860px;
  padding-bottom: 100px;
}
#sleep-sync + #cta {
  margin-top: 0;
}

#request-hero {
  overflow: hidden;
  border-top: 6px solid #5A5AE2;
  color: #fff;
  background: #003 linear-gradient(17deg, #5A5AE2 0%, #003 80%);
}
#request-hero > div {
  position: relative;
  max-width: 1280px;
}
#request-hero > div > * {
  position: relative;
}
#request-hero > div > svg {
  position: absolute;
  display: block;
  right: 0;
  bottom: 0;
  height: auto;
  fill: #5A5AE2;
  z-index: 0;
}
#request-hero > div > picture {
  position: relative;
  display: block;
  max-width: 100%;
  margin: 50px 0 0 auto;
  z-index: 2;
}
#request-hero > div > picture img {
  width: 100%;
  height: auto;
}
#request-hero h1 {
  margin-bottom: 1em;
  color: inherit;
}
#request-hero h1 b {
  display: block;
  font-weight: inherit;
  color: #5A5AE2;
}
#request-hero h2 {
  font-size: 1.1em;
  color: inherit;
}
#request-hero ul {
  list-style: outside disc;
  margin: 1em 0;
  padding: 0 0 0 1em;
}
#request-hero ul li {
  margin: 0.5em 0;
  padding: 0;
  line-height: 1.25em;
}
#request-hero.info {
  padding-bottom: 200px;
}
#request-hero.info h1 {
  max-width: 300px;
  font-size: 2rem;
}
#request-hero.info h2 {
  max-width: 472px;
}
#request-hero.info > div > svg {
  width: 800px;
  transform: translate(50%, 65%);
}
#request-hero.info > div > picture {
  width: 300px;
}
#request-hero.kit {
  padding-bottom: 150px;
}
#request-hero.kit h1 {
  max-width: 500px;
}
#request-hero.kit > div > svg {
  width: 140%;
  transform: translate(40%, 27%);
}
#request-hero.kit > div > picture {
  width: 100%;
}
#request-hero.kit > div > picture img {
  filter: drop-shadow(3px 10px 3px rgba(0, 0, 0, 0.2));
}
@media (min-width: 501px) {
  #request-hero.kit h1 {
    max-width: 600px;
  }
  #request-hero.kit > div > svg {
    width: 550px;
    transform: translate(25%, 17%);
  }
  #request-hero.kit > div > picture {
    width: 450px;
  }
}
@media (min-width: 801px) {
  #request-hero {
    padding-bottom: 150px;
  }
  #request-hero.info > div > svg {
    transform: translate(48%, 65%);
  }
  #request-hero.info > div > picture {
    margin-top: 0;
  }
  #request-hero.info h1 {
    max-width: 500px;
    font-size: 2.5rem;
  }
}
@media (min-width: 930px) {
  #request-hero.info > div > svg {
    transform: translate(48%, 65%);
  }
  #request-hero.info > div > picture {
    margin-top: -200px;
  }
  #request-hero.info h2 {
    max-width: 600px;
  }
  #request-hero.kit > div > picture {
    margin-top: -50px;
  }
}
@media (min-width: 1021px) {
  #request-hero > div {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 50px;
  }
  #request-hero > div > div {
    flex: 0 0 auto;
  }
  #request-hero > div > picture {
    flex: 1 1 auto;
    width: auto;
    max-width: 500px;
  }
  #request-hero.info {
    padding-bottom: 250px;
  }
  #request-hero.info > div > svg {
    width: calc((100vw - (700px + var(--contentPadding, 16px) + 10px)) * 2.35);
    max-width: 1270px;
  }
  #request-hero.info > div > div {
    width: 600px;
  }
  #request-hero.kit {
    padding-bottom: 180px;
  }
  #request-hero.kit > div {
    gap: 20px;
  }
  #request-hero.kit > div > svg {
    width: 440px;
    transform: translate(30%, 20%);
  }
  #request-hero.kit > div > div {
    flex: 1 1 auto;
    width: auto;
    padding-bottom: 50px;
  }
  #request-hero.kit > div > picture {
    flex: 0 0 auto;
    width: 320px;
  }
}
@media (min-width: 1101px) {
  #request-hero.kit > div > svg {
    width: calc((100vw - (700px + var(--contentPadding, 16px) + 10px)) * 1.2);
    max-width: 650px;
  }
  #request-hero.kit > div > div {
    flex: 0 0 auto;
    width: 680px;
    padding-bottom: min(50px + (100vw - 1100px) / 2, 160px);
  }
  #request-hero.kit > div > picture {
    flex: 1 1 auto;
  }
}

#request-info-form {
  padding: 0;
  background: #BEBEEE;
}
#request-info-form > div {
  max-width: 600px;
}
@media (min-width: 801px) {
  #request-info-form > div {
    max-width: 850px;
  }
}

form {
  position: relative;
  display: block;
  width: 100%;
  margin: -200px auto 0;
  padding: 30px;
  border-radius: 20px;
  z-index: 3;
  box-sizing: border-box;
}
@media (min-width: 801px) {
  form {
    padding: 50px 80px;
    border-radius: 50px;
  }
}
@media (min-width: 1021px) {
  form {
    margin-top: -250px;
  }
}
form:not(.success) {
  background: #003;
  color: #BEBEEE;
}
form:not(.success) .success {
  display: none;
}
form.success {
  background: #fff;
  text-align: center;
}
form.success .form {
  display: none;
}
form .error {
  position: relative;
  font-size: 0.8rem;
  padding: 2px 0.5em;
  line-height: 1.2em;
  color: #911;
  background: #faa;
  border-radius: 5px;
  z-index: 1;
}
form .error:not(.show) {
  display: none;
}
form li.error {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5em;
  margin-bottom: 1em;
  padding: 0.5em;
}
form li.error svg {
  width: 1.5em;
  height: 1.5em;
  fill: none;
  stroke: currentColor;
  stroke-width: 8;
  stroke-linejoin: round;
  stroke-linecap: round;
}
form li.error svg circle {
  fill: currentColor;
  stroke: none;
}
form ul {
  list-style: none;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: var(--contentPadding, 16px);
  margin: 0 0 var(--contentPadding, 16px);
  padding: 0;
}
form ul li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  transition: opacity 0.5s ease-in-out;
}
form ul li:not(.checkbox) .error {
  margin-top: -20px;
  padding-top: 22px;
}
body.form-loading form ul li:not(.submit) {
  opacity: 0.5;
}
form label {
  display: block;
  margin-bottom: 0.25em;
}
form input[type=text], form input[type=email], form input[type=tel], form select {
  position: relative;
  display: block;
  width: 100%;
  height: 2em;
  margin: 0;
  padding: 0 0.5em;
  background: #fff;
  color: #003;
  border: none;
  outline: none;
  border-radius: 5px;
  line-height: 2em;
  box-sizing: border-box;
  z-index: 2;
}
form input[type=text]:focus, form input[type=email]:focus, form input[type=tel]:focus, form select:focus {
  outline: 2px solid #5A5AE2;
}
form li.checkbox {
  overflow: hidden;
}
form li.checkbox label {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5em;
  cursor: pointer;
}
form li.checkbox svg {
  flex: 0 0 auto;
  display: block;
  width: 1.5em;
  height: 1.5em;
  border: 2px solid #5A5AE2;
  border-radius: 5px;
  fill: none;
  stroke: none;
}
form li.checkbox input {
  position: absolute;
  left: -100%;
  top: -100%;
}
form li.checkbox input:focus + label svg {
  background: rgba(90, 90, 226, 0.2);
}
form li.checkbox input:checked + label svg {
  stroke: #BEBEEE;
  stroke-width: 1;
}
form li:not(.checkbox) + li.checkbox {
  margin-top: 2em;
}
form.has-npi:not(.show-all) li:not(#field-container-npi):not(.submit), body:not(.form-loading) form.has-npi:not(.show-all) li.submit {
  display: none;
}
form.has-npi.show-all .npi-notice {
  display: none;
}
form #field-container-npi {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-start;
  gap: 0 0.5em;
}
form #field-container-npi label {
  grid-column: 1/3;
}
form #field-container-npi button {
  padding: 0 0.5em;
  font-size: 1rem;
  height: 2em;
  line-height: 2em;
}
form #field-container-npi .npi-notice {
  grid-column: 1/3;
}
form button {
  justify-content: center;
  background: #5A5AE2;
  color: #003;
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  outline: none;
}
body.form-loading form button {
  display: none;
}
form .loading-indicator {
  display: none;
}
body.form-loading form .loading-indicator {
  display: block;
}
form .loading-indicator img {
  width: auto;
  height: 100px;
  margin: 0 auto;
}
form .npi-notice {
  margin: var(--contentPadding, 16px) 0 0;
  font-size: 0.8rem;
  line-height: 1.5em;
  font-weight: 500;
  color: #5A5AE2;
  text-align: center;
}
form .npi-notice:first-child {
  margin: 0 0 var(--contentPadding, 16px);
}
body.form-loading form .npi-notice {
  display: none;
}
form .recaptcha-notice {
  font-size: 0.5rem;
  text-align: right;
  color: rgba(255, 255, 255, 0.5);
}
body.form-loading form .recaptcha-notice {
  display: none;
}
form small {
  display: block;
  margin: 1em 0;
  font-size: 0.6rem;
  line-height: 1.2em;
  text-align: justify;
}
main > section form a:hover {
  color: #BEBEEE;
}

.grecaptcha-badge {
  visibility: hidden;
}

body.page-home main > section:last-of-type, body.page-404 main > section:last-of-type {
  flex: 1 1 auto;
}
body.page-home main > section:last-of-type > div, body.page-404 main > section:last-of-type > div {
  max-width: 380px;
  text-align: center;
  color: #003;
}
body.page-home main > section:last-of-type > div nav, body.page-404 main > section:last-of-type > div nav {
  margin: 2rem auto;
}
body.page-home main > section:last-of-type > div ul, body.page-404 main > section:last-of-type > div ul {
  flex-direction: column;
  align-items: stretch;
  gap: 1em;
  margin: 0 auto;
}
body.page-home main > section:last-of-type > div ul a, body.page-404 main > section:last-of-type > div ul a {
  display: block;
  padding: 0.75em;
  font-size: 1.25rem;
  background: #fff;
  color: #5A5AE2;
  border-radius: 1.25em;
  text-decoration: none;
}
body.page-home main > section:last-of-type > div ul a:hover, body.page-404 main > section:last-of-type > div ul a:hover {
  background: #DEDEF6;
  color: #5A5AE2;
}
@media (min-width: 801px) {
  body.page-home main > section:last-of-type > div, body.page-404 main > section:last-of-type > div {
    max-width: 650px;
  }
  body.page-home main > section:last-of-type > div nav, body.page-404 main > section:last-of-type > div nav {
    max-width: 400px;
  }
  body.page-home main > section:last-of-type > div ul a, body.page-404 main > section:last-of-type > div ul a {
    font-size: 1rem;
  }
}

body.page-main main > section {
  text-align: center;
}

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