.banner {
  width: 100%;
  margin: 0px auto 0px auto;
}

#demo.carousel {
  width: 100% !important;
}

#demo .carousel-item img {
  width: 100%;
}

#demo3.carousel {
  width: 100% !important;
}

#demo3 .carousel-item img {
  width: 100%;
}

#demo4.carousel {
  width: 100% !important;
}

#demo5.carousel {
  width: 100% !important;
}

#mobile-demo .carousel {
  width: 100% !important;
}

#mobile-demo1 .carousel {
  width: 100% !important;
}

#demo4 .carousel-item img {
  width: 100%;
}

#demo5 .carousel-item img {
  width: 100%;
}

#mobile-demo .carousel-item img {
  width: 100%;
}

#mobile-demo1 .carousel-item img {
  width: 100%;
}

.bannerleftcolumn {
  float: left;
  width: 60%;
  text-align: left;
}

.bannerrightcolumn {
  float: left;
  width: 100%;
  text-align: right;
}

.bannerheading {
  margin: 0;
  font-size: 45px;
  line-height: 54px;
  color: #ffffff;
  color: black;
  padding-bottom: 10px;
  font-weight: bold;
  font-family: "Exo-SemiBold" !important;
}

.bannerleftcolumn p {
  color: #ffffff;
  margin: 10px 0 0 0;
  font-size: 18px;
}

/* #demo .carousel-caption {
     position: absolute;
     right: 10%;
     top: 8rem;
     left: 10%;
     padding-top: 0rem;
     padding-bottom: 1.25rem;
 } */
#demo .carousel-caption {
  position: absolute;
  right: 10%;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  height: 100%;
}

#demo .carousel-control-next-icon,
#demo .carousel-control-prev-icon {
  display: inline-block;
  width: 4rem;
  height: 4rem;
  background-repeat: no-repeat;
  background-position: 100%;
  background-size: cover;
}

#demo .carousel-control-next,
#demo .carousel-control-prev {
  opacity: 1;
}

#demo .carousel-indicators [data-bs-target],
#demo3 .carousel-indicators [data-bs-target],
#demo4 .carousel-indicators [data-bs-target],
#demo5 .carousel-indicators [data-bs-target],
#mobile-demo .carousel-indicators [data-bs-target],
#mobile-demo1 .carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 20px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

img[alt="mobileLogo"] {
  all: unset;
  width: 120% !important;
  height: auto !important;
  margin-top: 4%;
  /* display: block; */
}

#demo .carousel-indicators [data-bs-target],
#demo3 .carousel-indicators [data-bs-target],
#demo4 .carousel-indicators [data-bs-target],
#demo5 .carousel-indicators [data-bs-target],
#mobile-demo .carousel-indicators [data-bs-target],
#mobile-demo1 .carousel-indicators [data-bs-target] {
  background-color: #323232;
}

#demo .carousel-indicators .active,
#demo3 .carousel-indicators .active,
#demo4 .carousel-indicators .active,
#demo5 .carousel-indicators .active,
#mobile-demo .carousel-indicators .active,
#mobile-demo1 .carousel-indicators .active {
  opacity: 1;
}

.video-block {
  position: relative;
  margin-top: 4rem;
  margin-left: 3rem;
  float: left;
}

.video-block .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-btn {
  transition: all 0.3s;
  position: relative;
  z-index: 99;
}

.video-btn-light .video-btn-icon {
  background: transparent;
  color: #000;
  font-size: 24px;
}

.video-btn:hover .video-btn-icon,
.video-btn:focus .video-btn-icon {
  background: #ecc79d;
  color: #fff;
  font-size: 24px;
}

.video-btn:hover,
.video-btn:focus {
  text-decoration: none;
  color: #000;
}

.video-btn-icon {
  display: block;
  width: 55px;
  height: 55px;
  border: 1px solid #f4cca1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 24px;
  margin: 10px;
  color: #f1cba0;
  background: transparent;
  transition: all 0.3s;
}

.video-btn-icon::before,
.video-btn-icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgb(219 184 143);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation: ripple-1 2s infinite ease-in-out;
  animation: ripple-1 2s infinite ease-in-out;
  z-index: -1;
}

