/* @import url("https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
; */

/* WhatsApp rewamp template: ensure the legacy WhatsApp popup button never shows */
body.page-template-page-whatsapp-rewamp .whatsapp-popup,
body.page-template-page-whatsapp-rewamp-php .whatsapp-popup,
body.page-template-page-whatsapp-rewamp-form .whatsapp-popup,
body.page-template-page-whatsapp-rewamp-form-php .whatsapp-popup {
  display: none !important;
}

:root {
  --quadone-font-primary: "Host Grotesk", serif;
  --quadone-font-fallback: system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
    "Noto Color Emoji";
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "Inter", sans-serif; */
   font-family: var(--quadone-font-primary), var(--quadone-font-fallback);
}

body {
  h6 {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  p {
    font-size: 16px;
    line-height: 1.625;
  }
}

p.small-copy {
    color: #fff !important;
}

.wp-hero-section {
  /* background: linear-gradient(315deg, #1e79a2, #238dbf, #2aabe3); */
   background: linear-gradient(315deg, #2aabe3, #238dbf,#1e79a2 );
}

.wp-hero-section .hero-heading {
  line-height: 1.2;
  font-size: 3.8rem;
  font-weight: bold;
  color: white;
}

.wp-hero-section .hero-headingTwo {
  line-height: 1.2;
  font-size: 34px;
  font-weight: bold;
  color: white;
}

.wp-hero-section .hero-subheading {
  font-size: 1.2rem;
  margin-top: 15px;
  max-width: 600px;
  color: white;
  /* text-align: justify; */
}

.wp-hero-section .uptime-badge {
  position: absolute;
  bottom: 10px;
  right: 15px;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 0.9rem;
}

.wp-hero-section .feature-dots {
  margin-top: 40px;
  font-size: 0.9rem;
}

.wp-hero-section .feature-dots span {
  margin-right: 20px;
  white-space: nowrap;
}

.wp-hero-section .feature-dots i {
  font-size: 10px;
  vertical-align: middle;
  margin-right: 6px;
  color: #25d366;
}

.wp-hero-section .whatsapp-text {
  /* color: #25d366; */
  color: #01f35b;
}

.wp-hero-section .btn-pill {
  border-radius: 14px;
  padding: 0.9rem 1.2rem;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(6px);
}

.wp-hero-section .btn-light-glass,
.wp-hero-section .btn-light-glass:hover {
  /* background: linear-gradient(315deg, #1e79a2, #238dbf, #2aabe3);
    color: #fff; */
  background: #fff;
  color: #0d5fd6;
  border: 1px solid rgb(255, 255, 255);
  width: 30%;
}

.wp-hero-section .dot-demo {
  display: inline-block;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  margin-right: 0.55rem;
  transform: translateY(-1px);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.16) inset;
  /* background: #fff; */
  background: #31d4a3;
}

/* right side whatsapp chat part */

.wp-hero-section .whatsapp-container {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  background: #e5ddd5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  /* height: 510px; */
}

.wp-hero-section .chat-header {
  background: #075e54;
  color: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wp-hero-section .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}

.wp-hero-section .chat-info h6 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.wp-hero-section .chat-info small {
  opacity: 0.85;
  font-size: 12px;
}

.wp-hero-section .chat-body {
  height: 320px;
  overflow-y: auto;
  padding: 18px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="chat-bg" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23chat-bg)"/></svg>');
}

.wp-hero-section .message {
  margin-bottom: 12px;
  display: flex;
  opacity: 0;
  transform: translateY(20px);
  animation: msg 0.45s ease forwards;
}

@keyframes msg {
  to {
    opacity: 1;
    transform: none;
  }
}

.wp-hero-section .message.sent {
  justify-content: flex-end;
}

.wp-hero-section .wp-hero-section .message.received {
  justify-content: flex-start;
}

.wp-hero-section .message-bubble {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 18px;
  position: relative;
  word-wrap: break-word;
  font-size: 14px;
  line-height: 1.35;
  white-space: pre-wrap;
}

