html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
a,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  list-style: none;
  outline: none;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html,
body {
  -webkit-text-size-adjust: none;
  height: 100%;
}

article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  display: block;
}

iframe {
  vertical-align: top;
}

textarea:focus,
input:focus,
a,
div,
img {
  outline: none;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


:root {
  --bg: #0b1220;
  --card: #0f1a33;
  --muted: #e9eef8;
  --text: #444444;
  --ink: #0f172a;
  --white: #ffffff;

  --primary: #1f6fff;
  --primary-ink: #0b2a66;

  --wa: #5288ba;
  --wa-dark: #5288bae6;

  --border: rgba(15, 23, 42, .10);
  --shadow: 0 18px 45px rgba(2, 8, 23, .12);

  --radius: 18px;
  --radius-sm: 12px;

  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  /* font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica, sans-serif; */
  font-family: 'open sans', Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  max-width: 1180px;
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  /* background: rgba(255, 255, 255, .86); */
  background: linear-gradient(180deg, #74aadc 30%, #000 150%);
  backdrop-filter: blur(10px);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 30%, #7dd3fc 0, #1f6fff 35%, #0b1220 100%);
  box-shadow: 0 10px 25px rgba(31, 111, 255, .25);
}

.brand__text small {
  display: block;
  color: rgba(15, 23, 42, .65);
  font-size: 12px;
  margin-top: 2px;
}

.topbar__nav {
  display: flex;
  gap: 14px;
  align-items: center;
}

.topbar__nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 7px 15px;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
}

.topbar__nav a:hover {
  background: #fff;
  border-radius: 30px;
  color: #74aadc;
}

.topbar__inner .btn:hover,
.final-cta__action .btn:hover {
  background: #fff;
  border-color: #fff;
  color: var(--wa);
}


/* Buttons */
.btn {
  border-radius: 999px;
  border: 2px solid var(--wa);
  cursor: pointer;
  padding: 12px 16px;
  font-weight: 600;
  letter-spacing: .2px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(2, 8, 23, .10);
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease;
  user-select: none;
  font-family: 'open sans', Helvetica, Arial, sans-serif;
      font-size: 13.333px;
    text-align: center;
}

.btn:active {
  transform: translateY(1px);
  box-shadow: 0 6px 14px rgba(2, 8, 23, .12);
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
}

.btn--primary:hover {
  background: #155de2;
}

.btn--wa {
  background: var(--wa);
  color: var(--white);
}

.btn--wa:hover {
  background: #fff;
  border-color: var(--wa);
  color: var(--wa);
}

.btn--xl {
  padding: 16px 20px;
  font-size: 16px;
}

/* Hero */
.hero {
  /* background: radial-gradient(900px 450px at 20% 15%, rgb(18 75 162 / 20%), transparent 60%), radial-gradient(900px 450px at 80% 15%, rgb(82 136 186 / 50%), transparent 60%), linear-gradient(180deg, #f8fbff 0%, #ffffff 60%); */
  background: radial-gradient(900px 450px at 80% 15%, rgb(82 136 186 / 50%), transparent 60%), linear-gradient(180deg, #f8fbff 0%, #ffffff 60%);
  padding: 80px 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}



.eyebrow {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(31, 111, 255, .10);
  color: rgb(18 75 162 / 95%);
  font-weight: 700;
  font-size: 12px;
}

.hero h1 {
  margin: 12px 0 20px;
  font-size: 40px;
  line-height: 1.1;
  color: #000000;
}

.lead {
  font-size: 16px;
  color: var(--text);
  margin: 0 0 20px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 10px;
}

.checklist li {
  position: relative;
  padding-left: 30px;
  font-weight: 500;
  color: var(--text);
  font-size: 16px;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: rgb(18 75 162 / 18%);
  border: 1px solid rgb(18 75 162 / 18%);
}

.checklist li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 9px;
  width: 8px;
  height: 5px;
  border-left: 2px solid #124ba2;
  border-bottom: 2px solid #124ba2;
  transform: rotate(-45deg);
}

.hero__cta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.micro {
  font-size: 12px;
  color: var(--text);
}

.trust-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  box-shadow: 0 10px 25px rgba(2, 8, 23, .06);
}

