/*
Theme Name: Aarna Clinic
Author: Digilantern
Author URI: https://digilantern.com/
Description: Aarna Clinic Theme
Version: 1.0
*/

@import url("https://fonts.googleapis.com/css2?family=Aboreto&family=Manrope:wght@200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Arapey:ital@0;1&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --body-font: "Manrope", sans-serif;
  --heading-font: "Aboreto", system-ui;
  --body-txt-color: #d9c5be;
  --color1: #faf3ec;
  --color2: #e4c98a;
  --global-color-primary: #d98391;
  --btn-color: #c92a45;
  --color3: #221a19;
  --btn-hvr: #0b0b0d;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: 17px;
  /* color: var(--body-txt-color); */
  color: var(--color3);
  line-height: 1.6;
  background-color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.5s;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

.mt-100 {
  margin-top: 100px;
}

.container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

.heading-font {
  font-family: var(--heading-font);
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp linear forwards;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HEADER */

header {
  /* padding: 25px 0px; */
  padding: 15px 0px;
}

.header-front-page,
.header-inner {
  /* position: absolute; */
  width: 100%;
  z-index: 99;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  background: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

header .menu ul {
  display: flex;
  column-gap: 15px;
  align-items: center;
  margin-bottom: 0;
  height: 100%;
  padding-left: 0;
}

header .menu ul li a {
  text-transform: uppercase;
  text-decoration: none;
  color: var(--body-txt-color);
}

.menus ul {
  display: flex;
  column-gap: 20px;
  padding-left: 0;
  margin-bottom: 0;
}

.menus ul li a {
  /* color: var(--body-txt-color); */
  color: var(--color3);
}

/* .menus ul li.menu-item-has-children:hover .sub-menu {
    display: block;
} */

.menus ul li.menu-item-has-children .sub-menu {
  display: inherit;
}

.logo {
  text-align: center;
}

.logo a {
  display: block;
  outline: none;
}

.logo a img {
  max-width: 100%;
}

.call-details a.call {
  /* color: var(--color1); */
  color: var(--color3);
  letter-spacing: 1px;
  text-decoration: none;
}

.btn-outline {
  /* border: 1px solid var(--body-txt-color); */
  border: 1px solid var(--color3);
  /* color: var(--color1); */
  color: var(--color3);
  text-transform: uppercase;
  padding: 14px 35px;

  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 7px;
  text-decoration: none;
  font-size: 14px;
}
header .btn-outline {
  background-color: var(--btn-color);
  border: none;
  font-weight: 700;
  color: #fff;
}
header .call {
  font-weight: 700;
}
.btn-outline:hover {
  background: var(--global-color-primary);
  color: var(--color3);
  border-color: var(--global-color-primary);
}

.call-details {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 20px;
}

/* HEROSECTION */

.herosection {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  /* padding-top: 150px; */
  padding-bottom: 0;
}
/*
.herosection::before {
    content: '';
    background-image: radial-gradient(at center center, #00000000 0%, #0B0B0D 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3s;
} */

.herosection .img-hero {
  object-fit: cover;
  object-position: center center;
  height: auto;
  width: 100%;
}

.hero-content {
  position: relative;
  /* z-index:3; */
  z-index: 1;
}

/*
.hero-content
{
        position: absolute;
    top:25%;
    left: 0;
    width: 100%;
    z-index: 3;
} */

.hero-content .small-title,
.hero-content .hero-heading {
  color: var(--color1);
}

.small-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.hero-heading {
  margin-top: 30px;
  font-size: 54px;
  line-height: 1.1;
  letter-spacing: -1px;
  text-transform: uppercase;
  /* color: var(--color1); */
  color: var(--color3);
}

.hero-heading span {
  color: var(--btn-color);
}

.hero-desc {
  font-size: 22px;
  font-style: italic;
  font-family: "Arapey", serif;
  color: var(--color1);
  font-weight: 400;

  color: var(--color1);
}

.hero-desc-btns {
  display: flex;
  flex-direction: column;
}

.btns-container {
  padding-top: 50px;
  padding-bottom: 50px;
}

/*
.btns-container
{
    position:absolute;
    bottom:10%;
    right:0;
    width:100%;
    z-index:3;
} */

.btn-mn {
  background-color: var(--btn-color);
  /* font-family: var(--heading-font); */
  text-transform: uppercase;
  font-size: 14px;
  color: var(--color1);
  padding: 14px 30px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 2px;
}

.btn-mn:hover {
  background: var(--global-color-primary);
  color: var(--btn-hvr);
}

.btn-second {
  color: var(--btn-hvr);
  background: var(--body-txt-color);
}

.btns-hero {
  display: flex;
  column-gap: 20px;
}

.custom-marquee {
  overflow: hidden;
  white-space: nowrap;
  padding-top: 50px;
  padding-bottom: 20px;
}

.marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track span {
  font-family: "Arapey", serif;
  font-size: 18px;
  color: #fff;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-track span {
  font-size: 20px;
  text-transform: uppercase;
  font-family: var(--heading-font);
  font-weight: 400;
  letter-spacing: 2px;
}

/* Advanced Aesthetic Section */
.treatment-banner {
  background-color: var(--body-txt-color);
}
.space80 {
  padding: 60px 0;
}

.AdvancedAesthetic {
  padding-bottom: 100px;
}

.AdvancedAesthetic .container-fluid {
  position: relative;
  z-index: 1;
}

.ContentAdvanced {
  /* max-width: 650px; */
  padding-left: 50px;
}

.ContentAdvanced .hero-heading {
  font-size: 54px;
}

.ContentAdvanced p {
  margin: 30px 0px;
  margin-bottom: 0;
}

.AdvancedImages {
  padding-right: 50px;
  position: relative;
}

.AdvancedImages .bgimg img {
  height: 490px;
  width: 100%;
  object-fit: cover;
}

.AdvancedImages .smimg img {
  width: 150px;
  height: 170px;
  object-fit: cover;
}

/*
.scroll-move {

  transform:
    translateY(0px)
    scale(1);
  filter:
    opacity(1)
    blur(0px);
  will-change: transform;
  transition: transform 0.1s linear;
  transform: translateY(-32.7066px) translateX(0px) rotate(0deg) scale(1);
 transform-origin: center center;
  transition: all 0.6s ease;
} */

.AdvancedImages img {
  border-radius: 15px;
}

.AdvancedImages .smimg {
  float: right;
  margin-top: -100px;
  margin-right: -50px;
  z-index: 1;
  position: relative;
}

.AdvancedAesthetic .logo-carousel {
  margin-top: 30px;
}

.logo-carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.logo-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.logo-slide {
  min-width: calc(100% / 6);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.logo-slide img {
  width: auto;
  filter: brightness(0.2);
}

/* TREATMENTS */

.Treatments {
  /* background-color:#221A19; */
  /* background-color: var(--color1); */
  background: #fff;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-btn.active {
  background: #000;
  color: #fff;
}

/* TREATMENT SLIDER */

.Treatments {
  overflow: hidden;
}

.treatment-slider-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}

.treatment-slider {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

.treatment-card {
  position: relative;
  cursor: grab;
  flex: 0 0 calc((100% - 80px) / 4.5);
}

.treatment-card .card-img {
  display: flex;
  border-radius: 20px;
}

.treatment-card .card-img img {
  border-radius: 20px;
  height: 435px;
  object-fit: cover;
}

.treatment-card .card-content {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  padding: 20px;
}

.treatment-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #00000040;
  border-radius: 20px;
  transition:
    background 0.3s,
    border-radius 0.3s,
    opacity 0.3s;
}

.treatment-card:hover::before {
  background-color: #00000090;
}

.treatment-card .card-content .btn-outline {
  max-width: max-content;
  border: 1px solid #fff;
  color: #fff;
}

.treatment-card .card-content .btn-outline:hover {
  border-color: var(--global-color-primary);
}

.treatment-card .card-content h3 {
  font-size: 24px;
  line-height: 1.3;
  font-family: var(--heading-font);
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
}

.treatment-slider {
  cursor: grab;
}

.treatment-slider:active {
  cursor: grabbing;
}
.treatment-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav.prev {
  left: 15px;
}

.nav.next {
  right: 15px;
}

.nav:hover {
  background: var(--global-color-primary);
}
.before-after-section.space80 {
  padding-top: 60px;
  padding-bottom: 0;
}
.before-after-section .before-after-content ul {
  margin-bottom: 2.5rem;
}
.before-after-section .container-fluid:nth-of-type(2) {
  background-color: #221a19;
  padding: 40px 30px;
}
.counter-box .counter-span {
  color: #fff;
}
.counter-box .counter-title {
  color: #f5f5f5;
}
/* BEFORE-AFTER-SECTION */

.bg1 {
  /* background-color:#ffe1e1; */
  background: var(--color1);
  position: relative;
  /* background-image:url('./assets/images/bg.webp');
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center center; */
}

/*
.bg1::before
{
    content:'';
    background-image: radial-gradient(at center center, #0B0B0D00 0%, #0B0B0D 40%);
    position:absolute;
    top:0;
    left:0;
    width:100%;
    opacity:0.8;
    height:100%;
} */

.before-after-section .container-fluid {
  position: relative;
  z-index: 1;
}

.space80 .hero-heading {
  font-size: 54px;
  color: var(--color3);
}

.Treatments .hero-heading {
  margin-top: 0;
}

.before-after-section .before-after-content p {
  margin-top: 30px;
  margin-bottom: 30px;
}

.counter-box {
  text-align: center;
  color: var(--color3);
  font-family: var(--heading-font);
}
.before-after-section .row > div:not(:last-child) .counter-box {
  border-right: 1px solid var(--body-txt-color);
}
.before-after-section .row.mt-50 .col-lg-3:last-child .counter-box {
  border-right: none;
}

.counter-box .counter-title {
  font-size: 20px;
  font-weight: 400;
  line-height: 2.5;
  margin: 0;
  padding: 0;
}

.counter-box .counter-span {
  font-size: 42px;
  line-height: 1.2;
}

.mt-50 {
  margin-top: 120px;
}

.before-img img {
  width: 100%;
  border-radius: 12px;
}

/* TESTIMONIALS */

.bg1 .container-fluid {
  position: relative;
  z-index: 1;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
  column-gap: 10px;
  padding-top: 20px;
}

.testimonial-card {
  flex: 0 0 calc(100% / 5);
  box-sizing: border-box;
  padding: 10px;
  cursor: grab;
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  font-size: 17px;
  color: var(--btn-hvr);
  box-shadow: 1px 3px 17px 2px #eeeeee;
}
.treatment-reviews .testimonial-card {
  flex: 0 0 calc(100% / 3);
  padding: 30px 20px;
}
/* .treatment-reviews .testimonial-track {
  column-gap: 0;
} */
/* .treatment-reviews .testimonial-card:not(:last-child){
  margin-right: 1rem;
} */
.treatment-reviews .testimonial-card .desc-review {
  height: 130px;
}
.testimonial-card .title {
  font-family: "Arapey", serif;
  font-size: 22px;
  font-style: italic;
}
.treatment-reviews .testimonial-track {
  max-width: 1400px;
  margin: 0 auto;
}
.testimonial-card .desc-review {
  height: 200px;
  overflow-y: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.testimonial-card .desc-review::-webkit-scrollbar {
  width: 6px;
  /* scrollbar width */
}

.testimonial-card .desc-review::-webkit-scrollbar-track {
  background: var(--body-txt-color);
  /* track color */
  border-radius: 10px;
}

.testimonial-card .desc-review::-webkit-scrollbar-thumb {
  background: var(--global-color-primary);
  /* scroll thumb */
  border-radius: 10px;
}

.testimonial-card .desc-review::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.title-Procedure span {
  font-size: 16px;
  color: var(--bs-black);
}

.testimonial-card .stars {
  color: #d98391;
  font-size: 24px;
}

/* DOTS */
.testimonial-dots {
  text-align: center;
  margin-top: 15px;
}

.testimonial-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: transparent;
  border: 1px solid var(--btn-color);
  margin: 5px;
  border-radius: 50%;
  cursor: pointer;
}

.testimonial-dots .active {
  background: var(--btn-color);
}

/* BLOG ARTICAL */
.blog-section {
  background-color: #221a19;
}

.blog-section .hero-heading {
  color: #fff;
}

.blog-section .hero-heading span {
  color: #ccc;
}

.blog-img a {
  display: block;
  position: relative;
}

.blog-img a::before {
  content: "";
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all 0.3s;
  border-radius: 20px;
  opacity: 0;
}

.blog-img a img {
  border-radius: 20px;
}

.blog-img a:hover::before {
  opacity: 1;
  background-color: #0000003b;
}

.blog-card .cat-title {
  margin-top: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #38292e;
}

.blog-card .title a {
  margin: 20px 0px;
  font-size: 21px;

  text-transform: uppercase;
  font-family: var(--heading-font);
  color: var(--color1);
  display: inline-block;
}

.blog-card .title a:hover {
  color: var(--global-color-primary);
}

.cat-title span {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--global-color-primary);
}

.blog-card .read-more {
  text-transform: uppercase;
  color: var(--color1);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 2px;
  font-weight: 500;
}

.blog-card .read-more:hover {
  color: var(--global-color-primary);
}

/* CONTACT DETAILS SECTION */

.contact-information {
  padding: 80px 15px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.contact-information ul {
  margin: 0;
  padding: 0;
  display: flex;
  column-gap: 20px;
}

.contact-information ul li a:hover {
  color: var(--global-color-primary);
}

.map {
  border: 10px solid #ffffff20;
}

.map iframe {
  display: flex;
}

.Schedule-Appointment .hero-heading {
  font-size: 54px;
}

.form-appointment {
  padding: 50px 35px;
  border-right: 1px solid #d9839120;
}

.form-appointment .hero-desc {
  color: var(--color3);
}

.Schedule-Form .form-group label {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  padding-bottom: 10px;
}

.Schedule-Form .form-group input,
.Schedule-Form .form-group select,
.Schedule-Form .form-group textarea {
  width: 100%;
  color: var(--color3);
  /* background: #38292E; */
  background: var(--body-txt-color);
  border: none;
  padding: 12px;
  border-radius: 8px;
  outline: none;
}

/* .Schedule-Form .form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
} */
.Schedule-Form .form-group input,
.Schedule-Form .form-group select,
.Schedule-Form .form-group textarea {
  font-size: 14px;
}
.Schedule-Form .form-group textarea {
  max-height: 80px;
}

.Schedule-Form .form-btn .btn {
  width: 100%;
}

.Schedule-Form .form-btn p {
  margin-bottom: 0;
}

/* REAL-RESULTS SECTION */
.real-results {
  overflow: hidden;
}

.real-results-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.real-result-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
  gap: 20px;
}

.real-result-card {
  flex: 0 0 calc((100% - 60px) / 4);
  box-sizing: border-box;
  cursor: grab;
}

.real-result-box {
  border: none;
}

.real-result-box img {
  width: 100%;
  display: block;
}

.real-result-box span {
  text-align: center;
  display: block;
  font-family: var(--heading-font);
  color: var(--color3);
  border-top: 1px solid var(--color3);
  padding: 15px;
}

/* SERVICE HOME TAB SECTION */

.tab-pane {
  display: none;
  transition: all 0.5s ease;
  position: absolute;
  width: 100%;
}

.tab-pane.active {
  display: block;
  position: relative;
  pointer-events: auto;
  z-index: 2;
}
/*
.treatments-tab-section {
    background-color:var(--color3);
    background-color: var(--body-txt-color);
} */

.treatments-tab-section .tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  column-gap: 5px;
}

.treatments-tab-section .category-img img {
  border-radius: 20px;
}

.treatment-content-show {
  padding: 80px;
  margin-right: -120px;
  /* background: #000; */
  /* background-color:#fff;  */
  /* background:var(--color1); */
  background: #ffe1e1;
  z-index: 1;
  position: relative;
  border-radius: 20px;
  color: var(--color3);
}

.treatment-content-show .title {
  font-size: 42px;
  text-transform: uppercase;
  line-height: 1.5;
}

.treatment-content-show .cat-desc {
  margin: 30px 0px 0;
}

.treatment-content-show .category-btn {
  margin-top: 50px;
  display: inline-block;
  background-color: var(--btn-color);
  border-color: #fff;
}

.treatment-content-show .category-btn:hover {
  background-color: var(--global-color-primary);
  border-color: var(--global-color-primary);
}

.treatments-tab-section .tab-btn {
  border-radius: 7px;
  transition: all 0.3s;
  padding: 18px 30px 18px 30px;
  color: var(--color1);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 2px;
  background: #0b0b0d;
  border: none;
  text-transform: uppercase;
}

.treatments-tab-section .tab-btn.active,
.treatments-tab-section .tab-btn:hover {
  background-color: var(--btn-color);
}

.tab-pane {
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.post-list ul {
  margin-left: 0px;
  padding-left: 0px;
}

.post-list li a {
  position: relative;
  padding-left: 20px;
}

.post-list li a:hover {
  color: var(--global-color-primary);
}

.post-list li a::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--global-color-primary);
}

