@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@font-face {
  font-family: "SofiaRegular";
  src: url("/fonts/sofia/regular.otf") format("opentype");
  font-weight: 400;
}
@font-face {
  font-family: "SofiaMedium";
  src: url("/fonts/sofia/medium.otf") format("opentype");
  font-weight: 600;
}
@font-face {
  font-family: "SofiaBold";
  src: url("/fonts/sofia/bold.otf") format("opentype");
  font-weight: 900;
}

:root {
  --pry-color: #005C65;
  --cream-color: #F4F0E9;
  --grey-color: #374151;
  --green-color: #00A76E;
  --green-color-50: #00A76E77;
  --blue-color: #4D88BA;
  --blue-color-50: #4D88BA77;
  --brown-color: #8A3A34;
  --brown-color-50: #8A3A3477;
  --light-brown-color: #B17964;
  --red-color: #D14010;
  --orange-color: #CF9358;
  --orange-color-50: #CF935877;
}

body {
  font-family: 'SofiaRegular', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #fff;
  color: #1E1E1E;
}
footer {
  margin-top: auto;
  padding-block: 100px;
  background-color: #000;
  color: #fff;
}
footer ul {
  list-style: none;
}
footer a {
  color: #fff !important;
  font-size: 16px;
  font-family: 'SofiaRegular';
  transition: .5s;
  padding-bottom: 5px;
  opacity: .9;
  transition: .5s;
}
footer a:hover {
  transition: .5s;
  opacity: 1;
}
footer .social {
  display: flex;
  gap: 5px;
}
footer .social img {
  height: 40px;
}
label {
  font-size: 15px;
  opacity: .7;
}
.visibility-hidden {
  visibility: hidden !important;
}
.text-blue {
  color: var(--blue-color);
}
.text-green {
  color: var(--green-color);
}
.text-red {
  color: var(--red-color);
}
.text-orange {
  color: var(--orange-color);
}
.text-brown {
  color: var(--brown-color);
}
.text-light-brown {
  color: var(--light-brown-color);
}
.rd-top {
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
.rd-bottom {
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
a {
  text-decoration: none;
}
.fw-bold, b, strong {
  font-family: 'SofiaBold';
}
.inter, .inter * {
  font-family: 'Inter';
}
.logo {
  height: 30px
}
.app-container {
  padding-top: 50px;
}
#mainNav {
  transition: background-color 0.4s ease-in-out;
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 101;
  transition: all 0.5s ease;
}
.navbar .nav-link {
  font-size: 16px;
  color: #000000;
}
.navbar .underline {
  position: relative;
}
.navbar .underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 1px;
  background-color: currentColor;

  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.navbar .underline:hover::after, .navbar .underline.active::after {
  transform: scaleX(1);
}
.navbar .btn-nav {
  position: relative;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  height: 34px;
  font-size: 16px;
  font-family: 'SofiaMedium';
  padding: 20px;
  color: #fff;
  background-color: #000;
  border-radius: 59px;
  border:1px solid rgba(161, 161, 161, .2);
  box-shadow: 0px 1px 8.6px 0 rgba(0, 0, 0, 0.09)
}
.btn-nav:hover, .btn-nav:focus {
  background-color: #000;
  color: #fff;
  box-shadow: none;
}
.navbar.brown-nav {
  background-color: #532A1F;
}
.navbar.brown-nav .nav-link, .navbar.brown-nav .navbar-toggler {
  color: #fff;
}
.navbar.brown-nav .btn-nav {
  background-color: #fff;
  color: #000;
}
.navbar.lt-teal-nav {
  background-color: #d1dce3;
}
.navbar.lt-teal-nav .nav-link, .navbar.lt-teal-nav .navbar-toggler {
  color: #333;
}
.navbar.lt-teal-nav .btn-nav {
  background-color: #fff;
  color: #000;
}
.navbar.lt-sandal-nav {
  background-color: #f4f0e9;
}
.navbar.lt-sandal-nav .nav-link, .navbar.lt-sandal-nav .navbar-toggler {
  color: #333;
}
.navbar.lt-sandal-nav .btn-nav {
  background-color: #fff;
  color: #000;
}
.navbar.yellow-nav {
  background-color: #fff5d5;
}
.navbar.yellow-nav .nav-link, .navbar.yellow-nav .navbar-toggler {
  color: #333;
}
.navbar.yellow-nav .btn-nav {
  background-color: #fff;
  color: #000;
}
.navbar.lt-brown-nav {
  background-color: #6E4739;
}
.navbar.lt-brown-nav .nav-link, .navbar.lt-brown-nav .navbar-toggler {
  color: #fff;
}
.navbar.lt-brown-nav .btn-nav {
  background-color: #fff;
  color: #000;
}
.navbar.blue-nav {
  background-color: #558DBD;
}
.navbar.blue-nav .nav-link, .navbar.blue-nav .navbar-toggler {
  color: #fff;
}
.navbar.blue-nav .btn-nav {
  background-color: #fff;
  color: #000;
}
.navbar.sky-nav {
  background-color: #355c79;
}
.navbar.sky-nav .nav-link, .navbar.sky-nav .navbar-toggler {
  color: #fff;
}
.navbar.sky-nav .btn-nav {
  background-color: #fff;
  color: #000;
}
.navbar.cream-nav {
  background-color: #CAB8AB;
}
.navbar.lt-cream-nav {
  background-color: #E6D8CE;
}
.dropdown-menu, .dropdown-menu.show {
  transition: opacity 0.5s ease;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  right:0 !important;
  border-radius: 10px;
  margin-top: -2px;
  margin-left: -1px;
  border-top-right-radius: 0 !important;
}

.navbar-nav .nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
}
.navbar-nav .nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.navbar-nav .nav-item.dropdown .dropdown-menu {
  display: none;
}