/* Hero visual */
.hero__visual .visual-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(2, 8, 23, .06);
}

.hero__visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}



.badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(2, 8, 23, .08);
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: 0 14px 35px rgba(2, 8, 23, .18);
  font-weight: 900;
}

.badge__top {
  color: #000;
}

.badge__bottom {
  color: #124ba2;
  font-weight: 800;
  color: #4c7bc3;
}

.badge__google--logo .badge__google--logo-small {
  width: 90px;
  height: auto;
  border-radius: 0;
  background-color: transparent;
  padding: 0;
  margin: 10px 0 7px;
}

.hero__note {
  margin-top: 12px;
  color: rgba(15, 23, 42, .70);
  font-weight: 650;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section--muted {
  /* background: #74aadc; */
  background: linear-gradient(180deg, #000 0%, #74aadc 100%);
}

.section__head {
  margin-bottom: 22px;
}

.section__head h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.2;
  /* color: #74aadc; */
  color: #fff;

}

.section__head p {
  margin: 0;
  color: #fff;
  font-size: 16px;
}

/* Icon cards (problem section) */
.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}




.icon-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(2, 8, 23, .06);
}

.icon-card h3 {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.25;
  color: #000;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}



.media-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(2, 8, 23, .06);
  box-shadow: var(--shadow);
}

.media-card img {
  height: auto;
  width: 100%;
}

.media-caption {
  padding: 12px 14px;
  background: #fff;
  border-top: 1px solid var(--border);
  color: #000;
}

.bullets {
  margin: 14px 0;
  color: var(--text);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  counter-reset: step;
}



.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(2, 8, 23, .06);
}

.step__num {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 111, 255, .12);
  color: #74aadc;
  font-weight: 900;
  padding: 10px;
  position: relative;
}

.step__num svg {
  width: 50px;
  height: 50px;
}

.step__num:after {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  right: -5px;
  top: -5px;
  background: #74aadc;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 100%;
  font-size: 12px;
  font-weight: 700;
}

.step h3 {
    margin: 10px 0 6px;
    color: #000;
    font-size: 18px;
}

.step p {
    margin: 0;
    color: var(--text);
    padding-bottom: 5px;
}
.step p:last-child {
    padding-bottom: 0px;
}
/* Reviews */
.reviews {
  /* Slick handles layout */
}
.section-reviews{overflow: hidden;}


.review {
  margin: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(2, 8, 23, .06);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviews.slick-slider .review {
    float: none;
    clear: both;
    display: flex;
    height: auto;
    box-shadow: none;
}
.reviews.slick-slider .slick-track {
    display: flex;
    gap: 14px;
}
.reviews .slick-track:before, 
.reviews .slick-track:after{
  content: unset;
}
.review blockquote {
  margin: 12px 0 0px;
  color: var(--text);
  font-weight: 400;
  font-size: 16px;
  font-style: italic;
  order: 1;
  text-align: center;
}

.custom-arrow.slick-arrow:hover {
  background-color: #ffffff;
  border: 1px solid var(--wa);
}

.custom-arrow.slick-arrow:hover svg path {
  stroke: var(--wa);
}

.stars,
.stars-wrap {
  color: #f59e0b;
  letter-spacing: 1px;
}

.who {
  margin-left: 10px;
  color: rgba(15, 23, 42, .55);
  font-size: 13px;
}

.reviews .slick-arrow::before {
  color: #000000;
  display: none;
}

.custom-arrow.slick-arrow {
  background: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.slick-next.custom-arrow.slick-arrow {
  right: -40px;
}

.slick-prev.custom-arrow.slick-arrow {
  left: -40px;
}

.custom-arrow.slick-arrow svg path {
  stroke: #ffffff;
}

.section-reviews-google-logo {
  max-width: 120px;
  margin: 20px auto;
}

.stars-wrap .half {
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  margin: -5px 0 0;
  color: #d5d5d5;
  position: relative;
}

.stars-wrap .half::after {
  content: "★";
  color: #f59e0b;
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
}

/* Pricing */
.pricing {
  display: grid;
  /* grid-template-columns: 1.1fr .9fr; */
  gap: 18px;
  align-items: stretch;
}

.pricing__card .btn--wa.js-wa {
  max-width: 380px;
  margin: 0 auto;
  width: 100%;
}

.pricing__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 17px;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.pricing__top {
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(31, 111, 255, .10), rgba(31, 111, 255, .04));
  border: 1px solid rgba(31, 111, 255, .18);
}

.pricing__price {
  font-size: 16px;
  color: var(--text);
}

span.subtle {
  color: var(--text);
  font-size: 13px;
}

.pricing__price strong {
  font-size: 22px;
  color: #000;
}

.pricing__note {
  color: var(--text);
  font-size: 13px;
  margin-top: 4px;
}

.pricing__grid {
  display: grid;
  gap: 10px;
}

.pricing__item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
}