.technology-slider {
  overflow: hidden;
  position: relative;
  padding: 80px 0;
}

.technology-slider .hero-heading {
  margin-top: 0px;
  margin-bottom: 30px;
}

.tech-card .high-img {
  text-align: left;
}

.tech-track {
  display: flex;
  transition: transform 0.4s ease;
}

.tech-card {
  flex: 0 0 100%;
  padding: 0px;
  display: flex;
  align-items: center;
}

.tech-card .row {
  background: transparent;
  padding: 10px 0px;
  border: 1px solid var(--color1);
}

.tech-img {
  flex: 0 0 40%;
}

.tech-card-inner {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.tech-img img {
  width: 100%;
  border-radius: 10px;
}

/* Dots */
.tech-dots {
  text-align: center;
  margin-top: 15px;
}

.tech-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 1px solid var(--color3);
  margin: 5px;
  border-radius: 50%;
  cursor: pointer;
}

.tech-dots .active {
  background: var(--color3);
}

.tech-card .high-content .hero-heading {
  font-size: 24px;
  text-align: left;
  margin-bottom: 0px;
}

/* MOBILE-MENU */

header .desktop-hamburger {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nav-drill .logo {
  position: relative;
}

.nav-drill {
  position: fixed;
  top: 0;
  right: 0;
  width: 350px;
  height: 100vh;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  background: #fff;
  z-index: 9999;
}

body.nav-is-toggled .nav-drill {
  transform: translateX(0);
}

.nav-drill .menu {
  padding: 0;
}

.nav-drill .menu ul {
  display: flex;
  flex-direction: column;
  /* all: unset; */
}

.nav-drill .menu ul li {
  display: block;
}

.nav-drill .menu li a {
  display: block;
  border-bottom: 1px solid #dddddd14;
  padding: 10px;
  color: var(--color1);
  text-transform: inherit;
  font-size: 18px;
  font-family: var(--heading-font);
}

.nav-drill .menu li.btn a {
  padding-bottom: 4px;
}

.nav-drill,
.nav-link {
  background-color: var(--color-primary);
}

.nav-expand-content {
  top: 0;
  transform: translateX(100%);
}
.nav-drill .logo {
  padding: 0.5rem 15px;
  justify-content: space-between;
  display: flex;
  align-items: center;
  background-color: #fff;
}

.nav-drill .logo,
.nav-expand-content .nav-item:not(:last-child),
.visa_img {
  border-bottom: 1px solid #ddd;
}

.nav-items {
  flex: 0 0 100%;
}

.nav-item:not(:last-child) {
  border-bottom: 1px solid var(--dark-text-color);
}

.nav-link {
  display: block;
  padding: 0.675em 12px;
  color: var(--dark-text-color);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.2em;
  font-weight: 600;
}

.nav-link:focus,
.nav-link:hover {
  color: var(--white);
}

.nav-expand-link {
  display: flex;
  justify-content: space-between;
}

.nav-expand-link::after {
  content: "";
  flex: 0 1 auto;
  background: url(../imgs/arrow_back_ios.webp) no-repeat center center/contain;
  width: 12px;
  height: 8px;
  margin-top: 4px;
  rotate: -90deg;
}

.nav-expand-content {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  visibility: hidden;
}

.nav-expand .nav-expand-content,
.nav-expand .nav-expand-content .nav-expand-content,
.nav-expand .nav-expand-content .nav-expand-content .nav-expand-content,
.nav-expand
  .nav-expand-content
  .nav-expand-content
  .nav-expand-content
  .nav-expand-content,
.nav-expand
  .nav-expand-content
  .nav-expand-content
  .nav-expand-content
  .nav-expand-content
  .nav-link,
.nav-expand
  .nav-expand-content
  .nav-expand-content
  .nav-expand-content
  .nav-link,
.nav-expand .nav-expand-content .nav-expand-content .nav-link,
.nav-expand .nav-expand-content .nav-link,
.nav_contact {
  background-color: var(--primary-color);
}

.nav-expand-content,
.nav-expand-content .nav-link {
  background-color: #fff;
}

.nav-drill .logo,
.nav-expand-content .nav-item:not(:last-child),
.visa_img {
  border-bottom: 1px solid var(--dark-text-color);
}

.nav-expand-content .nav-back-link {
  display: flex;
  align-items: center;
  background: var(--color-btn) !important;
  color: #fff;
}

.nav-expand-content .nav-back-link::before {
  content: "";
  margin-right: 0.5em;
  background: url(../imgs/arrow_back_ios.webp) no-repeat center center/contain;
  width: 12px;
  height: 8px;
  rotate: 90deg;
}

.appoinment_btn a {
  display: inline-block;
  color: var(--dark-text-color);
  padding: 6px 20px;
  border: 1px solid var(--dark-text-color);
  background: var(--primary-color);
}

body.dont__scroll,
body.nav-is-toggled,
body.stop_scroll {
  overflow: hidden;
}

.mob_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-header {
  z-index: 9;
  position: absolute;
}

.mobile-header .call {
  color: #fff;
}

.mobile-header .closeMenu {
  position: absolute;
  right: 10px;
  top: 10px;
}

.header-inner-page.mobile-header {
  position: relative;
}

.nav-is-toggled .mob_overlay {
  display: block;
  opacity: 1;
  visibility: visible;
}

.nav-is-toggled .nav-drill {
  transform: translateX(0);
  background: var(--color3);
}

.nav-expand.active > .nav-expand-content {
  transform: translateX(0);
  visibility: visible;
}

.desktop-hamburger {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 9;
  width: 50px;
  height: 40px;
  text-align: center;
  background: 0 0;
  border: none;
  display: block;
}

.desktop-hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 70%;
  /* background: var(--body-txt-color); */
  background-color: var(--color3);
  opacity: 1;
  left: 0;
  right: 0;
  transform: rotate(0);
  transition: 0.25s ease-in-out;
  padding: 0;
}

