:root {
  --clr-primary: #16b827;
  --clr-secondary: #ff5c00;
  --clr-text: #000;
  --clr-href: #0d6efd;
  --clr-wht: #ffffff;
  --clr-blk: #000000;
  --clr-grey-bdr: #c9cacd;
  --clr-grey-text: #959595;

  --font-site: "Raleway", sans-serif;
  --font-heading: "Raleway", sans-serif;
  --font-icon: Material Symbols Outlined;
}

body {
  font-family: var(--font-site);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

img {
  border: none;
  vertical-align: bottom;
  outline: none;
}

a {
  text-decoration: none;
  outline: none;
}

button {
  background-color: transparent;
  border: none;
  font-weight: 400;
  color: var(--clr-txt);
}

h4,
h3,
h2,
h1 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: 2.75em;
}

h2 {
  font-size: 2.25em;
}

h3 {
  font-size: 2em;
}

h4 {
  font-size: 1.5em;
}

h5 {
  font-size: 1.25em;
  font-weight: 600;
}

h6 {
  font-size: 1.125em;
  font-weight: 600;
}

/* extra  */

/*======== Header Start ========*/
#header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  background-color: var(--clr-wht);
}

#topHeader {
  border-bottom: 1px solid #e5ecf2;
}

#topHeader > .container-fluid > .row {
  height: 32px;
}

#topHeader ul {
  list-style-type: none;
  display: inline-flex;
}

#navHeader {
  height: 68px;
}

#navHeader .navbar > .container-fluid {
  display: flex;
  flex-direction: row-reverse;
}

/* main for all screen */
.stick #branding a img.logo {
  height: 40px;
  width: auto;
}

#navHeader .navbar-collapse {
  background-color: var(--clr-wht);
  margin-top: 5px;
  text-align: center;
}

#navHeader .navbar-nav .nav-item .nav-link {
  color: var(--clr-text);
  font-weight: 500;
}

#navHeader .navbar-nav .nav-item .nav-link.active {
  color: var(--clr-primary);
}
/*======== Header End ========*/

/*======== Hero Banner Start ========*/

#heroCarousel .carousel-item {
  position: relative;
  height: calc(100vh - 132px);
  background-size: cover;
  background-position: 80% center;
}

#heroCarousel .carousel-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.9) 20%,
    rgba(0, 0, 0, 0.1) 60%
  );
}

#heroCarousel .carousel-caption {
  bottom: 50%;
  transform: translateY(50%);
  z-index: 4;
  right: 15%;
  left: 8%;
}

#heroCarousel .carousel-caption .topContent {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}

#heroCarousel .carousel-caption .topContent span {
  background-color: rgba(0, 0, 0, 0.6);
  color: var(--clr-secondary);
  border: 1px solid var(--clr-wht);
  border-radius: 20px;
  padding: 3px 10px;
  margin-right: 6px;
}

#heroCarousel .carousel-caption h2 {
  font-size: 1.9rem;
  font-weight: 500;
  margin-bottom: 20px;
}

#heroCarousel .carousel-caption h2 span {
  font-size: 2.6rem;
  font-weight: 700;
}

#heroCarousel .carousel-caption p {
  font-size: 18px;
  line-height: 28px;
  font-family: "Kanit", sans-serif;
  font-weight: 200;
  margin-bottom: 50px;
}

#heroCarousel .carousel-caption .btn-read {
  background-color: var(--clr-secondary);
  color: var(--clr-wht);
  border-radius: 20px;
  font-size: 14px;
  height: 44px;
  width: 140px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#heroCarousel .indicator-list {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  list-style: none;
}

#heroCarousel .indicator-list li {
  margin: 10px 0;
}

#heroCarousel .indicator-list button {
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid #b99275;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

#heroCarousel .indicator-list li button.active {
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--clr-wht);
  border: 1px solid var(--clr-wht);
}

/*======== Hero Banner End ========*/

/* Scroll Text start */
#brand {
  background-color: var(--clr-primary);
  color: var(--clr-wht);
  font-weight: 700;
}
#brand .welcomeDentalLogo a img {
  height: 80px;
  width: auto;
}

