@import url("fonts/stylesheet.css");
:root {
  --hellix: "Hellix";
  --focus-grotesk: "Focus Grotesk";
  --white: #ffffff;
  --headingColor: #211e1e;
  --secondaryColor: #ed3237;
  --primaryColor: #3e4095;
  --bg-1: #eff0fe;
  --bg-2: #d7fdeb;
  --bg-3: #e0f4f8;
  --bg-4: #fff4eb;
  --sandle: #ffebd0;
  --gray: #f6f6f6;
  --green: #d0ffd4;
  --blue: #d0f2ff;
  --pink: #ffddd0;
  --darkgreen: #d0fff0;
  --lightgreen: #efffea;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Hellix", sans-serif;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
.container {
  max-width: 1320px;
  width: 100%;
  padding: 0px 15px;
  margin: 0 auto;
}
/* owl carousel */
.owl-carousel .owl-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
  gap: 2rem;
}
.owl-carousel .owl-nav button img {
  width: 10px;
  height: auto;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  background: none;
  color: inherit;
  border: 1px solid var(--headingColor);
  padding: 0 !important;
  font: inherit;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
  background: var(--secondaryColor);
  border: 1px solid var(--secondaryColor);
}
.owl-carousel .owl-nav button.owl-prev:hover img,
.owl-carousel .owl-nav button.owl-next:hover img {
  filter: invert(1);
}
.owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 15px;
  position: relative;
  z-index: 2;
}