.desktop-hamburger span:first-child {
  top: 8px;
}

.desktop-hamburger span:nth-child(2) {
  top: 15px;
}

.desktop-hamburger span:nth-child(3) {
  top: 22px;
  width: 50%;
}

header .desktop-hamburger {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.desktop-hamburger.open span:first-child {
  top: 17px;
  transform: rotate(135deg);
  left: 10px;
  background: var(--color3);
}

.desktop-hamburger.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.desktop-hamburger.open span:nth-child(3) {
  top: 18px;
  left: 10px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
  font-weight: 400;
  width: 70%;
  background: var(--color3);
}

/* Hide sub-menus by default */
/* .menu-item-has-children > .sub-menu {
  display: none;
} */

/* Show active submenu */
.menu-item-has-children.active > .sub-menu {
  display: block;
  background-color: var(--color3);
  z-index: 9;
}

/* Back link styling */
.nav-back-link {
  display: block;
  padding: 12px;
  font-weight: 600;
}

.nav-expand a {
  position: relative;
}

.nav-expand a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 40%;
  background-image: url("assets/images/arrow_back_ios.webp");
  width: 15px;
  height: 9px;
  transform: rotate(-90deg);
}

.nav-expand-content li.nav-expand a::after {
  display: block;
}

.nav-expand-content li a::after,
.nav-expand-content li.nav-expand .nav-expand-content li a::after {
  display: none;
}