.video-btn-icon::after {
  width: 100%;
  height: 100%;
  border-bottom: rgb(197 170 133);
  -webkit-animation: ripple-2 2s infinite ease-in-out;
  animation: ripple-2 2s infinite ease-in-out;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@-webkit-keyframes ripple-1 {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

@keyframes ripple-1 {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

@-webkit-keyframes ripple-2 {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

@keyframes ripple-2 {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

.aboutdoctorsection {
  background-color: #B2D6D8;
  padding: 3rem 40px;
}

.aboutdoctorcontent {
  width: 93%;
}

.aboutsubheading {
  font-family: "Exo-Regular" !important;
  font-size: 20px;
  color: #000;
}

.aboutdoctorcontent h1 {
  font-family: "Exo-Regular" !important;
  margin-bottom: 0px;
  font-size: 30px;
  letter-spacing: 1px;
  color: #000;
  padding-bottom: 10px;
}

.aboutdoctorcontent {
  font-family: "Exo-Regular" !important;
  margin-bottom: 0px;
  font-size: 45px;
  line-height: 48px;
  letter-spacing: 2px;
  color: #000;
}

.doctorhomeheading {
  /* font-family: "Exo-Regular" !important; */
  font-family: 'Titillium Web' !important;
  margin-bottom: 0px;
  font-size: 45px;
  line-height: 48px;
  letter-spacing: 2px;
  color: #000;
}

.mddermatology {
  color: #000;
  font-size: 21px;
  line-height: 22px;
  padding-bottom: 12px;
  /* font-family: "Exo-SemiBold" !important; */
}

.aboutheading {
  font-size: 22px;
  color: #000;
  line-height: 24px;
  padding-bottom: 12px;
  /* font-family: "Exo-SemiBold" !important; */
}

.aboutdoctorcontent p {
  font-family: "Exo-Regular" !important;
  font-size: 18px;
  margin-bottom: 0px;
  color: #000;
}

.aboutwhyheading {
  font-size: 21px;
  color: #000;
  margin-top: 1rem;
  margin-bottom: 10px;
  font-family: "Exo-Regular" !important;
}

.aboutdoctorcontent ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
  margin-top: 10px;
}

.aboutdoctorcontent ul li {
  padding: 8px 10px 8px 32px;
  margin: 0;
  line-height: 22px;
  font-size: 18px;
  width: 47%;
  color: #000;
  font-family: "Exo-Regular" !important;
  display: inline-block;
  position: relative;
  vertical-align: top;
}

.aboutdoctorcontent ul li::before {
  content: "\F134";
  border-radius: 50%;
  color: #000;
  display: block;
  width: 36px;
  height: 36px;
  margin-right: 10px;
  line-height: 36px;
  text-align: center;
  font-family: bootstrap-icons !important;
  position: absolute;
  font-size: 18px;
  margin-left: -36px;
  margin-top: -6px;
}

.aboutdoctorcontent ul li strong {
  font-weight: bold;
}

.aboutdoctorcontent ul li:last-child {
  border-bottom: 0px;
}

.doctorrightpic {
  background-color: #d4c9a2;
  position: relative;
  border-radius: 11px;
  padding-bottom: 1.5rem;
}

.doctorrightpic img {
  width: 100%;
  border-radius: 11px;
  margin-top: -1.5rem;
  margin-left: -1.5rem;
}

.youtubeicon {
  position: absolute;
  bottom: 55px;
  right: 40px;
  display: inline-block;
  color: #fff;
}

.youtubeicon a {
  color: #fff;
  font-size: 18px;
  font-family: "Exo-Regular" !important;
  text-decoration: none;
}

.youtubeicon a:hover {
  color: #B2D6D8;
  text-decoration: none;
}

.youtubeicon img {
  width: 70px;
  margin-bottom: -20px;
  margin-right: 5px;
}

.abouttop {
  margin-top: 1.5rem;
}

.moreabout {
  background: #1a8a91;
  padding: 11px 20px;
  color: #fff;
  font-size: 18px;
  font-family: "Exo-SemiBold" !important;
  transition: 0.4s;
}

.moreabout:hover {
  background: #e090ad;
  color: #fff;
}

.owl-carousel .owl-stage {
  padding-left: 0 !important;
}

.owl-carousel .owl-stage-outer {
  overflow: unset;
}

.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  width: 44px;
  border: 1px solid #3f4e46;
  border-radius: 50%;
  height: 44px;
  line-height: 28px !important;
  background-color: #1a8a91;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background-color: #1a8a91;
  color: #fff;
  border: none;
  padding: 0 !important;
  font-size: 48px;
  width: 44px;
  height: 44px;
  line-height: 44px;
  margin-right: 0px;
  font-family: bootstrap-icons !important;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background-color: #B2D6D8;
  color: #fff;
  border: none;
  padding: 0 !important;
  font-size: 44px;
  width: 44px;
  height: 44px;
  line-height: 44px;
  margin-right: 10px;
  font-family: bootstrap-icons !important;
}

.owl-carousel .owl-nav .owl-next:focus,
.owl-carousel .owl-nav .owl-prev:focus {
  outline: 0;
}

.owl-carousel .item {
  margin: 20px 0;
}

.owl-nav {
  float: right;
}

.procedurebg {
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 5rem 40px;
  /* background-image: url(../Assets/BeforeAfter/dermatologist\ indore.jpg); */
  background-image: url(../Assets/BeforeAfter/image\ 2\ couple.jpg);
}

.proceduresection {
  padding: 2rem 0px;
  margin: 0px;
  text-align: left;
}

.faceicon img {
  float: left;
  margin-right: 15px;
}

.faceicon {
  padding: 0px;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  padding: 20px;
  margin-bottom: 15px;
  display: inline-block;
  border: #ffff 7px solid;
}

.proceduresubheading {
  font-family: "Titillium Web" !important;
  font-size: 20px;
  padding-bottom: 5px;
  letter-spacing: 2px;
  color: #fff;
  position: relative;
}

.procedureheading {
  font-family: "Exo-Regular" !important;
  font-size: 45px;
  line-height: 45px;
  letter-spacing: 5px;
  color: #fff;
  padding-bottom: 10px;
  position: relative;
}

.procedureheading::before {
  display: none;
  content: "";
  width: 40px;
  height: 3px;
  top: 25px;
  position: absolute;
  left: 220px;
  border-top: #efe9d3 3px solid;
}

.proceduresection p {
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  font-family: "Exo-Regular" !important;
}

.box {
  padding: 10px 0px;
}

.procedurebtn {
  background: linear-gradient(#fff, #fff);
  background-size: 0 100%;
  background-repeat: no-repeat;
  transition: 0.4s;
  padding: 9px 1rem;
  border: 1px solid #fff;
  font-size: 18px;
  margin: 3px 5px;
  overflow: hidden;
  cursor: pointer;
  color: #fff;
  display: inline-block;
}

.procedurebtn:hover {
  background-size: 100% 100%;
  color: #000;
}

.concernwhitetext {
  color: #000;
  padding: 2rem 40px;
  text-align: center;
  font-size: 55px;
  line-height: 60px;
}

.concernbg {
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 5rem 40px;
  /* background-image: url("../Assets/Images/procedurebg.webp"); */
  background-image: url(../Assets/BeforeAfter/image\ 1\ lady.jpg);
}

#treatment_concern {
  background-image: url("../Assets/Images/skin\ doctor\ indore.webp");
}

.concernbgsection {
  padding: 2rem 0px;
  margin: 0px;
  float: left;
  text-align: right;
}

.concernicon {
  padding: 0px;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  padding: 15px;
  margin-bottom: 15px;
  display: inline-block;
  /* border: #3f4e46 7px solid; */
  border: black 7px solid;
}

.concernicon img {
  padding: 0px;
}

.concernsubheading {
  font-family: "Titillium Web" !important;
  font-size: 20px;
  padding-bottom: 3px;
  letter-spacing: 2px;
  color: #000;
  text-transform: uppercase;
  position: relative;
}

.concernheading {
  font-family: "Exo-Regular" !important;
  font-size: 45px;
  line-height: 45px;
  letter-spacing: 5px;
  padding-bottom: 10px;
  color: #000;
  position: relative;
}

.concernheading::before {
  display: none;
  content: "";
  width: 40px;
  height: 3px;
  top: 30px;
  position: absolute;
  left: 275px;
  border-top: #000 3px solid;
}

.concernbgsection p {
  color: #000;
  font-size: 18px;
  line-height: 28px;
  font-family: "Exo-Regular" !important;
}

.concernbox {
  padding: 10px 0px;
}

.concernbtn {
  background: linear-gradient(#000, #000);
  background-size: 0 100%;
  background-repeat: no-repeat;
  transition: 0.4s;
  padding: 9px 1rem;
  border: 1px solid #000;
  font-size: 18px;
  margin: 3px 5px;
  overflow: hidden;
  cursor: pointer;
  color: #000;
  display: inline-block;
}

.concernbtn:hover {
  background-size: 100% 100%;
  color: #fff;
}

.concernwhitetext {
  color: #000;
  padding: 2rem 40px;
  text-align: center;
  font-size: 45px;
}

.ourclinic {
  width: 100%;
  background: #1a8a91 top left repeat-x;
  padding: 3rem 0;
  text-align: center;
}

.ourclinicsubheading {
  color: #fff;
  font-size: 20px;
  line-height: 22px;
  padding-bottom: 5px;
  font-family: "Exo-Regular" !important;
}

.ourclinic h3,
.ourclinic h2 {
  font-size: 45px;
  letter-spacing: 2px;
  color: #fff;
}

.ourclinic p {
  font-size: 18px;
  color: #fff;
  /* padding-left: 10%; */
  /* padding-right: 10%; */
  text-align: left;
  padding-bottom: 10px;
  font-family: "Exo-Regular" !important;
}

.clinicitem {
  margin-top: 2.5rem;
  padding: 5px;
  transition-duration: 0.2s;
  transition-property: transform;
}

.clinicitem:hover {
  background-color: #fff;
  transform: translateY(-10px);
}

.clinicitem img {
  width: 44px;
  filter: brightness(0) invert(1);
  transition: 0.3s ease;
}

.clinicitemheading {
  font-size: 24px !important;
  color: white;
  margin-top: 10px;
  padding-bottom: 3px;
  /* font-family: "Exo-SemiBold" !important; */
  transition: color 0.3s ease;
}

.clinicitem p {
  font-size: 17px;
  color: white;
  padding: 0px;
  font-family: "Exo-Regular" !important;
  transition: color 0.3s ease;
}

.clinicitem:hover img {
  filter: brightness(0) invert(0);
}

.clinicitem:hover .clinicitemheading,
.clinicitem:hover p {
  color: black;
}

section.see_dermatologist {
  padding: 40px 0;
}

section.see_dermatologist .derma_hd {
  font-size: 45px;
  line-height: 48px;
  letter-spacing: 2px;
  color: #000;
  margin-bottom: 20px;
}

.tile_box {
  border: 2px solid #125f64;
  border-radius: 8px;
  padding: 65px 12px 12px 12px;
  position: relative;
  margin: 0 8px;
  min-width: 22%;
}

.logo_img {
  background-color: #125f64;
  padding: 20px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -50px;
}

.logo_img img {
  width: 100%;
}

.treatment_box {
  padding-top: 75px;
}

.treatment_hd {
  font-size: 24px !important;
  font-weight: bold;
  margin-bottom: 16px;
}

.treatment_box {
  min-width: 960px;
  margin-left: 40px;
  display: flex;
  overflow-x: auto;
  padding-bottom: 10px;
}

.treatment_box::-webkit-scrollbar {
  height: 5px;
}

.treatment_box::-webkit-scrollbar-track {
  background: #3b9599;
}

.treatment_box::-webkit-scrollbar-thumb {
  background: #e090ad;
}

.treatment_box::-webkit-scrollbar-thumb:hover {
  background: #cb4c7a;
}

.benefits_consulting {
  background-color: #f1ecd6;
  padding: 40px 0 0 0;
}

.headingMn {
  font-size: 45px;
  line-height: 48px;
  letter-spacing: 2px;
  color: #000;
  margin-bottom: 20px;
  text-align: center;
}

.img-testimonial {
  margin-left: 20px;
}

.img-testimonial img {
  width: 100%;
}

p.heading-para {
  padding: 0 20px;
  text-align: center;
  margin-bottom: 24px;
}

.benefits_consulting .box_1,
.box_2 {
  width: 50%;
}

.benefits_consulting .box_1 {
  margin-left: 40px;
}

.benefits_points {
  display: flex;
}

.scroll-testimonial .review-item {
  background-color: #fff;
  border: 1px solid #c0b47c;
  padding: 15px;
  color: #3f4e46;
  position: relative;
  margin-bottom: 15px;
  counter-increment: headerCounter;
  padding-left: 25px;
}

.scroll-testimonial .review-item p {
  margin-bottom: 0;
}

.review-heading {
  font-size: 18px !important;
  color: #3f4e46;
  margin-bottom: 10px;
}

.scroll-testimonial {
  min-height: 450px;
  max-height: 450px;
  overflow-y: auto;
  padding-right: 15px;
  padding-left: 30px;
}

.scroll-testimonial .review-item::before {
  content: counter(headerCounter, decimal-leading-zero);
  position: absolute;
  left: -16px;
  top: 50%;
  width: 30px;
  height: 30px;
  background-color: #1a8a91;
  border-radius: 100%;
  z-index: 9;
  transform: translateY(-50%);
  text-align: center;
  line-height: 30px;
  color: white;
}

.scroll-testimonial::-webkit-scrollbar {
  width: 5px;
}

.scroll-testimonial::-webkit-scrollbar-track {
  background: #3b9599;
}

.scroll-testimonial::-webkit-scrollbar-thumb {
  background: #e090ad;
}

.scroll-testimonial::-webkit-scrollbar-thumb:hover {
  background: #cb4c7a;
}

.doc-section .green-section {
  background-color: #125f64;
}

.doc-section .green-section .doc-title {
  color: white;
  font-size: 45px;
  line-height: 48px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.doc-section .green-section .content-sec {
  width: 70%;
  margin: auto;
  padding: 70px 50px;
  padding-top: 50px;
  color: white;
  line-height: 1.5;
}

.doc-img-section {
  display: flex;
}

.box1,
.box2 {
  width: 50%;
}

.box1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box2 {
  background-color: #f1ecd6;
  padding: 50px;
  box-shadow: -10px -20px 10px #3131311a;
  margin-top: -50px;
  position: relative;
}

.box2:after {
  content: "";
  position: absolute;
  top: 19px;
  left: -50px;
  width: 0;
  height: 0;
  border-left: 36px solid transparent;
  border-right: 36px solid transparent;
  border-top: 36px solid #2c3630;
  transform: rotate(-45deg);
}

.box2 ul li,
.box2 p {
  color: #3f4e46;
  /* font-family: "Exo-SemiBold"; */
}

.box2 ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.box2 ul li {
  padding-bottom: 10px;
  font-size: 18px;
}

.box2 p {
  margin-top: 20px;
  /* line-height: 1.7; */
  line-height: 1.5;
}

.doctorrightpic iframe {
  height: 325px;
}

.videoitem iframe {
  height: 360px;
}

.home-mob-video .firstvideodiv,
#carouselExampleControls1 lite-youtube.video_iframe {
  width: auto !important;
}

@media screen and (max-width: 1366px) and (min-width: 1200px) {
  .doctorrightpic iframe {
    height: 290px;
  }

  .videoitem iframe {
    height: 310px;
  }
}

@media screen and (max-width: 1100px) and (min-width: 992px) {
  .banner {
    margin: 76px auto 0px auto;
  }

  .bannerheading {
    font-size: 35px;
    line-height: 42px;
    padding-bottom: 8px;
  }

  /* #demo .carousel-caption {
         right: 11%;
         top: 4rem;
         left: 11%;
         padding-bottom: 1rem;
     } */

  #demo .carousel-caption {
    right: 8%;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    padding: 0;
  }

  .bannerleftcolumn p {
    margin: 8px 0 0 0;
    font-size: 17px;
  }

  .aboutdoctorsection {
    padding: 2rem 20px;
  }

  .aboutdoctorcontent h1 {
    font-size: 40px;
    line-height: 44px;
    letter-spacing: 1px;
    padding-bottom: 5px;
  }

  .aboutdoctorcontent .doctorhomeheading {
    font-size: 40px;
    line-height: 44px;
    letter-spacing: 1px;
    padding-bottom: 5px;
  }

  .aboutdoctorcontent h1 {
    font-size: 30px;
    line-height: 33px;
    letter-spacing: 1px;
    padding-bottom: 10px;
  }

  .aboutdoctorcontent .doctorhomeheading {
    font-size: 40px;
    letter-spacing: 1px;
    line-height: 44px;
    padding-bottom: 5px;
    padding-top: 5px;
  }

  .aboutsubheading {
    font-size: 18px;
  }

  .mddermatology {
    font-size: 20px;
    line-height: 22px;
    padding-bottom: 8px;
  }

  .aboutheading {
    font-size: 20px;
    line-height: 22px;
    padding-bottom: 10px;
  }

  .aboutdoctorcontent ul li {
    padding: 5px 10px 5px 28px;
    line-height: 22px;
    font-size: 17px;
    width: 100%;
  }

  .aboutdoctorcontent p {
    /* font-size: 17px; */
    font-size: 16px;
    line-height: 26px;
  }

  .procedurebg {
    background-position: 30% top !important;
    padding: 2rem 20px;
  }

  .faceicon {
    width: 120px;
    height: 120px;
    padding: 10px;
    border: #ffff 6px solid;
  }

  .proceduresubheading {
    font-size: 18px;
    padding-bottom: 0px;
    letter-spacing: 1px;
  }

  .procedureheading {
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 3px;
    padding-bottom: 5px;
  }

  .procedureheading::before {
    width: 30px;
    height: 2px;
    top: 25px;
    left: 90px;
    border-top: #efe9d3 2px solid;
  }

  .proceduresection p {
    /* font-size: 17px; */
    font-size: 16px;
    line-height: 26px;
  }

  .procedurebtn {
    padding: 6px 10px;
    border: 1px solid #B2D6D8;
    font-size: 17px;
    margin: 1px 2px;
  }

  .concernwhitetext {
    padding: 1rem 20px;
    font-size: 40px;
    line-height: 48px;
  }

  .concernbg {
    background-position: 60% top !important;
    padding: 2rem 20px;
  }

  .concernicon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    padding: 10px;
    margin-bottom: 15px;
    /* border: #3f4e46 6px solid; */
    border: black 7px solid;
  }

  .concernsubheading {
    font-size: 18px;
    padding-bottom: 0px;
    letter-spacing: 1px;
  }

  .concernheading {
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 3px;
  }

  .concernbgsection p {
    /* font-size: 17px; */
    font-size: 16px;
    line-height: 26px;
  }

  .concernheading::before {
    width: 30px;
    height: 2px;
    top: 27px;
    left: 220px;
    border-top: #3f4e46 2px solid;
  }

  .concernbtn {
    padding: 6px 10px;
    font-size: 17px;
    margin: 1px 2px;
  }

  .ourclinic {
    padding: 2rem 0px 2rem 0px;
  }

  .ourclinicsubheading {
    font-size: 18px;
    line-height: 20px;
    padding-bottom: 2px;
  }

  .ourclinic h3,
  .ourclinic h2 {
    font-size: 40px;
    letter-spacing: 1px;
  }

  .ourclinic p {
    /* font-size: 17px; */
    font-size: 16px;
    /* padding-left: 3%; */
    /* padding-right: 3%; */
  }

  .doc-para {
    font-size: 16px !important;
  }

  .clinicitemheading {
    padding-bottom: 2px;
    line-height: 25px;
  }

  .clinicitem {
    margin-top: 1.5rem;
    padding: 0px;
  }

  .clinicitem p {
    line-height: 25px;
  }

  .homevideosection {
    padding: 2rem 20px 2rem 20px;
  }

  .homevideosubheading {
    font-size: 18px;
    line-height: 20px;
    padding-bottom: 2px;
  }

  .homevideoheading {
    font-size: 40px;
    letter-spacing: 1px;
    line-height: 40px;
  }

  .homevideocenter p {
    /* font-size: 17px; */
    font-size: 16px;
  }

  .firstvideooverlay {
    padding: 4rem 1rem 4rem 1rem;
  }

  .secondvideooverlay {
    padding: 4rem 1rem 4rem 1rem;
  }

  .thirdvideooverlay {
    padding: 4rem 1rem 4rem 1rem;
  }

  .homesubvdheading {
    font-size: 18px;
    padding-bottom: 0px;
  }

  .hvlistheading {
    font-size: 27px;
    line-height: 27px;
    padding-bottom: 5px;
  }

  .homesubvdheading2 {
    font-size: 18px;
    padding-bottom: 0px;
  }

  .hvlistheading2 {
    font-size: 27px;
    line-height: 27px;
    padding-bottom: 5px;
  }

  .patienttestimonialbg {
    padding: 2rem 20px 4rem 20px;
  }

  .patientsubheading {
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 20px;
    padding-bottom: 5px;
  }

  .patientheading {
    font-size: 40px;
    letter-spacing: 1px;
    line-height: 48px;
    padding-bottom: 5px;
  }

  .patienttestimonialboxdiv p {
    /* font-size: 17px; */
    font-size: 16px;
    line-height: 27px;
  }

  .patienttestimonialsection {
    padding: 2rem 20px;
    margin: 0px 2rem;
  }

  #demo2 .carousel-control-prev {
    width: 20%;
  }

  #demo2 .carousel-control-next {
    width: 20%;
  }

  .patientdiv p {
    /* font-size: 17px; */
    font-size: 16px;
    line-height: 26px;
  }

  .patientdiv small {
    font-size: 18px;
  }

  #demo2 .carousel-indicators li {
    width: 48px;
    height: 48px;
  }

  #demo2 .carousel-indicators .active {
    width: 60px;
    height: 60px;
  }

  #demo2 .carousel-indicators {
    bottom: -70px !important;
    margin-top: 0px;
  }

  .lblogsubheading {
    font-size: 18px;
    letter-spacing: 1px;
    padding-bottom: 2px;
  }

  .lblogheading {
    font-size: 40px;
    line-height: 40px;
    letter-spacing: 1px;
    padding-bottom: 8px;
  }

  .latestblog p {
    /* font-size: 17px; */
    font-size: 16px;
  }

  .latestblog {
    padding: 2rem 20px;
  }

  .last-child {
    display: none;
  }

  .doc-section .green-section .content-sec {
    width: 100%;
    padding: 70px 40px;
    padding-top: 40px;
  }

  .doc-section .green-section .doc-title {
    font-size: 40px;
    line-height: 42px;
    margin-bottom: 14px;
  }

  .box2 {
    padding: 25px;
  }

  section.see_dermatologist .derma_hd {
    font-size: 40px;
    line-height: 42px;
    margin-bottom: 15px;
  }

  .treatment_box {
    padding-top: 60px;
  }

  .tile_box {
    min-width: 33%;
  }

  .headingMn {
    font-size: 40px;
    line-height: 44px;
    margin-bottom: 15px;
  }

  p.heading-para {
    padding: 0;
  }

  .scroll-testimonial {
    margin-bottom: 20px;
  }

  .box_2 {
    display: flex;
    align-items: center;
  }

  .doctorrightpic iframe {
    height: 225px;
  }

  .videoitem iframe {
    height: 260px;
  }
}

