* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0px;
  padding: 0px;
  font-family: "Poppins", serif;
  font-size: 14px;
  font-weight: 400;
  counter-reset: section;
}

:root {
  --color1: black;
  --color2: #feefee;
  --color3: #191919;
  --color4: #f4f4f4;
  --color5: #fdefe0;
  --color6: #cda05c;
  --poppins: "Poppins", serif;
}
html {
  --top-spacing: 100px;
  scroll-padding-top: var(--top-spacing);
  scroll-behavior: smooth;
}

header {
  padding: 10px;
  background: black;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.container {
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

img {
  max-width: 100%;
  height: auto;
}

.error {
  color: red;
  font-size: 12px;
  display: none;
}

.text-center {
  text-align: center;
}

.space-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.bgimg {
  display: flex;
}

/* HEADER */
.header-main {
  background-color: var(--color1);
  padding: 10px 0px;

  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;

    .call-expt {
      font-size: 12px;
      line-height: 20px;
      color: #fff;
      background: var(--color6);
      /* border: 1px solid #fff; */
      padding: 10px 20px;
      border-radius: 20px;
      text-decoration: none;

      &.chat-what {
        background-color: #29a71a;
        border-color: #29a71a;
      }
    }
  }
}

/* BANNER */

.banner {
  background-color: var(--color2);
  padding-top: 15px;

  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;

    .caption-txt {
      width: 100%;

      .off-txt {
        border: 1px solid #945553;
        padding: 5px 10px;
        border-radius: 4px;
        font-size: 14px;
        line-height: 17px;
        color: #945553;
        display: inline-flex;

        strong {
          margin-right: 6px;
        }
      }

      .caption-heading {
        font-size: 25px;
        line-height: 28px;
        margin: 10px 0px;
        font-family: "Rajdhani", serif;
      }

      ul {
        margin: 0px;
        padding: 0px;
        list-style-type: none;

        li {
          position: relative;
          color: #945553;
          padding-left: 20px;
          font-weight: 600;

          &::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            background-image: url("./assets/acneservices/check-icon.webp");
            width: 17px;
            height: 17px;
            background-repeat: no-repeat;
          }
        }
      }
    }

    .hero-img {
      img {
        display: flex;
      }
    }
  }
}

/* BOOK-AN-APPOINTMENT */

.book-a-free {
  padding: 20px 0px;

  .container {
    display: flex;
    flex-direction: column;

    .content-non-surgical {
      ul {
        display: grid;
        grid-template-columns: auto auto;
        box-shadow: 0px 2px 15px 2px #00000026;
        padding: 20px;
        border-radius: 10px;

        li {
          border-right: 1px solid #4a4a4a0a;
          padding-right: 0px;
          padding-left: 30px;
          list-style-type: none;
          position: relative;
          padding-bottom: 8px;
          color: #313131;

          &:last-child {
            border-right: none;
          }

          &:nth-child(2) {
            border-right: none;
          }

          &::before {
            content: "";
            position: absolute;
            left: 5px;
            top: 5px;
            background-image: url(./assets/acneservices/check-icon.webp);
            width: 14px;
            height: 14px;
          }
        }
      }
    }

    form {
      background-color: var(--color3);
      padding: 25px;
      border-radius: 10px;
      font-size: 18px;
      line-height: 20px;
      color: #fff;

      .form-heading {
        text-align: center;
        margin-bottom: 15px;
      }

      input[type="date"]::-webkit-calendar-picker-indicator {
        background: 0 0;
        color: #fff0;
        cursor: pointer;
        height: auto;
        position: absolute;
        right: 0;
        top: 0;
        left: 0;
        bottom: 0;
        width: auto;
        -webkit-box-shadow: none;
        box-shadow: none;
      }

      input[type="date"] {
        font-size: 14px;
        position: relative;
        padding-right: 20px;
        width: 100% !important;
      }

      input[type="date"]::after {
        content: "📅";
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
      }

      .form-group {
        input,
        select {
          width: 100%;
          border-radius: 6px;
          min-height: 42px;
          height: 42px;
          padding-left: 15px;
          border: none;
          font-family: var(--poppins);
          margin-bottom: 12px;
          outline: none;
        }

        textarea {
          width: 100%;
          border-radius: 6px;
          min-height: 80px;
          padding-left: 15px;
          padding-top: 15px;
          border: none;
          font-family: var(--poppins);
          margin-bottom: 12px;
          outline: none;
        }

        select {
          width: 100%;
          border-radius: 6px;
          min-height: 42px;
          padding-left: 15px;
          border: none;
          font-family: var(--poppins);
          margin-bottom: 12px;
          outline: none;
        }

        button {
          /* border: 1px solid #fff; */
          background-color: var(--color6);
          color: #fff;
          padding: 10px 20px;
          font-weight: 600;
          width: 100%;
          border-radius: 6px;
          font-size: 15px;
          box-shadow: none;
        }
      }
    }
  }
}