/* Scroll Text end */
.scroll_text {
  background-color: var(--clr-secondary);
  color: var(--clr-wht);
}

#Welcome {
  background-color: #f0f0f0;
  position: relative;
}

#Welcome .about-wrap {
  position: relative;
  z-index: 1;
}

#Welcome .about-img {
  position: relative;
}

#Welcome .about-img .aboutImg1 {
  position: relative;
  width: 76%;
  height: auto;
}

#Welcome .about-img .aboutImg2 {
  position: absolute;
  left: 60%;
  right: 0;
  top: -10%;
  z-index: 1;
  width: 28%;
  height: auto;
}

#Welcome .about-img .aboutImg3 {
  position: absolute;
  left: 0%;
  right: 0;
  bottom: 14%;
  z-index: 1;
  width: 23%;
  height: auto;
}
#Welcome #about .about-text {
  letter-spacing: 1px;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 28px;
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-primary);
}

#Welcome #about .about-text::before {
  content: "";
  font-family: var(--font-icon);
  width: 20px;
  height: 2px;
  background-color: var(--clr-primary);
  position: absolute;
  left: 0;
}

#Welcome #about h2 {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--clr-secondary);
}

#Welcome #about p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

#Welcome #about .btn-more {
  background-color: var(--clr-primary);
  border-radius: 20px;
  padding: 10px 24px;
  color: var(--clr-wht);
}

#ourTreatments .treatment .btn-more:hover {
  background-color: var(--clr-primary);
  color: var(--clr-wht);
  transform: scale(1.2); /* Correct scaling factor */
  transition: transform 0.3s ease; /* Smooth transition for scaling */
}
/* card tecctiong */

#ourTreatments {
  position: relative;
  overflow: hidden;
}

#ourTreatments::before {
  content: "";
  background-image: url("../images/Leaf-treatmentsLeft.png");
  background-repeat: no-repeat;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  left: -23%;
  background-size: 700px auto;
}

#ourTreatments::after {
  content: "";
  background-image: url("../images/Leaf-treatmentsRight.png");
  background-repeat: no-repeat;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  background-size: 700px auto;
  right: -77%;
  bottom: 0;
}

#ourTreatments > .container {
  position: relative;
  z-index: 2;
}

#ourTreatments .treatment .treatment-text {
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-primary);
}

#ourTreatments .treatment h2 {
  font-size: 2.8rem;
  font-weight: 600;
}

#ourTreatments .treatment .btn-more {
  border: 1px solid var(--clr-secondary);
  border-radius: 20px;
  padding: 10px 24px;
  color: var(--clr-text);
  font-size: 14px;
  font-weight: 600;
}
/* #ourTreatments .cards {
  box-shadow: rgba(2, 46, 93, 0.2) 0px 6px 16px;
} */
 
#ourTreatments .cards {
  box-shadow: rgba(255, 92, 0, 0.2) 0px 6px 16px;

  transition: box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden;
  
}



#ourTreatments .cards:hover {
  box-shadow: rgba(2, 46, 93, 0.4) 0px 12px 24px;
  transform: translateY(-5px); /* Slightly lifts the card */
  background-color: #16b827;  
  color: white;
}

#ourTreatments .cards .cardImg {
  height: 100%;
  width: 100%;
}
#ourTreatments .cards:hover .btn-more {
  background-color: #fff;
  color: #16b827; /* Button text color changes to green */
  border-color: #fff;
}

#ourTreatments .cards .cardImg img {
  width: 100%;
  height: 320px;
}
#ourTreatments .cards .card-text {
  /* background-color: var(--clr-wht); */
  /* background-color: var(--clr-secondary); */
  height: 210px;
}

#ourTreatments .cards .card-text:hover {
  /* color: var(--clr-wht); 
  background-color: var(--clr-secondary); */

}

.btn-more:hover {
  /* background-color: var(--clr-wht); */
  /* color: white !important; */
}


#ourTreatments .cards .card-text h3 {
  font-size: 1.525rem;
  font-weight: 600;
}

#ourTreatments .cards .btn-more {
  border: 1px solid var(--clr-secondary);
  border-radius: 20px;
  padding: 10px 24px;
  color: var(--clr-text);
  font-size: 14px;
  font-weight: 600;
}