.owl-carousel button.owl-dot {
  width: 10px;
  height: 10px;
  background: var(--bg-1);
  border-radius: 10px;
}
.owl-carousel button.owl-dot.active {
  background: var(--primaryColor);
}
.transformation-client {
  position: relative;
}
.life-change-slider.owl-carousel .owl-nav {
  position: absolute;
  top: -30%;
  right: 0;
}
/* typography */
.menu li a {
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--headingColor);
	padding:20px 0px;
	display:block;
}
.current_page_item a{
      font-weight: 600 !important;
    color: var(--primaryColor) !important;
}
.fontmedium {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primaryColor);
}
.fontRegular {
  font-size: 1.8rem;
  font-weight: 600;
}
.font3rem {
  font-size: 3rem;
}
.title h1,
.title h2 {
  font-family: var(--focus-grotesk);
  font-weight: 900;
  font-size: 4rem;
  line-height: 1.2;
  color: var(--headingColor);
}
.title-flex h3 ,
.titleservice{
  font-size: 3rem !important;
  font-weight: 500 !important;
  color: var(--secondaryColor) !important;
}
.paragraph {
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--headingColor);
  text-decoration: none;
}
.call-2-title h2 {
  font-size: 4rem;
  color: var(--white);
  font-weight: 900;
}
.text-white {
  color: var(--white);
}
.text-black {
  color: var(--headingColor) !important;
}
.text-red {
  color: var(--secondaryColor) !important;
}
.read-more {
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--secondaryColor);
  margin-top: 1rem;
	border:none;
	background:transparent;
}
.contect-cont h3 {
  color: var(--headingColor);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.contect-cont a{
		text-decoration:none;
}
.contect-cont p ,
.contect-cont a p{
  font-size: 1.6rem;
  color: var(--headingColor);
  font-weight: 500;
	text-decoration:none;
}
.footerlink-text {
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
}
/* button */
.btn {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 1.2rem 2.8rem;
  border-radius: 1rem;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  border: none;
  outline: none;
}
.service-point li a{
    text-decoration:none;
    color: var(--headingColor);
}
.btn:hover {
  transform: scale(1.05);
}
.red-btn {
  background: var(--secondaryColor);
  color: var(--white);
	margin-top:-5px;
}
.blue-btn {
  background: var(--primaryColor);
  color: var(--white);
}

/* style */
.row-2-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.row-2-3 {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.gap5 {
  gap: 5rem;
}
.gap2 {
  gap: 2rem;
}
.gap1 {
  gap: 1rem;
}
.align-center {
  align-items: center;
}
.align-end {
  align-items: flex-end;
}
.images-fluid {
  max-width: 100%;
  height: auto;
}
.mt-1 {
  margin-top: 1rem !important;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3rem;
}
.mt-4 {
  margin-top: 4rem;
}
.mt-5 {
  margin-top: 5rem;
}
.mt-10 {
  margin-top: 10rem;
}
.mt-20 {
  margin-top: 20rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.section-top {
  margin-top: 5rem;
}
.inner-sec-margin {
  margin-top: 5rem;
}
.d-block {
  display: block;
}
.m-auto {
  margin: 0 auto;
}
.flex-column-reverse {
  display: flex;
  flex-direction: column-reverse;
}
.text-center {
  text-align: center !important;
}
.flex-btn-end {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
/* flex */
.flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.flex-column {
  flex-direction: column;
}
.title-flex-col {
  display: flex;
  flex-direction: column-reverse;
  gap: 1rem;
}
/* header */
header {
  padding: 0rem 2rem 0px;
  background-color: var(--white);
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}
header.fixed {
  position: fixed;
  z-index: 999;
  width: 100%;
  top: 0;
}
.logo a{
	padding:20px 0px;display:block;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  width: 250px;
  height: auto;
}
.menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}
.menus {
  display: none;
}
.menus img {
  width: 30px;
  height: auto;
}
/* header */
/* banner */
.banner {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-home {
/*   background-image: linear-gradient(
      rgba(228, 255, 247, 0.9),
      rgba(228, 255, 247, 0.9)
    ),
    url("../images/banner/home-banner-desk.webp"); */
	background-color:#b9f4e3;
}
/* about */
.title-flex {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.title-flex img {
  width: 30px;
  height: auto;
}
.about-cont-head,
.about-cont-body {
  padding: 3rem;
  margin: 0.5rem 0;
  border-radius: 10px;
}
.about-cont-head h3{
    min-height: 60px;
}
.about-cont-head img {
  max-width: 60px;
  height: auto;
  margin-bottom: 1.5rem;
}
.bg1 {
  background-color: var(--bg-1);
}
.bg2 {
  background-color: var(--bg-2);
}
.bg3 {
  background-color: var(--bg-3);
}
.bg4 {
  background-color: var(--bg-4);
}
/* awards */
.bg-section {
  padding: 5rem 0;
}
.bg-sandle {
  background: var(--sandle);
}
.bg-green {
  background: var(--green);
}
.bg-blue {
  background: var(--blue);
}
.bg-pink {
  background: var(--pink);
}
.bg-darkgreen {
  background: var(--darkgreen);
}
.bg-lightgreen {
  background: var(--lightgreen);
}
.bg-dark {
  background: var(--headingColor);
}
/* services */
.services-grid {
  display: grid;
  grid-template-columns: 2fr 20px 3fr;
  gap: 5rem;
}
.services-tab {
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
  background: var(--gray);
  border-radius: 20px;
  overflow: hidden;
}
.service-link {
  border: none;
  background: var(--gray);
  padding: 1.5rem 2rem;
  text-align: left;
  color: black;
}
.service-link.active {
  background: var(--primaryColor);
  color: var(--white);
}
.service-line {
  width: 1px;
  height: 100%;
  background: #cbcbcb;
}
.service-point {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  list-style: none;
  max-width: 500px;
}
.service-point li {
  margin-left: 3rem;
  position: relative;
}
.service-point li::after {
  content: "";
  position: absolute;
  background: url("../images/check_fill.webp") no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  left: -3rem;
  top: 0;
  transform: translateY(20%);
}
/* transformation */
.transformation-slider img {
  width: 100%;
  height: auto;
}
.life-change-item {
  padding: 1rem;
  background-color: var(--green);
}
.life-change-item img {
  width: 100% !important;
}
/* call to action */
.call-to-action {
  background-color: #000242;
  padding: 2rem 1rem;
  border-radius: 10px;
  display: flex;
  justify-content: right;
  align-items: center;
}
.call-to-action-flex {
  width: 70%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
  align-items: center;
  justify-content: space-between;
}
.call-to-action {
  position: relative;
}
.call-to-action::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 8%;
  background: url(../images/girl.webp) no-repeat;
  background-size: contain;
  width: 217px;
  height: 219px;
}
/* call to action 2 */
.call-to-action2 {
  background-color: #000242;
  padding: 2rem 1rem;
  border-radius: 10px;
  display: flex;
  justify-content: left;
  align-items: center;
}
.call-to-action-flex2 {
  width: 70%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
  align-items: center;
  justify-content: space-between;
}
.call-to-action2 {
  position: relative;
}
.call-to-action2::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 4%;
  background: url(../images/call-2-action-2.webp) no-repeat;
  background-size: contain;
  width: 300px;
  height: 180px;
}
/* call to action 3 */
.call-to-action3 {
  background-color: #000242;
  padding: 2rem 3rem;
  border-radius: 10px;
  display: flex;
  justify-content: left;
  align-items: center;
}
.call-to-action-flex3 {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
  align-items: center;
  justify-content: space-between;
}
.call-to-action3 {
  position: relative;
}
.smile-img {
  width: 30px;
  height: auto;
  margin-left: 30px;
}
.call-to-action3::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 30%;
  background: url(../images/call-2-action-3.webp) no-repeat;
  background-size: contain;
  width: 300px;
  height: 180px;
}
/* testimonial */
.test-cont {
  position: relative;
}
.test-cont-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}
.test-cont-black {
  background: var(--headingColor);
  width: 100%;
  padding: 2rem 0;
  border-radius: 10px;
}
.test-cont-black {
  position: absolute;
  bottom: 0;
  z-index: -1;
  left: 0;
}
.testimonial-slider .owl-nav {
  position: absolute;
  bottom: 15px;
  right: 30px;
  z-index: 1;
}
.testimonial-slider.owl-carousel .owl-nav button.owl-prev,
.testimonial-slider.owl-carousel .owl-nav button.owl-next {
  background: none;
  color: inherit;
  border: 1px solid var(--white);
  padding: 0 !important;
  font: inherit;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-slider.owl-carousel .owl-nav button.owl-prev img,
.testimonial-slider.owl-carousel .owl-nav button.owl-next img {
  filter: invert(1);
}

/* gallery */
.gallery-slider img,
.gallery-slider2 img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* brands */
.brands-btn-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.brands-btn {
  border: 1px solid var(--headingColor);
  padding: 1rem 3rem;
  border-radius: 20px;
  color: var(--headingColor);
  font-size: 1.6rem;
  font-weight: 500;
  transition: 0.3s;
  cursor: pointer;
}
.brands-btn.active {
  background-color: var(--secondaryColor);
  color: var(--white);
}
.brand-img-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.brand-img-list img {
  max-width: 200px;
  height: auto;
}
/* faq */
.faqs-container {
  width: 100%;
  margin: 0 auto;
}
details {
  margin-bottom: 1rem;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
}
summary {
  font-size: 1.8rem;
  font-weight: 600;
  padding: 1rem 2rem;
  list-style-type: "+";
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background: #ffefef; */
  color: var(--headingColor);
  border-radius: 10px;
  overflow: hidden;
}
details[open] summary {
  background: #ffefef;
}
details summary::after {
  content: "";
  background: url(../images/plus.png) no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
}
details[open] summary::after {
  content: "";
  background: url(../images/minus.png) no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
}
.content {
  font-family: var(--Outfit);
  font-size: 1.5rem;
  line-height: 1.7;
  padding: 1rem 10% 1rem 2rem;
  border-radius: 5px;
  color: var(--headingColor);
}
.blog-grid {
  display: flex;
  width: 100%;
  gap: 5rem;
}
.blog-grid-width70 {
  width: 60%;
}
.blog-grid-width20 {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.blogthumnailgrid-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.blogthumnailgrid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
}
.blogthumnailgrid img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

/* form */
.form-sec {
  background: var(--white);
  padding: 2rem;
}
.form-container {
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
  margin-top: 3rem;
}
/* Input control style */
.input-control {
  position: relative;
  margin-bottom: 2rem;
  width: 100%;
}
/* Input field style */
.input-control input,
.input-control select,
.input-control textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1.5rem;
  outline: none;
  transition: all 0.3s ease-in-out;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  background-color: white !important;
}
.input-control input:focus,
.input-control textarea:focus,
.input-control select:focus {
  border-color: #ff6347;
   background-color: white !important;
}
/* Label line style */
.lableline {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  background-color: var(--white);
  padding: 0 5px;
  transition: all 0.3s ease-in-out;
  color: #888;
  font-size: 1.6rem;
  pointer-events: none;
}
/* Move the label up on focus */
.input-control input:focus + .lableline,
.input-control textarea:focus + .lableline,
.input-control select:focus + .lableline,
.input-control input:not(:placeholder-shown) + .lableline,
.input-control textarea:not(:placeholder-shown) + .lableline,
.input-control select:not([value=""]) + .lableline {
  top: -2px;
  left: 5px;
  font-size: 12px;
  color: #ff6347;
}
.input-control select {
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 10 10"><path fill="%23ccc" d="M0 0l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px;
}
/* Simple form animation */
@keyframes formAnimation {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.form-container {
  animation: formAnimation 0.8s ease-out;
}
.contect-flex {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}
.contect-cont {
  display: flex;
  gap: 2rem;
  text-decoration: none;
  align-items: flex-start;
}
.contect-cont img {
  width: 30px !important  ;
  height: auto;
}
/* footer */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr  1fr;
  gap: 5rem;
}
.footerlink {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
	padding-left:0;
	margin-left:0;
}
.footerlink li{
	margin:0 !important;
}

.footerlink li {
  list-style: none;
}

.footerlinksocial {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}
.footerlinksocial img {
  width: 30px;
  height: auto;
  transition: all 0.3s ease-in-out;
}
.footerlinksocial img:hover {
  filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.8));
}
.line {
  width: 100%;
  height: 1px;
  background: var(--white);
  margin: 3rem 0;
}
.footer-line-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* doctor grid */
.doctors-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.width70 {
  width: calc(70% - 3rem);
  overflow: hidden;
}
.width60 {
  width: calc(60% - 3rem);
  overflow: hidden;
}
.width30 {
  width: calc(30% - 3rem);
  overflow: hidden;
}
.width40 {
  width: calc(40% - 3rem);
  overflow: hidden;
}
.swiper-container-horizontal {
  width: 100%;
  margin-bottom: 20px;
}
.swiper-container-vertical {
  width: 80%;
  height: 300px;
}
.doctor-card {
  background: var(--white);
  padding: 2rem;
  width: 80%;
  margin: 0 auto;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  display: grid;
  grid-template-columns: 2fr 1fr;
}
.doctor-card img {
  margin-left: 30%;
}
.doctor-thumbnail-container {
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: center;
  gap: 2rem;
}
.arr-btn img {
  width: 10px;
  height: auto;
}
.arr-btn {
  background: transparent;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.swiper-navigation {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  align-items: center;
  margin-right: 30%;
}
.arr-btn:hover {
  background: var(--secondaryColor);
  border: 1px solid var(--secondaryColor);
}
.arr-btn:hover img {
  filter: invert(1) brightness(1);
}
/* about us */
#card-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
.card-img-style {
  width: 100%;
  height: auto;
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.card-img-style img {
  width: 50px !important;
  height: auto !important;
}
.card-img-style p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}
.hdfc{
        width: 250px !important;
    height: auto;
    display: block;
    margin: 20px 0px  0px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.testimonial-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.testimonial-container h3 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--headingColor);
}
.testimonial-container p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--headingColor);
  text-align: justify;
}
.testimonial-flex {
  display: flex;
  align-items: center;
  gap: 30px;
}
.testimonial-flex img {
  width: 60px;
  height: auto;
}
.testimonial-container h4 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--headingColor);
}
.photo-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.card-img a img {

    max-width: 300px;
    height: 300px;
    object-fit: cover;
}
/* before after */
.before-after-btn-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.before-after-btn {
  font-size: 1.8rem;
  font-weight: 500;
  padding: 1.2rem 2.8rem;
  border-radius: 1rem;
  cursor: pointer;
}
.before-after-btn.active {
  background: var(--primaryColor);
  color: var(--white);
}