.call_to_cta {
  background-color: var(--color6);
  padding: 20px 0;

  .heading-mn {
    color: var(--color4);
    font-size: 16px;
    text-align: justify;
  }

  .btns-dv {
    margin-top: 0;

    .btn-link {
      box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
        rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
      border: 1px solid #fff;
    }
  }
}

.expertise {
  .year-exp {
    box-shadow: 0px 2px 15px 2px #00000026;
    /* padding: 10px; */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 6px;
    margin-bottom: 20px;

    .icon-bx {
      display: flex;
      align-items: center;
      gap: 10px;
      border-right: 1px solid #d5d5d5;
      border-bottom: 1px solid #d5d5d5;
      padding: 10px;
      color: #313131;

      &:nth-child(2) {
        border-right: none;
      }

      &:nth-child(3) {
        border-bottom: none;
      }

      &:nth-child(4) {
        border-bottom: none;
        border-right: none;
      }

      .head-txt {
        font-size: 12px;
        font-weight: 500;
      }
    }
  }
}

.technologies-art {
  background-color: var(--color4);
  padding: 30px 0px;
}

.heading-mn {
  font-size: 20px;
  line-height: 30px;
  color: #000000;
  font-family: var(--poppins);
  font-weight: 600;
  margin-bottom: 15px;
}
.slider-tech {
  display: flex;
  flex-wrap: nowrap;
  gap: 15px;
  overflow-x: auto;

  .grid-slide {
    min-width: 220px;
    text-align: center;

    .img-sl {
      border: 2px solid #d3d3d3;
      border-radius: 10px;
      padding: 15px;
      background-color: #fff;
    }

    .title {
      color: #303030;
      font-size: 15px;
      line-height: 22px;
      font-family: var(--poppins);
      font-weight: 500;
      padding: 10px 0px;
    }
  }
}

.Why-TAC {
  background-color: var(--color5);

  ul {
    list-style-type: none;

    li {
      font-size: 14px;
      line-height: 20px;
      margin-bottom: 20px;
      position: relative;
      padding-left: 35px;

      span {
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
        display: block;
      }

      &::before {
        content: "";
        position: absolute;
        left: 0;
        top: 5px;
        width: 22px;
        height: 22px;
        background-image: url(./assets/acneservices/li-check.webp);
        background-repeat: no-repeat;
      }
    }
  }
}

.btns-dv {
  margin-top: 30px;
  display: flex;
  justify-content: center;

  .btn-link {
    background-color: var(--color6);
    color: #fff;
    padding: 15px 18px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    display: block;
  }
}

.achieve-your-health {
  .btns-dv {
    .btn-link {
      background-color: #29a71a;
      padding: 15px 20px;
      font-size: 16px;
      line-height: 18px;

      .bi-whatsapp {
        font-size: 18px;
        margin-right: 10px;
      }
    }
  }
}

.experience-total-health {
  padding-bottom: 30px;

  .total-health-content {
    margin-top: -50px;
    background-color: #fff;
    position: relative;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0px 8px 20px 0px #0000001a;

    .icon-list-bx {
      display: flex;
      gap: 0px;
      flex-wrap: wrap;

      .icon-bx {
        border-right: 1px solid #ddd;
        padding: 10px;
        border-bottom: 1px solid #ddd;
        flex: 1 1 calc(32.33% - 10px);
        min-width: 110px;
        max-width: 170px;

        .head-txt {
          font-size: 13px;
          line-height: 20px;
          font-weight: 500;
          color: #000;
        }

        &:nth-child(3) {
          border-right: none;
        }

        &:nth-child(4) {
          border-bottom: none;
        }

        &:nth-child(5) {
          border-bottom: none;
          border-right: none;
        }
      }
    }
  }
}