.nav-expand-content li.menu-item-has-children ul.submenu li a::after {
  display: none;
}

.nav-expand-content li.nav-expand.arrow a::after {
  display: block;
}

.nav-expand-content li.nav-expand.arrow .sub-menu li a::after {
  display: none;
}

/* HEADER-INNNER */
.header-inner {
  /* background: var(--color3); */
  background: var(--color1);
}

.page-title {
  background: var(--body-txt-color);
  padding: 25px 0px;
}

.entry-title {
  font-family: var(--heading-font);
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 2.5rem;
}

.breadcrumbs {
  font-size: 12px;
  font-family: var(--heading-font);
}

.breadcrumbs a:hover {
  color: var(--btn-hvr);
}

.desktop-header .menus ul li.menu-item-has-children {
  position: relative;
  padding-right: 15px;
}

.desktop-header .menus ul li.menu-item-has-children::before {
  content: "\f107";
  position: absolute;
  bottom: 0;
  right: 0;
  font-family: "Font Awesome 7 Free";
  font-weight: 600;
  /* color:var(--body-txt-color); */
  color: var(--color3);
  display: block;
  font-size: 13px;
}

.desktop-header .menus ul li.menu-item-has-children .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  padding: 25px 0 0 0;
  margin: 0;
  list-style: none;
  background: transparent;
  border-radius: 14px;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.06),
    0 20px 48px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.96);
  transform-origin: top center;
  box-shadow: none;
  transition:
    opacity 0.45s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.45s cubic-bezier(0.23, 1, 0.32, 1),
    visibility 0.45s;
  z-index: 999;
}

.desktop-header .menus ul li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  top: 100%;
}
/* Third level menu */
.desktop-header .menus .sub-menu li.menu-item-has-children > .sub-menu {
  top: 0 !important;
  left: 260px !important;
  padding-top: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
}
.desktop-header .menus .sub-menu li.menu-item-has-children::before {
  top: 63%;
  left: 236px;
  transform: translateY(-50%) rotate(-90deg);
  color: #fff;
}
/* Show third level */
.desktop-header .menus .sub-menu > li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.desktop-header .menus ul li.menu-item-has-children .sub-menu .nav-back-item {
  display: none;
}

.desktop-header .menus ul li.menu-item-has-children .nav-expand-content {
  position: absolute;
}

.desktop-header .menus ul li.menu-item-has-children .sub-menu .menu-item a {
  display: block;
  /* background-color:var(--btn-hvr); */
  /* background: #0b0b0da1; */
  padding: 8px;
  background: var(--color3);
  text-transform: unset;
  white-space: nowrap;
  min-width: 260px;
  /* border-radius:8px; */
  color: #fff;
  border-bottom: 1px solid var(--body-txt-color);
}

.Schedule-Appointment {
  background-color: var(--color1);
}

/* BLOG SINGLE PAGE */

.single-title {
  position: relative;
}

.single-title .single-img img {
  height: 350px;
  object-fit: cover;
  width: 100%;
}

.single-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--btn-hvr);
  opacity: 0.4;
}

.single-blog-title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  color: var(--color1);
}

.entry-meta span {
  background: var(--body-txt-color);
  padding: 6px;
  font-family: var(--heading-font);
  font-size: 14px;
}

.blog-sidebar {
  position: sticky;
  position: -webkit-sticky;
  top: 100px;
}

.recent-posts {
  margin-top: 30px;
}

.sidebar-widget.appointment-form {
  padding: 20px;
  border: 1px solid var(--body-txt-color);
  background-color: var(--color1);
}

.blog-sidebar h3 {
  text-align: left;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
}

.blog-sidebar .recent-posts ul {
  padding-left: 0;
}

.blog-sidebar .recent-posts ul li a {
  display: flex;
  column-gap: 15px;
  border-bottom: 1px solid var(--body-txt-color);
  padding-bottom: 15px;
}