.cards:hover {
  transform: scale(1.01);

  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  
}


#ourTreatments .cards:hover .cardImg img {
  /* transform: scale(1.1); */
   /* Zooms in the image */
}
/* card end */

#TestimonialANDForm .Testimonials {
  background-color: var(--clr-secondary);
  position: relative;
}

#TestimonialANDForm .Testimonials .Testimonials-wrap,
#TestimonialANDForm .GetInTouchForm .GetInTouchForm-wrap {
  color: var(--clr-wht);
}

#TestimonialANDForm .Testimonials .Testimonials-wrap .Testimonials-text,
#TestimonialANDForm .GetInTouchForm .GetInTouchForm-wrap .GetInTouchForm-text {
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 500;
}

#TestimonialANDForm .Testimonials .Testimonials-wrap h2,
#TestimonialANDForm .GetInTouchForm .GetInTouchForm-wrap h2 {
  font-size: 2.6rem;
  font-weight: 600;
}

#TestimonialANDForm .GetInTouchForm {
  background-color: var(--clr-primary);
  position: relative;
  z-index: 2;
}

#TestimonialANDForm > .container {
  position: relative;
}

#TestimonialANDForm > .container::before {
  content: "";
  background-image: url("../images/testimonialTop-Leaf.png");
  background-repeat: no-repeat;
  position: absolute;
  height: 100%;
  width: 100%;
  left: -50%;
  right: 0;
  bottom: -30%;
  background-size: 1000px auto;
  transform: rotateY(180deg);
  z-index: 1;
}

#TestimonialANDForm > .container::after {
  content: "";
  background-image: url("../images/testimonialBottom-Leaf.png");
  background-repeat: no-repeat;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  top: -56%;
  background-size: 900px auto;
  z-index: 1;
  background-position: center;
}

.Testimonials .single-item i {
  font-size: 18px;
  text-align: center;
}

.Testimonials .single-item h5 {
  text-align: center;
  font-style: italic;
  font-size: 22px;
}

.Testimonials .slick-prev:before,
.Testimonials .slick-next:before {
  display: none;
}

.Testimonials .slick-dots {
  bottom: -40%;
}

.Testimonials .slick-dots li button:before {
  color: rgba(0, 0, 0, 0.5);
  opacity: 1;
  font-size: 10px;
}

.Testimonials .slick-dots li.slick-active button:before {
  color: var(--clr-wht);
}

.GetInTouchForm form .form-floating > label {
  color: var(--clr-wht);
  font-size: 0.9rem;
  padding: 1rem 1.5rem;
}

.GetInTouchForm form .form-control,
.GetInTouchForm form .form-select {
  background-color: rgba(255, 92, 0, 0.6);
  border: 1px solid var(--clr-secondary);
  border-radius: 16px;
  color: var(--clr-wht);
  padding: 1rem 1.5rem;
}

.GetInTouchForm form .form-check {
  text-align: start;
  font-size: 14px;
  font-weight: 200;
}

.GetInTouchForm form .send-btn {
  background-color: var(--clr-secondary);
  border-radius: 20px;
  padding: 10px 24px;
  color: var(--clr-wht);
  font-size: 14px;
  font-weight: 600;
}

#TeethStraightening {
  background-image: url("../images/bookingbg.png");
  background-size: cover;
}

#TeethStraightening .booking .booking-text {
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-primary);
}

#TeethStraightening .booking h2 {
  font-size: 2.6rem;
  font-weight: 600;
}

#TeethStraightening .booking .btn-read {
  border: 1px solid var(--clr-secondary);
  border-radius: 20px;
  padding: 10px 24px;
  color: var(--clr-text);
  font-size: 14px;
  font-weight: 600;
}

#TeethStraightening .booking .btn-booking {
  background-color: var(--clr-secondary);
  border-radius: 20px;
  padding: 10px 24px;
  color: var(--clr-wht);
  font-size: 14px;
  font-weight: 600;
}

#doctor-testimonial {
  background-color: var(--clr-primary);
  color: var(--clr-wht);
  position: relative;
}