.testimonials-section {
  padding-bottom: 40px;
  border-bottom: 1px solid #0000002e;

  .slider-tech {
    .grid-slide {
      box-shadow: 3px 0px 15px 0px #00000014;
      border-radius: 10px;
      padding: 15px;
      text-align: left;

      .review-bd {
        .name-title {
          font-size: 16px;
          line-height: 24px;
          color: #945553;
        }

        .star-icon {
          color: #ffc107;
          margin: 10px 0px;
        }

        p {
          font-size: 12px;
          line-height: 20px;
          overflow-y: auto;
          max-height: 200px;
          padding-right: 10px;
        }
      }
    }
  }
}

.review-bd p::-webkit-scrollbar {
  width: 4px;
}

.review-bd p::-webkit-scrollbar-track {
  background-color: #f5dfca;
}

.review-bd p::-webkit-scrollbar-thumb {
  background: var(--color6);
  border-radius: 10px;
}

.singature-service {
  .slider-tech {
    .grid-slide {
      min-width: 250px;

      .div-numb {
        background-color: var(--color5);
        border: 1px solid var(--color1);
        border-radius: 8px;
        padding: 40px 20px 20px;
        text-align: left;
        position: relative;
        height: 100%;

        .title-n {
          font-weight: 600;
          margin-bottom: 10px;
          font-size: 16px;
          line-height: 22px;
        }

        &::before {
          counter-increment: section;
          content: counter(section, decimal-leading-zero);
          position: absolute;
          left: 0;
          top: 0;
          width: 32px;
          height: 32px;
          border-radius: 7px;
          background-color: var(--color6);
          font-size: 15px;
          font-weight: 500;
          color: #fff;
          text-align: center;
          line-height: 30px;
        }
      }
    }
  }

  .sub-heading {
    font-size: 16px;
    line-height: 24px;
    padding: 10px 0;
    color: var(--color6);
  }

  .sub-desc {
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
  }
}

.our-services {
  padding-bottom: 30px;
  overflow-x: hidden;

  .custom-slide-control {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 8px;

    .carousel-btn {
      border: 1px solid #945553;
      width: 25px;
      height: 25px;
      display: block;
      border-radius: 2px;
      color: #945553;
      font-size: 22px;
      line-height: 22px;
      font-weight: 400;
      text-align: center;

      &:hover {
        background-color: #945553;
        color: #fff;
      }
    }
  }
}

.service-custom-slider {
  display: flex;
  gap: 15px;

  position: relative;
  transition: transform 0.3s ease-in-out;
  cursor: grab;

  .item-service {
    min-width: 210px;
    max-width: 210px;

    .service-bx {
      border: 1.5px solid #e2a2a0;
      background-color: #ffe3e2;
      text-align: center;
      padding: 20px 14px 0 14px;
      display: flex;
      flex-direction: column;
      border-radius: 12px;

      .sevice-head-desc {
        color: #000;
        margin-bottom: 15px;

        .title-service {
          font-size: 14px;
          font-weight: 600;
          line-height: 20px;
          margin-bottom: 10px;
        }

        .desc-service {
          font-size: 13px;
          line-height: 18px;
        }
      }
    }
  }
}

/* FOOTER */
.getTouch {
  padding-top: 20px;
  padding-bottom: 15px;
  background: var(--color3);
}

.getTouch .heading-mn {
  color: var(--color5);
}

.heading-mn span {
  color: var(--color6);
}

.mobile-view {
  display: block;
}

.desktop-view {
  display: none;
}

.cta-section {
  background-color: var(--color6);
  padding: 0px;
  position: sticky;
  bottom: 0;

  .cta-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;

    .icon-bx-cta {
      display: flex;
      flex-direction: column;
      border-right: 1px solid #fff;
      color: #fff;
      text-decoration: none;
      padding: 5px;
      font-size: 12px;

      &:last-child {
        border-right: none;
      }
    }
  }
}