.blog-sidebar .recent-posts ul li a .post-thumb {
  flex: 0 0 33%;
}

.blog-sidebar .recent-posts ul li a .post-thumb img {
  height: 75px;
  object-fit: cover;
}

.blog-sidebar .recent-posts ul li a .post-content h4 {
  font-size: 16px;
  margin-bottom: 0;
}
.blog-sidebar .recent-posts ul li a .post-content h4:hover,
.blog-sidebar .recent-posts ul li a:hover .post-content h4,
.blog-sidebar .recent-posts ul li a:hover .post-content span {
  color: #c92a45;
}
.blog-sidebar .recent-posts ul li a .post-content span {
  font-size: 12px;
}

.tech-card {
  min-width: 50%;
  flex: 0 0 50%;
  padding: 10px;
  box-sizing: border-box;
}

.result-card {
  margin-bottom: 30px;
  background-color: var(--color1);
  text-align: center;
}

.result-card .result-content h3 {
  margin-bottom: 0;
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 700;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
}

button.btn-mn {
  border: none;
  border-radius: 8px;
}

.siteorigin-widget-tinymce h1,
.siteorigin-widget-tinymce h2,
.siteorigin-widget-tinymce h3 {
  font-family: var(--heading-font);
}

.img-border-radius-12 img {
  border-radius: 12px;
}
.list-design ul {
  margin-left: 15px;
  padding-left: 0;
}

.list-design ul li,
.before-after-section .before-after-content ul li {
  margin-bottom: 20px;
  position: relative;
  padding-left: 35px;
}
.before-after-section .before-after-content ul {
  padding-left: 0;
}
.list-design ul li strong {
  color: var(--color3);
  text-transform: uppercase;
}

.list-design ul li::before,
.before-after-section .before-after-content ul li::before {
  content: "\f058"; /* circle-check icon */
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  color: var(--btn-color);
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
}

.heading-mn .sow-headline {
  font-size: 42px !important;
}

.heading-mn .sow-headline span {
  color: #c92a45;
}

.grid-boxs .panel-grid-cell .widget_text .panel-widget-style {
  min-height: 490px;
}

.grid-boxs .panel-grid-cell .widget_text .panel-widget-style .widget-title {
  font-size: 20px;
  font-family: var(--heading-font);
}

.treatment-banner .row {
  padding: 0;
  border-radius: 16px;
}

.treatment-banner .row .col-lg-5 {
  padding-left: 0;
}

.treatment-banner .featured-image img {
  border-radius: 16px;
  height: 600px;
  object-fit: cover;
  width: 100%;
}

.breadcrumb .breadcrumbs {
  background: var(--color1);
  padding: 6px;
  border-radius: 8px;
  font-weight: 700;
}

.treatment-banner .heading-content .heading-mn {
  font-size: 42px;
  font-family: var(--heading-font);
  line-height: 1.2;
}
.cost-snippet {
  display: inline-block;
  border: 1px solid #fff;
  background: #ffffff69;
  padding: 5px 10px;
  margin: 10px 0;
  border-radius: 8px;
  box-shadow: 1px -1px 10px #ddd;
}

.treatment-banner .heading-content .scroll-content {
  height: 300px;
  overflow-y: auto;
  padding-right: 10px;
  /* Firefox */
  scrollbar-width: thin;
  margin-bottom: 20px;
  scrollbar-color: var(--color3) #f5f5f5;
}
.scroll-content p:last-child {
  margin-bottom: 0;
}

/* Chrome, Edge, Safari */
.cards .list-show.panel-widget-style {
  min-height: auto;
}
.list-show.panel-widget-style {
  border-top-color: var(--color2) !important;
  min-height: 320px;
}
.list-show ul {
  list-style-type: disc;
}

.table-design .ow-pt-columns-atom .ow-pt-details {
  display: none;
}
.table-design
  .so-widget-sow-price-table
  .ow-pt-columns-atom
  .ow-pt-column
  .ow-pt-title {
  border: none;
  border-radius: 0px;
  background: #c92a45 !important;
  text-shadow: none !important;
  height: auto !important;
  padding: 15px 20px !important;
  text-align: left;
  border-right: 1px solid var(--body-txt-color);
}
.popular-treatments-grid .widget-title {
  background: #000;
  color: #fff;
  padding: 10px 10px 8px 10px;
  font-size: 22px;
  font-family: var(--heading-font);
  display: inline-block;
  border-radius: 12px;
}
.blog-single-content h2,
.blog-single-content h3 {
  margin-bottom: 1rem;
}
.blog-single-content a {
  color: #c92a45;
}
.blog-single-content a:hover {
  color: #a62439;
}
.blog-single-content h2,
.blog-single-content h3 {
  font-family: var(--heading-font);
}
.blog-single-content h3 {
  font-size: 20px;
  font-weight: 600;
}
.blog-single-content .entry-meta {
  margin-bottom: 15px;
}
.blog-single-content ul.wp-block-list,
.blog-single-content ul {
  margin-left: 0px;
  padding-left: 15px;
}

.blog-single-content ol.wp-block-list,
.blog-single-content ol {
  margin-left: 10px;
}

.blog-single-content ul.wp-block-list li,
.blog-single-content ul li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 5px;
}

.blog-single-content ul.wp-block-list li::before,
.blog-single-content ul li::before {
  content: "\f058";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  color: var(--btn-color);
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
}

#custom-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

#custom-lightbox.active {
  display: flex;
}

#lightbox-img {
  max-width: 90%;
  max-height: 90vh;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 45px;
  cursor: pointer;
}

.wp-block-gallery .wp-block-image {
  cursor: pointer;
  position: relative;
  padding: 5px;
  border: 1px solid var(--btn-color);
}

.testimonials-page .testimonial-card {
  margin-bottom: 30px;
}
.testimonials-page .testimonial-card .desc-review {
  height: 130px;
}
.mobile-header .nav-drill .menu li.menu-item-has-children a,
.mobile-header
  .nav-drill
  .menu
  .menu-item
  .sub-menu
  > li.menu-item-has-children
  > a {
  position: relative;
}

.mobile-header .menu-item-has-children a::before,
.mobile-header
  .nav-drill
  .menu
  .menu-item
  .sub-menu
  > li.menu-item-has-children
  > a::before {
  content: "";
  width: 24px;
  height: 24px;
  background-size: 6px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(./assets/images/lightright_arrow.webp);
  position: absolute;
  right: 10px;
  top: 10px;
  border: 1px solid #fff;
  border-radius: 100%;
  background-color: var(--btn-color);
  display: block;
}

.mobile-header .menu-item-has-children .sub-menu li a::before {
  display: none;
}

.video-testimonial-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
}

.video-thumbnail img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: #ff0000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.content-box {
  padding: 20px;
}

.content-box h3 {
  font-size: 22px;
  margin: 0;
}

/* MODAL */

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

.video-modal.active {
  display: block;
}

.video-modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  margin: 80px auto;
  z-index: 2;
}

.video-frame-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-frame-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

.load-more-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 6px;
}

