/*-- homepage --*/

.bannerhome {
  position: relative;

  width: 100%;
  clear: both;

  height: 511px;
  margin-top: 65px;

  background-image: url(../images/doc_banner1.webp);
  /* background-image: url(../images/banner.webp); */
  /*background-image: url(../images/doc_banner.webp); */

  background-size: cover;

  padding: 3rem 3% 2rem 3%;

  background-position: center top;
  background-repeat: no-repeat;
}

.bannercaption {
  margin-top: 2.5rem;
}

.play-btn {
  width: 66px;

  height: 66px;

  background: transparent linear-gradient(91deg, #00a9d4 0%, #00566c 100%) 0% 0%
    no-repeat padding-box;

  opacity: 1;
  cursor: pointer;

  border-radius: 50%;

  position: relative;

  display: block;

  margin: 0px auto 22px auto;

  box-shadow: 0px 0px 25px 3px rgba(1, 145, 182, 0.8);
}

/* triangle */

.play-btn::after {
  content: "\f04b";

  font-family: "FontAwesome" !important;

  position: absolute;

  left: 52%;

  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  -webkit-transform: translateX(-50%) translateY(-50%);

  transform: translateX(-50%) translateY(-50%);

  transform-origin: center center;

  width: 0;

  height: 0;

  z-index: 100;

  font-size: 30px;

  color: #fff;
  padding-left: 2px;

  -webkit-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);

  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* pulse wave */

.play-btn:before {
  content: "";

  position: absolute;

  width: 150%;

  height: 150%;

  -webkit-animation-delay: 0s;

  animation-delay: 0s;

  -webkit-animation: pulsate1 2s;

  animation: pulsate1 2s;

  -webkit-animation-direction: forwards;

  animation-direction: forwards;

  -webkit-animation-iteration-count: infinite;

  animation-iteration-count: infinite;

  -webkit-animation-timing-function: steps;

  animation-timing-function: steps;

  opacity: 1;

  border-radius: 50%;

  border: 3px solid rgba(255, 255, 255, 0.8);

  top: -25%;

  left: -25%;

  background: rgba(198, 16, 0, 0);
}

@-webkit-keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);

    transform: scale(0.6);

    opacity: 1;

    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75),
      0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }

  100% {
    -webkit-transform: scale(1);

    transform: scale(1);

    opacity: 0;

    box-shadow: none;
  }
}

@keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);

    transform: scale(0.6);

    opacity: 1;

    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75),
      0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }

  100% {
    -webkit-transform: scale(1, 1);

    transform: scale(1);

    opacity: 0;

    box-shadow: none;
  }
}