.hero-section {
  position: relative;
  margin-bottom: -10px;

  img {
    min-height: 200px;
    object-fit: cover;
    object-position: -30px;
  }

  .banner_contant {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0.5rem;
    max-width: 60%;

    .banner_tagline {
      font-weight: bold;
      line-height: 1.2;
      font-size: 18px;
      margin-bottom: 8px;
      color: var(--color6);
    }

    .banner_pointers li {
      font-size: 11px;
      margin-bottom: 4px;
      list-style: none;
      padding-left: 15px;
      position: relative;

      &::before {
        position: absolute;
        content: "➢";
        left: 0;
        top: 0px;
      }
    }
  }
}

.twoCard {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;

  .cards {
    padding: 25px;

    .heading-mn {
      font-size: 18px;
      margin-bottom: 0px;
      text-align: left;
    }

    &:nth-child(odd) {
      background-color: #ececec;
    }

    &:nth-child(even) {
      background-color: #fdefe0;
    }

    /* &:nth-child(3) {
            background-color: #fdefe0;
        }

        &:nth-child(4) {
            background-color: #ececec;
        } */
  }
}

.faq {
  background: #f6f6f6;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  padding: 10px 0px;
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.faq-question::after {
  content: "+";
  font-size: 20px;
}

.faq-question.active::after {
  content: "-";
}

.faq-answer {
  display: none;
  margin-top: 5px;
  font-size: 16px;
  color: #555;
}

.getTouch .box {
  padding: 0 0px 20px;
  color: white;
  border-bottom: 1px solid #fff;
  border-radius: 10px;
  text-decoration: none;
}

.getTouch .box span,
.getTouch .box svg {
  display: block;
  margin-bottom: 0px;
  font-size: 22px;
  color: var(--color1);
}

.getTouch .disclaimer {
  margin-top: 20px;
  color: white;
  text-align: justify;
  font-size: 12px;
}

.getTouch .boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.boxContent {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.stars {
  display: flex;
  align-items: center;
  font-size: 19px;
  color: #ffc83d;
}

.stars .half-star {
  color: #ccc;
  position: relative;
}

.stars .half-star:before {
  content: "★";
  color: #ffc83d;
  position: absolute;
  width: 70%;
  overflow: hidden;
}

.topbar {
  color: #fff;
  border-bottom: 1px solid #000;
  margin: 0;
  padding: 5px 0 0;
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 5px;
  text-align: center;
  background: linear-gradient(-45deg, #cda05c, #d4983d, #212529, #cda05c);
  animation: 2s infinite blinker;
  -webkit-animation: 2s infinite blinker;
  background-size: 400% 400%;
  margin-bottom: 10px;
}

@keyframes blinker {
  0%,
  100% {
    background-position: 0 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.video-testi.space-30 {
  padding: 30px 0;
}

/* Card container setup */
.video-testi .video-card {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0;
  margin: 0 auto;
  justify-content: center;
}

/* Each video card */
.video-testi .result-card {
  position: relative;
  width: 14%; /* or 240px for bigger thumbs */
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  background-color: #000;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.video-testi .result-card:hover {
  transform: translateY(-4px);
}

/* Thumbnail image */
.video-testi .result-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* Play button overlay */
.video-testi .result-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.video-testi .result-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-testi .result-play img {
  width: 45px;
  height: 45px;
}
.video-modal-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9;
  display: none;
}
.video-modal-overlay.active-modal,
.video-modal.active-modal {
  display: block;
}
.video-modal {
  max-width: 800px;
  width: 95%;
  background: #fff;
  position: fixed;
  z-index: 99;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.25) 0 54px 55px, rgba(0, 0, 0, 0.12) 0 -12px 30px,
    rgba(0, 0, 0, 0.12) 0 4px 6px, rgba(0, 0, 0, 0.17) 0 12px 13px,
    rgba(0, 0, 0, 0.09) 0 -3px 5px;
  text-align: left;
  display: none;
}
.video-box {
  position: relative;
}
.video-box .modal-btn {
  position: absolute;
  right: 0px;
  border: none;
  height: 40px;
  padding: 5px 10px;
  background: #fff;
  cursor: pointer;
}
#ham_close {
  max-width: 20px;
  font-size: 25px;
}
.video-box iframe {
  height: 400px;
  width: 100%;
}
.managemoleslide {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 16px;
  margin-top: 2rem;
  scrollbar-width: none;
}
.managemoleslide:active {
  cursor: grabbing;
}
.realresutimagewrapper {
  flex: 0 0 calc(25% - 16px);
  box-sizing: border-box;
  text-align: center;
}
.managemoleslide img {
  border-radius: 10px;
}
.managemoleslide p {
  font-size: 12px;
  padding-top: 10px;
  text-align: center;
}
.managemoleslide p:first-of-type {
  font-size: 18px;
  font-weight: 600;
}
.gallery-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}
.gallery-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .realresutimagewrapper {
    flex: 0 0 calc(50% - 16px);
  }
  .video-testi .result-card {
    width: 24%;
  }
  .gallery-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .managemoleslide {
    grid-template-columns: repeat(4, minmax(40%, 1fr));
    overflow-x: auto;
    margin-top: 1.2rem;
  }
  .hero-section {
    position: relative;
    margin-bottom: -10px;

    img {
      min-height: 100%;
      object-fit: cover;
      object-position: 0;
    }

    .banner_contant {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 2rem;
      max-width: 60%;

      .subpara {
        font-size: 20px;
        font-weight: 500;
      }

      .banner_tagline {
        font-weight: bold;
        line-height: 1.2;
        font-size: 30px;
        margin-bottom: 10px;
      }

      .banner_pointers li {
        font-size: 17px;
        margin-bottom: 8px;
        list-style: none;
        padding-left: 20px;
        position: relative;

        &::before {
          position: absolute;
          content: "➢";
          left: 0;
          top: 0px;
        }
      }
    }
  }

  .twoCard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;

    .cards {
      padding: 25px;

      .heading-mn {
        font-size: 25px;
        margin-bottom: 10px;
        text-align: left;
      }

      &:nth-child(1) {
        background-color: #ececec;
      }

      &:nth-child(2) {
        background-color: #fdefe0;
      }

      &:nth-child(3) {
        background-color: #fdefe0;
      }

      &:nth-child(4) {
        background-color: #ececec;
      }
    }
  }
}