.Popular-Carousel .sow-carousel-item {
  border-bottom: 2px solid #c92a45;
  background: #fcf0f1;
  padding: 25px;
  min-height: 340px;
  border-radius: 12px;
}
.Popular-Carousel .sow-carousel-item img {
  width: 100%;
  border-radius: 12px;
}
.Popular-Carousel .sow-carousel-item .sow-carousel-content {
  display: flex;
  flex-direction: column;
}
.Popular-Carousel .sow-carousel-item .sow-carousel-content p:nth-of-type(2) {
  flex-grow: 1;
  margin-bottom: 0;
  min-height: 247px;
}

.border-top {
  border-top: 1px solid var(--body-txt-color);
  margin-top: 30px;
  padding-top: 30px;
}

.heading-mn.so-rounded.panel-widget-style {
  min-height: 230px;
}

.heading-mn .widget-title {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.faq-section {
  max-width: 1000px;
  margin: auto;
}
.faq-section .sow-accordion-title {
  font-size: 17px !important;
  font-weight: 600 !important;
  font-family: Aboreto !important;
}
.hero-section-btn .btn-mn {
  font-size: 12px;
}
.max-width-container .panel-grid-cell {
  max-width: 1300px;
  margin: 0 auto;
}
.pigmentation-row .heading-mn.so-rounded.panel-widget-style {
  min-height: 238px;
}
.sowb-button {
  font-weight: 700 !important;
  line-height: 1.5 !important;
  letter-spacing: 2px !important;
  font-family: "Manrope", sans-serif !important;
}
.card-height .panel-widget-style {
  min-height: 422px;
}
.list-design .list-show ul {
  list-style: none;
}
.about-doc-sec .sow-sub-headline,
.orders-mobile .sow-sub-headline {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  font-family: "Aboreto" !important;
}
.orders-mobile .sow-sub-headline {
  font-weight: 700 !important;
}
.qualification-table-wrap {
  overflow-x: auto;
  max-width: 1200px;
  margin: 0 auto;
}
.qualification-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: 1px solid rgba(34, 26, 25, 0.12);
}

.qualification-table tr:first-child th,
.qualification-table tr:first-child td {
  background: var(--color3);
  color: var(--color1);
}

.qualification-table th {
  width: 30%;
  padding: 22px 30px;
  text-align: left;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c92a45;
  border-bottom: 1px solid #e7e7e7;
}
table tbody td {
  color: #000 !important;
}
.qualification-table td {
  padding: 22px 30px;
  color: #555;
  font-size: 17px;
  line-height: 1.6;
  border-bottom: 1px solid #e7e7e7;
}

.qualification-table tr:nth-child(even) {
  background: #faf3ec;
}

.qualification-table tr:nth-child(odd) {
  background: #ffffff;
}

.qualification-table tr:hover {
  background: #fff7f7;
}

.qualification-table th {
  border-right: 1px solid #ececec;
}

.qualification-table tr:last-child th,
.qualification-table tr:last-child td {
  border-bottom: none;
}
.mobShow {
  display: none;
}
.call_now.whatsapp_desktop a {
  bottom: 100px;
}
.call_now.gotp a {
  left: 20px;
  width: 50px;
  height: 50px;
  line-height: 55px;
  font-size: 24px;
  color: #fff;
  background-color: #25d366;
  animation: blink 1s ease-in-out infinite none;
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes blink {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 156, 50, 0.6);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(220, 156, 50, 0.4);
  }
}
.gotp a {
  width: 45px;
  height: 45px;
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 9;
  border-radius: 100%;
  line-height: 45px;
  transition: 0.5s ease-in;
}
.decoration-none .decoration {
  display: none;
}
.two-card-max-width {
  max-width: 1000px;
  margin: 0 auto;
}
.treatment-single-page .treatment-content .panel-grid .container-fluid {
    max-width: 1300px;
    margin-inline: auto;
}
.blog-card .blog-img img{
  max-height: 250px;
  object-fit: cover;
}
.title-category h3 a:hover{
  color: #faf3ec;
}

.blog-single-content .faq-question h3{
  margin-bottom:0;
  display: flex;
  justify-content: space-between;
  font-size:16px;
}
.blog-single-content .faq-item > p{
  display: none;
}
.blog-single-content .faq-question p:first-child, .blog-single-content .faq-question p:last-child{
  display: none;
}
/* .hero-section img{
    width: 100%;
} */
/* header start*/
.hero-heading h3
{font-size: 18px;
    margin: 10px 0;
    text-transform: capitalize;
    font-weight: 300;}

    .hero-slider {
        position: relative;
        overflow: hidden;
        width: 100%;
    }

    .hero-slides {
        position: relative;
        width: 100%;
    }

    .hero-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
        z-index: 1;
    }

    .hero-slide.active {
        opacity: 1;
        visibility: visible;
        position: relative;
        z-index: 2;
    }

    .img-hero {
        width: 100%;
        height: auto;
        display: block;
    }

    .hero-dots {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
        z-index: 10;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: none;
        background: #ffffff;
        opacity: 0.5;
        cursor: pointer;
        padding: 0;
    }

    .hero-dot.active {
        opacity: 1;
        background: #000000;
    }

@media (1200px <= width < 1350px) {
  .desktop-header .menus ul li.menu-item-has-children {
    padding-right: 10px;
  }
  .menus ul {
    column-gap: 10px;
  }
  .call-details a.call,
  .menus ul li a {
    font-size: 16px;
  }
  header .btn-outline {
    padding: 10px 20px;
  }
  .desktop-header .menus ul li.menu-item-has-children::before {
    font-size: 10px;
    top: 10px;
  }
}
/* header end*/
/* Responsive */