.dropdown-item {
  font-size: 14px;
  padding: 10px 40px 10px 20px;
  cursor: pointer;
}
.dropdown-item.active {
  background-color: #09415c;
  color: #fff;
}
.dropdown-item:focus, .dropdown-item:hover {
  background-color: #1F1F1F;
  color: #fff;
}
.hero {
  padding-top: 100px;
}
.cream-bg {
  background-color: var(--cream-color);
}
.green-bg {
  background-color: #DAEEE7;
}

.btn-pry {
  background-color: var(--cream-color);
  color: #000;
  transition: .5s;
}
.btn-pry:hover, .btn-pry:focus {
  background-color: #09415c;
  color: #fff;
  transition: .5s;
}
.btn-brown {
  background-color: #40221A;
  color: #fff;
}
.btn-black {
  background-color: #000;
  color: #fff;
}
.btn-white {
  background-color: #fff;
  color: #000;
}
.btn-grey {
  background-color: #0A2633;
  color: #F7EAB4;
}
.btn-white-transparent {
  background-color: #ffffff !important;
  color: #0A2633 !important;
  transition: .5s;
}
.btn-white-transparent:hover, .btn-white-transparent:focus {
  opacity: .9;
  transition: .5s;
}
.orange-pill {
  background-color: #FFC671;
  color: #374151;
}
.centered {
  left: 50%;
  bottom: 15px;
  transform: translate(-50%, -15px);
}
.title {
  font-size: 62px;
  line-height: 70px;
  font-family: 'SofiaMedium';
  letter-spacing: -3px;
  color: var(--grey-color);
}
.reg {
  font-family: 'SofiaRegular' !important;
}
.title.sm {
  font-size: 50px;
  line-height: 60px;
}
.subtitle {
  font-size: 40px;
  line-height: 50px;
  font-family: 'SofiaRegular';
  letter-spacing: -0.5px;
  color: var(--grey-color);
}
.subtitle.sm {
  font-size: 34px;
  line-height: 42px;
}
.header {
  font-size: 30px;
  letter-spacing: -0.5px;
  color: var(--grey-color);
}
.subheader {
  font-size: 26px;
  letter-spacing: -0.5px;
  color: var(--grey-color);
}
.hero-title {
  font-family: 'SofiaMedium';
  font-size: 87px;
  line-height: 87px;
  letter-spacing: -5px;
  color: #40221A;
}
.hero-headline {
  font-size: 22px;
  margin-top: 10px;
  letter-spacing: -1px;
  color: #7A7A7A;
}
.hero-headline.medium {
  font-size: 28px;
}
.swiper {
  overflow: hidden;
  /* height: 250px; */
  height: 85px;
  position: relative;
}
.swipes {
  transition: transform 0.6s ease;
}
.swipe {
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@property --gradient-stop {
  syntax: '<color>';
  initial-value: transparent;
  inherits: false;
}

.prg {
  --gradient-stop: var(--cream-color);
  background: linear-gradient(to bottom, var(--cream-color) 0%, var(--cream-color) 50%, var(--gradient-stop) 100%);
  padding: 20px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  transition: --gradient-stop 0.4s ease, transform 0.5s ease;
}

.prg:hover {
  transform: translateY(-4px);
}

.progress.gv-progress {
  height: 10px;
}

.prg.blue:hover { --gradient-stop: var(--blue-color-50); }
.prg.green:hover { --gradient-stop: var(--green-color-50); }
.prg.orange:hover { --gradient-stop: var(--orange-color-50); }
.prg.brown:hover { --gradient-stop: var(--brown-color-50); }

.prg>p {
  font-size: 1.2rem;
}
.prg img {
  margin-top: auto;
  width: 100%;
}

.prg.white {
    --gradient-stop: #fff;
  background: #fff linear-gradient(to right, #fff 0%, #fff0 40%, var(--gradient-stop) 100%);
  padding: 20px;
  padding-bottom: 0;
  display: flex;
  flex-direction: row;
  border-radius: 24px;
  transition: --gradient-stop 0.4s ease, transform 0.5s ease;
}
.prg.white img {
  width: 50%;
}

.coverage {
  display: flex;
  justify-content: space-around;
  gap:40px;
  width: 100%;
}
.coverage img {
  width:140px;
  object-fit: contain;
}
.coverage img.sm {
  width: 92px;
}
.border-rounded {
  border-radius: 20px;
}
.border-rounded-sm {
  border-radius: 12px;
}
.brown-gradient {
  background-image: url('/images/brown-gradient.svg');
  background-size: cover;
  color: #fff;
}
.brown-gradient .clear-bg {
  background-color: rgba(59, 30, 20, .4);
}
.lt-brown-gradient {
  background-image: url('/images/lt-brown-gradient.svg');
  background-size: cover;
  color: #fff;
}
.lt-brown-gradient .clear-bg {
  background-color: rgba(59, 30, 20, .4);
}
.lt-cream-gradient {
  background-image: url('/images/lt-cream-gradient.svg');
  background-size: cover;
  background-position: top;
}
.lt-cream-gradient .clear-bg {
  background-color: rgba(255, 255, 255, .6);
}
.fda-approved img {
  margin-top: -150px;
}
.cream-gradient {
  background-image: url('/images/md-bg.svg');
  background-size: cover;
  color: #000;
}
.sunset-gradient {
  background-image: url('/images/sunset-bg.svg');
  background-size: cover;
  color: #000;
}
.yellow-gradient {
  background: linear-gradient(to bottom, #FFF5D4 0%, #FFFAE8 100%);
}

.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  transition: opacity 0.3s;
  --slide-width: 80vw;
  --slide-height: 600px;
  --slide-gap: 10px;
}
.slider-container.md {
  padding-top: 0;
  --slide-width:30vw;
  --slide-height:350px;
}
.slider-container.sm {
  padding-top: 0;
  --slide-width:28vw;
  --slide-height:280px;
}
.slide-grad { background: linear-gradient(135deg, #77E8E9 0%, #716FFF 100%); }
.ell-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;     /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #fff;
}
.slider-container.paused .slider-track {
  cursor: default;
}

.slider-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.slider-track {
  display: flex;
  gap: var(--slide-gap);
  cursor: grab;
  user-select: none;
  pointer-events: auto;
}

.slider-track:active {
  cursor: grabbing;
}

.slide {
  flex: 0 0 var(--slide-width);
  height: var(--slide-height);
  border-radius: 24px;
  display: flex;
  align-items: flex-start;
  padding: 40px;
  color: white;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  background-size: cover;
}
.testimonials .slide {
  /*min-height: 350px;*/
}

.slide:not(.rm-grad)::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35), transparent);
}