/* before after */
.before-after-container {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
}
.before-after-container img {
  width: 100%;
    /*height: 130px;*/
    height: auto;
    object-fit: cover;
    object-position: bottom;
	border-radius:10px;
}
.before-after-cont {
  display: none;
}
/* blog page grid */
.blog-page-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
}

/* post h1 */
.blog_heading h1 {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--headingColor);
  text-align: center;
}
.blog-flex-time {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 25px;
}
.blog-flex-time img {
  width: 20px;
  height: auto;
}
.blog-flex-time p {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--primaryColor);
}
.blog-img {
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
}
.blog-container-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 2rem;
}
.blog-content p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--headingColor);
  text-align: justify;
  margin-top:1rem;
}
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
  font-weight: 600;
  line-height: 1.5;
  color: var(--headingColor);
  margin: 1rem 0;
}
.blog-content h2 {
  font-size: 1.8rem;
}
.blog-content h3 {
  font-size: 1.6rem;
}
.blog-content h4 {
  font-size: 1.5rem;
}
.blog-content h5 {
  font-size: 1.4rem;
}
.blog-content h6 {
  font-size: 1.3rem;
}
.blog-content a {
  text-decoration: none;
  color: var(--primaryColor);
}
.blog-content ul ,
.pagelist{
  list-style: none; 
}
.blog-content ul li ,
.pagelist li{
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--headingColor);
  text-align: justify;
  margin: 0.5rem 0 0.5rem 1rem;
  position: relative;
  padding: 0px 10px 0px 0px;
}
.blog-content ul li::after ,
.pagelist li::after{
  content: "\2022";
  color: var(--primaryColor);
  font-weight: bold;
  display: inline-block;
  width: 2em;
  margin-left: 0.5em;
  position: absolute;
  top: 0;
  left: -2rem;
}
.follow-blog {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}
.follow-blog img {
  width: 30px;
  height: auto;
}
/* recent post  */
.recent-post img {
  width: 100%;
  height: auto;
}
.blog-flex-time2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.blog-flex-time2 img {
  width: 20px;
  height: auto;
}
.blog-flex-time2 p {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--primaryColor);
}
.recent-post h3 a {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--headingColor);
  display: block;
  margin-top: 2rem;
  text-decoration: none;
}
.recent-post p,
.blog-post p,
.blog-img-div p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--headingColor);
  display: block;
  margin: 1rem 0;
  text-decoration: none;
}
.blogs-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blogs-container .blog-post{
	box-shadow:0 0 10px 4px #80808036;
	border-radius:15px;
	padding-bottom:15px;
}
.blogs-container{
	margin-top:20px;
}
.blogs-container .images-fluid{
	border-radius:15px 15px 0 0;
}
.blogs-container .blog-post h2{
	height:50px;
	display:flex;
	align-items:center;
	margin-top:30px;
}
.blogs-container .blog-post h2, .blogs-container .blog-flex-time2, .blogs-container .blog-post p{
	padding:0 10px;
}
.blogs-container .read-more{
	padding:10px;
}
.blog-post h2 {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--headingColor);
  display: block;
  margin-top: 2rem;
}
.blog-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
.blog-img-div img {
  width: 100%;
  height: auto;
}
.blog-img-div a {
  text-decoration: none;
}
.blog-img-div a .blog-head-h2 {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--headingColor);
  display: block;
  margin-top: 1rem;
  text-decoration: none;
}
.blog-flex-time2 img {
  width: 20px;
  height: auto;
}
.banner .paragraph {
  max-width: 800px;
  margin: 2rem auto;
}
/* teeth */
.teeth-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.teeth-item img {
  width: 70px;
  height: auto;
}
.teeth-item h3 {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--headingColor);
}
.teeth-item p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--headingColor);
  text-align: center;
}
.blog-slider li {
  list-style: none;
}
.blog-slider-item img {
  width: 100%;
  height: auto;
}
.blog-slider-item a {
  text-decoration: none;
}
.blog-slider-item a h3 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--headingColor);
  display: block;
  margin-top: 1rem;
  text-decoration: none;
}
.blog-slider-item p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--headingColor);
  display: block;
  margin-top: 1rem;
  text-decoration: none;
}
/* wp */
.wp-block-group__inner-container {
  padding: 2rem;
  background: var(--white);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
/*   margin: 2rem 0; */
  border-radius: 10px;
}
.wp-block-heading,
.wp-block-group__inner-container h2 {
  margin: 0 0 1rem 0;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--headingColor);
}
.wp-block-categories-list li {
  list-style: none;
}
.wp-block-categories-list li a {
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
/*   line-height: 1.5; */
  color: #777777;
  display: block;
/*   margin-top: 1rem; */
/*   padding-bottom: 1rem; */
}
.wp-block-categories-list li a:not(:last-child) {
  border-bottom: 1px solid rgba(183, 181, 181, 0.45);
}
.recent-posts-widget {
  margin: 20px 0;
}