.pricing__image img {
  height: 100%;
  min-height: 340px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(2, 8, 23, .06);
  box-shadow: var(--shadow);
}

/* FAQ */
.faq {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 30px rgba(2, 8, 23, .06);
}

.faq__q {
  width: 100%;
  text-align: left;
  background: #fff;
  border: 0;
  border-bottom: 1px solid var(--border);
  padding: 25px 25px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 20px;
}

.faq__a {
  padding: 10px 25px 25px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.faq__a p {
  margin: 10px 0 0;
  color: rgba(15, 23, 42, .75);
}

.faq__chev {
  width: 10px;
  height: 10px;
  border-right: 3px solid #000;
  border-bottom: 3px solid #000;
  transform: rotate(45deg);
  transition: transform .2s ease;
  margin-left: 12px;
}

.faq__q[aria-expanded="true"] .faq__chev {
  transform: rotate(-135deg);
}

/* Callout */
.callout {
  margin-top: 18px;
  background: #ffffff;
  border: 1px solid rgba(31, 181, 106, .22);
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(2, 8, 23, .06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.callout p {
  margin: 0;
  color: #000;
}

.center {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.still-unsure {
  text-align: center;
  font-weight: 700;
  margin: 10px 0;
  color: #74aadc;
  padding-right: 15px;
}

/* Final CTA */
.final-cta {
  /* background:
    radial-gradient(900px 450px at 20% 30%, rgba(31, 181, 106, .18), transparent 60%),
    radial-gradient(900px 450px at 80% 30%, rgba(31, 111, 255, .22), transparent 60%),
    linear-gradient(180deg, #0b1220 0%, #0f1a33 100%); */
  /* background: linear-gradient(180deg, #74aadc 0%, #000 100%); */
  color: #fff;
  padding: 56px 0;
}

.topbar__inner .btn,
.final-cta__action .btn {
  background: transparent;
  border-color: #fff;
}

.final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.final-cta__copy {
  max-width: 680px;
}

.final-cta h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.2vw, 34px);
}

.final-cta p {
  margin: 0;
  color: rgba(255, 255, 255, .80);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .75);
  padding: 16px 0;
}

.footer-with-final-cta {
  background: linear-gradient(180deg, #74aadc 0%, #000 100%);
}

.footer__inner {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.muted {
  color: rgba(15, 23, 42, .62);
}

/* Sticky WA */
.sticky-wa {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;

  display: flex;
  align-items: center;
  gap: 7px;

  border: 0;
  cursor: pointer;
  border-radius: 10px;
  padding: 10px 14px;
  background: var(--wa);
  color: #fff;
  box-shadow: 0 18px 40px rgba(2, 8, 23, .22);
}

.sticky-wa:hover {
  background: var(--wa-dark);
}

.sticky-wa__text small {
    display: block;
    opacity: .85;
    font-weight: 700;
    font-size: 11.1111px;
    line-height: 1;
}

/* Simple CSS icons */
.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  position: relative;
  flex: 0 0 20px;
}

/* .icon--wa{
  border-radius: 6px;
  background: rgba(255,255,255,.16);
} */
/* .icon--wa::before{
  content:"";
  position:absolute;
  inset: 4px 5px 6px 5px;
  border: 2px solid rgba(255,255,255,.95);
  border-radius: 999px;
}
.icon--wa::after{
  content:"";
  position:absolute;
  left: 5px; bottom: 3px;
  width: 7px; height: 7px;
  background: rgba(255,255,255,.95);
  clip-path: polygon(0 0, 100% 0, 60% 60%, 0 100%);
  transform: rotate(12deg);
} */

.icon--star {
  border-radius: 6px;
  background: rgba(245, 158, 11, .18);
}

.icon--star::before {
  content: "★";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #f59e0b;
  font-size: 16px;
}

.icon--shield {
  border-radius: 6px;
  background: rgba(31, 111, 255, .12);
}

.icon--shield::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 10px;
  height: 14px;
  border: 2px solid rgba(31, 111, 255, .95);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  clip-path: polygon(0 0, 100% 0, 100% 55%, 50% 100%, 0 55%);
}

.icon--clock {
  border-radius: 6px;
  background: rgba(31, 181, 106, .15);
}

.icon--clock::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 2px solid rgba(31, 181, 106, .95);
  border-radius: 999px;
}