.slide-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.slide-title {
  font-size: 45px;
  line-height: 50px;
  width: 40%;
  margin-bottom: 5px;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0,0,0,.6);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}

.slider-container:hover .slide-btn {
  opacity: 1;
  pointer-events: auto;
}

.slide-btn:hover {
  background: rgba(0,0,0,.5);
}

.slide-btn.left { left: 40px; }
.slide-btn.right { right: 40px; }

/* Container for nav buttons */
#test-slider.owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

/* Button styles */
#test-slider.owl-carousel .owl-nav button {
  position: static;
  transform: none;
  width: 40px;
  height: 40px;
  display: grid;
  place-items:center;
  background: #fff !important;
  color: #1F1F1F;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
}

#test-slider.owl-carousel .owl-nav button:hover {
  background: #333 !important;
}

.accordion-item {
  border:0;
  border-bottom: 0.1875rem solid rgba(0, 0, 0, 0.06);
}
.accordion-button:not(.collapsed), .accordion-button {
  border-radius: 0;
  background: none;
  box-shadow: none !important;
  font-size: 32px;
  color: #000000;
  font-family: 'SofiaMedium';
}
.accordion-button::after {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    content: "\f067";
    background-image: none;
    transition: transform 0.25s ease, opacity 0.15s ease;
    width: 40px;
    height: 40px;
    background-color: #F3EFEF;
    border-radius: 100%;
    display: grid;
    place-items: center;
    font-size: 22px;
    transition: .3s;
}
.accordion-button:not(.collapsed)::after {
    background-image: none;
    content: "\f068";
    transition: transform 0.25s ease, opacity 0.15s ease;
    margin-top: 15px;
}
.accordion-button:not(.collapsed):hover::after {
  transform: scale(1.3) rotate(180deg);
}
.accordion-button:hover::after {
  transform: scale(1.3);
  background-color: #1E1E1E;
  color: #fff;
  transition: .3s;
}
.accordion-body {
  font-size: 22px;
}
.accordion-item:last-of-type, .accordion-item:first-of-type {
  border-radius: 0;
}
.parallax {
  background-position: center 0px;
  background-repeat: no-repeat;
  will-change: background-position;
}
.callout {
  height: 700px;
  background-image: url('/images/webp/callout.webp');
  background-size: cover;
}
.callout.about {
  background-image: url('/images/webp/callout-about.webp');
}
.page-hero {
  margin-top: 15px;
  min-height: 900px;
  background-color: rgba(0,0,0,0.2);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
}
.page-hero.tens {
  background-image: url('/images/tens-hero.jpg');
  background-size: cover;
}
.page-hero.cgm {
  background-image: url('/images/cgm-hero.jpg');
  background-size: cover;
}
.page-hero.hypertension {
  background-image: url('/images/bp-hero.jpg');
  background-size: cover;
}
.page-hero.sleep {
  background-image: url('/images/sleep-hero.jpg');
  background-size: cover;
}
.page-hero.selfpay {
  background-image: url('/images/webp/selfpay-hero.webp');
  background-size: cover;
  min-height: 750px
}
.bg-telemedicine {
  background-image: url('/images/webp/steps/telemedicine.webp');
  background-size: cover;
}
.page-title {
  font-size: 52px;
  line-height: 58px;
  font-weight: 'SofiaMedium';
  letter-spacing: -2px
}
.page-hero p {
  font-size: 22px;
}
.page-hero .sm-text {
  font-size: 16px;
  color: #fff;
}
.glass {
  display: flex;
  flex-direction: column;
  min-height: 180px;
  background: rgba(38, 38, 38, .25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cards-wrapper-h {
  position: relative;
}
.crd {
  background-image: url("/images/tens-target.jpg");
  border-radius: 16px;
  background-repeat: repeat;
  overflow: hidden;
}
.cards-wrapper.cgm .crd {
  background-image: url("/images/pg-cgm-new.jpg");
}
.cards-wrapper.sleep .crd {
  background-image: url("/images/pg-sleep-new.jpg");
}
.cards-wrapper.bp .crd {
  background-image: url("/images/pg-bp.jpg");
}

.crd-h {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 350px;
  padding: 2rem;
  border-radius: 16px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
.cards-wrapper-h.cgm .crd-h {
  background-image: url("/images/webp/using-cgm-simple.webp");
}
.cards-wrapper-h.sleep .crd-h {
  background-image: url("/images/using-sleep-simple.jpg");
}
.cards-wrapper-h.sleep-2 .crd-h {
  background-image: url("/images/sleep-custom-new.jpg");
}
.cards-wrapper-h.bp .crd-h {
  background-image: url("/images/using-bp-simple.jpg");
}
.cards-wrapper-h.bp-2 .crd-h {
  background-image: url("/images/bp-custom.jpg");
}
.num {
  height: 30px;
  width: 30px;
  line-height: 34px;
  background-color: #FFC671;
  color: #1F1F1F;
  display: grid;
  place-items: center;
  border-radius: 100%;
}
.blue-card {
  background-color: #DFECF6;
  color: #253F55;
}
.tst-container {
  background-image: url('/images/webp/testimonials.webp');
  background-size: cover;
  background-position: top;
  min-height: 1300px;
}
.tst-container.brown {
  background-image: url('/images/testimonials-2.jpg');
}
.opt-grad {
  background-image: url('/images/opt-gradient.png');
  background-size: cover;
  min-height: 400px;
  border-radius: 30px;
  transition: .7s;
  display: flex;
  flex-direction: column;
}
.opt-grad:hover {
  transform: translateY(-4px);
  transition: transform background .7s;
}
.sp-top {
  padding-top:120px;
  margin-top: 15px;
  box-shadow: inset 0 8px 8px -6px rgba(0, 0, 0, 0.05);
}
.about-section {
  margin-top: 15px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg,
      hsl(220, 60%, 70%),
      hsl(280, 55%, 65%),
      hsl(340, 50%, 60%));
  z-index: 0;
}

.about-content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-text {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 20;
    opacity: 0;
    transition: opacity 0.5s ease;
    width: 90%;
    will-change: transform, opacity, filter;
}

.top-text {
    color: white;
    font-size: 20px;
    font-weight: 300;
}

.spinning-text-container {
    position: absolute;
    bottom: -72vw;
    left: 50%;
    width: 110vw;
    height: 110vw;
    pointer-events: none;
    will-change: transform, filter;
}

.white-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76vw;
    height: 76vw;
    background: white;
    border-radius: 50%;
    z-index: 1;
}

.spinning-text {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.spinning-text text {
    fill: white;
    font-size: 34px;
    font-weight: 600;
    letter-spacing: -1.7px;
}

.man-image {
    position: absolute;
    bottom:1%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    width:60vw;
    height: auto;
    opacity: 0;
    transition: opacity 0.5s ease;
    object-fit: cover;
}

.content-section {
    position: relative;
    margin-top: 820px;
    min-height: 100vh;
    background: white;
    z-index: 2;
    box-shadow: 0 -10px 60px rgba(0, 0, 0, 0.2);
    border-radius: 30px 30px 0 0;
}
.wistia_click_to_play {
  display: grid;
  place-items: center;
}
.wistia_click_to_play > div > div:nth-child(2),
.wistia_click_to_play > div > div:nth-child(3) {
  opacity: 0;
}
.wistia-popup {
  position: relative;
}
.wistia-popup .play-blue {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 180px;
  width: 180px;
  animation: pulse-animation 5s infinite;
  cursor: pointer;
}
@keyframes pulse-animation {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.95;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
.shd.purple {
  color: #6649B6;
}
.shd.mrn {
  color: #7F4A8B;
}
.shd.blue {
  color: #556FBA;
}
.why-exist {
  min-height: 800px;
  background-image: url('/images/webp/existing.webp');
  background-size: cover;
  border-radius: 30px;
  display: flex;
  align-items: center;
}
.article-hero {
  border-radius: 30px;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
}
.article-hero a {
  color: #fff;
  height: 40px;
  width: 40px;
  display: grid;
  place-items: center;
  border-radius: 100%;
  background: rgba(38, 38, 38, .25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: .5s;
}
.article-hero a:hover {
  background: rgba(255, 255, 255, .25);
  color: rgb(38,38,38);
  transition: .5s;
}
.article-soc a{
  color: #000;
  height: 40px;
  width: 40px;
  display: grid;
  place-items: center;
  border-radius: 100%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  transition: .5s;
}
.article-soc a:hover {
  color: #B48970;
  transition: .5s;
}
.feedback-btn {
  background-color:#B48970;
  height: 50px;
  width: 50px;
  display: grid;
  place-items: center;
  border-radius: 100%;
  color: #fff;
  font-size: 20px;
}
.scroll-margin {
  scroll-margin-top: 80px;
}
.takeaway {
  color: #000000;
  transition: .5s;
}
.takeaway:hover {
  color: var(--blue-color);
  transition: .5s;
}
.article-container p, .article-container p *, .article-container li, .article-container li * {
  font-family: sans-serif;
  font-size: 17px;
  line-height: 27px;
  /* text-align: justify; */
}
.upshift-160-240 {
  margin-top: -240px;
}

.mt-path-gv {
  margin-top: -80px;
}

@media screen and (max-width:1399px) {
  .slider-container {
    --slide-width: 70vw;
    --slide-height: 500px;
  }
  .slider-container.sm {
    --slide-width:28vw;
    --slide-height:250px;
  }
  .slide-title {
    font-size: 40px;
    line-height: 50px;
    width: 60%;
  }
  .slide .subtitle.sm {
    font-size: 28px;
    line-height: 40px;
  }
  .callout {
    background-position: left;
    height: 600px;
  }
  .title {
    font-size: 54px;
    line-height: 64px;
  }
  .title.sm {
    font-size: 50px;
    line-height: 60px;
  }
  .page-hero {
    min-height: 800px;
  }
  .tst-container {
    min-height: 1000px;
  }
  .about-section {
    height: 750px;
  }
  .top-text {
    top:80px;
  }
  .content-section {
    margin-top: 650px;
  }
}
@media screen and (max-width:1299px) {
  .about-section {
    height: 700px;
  }
  .content-section {
    margin-top: 600px;
  }
}
@media screen and (max-width:1199px) {
  .about-section {
    height: 650px;
  }
  .content-section {
    margin-top: 550px;
  }
  .top-text {
    top:90px;
  }
  .page-hero {
    min-height: 750px
  }
  .page-hero.selfpay {
    min-height: 600px;
  }
  .hero {
    padding-top: 50px;
  }
  .hero-title {
    font-size: 67px;
    line-height: 67px;
  }
  .prg img {
    width: 80%;
    margin-inline: auto;
  }
  .coverage {
    flex-wrap: wrap;
    justify-content: center;
    gap:40px;
  }
  .coverage img {
    width: 120px;
  }
  .coverage img.sm {
    width: 80px;
  }
  .title {
    font-size: 52px;
    line-height: 60px;
  }
  .title.sm {
    font-size: 45px;
    line-height: 55px;
  }
  .subtitle {
    font-size: 32px;
    line-height: 40px;
  }
  .subtitle.sm {
    font-size: 30px;
    line-height: 38px;
  }
  .slider-container {
    --slide-width: 60vw;
    --slide-height: 400px;
  }
  .slider-container.sm {
    --slide-width:28vw;
    --slide-height:200px;
  }
  .slide-title {
    font-size: 30px;
    line-height: 40px;
    width: 60%;
  }
  .slide .subtitle.sm {
    font-size: 24px;
    line-height: 34px;
  }
  .callout {
    height: 600px;
  }
  .lt-brown-gradient .pricing-img {
    width: 60% !important;
    margin-left: auto;
    margin-top: -200px !important;
  }
  .lt-brown-gradient .fda-approved img {
    width: 40% !important;
    margin-top: -200px !important;
  }
  .opt-grad img {
    width: 70% !important;
  }
  .page-title {
    font-size: 45px;
    line-height: 55px;
  }
  .crd-h {
    min-height: 300px;
  }
}

@media screen and (max-width:1099px) {
  .about-section {
    height: 600px;
  }
  .content-section {
    margin-top: 500px;
  }
  .top-text {
    top: 100px;
  }
  .man-image {
    width: 55vw;
  }
}

@media screen and (max-width:991px) {
  .app-container {
    padding-top: 55px;
  }
  .about-section {
    height: 500px;
  }
  .content-section {
    margin-top: 400px;
  }
  .man-image {
    width: 55vw
  }
  .why-exist {
    min-height: auto;
  }
  .center {
    display: grid;
    place-items: center;
  }
  .page-hero {
    min-height: 500px;
    margin-top: 0;
    background-position: right;
  }
  .page-hero.selfpay {
    min-height: auto;
    background-image: url('/images/webp/selfpay-her.webp');
  }
  .sm-glass {
    background: rgba(38, 38, 38, .25);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .page-hero p {
    font-size: 18px;
  }

  .navbar .btn-nav {
    background-color: #000 !important;
    color: #fff !important;
  }
  .navbar-collapse {
      position: fixed;
      top: 0;
      left: -100%;
      width: 80%;
      max-width: 320px;
      height: 100vh;
      background: #fff;
      z-index: 110;
      overflow-y: auto;
      box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
      border-top-right-radius: 25px;
      border-bottom-right-radius: 25px;
    }

    .navbar-collapse.show {
        left: 0;
    }

    /* Overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 100;
        display: none;
    }

    .nav-overlay.show {
        opacity: 1;
        visibility: visible;
    }

    /* Prevent body scroll when nav is open */
    body.nav-open {
        overflow: hidden;
    }
  .bar-container {
    padding: 15px 25px;
    background-color: #ffffff;
    height: 100vh;
    overflow: auto;
  }
  .collapse,
  .collapse.show {
    transition: none !important;
  }
  .navbar-toggler {
    padding: 6px 12px;
    font-size: 1.5rem;
    height: 40px;
    line-height: 39px;
  }
  #navBar .menu-close {
    font-size: 1.65rem;
    opacity: 0.5;
  }
  .navbar-toggler:focus{
    box-shadow: none;
  }
  .nav-link {
    color: #000000 !important;
    font-size: 14px;
  }
  .nav-link.active {
    color: var(--pry-color) !important;
  }
  .navbar-nav .nav-item.dropdown .dropdown-menu, .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    display: none;
  }
  .navbar-nav .nav-item.dropdown .dropdown-menu.show, .navbar-nav .nav-item.dropdown:hover .dropdown-menu.show {
    display: block;
  }
  .dropdown-menu, .dropdown-menu.show {
    opacity: 1;
    border-radius: 0;
    border: 0;
    margin-bottom:10px;
  }
  .dropdown-item {
    border-bottom: 1px solid #ddd;
  }
  .overlay {
    background-image: url('/images/overlay-mobile.svg');
    background-position: top left;
  }
  .br-separator {
    border:none;
  }
  .fda-approved img {
    margin-top: -200px;
  }
  .mb-100 {
    width: 100%;
  }
  .hero-title {
    font-size: 57px;
    line-height: 57px;
  }
  .hero {
    padding-top: 20px;
  }
  .coverage {
    gap:30px;
  }
  .coverage img {
    width: 140px;
  }
  .coverage img.sm {
    width: 100px;
  }
  .opt-grad img {
    width: 80% !important;
    margin-right:auto !important;
    margin-left:auto !important
  }
  .brown-gradient img {
    width: 70% !important;
  }
  .yellow-gradient img {
    width: 80% !important;
  }
  .yellow-gradient p {
    font-size: 18px !important;
  }
  .orange-pill {
    font-size: 16px;
  }
  .slide {
    padding: 20px;
  }
  .slide .subtitle.sm {
    font-size: 20px;
    line-height:30px
  }
  .slide-title {
    width: 100%;
    font-size: 25px;
    line-height: 35px;
  }
  .slider-container.sm {
    padding-top: 0;
    --slide-width:30vw;
    --slide-height:180px;
  }
  .slider-container.md {
    --slide-width: 45vw;
    --slide-height:320px;
  }
  .slider-container {
    --slide-width: 70vw;
    --slide-height: 300px;
  }
  .callout {
    background-position: left top;
  }
  .callout {
    height: auto;
  }
  .sp-top {
    padding-top: 50px;
  }
  .blue-card img, .ver-card img {
    margin-top: 0 !important;
  }
  .article-hero {
    min-height: 350px;
  }
  .page-hero {
    border-radius: 0;
  }
  .page-hero.page-pg {
    background-position: right top;
    min-height: 750px;
  }
  .page-hero.tens {
    background-image: url('/images/tens-tab.jpg');
  }
  .page-hero.cgm {
    background-image: url('/images/cgm-tab.jpg');
  }
  .page-hero.hypertension {
    background-image: url('/images/bp-tab.jpg');
  }
  .page-hero.sleep {
    background-image: url('/images/sleep-tab.jpg');
  }
  .title.sm {
    font-size: 40px;
    line-height: 50px;
  }

}

@media screen and (max-width:767px) {
  .mt-path-gv {
    margin-top: -43px;
  }
  .tst-container {
    background-image: url('/images/apnea-bg.png');
  }
  .hero-headline.medium {
    font-size: 22px;
  }
  .hero-headline.smaller {
    font-size: 17px;
  }
  .wistia-popup .play-blue {
    height: 130px;
    width: 130px;
  }
  .crd-h {
    padding: 0;
    background: #000;
  }
  .crd-h > div {
    min-height: 200px;
  }
  .crd:not(.no-blur) .row, .crd-h:not(.no-blur) > div {
    background: rgba(38, 38, 38, .25);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }
  .crd.no-blur .row, .crd-h:not(.no-blur) > div {
    background: rgba(38, 38, 38, .5);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }
  .title {
    letter-spacing: -1.5px;
  }
  .callout {
    min-height: 700px;
    background-image: url('/images/callout-mobile.jpg');
    border-radius: 0 !important;
  }
  .callout.about {
    min-height: 700px;
    background-image: url('/images/callout-about-mobile.jpg');
    border-radius: 0 !important;
  }
  footer {
    border-radius: 0 !important;
  }
    .lt-brown-gradient .pricing-img, .lt-brown-gradient .fda-approved img {
      margin-top: 0 !important;
      margin-right: 0 !important;
    }

    .article-hero {
      min-height: 250px;
    }
    .opt-grad {
      min-height: 300px;
    }
    .opt-grad .subtitle {
      font-size: 28px;
      line-height: 38px;
    }
    .swiper, .swipe {
      height: 220px;
    }
    .hero-title {
      font-size: 50px;
      line-height: 50px;
    }
    .hero-headline {
      /* margin-bottom: 0; */
    }
    .fda-approved img {
      margin-top: -150px;
    }
    .brown-gradient img {
      width: 90% !important;
    }
    .brown-gradient img.img-fda-approved {
      width: 75% !important;
    }
    .brown-content {
      margin-top: -221px !important;
    }
    .title {
      font-size: 45px;
      line-height: 50px;
    }
    .title.sm {
      font-size: 40px;
      line-height: 48px;
    }
    .subheader {
      font-size: 22px;
    }
    .slider-container {
      --slide-width: 90vw;
      --slide-height: 280px;
    }
    .slider-container.md {
      --slide-width: 45vw;
      --slide-height:340px;
    }
    .slider-container.sm {
      --slide-width: 45vw;
      --slide-height:150px;
    }
    .slider-container.md p {
      font-size: 17px;
    }
    .coverage img {
      width: 130px;
    }
    .coverage img.sm {
      width: 100px;
    }
    .accordion-button:not(.collapsed), .accordion-button {
      font-size: 25px;
    }
    .accordion-body {
      font-size: 18px;
    }
    .accordion-button:not(.collapsed):hover::after {
      transform: scale(1.1) rotate(180deg);
    }
    .accordion-button:hover::after {
      transform: scale(1.1);
    }
    .accordion-button:not(.collapsed)::after {
      margin-top: 0;
    }
    .accordion-button::after {
      font-size: 18px;
      height: 38px;
      width: 38px;
    }
    .callout {
      height: auto;
    }
    .pg-images img {
      width: 60% !important;
    }
    .slide .subtitle.sm {
      font-size: 22px;
    }
    .sp-top {
      padding-top: 50px;
      margin-top: 0;
    }
    footer {
      padding-block:40px;
    }
    .header {
      font-size: 25px;
      line-height: 35px;
    }
    .tst-container {
      min-height: 700px;
    }
    .sm-100 {
      width: 100% !important;
    }

    .page-hero .subtitle {
      font-size: 26px;
      line-height: 36px;
    }
    .page-title {
      font-size: 42px;
      line-height: 52px;
    }
    .page-hero p {
      font-size: 20px;
    }
    .crd-h {
      min-height: 200px;
    }
    .spinning-text-container {
        width: 140vw;
        height: 140vw;
        bottom: -80vw;
    }
    .white-circle {
        width: 98vw;
        height: 98vw;
    }
  .fda-approved img {
    margin-top: 0px;
    margin-right: 0px;
  }
  .slide-text-contents {
    min-height: 180px !important;
  }
  .img-medical-director {
    width: 100% !important;
  }
  .w-100-mobile {
    width: 100% !important;
  }
  .upshift-160-240 {
    margin-top: -160px;
  }
}
@media screen and (max-width:575px) {
  .page-hero.tens {
    background-image: url('/images/tens-mobile.jpg');
  }
  .page-hero.cgm {
    background-image: url('/images/cgm-mobile.jpg');
  }
  .page-hero.sleep {
    background-image: url('/images/sleep-mobile.jpg');
  }
  .page-hero.hypertension {
    background-image: url('/images/bp-mobile.jpg');
  }
  .page-hero.page-pg {
    min-height: 940px;
  }
  .crd-h > div, .crd-h, .crd > .row {
    min-height: 300px;
  }
  .crd-h .header {
    font-size: 32px;
    line-height: 42px;
  }
  .hero-title {
    font-size: 38px;
    line-height: 38px;
    letter-spacing: -3px;
  }
  .article-hero {
    min-height: 200px;
  }
  .glass {
    min-height: auto;
  }
  .swiper, .swipe {
    /* height: 200px; */
    height: 45px;
  }
  .coverage {
    gap:20px;
  }
  .slider-container {
    --slide-width: 95vw;
    --slide-height: 280px;
  }
  .slider-container.sm {
    --slide-width: 60vw;
    --slide-height:150px;
  }
  .coverage img {
    width: 120px;
  }
  .coverage img.sm {
    width: 90px;
  }
  .title {
    font-size: 38px;
    line-height: 46px;
  }
  .title.sm {
    font-size: 34px;
    line-height: 44px;
  }
  .accordion-button {
    gap:15px;
  }
  .accordion-button:not(.collapsed), .accordion-button {
    letter-spacing: -1px;
    font-size: 22px;
  }

  .slide-title {
    font-size: 22px;
    line-height: 32px;
  }
  .slide-btn {
    height: 40px;
    width: 40px;
  }
  .slide-btn.left {
    left: 20px;
  }
  .slide-btn.right {
    right: 20px;
  }
  .page-hero {
    min-height: auto;
  }
  .lt-brown-gradient .pricing-img, .lt-brown-gradient .fda-approved img {
    width: 70% !important;
  }
  .opt-grad .subtitle {
    font-size: 30px;
    line-height: 34px;
  }
  .opt-grad {
    min-height: 400px;
  }
  .opt-grad img {
    width: 70% !important;
  }
  .spinning-text-container {
      width: 150vw;
      height: 150vw;
      bottom: -80vw;
  }
  .white-circle {
      width: 105vw;
      height: 105vw;
  }
  .man-image {
    width:110vw
  }
  .top-text .subtitle.sm {
    font-size: 24px;
    line-height: 34px;
  }
  .page-title {
    font-size: 38px;
    line-height: 46px;
  }
}
@media screen and (max-width:400px) {
  p {
    font-size: 17px;
  }
  .hero-title {
    font-size: 34px;
    line-height: 34px;
    letter-spacing: -2px;
  }
  .hero-headline {
    font-size: 18px;
  }
  .swiper, .swipe {
    /* height: 150px; */
    height: 34px;
  }
  .title {
    font-size: 35px;
    line-height: 42px;
  }
  .title.sm {
    font-size: 27px;
    line-height: 40px;
  }
  .subtitle {
    font-size: 25px;
    line-height: 35px;
  }
  .subtitle.sm {
    font-size: 22px;
    line-height: 32px;
  }
  .subtitle.lg {
    font-size: 28px;
    line-height: 32px;
  }
  .fda-approved img {
    margin-top: 0px;
    margin-right: 0px;
  }
  .subheader {
    font-size: 18px;
  }
  .coverage {
    gap:12px;
  }
  .coverage img {
    width: 110px;
  }
  .coverage img.sm {
    width: 80px;
  }
  .yellow-gradient .subheader {
    font-size: 22px;
  }
  .opt-grad {
    min-height: 300px;
  }
  .opt-grad img {
    width: 60% !important;
  }
  .spinning-text-container {
      width: 165vw;
      height: 165vw;
      bottom: -90vw;
  }
  .white-circle {
      width: 115vw;
      height: 115vw;
  }
  .page-title {
    font-size: 34px;
    line-height: 46px;
  }
  .page-hero p {
    font-size: 19px
  }
  .page-hero.page-pg {
    min-height: 850px;
  }
}

@media screen and (min-width:1200px) {
  .tst-container.brown {
    background-position: -10px;
  }
}

.wistia_click_to_play {
  display: grid;
  place-items: center;
}
.wistia_click_to_play > div > div:nth-child(2),
.wistia_click_to_play > div > div:nth-child(3) {
  opacity: 0;
}
.wistia-popup {
  position: relative;
}
.wistia-popup .play-blue {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 180px;
  width: 180px;
  animation: pulse-animation 5s infinite;
  cursor: pointer;
}

.custom-nav {
  display: flex;
  align-items: center;
  gap:10px;
  margin-top: -1rem;
}
.custom-nav a {
  height: 35px;
  width: 35px;
  border-radius: 100%;
  background-color: #ffffff;
  color: #532a1f;
  display: grid;
  place-items:center;
  border:1px solid #532a1f;
}
.custom-works-dots {
  display: flex;
  gap:10px;
}
.custom-works-dots .dot {
  font-size: 13px;
  color: red;
  height: 15px;
  width: 15px;
}
.custom-works-dots .dot.active {
  background-color: var(--cgm-pry-color);
}

.people-carousel .h-100 {
  min-height: 478px;
}
.people-carousel img {
  min-height: 150px;
  object-fit: cover;
}
.people-carousel p {
  font-size: 15px;
}

.play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  height: 65px;
  width: 65px;

  color: #fff !important;
  display: grid;
  place-items: center;
  border-radius: 100%;
  background: rgba(0, 62, 68, .4);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.play.sm {
  height: 40px;
  width: 40px;
  font-size: 14px;
  animation: pulse 2.5s infinite;
}
.play.lg {
  height: 90px;
  width: 90px;
  font-size: 40px;
  animation: pulse 2.5s infinite;
}

.testimony-container {
  border-radius: 24px;
}
.testimony-container h5 {
  font-weight: bold;
}
.bg-testimony-light-brown {
  background: linear-gradient(180deg, #C9B7AA 0%, #E8E1DA 100%);

}
.bg-testimony-brown {
  background: linear-gradient(180deg, #8A3A34 0%, #B7804A 100%), linear-gradient(180deg, #706E6B 0%, #E8E1DA 100%);
  color: #fff;
}

.socials {
  gap:10px;
}
.socials a {
  height:35px;
  width:35px;
  display: grid;
  place-items: center;
  border: 1px solid #8A3A34;
  border-radius: 100%;
  transition: .7s;
  color: #8A3A34;
}
.socials a:hover {
  background-color: #fff;
  color: var(--pry-color);
  transition: .7s;
}

.wistia_click_to_play {
  display: grid;
  place-items: center;
}
.wistia_click_to_play > div > div:nth-child(2),
.wistia_click_to_play > div > div:nth-child(3) {
  opacity: 0;
}
.wistia-popup {
  position: relative;
}
.wistia-popup .play-blue {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 180px;
  width: 180px;
  animation: pulse-animation 5s infinite;
  cursor: pointer;
}