@media screen and (max-width: 991.99px) and (min-width: 768px) {
  .bannerheading {
    font-size: 27px;
    line-height: 36px;
    padding-bottom: 0px;
  }

  /* #demo .carousel-caption {
         right: 7%;
         top: 3rem;
         left: 7%;
         padding-top: 0rem;
         padding-bottom: 1rem;
     } */
  #demo .carousel-caption {
    right: 8%;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    padding: 0;
  }

  .carousel-control-next,
  .carousel-control-prev {
    width: 8%;
  }

  .bannerleftcolumn p {
    margin: 8px 0 0 0;
    font-size: 17px;
    line-height: 25px;
  }

  .video-block {
    margin-top: 3rem;
    margin-left: 2rem;
  }

  .aboutdoctorsection {
    padding: 3rem 20px 2rem 20px;
  }

  .aboutdoctorcontent ul li {
    padding: 5px 0px 5px 28px;
    margin: 0;
    line-height: 25px;
    font-size: 17px;
    width: 100%;
  }

  .aboutdoctorcontent ul li::before {
    width: 30px;
    height: 30px;
    margin-right: 0px;
    line-height: 30px;
    font-size: 17px;
    margin-left: -30px;
    margin-top: -3px;
  }

  .abouttop {
    margin-top: 1rem;
  }

  .aboutdoctorcontent {
    width: 100%;
    margin-top: 1rem;
  }

  .aboutdoctorcontent h1 {
    font-size: 30px;
    letter-spacing: 1px;
    padding-bottom: 10px;
  }

  .aboutdoctorcontent .doctorhomeheading {
    margin-bottom: 0px;
    font-size: 40px;
    line-height: 42px;
    letter-spacing: 2px;
  }

  .mddermatology {
    color: #000;
    font-size: 20px;
    line-height: 22px;
    padding-bottom: 10px;
  }

  .aboutheading {
    font-size: 22px;
    line-height: 24px;
    padding-bottom: 0px;
  }

  .aboutdoctorcontent p {
    /* font-size: 17px; */
    font-size: 16px;
  }

  .aboutwhyheading {
    font-size: 20px;
    margin-top: 1rem;
    margin-bottom: 5px;
  }

  .doctorrightpic {
    padding-bottom: 1rem;
    margin-left: 1.5rem;
  }

  .procedurebg {
    background-position: inherit !important;
    background-size: unset !important;
    background-repeat: unset !important;
    background-image: none !important;
    padding: 2rem 20px 1rem 20px;
    background-color: #1a8a91;
  }

  .proceduresection {
    padding: 0rem 0px;
    float: none;
    text-align: center;
  }

  .procedureheading {
    font-size: 35px;
    line-height: 38px;
    letter-spacing: 2px;
    padding-bottom: 5px;
  }

  .procedureheading::before {
    width: 25px;
    height: 2px;
    top: 16px;
    display: none;
    left: 40px;
    border-top: #efe9d3 2px solid;
  }

  .proceduresection p {
    /* font-size: 17px; */
    font-size: 16px;
    line-height: 26px;
  }

  .procedurebtn {
    padding: 7px 10px;
    border: 1px solid #B2D6D8;
    font-size: 16px;
    margin: 0px 0px;
  }

  .box {
    padding: 0px 0px;
  }

  .faceicon {
    width: 100px;
    height: 100px;
    padding: 10px;
    margin-bottom: 12px;
    border: #fff 6px solid;
  }

  .concernbg {
    background-position: inherit !important;
    background-size: unset !important;
    background-repeat: unset !important;
    background-image: none !important;
    padding: 2rem 20px 1rem 20px;
    background-color: #f0ecd3;
  }

  .concernwhitetext {
    padding: 1rem 10px;
    font-size: 35px;
    line-height: 40px;
  }

  .concernbgsection {
    padding: 0rem 0px 0rem 0px;
    margin: 0px;
    float: none;
    text-align: center;
  }

  .concernheading {
    font-size: 35px;
    line-height: 40px;
    letter-spacing: 2px;
    padding-bottom: 5px;
  }

  .proceduresubheading {
    font-size: 17px;
    padding-bottom: 3px;
    letter-spacing: 1px;
  }

  .concernheading::before {
    width: 25px;
    height: 2px;
    top: 18px;
    left: 160px;
    display: none;
    border-top: #3f4e46 2px solid;
  }

  .concernsubheading {
    font-size: 18px;
    padding-bottom: 3px;
    letter-spacing: 1px;
  }

  .concernicon {
    width: 100px;
    height: 100px;
    padding: 10px;
    margin-bottom: 12px;
    /* border: #3f4e46 6px solid; */
    border: black 6px solid;
  }

  .concernbtn {
    padding: 9px 9px;
    font-size: 16px;
    margin: 0px 0px;
  }

  .concernbgsection p {
    /* font-size: 17px; */
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0px;
  }

  .ourclinic {
    padding: 1.5rem 20px;
  }

  .ourclinic h3,
  .ourclinic h2 {
    font-size: 35px;
    letter-spacing: 1px;
  }

  .ourclinicsubheading {
    font-size: 18px;
    line-height: 20px;
    padding-bottom: 0px;
    color: #fff;
  }

  .ourclinic p {
    /* font-size: 17px; */
    font-size: 16px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    color: #fff;
  }

  .clinicitem p {
    color: #3f4e46;
  }

  .clinicitem {
    margin-top: 4rem;
    padding: 0px;
  }

  .homevideosection {
    padding: 1.5rem 20px 1rem 20px;
  }

  .homevideosubheading {
    font-size: 18px;
    line-height: 20px;
    padding-bottom: 0px;
  }

  .homevideocenter {
    margin-bottom: 0px;
  }

  .homesubvdheading {
    font-size: 20px;
    padding-bottom: 0px;
  }

  .hvlistheading {
    font-size: 22px;
    line-height: 25px;
    padding-bottom: 5px;
  }

  .homevideoheading {
    font-size: 30px;
    letter-spacing: 1px;
    line-height: 42px;
    padding-bottom: 5px;
  }

  .homevdgeneral {
    line-height: 24px;
  }

  .homevdgeneral2 {
    line-height: 24px;
  }

  .hvlistheading2 {
    font-size: 22px;
    line-height: 25px;
    padding-bottom: 5px;
  }

  .homevideoheading2 {
    font-size: 30px;
    letter-spacing: 1px;
    line-height: 42px;
    padding-bottom: 5px;
  }

  .firstvideooverlay {
    background-color: #1a8a91;
    width: 100%;
    padding: 2rem 10px 2rem 10px;
  }

  .secondvideooverlay {
    width: 100%;
    padding: 2rem 10px 2rem 10px;
  }

  .thirdvideooverlay {
    width: 100%;
    padding: 2rem 10px 2rem 10px;
  }

  .homevideoright {
    width: 15%;
  }

  .homesubvdheading2 {
    font-size: 18px;
  }

  .homevideocenter p {
    /* font-size: 17px; */
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 12px;
  }

  .owl-item {
    width: 290px !important;
    margin-right: 8px !important;
  }

  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel button.owl-dot {
    font-size: 36px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    margin-right: 7px;
  }

  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    font-size: 36px;
    width: 36px;
    height: 36px;
    line-height: 36px;
  }

  .playicon i {
    width: 48px;
    height: 48px;
    line-height: 48px;
    font-size: 30px;
    padding-left: 2px;
  }

  .latestblog {
    padding: 1.5rem 20px;
  }

  .lblogsubheading {
    font-size: 18px;
    letter-spacing: 1px;
    padding-bottom: 0px;
  }

  .latestblog p {
    /* font-size: 17px; */
    font-size: 16px;
    line-height: 25px;
  }

  .lblogheading {
    font-size: 35px;
    line-height: 38px;
  }

  .blogcolumn {
    margin: 1rem 0px 8px 0px;
  }

  .blogcolumn .blogdetails {
    padding: 0px 10px 20px 10px;
    margin: -20px 10px 0 10px;
  }

  .listblog ul li {
    padding: 5px 2px 5px 0px;
    font-size: 13px;
  }

  .listblog ul li a i {
    padding-left: 0px;
  }

  .listblog ul li::before {
    right: -3px;
  }

  .blogsubheading {
    margin: 0px 0 5px 0;
    font-size: 17px;
    line-height: 22px;
  }

  .blogcolumn.last-child {
    display: none;
  }

  .doc-section .green-section .content-sec {
    width: 100%;
    padding: 30px;
    padding-top: 30px;
  }

  .doc-img-section {
    display: block;
  }

  .box1,
  .box2 {
    width: 100%;
  }

  .box2 {
    padding: 30px;
    box-shadow: unset;
    margin-top: 0;
  }

  .box2 p {
    margin-top: 0;
  }

  .doc-section .green-section .doc-title {
    font-size: 35px;
    line-height: 38px;
    margin-bottom: 5px;
  }

  section.see_dermatologist {
    padding: 30px 0;
  }

  section.see_dermatologist .derma_hd {
    font-size: 35px;
    line-height: 38px;
    margin-bottom: 5px;
  }

  .treatment_box {
    padding-top: 55px;
    margin-left: 30px;
    min-width: auto;
  }

  .tile_box {
    padding: 60px 10px 10px;
    min-width: 42%;
  }

  .benefits_consulting {
    padding: 30px 0 0 0;
  }

  .headingMn {
    font-size: 35px;
    line-height: 38px;
    margin-bottom: 8px;
  }

  p.heading-para {
    padding: 0;
    margin-bottom: 20px;
  }

  .benefits_consulting .box_1 {
    margin-left: 10px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
  }

  .benefits_consulting .box_2 {
    display: flex;
    align-items: center;
  }

  .img-testimonial {
    margin-left: 10px;
  }

  .scroll-testimonial {
    padding-right: 10px;
    padding-left: 18px;
  }

  .review-heading {
    margin-bottom: 10px;
    font-size: 16px !important;
  }

  .doctorrightpic iframe {
    height: 380px;
  }

  .videoitem iframe {
    height: 192px;
  }
}