.wp-hero-section .message.sent .message-bubble {
  background: #dcf8c6;
  border-bottom-right-radius: 6px;
}

.wp-hero-section .message.received .message-bubble {
  background: #fff;
  border-bottom-left-radius: 6px;
}

.wp-hero-section .message-time {
  font-size: 11px;
  color: #666;
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.wp-hero-section .double-tick {
  color: #4fc3f7;
  font-size: 12px;
}

.wp-hero-section .date-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
  opacity: 0.8;
}

.wp-hero-section .date-divider span {
  font-size: 12px;
  color: #555;
}

.wp-hero-section .date-divider::before,
.wp-hero-section .date-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
}

.wp-hero-section .typing-bubble {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 18px;
  background: #fff;
  border-bottom-left-radius: 6px;
  display: inline-flex;
  align-items: center;
}

.wp-hero-section .typing-dots {
  display: flex;
  gap: 4px;
}

.wp-hero-section .typing-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #999;
  animation: typing 1.4s infinite ease-in-out;
}

.wp-hero-section .typing-dots span:nth-child(1) {
  animation-delay: -0.32s;
}

.wp-hero-section .typing-dots span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes typing {
  0%,
  80%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.wp-hero-section .chat-input {
  background: #f0f0f0;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wp-hero-section .form-control {
  border-radius: 24px;
  border: none;
  padding: 12px 16px;
  background: #fff;
}

.wp-hero-section .btn-send {
  background: #25d366;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  transform: rotate(45deg);
}

.wp-hero-section .btn-send:hover {
  background: #128c7e;
}

.wp-hero-section .quick-replies {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 8px 12px;
}

.wp-hero-section .quick-btn {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 10px;
  cursor: pointer;
}

.wp-hero-section .quick-btn:hover {
  background: #f7f7f7;
}

.wp-hero-section #live-region {
  position: absolute;
  left: -9999px;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* ------------------------- */
.wp-hero-section,
.Key-Value-Proposition-section,
.security-section,
.patient-engagement,
.wp-faq-section,
.demo-section,
.contact-section {
  padding: 60px 0px;
}

/* ---------------------------- */

/* Key-Value-Proposition-section  */
.Key-Value-Proposition-section {
  background: linear-gradient(
    145deg,
    hsl(0 0% 100%) 0%,
    hsl(210, 27%, 91%) 100%
  );
}

.wp-sub-heading {
  font-size: 3rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

.wp-sub-text {
  font-size: 1.25rem;
  line-height: 1.75rem;
  text-align: center;
}

.Key-Value-Proposition-section .hiw-badge.blue {
  background: radial-gradient(120% 120% at 30% 20%, #60a5fa);
}

.Key-Value-Proposition-section .hiw-badge.green {
  background: radial-gradient(120% 120% at 30% 20%, #4ade80);
}

.Key-Value-Proposition-section .hiw-badge.purple {
  background: radial-gradient(120% 120% at 30% 20%, #a78bfa);
}

.Key-Value-Proposition-section .hiw-badge.red {
  background: radial-gradient(120% 120% at 30% 20%, #f43f5e);
}

.Key-Value-Proposition-section .hiw-badge {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  /* margin-bottom: 24px; */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  user-select: none;
  padding: 30px;
  /* new add  */
}

.Key-Value-Proposition-section .hiw-badge i {
  font-size: 30px;
}

.Key-Value-Proposition-section h6 {
  font-size: 20px;
}

.Key-Value-Proposition-section .key-second img {
  width: 100%;
}
.Key-Value-Proposition-section .key-flex {
  margin-bottom: 48px;
}

.Key-Value-Proposition-section .key-first .key-flex:nth-child(2),
.Key-Value-Proposition-section .key-third .key-flex:nth-child(2) {
  margin-bottom: 0px; 
}

@media (min-width: 768px) {
  .key-first,
  .key-second,
  .key-third {
    order: 0;
  }
}

/* Change the order on mobile screens */
@media (max-width: 767.98px) {
  .key-first {
    order: 2;
  }
  .key-second {
    order: 1;
    margin-bottom: 48px;
  }
  .key-third {
    order: 3;
  }

  .Key-Value-Proposition-section .key-flex {
    margin-bottom: 48px;
  }
  .Key-Value-Proposition-section .key-first .key-flex:nth-child(2),
  .Key-Value-Proposition-section .key-third .key-flex:nth-child(2) {
    margin-bottom: 48px; 
  }
}

/* ------------------------------------ */

/* Demos-section start  */
.demo-section .video-card {
  position: relative;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(18, 38, 63, 0.15);
  overflow: hidden;
  background: linear-gradient(135deg, #d7c7ff, #cfe3ff);
  max-width: 960px;
  margin-inline: auto;
}

.demo-section video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: transparent;
}

.demo-section .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.demo-section .ctrl-btn {
  pointer-events: auto;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  /* background-image: linear-gradient(90deg, #0052cc, #00c6ff); */
  background: linear-gradient(315deg, #1e79a2, #238dbf, #2aabe3);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(37, 117, 252, 0.35);
  transition: transform 0.12s ease;
}

.demo-section .ctrl-btn:active {
  transform: scale(0.97);
}

.demo-section .caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  padding: 12px 16px;
  backdrop-filter: blur(6px);
  color: #0f172a;
}

.demo-section .is-playing .caption {
  opacity: 0;
}

.demo-section .pro-tip {
  color: #6c757d;
}

.demo-section .icon {
  width: 34px;
  height: 34px;
  fill: #fff;
}

/* -------------------------------------- */

/* ItWorks Section start  */
.ItWorks-section {
  padding: 60px 0px;
  background: #f6f7f9;
}

.ItWorks-section .gradient-panel {
  background: linear-gradient(315deg, #1e79a2, #238dbf, #2aabe3);
  color: #fff;
  border-radius: 28px;
  padding: 44px 40px;
  box-shadow: var(--shadow);
}

.ItWorks-section .gradient-panel h2 {
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 1.25rem;
}

.ItWorks-section .chips {
  gap: 0.8rem 1rem;
}

.ItWorks-section .chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.14);
}

.ItWorks-section .chip .icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  color: #1e79a2;
  display: grid;
  place-items: center;
}

.ItWorks-section .gradient-panel p.small-copy {
  margin-top: 18px;
}

/* RIGHT */
.ItWorks-section .right-title {
  font-size: 24px;
  margin-bottom: 16px;
}

.ItWorks-section .works-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 18px 22px;
}

.ItWorks-section .works-row + .works-row {
  margin-top: 16px;
}

.ItWorks-section .works-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 30px;
  margin-right: 16px;
}

.ItWorks-section .works-value {
  font-weight: 800;
  font-size: 32px;
  margin: 0 8px 0 0;
}

.ItWorks-section .works-text {
  color: var(--muted);
  margin: 0;
  font-size: 16px;
}

.ItWorks-section .bg-revenue {
  color: #ffc107;
}

.ItWorks-section .bg-patient {
  color: #cf0707;
}

.ItWorks-section .bg-time {
  color: #1e90ff;
}

.ItWorks-section .bg-heart {
  color: #ff7dce;
}

/* ---------------------------------- */

/* ModHealth-section start  */
.ModHealth-section {
  padding: 60px 0px;
}

.ModHealth-section .mh-title {
  font-size: 2.6rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 0.75rem;
}

.ModHealth-section .row {
  margin-top: 10px;
}

.ModHealth-section .mh-title .break {
  display: block;
}

.ModHealth-section .mh-lead {
  font-size: 1.125rem;
  color: #545b6b;
  margin: 1.25rem 0 1rem;
}

.ModHealth-section .mh-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
}

.ModHealth-section .mh-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.ModHealth-section .mh-list .fa-check-circle {
  color: #25d366;
  margin-top: 0.2rem;
  font-size: 1.125rem;
}

.ModHealth-section .mh-visual {
  position: relative;
  max-width: 520px;
  margin-inline: auto;
}

.ModHealth-section .mh-blob {
  position: absolute;
  inset: -10% -12% -10% -12%;
  /* background: radial-gradient(circle at 40% 35%, #d0f5e2, transparent 60%),
    radial-gradient(circle at 70% 65%, #e3fff1, transparent 55%); */
  background: radial-gradient(circle at 40% 52%, #d0f5e2, transparent 60%),
    radial-gradient(circle at 70% 65%, #e3fff1, transparent 55%);
  border-radius: 50%;
  z-index: 0;
  max-width: 100%;
}

.ModHealth-section .phone-card {
  position: relative;
  z-index: 1;
  border-radius: 2rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin: 0 auto;
}

.ModHealth-section .phone-screen {
  width: 92%;
  height: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.ModHealth-section .phone-screen img {
  /* width: 50%; */
  width: 73%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ----------------------------- */
/* security-section start  */
.security-section {
  /* background-color: #f6f7f9; */
}

.security-section .security-card-img {
  width: 70px;
  height: 70px;
}

.security-section .feature-box-card {
  background: linear-gradient(310deg, hsl(0 0% 100%) 0%, hsl(210 40% 96%) 100%);
  border: 1px solid #edf1f7;
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease,
    border 0.4s ease-in-out;
  box-shadow: 0 10px 24px rgba(13, 35, 67, 0.06);
}

.security-section .feature-box-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0px 91px 25px rgba(0, 0, 0, 0), 0px 58px 23px rgba(0, 0, 0, 0.01),
    0px 33px 20px rgba(0, 0, 0, 0.05), 0px 15px 15px rgba(0, 0, 0, 0.09),
    0px 4px 8px rgba(0, 0, 0, 0.1);
}

.security-section .img-box {
  margin-bottom: 24px;
}

/* .security-section .feature-box-card p {
  color: #ffffffdb;
} */

.security-section .hiw-badge.blue {
  background: radial-gradient(120% 120% at 30% 20%, #60a5fa);
}

.security-section .hiw-badge.green {
  background: radial-gradient(120% 120% at 30% 20%, #4ade80);
}

.security-section .hiw-badge.purple {
  background: radial-gradient(120% 120% at 30% 20%, #a78bfa);
}

.security-section .hiw-badge.orange {
  background: radial-gradient(120% 120% at 30% 20%, #fca245);
}

.security-section .hiw-badge.red {
  background: radial-gradient(120% 120% at 30% 20%, #f43f5e);
}

.security-section .hiw-badge {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 24px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  user-select: none;
}

/* ------------------------------- */
/* patient-engagement start  */
.patient-engagement {
  color: #fff;
  background: linear-gradient(315deg, #1e79a2, #238dbf, #2aabe3);
}

/* .patient-engagement .cta-wrap {
  gap: .9rem;
  margin-top: 30px;
} */

.patient-engagement p {
  font-size: 20px;
}

.patient-engagement .btn-pill {
  border-radius: 14px;
  padding: 0.9rem 1.2rem;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(6px);
}

.patient-engagement .btn-light-glass {
  background: #fff;
  color: #0d5fd6;
  border: 0;
}

.patient-engagement .btn-outline-glass {
  color: #e8f1ff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.patient-engagement .btn-outline-glass:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

/* Tiny colored dot preceding button text */
.patient-engagement .dot {
  display: inline-block;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  margin-right: 0.55rem;
  transform: translateY(-1px);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.16) inset;
}

.patient-engagement .dot-demo {
  background: #31d4a3;
}

.patient-engagement .dot-live {
  background: #6bd1ff;
}

.patient-engagement h6 {
  font-size: 30px;
  line-height: 2.125rem;
}

/* ---------------------------- */
/* wp-faq-section start  */
.wp-faq-section .faq-accordion {
  width: 70%;
}

.wp-faq-section .accordion {
  --bs-accordion-btn-bg: #fff;
  --bs-accordion-btn-color: #000000;
  --bs-accordion-active-color: #fff;
  --bs-accordion-bg: #00bbfa08;
  --bs-accordion-btn-focus-box-shadow: none;
}

.wp-faq-section .accordion-button:not(.collapsed) {
  box-shadow: none;
}

.wp-faq-section .accordion-button {
  font-weight: 500;
}

.wp-faq-section .accordion-item {
  margin-bottom: 10px;
  box-shadow: 0 10px 24px rgba(13, 35, 67, 0.06);
}

.wp-faq-section .accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background: linear-gradient(315deg, #1e79a2, #238dbf, #2aabe3);
}

.wp-faq-section .accordion-item:first-child .accordion-collapse.show + .accordion-body,
.wp-faq-section .accordion-item:first-child .accordion-button {
  color: var(--bs-accordion-active-color);
  background: linear-gradient(315deg, #1e79a2, #238dbf, #2aabe3);
}

/* ---------------------------- */

/* Tab view media Queries  */

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

  .howItWorks .hiw-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: calc(250px / 2);
    right: -20px;
    width: 40px;
    height: 2px;
    background: linear-gradient(289deg, #083d81, #3ee0cf);
    transform: translateY(-50%);
    /* z-index: -1; */
  }
}


@media (max-width: 991.98px) {
  .howItWorks .hiw-card {
    text-align: center;
  }
}

/* mobile view media queries  */
@media (max-width: 768px) {
  .wp-hero-section,
  .Key-Value-Proposition-section,
  .ItWorks-section,
  .ModHealth-section,
  .security-section,
  .patient-engagement,
  .wp-faq-section,
  .demo-section,
  .contact-section {
    padding: 40px 0px;
  }

  .wp-hero-section .hero-heading {
    font-size: 2.5rem;
  }

  .wp-hero-section .wp-hero-right {
    margin-top: 20px;
  }

  .wp-sub-heading,
  .patient-engagement h2 {
    font-size: 28px !important;
  }

  .wp-faq-section .faq-accordion {
    width: 90% !important;
  }

  .demo-section .ctrl-btn {
    width: 40px;
    height: 40px;
  }

  .demo-section .icon {
    width: 24px;
    height: 24px;
  }

  .demo-section .caption {
    font-size: 10px;
    bottom: 10px;
  }

  .ItWorks-section .gradient-panel {
    padding: 30px 24px;
  }

  .ItWorks-section .gradient-panel h2 {
    font-size: 28px;
    text-align: center;
  }

  .ItWorks-section .right-title {
    font-size: 20px;
  }

  .ModHealth-section .mh-title {
    font-size: 24px;
  }

  .ModHealth-section .mh-title .break {
    display: inline-block;
  }

  .ModHealth-section .row {
    margin-top: -40px !important;
  }

  .ModHealth-section .row:not(:last-child) {
    margin-bottom: 50px !important;
  }

  .patient-engagement h6 {
    font-size: 22px;
  }
}

/* ------------------- */

.ModHealth-section .btn-light-glass {
  background: #25d366;
  color: #fff;
  border: 0;
}

.ModHealth-section .btn-pill {
  border-radius: 14px;
  padding: 0.9rem 1.2rem;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(6px);
}

.ModHealth-section .dot-demo {
  display: inline-block;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  margin-right: 0.55rem;
  transform: translateY(-1px);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.16) inset;
  background: #fff;
}

/* ----------------------- */

.ItWorks-section .btn-light-glass {
  background: linear-gradient(315deg, #1e79a2, #238dbf, #2aabe3);
  color: #fff;
  border: 0;
}

.ItWorks-section .btn-pill {
  border-radius: 14px;
  padding: 0.9rem 1.2rem;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(6px);
}

.ItWorks-section .dot-demo {
  display: inline-block;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  margin-right: 0.55rem;
  transform: translateY(-1px);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.16) inset;
  background: #fff;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .Key-Value-Proposition-section .key-second {
    text-align: center;
    margin: 20px 0px;
  }

  .Key-Value-Proposition-section .key-second img {
    width: 60%;
  }
}

@media (max-width: 1023px) {
  .wp-hero-section .btn-light-glass,
  .wp-hero-section .btn-light-glass:hover {
    width: 100%;
  }
}