.recent-posts-list {
  list-style: none;
  padding: 0;
}

.recent-post-item {
  display: flex;
  margin-bottom: 10px;
}

.recent-post-thumbnail img {
  width: 100px;
  height: 75px;
  object-fit: cover;
  margin-right: 10px;
}

.recent-post-title h4 {
  margin: 0;
}
.blog-post-th {
  display: flex;
}
.blog-post-th img {
  width: 100%;
  height: auto;
}
.form-top {
  margin-top: 3rem;
  width: 100%;
  padding: 2rem;
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 10px;
}
.form-top .g-recaptcha {
    transform:scale(0.55);
    transform-origin:0 0;
	margin-left:25%;
}
.form-top .input-control{
	margin-bottom:0;
	height:45px;
}
.form-containertop {
  display: flex;
  gap: 2rem;
}
.conentstyle {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--headingColor);
  display: block;
  margin-top: 1rem;
}
.conentstyle p {
  margin: 1rem 0;
}
.conentstyle ul {
  list-style: none;
  padding: 0;
}
.banner-relative {
  position: relative;
}
.banner-relative img {
  width: 100%;
  height: auto;
}
.banner-new-content h2 {
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--primaryColor);
  text-transform: capitalize;
}
.banner-new-content h3 {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--headingColor);
  text-transform: capitalize;
}
.banner-new-content {
  position: absolute;
  top: 40%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 1;
}

