html {
  font-size: 62.5%; /* Because 16px 62.5% 1rem= 10px */
}


h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

img {
    max-width: 100%;
}

ul,
ol,
li {
    margin: 0;
    list-style: none;
    padding: 0;
}

a {
    text-decoration: none;
    color: #000;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


:root {
    --theme-color: #016a4c;
    --theme-color-primary: #095C41;
    --theme-regular-font:  "Inter", sans-serif;;
    --theme-header-font-bold: "Inter", sans-serif;;
    --senzio-green: #0f5b4c;
   --senzio-mint: #e7f3ef;
   --senzio-border: #97c7bb;
   --senzio-text: #12312b;
   --senzio-muted: #426962;
}

body {
    font-family: var(--theme-regular-font);
    font-weight: 400;
    background: #fff;
    color: #3b3b3b;
}

h1,h2,h3,h4,h5,h6{font-family: var(--theme-header-font-bold)}

@media (min-width: 1440px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1200px;
    }
}

@media (min-width: 1640px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1380px;
    }
}

@media (min-width: 1840px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1580px;
    }
}

@media (min-width: 2040px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1780px;
    }
}

@media (min-width: 2240px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1980px;
    }
}

@media (min-width: 2440px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 2180px;
    }
}


@media (min-width: 2640px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 2380px;
    }
}


.promo-bar {
  background: #ACF4A1; /* exact green tone */
  /* border: 2px solid #3cff3c; */
  padding: 0.8rem 0;
}

.promo-text {
  font-size: 1.7rem;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.3px;
}

.promo-code {
  background: #000;
  color: #fff;
  padding: 0.2rem 1rem;
  border-radius: 0.8rem;
  font-weight: 700;
  display: inline-block;
  margin: 0 0.6rem;
}


.custom-navbar .navbar-brand{
  margin-right: 3.5rem;
}

.custom-navbar {
  background-color: #FEEFEA; /* light peach */
  padding: 1.4rem 9rem;
}

ul.topMenu li a:hover, ul.topMenu li a.active {
    color: #98292c;
}

.logo-img {
  height: 4.2rem;
  width: auto;
}

.navbar-nav .nav-link {
  font-size: 1.6rem;
  font-weight: 500;
  color: #222;
  padding: 0;
}

.navbar-nav .nav-link:hover {
  color: #000;
}

.navbar-toggler {
  border: none;    width: fit-content;
    color: #000;
}
.navbar-toggler:hover{background: transparent;}

.navbar-toggler:focus {
  box-shadow: none;
}

.sticky {
    position: sticky;
    top: 0;
    z-index: 9999;
    transition: all 0.3s ease-out;
    left: 0;
    right: 0;
    width: 100%;
}

.hero-section{
    width: 100%;
    
}



/* MAIN HERO */
.hero-main {
 width: 100%;
 overflow: hidden;
}

/* LEFT SIDE */
.hero-left-wrap {
  display: flex;
  min-height: 100vh;

}