@media (max-width: 768px) {
  .qualification-table th,
  .qualification-table td {
    display: block;
    width: 100%;
    border: none;
  }

  .qualification-table th {
    padding-bottom: 8px;
  }

  .qualification-table td {
    padding-top: 0;
  }
  .blog-single-content h3 {
    font-size: 16px;
  }
  .treatment-card .card-content .btn-outline {
    font-size: 12px;
    padding: 8px 10px;
  }
  .treatment-reviews .testimonial-track {
    padding: 20px 15px 0;
  }
  .treatment-reviews .testimonial-card {
    flex: 0 0 calc(100% / 1);
  }
  .margin-bottom .panel-grid-cell {
    margin-bottom: 0 !important;
  }
  .list-design ul {
    margin-left: 0;
  }
  .list-design ul li {
    margin-bottom: 15px;
  }
  .btn-mn {
    font-size: 12px;
  }
  .before-after-section .col-6.col-sm-6.col-md-6.col-lg-3 {
    padding: 0;
  }
  .before-after-section .container-fluid:nth-of-type(2) {
    padding: 0 15px;
  }
  .before-after-section .counter-box {
    padding: 30px 10px;
  }
  .before-after-section .row > div:nth-of-type(2) .counter-box {
    border-right: none;
    border-bottom: 1px solid var(--body-txt-color);
  }
  .before-after-section .row > div:nth-of-type(1) .counter-box {
    border-bottom: 1px solid var(--body-txt-color);
  }
  .faq-section .sow-accordion-title {
    font-size: 15px !important;
  }
  .Popular-Carousel .sow-carousel-item .sow-carousel-content p:nth-of-type(2) {
    max-height: 200px;
    overflow: auto;
    scrollbar-width: auto;
    padding-right: 10px;
  }
  .Popular-Carousel
    .sow-carousel-item
    .sow-carousel-content
    p:nth-of-type(2)::-webkit-scrollbar,
  .treatment-banner .heading-content .scroll-content::-webkit-scrollbar {
    width: 6px;
  }

  .Popular-Carousel
    .sow-carousel-item
    .sow-carousel-content
    p:nth-of-type(2)::-webkit-scrollbar-track,
  .treatment-banner .heading-content .scroll-content::-webkit-scrollbar-track {
    background-color: #eed5d9;
  }

  .Popular-Carousel
    .sow-carousel-item
    .sow-carousel-content
    p:nth-of-type(2)::-webkit-scrollbar-thumb,
  .treatment-banner .heading-content .scroll-content::-webkit-scrollbar-thumb {
    background-color: #c92a45;
    border-radius: 10px;
  }
  .Popular-Carousel .sow-carousel-item .sow-carousel-item-title {
    font-size: 18px !important;
  }
  .Popular-Carousel .sow-carousel-item {
    margin-bottom: 40px !important;
    padding: 15px;
  }
  .tech-card {
    flex: 0 0 50%;
  }

  .heading-mn .sow-headline,
  .space80 .hero-heading,
  .row-two-content .heading-mn .sow-headline {
    font-size: 24px !important;
  }
  .heading-mn .widget-title {
    font-size: 18px;
  }
  .form-appointment {
    padding: 25px 0px 0 0;
  }

  .Schedule-Appointment .hero-heading {
    font-size: 28px;
    margin-top: 0;
  }

  .contact-information {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .tech-card {
    flex: 0 0 100%;
  }
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .testimonial-card {
    flex: 0 0 calc(100% / 4);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(100% / 2);
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
}

/* HIGE BODY SECTION */

/* .high-body {
background-color:var(--color2);
} */

.testimonials.bg1 {
  background-color: #f9f9f9;
}

.high-content .hero-desc {
  margin-top: 0px;
  margin-bottom: 0px;
  color: var(--color3);
  text-align: left;
  font-size: 18px;
}

.high-img img {
  height: 100%;
  mix-blend-mode: multiply;
}

.high-body .custom-marquee {
  padding-top: 30px;
  padding-bottom: 30px;
}

/* Navigation buttons */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
}

.nav.prev {
  left: 10px;
}

.nav.next {
  right: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
  .treatment-card {
    min-width: calc(100% / 2);
  }
}

@media (max-width: 768px) {
  .treatment-card {
    min-width: 50%;
  }
}
@media (max-width: 576px) {
  .treatment-card {
    min-width: 100%;
  }
  .AdvancedImages .bgimg img,
  .treatment-card .card-img img {
    height: 350px;
  }
  .AdvancedImages .smimg img {
    height: 130px;
  }
}

/* FOOTER */
footer {
  background-image: url(./assets/images/background.webp);
  padding: 40px 0 25px 0;
  background-size: cover;
  background-position: center center;
  font-weight: 600;
  color: #fff;
}

.footer-menu ul {
  padding-left: 0;
}

.footer-menu ul li a {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--color1);
}