/* FAQ */
.faqs-section-container {
  width: 100%;
  margin: 0 auto;
  background: #e2e3ff;
  border-radius: 10px;
}
.faq-details {
  margin-bottom: 1rem;
  cursor: pointer;
  border-radius: 0 !important;
  overflow: hidden;
  padding:1rem 0;
}
.faq-summary {
  font-size: 1.8rem;
  font-weight: 600;
  padding: 1rem 2rem;
  list-style-type: "+";
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--headingColor);
  overflow: hidden;
}
.faq-details[open] .faq-summary {
  background: transparent;
}
.faq-summary::after {
  content: "";
  background: url(../images/plus.png) no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
}
.faq-details[open] .faq-summary::after {
  content: "";
  background: url(../images/minus.png) no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
}
.faq-content {
  font-family: var(--Outfit);
  font-size: 1.5rem;
  line-height: 1.7;
padding: 0.5rem 10%   0 2rem;
  border-radius: 5px;
  color: var(--headingColor);
}

.faq-content li{
    margin-left: 2rem;
}
.faq-details:not(:last-child){
    border-bottom:1px solid white;
}
.faqs-section-container .pagelist,
.faqs-container .pagelist {
    margin-left:2rem;

}

.dl-menu a{
	cursor:pointer !important;
}