#doctor-testimonial > .container::before {
  /* content: "";
  background-image: url("../images/leaf.png");
  background-repeat: no-repeat;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  bottom: -25%;
  background-size: 900px auto;
  background-position: center; */
}

#doctor-testimonial .testimonial {
  position: relative;
  z-index: 1;
}

#doctor-testimonial .column img:hover {
  opacity: 1;
}

#doctor-testimonial .testimonial {
  color: var(--clr-wht);
}

#doctor-testimonial .testimonial .text {
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-wht);
}

#doctor-testimonial .testimonial h2 {
  font-size: 2.6rem;
  font-weight: 600;
}

#doctor-testimonial .testimonial p {
  font-size: 14px;
  font-weight: 200;
  line-height: 28px;
}

#doctor-testimonial button {
  border: 1px solid var(--clr-wht);
  border-radius: 20px;
  padding: 8px 24px;
  color: var(--clr-wht);
  font-weight: 500;
}

#doctor-testimonial .slick-dots {
  text-align: left;
  position: absolute;
  bottom: -50%;
}

#doctor-testimonial .slick-dots li button {
  border: none;
}

#doctor-testimonial .slick-dots li button::before {
  color: rgba(0, 0, 0, 0.5);
  opacity: 1;
  font-size: 10px;
}

#doctor-testimonial .slick-dots li.slick-active button:before {
  color: var(--clr-wht);
}

#doctor-testimonial .column,
.slick-slide {
  margin-right: 15px;
}

#doctor-testimonial .column {
  position: relative;
  height: 90px;
}

#doctor-testimonial .column img {
  opacity: 0.8;
  cursor: pointer;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  object-position: top center;
}

/* =========================== Gallery Start =============== */
/*======== Gallery Start ========*/
#PhotoGallery {
  background-color: #f7f7f7;
}
#PhotoGallery .PhotoGalleryHeading h2 {
  font-size: 2.5em;
  font-weight: 600;
  color: var(--clr-secondary);
}
#PhotoGallery .PhotoGalleryHeading a {
  color: var(--clr-primary);
}
#PhotoGallery .PhotoGalleryHeading a > span {
  font-size: 1.475rem;
}
#PhotoGallery .Gallery {
  overflow: hidden;
}
#PhotoGallery .Gallery .Gallerybox {
  height: 300px;
  width: auto;
  overflow: hidden;
  border: 1px solid var(--clr-secondary);
}
#PhotoGallery .GalleryImage {
  position: relative;
  height: 300px;
  width: auto;
}
#PhotoGallery .GalleryImage::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}
#PhotoGallery .GalleryImage:hover::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
#PhotoGallery .GalleryImage.image1 {
  background-image: url("../images/GalleryF/1n.jpg");
  background-size: cover;
  background-position: center center;
}
#PhotoGallery .GalleryImage.image2 {
  background-image: url("../images/GalleryF/2n.jpg");
  background-size: cover;
}
#PhotoGallery .GalleryImage.image3 {
  background-image: url("../images/GalleryF/3n.jpg");
  background-size: cover;
}
#PhotoGallery .GalleryImage.image4 {
  background-image: url("../images/GalleryF/4.jpg");
  background-size: cover;
}
#PhotoGallery .GalleryImage.image5 {
  background-image: url("../images/GalleryF/5.jpg");
  background-size: cover;
  background-position: center;
}
#PhotoGallery .GalleryImage.image6 {
  background-image: url("../images/GalleryF/6.jpg");
  background-size: cover;
  background-position: center;
}
#PhotoGallery .GalleryImage.image7 {
  background-image: url("../images/GalleryF/7.jpg");
  background-size: cover;
  background-position: center;
}
#PhotoGallery .GalleryImage.image8 {
  background-image: url("../images/GalleryF/8.jpg");
  background-size: cover;
  background-position: center;
}

#expandedImg {
  border: 1px solid var(--clr-secondary);
  vertical-align: bottom;
  outline: none;
  border-radius: 5px 0 5pcz;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;


}