.icon--clock::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 7px;
  width: 2px;
  height: 7px;
  background: rgba(31, 181, 106, .95);
  box-shadow: 3px 3px 0 0 rgba(31, 181, 106, .95);
}

/* Problem icons (simple pictograms) */


.icon--clarity::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 10px;
  width: 6px;
  height: 3px;
  border-left: 2px solid rgba(15, 23, 42, .55);
  border-bottom: 2px solid rgba(15, 23, 42, .55);
  transform: rotate(-45deg);
}

.final-cta .micro {
  color: #fff;
  text-align: center;
  padding-top: 10px;
}

.brand__logo {
  width: 80px;
  padding: 6px;
  background: #fff;
  border-radius: 100%;
  height: auto;
}

.hero__cta .btn {
  /* width: max-content; */
}

.hero__copy .lead strong {
  color: #000;
}

section#pricing .section__head {
  text-align: center;
}

.split__content h2 {
  color: #000000;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.2;
  margin-bottom: 15px;
}

.split__content .btn {
  margin-top: 15px;
}

.split__content p {
  color: var(--text);
}

.section-process .center .btn {
  background: transparent;
  border-color: #fff;
}

.section-reviews .section__head h2,
.section-reviews .section__head p,
.section-faq .section__head h2 {
  color: #000;
}

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

.varicose-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 5px;
  background: rgba(31, 111, 255, .12);
  color: rgb(18 75 162);
}

.pricing__item_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  color: var(--wa);
  background: rgba(31, 111, 255, .12);
  padding: 5px;
  border-radius: 5px;
}

.pricing__copy {
  text-align: center;
  color: var(--text);
}

.pricing__item strong {
  color: #000;
}

span.icon--wa:after {
  content: '';
  background-image: url(../images/whatsapp.svg);
  background-position: center;
  height: 20px;
  width: 20px;
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
}

.topbar__inner .btn:hover span.icon--wa:after,
.final-cta__action .btn:hover span.icon--wa:after,
.btn--wa:hover span.icon--wa:after {
  background-image: url(../images/whatsapp-hover.svg);

}

.section-process .center .btn:hover {
  background: #fff;
}

/* ---------------- */
/* hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
  display: block;
  transition: 0.3s;
}

/* mobile menu panel */