.about1 .container{
	padding: 0 140px;
}

.service-link{
	cursor:pointer;
}
.benefitsection{
	    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 50px;
}
.certificate{

    max-width: 800px;
    height: auto;
    width: 100%;
    display: block;
    margin: auto;
}
.widgets {
    position: fixed;
    bottom: 30px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index:990;
}
.calls{
        background: var(--secondaryColor);
        width:50px;
        height:50px;
        display:flex;
        justify-content:center;
        border-radius:50%;
        overflow:hidden;
        
}
.calls img {
    width: 30px;
    height: auto;
    object-fit: contain;
}
.whatsapp{
    background:#075E54;
            border-radius:50%;
        overflow:hidden;
}
.video-img img{
    width:100%;
    height:auto;
}
.video-img{
    position:relative;
}
.play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px !important;
    height: auto;
}

.popup {
    display: none; /* Hidden by default */
    position: fixed; 
    z-index: 1000; 
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%; 
    height: auto; 
    overflow: auto; 
    background-color: rgba(0, 0, 0, 0.8); /* Black w/ opacity */
    z-index:999;
}

.popup-content {
    position: relative; 
    margin: 15% auto; 
    padding: 20px; 
    max-width: 80%; 
    max-width: 400px; 
    background-color: #fff; 
}