#PhotoGallery .GalleryImage.image1:hover,
.GalleryImage.image2:hover,
.GalleryImage.image3:hover,
.GalleryImage.image4:hover,
.GalleryImage.image5:hover,
.GalleryImage.image6:hover,
.GalleryImage.image7:hover,
.GalleryImage.image8:hover{
  transform: scale(1.1);
  transition: transform 6s cubic-bezier(0.25, 0.45, 0.45, 0.95);
}
/*======== Gallery End ========*/
/* =========================== Gallery end ======================= */

/*=========================================== Footer Start========== ========*/
#footer {
  position: relative;
}

#footer ul {
  list-style-type: none;
}

#footer .topHeader-left .contact a {
  background-color: var(--clr-secondary);
  padding: 8px 18px;
  border-radius: 20px;
  color: var(--clr-wht);
  font-size: 14px;
  font-weight: 400;
}

#footer .topHeader-left .social-Link a {
  line-height: 22px;
}

#footer .topHeader-left .social-Link a img {
  height: 22px;
  width: 22px;
}

#footer .topHeader-right .icon {
  display: flex;
  align-items: center;
  height: 22px;
}

#footer .topHeader-right .icon a {
  color: var(--clr-text);
  font-size: 14px;
}

#footer .topHeader-right .icon::before {
  font-family: var(--font-icon);
  font-size: 1.5rem;
  margin-right: 4px;
  font-weight: 400;
  color: var(--clr-secondary);
  transition: all 0.3s ease-out 0.1s;
}

#footer .topHeader-right .icon.i-phone::before {
  content: "\e0b0";
}

#footer .topHeader-right .icon.i-email::before {
  content: "\e0be";
}

#footer .topHeader-right .icon.i-phone {
  font-family: "Kanit", sans-serif;
  font-weight: 400;
}

#footer .topHeader-right .Referrals a {
  border: 1px solid var(--clr-secondary);
  border-radius: 20px;
  padding: 8px 18px;
  border-radius: 20px;
  color: var(--clr-text);
  font-size: 14px;
  font-weight: 500;
}

#footer #footer-nav-wrap ul {
  list-style-type: none;
}

#footer #footer-nav-wrap ul li .link {
  color: var(--clr-text);
}

#footer #footer-nav-wrap ul li .DentalTreatment {
  background-color: var(--clr-secondary);
  border: 1px solid #776027;
  color: var(--clr-wht);
  border-radius: 20px;
  padding: 0px 18px;
  font-size: 14px;
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-right: 6px;
}

#footer #footer-nav-wrap ul li .DentalTreatment::after {
  content: "\e313";
  font-family: var(--font-icon);
  font-size: 24px;
  color: var(--clr-wht);
  font-weight: 300;
}

#footer .bottom-wrapper {
  background-color: #412e11;
}

#footer .bottom-wrapper .copywrite {
  color: var(--clr-wht);
  font-size: 12px;
}

#footer .bottom-wrapper .policy p {
  color: var(--clr-wht);
  font-size: 14px;
}

#footer .bottom-wrapper .policy {
  color: var(--clr-wht);
  font-size: 12px;
}

#footer .bottom-wrapper .policy ul {
  list-style-type: none;
}

#footer .bottom-wrapper .policy ul li .link {
  color: var(--clr-wht);
}

#footer .bottom-wrapper .policy ul li .link.pipe {
  position: relative;
}

#footer .bottom-wrapper .policy ul li .link.pipe::after {
  content: "|";
  font-family: var(--font-icon);
  font-size: 18px;
  margin-left: 12px;
  display: inline-flex;
  align-items: center;
}

/*======== Footer End ========*/

@media (min-width: 576px) {
  /* [sm] - 576px & UP^ */
}

@media (min-width: 768px) {
  /* [md] - 768px & UP^ */
  #navHeader .navbar > .container-fluid {
    display: flex;
  }

  /* 768 to 1200 */

  .stick #branding a img.logo {
    height: 52px;
    width: auto;
  }

  #Welcome .about-img .aboutImg3 {
    position: absolute;
    left: -4%;
    right: 0;
    bottom: 10%;
    z-index: 1;
    width: 23%;
    height: auto;
  }
}