.hero-left {
  position: relative;
  z-index: 2;

  background-image: image-set(
    url("../../images/new-int-images/hero-bg.png") 1x,
    url("../../images/new-int-images/hero-bg@2x.png") 2x,
    url("../../images/new-int-images/hero-bg@3x.png") 3x
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 4.8rem;
  color: #fff;

  border-top-right-radius: 8rem;
  border-bottom-right-radius: 8rem;

  margin-right: -8rem;
  padding-left: 9rem; 
}


.hero-left::after {
  content: "";
  position: absolute;
  top: 0;
  right: -12rem;
  width: 24rem;
  height: 100%;
  /*background: radial-gradient(
    circle at left,
    rgba(255,255,255,0.35),
    rgba(255,255,255,0) 70%
  );*/
  pointer-events: none;
}



/* Rating */
.hero-rating {
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
}

.hero-rating i {
  color: #27d17c;
}

.hero-rating span {
  margin-left: 0.8rem;
  opacity: .9;
  color: #fff;
}

/* Title */
.hero-left h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-left h2{
 font-size: 5rem;
 color: #fff;
 margin-bottom: 2.2rem;
 font-weight: 700;
}

/* Pills */
.pill {
  /* background: #a42a2e; */
  /* padding: 6px 14px; */
  /* border-radius: 30px; */
  font-size: 6.8rem;
  color: #FFC64D;
}

.pill.yellow {
  background: #FFC64D;
  color: #9A2525;
  font-size: 6rem;
  border-radius: 5rem;
  padding: 0.5rem 1.5rem;
}

/* Strip */
.hero-strip {
  background: linear-gradient(to right,  rgba(255,255,255,1) 0%,rgba(255,255,255,0.46) 70%,rgba(255,255,255,0) 100%);
  padding: 0.2rem 1.6rem;
  border-radius: 0;
  font-weight: 700;
  margin-bottom: 1.4rem;
  color: #000;
  font-size: 3rem;
}

/* Text */
.hero-desc {
  font-size: 1.8rem;
  line-height: 2.8rem;
  width: 76%;
  color: #fff;
}

/* List */
.hero-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.hero-list li {
  margin-bottom: 1rem;
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
}

.hero-list img {
  color: #ffd966;
  margin-right: 0.5rem;
}

/* Button */
/* .cta-box {
    text-align: center;
    max-width: 60%;
} */
.cta-box .info-strip{
    padding-left: 25px;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #1EC148;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  font-size: 2.6rem;
  box-shadow: 1px 2px 5px #525050;
}
.hero-btn:hover{
  color: #fff;
  text-decoration: none;
  background: #156828;
}

/* Product */
.hero-product {
  position: absolute;
  right: -17.2rem;
  top: 37%;
  width: 35rem;
}

/* RIGHT SIDE GIF */
.hero-right {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  background-image:url("../../images/new-int-images/hero-img.gif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.op-40{
  opacity: 40%;
}

.info-strip {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.8rem 1rem;
  border-radius: 0.6rem;
  /* background: linear-gradient(90deg, #a52a2f, #c94a4a); */
  color: #fff;
  font-size: 1.3rem;
  font-weight: 400;
}

/* Left */
.info-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #000;
}

/* Green Dot */
.info-strip .dot {
  width: 0.8rem;
  height: 0.8rem;
  background: #27d17c;
  border-radius: 50%;
  display: inline-block;
}

/* Divider */
.info-strip .divider {
  /* opacity: 0.6; */
  color: #000;
  margin: 0;
}

/* Right */
.info-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.info-right i {
  font-size: 1.4rem;
}
.testimonial-box {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  padding: 1.4rem 1.8rem;
  border-radius: 1rem;
  /* background: rgba(0, 0, 0, 0.08); */
  color: #fff;
  /* max-width: 720px; */
}

/* Avatar */
.testimonial-avatar img {
  width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */
.testimonial-content h4 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #ffd966;
  margin-bottom: 0.6rem;
}

.testimonial-text {
  font-size: 1.5rem;
  /* line-height: 2.5rem; */
  /* opacity: 0.95; */
  font-style: italic;
  margin-bottom: 0.6rem;
}

/* Name */
.testimonial-user {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.testimonial-user .name {
  font-weight: 700;
  color: #ffd966;
  font-size: 1.8rem;
}

.testimonial-user .verified {
  color: #FFC64D;
  font-weight: 400;
  font-size: 1.5rem;
}

/* Stars */
.testimonial-stars i {
  color: #1ecb7c;
  font-size: 1.4rem;
  margin-right: 0.2rem;
}
.testimonial-avatar {
    width: 12%;
    height: auto;
    overflow: hidden;
}
.testimonial-content {
    width: 75%;
}




/* Responsive */
@media (max-width: 991px) {
  .hero-main {
    min-height: auto;
  }

  .hero-right {
    min-height: 42rem;
  }

  .hero-product {
    position: static;
    margin-top: 2rem;
  }
}
.feature-section{
  width: 100%;
  padding: 4rem 0;
}


.therapy-box {
  position: relative;
  width: 24rem;
  height: 30rem;
  margin: auto;
  padding-top: 8rem;
  text-align: center;
  background-image: url("../../images/new-int-images/box-bg.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}


.main-title {
      font-weight: 700;
      /* text-transform: uppercase; */
      letter-spacing: 1px;
      margin-bottom: 2rem;
      font-size: 2.9rem;
    }
    
    .section-container {
      position: relative;
      width: 34.3rem;
      height: 27rem;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .hexagon {
      position: relative;
      width: 25.3rem;
      height: 29.2rem;
      margin: auto;
      padding-top: 8rem;
      text-align: center;
      background-image: url("../../images/new-int-images/box-bg.svg");
      background-size: 100% 100%;
      background-repeat: no-repeat;
      background-position: center;
      padding: 7.5rem 3.7rem 0;
    }
    
    .hexagon-bottom {
      position: absolute;
      bottom: -1.2rem;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 0;
      border-left: 12px solid transparent;
      border-right: 12px solid transparent;
      border-top: 12px solid #d92626;
    }
    
    .circle {
      width: 12.5rem;
      height: 15.4rem;
      border-radius: 50%;
      /* background-color: #d92626; */
      display: flex;
      align-items: center;
      justify-content: center;
      margin: -15.2rem auto -1rem;
    }
    .feature-section .plus-icon {
    margin-top: -6rem;
}
    .feature-section .section-title {
      font-weight: 500;
      color: #d92626;
      text-transform: uppercase;
      margin-bottom: 1.1rem;
      font-size: 2.1rem;
    }
    .section-title span{
      font-weight: 700;
    }
    
    .section-description {
      font-size: 1.7rem;
      color: #333;
      line-height: 1.4;
      font-weight: 500;
    }
    
    .plus {
      font-size: 2.5rem;
      color: #fff;
      /* margin: 0 1.6rem; */
      font-weight: bold;
      width: 5rem;
      height: 4rem;
      background: #000;
      border-radius: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-left: 1rem;
    }
.mt-10{
  margin-top: 6rem;
  margin-left: 0px;
}



.product-section {
  background: #fff;
  border-top: 1px solid #dbdbdb;
}

.product-section .hero-btn{
width: 100%;
}
/* LEFT IMAGE */
.image-wrap {
  position: relative;
}
/*.image-wrap img{
  width: 100%;
}*/

/* RIGHT CONTENT */
.content-wrap {
  padding: 4rem 2rem 4rem 6rem;
}

.content-inner {
  max-width: 62rem;
}

.meet-title {
  color: #c7352f;
  font-weight: 700;
  font-size: 5rem;
}

.main-title {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 3.5rem;
}

.desc {
  font-size: 1.8rem;
  line-height: 2.9rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 1.8rem;
}

.features-row {
  display: flex;
  gap: 2.8rem;
  margin: 2.5rem 0;
}

.product-section .feature {
  /* text-align: center; */
  color: #c7352f;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.feature i {
  font-size: 4rem;
  margin-bottom: 0.6rem;
}

.feature span {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
}

.highlight-text {
  font-size: 1.8rem;
  color: #c7352f;
  font-weight: 600;
  margin: 1.5rem 0 2.2rem;
}

.cta-btn {
  background: #28a745;
  color: #fff;
  padding: 1.4rem 2.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 0.6rem;
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.cta-btn:hover {
  background: #23923d;
  color: #fff;
}

.meta {
  margin-top: 1.2rem;
  font-size: 1.3rem;
  color: #000;
}

.sale-dot {
  width: 0.8rem;
  height: 0.8rem;
  background: #28a745;
  display: inline-block;
  border-radius: 50%;
  margin-right: 0.6rem;
}

.divider {
  margin: 0 1rem;
}
.feature img{
  width: 35%;
}
.complete-cta{
  max-width: 41rem;
  text-align: center;
}
.complete-cta2{
  max-width: 46rem;
  text-align: center;
  margin:0 auto;
}
.red-col{
  color: #FF0707;
}
.product-visual {
  position: absolute;
  width: 27.3rem;
  margin: auto;
  bottom: 4rem;
  right: -5.7rem;
}

.product-img {
  width: 100%;
  position: relative;
  z-index: 3;
}
.cupping-therapy{
  width: 100%;
  padding: 4rem 0;
}
.cupping-therapy h2{
  font-size: 5rem;
  line-height: 6rem;
  color: #B32E2E;
  font-weight: 700;
}
.cupping-therapy h2 span{
  color: #000;
}

.section-wrap {
    background: #b84242;
    padding: 18.5rem 0 0;
    margin-top: -23rem;
}

.feature-card {
  background-image: image-set(
    url("../../images/new-int-images/background-img1.jpg") 1x,
    url("../../images/new-int-images/background-img1@2x.jpg") 2x,
    url("../../images/new-int-images/background-img1@3x.jpg") 3x
  );
  background-size: cover;
  background-position: center 100%!important;   /* move image down */
  background-repeat: no-repeat;
  padding: 2rem 2rem 0;
  display: flex;
  flex-direction: column;
  min-height: 34rem; /* KEY */
}

.new-bg {
  background-image: image-set(
    url("../../images/new-int-images/background-img2.jpg") 1x,
    url("../../images/new-int-images/background-img2@2x.jpg") 2x,
    url("../../images/new-int-images/background-img2@3x.jpg") 3x
  );
  background-position: center 0%!important;   /* move image down */

}


.feature-card-con {
  border: 1px solid #fff;
  margin-top: -4.4rem;
  position: relative;
  border-bottom: 0;

  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card-con h2{
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  background: #b84242;
  padding: 1rem;
  max-width: 13.5rem;
  margin: -1.8rem auto;
  color: #fff;
  letter-spacing: 2px;
}

.feature-card h5 {
  color: #c0392b;
  font-weight: 700;
  font-size: 3rem;
  max-width: 26.4rem;
  padding: 4rem 2rem 1.5rem;
  min-height: 22.4rem;
}


.feature-card p {
  font-size: 1.7rem;
  color: #444;
  background: #FFF8F1;
  padding: 3rem;
  margin-top: auto; /* ÃƒÆ’Ã‚Â°Ãƒâ€¦Ã‚Â¸ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒâ€šÃ‚Â¥ MAGIC LINE */
  min-height: 14.4rem;
  font-weight: 500;
}


.icon-box{
  width: 27rem;
  height: 10rem;
  /* border-radius:50%; */
  /* background:#c0392b; */
  display:flex;
  align-items:center;
  justify-content:center;
  border: 2px solid #c0392b;
  border-radius: 2rem;
}

.icon-box img{
  width: 4.5rem;
}
.feature-list{
  margin-bottom: 4rem;
}

.feature-list h6{
  font-weight: 700;
  margin-bottom:1rem;
  font-size: 2.8rem;
}

.feature-list p{
  font-size: 1.7rem;
    margin: 0;
    color: #000;
    font-weight: 500;
}

.product-img{
  max-width:22rem;
}

.model-img{
  max-width:28rem;
}

.cta-btn{
  background:#3bb54a;
  color:#fff;
  font-weight:700;
  padding:1.4rem 3.2rem;
  border-radius:0.6rem;
  text-decoration:none;
  display:inline-block;
}

.cta-btn:hover{
  background:#2fa043;
  color:#fff;
}

.small-note{
  font-size:1.2rem;
  color:#555;
}
.icon-cupping {
  position: absolute;
  right: 2rem;
  top: -2.2rem;
}

.icon-cupping img {
  max-width: 4.8rem;
}
.sec-6{
  background: #FFF8F1;
  width: 100%;
  padding: 18rem 0 6rem;
  margin-top: -18.5rem;
}
       
        

.sec-7 {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

/* LEFT IMAGE */
.sec-7::before {
    content: "";
    position: absolute;
    left: -15rem;
    top: 40%;
    width: 36rem;
    height: 40rem;
    background-image: image-set(url(../../images/new-int-images/s3-prod.png) 1x, url(../../images/new-int-images/s3-prod@2x.png) 2x, url(../../images/new-int-images/s3-prod@3x.png) 3x);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
}

/* RIGHT IMAGE */
.sec-7::after {
  content: "";
  position: absolute;
  right: -15rem;
  top: 2%;
  width: 38rem;
  height: 38rem;
  /*background: url("images/product-right.png") no-repeat center / contain;*/
  background-image: image-set(
    url("../../images/new-int-images/s3-prod-right.png") 1x,
    url("../../images/new-int-images/s3-prod-right@2x.png") 2x,
    url("../../images/new-int-images/s3-prod-right@3x.png") 3x
  );
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
}


.sec-7 h2 {
  text-align: center;
  color: #B32E2E;
  font-size: 5rem;
  font-weight: 700;
}

.sec-7 h3 {
  color: #000;
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.subtitle {
  text-align: center;
  color: #000;
  font-size: 1.7rem;
  max-width: 80rem;
  margin: 0 auto 3rem;
  line-height: 1.5;
}

/* Accordion container */
.sec-7 .accordion {
  max-width: 80rem;
  margin: 0 auto;
}

/* Accordion item ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ CLOSED state */
.sec-7 .accordion-item {
  border: 1px solid #E1D6D6;
  border-radius: 1.4rem;
  margin-bottom: 1.5rem;
  transition: border-color 0.25s ease;
}
.sec-7 .accordion-header .accordion-button .d-flex{gap:0.7rem;}

/* Accordion header button */
.sec-7 .accordion-button {
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: #212529;
  background-color: transparent;
  border: none;
  box-shadow: none;
  text-align: left;
}

/* Hover */
.sec-7 .accordion-button:hover {
  color: #B83C3C;
}

/* OPEN button */
.sec-7 .accordion-button:not(.collapsed) {
  color: #B83C3C;
  background-color: transparent;
}

/* ===========================
   PLUS / MINUS ICON (WORKING)
   =========================== */


/* ===========================
   BORDER COLOR WHEN OPEN
   =========================== */

/* ===========================
   ACCORDION BODY
   =========================== */

.sec-7 .accordion-body {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  color: #495057;
  line-height: 1.6;
  display: flex;
}

/* Feature description */
.sec-7 .feature-description {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: #000;
    font-weight: 400;
    padding-right: 3.5rem;
    text-shadow: 1px 3px 4px #ccc;
    padding-left: 5rem;
    line-height: 3rem;
        width: 70%;
}
/*
.sec-7 img.img-shadow.mb-4.d-none.d-md-block {
      width: 30%;
}*/

/* ===========================
   HEADING TEXT SHADOW LOGIC
   =========================== */

/* CLOSED ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ NO shadow */
.sec-7 .accordion-item h5 {
  font-size: 2rem;
  color: #000;
  font-weight: 700;
  text-shadow: none;
}

/* OPEN ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ shadow visible */
.sec-7 .accordion-item:has(> .accordion-header .accordion-button:not(.collapsed)) h5 {
  text-shadow: 1px 3px 4px #ccc;
}

/* ===========================
   FEATURE BADGE
   =========================== */

.sec-7 .feature-badge {
  background-color: #FFDDDD;
  color: #000;
  font-size: 1.4rem;
  font-weight: 400;
  padding: 5px 1.5rem;
  border-radius: 5rem;
  display: inline-block;
  margin-bottom: 1rem;
  box-shadow: 1px 3px 4px #ccc;
}

/* ===========================
   IMAGE SHADOW
   =========================== */

.img-shadow {
  box-shadow: 1px 3px 4px #ccc;
  border-radius: 1rem;
  margin-right: 4.2rem;
}

/* Remove unwanted spacing */
.sec-7 .accordion-header {
  margin-bottom: 0;
}



.sec-7 .accordion-button::after {
  background-image: none !important;
  content: "";
}

/* PLUS icon (closed) */
.sec-7 .accordion-button[data-state="closed"]::after {
  content: "+";
  font-size: 1.6rem;
  font-weight: bold;
  width: 2.8rem;
  height: 2.8rem;
  line-height: 2.2rem;
  text-align: center;
  border: 2px solid #B83C3C;
  border-radius: 50%;
  color: #B83C3C;
  margin-left: auto;
}

/* MINUS icon (open) */
.sec-7 .accordion-button[data-state="open"]::after {
  content: "-";
  font-size: 1.6rem;
  font-weight: bold;
  width: 2.8rem;
  height: 2.8rem;
  line-height: 2.2rem;
  text-align: center;
  border: 2px solid #B83C3C;
  border-radius: 50%;
  color: #fff;
  margin-left: auto;
  background: #B83C3C;
}

/* Default border (closed) */
.sec-7 .accordion-item {
  border: 1px solid #E1D6D6;
  transition: border-color 0.25s ease;
}

/* Red border when open */
.sec-7 .accordion-item.is-open {
  border-color: #B83C3C;
  /*box-shadow: inset 1px 3px 4px #ccc;*/
}

.sec-7 .accordion-item h5 {
  text-shadow: none !important;
}

/* Shadow ONLY when accordion is open */
.sec-7 .accordion-item.is-open h5 {
  text-shadow: 1px 3px 4px #ccc !important;
}

.body-usage-section {
    background: #B84242;
}

.white-bg{
  background: #fff;
}
.mob-bg{
  background: #fff;
}

.body-usage-section .section-title {
  font-size: 4.7rem;
  font-weight: 700;
  color: #000;
}

/* IMAGE + TEXT */
.usage-item p {
  margin-top: 1.2rem;
  font-weight: 700;
  font-size: 2.2rem;
}

/* CIRCLE IMAGE */
.usage-img {
  width: 24rem;
  height: 24rem;
  margin: 0 auto;
  /* border-radius: 50%; */
  /* border: 3px solid #C93333; */
  /* padding: 6px; */
  /* background: #fff; */
  position: relative;
  z-index: 2;
}

.usage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* ===============================
   CONNECTOR LINE + NOTCH
   =============================== */

.usage-col {
  position: relative;
  padding-bottom: 6rem;
}

/* vertical line */
.usage-col::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 97%;
  transform: translateX(-50%);
  width: 1px;
  height: 6.8rem;
  background: #e5e5e5;
  z-index: 1;
}

/* white notch above CTA */
.usage-col::before {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 97%;
  transform: translateX(-50%);
  width: 2.2rem;
  height: 2.2rem;
  background: #B84242;
  border-radius: 12px 12px 12px 12px;
  z-index: 3;
}

/* ===============================
   CTA BAR
   =============================== */

.cta-bar {
  background-color: #B84242;
  padding: 4rem 1.5rem 6rem;
  margin-top: -1px;
  position: relative;
}

.cta-text {
  color: #fff;
  font-size: 2.1rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

/* CTA BUTTON */
.cta-btn {
  background-color: #1DB954;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 1.4rem 3.6rem;
  border-radius: 6px;
  box-shadow: 0 6px 0 #128a3e;
  transition: all 0.2s ease;
}

.cta-btn:hover {
  background-color: #17a64a;
  color: #fff;
  transform: translateY(2px);
  box-shadow: 0 4px 0 #128a3e;
}

/* CTA NOTE */
.cta-note {
  font-size: 0.85rem;
  color: #000;
  margin-top: 0.8rem;
}
.last-box::before,
  .last-box::after {
    display: none;
  }

/* ===============================
   MOBILE CLEANUP
   =============================== */

@media (max-width: 767px) {
  .usage-col::before,
  .usage-col::after {
    display: none;
  }

  .usage-img {
    width: 14rem;
    height: 14rem;
  }
}




.title2 span {
  color: #B32E2E;
  font-weight: 700;
}

.title2 {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 7.5rem;
}

/* TABLE */
.comparison-table {
  display: flex;
  justify-content: center;
  /* gap: 5px; */
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

/* FEATURES */
.comparison-table .features {
  background: #fdeeee;
  padding: 1rem 0;
  border-radius: 1.4rem 0 0px 1.4rem;
  width: 26.4rem;
}

.comparison-table .feature {
  padding: 0.4rem 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  text-align: left;
  display: block;
  font-size: 1.4rem;
}

.feature:last-child {
  border-bottom: none;
}

/* PRODUCT COLUMNS */
.product {
  width: 16rem;
  border-radius: 1.8rem;
  padding-top: 7rem;
  position: relative;
  margin-right: 0.5rem;
}

.bodybliss {
  background: #d84b4b;
}

.competitor {
  background: #e2e2e2;
  padding-top: 0px;
}

/* IMAGES */
.product-img {
  position: absolute;
  top: -6.5rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 11.9rem;
}

/* LABEL */
.label {
  display: inline-block;
  background: #222;
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 2rem;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

/* ICONS */
.icon {
  height: 5.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #ffffff96;
}

.icon::before {
  content: "";
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
}

.icon.yes::before {
    content: "ÃƒÂ¢Ã…â€œÃ¢â‚¬Å“";
    background: #2ecc71;
}

.icon.no::before {
    content: "ÃƒÂ¢Ã…â€œÃ¢â‚¬Â¢";
    background: #e74c3c;
}

/* CTA */
.order-btn {
  background: #2ecc71;
  color: #fff;
  padding: 1.6rem 4rem;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(46,204,113,0.35);
}

.order-btn:hover {
  background: #27ae60;
}

/* NOTE */
.note {
  font-size: 1.4rem;
  color: #444;
}

.dot {
  width: 0.8rem;
  height: 0.8rem;
  display: inline-block;
  border-radius: 50%;
}

.dot.green { background: #2ecc71; }
.dot.red { background: #e74c3c; }
.product-img2 {
    position: absolute;
    top: -11.5rem;
    left: 50%;
    transform: translateX(-50%);
    max-width: 8rem;
}
.top-spece{
  margin-top:-1rem;
}

/* ===========================
   GUARANTEE SECTION
=========================== */

.guarantee-box {
  background-image: image-set(
    url("../../images/new-int-images/gurentee-bg.jpg") 1x,
    url("../../images/new-int-images/gurentee-bg@2x.jpg") 2x,
    url("../../images/new-int-images/gurentee-bg@3x.jpg") 3x
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding:4rem;
  color: #fff;
  position: relative;
  border-radius: 2rem;
  margin-bottom: 3rem;
}

/* subtle texture */


/* keep content above texture */
.guarantee-box > * {
  position: relative;
  z-index: 2;
}

/* TEXT */
.guarantee-box h2 {
  font-size: 4.5rem;
  font-weight: 600;
  padding-bottom: 1.5rem;
}

.guarantee-box p {
  font-size: 1.8rem;
  line-height: 1.6;
  /* opacity: 0.95; */
  padding-bottom: 1rem;
}

/* ===========================
   BADGE
=========================== */

.guarantee-badge {
  width: auto;
  position: relative;
}

.guarantee-badge .top {
  font-size: 1.1rem;
  margin-top: 1.4rem;
  display: block;
}

.guarantee-badge .day {
  font-size: 4.2rem;
  line-height: 1;
  display: block;
}

.guarantee-badge .bottom {
  font-size: 1.4rem;
  display: block;
}

.guarantee-badge .ring-text {
  position: absolute;
  bottom: -2rem;
  width: 100%;
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

/* ===========================
   CTA
=========================== */

.guarantee-btn {
  display: inline-block;
  background: #27c443;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  padding: 1.4rem 3.6rem;
  border-radius: 1rem;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(39,196,67,0.45);
}

.guarantee-btn:hover {
  background: #21ad3a;
  color: #fff;
}

/* META */
.guarantee-meta {
  font-size: 1.4rem;
  margin-top: 0.6rem;
}

.green-dot {
  width: 0.8rem;
  height: 0.8rem;
  background: #27c443;
  display: inline-block;
  border-radius: 50%;
  margin-right: 6rem;
}

.divider {
  margin: 0 0.8rem;;
}

.red {
  color: #e53935;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 768px) {
  .guarantee-box {
    padding: 2.5rem;
    text-align: center;
  }

  

  
}

.pd-right{
  padding-left: 4rem;
}





/* =========================
   REVIEWS SECTION
========================= */
.reviews-section{
    padding-top: 4rem;padding-bottom: 0rem;
}
.reviews-title {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.15;
}

.reviews-title span {
  color: #b32e2e;
}

.reviews-sub {
  max-width: 82rem;
  margin: 1rem auto 0;
  font-size: 1.7rem;
  color: #000;
  margin-bottom: 5rem;
}

/* LEFT RATING LIST */
.rating-list {
  font-size: 1.4rem;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  /* margin-bottom: 8px; */
  padding: 0.8rem 0;
  border-bottom: 1px solid #E1E1E1;
  font-size: 1.4rem;
  color: #000;
  font-weight: 400;
}

.rating-row span:first-child {
  width: 65%;
}

.stars {
  color: #1abc72;
  /* font-size: 14px; */
  /* letter-spacing: 2px; */
  width: 25%;
}

.stars.big {
  font-size: 2rem;
}

.score {
  font-size: 1.3rem;
  color: #333;    text-align: right;width: 10%;
}

/* CENTER SCORE */
.overall-score {
  font-size: 8.2rem;
  font-weight: 800;
  line-height: 1;
  padding-bottom: 1rem;
}

.based {
  font-size: 1.5rem;
  color: #000;
  padding-top: 1.5rem;
}

/* IMAGE GRID */
.review-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}

.review-images img {
  width: 100%;
  border-radius: 0.6rem;
  object-fit: cover;
}

/* REVIEW CARDS */
.review-card {
  background: #fff;
  border-radius: 1rem;
  padding: 0;
  box-shadow: 0 6px 9px rgba(0,0,0,0.08);
  height: 100%;
}

.review-card img {
  width: 100%;
  border-radius: 8px 8px 0 0;
  margin-bottom: 0.4rem;
}

.review-card h6 {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.review-card h6 span {
  color: #1BBA85;
  font-size: 1.4rem;
  font-weight: 400;
  margin-left: 0.5rem;
}

.review-card p {
  font-size: 1.6rem;
  color: #000;
  margin-top: 0.6rem;
  line-height: 2.5rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  

  .review-images {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 2rem;
  }
}
.review-card-con{
  width: 100%;
  padding: 1.5rem;
}

.stars-new{
  width: 35%;
  margin-bottom: 1rem;
}
.stars-new img{
  border-radius: 0;
  margin: 0;
}
.mb-50{
  margin-bottom: 4rem;
}





/* SECTION */
.faq-section {
  background: #FFF8F1;
  padding: 4rem 0;
  margin-top: 7rem;
}

/* TITLE */
.faq-title {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.2;
}

.faq-title span {
  color: #c0392b;
}

/* ACCORDION WRAPPER */
.faq-accordion {
  max-width: 82rem;
  margin: auto;
}

/* ITEM */
.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 1.8rem;
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* BUTTON */
.faq-accordion .accordion-button {
  background: #fff;
  font-weight: 700;
  font-size: 1.7rem;
  padding: 1.8rem 2.2rem;
  border-radius: 1rem;
  box-shadow: none;
  position: relative;
}

/* REMOVE DEFAULT BOOTSTRAP ARROW */
.faq-accordion .accordion-button::after {
  display: none;
}

/* PLUS ICON (CLOSED) */
.faq-accordion .accordion-button::before {
  content: "+";
  position: absolute;
  right: 2.2rem;
  font-size: 2.2rem;
  color: #c0392b;
  transition: 0.2s;
}

/* OPEN STATE */
.faq-accordion .accordion-button:not(.collapsed) {
  box-shadow: 0 1rem 2.5rem rgba(0,0,0,0.08);
  border: 1px solid #c0392b;
}

/* MINUS ICON (OPEN) */
.faq-accordion .accordion-button:not(.collapsed)::before {
  content: "-";
}

/* BODY */
.faq-accordion .accordion-body {
  font-size: 1.6rem;
  color: #000;
  padding: 0 4rem 1.7rem 2.2rem;
  line-height: 2.6rem;
  font-weight: 400;
}

/* REMOVE BLUE FOCUS */
.accordion-button:focus {
  box-shadow: none;
}


.faq-section .faq-accordion .accordion-button:not(.collapsed) {
    box-shadow: none;
    border: 0;
    color: #000;
    font-size: 1.8rem;
}




.footer-container {
    background-color: #ffffff;
    
}

.footer-links .nav-link {
    color: #3A3A3A; /* Muted gray */
    font-size: 1.6rem;
    font-weight: 500;
    display: inline-block;
    transition: color 0.2s ease;
}

.footer-links .nav-link:hover {
    color: #333333;
}

.footer-links .divider {
    color: #3A3A3A;
    font-size: 1.4rem;
    padding: 0 0.5rem;
    margin: 0;
}

.copyright-text p {
    color: #3a3a3a;
    font-size: 1.5rem;
}


.footer-logo {
    display: flex;
    justify-content: center;
}
.custom-navbar .navbar-toggler-icon{
  width: auto;
  height: auto;
  font-size: 3rem;
}

.custom-navbar .navbar-nav{
  margin-top: 2rem;
  margin-left: 1rem;
}

.custom-navbar .navbar-nav .nav-item{
  padding: 0 0 1rem;
}

.mob-hero-sec{
  display: none;
  width: 100%;
}
.mob-hero-top{
  background: #BA474C;
  text-align: center;
  padding: 2rem 0;
}
.mob-hero-banner{
  width: 100%;
  position: relative;
}
.day-badge {
    position: absolute;
    right: 2rem;
    top: 3rem;
}
.mob-hero-bg{
  background-image: image-set(
    url("../../images/new-int-images/mob-hero-bg.jpg") 1x,
    url("../../images/new-int-images/mob-hero-bg@2x.jpg") 2x,
    url("../../images/new-int-images/mob-hero-bg@3x.jpg") 3x
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem 2.2rem 2rem;
}
.mob-block{
  display: none!important;
}
.mob-sec-3{
  border-top: 1px solid #D8D8D8;
  padding: 3rem 0;
  margin-top: -5rem;
}






:root {
  --row-height: 86rem;
}

/* ================= WRAPPER ================= */
.comparison-wrap {
  max-width: 90rem;
  position: relative;
}

/* ================= FEATURE COLUMN ================= */
.feature-col {
  background: #fdeeee;
  border-radius: 2rem 0 0 2rem;
  overflow: hidden;

  /* KEY FIX: push feature panel down */
  margin-top: 5.5rem;
}

/* rows */
.feature-row {
  height: 7.8rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  border-bottom: 1px solid rgba(255,255,255,0.7);
}

.feature-row.last {
  border-bottom: none;
  /* margin-top: 24px; */
}

.feature-row h6 {
  font-weight: 700;
  margin-bottom: 0.4rem;
  text-align: left;
  font-size: 1.2rem;
  color: #000;
}

.feature-row p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.35;
  text-align: left;
  font-weight: 500;
  color: #000;
}

/* ================= COMPARE COLUMNS ================= */
.compare-col {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1.2rem;
}

/* BodyBliss is higher */
.compare-col.bodybliss {
  background: #d94c4c;
  padding-top: 12rem;
}

/* Others is lower (matches feature panel top) */
.compare-col.others {
  background: #e0e0e0;
  padding-top: 16.5rem;
}

/* ================= COLUMN HEAD ================= */
.compare-head {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.compare-col.bodybliss .compare-head {
  top: 2.4rem;
}

.compare-col.others .compare-head {
  top: 4.1rem;
}

.compare-head img {
  width: 7rem;
  margin-bottom: 0.5rem;
}

.compare-head span {
  display: inline-block;
  padding: 0.5rem 1.4rem;
  background: #111;
  color: #fff;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* ================= ROW ICONS ================= */
.compare-row {
  height: 7.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #ffffff75;
  /* padding: 29px 0; */
}

/* icons */
.compare-row i {
    width: 3rem;
    height: 3.2rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
}

/* inject symbols */
.compare-row i.check::before { content: "ÃƒÂ¢Ã…â€œÃ¢â‚¬Å“";}
.compare-row i.cross::before { content: "ÃƒÂ¢Ã…â€œÃ¢â‚¬Â¢"; }

.check { background: #1ec86b; }
.cross { background: #e53935; }
.green { background: #1ec86b; }

/* ================= MOBILE ================= */
@media (max-width: 767px) {
  :root {
    --row-height: 7.8rem;
  }

  .feature-col {
    margin-top: 7.5rem;
  }

  .compare-col.bodybliss {
    padding-top: 6.6rem;
  }

  .compare-col.others {
    padding-top: 2.2rem;
    margin-top: 4.4rem
  }

  .compare-head img {
    width: 6.6rem;
  }
}



.s4CompBox {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    max-width: 100rem;
    margin-top: 17rem;
    margin-bottom: 7rem;
    background: #ffeeee;
    border-radius: 1.6rem;
}
.compCol1 {
    float: left;
    width: 39%;
    padding: 1.5rem 0;
    position: relative;
}
.compCol1 ul {
    float: left;
    width: 100%;
}
.compCol1 ul li {
    float: left;
    width: 100%;
    height: 7rem;
    text-align: left;
    font-size: 1.6rem;
    line-height: 2.6rem;
    color: #000;
    font-weight: 400;
    padding: 1rem 0 1rem 3rem;
    position: relative;
    border-bottom: 1px solid #fff;
    letter-spacing: 0.5px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.compCol1 ul li span {
    font-weight: 700;
    float: left;
    width: 100%;
    font-size: 1.7rem;
}
.show-tab, .show-mob {
    display: none;
}

.compCol2 {
    float: left;
    width: 20%;
    background: #d84d4f;
    border-radius: 2rem;
    margin: -13rem 0.4rem 0 0;
    padding-bottom: 1.5rem;
}
.compCol2Top {
    float: left;
    width: 100%;
    height: 14.5rem;
}
.compCol2Prod {
    display: block;
    margin: -10rem auto 0.6rem;
    max-width: 100%;
}
.compCol2Top p, .compCol3Top p, .compCol4top p {
    display: inline-block;
    vertical-align: middle;
    font-size: 2rem;
    line-height: 2.2rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.3px;
    background: #252525;
    padding: 0.6rem 1.5rem;
    border-radius: 5rem;
}
.compCol2 ul {
    float: left;
    width: 100%;
}
.compCol2 ul li {
    float: left;
    width: 100%;
    height: 7rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.compCol2 ul li img {
    display: inline-block;
    vertical-align: middle;
    margin: 1.7rem auto 0;
}
.compCol3 {
    background: #dbdbdb;
    margin: -3rem 0.4rem 0 0;
}
.compCol3 .compCol2Top, .compCol4 .compCol2Top {
    border-radius: 2rem 2rem 0 0;
    height: 4.5rem;
}
.compCol3Prod {
    display: block;
    margin: -16.8rem auto 1rem;
    max-width: 100%;
}
.compCol3 ul li, .compCol4 ul li {
    border-bottom: 1px solid #eee;
}
.compCol4 {
    background: #dbdbdb;
    margin-right: 0;
    margin: -3rem 0 0 0;
}
.compCol3 .compCol2Top, .compCol4 .compCol2Top {
    border-radius: 2rem 2rem 0 0;
    height: 4.5rem;
}
.compCol3Top p.compOther {
    display: none;
}
.compCol2Top p, .compCol3Top p, .compCol4top p {
    display: inline-block;
    vertical-align: middle;
    font-size: 2rem;
    line-height: 2.2rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.3px;
    background: #252525;
    padding: 0.6rem 1.5rem;
    border-radius: 5rem;
}
.compCol4Prod {
    display: block;
    margin: -16.1rem auto 1rem;
    max-width: 100%;
}
.compCol1 ul li:last-child {
    border-bottom: none;
}
.compCol2 ul li:last-child {
    border-bottom: none;
}


.s2Col {
    width:100%;
    padding: 0 3rem;
}
.s2ColLeft {
    background: url(../../images/new-int-images/s2-bnft1.jpg) no-repeat center 2.5rem;
    display: inline-block;
}
.s2ColInner {
    float: left;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.s2ColHeadSec {
    float: left;
    width: 100%;
    padding: 0 10rem 0 3.5rem;
    height: 34.6rem;
    position: relative;
}
.s2ColName {
    position: absolute;
    top: -0.8rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.4rem;
    line-height: 1.4rem;
    font-weight: normal;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: #b74243;
    padding: 0 2rem;
}
.s2colHead {
    float: left;
    width: 100%;
    font-size: 3.2rem;
    line-height: 3.8rem;
    font-weight: bold;
    color: #b74243;
    letter-spacing: 0.3px;
    text-align: left;
    margin-top: 6.5rem;
}
.s2ColAbout {
    float: left;
    width: 100%;
    background: #fff8f1;
    padding: 3rem 7rem 0 3rem;
    position: relative;
    text-align: left;
}
.s2ColAbout img {
    position: absolute;
    right: 2.5rem;
    top: -3.5rem;
    border-radius: 50%;
}
.commonText {
    float: left;
    width: 100%;
    font-size: 1.7rem;
    line-height: 2.4rem;
    font-weight: 500;
    color: #000;
    letter-spacing: 0.3px;
    margin-top: 3rem;
}
.s2ColAbout .commonText {
    margin-top: 0;
}

.s2ColRight {
    background: url(../../images/new-int-images/s2-bnft2.jpg) no-repeat center 2.5rem;
    display: inline-block;
}
.s2ColRight .s2ColInner .s2ColHeadSec {
    padding: 0px 12rem 0 3.5rem;
}
.knee-box-dektop{
  width: 100%;
}
































@media screen and (min-width: 1400px) {
.hexagon{
      width: 29.3rem;
}
.product-visual {
    width: 37.3rem;
    bottom: -3rem;
}
.cupping-therapy{padding: 6rem 0;}
.desc{    margin-bottom: 2.4rem;}
.sec-7::before{
    width: 43rem;
    height: 45rem;
}
.sec-7::after{
    width: 45rem;
    height: 43rem;
}
}



@media screen and (min-width: 1600px) {
  html {
  font-size: 68%;
} 
.product-visual {
    width: 39.3rem;
    bottom: -5rem;
}
.main-title, .meet-title {
      font-size: 6rem;
}
.desc {
    margin-bottom: 3.5rem;
}
.s2ColLeft, .s2ColRight{background-size: cover;}
.sec-7 .feature-description{    padding-left: 4.5rem}
}

@media screen and (min-width:1800px) {
  html {
  font-size: 72%; 
}  
 .section-container{    width: 43.3rem;}  
    .hexagon {
        width: 32.3rem;
    }  
  .product-visual{        right: -9.7rem;} 
    .sec-7::before {
        width: 48rem;
        height: 50rem;
    }
        .sec-7::after {
        width: 53rem;
        height: 47rem;
    }
    .section-wrap{margin-top: -23rem;}
}

@media screen and (min-width:2000px) {
  html {
  font-size: 74%; 
}
.sec-7 .feature-description {
    padding-left: 4rem;
}
}

@media screen and (min-width:2200px) {
  html {
  font-size: 76%; 
}     
}

@media screen and (min-width:2400px) {
  html {
  font-size: 82%; 
}     
.section-wrap{margin-top: -21rem;}
}

@media screen and (min-width:2600px) {
  html {
  font-size: 84%; 
}  
.section-wrap{margin-top: -20rem;}   
}

@media screen and (min-width:2800px) {
  html {
  font-size: 86%; 
}     
}

@media screen and (min-width:3000px) {
  html {
  font-size: 88%; 
}     
}

@media screen and (min-width:3200px) {
  html {
  font-size: 90%; 
}     
}

@media screen and (min-width:3400px) {
  html {
  font-size: 92%; 
}

}


@media screen and (min-width:3600px) {
  html {
  font-size: 94%; 
} 

}

@media screen and (max-width: 1400px) {

}

@media (min-width:1400px) and (max-width:1600px){
.section-wrap{    margin-top: -25rem;}
}
@media screen and (max-width: 1200px) {

}


@media screen and (max-width:1250px) and (orientation: landscape){
.sec-7::before {
    width: 30rem;
    height: 32rem;
}
.sec-7::after {
    width: 30rem;
    height: 30rem;
}
}



@media (min-width:992px) and (max-width:1200px){
.custom-navbar{    padding: 1.4rem 4rem;  }
.hero-left{padding-left: 5rem;}
.hero-left-wrap, .hero-right{min-height: unset;  }
.section-container{width: 22.3rem;}
.hexagon {    width: 21.3rem;}
.section-description {
    font-size: 1.4rem;
    line-height: 1.2;
}
.meet-title, .main-title{    font-size: 4rem;}
.knee-box-dektop {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.knee-box-dektop img{
      height: 100%;
    object-fit: cover;
}
.s2colHead{    font-size: 2.5rem;}
.sec-7::before {
        width: 22rem;
        height: 26rem;
    }
.sec-7::after {
    width: 24rem;
    height: 26rem;
}
.usage-img {    width: 20rem;
    height: 20rem;}
}

@media (min-width:768px) and (max-width:992px){
 .pill{font-size: 5.5rem;} 
.mob-hero-top h1{margin-bottom: 2rem}
 .mob-hero-bg{position: relative;}  
 .mob-hero-bg{padding-top: 8rem}
    .mob-prod {
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        top: -12%;
        text-align: center;
    }
    .feature-section .mob-none {
        display: none !important;
    }
    .feature-section .mob-block {
        display: block !important;
    }
    .sec-6 {
        padding: 22rem 1rem 6rem !important;
    }
    .compCol1 ul li p{font-size: 1.3rem}
    .compCol1 ul li span{    font-size: 1.5rem;}
    .guarantee-box h2{    font-size: 3.5rem;}
    .stars{    width: 40%;}
}
@media only screen and (max-width:992px) {
   .hexagon {
    width: 18.2rem;
    height: 29.2rem;
    padding: 7.5rem 3.7rem 0;
}
.circle {
    width: 8.3rem;
    margin: -10.1rem auto -1rem;
}
.section-description{
  font-size: 1.1rem;
}
.feature-section .section-title {
    margin-bottom: 0.3rem;
    margin-top: -3.7rem;
    font-size: 1.7rem;
}
.image-wrap img{
  width: 100%;
}
.product-visual {
    bottom: -5.1rem;
    right: -0.5rem;
}
.content-inner{
  max-width: 100%;
}

.complete-cta{
  margin:0 auto;
}
.s2ColLeft{
  background-size: cover;
}
.s2ColAbout{
  padding-bottom: 3rem;
}
.s2ColRight{
  background-size: cover;
}
.sec-6 {
    margin-top: -19.3rem;
    padding: 18rem 1rem 6rem;
}
.sec-7::before{
      display: none;
    }
    .sec-7::after{
      display: none;
    }

    .usage-img{
      width: auto;
      height: auto;
    }

.compCol2Top p, .compCol3Top p, .compCol4top p {
    font-size: 1.6rem;

}
.compCol2{
  width: 19%;
}

.plus{
  width: 5rem;
    height: 3rem;
}
.hero-main{
    display: none;
  }
 .mob-hero-sec{
    display: block;
  }

.hero-strip{
  text-align: center;
}
.mob-hero-top {
    padding: 4rem 0;
}
.hero-desc{
    width: 100%;
}

}

@media screen and (max-width:767px) {
.mb-feature{
    display: flex;justify-content: center;align-items: center;
}
  .mob-hero-top {
    padding: 2rem 0;
}
 
  .hero-rating{
    font-size: 1.3rem;
  }
  .pill{
    font-size: 3.5rem;
  }
  .pill.yellow {
    font-size: 3.6rem;
    padding: 0px 1.5rem;
}
.mob-hero-sec h2 {
    font-size: 3.4rem;
    color: #fff;
    margin-bottom: 0rem;
    font-weight: 700;
}
.mob-hero-sec h1 {
  margin-bottom: 1rem;font-weight: 700;
}
.hero-strip {
    padding: 0.6rem 0.8rem;
    font-size: 2rem;
    margin-bottom: 0;
    text-align: center;
}

.hero-desc {
    font-size: 1.6rem;
    line-height: 2.5rem;
    width: 100%;
}
.hero-list li {
    font-size: 1.6rem;
}
.hero-btn {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    justify-content: center;
    padding: 1.3rem 2.5rem;
}
.info-strip{
  font-size: 1.1rem;
  justify-content: center;
}
.testimonial-box{
  padding: 1.4rem 0px 0;
}
.testimonial-text{
  font-size: 1.2rem;
}
.testimonial-user .name{
  font-size: 1.4rem;
}
.testimonial-user .verified{
  font-size: 1.1rem;
}
.main-title{
  font-size: 2.2rem;
  margin-bottom: 0;
}
.section-container{
  width: auto;
  height: auto;
}

.hexagon {
    width: 100%;
    height: 34.7rem;
    padding: 2.5rem 2.7rem 0;
    margin-top: -2.5rem;
}
.circle {
    width: 7.4rem;
    height: 7.4rem;
    margin: 1.2rem auto 0.1rem;
}

.feature-section .section-title{
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
  margin-top: 0;
}
.section-description {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.9rem;
}
.curve-bpx-top{
  margin-top: -8rem;
}
.feature-section {
        padding-bottom: 0;
        padding-top: 2rem;
    }
.mob-none{
  display: none!important;
}
.mob-block{
  display: block!important;
}
.meet-title{
  font-size: 2.8rem;
  margin-bottom: 0rem;
}
.main-title2{
  font-weight: 700;
  line-height: 3.3rem;
  margin-bottom: 1rem;
  font-size: 2.8rem;
}
.product-visual {
    width: 18.6rem;
    bottom: -3.6rem;
    right: 1rem;
}
.top-heading {
    padding: 0 1.5rem;
}
.content-wrap {
    padding: 5rem 1.5rem 0;
}
.desc {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    .product-section .feature{
      display:block;
      text-align: center; 
    }
    .feature img {
    width: 70%;
}
.highlight-text {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
.features-row {
    margin: 2.5rem 0 0;justify-content: center;
}
.cupping-therapy h2 {
    font-size: 3.3rem;
    line-height: 4.1rem;
    margin-bottom: 3rem;
}
.product3-img {
    margin-bottom: 1rem;
}
.feature-card{
  margin-bottom: 3rem;
}

.section-wrap{
background: linear-gradient(to bottom, #b84242 0%, #b84242 29%, #b84242 71%, #b84242 71%, #b84242 71%, #ffffff 71%, #b84242 71%, #ffffff 71%);

}

    .icon-box {
        width: 30rem;
        height: 5rem;
        border-radius: 1.4rem;
    }
  .icon-box img {
    width: 3rem;
}
.sec-6{padding-bottom: 3rem;}
.women-img{
    max-width: 80%;margin:0 auto;display: block;height: auto;
}
.feature-list h6{
  font-size: 2rem;
}
.feature-list p{
  font-size: 1.6rem;
}
.sec-7 h2{
  font-size: 2.8rem;
}
.sec-7 h3{
  font-size: 2.8rem;
}
.subtitle{
  font-size: 1.6rem;
}
.sec-7 {
  padding: 3rem 0;
}

.sec-7::before{
  display: none;
}
.sec-7::after{
  display: none;
}

.sec-7 .accordion-body{
  display: block;
}

.sec-7 .feature-description {
    padding-right: 0;
    padding-left: 0;
    width: 100%
}

.img-shadow {
    border-radius: 1.3rem;
    margin-right: 0;
    width: 100%;
}
.sec-7 .accordion-item h5{
  font-size: 2rem;
  padding-right: 2.1rem;
}
.body-usage-section{
  background: #B84242;
  padding: 0 1.5rem;
}
.mob-bg{
  background: #fff;
}
.body-usage-section .section-title{
  font-size: 2.1rem;
}


.usage-item p {
    margin-top: 1.2rem;
    font-size: 1.5rem;
}
.cta-text{
  font-size: 1.7rem;
}
.cta-bar{
  background: none;
  padding: 3rem 0rem;
}
.complete-cta2{
        width: 100%;
}
.comparison-section .complete-cta2.mob-wdth{
    max-width: 99% !important;
}
.meta {
  font-size: 1.1rem;
}


.footer-links .nav-link{
  font-size: 1.2rem;
}
.copyright-text p{
  font-size: 1.2rem;
}
.faq-accordion .accordion-button {
  font-size: 1.6rem;
}

.faq-accordion .accordion-button::before{
      right: 1.2rem;
}
.faq-section .faq-accordion .accordion-button:not(.collapsed) {
    font-size: 1.5rem;
}
.faq-accordion .accordion-button{
  padding: 1.8rem 7rem 1.5rem 2rem;
}

.faq-accordion .accordion-body{
font-size: 1.6rem;
padding: 0 2.2rem 1.8rem 2.2rem;
}

.faq-section {
    padding: 4rem 1rem; margin-top: 4.5rem;
}
.faq-title{
  font-size: 2.7rem;
  line-height: 3.7rem;
}

.reviews-title {
  font-size: 2.8rem;
  font-weight: 800;
}
.reviews-sub{
  font-size: 1.6rem;
}
.reviews-section {
    padding: 1.2rem 0 0rem;
}
.review-card-con {
    padding: 1.5rem 1.5rem 3rem;
}

.guarantee-badge {
    width: 50%;
    margin: 0 auto 2rem;
}
.pd-right{
  padding-left: 0;
}
.guarantee-box h2{
  font-size: 2.3rem;
  line-height: 3.2rem
}
.guarantee-box p{
  font-size: 1.6rem;
}
.title2{
  font-size: 2.8rem;
}

.other-tag{
  position: relative;
  top: -6.1rem;
}
.other-img2{
  width: 4.5rem!important;
}
.mob-wdth{
      max-width: 33.7rem!important;
}

.compare-row.last{
  border:0;
}
.promo-text {
    font-size: 0.8rem;
    }

    .s4CompBox {
        margin: 4.7rem 0 4rem;
    }
    .compCol1 {
        width: 56%;
        padding: 0 5rem 0 0;
    }
        .compCol1 ul li {
        padding: 0 0 0 1.5rem;
        font-size: 1.3rem;
        line-height: 1.7rem;
    }
    .compCol2 {
        margin: -5.5rem 0.2rem 0 0;
        width: 20%;
        border-radius: 1rem;
    }
    .compCol2Top {
        height: 5.5rem;
    }
    .compCol2Prod {
        margin: -4.5rem auto 0;
        width: 6.5rem;
    }
        .compCol2Top p {
        font-size: 1.1rem;
        line-height: 1.7rem;
        padding: 0.3rem 0.7rem;
    }
    .compCol2 ul li img {
        margin: 2rem auto 0;
        width: 2.8rem;
    }
    .compCol3 {
        margin: -2.5rem 0px 0 0;
    }
        .compCol3 .compCol2Top {
        height: 2.5rem;
    }
        .compCol3Prod {
        margin: -6.7rem auto 0.5rem;
        width: 4.5rem;
    }
    .compCol3Top p, .compCol4top p {
        display: none;
    }
        .compCol3Top p.compOther {
        display: inline-block;
        vertical-align: middle;
        font-size: 1.1rem;
        line-height: 1.7rem;
        padding: 0.3rem 0.7rem;
    }
        .hide-mob {
        display: none;
    }
    .s2colHead{
      font-size: 2.4rem;
    }
    .s2ColAbout{
      padding-bottom: 3rem;
    }
    .compCol1 ul li span {
    font-size: 1.1rem;
}
.promo-code{
  margin: 0;
}
    .s2ColLeft {
        background: url(../../images/new-int-images/s2-bnft1.jpg) no-repeat center 3.9rem;
    }
    .s2ColRight{
      background: url(../../images/new-int-images/s2-bnft2.jpg) no-repeat center 2.5rem;
    }
.custom-navbar {
    background-color: #FEEFEA;
    padding: 0.5rem 1.8rem;
}
    
.day-badge img{max-height: 10rem}
.mob-hero-banner{
      height: 260px;
}
.mob-hero-banner img{
      width: 100%;
    height: 100%;
    object-fit: cover;
}
 .mob-hero-bg{position: relative;}  
 .mob-hero-bg{padding-top: 8rem}
.mob-prod {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -12%;
    text-align: center;
}
.mob-prod img{max-height: 135px}
.testimonial-avatar{
      width: 15%;
}
.mob-sec-3{
  padding: 3rem 0 1.5rem;
}
.s2ColHeadSec{
      padding: 0 3rem 0 2.5rem;
}
.s2ColRight .s2ColInner .s2ColHeadSec {
    padding: 0px 10rem 0 2.5rem;
}
.usage-col{    padding-bottom: 3rem;}
.rating-list {
        padding-top: 2rem;
        padding-bottom: 1.5rem;
    }
.section-wrap{
        margin-top: -15rem;    padding: 12.5rem 0 0;
}
}



@media screen and (max-width:380px){

  .hero-strip{
    font-size: 1.8rem;
  }
      .s2colHead {
        font-size: 2.2rem;
        line-height: 2.7rem;
    }

    .s2ColAbout {
    padding: 3rem;
  }
  .commonText{
    font-size: 1.3rem;
  }
  .feature-section .section-title, .section-description{
    font-size: 1.3rem;
  }
  .feature span{    font-size: 1.3rem;}
  .s2ColName{    font-size: 1.2rem;}

}

@media screen and (max-width:360px){
.hero-rating {
        font-size: 1.2rem;
    }
      .hero-strip {
        font-size: 1.6rem;
    }
    .hero-btn{
      font-size: 1.6rem;
    }
    .info-strip{        font-size: 0.8rem;}
    .hexagon{        height: 32.7rem;}
    .feature-section .section-title, .section-description {
        font-size: 1.2rem;
        line-height: 1.5rem;
    }
    .s2ColName{    font-size: 1rem;}

}

/* seasonal banner css */
.banner {
  text-align: center;
  color: white;
  padding: 0 !important;
  font-family: 'Inter', sans-serif;
}

.banner .top-bar {
  background-color: #000000;
  padding: 15px 0;
}

.banner .top-bar p {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}

.banner .bottom-bar {
    background-color: #acf4a1;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner .order-text {
  color: black;
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}

.banner .code {
  display: inline-block;
  background-color: black;
  color: white;
  padding: 5px 24px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  margin-left: 8px;
  margin-right: 8px;
}

.yellow-text {
  color: #acf4a1;
}

.fw-normal {
  font-weight: 400;
}

.banner .timer {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 13px;
  margin-left: 10px;
  margin-right: 10px;
}

.timer div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.timer .box {
  background-color: black;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  width: 32px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.timer .label {
  font-size: 12px;
  color: black;
  font-weight: 700;
  line-height: 20px;
}
.mobile-banner {
    display: none;
}
.desk-bnr-wrapper{font-family: 'Inter', sans-serif;}
.desk-bnr-wrapper .topbar{
    background-color: #010A0B;color: #fff;text-align: center;padding: 14px 10px;
}
.desk-bnr-wrapper .topbar p, .desk-bnr-wrapper .bottom-bar p {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}
.desk-bnr-wrapper .topbar p span{color: #ACF4A1;}
.desk-bnr-wrapper .topbar p img {
    max-height: 19px;
    width: auto;
    margin-top: -3px;
}
.desk-bnr-wrapper .bottom-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ACF4A1;
    padding: 9px 0;
}
.desk-bnr-wrapper .bottom-bar .code {
    display: inline-block;
    background-color: black;
    color: white;
    padding: 5px 10px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    margin-left: 8px;
    margin-right: 8px;
}
.desk-bnr-wrapper .bottom-bar .timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 0 8px;
}
 
@media only screen and (max-width:767px){
 .desk-bnr-wrapper .topbar p, .desk-bnr-wrapper .bottom-bar p {
    font-size: 16px;text-align: center;}   
.desk-bnr-wrapper .bottom-bar{
    flex-direction: column;
}
.desk-bnr-wrapper .bottom-bar .timer {    gap: 13px;}

  /* banner height modification */
  .banner .bottom-bar{flex-direction: column;}
      .desktop-banner {
        display: none;
    }
    .mobile-banner {
        display: block;
    }
    .desk-bnr-wrapper .topbar{
        padding: 6px 0;
    }
    .desk-bnr-wrapper .topbar p, .desk-bnr-wrapper .bottom-bar p, .banner.mobile-banner .bottom-bar p {
        font-size: 14px;
        line-height: 22px;
    }
    .desk-bnr-wrapper .bottom-bar, .banner.mobile-banner .bottom-bar {
        padding: 6px 10px;
    }
     .desk-bnr-wrapper .bottom-bar .code, .banner-new .code , .banner.mobile-banner .code{
        font-size: 14px;
        margin: 0 5px;
        padding: 5px 10px;
    }
    .banner-new .timer-wrapper, .banner.mobile-banner .timer-wrapper{
       margin-top: 5px;
    }
}
 
/* Cyber Monday banner css */
.desk-bnr-wrapper.cybr-monday-bnr .topbar{
    background-color: #002E7D;
}
.desk-bnr-wrapper.cybr-monday-bnr .topbar p span{color: #00FFEA;}
 
/* xmas sale banner css */
.desk-bnr-wrapper.xmas-tree-bnr .topbar{
    background-color: #A1090C;
}
.desk-bnr-wrapper.xmas-tree-bnr .topbar p span{color: #F8EC08;}
 
/* New year banner css */
.desk-bnr-wrapper.new-year-bnr .topbar p span{color: #F8EC08;}
.accordion-button:hover{ background: none;}