.popup-content  video{
        width: 100%;
    height: auto;
}
.close {
    position: absolute; 
    top: 10px; 
    right: 15px; 
    font-size: 30px; 
    cursor: pointer;
}

.awards-grid{
	display:grid;
	grid-template-columns:repeat(5, 1fr);
	gap:15px;
}

.awards-grid img{
	width:100%;
	height:auto;
}

.mobile-menu{
	background:transparent !important;
}

.list-search li{
	list-style:none;
}
.wp-block-search__input{
	width:300px !important;
	border:1px solid #b2b2b2 !important;
	border-radius:24px;
}

.invisalign .invisalign-slider .item .row{
	display:grid;
	grid-template-columns:repeat(2, 1fr);
	gap:15px;
}

.invisalign .inner-sec-margin{
	width:88%;
	margin:0 auto;
	position:relative;
}

.invisalign-slider .row .top img{
	width:100% !important;
	height:auto !important;
}

.invisalign-slider .bottom{
	display:grid;
	grid-template-columns:repeat(3, 1fr);
	gap:10px;
	margin-top:10px;
}

.invisalign-slider .bottom img{
	width:100%;
	height:auto;
}

.invisalign-slider .owl-prev{
	position:absolute;
	top:45%;
	left:-70px;
}

.invisalign-slider .owl-next{
	position:absolute;
	top:45%;
	right:-70px;
}

.call-qr{
	margin-top: 15px;
    background-color: white;
    width: fit-content;
    padding: 10px;
    border-radius: 5px;
}

.call-qr img{
	width:auto;
	height:120px;
}

.about-cont-body .paragraph {
    overflow: hidden;
    max-height: calc(3 * 1.5em); /* Adjust 1.5em to your line-height */
    transition: max-height 0.3s ease;
}

.paragraph.expanded {
    max-height: none; /* Remove limit when expanded */
}

.desktop-view img{
	width:100%;
	height:auto;
	border-radius:15px;
}

.comment-reply-title{
	font-size:24px;
}

.form-submit{
	margin:0 auto;
}

.form-submit .submit{
	background: var(--secondaryColor) !important;
    color: var(--white) !important;
    width: fit-content;
}

.gallery-slider .owl-item img{
	height:300px !important;
	object-fit:cover;
}

.blog-grid-width{
	width:100%;
}

.home-doctor-slider-main .row-2-2{
	display:flex;
}

.home-doctor-slider-main-left{
	width:50%;
}

.home-doctor-slider-main-right{
	width:50%;
}
.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
/*     background-color: #e9ecef; */
    border-radius: .25rem;
	justify-content: center;
}
.breadcrumb li {
    color: #000;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
}
.breadcrumb li a {
    color: #000;
    padding: 0px;
}
.breadcrumb-item.breadcrumb-item a::after {
    display: inline-block;
    padding-right: .2rem;
    padding-left: .2rem;
    color: #000;
    content: "/";
}