@media (min-width: 992px) {
  /* [lg] - 992px & UP^ */
  .stick #center-logo #branding {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--clr-wht);
    top: 0;
  }

  #navHeader .navbar-collapse {
    margin-top: 0;
  }

  #topHeader .topHeader-left .contact a {
    background-color: var(--clr-secondary);
    padding: 8px 18px;
    border-radius: 20px;
    color: var(--clr-wht);
    font-size: 14px;
    font-weight: 400;
  }

  #topHeader .topHeader-left .social-Link a {
    line-height: 22px;
  }

  #topHeader .topHeader-left .social-Link a img {
    height: 22px;
    width: 22px;
  }

  #topHeader .topHeader-right .icon {
    display: flex;
    align-items: center;
    height: 22px;
  }

  #topHeader .topHeader-right .icon a {
    color: var(--clr-text);
    font-size: 14px;
  }

  #topHeader .topHeader-right .icon::before {
    font-family: var(--font-icon);
    font-size: 1.5rem;
    margin-right: 4px;
    font-weight: 400;
    color: var(--clr-secondary);
    transition: all 0.3s ease-out 0.1s;
  }

  #topHeader .topHeader-right .icon.i-phone::before {
    content: "\e0b0";
  }

  #topHeader .topHeader-right .icon.i-email::before {
    content: "\e0be";
  }

  #topHeader .topHeader-right .icon.i-phone {
    font-family: "Kanit", sans-serif;
    font-weight: 400;
  }

  #topHeader .topHeader-right .Referrals a {
    border: 1px solid var(--clr-secondary);
    border-radius: 20px;
    padding: 8px 18px;
    border-radius: 20px;
    color: var(--clr-text);
    font-size: 14px;
    font-weight: 500;
  }

  #heroCarousel .carousel-item {
    position: relative;
    height: calc(100vh - 132px);
    background-size: cover;
    background-position: center center;
  }

  #heroCarousel .carousel-caption {
    right: 44%;
    left: 12%;
  }

  #heroCarousel .carousel-caption::before {
    content: "";
    background: transparent url("../images/curved-border.png");
    width: 25%;
    height: 90%;
    position: absolute;
    left: -10%;
    top: 6%;
    background-repeat: no-repeat;
  }

  #heroCarousel .carousel-caption .topContent {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
    text-indent: 80px;
  }

  #heroCarousel .carousel-caption .topContent span {
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--clr-secondary);
    border: 1px solid var(--clr-wht);
    border-radius: 20px;
    padding: 3px 10px;
    margin-right: 6px;
  }

  #heroCarousel .carousel-caption h2 {
    font-size: 3.2rem;
    margin-bottom: 30px;
  }

  #heroCarousel .carousel-caption h2 span {
    font-size: 3.4rem;
    line-height: 80px;
  }

  #heroCarousel .carousel-caption p {
    margin-bottom: 60px;
  }

  #footer ul {
    display: inline-flex;
    align-items: center;
  }

  #footer #footer-nav-wrap ul {
    display: inline-flex;
    align-items: center;
  }

  #footer .wrapper #center-logo #branding {
    position: absolute;
    top: 30%;
    left: 43%;
    transform: translate(-50%, -50%);
    background-color: var(--clr-wht);
  }

  #Welcome .about-img .aboutImg1 {
    /* position: relative;
    width: 76%;
    height: auto;
    margin-bottom: -220px; */
  }

  #Welcome .about-img .aboutImg2 {
    position: absolute;
    left: 60%;
    right: 0;
    top: -10%;
    z-index: 1;
    width: 28%;
    height: auto;
  }

  #Welcome .about-img .aboutImg3 {
    position: absolute;
    left: 0%;
    right: 0;
    bottom: -50%;
    z-index: 1;
    width: 23%;
    height: auto;
  }
}

@media (min-width: 1200px) {
  /* [xl] - 1200px & UP^ */

  .stick #branding a img.logo {
    height: 105px;
    width: auto;
  }

  #heroCarousel .carousel-caption::before {
    width: 100%;
    height: 100%;
  }

  #footer .wrapper #center-logo #branding {
    top: 32%;
    left: 50%;
  }

  #Welcome .about-img .aboutImg3 {
    position: absolute;
    left: -9%;
    right: 0;
    bottom: -26%;
    z-index: 1;
    width: 23%;
    height: auto;
  }

  #TestimonialANDForm {
    position: relative;
  }

  #TestimonialANDForm::before {
    content: "";
    background-color: var(--clr-secondary);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 50%;
  }

  #TestimonialANDForm::after {
    content: "";
    background-color: var(--clr-primary);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    right: 0;
    z-index: -1;
  }

  #doctor-testimonial .slick-dots {
    bottom: -50%;
  }
}