.bannercaption .bheading {
  font-size: 48px;
  color: #000;
  /* color: #fff; */
  text-transform: uppercase;
  text-align: center;
  line-height: 55px;

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

.bannercaption p {
  font-size: 18px;
  padding-top: 1.5rem;
  padding-bottom: 0px;
  margin-bottom: 0px;
  color: #000;
  line-height: 28px;
  text-align: center;
}

.bheading img {
  margin-bottom: -30px;
}

/* start speciality section */
.speciality-sec {
  padding: 3rem 5%;
  background-color: #073541;
  & .commonheadingcenter {
    color: #fff;
  }
}
.f_srvc_card {
  text-align: center;
  padding: 40px 20px;
  border: 1px solid #a5c8cf;
  height: 100%;
  transition: 0.3s ease-in-out;
  background-color: #fff;

  & .srvc_icon {
    margin: 15px auto;
    width: 74px;
    height: 74px;
    background: transparent linear-gradient(90deg, #85caed 0%, #ffffff 100%) 0%
      0% no-repeat padding-box;
    text-align: center;
    border-radius: 50%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  a.f_srvc_name {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
  }

  &:hover a.f_srvc_name {
    color: #fff;
    text-decoration: none;
  }

  &:hover {
    background-color: #0191b6;
    border: 1px solid #a5c8cf;
  }
}
/* End speciality section */

/* Start of clinicsection */

.clinicsection {
  background-color: #fff;
  padding: 3rem 5%;
  border-bottom: #ddd 1px solid;
}

.clinicsection h1 {
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;

  font-family: var(--heading);
  font-size: 40px;
  position: relative;
  padding-bottom: 10px;
}

.clinicsection h1::after {
  content: "";

  position: absolute;

  content: "";

  bottom: -5px;

  left: 50%;
  width: 60px;

  z-index: 9;
  background: #0191b6;
  height: 3px;

  transform: translate(-50%, -50%);
}

.clinicimage {
  margin: 0px;
  padding-top: 3rem;
  width: 90%;
  float: right;
  position: relative;
}

.clinicimage img {
  width: 100%;
}

.hospitalcontent {
  padding-top: 3rem;
  padding-right: 6rem;
}

.hospitalcontent p {
  line-height: 28px;
  margin-bottom: 15px;
  padding-top: 1rem;
}

.cliniccaption {
  position: absolute;
  top: 3rem;
  left: -150px;
  z-index: 9;
  height: 400px;
  padding: 1rem;
  width: 300px;
}

.pointstable {
  background-color: #fff;
  margin-top: 15px;
  padding: 12px;
  border-radius: 8px;

  border: 1px solid #a5c8cf;
  transition-duration: 0.2s;
  transition-property: transform;
}

.pointstable:hover {
  transform: translateY(-5px);
}

.pointleft {
  width: 24%;
  float: left;
}

.pointicon {
  width: 52px;
  height: 52px;
  background: transparent linear-gradient(90deg, #00a9d4 0%, #00566c 100%) 0% 0%
    no-repeat padding-box;
  text-align: center;
  border-radius: 50%;
  padding: 10px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.pointright {
  width: 74%;
  float: right;
  font-size: 15px;
  line-height: 24px;
}

.readmorebtn {
  color: #fff;

  background: transparent linear-gradient(90deg, #00a9d4 0%, #00566c 100%) 0% 0%
    no-repeat padding-box;

  padding: 5px 1.5rem;

  cursor: pointer;

  display: inline-block;

  outline: none;

  font-family: var(--para);

  text-align: center;
  text-transform: uppercase;

  text-decoration: none;

  transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);

  user-select: none;
  border-radius: 30px;

  -webkit-user-select: none;

  touch-action: manipulation;

  will-change: transform;
}

.readmorebtn:disabled {
  pointer-events: none;
}

.readmorebtn:hover {
  background: transparent linear-gradient(90deg, #00566c 0%, #00a9d4 100%) 0% 0%
    no-repeat padding-box;

  box-shadow: rgba(0, 0, 0, 0.15) 0 8px 15px;

  transform: translateY(-2px);

  color: #fff;

  text-decoration: none;
}

.readmorebtn:active {
  box-shadow: none;

  transform: translateY(0);
}

/* Start of treatmentsection */

.treatmentwholesection {
  padding: 3rem 5% 1rem 5%;
  background-color: #fff;
  border-top: #ddd 1px solid;
  position: relative;

  text-align: center;
}

.treatmentsection {
  padding: 6rem 5% 4rem 5%;
  background: url("../images/treatmentbg.webp");

  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.treatmentleft {
  float: left;
  width: 30%;
}

.treatmentheading {
  color: #fff;
  font-family: "Noto Serif", serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 40px;
  padding-bottom: 12px;
  line-height: 1.2;
}

.treatmentleft p {
  color: #fff;
  padding-bottom: 12px;
}

.treatmentrow {
  margin-top: 4rem;
  background: rgba(0, 39, 46, 0.8);
  border: rgba(255, 255, 255, 0.4) 1px solid;
  padding: 1.5rem;
}

.treatmentcolumn {
  width: 22%;
  float: left;
  border-right: rgba(255, 255, 255, 0.6) 1px solid;
  margin: 0px 1.2rem;

  transition-duration: 0.2s;
  transition-property: transform;
}

.treatmentcolumn:hover {
  transform: translateY(-5px);
}

.tcheading {
  text-transform: uppercase;
  color: #fff;
  font-size: 18px;
  padding-bottom: 5px;
  position: relative;
}

.tcheading::before {
  content: "\f105";

  font-family: "FontAwesome" !important;

  border-radius: 50%;

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 16px;

  background: transparent linear-gradient(90deg, #00a9d4 0%, #00566c 100%) 0% 0%
    no-repeat padding-box;

  height: 16px;

  text-align: center;

  position: absolute;

  font-size: 14px;

  margin-left: -20px;
  padding-left: 1px;

  margin-top: 5px;
}

.treatmentcolumn p {
  color: #fff;
  padding-right: 1rem;
  padding-bottom: 3px;
}

.read {
  color: #0191b6;
  font-size: 16px;
}

.treatmentcolumn:nth-child(4) {
  border-right: 0px;
}

/* Start of lasersection */

.lasersection::before {
  position: absolute;
  right: 0px;
  content: "";
  width: 201px;
  height: 382px;
  top: -150px;
  z-index: 99;

  background-image: url("../images/shreeganeshjifirst.webp");
  background-repeat: no-repeat;
  background-position: left top;
}

.lasersection {
  background-color: #cbeef8;
  padding: 3rem 0px 2rem 0px;
  position: relative;
}

.laserpicdiv {
  width: 100%;
  display: inline-block;
  position: relative;
}

.laserpic {
  width: 50%;
  float: left;
}

.laserpic img {
  width: 100%;
}

.laserwhitediv {
  background: #fff;
  z-index: 9;
  width: 50%;

  padding: 15px;
  position: absolute;
  right: 5rem;
  top: 5.5rem;
}

.borderdiv {
  border: #89d2e4 1px solid;
  padding: 2rem 3rem;
}

.laserheading {
  font-size: 40px;
  line-height: 48px;

  color: #282828;

  padding-bottom: 0px;

  font-family: "Noto Serif", serif;

  position: relative;

  font-weight: 400;

  letter-spacing: 1px;

  text-transform: uppercase;

  margin-bottom: 5px;
}

.borderdiv p {
  color: #282828;
  padding-bottom: 12px;
}

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

.borderdiv ul li {
  display: inline-block;
  width: 48%;
  padding: 8px 0px;
}

.borderdiv ul li::before {
  content: "\f105";

  font-family: "FontAwesome" !important;

  border-radius: 50%;

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 16px;

  background: transparent linear-gradient(90deg, #00a9d4 0%, #00566c 100%) 0% 0%
    no-repeat padding-box;

  height: 16px;

  text-align: center;

  position: absolute;

  font-size: 14px;

  margin-left: -20px;

  margin-top: 5px;
}

/* Start of cosmeticservicesection */

.cosmeticservicesection {
  background: radial-gradient(circle, #093e4b, #001d24);
  /* background: transparent url('img/Rectangle 324.png') 0% 0% no-repeat padding-box; */
  /* padding: 2rem 5% 1rem 5%; */
  padding: 50px;
  position: relative;
}

.cosmeticleft {
  padding: 1rem 0 0 0px;
  margin: 0px;
}

.cosmeticheading {
  color: #fff;
  font-family: "Noto Serif", serif;
  font-weight: 400;

  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 40px;
  padding-bottom: 12px;
  line-height: 48px;
}

.cosmeticleft p {
  color: #fff;
  padding-bottom: 12px;
}

.vericlecssscroll {
  display: inline-block;

  overflow: auto;

  padding-left: 0px;

  height: 460px;

  padding-right: 1rem;
}

.vericlecssscroll::-webkit-scrollbar {
  width: 8px;

  margin-left: 20px;
}

.vericlecssscroll::-webkit-scrollbar-track {
  background-color: transparent;

  border-radius: 100px;
}

.vericlecssscroll::-webkit-scrollbar-thumb {
  background: #093e4b;

  border-radius: 100px;
}

.cosmeticright {
  border-bottom: rgba(255, 255, 255, 0.6) 1px solid;
  margin: 10px 0rem 0px 24px;
}

.crheading {
  text-transform: uppercase;
  color: #fff;
  font-size: 18px;
  padding-bottom: 0px;
  position: relative;
}

.crheading::before {
  content: "\f105";

  font-family: "FontAwesome" !important;

  border-radius: 50%;

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 16px;

  background: transparent linear-gradient(90deg, #00a9d4 0%, #00566c 100%) 0% 0%
    no-repeat padding-box;

  height: 16px;

  text-align: center;

  position: absolute;

  font-size: 14px;

  margin-left: -20px;

  margin-top: 5px;
}

.cosmeticright p {
  color: #fff;
  padding-right: 10px;
  padding-bottom: 8px;
  font-size: 15px;
  line-height: 24px;
}

.cosmeticright:nth-child(4) {
  border-bottom: 0px;
}

.lhrpic {
  padding: 0px;
  margin: 0px;
  text-align: center;
  position: relative;
  bottom: -18px;
  left: -3rem;
}

.lhrpic img {
  width: 100%;
}

.lhrpic.cosmetic_pic {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: -1px;
}

/* Start of aboutclinicbg */

.aboutdoctorbg {
  padding: 3rem 5%;
  background-color: #cbeef8;
}

.whitedoctorbg {
  background-color: #fff;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
}

.textcap {
  text-transform: uppercase;
  font-weight: 600;
  padding-bottom: 1.2rem;
}

.doctorcontentbox {
  padding-right: 3rem;
}

.doctorheading {
  font-size: 40px;
  line-height: 48px;

  color: #282828;

  padding-bottom: 0px;

  font-family: "Noto Serif", serif;

  position: relative;

  font-weight: 400;

  letter-spacing: 1px;

  text-transform: uppercase;

  margin-bottom: 8px;
}

.doctordegree {
  background: transparent linear-gradient(270deg, #00a9d4 0%, #00566c 100%) 0%
    0% no-repeat padding-box;
  text-transform: uppercase;
  padding: 1px 10px;
  display: inline-block;
  color: #fff;
  margin: 5px 0px 12px 0px;
}

.doctorcontentbox p {
  padding-bottom: 12px;
}

.doctorquatation {
  margin-top: 2rem;
  text-align: center;
  position: relative;
}

.doctorquatation::before {
  position: absolute;
  right: -36px;
  content: "";
  width: 211px;
  height: 282px;
  top: -20px;
  z-index: 99;

  background-image: url("../images/shreeganeshjisecond.webp");
  background-repeat: no-repeat;
  background-position: left top;
}

.doctorquatation p {
  padding-bottom: 0px;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;

  margin-bottom: 0px;
  text-transform: uppercase;
  font-family: "Noto Serif", serif;
}

.doctorquatation img {
  margin-bottom: 12px;
}

/* Start of blogsection */

.latestblog {
  padding: 3rem 5%;

  background-color: #fff;
}

.commonheadingcenter {
  font-size: 40px;
  line-height: 48px;

  color: #282828;

  padding-bottom: 0px;

  font-family: "Noto Serif", serif;

  text-align: center;

  position: relative;

  font-weight: 400;

  letter-spacing: 1px;

  text-transform: uppercase;

  margin-bottom: 32px;
}

.commonheadingcenter::after {
  content: "";

  position: absolute;

  content: "";

  bottom: -15px;

  left: 50%;
  width: 60px;

  z-index: 9;
  background: #0191b6;
  height: 3px;

  transform: translate(-50%, -50%);
}

.blogleftbox {
  box-shadow: #ccc 0px 2px 4px 0px;

  border: #ddd 1px solid;

  padding: 10px;

  display: inline-block;

  margin-top: 10px;

  transition-duration: 0.2s;

  transition-property: transform;
}

.blogleftbox:hover {
  transform: translateY(-5px);
}

.blogleftboximg {
  width: 28%;

  float: left;
}

.blogleftboximg img {
  width: 100%;
}

.blogsubheading {
  font-size: 20px;

  font-family: var(--heading);

  padding-bottom: 2px;

  font-weight: 600;
}

.blogrightbox {
  width: 68%;

  float: right;

  padding-top: 5px;
}

.blogrightbox p {
  padding-bottom: 10px;
}

.blogtopbox {
  box-shadow: #ccc 0px 2px 4px 0px;

  border: #ddd 1px solid;

  padding: 10px;

  display: inline-block;

  margin-top: 10px;

  width: 100%;

  transition-duration: 0.2s;

  transition-property: transform;
}

.blogtopbox:hover {
  transform: translateY(-5px);
}

.blogtopboximg {
  width: 100%;
}

.blogtopboximg img {
  width: 100%;
}

.blogtopboxcontent {
  margin: 5px auto 0px auto;

  width: 95%;

  padding-bottom: 3px;
}

.blogsubheading {
  font-size: 19px;

  font-family: var(--heading);

  padding-bottom: 2px;

  font-weight: 600;
}

.blogcontentdiv {
  padding-bottom: 0px;
}

.blogtopboxcontent p {
  padding-bottom: 10px;
}

/* Start of small desktop Screen */

@media screen and (max-width: 1441px) and (min-width: 1368px) {
  .treatmentrow {
    margin-top: 2rem;
    padding: 1rem;
  }

  .treatmentcolumn {
    margin: 0px 1rem;
  }
}

/* Start of small desktop Screen */

@media screen and (max-width: 1367px) and (min-width: 1301px) {
  .treatmentrow {
    margin-top: 2rem;
    padding: 1rem;
  }

  .treatmentcolumn {
    margin: 0px 1rem;
  }

  /* Start of laser section */

  .borderdiv {
    padding: 1.5rem 1.5rem;
  }

  .laserwhitediv {
    top: 4rem;
  }

  /* Start of COSMETIC GYNECOLOGY */

  .vericlecssscroll {
    height: 408px;
    padding-right: 10px;
  }
}

/* Start of small desktop Screen */

@media screen and (max-width: 1300px) and (min-width: 1201px) {
  .treatmentrow {
    margin-top: 2rem;
    padding: 1rem;
  }

  .treatmentcolumn {
    margin: 0px 1rem;
  }

  /* Start of laser section */

  .borderdiv {
    padding: 1.5rem 1.5rem;
  }

  .laserwhitediv {
    top: 2.5rem;
  }

  /* Start of COSMETIC GYNECOLOGY */

  .vericlecssscroll {
    height: 408px;
    padding-right: 10px;
  }
}

/* Start of Yogesh Sir Ipad Pro Screen */

@media screen and (max-width: 1200px) and (min-width: 1101px) {
  /* Start of bannersection */

  .bannerhome {
    height: 380px;
    margin-top: 76px;
    padding: 2rem 2% 2rem 2%;
    width: 100%;
  }

  .bannercaption {
    margin-top: 2rem;
    float: none;
    width: 100%;
  }

  .bannercaption .bheading {
    font-size: 35px;
    line-height: 44px;
    text-align: center;
  }

  .play-btn {
    width: 65px;
    height: 65px;
    margin: 0px auto 18px auto;
  }

  .play-btn::after {
    font-size: 20px;
  }

  .bheading img {
    width: 100px;
    margin-bottom: -30px;
  }

  .bannercaption p {
    font-size: 18px;
    padding-top: 15px;
    line-height: 30px;
    text-align: center;
    padding-right: 30px;
  }

  /* Start of clinicsection Screen */

  .clinicsection {
    padding: 2rem 2% 1.5rem 2%;
  }

  .clinicsection h1 {
    font-weight: 500;
    letter-spacing: 0px;
    font-size: 35px;
    padding-bottom: 2px;
  }

  .clinicsection h1::after {
    bottom: -13px;
    height: 2px;
  }

  .hospitalcontent {
    padding-top: 5px;
    padding-right: 0rem;
    margin-bottom: 1rem;
  }

  .hospitalcontent p {
    margin-bottom: 10px;
    padding-top: 2rem;
    line-height: 25px;
  }

  .readmorebtn {
    padding: 5px 1rem;
    font-size: 15px;
  }

  .clinicimage {
    padding-top: 0rem;
    width: 100%;
    float: none;
  }

  .cliniccaption {
    position: unset;
    top: 0px;
    left: unset;
    z-index: 9;
    height: auto;
    padding: 0rem;
    width: 100%;
  }

  .pointstable {
    margin-top: 2px;
    padding: 7px;
    display: inline-block;
    width: 49.5%;
  }

  .clinicimage .row {
    display: flex;
    flex-direction: column-reverse;
  }

  .pointright {
    font-size: 15px;
    line-height: 21px;
    width: 78%;
  }

  .pointleft {
    width: 20%;
  }

  .pointicon {
    width: 40px;
    height: 40px;
    padding: 6px;
  }

  .sreeclinicimage img {
    margin-top: 2.5rem;
  }

  .commonheadingcenter::after {
    bottom: -12px;
  }

  /* Start of treatmentwholesection Screen */

  .commonheadingcenter {
    font-size: 35px;
    line-height: 42px;
    padding-bottom: 0px;
    font-weight: 500;
    letter-spacing: 0px;
    margin-bottom: 20px;
  }

  .crheading {
    font-size: 16px;
  }

  .cosmeticleft {
    padding: 0rem 0 0 0px;
  }

  .cosmeticright p {
    padding-right: 10px;
    padding-bottom: 12px;
    font-size: 16px;
    line-height: 28px;
  }

  .cosmeticservicesection {
    padding: 2rem 2% 2rem 2%;
  }

  .cosmeticheading {
    font-weight: 500;
    letter-spacing: 0px;
    font-size: 35px;
    padding-bottom: 8px;
    line-height: 42px;
  }

  .cosmeticheading br {
    display: none;
  }

  .vericlecssscroll {
    height: 382px;
    padding-right: 10px;
  }

  .lhrpic {
    bottom: -42px;
    left: -2rem;
  }

  /* Start of treatmentsection Screen */

  .treatmentwholesection {
    padding: 2rem 2% 1rem 2%;
  }

  .treatmentsection {
    padding: 2rem 2% 2rem 2%;
  }

  .treatmentrow {
    margin-top: 2rem;
    padding: 0rem;
  }

  .treatmentleft {
    float: left;
    width: 44%;
  }

  .treatmentcolumn {
    width: 25%;
    float: left;
    border-bottom: rgba(255, 255, 255, 0.6) 1px solid;
    margin: 0px 0rem;

    padding: 10px 12px;
    border-bottom: 0px;
  }

  .tcheading {
    font-size: 16px;
    padding-bottom: 0px;
    margin-left: 20px;
  }

  .tcheading::before {
    margin-left: -20px;
    padding-left: 1px;
    margin-top: 5px;
  }

  .lasersection::before {
    display: none;
  }

  .treatmentheading {
    font-weight: 500;
    letter-spacing: 0px;
    font-size: 30px;
    padding-bottom: 8px;
  }

  /* Start of laser Treatment Screen */

  .borderdiv {
    padding: 1rem;
  }

  .laserpic {
    width: 48%;
    float: left;
  }

  .laserheading {
    font-size: 35px;
    line-height: 35px;
    padding-bottom: 0px;
    font-weight: 500;
    letter-spacing: 0px;
    margin-bottom: 5px;
  }

  .laserwhitediv {
    width: 52%;
    margin: 0 auto;
    padding: 10px;
    top: 3rem;
    right: 2rem;
  }

  .borderdiv {
    padding: 1rem;
  }

  .borderdiv p {
    padding-bottom: 8px;
  }

  .borderdiv ul {
    padding: 1rem 0 0 0px;
  }

  .borderdiv ul li {
    display: inline-block;
    width: 49.5%;
    padding: 3px 0px;
  }

  /* Start of About doctorsection */

  .aboutdoctorbg {
    padding: 2rem 4%;
  }

  .doctorquatation {
    margin-top: 0rem;
  }

  .doctorquatation p {
    padding-bottom: 15px;
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
  }

  .whitedoctorbg {
    padding: 1rem 10px 1rem 10px;
  }

  .doctorquatation img {
    margin-bottom: 0px;
  }

  .doctorheading {
    font-size: 35px;
    line-height: 42px;
    font-weight: 500;
    letter-spacing: 0px;
    margin-bottom: 10px;
  }

  .doctorcontentbox {
    padding-right: 0rem;
    padding-top: 10px;
  }

  .doctordegree {
    padding: 1px 10px;
    font-size: 18px;
    margin: 0px 0px 10px 0px;
  }

  .textcap {
    padding-bottom: 10px;
    font-size: 18px;
    line-height: 28px;
  }

  .doctorcontentbox p {
    padding-bottom: 10px;
  }

  .sreedoctorpic {
    padding: 0px;
    margin: 0px;
  }

  .sreedoctorpic img {
    width: 100%;
  }

  /* Start of testimonialssection */

  .latestblog {
    padding: 2rem 2%;
  }

  .blogsubheading {
    font-size: 18px;
    line-height: 24px;
    white-space: normal;
  }

  .blogleftbox {
    margin-top: 10px;
  }

  .blogtopbox {
    margin-top: 10px;
  }

  .blogrightbox p {
    padding-bottom: 5px;
  }

  .blogtopboxcontent p {
    padding-bottom: 5px;
  }
}

/* Start of Ipad Pro Screen */

@media screen and (max-width: 1100px) and (min-width: 992px) {
  /* Start of bannersection */
  .bannerhome {
    height: 360px;
    margin-top: 76px;
    padding: 2rem 2% 2rem 2%;
    width: 100%;
  }

  .bannercaption {
    margin-top: 2rem;
    float: none;
    width: 100%;
  }

  .bannercaption .bheading {
    font-size: 32px;
    line-height: 40px;
    text-align: center;
  }

  .play-btn {
    width: 60px;
    height: 60px;
    margin: 0px auto 15px auto;
  }

  .play-btn::after {
    font-size: 20px;
  }

  .bheading img {
    width: 100px;
    margin-bottom: -30px;
  }

  .bannercaption p {
    font-size: 18px;
    padding-top: 12px;
    line-height: 30px;
    text-align: center;
    padding-right: 30px;
  }

  /* Start of clinicsection Screen */
  .clinicsection {
    padding: 2rem 2% 1.5rem 2%;
  }

  .clinicsection h1 {
    font-weight: 500;
    letter-spacing: 0px;
    font-size: 30px;
    padding-bottom: 2px;
  }

  .clinicsection h1::after {
    bottom: -10px;
    height: 2px;
  }

  .hospitalcontent {
    padding-top: 5px;
    padding-right: 0rem;
    margin-bottom: 1rem;
  }

  .hospitalcontent p {
    margin-bottom: 10px;
    padding-top: 1rem;
    line-height: 25px;
  }

  .readmorebtn {
    padding: 5px 1rem;
    font-size: 15px;
  }

  .clinicimage {
    padding-top: 0rem;
    width: 100%;
    float: none;
  }

  .cliniccaption {
    position: unset;
    top: 0px;
    left: unset;
    z-index: 9;
    height: auto;
    padding: 0rem;
    width: 100%;
  }

  .pointstable {
    margin-top: 2px;
    padding: 7px;
    display: inline-block;
    width: 49.5%;
  }

  .clinicimage .row {
    display: flex;
    flex-direction: column-reverse;
  }

  .pointright {
    font-size: 14px;
    line-height: 21px;
    width: 78%;
  }

  .pointleft {
    width: 20%;
  }

  .pointicon {
    width: 40px;
    height: 40px;
    padding: 6px;
  }

  .sreeclinicimage img {
    margin-top: 1.9rem;
  }

  /* Start of treatmentwholesection Screen */
  .commonheadingcenter {
    font-size: 30px;
    line-height: 36px;
    padding-bottom: 0px;
    font-weight: 500;
    letter-spacing: 0px;
    margin-bottom: 20px;
  }

  .crheading {
    font-size: 16px;
  }

  .cosmeticleft {
    padding: 0rem 0 0 0px;
  }

  .cosmeticright p {
    padding-right: 10px;
    padding-bottom: 12px;
    font-size: 16px;
    line-height: 28px;
  }

  .cosmeticservicesection {
    padding: 2rem 2% 2rem 2%;
  }

  .cosmeticheading {
    font-weight: 500;
    letter-spacing: 0px;
    font-size: 30px;
    padding-bottom: 8px;
    line-height: 35px;
  }

  .cosmeticheading br {
    display: none;
  }

  .vericlecssscroll {
    height: 335px;
    padding-right: 10px;
  }

  .lhrpic {
    bottom: -42px;
    left: -2rem;
  }

  .lhrpic.cosmetic_pic img {
    width: 80%;
  }

  /* Start of treatmentsection Screen */
  .treatmentwholesection {
    padding: 2rem 2% 1rem 2%;
  }

  .treatmentsection {
    padding: 2rem 2% 1.5rem 2%;
  }

  .treatmentrow {
    margin-top: 1rem;
    padding: 0rem;
  }

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

  .treatmentcolumn {
    width: 25%;
    float: left;
    border-bottom: rgba(255, 255, 255, 0.6) 1px solid;
    margin: 0px 0rem;
    padding: 10px 12px;
  }

  .tcheading {
    font-size: 16px;
    padding-bottom: 0px;
    margin-left: 20px;
  }

  .tcheading::before {
    margin-left: -20px;
    padding-left: 1px;
    margin-top: 5px;
  }

  .treatmentcolumn:nth-child(3) {
    border-bottom: 0px;
  }

  .treatmentcolumn:nth-child(4) {
    border-bottom: 0px;
  }

  .lasersection::before {
    display: none;
  }

  .treatmentheading {
    font-weight: 500;
    letter-spacing: 0px;
    font-size: 30px;
    padding-bottom: 8px;
  }

  /* Start of laser Treatment Screen */
  .borderdiv {
    padding: 10px;
  }

  .laserpic {
    width: 40%;
    float: left;
  }

  .laserheading {
    font-size: 30px;
    line-height: 30px;
    padding-bottom: 0px;
    font-weight: 500;
    letter-spacing: 0px;
    margin-bottom: 5px;
  }

  .laserwhitediv {
    width: 65%;
    margin: 0 auto;
    padding: 7px;
    top: 1rem;
    right: 2rem;
  }

  .borderdiv {
    padding: 12px 1rem;
  }

  .borderdiv p {
    padding-bottom: 8px;
  }

  .borderdiv ul {
    padding: 10px 0 0 0px;
  }

  .borderdiv ul li {
    display: inline-block;
    width: 49%;
    padding: 3px 0px;
  }

  /* Start of About doctorsection */
  .aboutdoctorbg {
    padding: 2rem 3%;
  }

  .doctorquatation {
    margin-top: 0rem;
  }

  .doctorquatation p {
    padding-bottom: 15px;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
  }

  .whitedoctorbg {
    padding: 1rem 10px 1rem 10px;
  }

  .doctorquatation img {
    margin-bottom: 0px;
  }

  .doctorheading {
    font-size: 30px;
    line-height: 35px;
    font-weight: 500;
    letter-spacing: 0px;
    margin-bottom: 10px;
  }

  .doctorcontentbox {
    padding-right: 0rem;
    padding-top: 10px;
  }

  .doctordegree {
    padding: 1px 10px;
    font-size: 16px;
    margin: 0px 0px 10px 0px;
  }

  .textcap {
    padding-bottom: 5px;
    font-size: 16px;
    line-height: 28px;
  }

  .doctorcontentbox p {
    padding-bottom: 10px;
  }

  .sreedoctorpic {
    padding: 0px;
    margin: 0px;
  }

  .sreedoctorpic img {
    width: 100%;
  }

  .doctorquatation::before {
    display: none;
  }

  /* Start of testimonialssection */
  .latestblog {
    padding: 2rem 2%;
  }

  .blogsubheading {
    font-size: 18px;
    line-height: 24px;
    white-space: normal;
  }

  .blogleftbox {
    margin-top: 15px;
  }
}

/* Start of Ipad Screen */
@media screen and (max-width: 991.99px) and (min-width: 768px) {
  .bannerhome {
    height: 320px;
    margin-top: 86px;
    padding: 2rem 2% 2rem 2%;
    width: 100%;
  }

  .bannercaption {
    margin-top: 2rem;
    float: left;
    width: 100%;
  }

  .bannercaption .bheading {
    font-size: 27px;
    line-height: 30px;
    text-align: left;
  }

  .play-btn {
    width: 60px;
    height: 60px;
    margin: 0px auto 15px auto;
  }

  .play-btn::after {
    font-size: 20px;
  }

  .bheading img {
    width: 80px;
    margin-bottom: -20px;
  }

  .bannercaption p {
    font-size: 16px;
    padding-top: 12px;
    line-height: 28px;
    text-align: left;
    padding-right: 30px;
  }

  /* Start of clinicsection Screen */
  .clinicsection {
    padding: 2rem 2% 1.5rem 2%;
  }

  .clinicsection h1 {
    font-weight: 500;
    letter-spacing: 0px;
    font-size: 30px;
    padding-bottom: 2px;
  }

  .clinicsection h1::after {
    bottom: -10px;
    height: 2px;
  }

  .hospitalcontent {
    padding-top: 5px;
    padding-right: 0rem;
    margin-bottom: 1rem;
  }

  .hospitalcontent p {
    margin-bottom: 10px;
    padding-top: 1rem;
    line-height: 25px;
  }

  .readmorebtn {
    padding: 5px 1rem;
    font-size: 15px;
  }

  .clinicimage {
    padding-top: 0rem;
    width: 100%;
    float: none;
  }

  .cliniccaption {
    position: unset;
    top: 0px;
    left: unset;
    z-index: 9;
    height: auto;
    padding: 0rem;
    width: 100%;
  }

  .pointstable {
    margin-top: 12px;
    padding: 1rem;
    display: inline-block;
    width: 49.5%;
  }

  .clinicimage .row {
    display: flex;
    flex-direction: column-reverse;
  }

  .pointright {
    font-size: 16px;
    line-height: 28px;
    width: 78%;
  }

  .pointleft {
    width: 20%;
  }

  /* Start of treatmentwholesection Screen */
  .commonheadingcenter {
    font-size: 30px;
    line-height: 36px;
    padding-bottom: 0px;
    font-weight: 500;
    letter-spacing: 0px;
    margin-bottom: 20px;
  }

  .commonheadingcenter br {
    display: none;
  }

  .lhrpic {
    bottom: 0px;
    left: 0rem;
    padding: 2rem;
    border: rgba(255, 255, 255, 0.2) 1px solid;
  }

  .lhrpic.cosmetic_pic {
    position: relative;
    left: auto;
    transform: unset;
    bottom: 0;
    padding-bottom: 0;
  }

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

  .vericlecssscroll {
    margin-top: 1rem;
    display: inline-block;
    overflow: auto;
    padding-left: 0px;
    height: 370px;
    padding-right: 1rem;
  }

  .crheading {
    font-size: 16px;
  }

  .cosmeticright p {
    padding-right: 10px;
    padding-bottom: 12px;
    font-size: 16px;
    line-height: 28px;
  }

  /* Start of treatmentsection Screen */
  .treatmentwholesection {
    padding: 2rem 2% 1rem 2%;
  }

  .treatmentsection {
    padding: 2rem 1% 1.5rem 1%;
    background-image: unset !important;
    background: radial-gradient(circle, #093e4b, #001d24) !important;
    background-size: unset;
    background-position: unset;
    background-repeat: unset;
  }

  .treatmentrow {
    margin-top: 1rem;
    padding: 0rem;
  }

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

  .treatmentcolumn {
    width: 50%;
    float: left;
    border-bottom: rgba(255, 255, 255, 0.6) 1px solid;
    margin: 0px 0rem;
    padding: 1rem 1.5rem;
  }

  .tcheading {
    font-size: 16px;
    padding-bottom: 0px;
    margin-left: 20px;
  }

  .tcheading::before {
    margin-left: -20px;
    padding-left: 1px;
    margin-top: 5px;
  }

  .treatmentcolumn:nth-child(2) {
    border-right: 0px;
    padding-bottom: 20px;
  }

  .treatmentcolumn:nth-child(3) {
    border-bottom: 0px;
  }

  .treatmentcolumn:nth-child(4) {
    border-bottom: 0px;
  }

  .lasersection::before {
    display: none;
  }

  .treatmentheading {
    font-weight: 500;
    letter-spacing: 0px;
    font-size: 30px;
    padding-bottom: 8px;
  }

  /* Start of cosmeticservicesection Screen */
  .cosmeticservicesection {
    padding: 2rem 2% 2rem 2%;
  }

  .cosmeticheading {
    font-weight: 500;
    letter-spacing: 0px;
    font-size: 30px;
    padding-bottom: 8px;
    line-height: 30px;
  }

  .cosmeticheading br {
    display: none;
  }

  /* Start of lasersection Screen */
  .lasersection {
    padding: 2rem 0px 2rem 0px;
  }

  .laserheading {
    font-size: 30px;
    line-height: 30px;
    padding-bottom: 0px;
    font-weight: 500;
    letter-spacing: 0px;
    margin-bottom: 5px;
  }

  .laserpic {
    width: 90%;
    float: none;
    margin: 0 auto;
  }

  .laserwhitediv {
    z-index: unset;
    width: 90%;
    margin: 0 auto;
    padding: 7px;
    position: unset;
    right: unset;
    top: unset;
  }

  .borderdiv {
    padding: 12px 1rem;
  }

  .borderdiv p {
    padding-bottom: 8px;
  }

  .borderdiv ul {
    padding: 15px 0 0 0px;
  }

  .borderdiv ul li {
    display: inline-block;
    width: 49%;
    padding: 3px 0px;
  }

  /* Start of About doctorsection */
  .aboutdoctorbg {
    padding: 2rem 4%;
  }

  .whitedoctorbg .row {
    display: flex;
    flex-direction: column-reverse;
  }

  .doctorquatation::before {
    display: none;
  }

  .doctorquatation {
    margin-top: 0rem;
  }

  .doctorquatation p {
    padding-bottom: 15px;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
  }

  .whitedoctorbg {
    padding: 1rem 10px 1rem 10px;
  }

  .doctorquatation img {
    margin-bottom: 0px;
  }

  .doctorheading {
    font-size: 30px;
    line-height: 35px;
    font-weight: 500;
    letter-spacing: 0px;
    margin-bottom: 10px;
  }

  .doctorcontentbox {
    padding-right: 0rem;
    padding-top: 10px;
  }

  .doctordegree {
    padding: 1px 10px;
    font-size: 16px;
    margin: 0px 0px 10px 0px;
  }

  .textcap {
    padding-bottom: 5px;
    font-size: 16px;
    line-height: 28px;
  }

  .doctorcontentbox p {
    padding-bottom: 10px;
  }

  .sreedoctorpic {
    padding: 0px;
    margin: 0px;
  }

  .sreedoctorpic img {
    width: 100%;
  }

  /* Start of testimonialssection */
  .latestblog {
    padding: 2rem 2%;
  }

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

  .blogrightbox {
    width: 100%;
    float: none;
    padding-top: 0px;
  }

  .blogsubheading {
    font-size: 18px;
    line-height: 24px;
    white-space: normal;
  }

  .blogrightbox p {
    white-space: normal;
  }

  .blogleftbox {
    width: 46%;
  }
}

/* Start of IPhone/Phone Screen */
@media screen and (max-width: 767px) and (min-width: 320px) {
  .bannerhome {
    height: 215px;
    margin-top: 61px;
    padding: 1rem 1% 1rem 1%;
    width: 100%;
    /* background-image: url(../images/mobilebanner.jpg); */
    /*background-image: url(../images/mobdoc_banner.webp);*/
    background-image: url(../images/mobdoc_banner1.webp);
    background-position: 100% center;
  }

  .bannercaption {
    margin-top: 5px;
    float: left;
    width: 65%;
  }

  .bannercaption .bheading {
    font-size: 15px;
    line-height: 21px;
    text-align: left;
  }

  .play-btn {
    width: 40px;
    height: 40px;
    margin: 0px auto 8px auto;
  }

  .play-btn::after {
    font-size: 15px;
  }

  .bheading img {
    width: 48px;
    margin-bottom: -13px;
  }

  .bannercaption p {
    font-size: 13px;
    padding-top: 5px;
    line-height: 20px;
    text-align: left;
    padding-right: 30px;
  }

  /* Start Speciality Section */
  .f_srvc_card {
    padding: 30px 16px;
  }
  a.f_srvc_name {
    font-size: 18px;
  }
  /* Start Speciality Section */

  .f_srvc_card .srvc_icon {
    width: 64px;
    height: 64px;
  }
  /* Start of clinicsection Screen */
  .clinicsection {
    padding: 1.5rem 1% 1rem 1%;
  }

  .clinicsection h1 {
    font-weight: 500;
    letter-spacing: 0px;
    font-size: 24px;
    padding-bottom: 2px;
  }

  .clinicsection h1::after {
    bottom: -10px;
    height: 2px;
  }

  .hospitalcontent {
    padding-top: 5px;
    padding-right: 0rem;
    margin-bottom: 1rem;
  }

  .hospitalcontent p {
    margin-bottom: 10px;
    padding-top: 1rem;
    line-height: 25px;
  }

  .readmorebtn {
    padding: 5px 1rem;
    font-size: 15px;
  }

  .clinicimage {
    padding-top: 0rem;
    width: 100%;
    float: none;
  }

  .cliniccaption {
    position: unset;
    top: 0px;
    left: unset;
    z-index: 9;
    height: auto;
    padding: 0rem;
    width: 100%;
  }

  .pointstable {
    margin-top: 0px;
    padding: 5px;
    display: inline-block;
    width: 49%;
  }

  .pointright {
    width: 68%;
    font-size: 14px;
    line-height: 21px;
  }

  .pointicon {
    width: 40px;
    height: 40px;
    padding: 8px;
  }

  .clinicimage .row {
    display: flex;
    flex-direction: column-reverse;
  }

  /* Start of treatmentwholesection Screen */
  .commonheadingcenter {
    font-size: 24px;
    line-height: 30px;
    padding-bottom: 0px;
    font-weight: 500;
    letter-spacing: 0px;
    margin-bottom: 20px;
  }

  .commonheadingcenter br {
    display: none;
  }

  .lhrpic {
    bottom: 0px;
    left: 0rem;
    padding: 1.5rem;
    border: rgba(255, 255, 255, 0.2) 1px solid;
  }
  .lhrpic.cosmetic_pic {
    position: relative;
    left: auto;
    transform: unset;
    bottom: 0;
    padding-bottom: 0;
  }

  .cosmeticleft {
    padding: 1rem 0 0 0px;
  }

  .vericlecssscroll {
    margin-top: 1rem;
  }

  .crheading {
    font-size: 16px;
  }

  /* Start of treatmentsection Screen */
  .treatmentwholesection {
    padding: 1.5rem 1% 1rem 1%;
  }

  .treatmentsection {
    padding: 1.5rem 1% 1.5rem 1%;
    background-image: unset !important;
    background: radial-gradient(circle, #093e4b, #001d24) !important;
    background-size: unset;
    background-position: unset;
    background-repeat: unset;
  }

  .treatmentrow {
    margin-top: 1rem;
    padding: 10px;
  }

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

  .treatmentcolumn {
    width: 100%;
    float: none;
    border-right: none;
    border-bottom: rgba(255, 255, 255, 0.6) 1px solid;
    margin: 0px 0rem;
    padding: 8px 0px;
  }

  .tcheading {
    font-size: 16px;
    padding-bottom: 0px;
    margin-left: 20px;
  }

  .tcheading::before {
    margin-left: -20px;
    padding-left: 1px;
    margin-top: 5px;
  }

  .treatmentcolumn:nth-child(4) {
    border-bottom: 0px;
  }

  .lasersection::before {
    display: none;
  }

  .treatmentheading {
    font-weight: 500;
    letter-spacing: 0px;
    font-size: 24px;
    padding-bottom: 8px;
  }

  /* Start of cosmeticservicesection Screen */
  .cosmeticservicesection {
    padding: 1.5rem 1% 1rem 1%;
  }

  .cosmeticheading {
    font-weight: 500;
    letter-spacing: 0px;
    font-size: 24px;
    padding-bottom: 8px;
    line-height: 30px;
  }

  .cosmeticheading br {
    display: none;
  }

  /* Start of lasersection Screen */
  .lasersection {
    padding: 1.5rem 0px 1.5rem 0px;
  }

  .laserheading {
    font-size: 24px;
    line-height: 30px;
    padding-bottom: 0px;
    font-weight: 500;
    letter-spacing: 0px;
    margin-bottom: 5px;
  }

  .laserpic {
    width: 90%;
    float: none;
    margin: 0 auto;
  }

  .laserwhitediv {
    z-index: unset;
    width: 90%;
    margin: 0 auto;
    padding: 7px;
    position: unset;
    right: unset;
    top: unset;
  }

  .borderdiv {
    padding: 12px 1rem;
  }

  .borderdiv p {
    padding-bottom: 8px;
  }

  .borderdiv ul {
    padding: 10px 0 0 0px;
  }

  .borderdiv ul li {
    display: block;
    width: 100%;
    padding: 2px 0px;
  }

  /* Start of About doctorsection */
  .aboutdoctorbg {
    padding: 1.5rem 3%;
  }

  .whitedoctorbg .row {
    display: flex;
    flex-direction: column-reverse;
  }

  .doctorquatation::before {
    display: none;
  }

  .doctorquatation {
    margin-top: 0rem;
  }

  .doctorquatation p {
    padding-bottom: 12px;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
  }

  .doctorquatation p br {
    display: none;
  }

  .whitedoctorbg {
    padding: 1rem 5px 1rem 5px;
  }

  .doctorquatation img {
    margin-bottom: 0px;
  }

  .clinicimage img {
    width: 100%;
    margin-bottom: 10px;
  }

  .doctorheading {
    font-size: 24px;
    line-height: 27px;
    font-weight: 500;
    letter-spacing: 0px;
    margin-bottom: 5px;
  }

  .doctorcontentbox {
    padding-right: 0rem;
    padding-top: 10px;
  }

  .doctordegree {
    padding: 1px 8px;
    font-size: 14px;
    margin: 5px 0px 10px 0px;
    line-height: 20px;
  }

  .textcap {
    padding-bottom: 5px;
    font-size: 16px;
    line-height: 24px;
  }

  .doctorcontentbox p {
    padding-bottom: 10px;
  }

  /* Start of testimonialssection */
  .latestblog {
    padding: 1.5rem 1%;
  }

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

  .blogrightbox {
    width: 100%;
    float: none;
    padding-top: 0px;
  }

  .blogsubheading {
    font-size: 18px;
    line-height: 24px;
    white-space: normal;
  }

  .blogrightbox p {
    white-space: normal;
  }

  .blogleftbox {
    width: 88%;
  }
}