.site-footer .logo a {
  display: block;
}
.site-footer .social-media li:nth-child(1) a {
  background: linear-gradient(135deg, #1877f2, #6a8dff);
}

.site-footer .social-media li:nth-child(2) a {
  background: linear-gradient(135deg, #ff0000, #ff4d4d);
}

.site-footer .social-media li:nth-child(3) a {
  background: linear-gradient(
    135deg,
    #feda75,
    #fa7e1e,
    #d62976,
    #962fbf,
    #4f5bd5
  );
}

.site-footer .social-media li:nth-child(4) a {
  background: linear-gradient(135deg, #0a66c2, #004182);
}

.site-footer .social-media li:nth-child(5) a {
  background: linear-gradient(135deg, #e60023, #8c0015);
}
.footer-column {
  color: var(--color1);
}

.footer-menu ul li a:hover {
  color: var(--color2);
}

.footer-bottom,
.disclaimer {
  font-size: 14px;
  text-align: center;
  color: var(--color1);
}
.disclaimer {
  text-align: left;
  max-width: 1300px;
  margin: 0 auto;
}

.footer-heading {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--color1);
}

.address {
  margin-bottom: 20px;
}

.first-footer-column {
  font-weight: 400;
}

.call-email ul {
  padding-left: 0;
}

.call-email ul li {
  margin-bottom: 10px;
}

.call-email ul li a {
  text-transform: inherit;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 14px;
}

.footer-column a:hover {
  color: var(--global-color-primary);
}

.social-media {
  display: flex;
  column-gap: 10px;
  justify-content: flex-start;
  padding-left: 0;
  margin-left: 0;
  margin-top: 30px;
}

.social-media li a {
  width: 42px;
  height: 42px;
  background-color: var(--color3);
  display: block;
  line-height: 42px;
  text-align: center;
  border-radius: 100%;
  transition: 0.7s;
}

.social-media li a:hover {
  background-color: var(--body-txt-color);
  color: var(--btn-hvr);
}

.error-404 {
  padding: 100px 20px;
  text-align: center;
  background: #f8f8f8;
}

.error-404 h1 {
  font-size: 120px;
  line-height: 1;
  margin: 0;
  color: var(--color3);
  font-weight: 700;
}

.error-404 h2 {
  font-size: 36px;
  margin: 20px 0 10px;
  color: #222;
}

.error-404 p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

.back-home {
  display: inline-block;
  padding: 14px 30px;
  background: var(--btn-color);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.back-home:hover {
  background: var(--body-txt-color);
  color: var(--btn-hvr);
}

.our-philosophy {
  /* background-color: var(--color1); */
  background-color: #fff;
}

.our-philosophy .row {
  background: #fff;
  border: 1px solid #ddd;
}

.our-philosophy .hero-heading {
  margin-top: 0;
  margin-bottom: 30px;
}

.blogs-page .blog-card {
  position: relative;
}

.blogs-page .blog-card .meta .date-blog {
  position: absolute;
  top: 20px;
  left: 0;
  background: var(--color3);
  padding: 8px;
  border-radius: 0 10px 10px 0px;
  color: #fff;
  font-size: 12px;
}

.blogs-page .blog-card .cat-title .title a,
.blogs-page .blog-card a.read-more {
  color: var(--color3);
}

.treatment-listing .treatment-card {
  margin-bottom: 30px;
}


.custom-faq-accordion {
            margin: 20px 0;
        }

        .faq-item {
            border: 1px solid #ddd;
            margin-bottom: 10px;
            border-radius: 6px;
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            padding: 15px;
            background: #f7f7f7;
            border: 0;
            text-align: left;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
        }

        .faq-answer {
            display: none;
            padding: 15px;
            background: #fff;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

@media only screen and (max-width: 767px) {
  .nav-drill .menu li a {
    font-size: 16px;
  }
  /* a.nav-back-link {
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    gap: 8px !important;
} */
  a.nav-back-link::before {
    content: "" !important;
    width: 24px !important;
    height: 24px !important;
    background-image: url(./assets/images/lightright_arrow.webp) !important;
    background-size: 6px !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    border: 1px solid #fff !important;
    border-radius: 50% !important;
    background-color: var(--btn-color) !important;
    display: inline-block !important;
    transform: rotate(90deg) !important;
    flex-shrink: 0 !important;
  }
  .header-inner-page.mobile-header {
    position: relative;
  }
  .Schedule-Form .form-group textarea {
    max-height: 50px;
  }
  .reverse-col-mobile {
    display: flex;
    flex-direction: column-reverse;
  }
  .treatments-tab-section .tabs {
    margin-top: 0;
    margin-bottom: 1rem;
  }
  .mobShow {
    display: block !important;
  }
  .mobile-tabs {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: var(--btn-color);
    z-index: 999999;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.25);
  }

  .tab-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .Schedule-Form .form-group input,
  .Schedule-Form .form-group select,
  .Schedule-Form .form-group textarea {
    font-size: 12px;
  }
  .mobTab-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 8px;
    text-decoration: none;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .mobTab-link:last-child {
    border-right: none;
  }

  .mobTab-link i {
    font-size: 20px;
    color: #fff;
  }

  .mobTab-link:hover {
    background: var(--btn-color);
    color: #fff;
  }

  .mobTab-link:hover i {
    color: #fff;
  }

  .appointIcon {
    color: var(--btn-color);
  }

  .phoneIcon {
    color: var(--global-color-primary);
  }

  .whatsappIcon {
    color: #25d366;
  }

  .mobTab-link:hover i {
    color: #fff;
  }
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .hero-heading {
    font-size: 28px;
  }

  .hero-desc {
    font-size: 20px;
    line-height: 1;
  }

  .btns-hero {
    flex-direction: column;
    row-gap: 10px;
  }

  .custom-marquee {
    padding-top: 0;
  }

  .AdvancedAesthetic {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .ContentAdvanced {
    padding-left: 0;
    margin-bottom: 25px;
  }

  .ContentAdvanced .hero-heading {
    font-size: 32px;
  }

  .ContentAdvanced .hero-heading br {
    display: none;
  }

  .ContentAdvanced p {
    margin: 20px 0px;
    font-size: 15px;
  }

  .AdvancedImages {
    padding-right: 25px;
  }

  .AdvancedImages img {
    border-radius: 16px;
  }

  .AdvancedImages .smimg {
    margin-top: -50px;
    margin-right: -25px;
    max-width: 170px;
  }

  .mt-100 {
    margin-top: 25px;
  }

  .AdvancedAesthetic .small-title {
    text-align: left;
  }

  .logo-slide {
    min-width: calc(100% / 2);
    justify-content: center;
  }

  .space80 {
    padding: 40px 0;
  }

  .space80 .hero-heading {
    margin-top: 0;
    font-size: 32px;
  }

  .mt-50 {
    margin-top: 20px;
  }

  .treatment-content-show {
    padding: 15px;
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .treatment-content-show .cat-desc {
    margin: 15px 0px;
  }

  .treatment-content-show .category-btn {
    margin-top: 10px;
  }

  .treatment-content-show .title {
    font-size: 22px;
  }

  .treatment-content-show .cat-desc {
    font-size: 14px;
  }

  .btn-mn {
    padding: 10px 20px;
  }
  .service-tab-content .tab-pane .row {
    column-gap: 20px;
  }
  .treatments-tab-section .tab-btn {
    padding: 10px 5px;
    font-size: 11px;
    letter-spacing: 0;
  }

  .treatment-slider-wrapper {
    margin-top: 25px;
  }

  .treatment-slider {
    padding-left: 15px;
    padding-right: 15px;
  }

  .treatment-card .card-content h3 {
    font-size: 16px;
  }

  .treatments-tab-section .tabs {
    margin-top: 15px;
    padding: 0 15px;
  }

  .before-after-section .before-after-content p {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .before-after-content {
    margin-bottom: 25px;
  }

  .counter-box {
    padding: 10px;
  }

  .counter-box .counter-span {
    font-size: 24px;
  }

  .counter-box .counter-title {
    font-size: 12px;
  }

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

  .tech-card .high-content .hero-heading {
    font-size: 24px;
  }

  .high-content .hero-desc {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .real-result-card {
    flex: 0 0 calc(100% / 2);
  }

  .testimonial-slider.mt-5 {
    margin-top: 0rem !important;
  }

  .blog-section .btn-mn {
    margin-top: 25px;
  }

  footer {
    padding-top: 0;
    padding-bottom: 20px;
    margin-bottom: 66px;
  }
  .entry-title {
    font-size: 1.5rem;
  }

  .footer-menu ul li {
    display: inline-block;
    position: relative;
    padding-right: 10px;
  }

  .footer-menu ul li:after {
    content: "|";
    position: absolute;
    right: 0;
    top: 2px;
    color: #fff;
  }

  .footer-menu ul li:last-child::after {
    display: none;
  }
  .map {
    border: none;
    margin-bottom: 25px;
  }
  .map iframe {
    height: 300px;
  }

  .mobile-header {
    position: relative;
  }

  .herosection .img-hero {
    height: auto;
  }

  .btn-outline {
    padding: 10px;
  }

  .technology-slider {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .technology-slider .hero-heading {
    margin-bottom: 10px;
  }

  .real-results .container-fluid .row.mt-5 {
    margin-top: 1rem !important;
  }

  .Schedule-Form .form-group input.wpcf7-date {
    width: 100%;
  }
  .form-group p {
    margin-bottom: 5px;
  }
  .Schedule-Form .form-group label {
    margin-bottom: 5px;
    font-size: 12px;
  }
  .treatment-single-page .treatment-banner.space80 {
    padding-top: 0;
  }

  .treatment-banner .row .col-lg-5 {
    padding-right: 0;
  }

  .treatment-banner .featured-image img {
    height: 300px;
    border-radius: 16px;
  }

  .heading-content {
    padding-left: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .treatment-banner .heading-content .heading-mn {
    font-size: 24px;
  }

  .single-title .single-img img {
    height: 200px;
  }

  .blog-single-content .entry-meta {
    display: flex;
    flex-direction: column;
  }

  .video-thumbnail img {
    height: auto;
  }

  .play-btn {
    width: 52px;
    height: 52px;
  }

  .content-box h3 {
    font-size: 18px;
  }

  .video-thumbnail img {
    height: auto;
  }

  .play-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .content-box {
    padding: 8px;
    text-align: center;
  }

  .content-box h3 {
    font-size: 18px;
  }

  .close-btn {
    top: -38px;
    right: 5px;
    font-size: 32px;
  }

  .video-modal-content {
    max-width: 320px;
    margin: 80px 40px;
  }

  .grid-boxs .panel-grid-cell .widget_text .panel-widget-style {
    min-height: inherit;
  }

  .orders-mobile .panel-grid-cell:last-child {
    order: 1 !important;
  }

  .orders-mobile .panel-grid-cell:first-child {
    order: 2 !important;
  }
}