@media (min-width: 1400px) {
  /* [xxl] - 1400px & UP^ */
  #topHeader .topHeader-right .icon a {
    font-size: 16px;
  }

  #doctor-testimonial .slick-dots {
    bottom: -460%;
  }
}

@media (max-width: 1199.98px) {
  /* [xl] - 1200px & DOWN [For Mobile]*/
  #Welcome #about h2 {
    font-size: 2rem;

}

@media (max-width: 576px) {
  .mt-only-sm {
    margin-top: 1rem !important; /* Equivalent to mt-3 in Bootstrap */
  }
}

#Welcome #about p {
  font-size: 13px;

}
}

#whatsApp {
  position: fixed;
  right: 6px;
  bottom: 6px;
  z-index: 999;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background-color: #40c351;
  box-shadow: 2px 2px 3px #999;
}
#whatsApp .icon-whatsApp img {
  height: 48px;
  width: auto;
}

#whatsApp .icon-whatsApp {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  margin: 0 20px;
  color: #333;
  background: #fff;
  box-shadow: 0 0 0px 0px rgba(255, 255, 255, 0.5);
  cursor: pointer;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: 250ms color;
  -webkit-transition: 250ms color;
  -moz-transition: 250ms color;
  -ms-transition: 250ms color;
  -o-transition: 250ms color;
  animation-name: wave;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes wave {
  0% {
    box-shadow: 0 0 0px 0px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 0px 15px rgba(255, 255, 255, 0);
  }
}



/* Gallry ############################################ */

.wk-desk-1 {
  width: 8.333333%;
}

.wk-desk-2 {
  width: 16.666667%;
}

.wk-desk-3 {
  width: 25%;
}

.wk-desk-4 {
  width: 33.333333%;
}

.wk-desk-5 {
  width: 41.666667%;
}

.wk-desk-6 {
  width: 50%;
}

.wk-desk-7 {
  width: 58.333333%;
}

.wk-desk-8 {
  width: 66.666667%;
}

.wk-desk-9 {
  width: 75%;
}

.wk-desk-10 {
  width: 83.333333%;
}

.wk-desk-11 {
  width: 91.666667%;
}