@media screen and (max-width: 767px) and (min-width: 320px) {
  /* .banner {
    margin: 75px auto 0px auto;
  } */
  .banner {
    margin: 10px auto 0px auto;
  }

  .bannerleftcolumn {
    width: 70%;
  }

  #demo .carousel-control-next-icon,
  #demo .carousel-control-prev-icon {
    display: none;
  }

  #demo .carousel-control-next-icon,
  #demo .carousel-control-prev-icon {
    display: none;
  }

  .bannerheading {
    font-size: 18px;
    line-height: 23px;
    padding-bottom: 5px;
  }

  .bannerleftcolumn p {
    display: none;
  }

  .video-block {
    margin-top: 28px;
    margin-left: 1.8rem;
  }

  .video-btn-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 24px;
    margin: 5px;
  }

  /* #demo .carousel-caption {
         right: 3%;
         top: 1rem;
         left: 3%;
         padding-top: 0rem;
         padding-bottom: 1rem;
     } */

  #demo .carousel-caption {
    right: 3%;
    top: 50%;
    left: 3%;
    transform: translateY(-50%);
    padding: 0;
  }

  .aboutdoctorsection {
    padding: 1rem 5px 1.5rem 5px;
  }

  .doctorrightpic {
    padding-bottom: 0px;
    padding: 8px;
    margin-top: 20px;
  }

  .doctorrightpic img {
    margin-left: 0rem;
  }

  .youtubeicon {
    bottom: 16px;
    right: 18px;
  }

  .youtubeicon a {
    font-size: 17px;
  }

  .aboutdoctorcontent {
    width: 100%;
  }

  .aboutdoctorcontent h1 {
    font-size: 22px;
    letter-spacing: 1px;
    padding-bottom: 8px;
  }

  .aboutdoctorcontent .doctorhomeheading {
    font-size: 27px;
    letter-spacing: 1px;
    line-height: 27px;
    padding-bottom: 5px;
    padding-top: 2px;
  }

  .aboutsubheading {
    font-size: 20px;
  }

  .aboutheading {
    font-size: 20px;
    line-height: 22px;
    padding-bottom: 5px;
  }

  .mddermatology {
    font-size: 20px;
    line-height: 22px;
    padding-bottom: 7px;
  }

  .aboutdoctorcontent p {
    /* font-size: 17px; */
    font-size: 16px;
  }

  .aboutwhyheading {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 5px;
  }

  .aboutdoctorcontent ul li {
    padding: 2px 0px 2px 20px;
    line-height: 25px;
    /* font-size: 17px; */
    font-size: 16px;
    font-family: "Exo-Regular" !important;
    width: 100%;
    text-align: left;
  }

  .aboutdoctorcontent ul li::before {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    line-height: 30px;
    font-size: 16px;
    margin-left: -30px;
    margin-top: -2px;
  }

  .youtubeicon img {
    width: 50px;
    margin-bottom: -20px;
    margin-right: 0px;
    margin-left: 0px !important;
  }

  .aboutdoctorcontent {
    margin-top: 10px;
    text-align: center;
  }

  .moreabout {
    padding: 11px 10px;
    font-size: 17px;
  }

  .abouttop {
    margin-top: 1rem;
  }

  .procedurebg {
    background-position: inherit !important;
    background-size: unset !important;
    background-repeat: unset !important;
    background-image: none !important;
    padding: 2rem 10px 1rem 10px;
    background-color: #1a8a91;
  }

  .proceduresection {
    padding: 0rem 0px;
    float: none;
    text-align: center;
  }

  .procedureheading {
    font-size: 30px;
    line-height: 32px;
    letter-spacing: 2px;
    padding-bottom: 5px;
  }

  .procedureheading::before {
    width: 25px;
    height: 2px;
    top: 16px;
    display: none;
    left: 40px;
    border-top: #efe9d3 2px solid;
  }

  .proceduresection p {
    /* font-size: 17px; */
    font-size: 16px;
    line-height: 26px;
  }

  .procedurebtn {
    padding: 7px 10px;
    border: 1px solid #B2D6D8;
    font-size: 16px;
    margin: 0px 0px;
  }

  .box {
    padding: 0px 0px;
  }

  .faceicon {
    width: 100px;
    height: 100px;
    padding: 10px;
    margin-bottom: 12px;
    border: #ffff 6px solid;
  }

  .concernwhitetext {
    padding: 1rem 10px;
    font-size: 30px;
    line-height: 36px;
  }

  .concernbgsection {
    padding: 0rem 0px 0rem 0px;
    margin: 0px;
    float: none;
    text-align: center;
  }

  .concernheading {
    font-size: 30px;
    line-height: 32px;
    letter-spacing: 2px;
    padding-bottom: 5px;
  }

  .proceduresubheading {
    font-size: 17px;
    padding-bottom: 3px;
    letter-spacing: 1px;
  }

  .concernheading::before {
    width: 25px;
    height: 2px;
    top: 18px;
    left: 160px;
    display: none;
    border-top: #3f4e46 2px solid;
  }

  .concernsubheading {
    font-size: 18px;
    padding-bottom: 3px;
    letter-spacing: 1px;
  }

  .concernicon {
    width: 100px;
    height: 100px;
    padding: 10px;
    margin-bottom: 12px;
    border: black 6px solid;
  }

  .concernbtn {
    padding: 9px 9px;
    font-size: 16px;
    margin: 0px 0px;
  }

  .concernbgsection p {
    /* font-size: 17px; */
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0px;
  }

  .concernbg {
    background-position: inherit !important;
    background-size: unset !important;
    background-repeat: unset !important;
    background-image: none !important;
    padding: 2rem 10px 1rem 10px;
    background-color: #f0ecd3;
  }

  .doc-para {
    font-size: 16px !important;
  }

  .ourclinic {
    padding: 1.5rem 0px 1.5rem 0px;
  }

  .clinicitem {
    margin-top: 10px;
    padding: 15px;
  }

  .ourclinic {
    background: #1a8a91 !important;
    background-position: unset !important;
    background-repeat: unset !important;
    padding: 1.5rem 10px;
  }

  .ourclinic h3,
  .ourclinic h2 {
    font-size: 30px;
    letter-spacing: 1px;
  }

  .ourclinicsubheading {
    font-size: 18px;
    line-height: 20px;
    padding-bottom: 0px;
    color: #fff;
  }

  .ourclinic p {
    /* font-size: 17px; */
    font-size: 16px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    color: #fff;
  }

  .clinicitemheading {
    color: #fff;
    margin-top: 10px;
  }

  .clinicitem img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
    -moz-filter: brightness(0) invert(1);
  }

  .clinicitem {
    margin-top: 10px;
    padding: 20px 5px 5px 5px;
  }

  .clinicitem:hover .clinicitemheading {
    color: #3f4e46;
  }

  .clinicitem:hover img {
    filter: unset !important;
    -webkit-filter: unset !important;
    -moz-filter: unset !important;
  }

  .clinicitem:hover p {
    color: #3f4e46;
  }

  .clinicitem:hover .homesubvdheading2 {
    font-size: 20px;
    padding-bottom: 0px;
  }

  .homevideosection {
    padding: 1.5rem 10px 1rem 10px;
  }

  .homevideosubheading {
    font-size: 18px;
    line-height: 20px;
    padding-bottom: 0px;
  }

  .homevideocenter {
    margin-bottom: 0px;
  }

  .homesubvdheading {
    font-size: 20px;
    padding-bottom: 0px;
  }

  .hvlistheading {
    font-size: 22px;
    line-height: 25px;
    padding-bottom: 5px;
  }

  .homevideoheading {
    font-size: 30px;
    letter-spacing: 1px;
    line-height: 42px;
    padding-bottom: 5px;
  }

  .homevideoleft {
    width: 100%;
    float: none;
  }

  .homevdgeneral {
    line-height: 24px;
    word-wrap: break-word;
    font-size: 16px;
    white-space: break-spaces;
  }

  .homevdgeneral2 {
    line-height: 24px;
    word-wrap: break-word;
    font-size: 16px;
    white-space: break-spaces;
  }

  .hvlistheading2 {
    font-size: 22px;
    line-height: 25px;
    padding-bottom: 5px;
  }

  .homevideoheading2 {
    font-size: 30px;
    letter-spacing: 1px;
    line-height: 42px;
    padding-bottom: 5px;
  }

  .firstvideooverlay {
    background-color: #1a8a91;
    width: 100%;
    padding: 2.5rem 15px 2.5rem 15px;
  }

  .secondvideooverlay {
    width: 100%;
    padding: 2.5rem 15px 2.5rem 15px;
  }

  .thirdvideooverlay {
    width: 100%;
    padding: 2.5rem 15px 2.5rem 15px;
  }

  .homevideoright {
    width: 20%;
    float: none;
    display: block;
    margin-top: 10px;
  }

  .homevideocenter p {
    /* font-size: 17px; */
    font-size: 16px !important;
    line-height: 25px;
  }

  .scrollvideobox {
    overflow-y: hidden !important;
    overflow-x: scroll !important;
    white-space: nowrap;
    position: relative;
    margin: 10px 0 0px 0px;
    text-align: left;
  }

  .scrollvideobox::-webkit-scrollbar {
    display: none;
  }

  .firstvideodiv {
    display: inline-block;
    overflow: hidden;
    display: inline-block;
    width: 88%;
  }

  .owl-item {
    width: 290px !important;
    margin-right: 8px !important;
  }

  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel button.owl-dot {
    font-size: 36px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    margin-right: 7px;
  }

  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    font-size: 36px;
    width: 36px;
    height: 36px;
    line-height: 36px;
  }

  .playicon i {
    width: 48px !important;
    height: 48px !important;
    line-height: 48px !important;
    font-size: 30px;
    padding-left: 2px;
  }

  .latestblog {
    padding: 1.5rem 10px;
  }

  .lblogsubheading {
    font-size: 18px;
    letter-spacing: 1px;
    padding-bottom: 0px;
  }

  .latestblog p {
    /* font-size: 17px; */
    font-size: 16px;
    line-height: 25px;
  }

  .lblogheading {
    font-size: 30px;
    line-height: 32px;
  }

  .blogcolumn {
    margin: 1rem 0px 8px 0px;
  }

  .blogcolumn .blogdetails {
    padding: 0px 10px 20px 10px;
    margin: -20px 10px 0 10px;
  }

  .listblog ul li {
    padding: 5px 2px 5px 0px;
    font-size: 12px;
  }

  .listblog ul li a i {
    padding-left: 0px;
  }

  .listblog ul li::before {
    right: -3px;
  }

  .blogsubheading {
    margin: 0px 0 5px 0;
    font-size: 17px;
    line-height: 22px;
  }

  .blogcolumn.last-child {
    display: none;
  }

  .doc-section .green-section {
    background-color: #ffffff;
  }

  .doc-section .green-section .content-sec {
    width: 100%;
    padding: 20px;
    color: #000;
  }

  .doc-section .green-section .doc-title {
    font-size: 30px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    line-height: 35px;
    color: #000;
  }

  .doc-img-section {
    display: block;
  }

  .box1,
  .box2 {
    width: 100%;
  }

  .box2 {
    padding: 20px;
    margin-top: 0px;
  }

  .box2 p {
    padding-top: 10px;
    margin-top: 0;
  }

  .box2 ul li,
  .box2 p {
    font-size: 16px !important;
  }

  section.see_dermatologist {
    padding: 20px 0;
  }

  section.see_dermatologist .derma_hd {
    font-size: 30px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    line-height: 35px;
  }

  section.see_dermatologist .dermat_desc_box {
    padding: 0 10px;
  }

  .treatment_box {
    min-width: unset;
    margin-left: 20px;
    padding-top: 52px;
  }

  .tile_box {
    padding: 60px 10px 10px 10px;
    min-width: 80%;
  }

  .benefits_consulting {
    padding: 20px 0 0 0;
  }

  .headingMn {
    font-size: 30px;
    line-height: 35px;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

  p.heading-para {
    padding: 0 10px;
    font-size: 16px !important;
  }

  .benefits_consulting .box_1 {
    margin-left: 0px;
  }

  .benefits_points {
    display: unset;
  }

  .benefits_consulting .box_1,
  .box_2 {
    width: 100%;
  }

  .img-testimonial {
    margin-left: 0;
  }

  .scroll-testimonial {
    padding-right: 10px;
    padding-left: 20px;
    margin: 0 10px 16px 0;
  }

  .doctorrightpic iframe {
    height: 200px;
  }

  .firstvideodiv iframe {
    height: 190px;
  }
}