.mobile-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background: linear-gradient(180deg, #000 0%, #74aadc 100%);
  z-index: 9999;
  padding: 60px 20px;
  transition: 0.4s ease;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
 
.mobile-menu.active {
  left: 0;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav a {
  text-decoration: none;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
}

/* overlay */

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* close icon */

.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
}

.header-btn {
  display: flex;
  align-items: center;
  gap: 20px;
}

.section-process .section__head h2 {
  margin-bottom: 30px;
}

.section-process .center {
  margin-top: 25px;
}
.section-faq .center {
    flex-wrap: wrap;
}
.mobile-menu .btn{
          border-color: #fff;
        background: transparent;
}
.mobile-menu .btn:hover {
    color: #fff;
    border-color: #fff;
}
.mobile-menu .btn:hover span.icon--wa:after {
    background-image: url(../images/whatsapp.svg);
}
span.sticky-wa__text {
    text-align: center;
    list-style: 1;
}

span.sticky-wa__text strong {
    font-size: 13.3333px;
    line-height: 1.1;
}

/* Award-Winning Clinic Section CSS */
.section-award {
    padding-top: 0px;
}
.section-award h2 {
    color: #000;
    position: relative;
    padding-bottom: 50px;
    margin-bottom: 0;
    display: inline-block;
}
.decorative-border {
    position: absolute;
    bottom: 0;
    border-top: 1px solid #e1e1e1;
    height: 2px;
    width: calc(100% + 80px);
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
}
.decorative-border .circle {
    border-radius: 20px;
    height: 9px;
    width: 9px;
    border-width: 2px;
    border-style: solid;
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -5px;
    border-color: #e1e1e1;
    margin-top: -5px;
    background-color: #fcfcfc;
}
.section-award .awards-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}
.awards-grid .awards-item {
    width: 15.2%;
    display: inline-block;
}
.awards-grid .awards-item:first-child {
    margin-left: 0;
}
.awards-grid .awards-item img {
    width: 100%;
    height: auto;
    max-width: unset;
    display: inline-block;
}
.awards-grid .awards-item > a {
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all 0.7s;
}
.awards-grid .awards-item .image-overlay-inside {
    background: rgb(116 170 220 / 70%) url(../images/shortcut-icon.png) no-repeat center center;
    background-size: 22px;
    color: #ffffff;
    border-color: #5288ba;
    display: flex;
    height: 120px;
    width: 120px;
    position: absolute;
    border-radius: 100%;
    left: 50%;
    top: 50%;
    z-index: 500;
    text-align: center;
    transition: opacity 0.4s ease-in-out;
    opacity: 0;
    margin: -60px 0 0 -60px;
}
.awards-grid .awards-item > a:hover .image-overlay-inside {
    opacity: 1;
    animation: avia_pop_small 0.5s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275);
}
@keyframes avia_pop_small {
  0%   { transform:rotate(-175deg) scale(0.2);  }
  100% { transform:rotate(0deg) scale(1);   }
}
/* Location Section CSS */
.section-location{padding-top: 0px !important;}
.section-location .split__content p {
    margin-bottom: 10px;
}

.section-location .container.split {
  max-width: 940px;
  grid-template-columns: 1.4fr 1.2fr;
}

.section-location .split__content p > a {
    color: inherit;
}
.section-location .split__content p > a:hover {
    color: var(--wa);
}
/*Patient Experience Section CSS*/
.section-patient {
    padding-top: 0px !important;
}
.section-patient .rating-item {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}
.section-patient .patient-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: rgb(5, 24, 81);
}
.section-patient .split_image {
    width: auto;
    max-width: 300px;
}
.section-patient .split_image img {
    border: 1px solid #cccc;
    border-radius: 20px;
}
.section-patient .split__content {
    width: 35%;
    min-width: 350px;
}
.section-patient .rating-item p {
    font-weight: 400;
    color: rgb(255, 255, 255);
    font-size: 16px;
}
.section-patient .rating-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.rating-star-list img {
    max-width: 120px;
    width: auto;
}