.wk-desk-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }

  .wk-ipadp-2 {
    width: 16.666667%;
  }

  .wk-ipadp-3 {
    width: 25%;
  }

  .wk-ipadp-4 {
    width: 33.333333%;
  }

  .wk-ipadp-5 {
    width: 41.666667%;
  }

  .wk-ipadp-6 {
    width: 50%;
  }

  .wk-ipadp-7 {
    width: 58.333333%;
  }

  .wk-ipadp-8 {
    width: 66.666667%;
  }

  .wk-ipadp-9 {
    width: 75%;
  }

  .wk-ipadp-10 {
    width: 83.333333%;
  }

  .wk-ipadp-11 {
    width: 91.666667%;
  }

  .wk-ipadp-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wk-tab-1 {
    width: 8.333333%;
  }

  .wk-tab-2 {
    width: 16.666667%;
  }

  .wk-tab-3 {
    width: 25%;
  }

  .wk-tab-4 {
    width: 33.333333%;
  }

  .wk-tab-5 {
    width: 41.666667%;
  }

  .wk-tab-6 {
    width: 50%;
  }

  .wk-tab-7 {
    width: 58.333333%;
  }

  .wk-tab-8 {
    width: 66.666667%;
  }

  .wk-tab-9 {
    width: 75%;
  }

  .wk-tab-10 {
    width: 83.333333%;
  }

  .wk-tab-11 {
    width: 91.666667%;
  }

  .wk-tab-12 {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .wk-mobile-1 {
    width: 8.333333%;
  }

  .wk-mobile-2 {
    width: 16.666667%;
  }

  .wk-mobile-3 {
    width: 25%;
  }

  .wk-mobile-4 {
    width: 33.333333%;
  }

  .wk-mobile-5 {
    width: 41.666667%;
  }

  .wk-mobile-6 {
    width: 50%;
  }

  .wk-mobile-7 {
    width: 58.333333%;
  }

  .wk-mobile-8 {
    width: 66.666667%;
  }

  .wk-mobile-9 {
    width: 75%;
  }

  .wk-mobile-10 {
    width: 83.333333%;
  }

  .wk-mobile-11 {
    width: 91.666667%;
  }

  .wk-mobile-12 {
    width: 100%;
  }
}
	.desktop_2 * {
  font-family: Nunito, sans-serif;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.desktop_2 button {
  cursor: pointer;
}

.desktop_2 img {
  cursor: pointer;
}

.desktop_2 img:hover {
  transform: scale(1.02);
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  transition-property: all;
}

.desktop_2 .hdImg {
  display: none;
}


.desktop_2 .Container {
  width: 890px;
  margin-top: 100px;
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
}

.desktop_2 .portfolio {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: white;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.desktop_2 .project {
  position: relative;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
}

.desktop_2 .overlay {
  position: fixed;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(71, 69, 69, 0.7);
  height: 100%;
  width: 100%;
  max-height: 100%;
  top: 0px;
  left: 0px;
  z-index: 100;
  display: none;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}

.desktop_2 .overlay-inner {
  top: 50%;
  right: 0px;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: white;
  max-width: 700px;
  width: fit-content;
  padding-top: 35px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  position: relative;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  opacity: 1;
  max-width: 50%;
  max-height: 85%;
}


.desktop_2 .overlay-inner .hdImgs {
  width: fit-content;
  height: calc(80% - 55px);
  display: flex;
}

.desktop_2 .overlay-inner img {
  max-height: 100%;
  max-width: 100%;
  transform: none;
}

.desktop_2 .bigImg {
  width: 665px;
  height: 440px;
  margin-top: 0px;
  margin-right: 10px;
  margin-bottom: 10px;
  margin-left: 0px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}

.desktop_2 .project-image {
  height: 215px;
  width: 215px;
  margin-top: 0px;
  margin-right: 10px;
  margin-bottom: 10px;
  margin-left: 0px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}

.desktop_2 .above {
  display: flex;
}

.desktop_2 .bottom {
  display: flex;
  justify-content: space-around;
}

@media (max-width: 1024px) {
  .desktop_2 .project-image {
    width: 165px;
    height: 165px;
  }

  .desktop_2 .Container {
    width: 690px;
    margin-top: 80px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
  }

  .desktop_2 .bigImg {
    width: 515px;
    height: 340px;
  }
}

@media (max-width: 768px) {
  .desktop_2 .project {
    width: 220px;
    display: inline-block;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .desktop_2 .project-first {
    width: 450px;
  }

  .desktop_2 .above {
    flex-direction: column;
  }

  .desktop_2 .portfolio {
    justify-content: flex-start;
  }

  .desktop_2 .Container {
    width: 450px;
  }

  .desktop_2 .bigImg {
    width: 450px;
  }

  .desktop_2 .project-image {
    width: 220px;
    height: 200px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
    display: inline-block;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .desktop_2 .side {
    display: flex;
    width: 450px;
    justify-content: space-between;
  }

  .desktop_2 .bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }

  .desktop_2 .project-image.last {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 5px;
  }

  .desktop_2 .project-image.last {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
  }
}

@media (max-width: 500px) {
  .desktop_2 .bigImg {
    width: 250px;
    height: 200px;
  }

  .desktop_2 .project {
    width: 110px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
  }

  .desktop_2 .Container {
    width: 250px;
    margin-top: 80px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
  }

  .desktop_2 .project-image {
    width: 110px;
    height: 110px;
  }

  .desktop_2 .side {
    flex-direction: row;
    width: 250px;
  }

  .desktop_2 .project-image.last {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
  }

  .desktop_2 .project.last-project {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 30px;
  }

  .desktop_2 .project-first {
    width: 250px;
  }

  .desktop_2 .overlay-inner {
    max-width: 90%;
  }
}