.machine-banner {
  position: relative;
  width: 100%;
  height: 600px;
  background-image: url("/Assets/Banners/machine banner - desktop.jpg");
  background-size: cover;
  background-position: center;
  color: black;
  display: flex;
  padding-top: 5%;
  padding-left: 5%;
}

.machine-banner-content {
  max-width: 60%;
  font-size: 32px;
  line-height: 1.5;
  text-align: left;
}

.machine-banner h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .machine-banner {
    height: 300px;
    justify-content: center;
    background-image: url("/Assets/Banners/machine banner - mobile.jpg");
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .machine-banner-content {
    max-width: 100%;
    font-size: 20px;
    /* text-align: center; */
    width: 100%;
  }

  .machine-banner h1 {
    width: 100% !important;
    font-size: 20px !important;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .custom-carousel .carousel-caption {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
  }

  .custom-carousel .bannerrightcolumn,
  .custom-carousel .bannerleftcolumn {
    text-align: left;
    margin-left: 40%;
    margin-right: auto;
    float: right;
  }

  .custom-carousel .bannerheading {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .carousel-mobile-adjust .carousel-caption .bannerheading {
    font-size: 0.8em;
    text-align: left;
    margin-top: 5%;
    margin-left: 5%;
  }

  .carousel-mobile-adjust .carousel-caption .bannerheading .bannerleftcolumn {
    font-size: 0.8em;
  }

  .carousel-mobile-adjust .carousel-caption {
    padding: 10px;
  }

  .carousel-mobile-adjust .carousel-item picture img {
    width: 100%;
    height: auto;
  }

  #mobile-demo .carousel-indicators [data-bs-target] {
    background-color: #cccccc;
  }
}

/* Start of clinicgallery */
.clinicgallery {
  padding: 3rem 40px;
  text-align: center;
  background-color: #f4f4f4;
  width: 100%;
  min-height: 250px;
}

.clinicgalleryheaing {
  font-size: 45px;
  /* line-height: 50px; */
  /* padding-bottom: 8px; */
  color: #000;
  /* font-family: "Exo-Regular" !important; */
  font-family: 'Titillium Web' !important;
}

.clinicbox {
  padding: 0px;
  margin: 1.5rem 0 1rem 0px;
}

.clinicbox img {
  padding: 8px;
  border: #3f4e46 1px solid;
  transition-duration: 0.2s;
  transition-property: transform;
}

.clinicbox:hover img {
  border: 1px solid #e090ad;
  transform: translateY(-10px);
}

.signature-heading {
  color: black;
  text-align: center;
  width: 100%;
  display: none;
  /* Hidden by default */
}

/* Show only on mobile devices (typically screens smaller than 768px) */
@media (max-width: 767px) {
  .signature-heading {
    display: block;
    /* Visible on mobile */
  }
}

@media (max-width: 600px) {
  .tile_box p {
    font-size: 16px;
    /* Set font size to 16px for mobile view */
  }

  .review-heading {
    margin-bottom: 10px;
    font-size: 16px !important;
  }
}