@media only screen and (min-width: 992px) {
  .cta-section {
    display: none;
  }

  .mobile-view {
    display: none;
  }

  .desktop-view {
    display: block;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .banner {
    .container {
      .caption-txt {
        max-width: 600px;

        .caption-heading {
          font-size: 42px;
          line-height: 45px;
        }

        .off-txt {
          font-size: 18px;
          line-height: 24px;
        }

        ul {
          li {
            font-size: 16px;

            &::before {
              top: 5px;
            }
          }
        }
      }
    }
  }

  .book-a-free {
    .container {
      .content-non-surgical {
        ul {
          grid-template-columns: auto auto auto auto;

          li {
            padding-bottom: 0;
            font-size: 16px;

            &::before {
              top: 2px;
            }
          }
        }
      }

      form {
        display: flex;
        gap: 10px;
        align-items: center;
        justify-content: space-between;

        .form-heading {
          margin-bottom: 0;
        }

        .form-group {
          input {
            margin-bottom: 0;
          }

          select {
            margin-bottom: 0;
          }
        }
      }
    }
  }

  .expertise {
    .container {
      .year-exp {
        grid-template-columns: repeat(4, 1fr);
        /* padding: 10px; */
        margin-bottom: 50px;

        .icon-bx {
          border: none;
          border-right: 1px solid #d5d5d5;
          text-align: center;
          justify-content: center;

          &:last-child {
            border-right: none;
          }

          .head-txt {
            font-size: 16px;
          }
        }
      }
    }
  }

  .our-services {
    padding-bottom: 50px;
  }

  .heading-mn {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 30px;
  }

  .service-custom-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    .item-service {
      min-width: auto;
      max-width: inherit;

      .service-bx {
        .sevice-head-desc {
          .title-service {
            font-size: 22px;
            line-height: 28px;
          }

          .desc-service {
            font-size: 16px;
            line-height: 22px;
            min-height: 42px;
          }
        }
      }
    }
  }

  .slider-tech {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .technologies-art {
    padding-top: 50px;
    padding-bottom: 50px;

    .grid-slide {
      .title {
        font-size: 20px;
        line-height: 24px;
      }
    }
  }

  .btns-dv {
    margin-top: 20px;

    .btn-link {
      padding: 15px 30px;
      border-radius: 6px;
    }
  }

  .Why-TAC {
    ul {
      display: grid;
      grid-template-columns: repeat(2, 1fr);

      li {
        font-size: 16px;
        line-height: 24px;
      }
    }
  }

  .space-30 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .experience-total-health {
    padding-bottom: 50px;

    .bgimg {
      width: 100%;
      max-height: 350px;
      object-fit: cover;
    }

    .total-health-content {
      margin-top: -75px;
      padding: 20px;

      .icon-list-bx {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        text-align: center;

        .icon-bx {
          min-width: inherit;
          max-width: inherit;
          border: none;
          border-right: 1px solid #ddd;

          &:nth-child(3) {
            border-right: 1px solid #ddd;
          }

          .head-txt {
            font-size: 16px;
            line-height: 22px;
          }
        }
      }
    }
  }

  .testimonials-section {
    .slider-tech {
      gap: 0;

      .grid-slide {
        margin: 10px;
        padding: 20px;

        .review-bd {
          .name-title {
            font-size: 20px;
          }

          p {
            font-size: 14px;
            line-height: 20px;
            font-weight: 400;
          }
        }
      }
    }
  }

  .singature-service {
    .sub-heading {
      font-size: 18px;
    }

    .sub-desc {
      font-size: 16px;
    }
  }

  .achieve-your-health {
    .slider-tech {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
  }

  .header-main {
    padding-bottom: 15px;

    .call-btns {
      .call-expt {
        padding: 10px 25px;
        font-size: 14px;
      }
    }
  }

  .footer-main {
    padding-top: 50px;

    .container {
      display: flex;
    }

    .copyright {
      .container {
        justify-content: center;
      }
    }
  }

  .hero-section {
    position: relative;
    margin-bottom: -10px;

    img {
      min-height: 100%;
      object-fit: cover;
      object-position: 0;
    }

    .banner_contant {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 2rem;
      max-width: 50%;

      .subpara {
        font-size: 20px;
        font-weight: 500;
      }

      .banner_tagline {
        font-weight: bold;
        line-height: 1.2;
        font-size: 50px;
        margin-bottom: 10px;
      }

      .banner_pointers li {
        font-size: 17px;
        margin-bottom: 8px;
        list-style: none;
        padding-left: 20px;
        position: relative;

        &::before {
          position: absolute;
          content: "➢";
          left: 0;
          top: 0px;
        }
      }
    }
  }

  .twoCard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;

    .cards {
      padding: 25px;

      .heading-mn {
        font-size: 20px;
        text-align: left;
      }

      &:nth-child(1) {
        background-color: #ececec;
      }

      &:nth-child(2) {
        background-color: #fdefe0;
      }

      &:nth-child(3) {
        background-color: #fdefe0;
      }

      &:nth-child(4) {
        background-color: #ececec;
      }
    }
  }

  .getTouch .box {
    border: 2px solid var(--color6);
    text-align: center;
    padding: 20px 20px;
    color: white;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
  }

  .getTouch .box span,
  .getTouch .box svg {
    display: block;
    margin: auto;
    margin-bottom: 20px;
    font-size: 22px;
    color: var(--color1);
  }

  .getTouch .disclaimer {
    margin-top: 20px;
    color: white;
    text-align: justify;
    font-size: 12px;
  }

  .getTouch .boxes {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }

  .boxContent {
    display: block;
  }

  .call_to_cta {
    .heading-mn {
      margin-bottom: 0;
      font-size: 27px;
      margin-bottom: 10px;
      text-align: center;
    }
  }
}

/* Start of Iphone/Mobile Screen */
@media screen and (max-width: 599.98px) and (min-width: 320px) {
  .realresutimagewrapper {
    flex: 0 0 calc(100% - 16px); /* 1 image */
  }
  .managemoleslide p:first-of-type {
    font-size: 16px;
  }
  .gallery-box {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .managemoleslide {
    grid-template-columns: repeat(4, minmax(80%, 1fr));
    overflow-x: auto;
    margin-top: 1.2rem;
  }
  .header-main {
    .container {
      .call-expt {
        padding: 10px 12px;
      }
    }
  }
  .hero-section.vandana-ban img {
    object-position: -30px !important;
  }
}
@media (320px <= width < 768px) {
  .video-testi .video-card {
    gap: 16px;
  }
  .video-testi .result-card {
    width: 45%;
  }
  .video-testi .result-play img {
    width: 38px;
    height: 38px;
  }
}
