@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");

:root {
  --blueColor: #008ed8;
  --darkBlueColor: #0177b4;
  --redColor: #fd0304;

  --chardonnayColor: #ecdec1;
  --lightChardonnayColor: #f9f0df;
  --darkGrayColor: #3d3d3d;
  --lightPinkColor: #ffb6c1;
  --moreLightPinkColor: #f6cbd2;
  --darkPinkColor: #e78190;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #fcf7ee;
}

table p {
  margin: 0px;
  padding: 0px;
}

h1,
h2 {
  font-weight: 500;
}

a {
  color: var(--blueColor);
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  outline: none;
}

a:hover,
a:focus {
  color: #111;
  text-decoration: none;
  outline: none;
}

.custom-select {
  font-size: 0.875rem !important;
}

.text-darkGray {
  color: var(--darkGrayColor);
}

.text-red {
  color: var(--redColor);
}

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

.btn-success {
  background: var(--blueColor);
  padding: 0.375rem 1.75rem;
}

.btn-success:hover {
  background: var(--blueColor);
  opacity: 0.8;
}

.btn {
  padding: 10px 20px;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
}

.btn-chardonnay {
  background: var(--chardonnayColor);
  border: 1px solid var(--chardonnayColor);
}

.btn-outline-chardonnay {
  background: var(--chardonnayColor);
  border: 1px solid var(--chardonnayColor);
  border-radius: 50px;
}

.btn-secondary {
  background: var(--darkGrayColor);
  border: 1px solid var(--darkGrayColor);
  border-radius: 50px;
}

.btn-primary {
  background: var(--blueColor);
  border: 1px solid var(--blueColor);
}

.badge-primary {
  background: var(--blueColor);
  border: 1px solid var(--blueColor);
}

p,
ul li,
ol li {
  color: var(--darkGrayColor);
  font-size: 0.875rem;
  line-height: 24px;
}

.btn-primary:hover {
  background-color: var(--darkBlueColor);
}

.overlay {
  position: relative;
  z-index: 2;
}

.overlay:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--blueColor);
  opacity: 0.8;
  z-index: -1;
}

ul.common-list-none {
  margin: 0px;
  padding: 0px;
}

ul.common-list-none li {
  list-style: none;
}

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

ul.common-list li {
  line-height: 25px;
  font-size: 14px;
  font-weight: 500;
  /* white-space: nowrap; */
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
  position: relative;
  padding-left: 20px;
}

ul.common-list li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 7px;
  width: 10px;
  height: 10px;
  background: var(--darkGrayColor);
}

ol.common-order-list {
  margin: 0px;
  padding: 0px;
  padding-left: 15px;
}

ol.common-order-list li {
  line-height: 25px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 0;
  position: relative;
}

.bg-primary {
  background: var(--blueColor) !important;
}

.heading-2 {
  font-size: 2rem;
  /* font-weight: bold; */
  margin-bottom: 20px;
}

.heading-3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.container {
  max-width: 1250px;
}

/* Header */
header {
  width: 100%;
  z-index: 999;
  position: relative;
  top: 0;
  position: sticky;
}

header.active {
  background: #fcf7ee;
  box-shadow: #ccc 1px 2px 50px;
}

header.sticky #top_line {
  height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  visibility: visible;
}

#top_line {
  font-size: 12px;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  visibility: visible;
  opacity: 1;
  background: var(--chardonnayColor);
  padding: 6px 0px;
  font-size: 12px;
}

header.sticky {
  -webkit-box-shadow: 0px 2px 10px -2px rgba(0, 0, 0, 0.41);
  -moz-box-shadow: 0px 2px 10px -2px rgba(0, 0, 0, 0.41);
  box-shadow: 0px 2px 10px -2px rgba(0, 0, 0, 0.41);
  background-color: #fff;
  padding-bottom: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}

header > .container {
  padding: 12px 0px;
}

.sticky nav {
  margin-top: 10px;
}

#tag_line {
  font-size: 13px;
  color: #666;
}

ul.top_links {
  list-style: none;
  margin: 0;
  padding: 0;
  float: right;
  font-weight: 500;
}

ul.top_links li {
  display: inline-block;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  margin-right: 5px;
  padding-left: 8px;
}

ul.top_links li:first-child {
  border: 0px;
}

ul.top_links li i {
  font-weight: bold;
  font-size: 15px;
}

header .logo img {
  width: 150px;
}

.menu-icon {
  display: none;
}

header nav > ul {
  display: flex;
  gap: 20px;
  justify-content: end;
  align-items: center;
  height: 100%;
}

header nav ul li .submenu-icon1,
header nav ul li .submenu-icon2 {
  display: none;
}

header nav > ul > li {
  list-style: none;
  position: relative;
}

header nav > ul > li > a {
  color: #333333;
  padding: 20px 0px;
  font-size: 14px;
}

header nav > ul > li > a:hover {
  color: #ed8191;
}

header nav > ul > li > ul {
  position: absolute;
  top: 130%;
  left: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  margin: 0px;
  padding: 0px;
  width: 240px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  box-shadow: 2px 4px 10px gainsboro;
}

header nav > ul > li > .bigSubmenu {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  margin: 0px;
  padding: 0px;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  box-shadow: 2px 4px 10px gainsboro;
  padding: 40px 0px;
}

header nav > ul > li > .bigSubmenu .skin-treatment-title {
  display: flex;
  justify-content: space-between;
  padding: 10px 0px;
  border-bottom: 1px solid #ccc;
  color: #000;
  cursor: pointer;
}
header nav > ul > li > .bigSubmenu .skin-treatment-title a {
  color: #000;
  display: block;
  width: 100%;
}
header nav > ul > li > .bigSubmenu .skin-treatment-title a:hover {
  color: var(--darkPinkColor);
}
header
  nav
  > ul
  > li
  > .bigSubmenu
  .skin-treatment-menu-wrapper
  .skin-treatment-title
  span.submenu-inner-icon {
  font-size: 20px;
}
header nav > ul > li > .bigSubmenu .skin-treatment-menu-wrapper ul {
  display: none;
  margin-left: 10px;
  margin-bottom: 10px;
}
header nav > ul > li > .bigSubmenu .skin-treatment-menu-wrapper ul li {
  border: 0px;
  padding-top: 5px;
  padding-bottom: 0px;
}
header nav > ul > li > .bigSubmenu .skin-treatment-menu-wrapper ul.active {
  display: block;
}

header nav > ul > li:hover > ul,
header nav > ul > li:hover > .bigSubmenu {
  visibility: visible;
  opacity: 1;
}

header nav > ul > li > .bigSubmenu h4 {
  font-size: 1.2rem;
}
header nav > ul > li > .bigSubmenu h4 a {
  color: #000;
}
header nav > ul > li > .bigSubmenu h4 a:hover {
  color: var(--darkPinkColor);
}
header nav > ul > li > .bigSubmenu ul {
  margin: 0px;
  padding: 0px;
}
header nav > ul > li > .bigSubmenu ul li {
  list-style: none;
  border-bottom: 1px solid #ccc;
  padding: 10px 0px;
}
header nav > ul > li > .bigSubmenu ul li a {
  color: #000;
}
header nav > ul > li > .bigSubmenu ul li a:hover {
  color: var(--darkPinkColor);
}

header nav > ul > li > ul > li {
  list-style-type: none;
  font-size: 0.85rem;
  position: relative;
}

header nav > ul > li > ul > li > a {
  padding: 12px 20px;
  display: block;
  color: #000;
}

header nav > ul > li > ul > li > a:hover {
  background: var(--darkPinkColor);
  color: #fff;
}

/* submenu 2 begin here */
header nav > ul > li > ul > li > ul {
  position: absolute;
  top: 0%;
  left: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  margin: 0px;
  padding: 0px;
  width: 240px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  box-shadow: 2px 4px 10px gainsboro;
}

header nav > ul > li > ul > li:hover ul {
  visibility: visible;
  opacity: 1;
}

header nav > ul > li > ul > li > ul > li {
  list-style-type: none;
  font-size: 0.85rem;
}

header nav > ul > li > ul > li > ul > li > a {
  padding: 10px 20px;
  display: block;
  color: #000;
  font-size: 90%;
}

header nav > ul > li > ul > li > ul > li > a:hover {
  background: var(--darkPinkColor);
  color: #fff;
}

/* submenu 2 ends here */

.slider-section {
  width: 100%;
  margin-top: -86px;
}

.slider-section img {
  width: 100%;
}

.slider-section .slider-item {
  padding-top: 150px;
  position: absolute;
  top: 0px;
  left: 200px;
}

.welcome-sections {
  padding: 50px 0px;
  text-align: center;
  background: var(--lightChardonnayColor);
}

.machine-section {
  padding: 80px 0px;
}

.machine-section .machine-box {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  align-items: flex-start;
}

.machine-section .machine-box h5 {
  font-weight: 600;
}

.services-section {
  padding: 80px 0px;
  background: var(--moreLightPinkColor);
}

.services-section .service-box {
  display: flex;
  gap: 10px;
  margin-top: 30px;
  align-items: flex-start;
}

.services-section .service-box img {
  width: 90px;
}

/* .services-section .service-box h5 {
    font-weight: 600;
} */

.owl-theme .owl-dots .owl-dot span {
  background: rgb(181 181 181);
}

.welcome-sections .count-box {
  color: var(--darkGrayColor);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.welcome-sections .count-box span {
  font-size: 3rem;
  font-weight: bold;
}

.welcome-sections .count-box .icon-circle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-sections .count-box .icon-circle i {
  font-size: 30px;
}

.welcome-sections .count-box h2 {
  font-weight: bold;
  margin-bottom: 0px;
}

.welcome-sections .count-box p {
  margin-bottom: 0px;
  color: var(--darkGrayColor);
}

.testimonials-section {
  padding: 80px 0px;
  background: url(../images/testi-bg.jpg);
}

.testimonials-section .owl-theme .owl-dots .owl-dot.active span,
.testimonials-section .owl-theme .owl-dots .owl-dot:hover span {
  background: #fff;
  width: 20px;
  transition: all 0.45s;
}

.testimonials-section h2 {
  margin-bottom: 50px;
}

.testimonials-section .testimonials-box {
  background: #fff;
  padding: 25px;
  border: 1px solid #ccc;
  border-radius: 10px;
  display: block;
  color: #000;
  height: 485px;
}

.testimonials-section .testimonials-box img {
  width: 100%;
  margin-bottom: 20px;
}

.testimonials-section .testimonials-box h6 {
  font-weight: bold;
}

.month-offer-section {
  padding: 80px 0px;
}

.month-offer-section .row {
  align-items: center;
  justify-content: center;
}

.month-offer-section span {
  display: block;
  color: #f16d81;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.team-section {
  padding: 80px 0px;
  background: url(../images/testi-bg.jpg);
}

.team-section .owl-theme .owl-dots .owl-dot.active span,
.team-section .owl-theme .owl-dots .owl-dot:hover span {
  background: #fff;
  width: 20px;
  transition: all 0.45s;
}

.team-section h2 {
  margin-bottom: 50px;
}

.team-section .team-box {
  background: #fff;
  padding: 18px 24px;
  border: 1px solid #ccc;
  border-radius: 10px;
  display: block;
  color: #000;
  /* height: 600px; */
}

.team-section .team-box img {
  width: 100%;
  margin-bottom: 20px;
}

.team-section .team-box h6 {
  font-weight: bold;
}

.team-section .team-box p {
  margin-bottom: 0px;
}

.our-clinic-section {
  padding: 50px 0px;
  background: #fff;
}

.our-clinic-section .clinic-box {
  text-align: center;
  margin-top: 20px;
  border: 1px solid #ccc;
  padding: 10px;
  min-height: 310px;
}

.our-clinic-section .clinic-box img {
  width: 100%;
}

.our-clinic-section .clinic-box h5 {
  /* font-weight: 600; */
  margin-top: 20px;
}

.our-clinic-section .clinic-box h5 i {
  margin-right: 5px;
}

.our-clinic-section .clinic-box p {
  padding: 0px 30px;
}

.goal-section {
  padding: 50px 0px;
  background: #fff;
}

.goal-section .goal-box {
  /* background: var(--chardonnayColor); */
  padding: 30px;
  border-radius: 10px;
  /* min-height: 350px; */
}

.goal-section .goal-box h4 {
  font-weight: bold;
}

.goal-section .goal-box p {
  padding-bottom: 0px;
}

.insta-feed-section {
  padding: 80px 0px;
}

.partner-section {
  padding: 80px 0px;
}

.partner-section .client-box {
  border-radius: 5px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-section img {
  width: 165px !important;
}

.partner-section .owl-nav,
.partner-section .owl-dots {
  display: none;
}

.franchise-section {
  padding: 40px 0px;
  background: url(../images/franchise-bg.jpg) top center;
}

.home-contact-section {
  padding: 50px 0px;
}

.home-contact-section .home-contact-left-box {
  height: 348px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0px 50px;
  text-align: center;
}

.newsletter-section {
  padding: 50px 0px;
  background: var(--moreLightPinkColor);
}

/* .newsletter-section .subscribe-box {
  border-right: 1px solid var(--darkGrayColor);
} */

.newsletter-section .subscribe-box .subscribe-form {
  text-align: center;
}

.newsletter-section .newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-section .common-input {
  height: 60px;
  width: 300px;
  color: #333;
  text-shadow: none;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  padding: 0 25px;
  font-weight: 500;
  font-size: 14px;
  background: #fff;
  font-weight: 400;
  border: 1px solid transparent;
  box-shadow: none;
  outline: none;
}

.newsletter-section .btn {
  transition: all 0.4s ease;
  display: inline-block;
  height: 60px;
  line-height: 60px;
  padding: 0;
  width: 180px;
  position: relative;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(247, 135, 191, 0.75);
  background: #e78190;
  color: #fff;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}

footer {
  background: #fcf7ee;
  /* background: var(--lightChardonnayColor); */
  color: var(--darkGrayColor);
  padding: 30px 0 10px 0;
}

footer h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
  margin-bottom: 20px;
}

footer ul li {
  color: var(--darkGrayColor);
}

footer .btn-primary {
  background-color: var(--darkBlueColor);
  border-color: #0062cc;
}

footer p {
  color: var(--darkGrayColor);
}

footer ul {
  margin: 0px;
  padding: 0px;
  /* margin-left: 20px; */
}

footer ul li {
  /* list-style: square; */
  list-style: none;
  font-size: 1rem;
  margin-bottom: 12px;
}

footer ul li a {
  color: var(--darkGrayColor);
  transition: all 0.45s;
}

footer ul li a:hover {
  color: var(--darkPinkColor);
  margin-left: 20px;
}

footer .contact-info-section ul li {
  display: flex;
  gap: 15px;
}

.social-icon-box ul.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0px;
  padding: 0px;
  margin-top: 30px;
}

.social-icon-box ul.social-icons li {
  list-style: none;
}

.social-icon-box ul.social-icons li a {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--darkGrayColor);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--darkGrayColor);
}

.social-icon-box ul.social-icons li a i {
  font-size: 15px;
}

.social-icon-box ul.social-icons li a:hover {
  background: var(--darkGrayColor);
  color: #fff !important;
}

.social-icon-box-fixed {
  position: fixed;
  bottom: 50px;
  right: 25px;
}

.social-icon-box-fixed ul.social-icons {
  gap: 15px;
}

.social-icon-box-fixed ul.social-icons li a {
  background: var(--darkGrayColor);
  color: #fff !important;
}

.footer-2 {
  background: #c39c81;
  /* background: var(--chardonnayColor); */
  padding: 40px 0px;
  color: #fff;
}

.footer-2 .row {
  align-items: center;
}

.footer-2 img {
  width: 165px;
}

.footer-2 p {
  margin-bottom: 0px;
  color: #fff;
}

.copy-section {
  background-color: #fcf7ee;
  padding: 20px 0;
  text-align: center;
  color: var(--darkGrayColor);
  font-size: 0.9rem;
}

.copy-section p {
  text-align: left;
  margin-bottom: 0px;
}

.copy-section ul {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
  margin-bottom: 0px;
}

.copy-section ul li {
  list-style: none;
}

.copy-section ul li a {
  color: var(--darkGrayColor);
  transition: all 0.45s;
}

.copy-section ul li a:hover {
  color: var(--darkPinkColor);
}

.listing-page {
  background: #f1f1f1;
  padding: 15px 0px;
}

.listing-wrapper {
  display: flex;
}

.listing-wrapper .listing-left-box {
  flex: 0 0 300px;
  max-width: 300px;
  padding: 0px 10px 0px 0px;
}

.listing-wrapper .listing-left-box .filter-box {
  background: #fff;
}

.listing-wrapper .listing-left-box .filter-box .filter-main-title {
  padding: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 18px;
}

.listing-wrapper .listing-left-box .filter-box .filter-inner-box {
  padding: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.listing-wrapper
  .listing-left-box
  .filter-box
  .filter-inner-box
  .filter-inner-title {
  font-size: 14px;
  text-transform: uppercase;
}

.listing-wrapper .listing-left-box .filter-box .filter-inner-box ul {
  margin: 0px;
  padding: 0px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.listing-wrapper .listing-left-box .filter-box .filter-inner-box ul li {
  list-style: none;
  font-size: 14px;
  color: #777;
}

.listing-wrapper .listing-left-box .filter-box .filter-inner-box ul li label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 0px;
}

.listing-wrapper
  .listing-left-box
  .filter-box
  .filter-inner-box
  ul
  .filter-sublist {
  margin-left: 20px;
  display: none;
}

.listing-wrapper
  .listing-left-box
  .filter-box
  .filter-inner-box
  ul
  .filter-sublist.active {
  display: block;
}

.listing-wrapper .listing-right-box {
  flex-grow: 1;
  overflow: auto;
}

.listing-wrapper .listing-right-box .listing-box {
  background: #fff;
  overflow: hidden;
}

.listing-wrapper .listing-right-box .listing-main-title {
  padding: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
  overflow: hidden;
}

.listing-wrapper .listing-right-box .listing-inner-box {
  padding: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.listing-wrapper .listing-right-box .listing-inner-box img {
  border: 1px solid #ccc;
  padding: 5px;
}

.listing-page-details {
  padding: 30px 0px;
}

.listing-page-details img {
  width: 100%;
}

.listing-page-details h1 {
  font-size: 30px;
  /* font-weight: 500; */
}

.top-doctors-section {
  text-align: center;
}

.top-doctors-section .owl-carousel {
  margin-top: 30px;
}

.top-doctors-section .owl-carousel h6 {
  text-transform: uppercase;
  color: #000;
  margin-top: 10px;
  margin-bottom: 5px;
}

.top-doctors-section .owl-carousel span {
  color: #555;
  font-size: 13px;
}

.top-doctors-section.top-doctors-section-package .owl-carousel span {
  color: #555;
  font-size: 10px;
}

.top-doctors-section.top-doctors-section-package .owl-carousel h6 {
  font-size: 80%;
  margin-bottom: 0px;
}

.top-doctors-section .owl-carousel span + span {
  font-style: italic;
  display: block;
  font-size: 11px;
  font-weight: bold;
}

.top-doctors-section.top-doctors-section-package .owl-carousel span + span {
  font-size: 10px;
}

.widget1 input[type="text"],
.widget input[type="email"] {
}

.widget .form-control,
.widget input[type="text"],
.widget input[type="email"],
.widget input[type="password"],
.widget input[type="url"],
.widget input[type="date"],
.widget textarea,
.widget select {
  font-weight: 300;
  font-size: 12px;
  font-style: italic;
  border: 1px solid #e1e1e1;
  color: #545454;
  background-color: #f8f9fa;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.widget .btn-default,
.widget input[type="submit"],
.widget input[type="reset"] {
  background-color: #2d2d2d;
  border-color: #2d2d2d;
  color: #fff;
}

.widget .btn,
.widget input[type="submit"],
.widget input[type="reset"] {
  padding: 10px 28px;
  font-size: 11px;
  font-weight: 300;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  text-transform: uppercase;
}

.widget .newsletter-frm button,
.widget .newsletter-frm input[type="submit"] {
  padding: 8px 20px;
}

.widget .newsletter-frm button:hover,
.widget .newsletter-frm input[type="submit"]:hover {
  background: #008c99;
}

.widget h3 {
  clear: both;
  letter-spacing: 2px;
  position: relative;
  margin-bottom: 19px;
  text-align: center;
  font-size: 15px;
  text-transform: uppercase;
}

.widget h3 span {
  display: inline-block;
  max-width: 100%;
  position: relative;
  padding: 0 26px;
  color: var(--blueColor);
}

.widget h3 span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2px;
  width: 20px;
  height: 4px;
  border-top: 1px solid var(--blueColor);
  border-bottom: 1px solid var(--blueColor);
}

.widget h3 span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -2px;
  width: 20px;
  height: 4px;
  border-top: 1px solid var(--blueColor);
  border-bottom: 1px solid var(--blueColor);
}

.widget .search-box input[type="text"] {
  padding-top1: 7px;
  font-size: 14px;
  float: left;
  width: calc(100% - 40px);
  background: #fff;
  margin: 0 !important;
}

.widget .search-box button,
.widget .search-box input[type="submit"] {
  float: left;
  width: 40px;
  padding: 6px 10px;
  color: #fff;
  font-size: 14px;
  border-left: none;
  cursor: pointer;
}

.widget .search-box button:hover,
.widget .search-box input[type="submit"]:hover {
  background: #008c99;
}

.widget .search-box form.search::after {
  content: "";
  clear: both;
  display: table;
}

.widget-box {
  background: #fff;
  padding: 20px;
  margin-top: 30px;
  border: 1px solid #ccc;
}

.widget ul {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.widget li {
  line-height: 25px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
  position: relative;
  padding-left: 20px;
}

.widget li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 7px;
  width: 10px;
  height: 10px;
  background: var(--blueColor);
}

.widget li a {
  line-height: 25px;
  font-size: 13px;
  font-weight: 500;
  color: #222;
  text-decoration: none;
}

.widget li a:hover {
  padding-left: 10px;
  color: var(--darkBlueColor);
}

.doctor {
  text-transform: capitalize;
}

.doctor-left-box {
  border: 1px solid #ccc;
}

.doctor .profile-img {
  text-align: center;
}

.doctor .profile-img img {
  width: 200px !important;
  height: 200px;
  border-radius: 50%;
}

.doctor .name {
  font-weight: 600;
  font-size: 1.1875rem;
}

.doctor .details {
  font-weight: 500;
  font-size: 0.9375rem;
  color: #545b62;
}

.doctor .doctor-abt div {
  padding-bottom: 1.5625rem;
  text-transform: none;
}

.doctor h2 {
  font-size: 1.3125rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: capitalize;
  line-height: 1.5625rem;
  width: 100%;
  text-decoration: underline;
  margin-top: 0;
  margin-bottom: 7px;
}

.doctor .review {
  margin-top: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 550;
}

.doctor .review h5 {
  color: #333;
  font-size: 0.875rem;
  margin-bottom: 1px;
  letter-spacing: 1px;
}

.doctor .review i {
  font-size: 0.9375rem;
}

.doctor small i {
  font-size: 0.8125rem;
  padding-bottom: 1px;
  vertical-align: middle;
  color: #00813e;
}

.doctor .list-unstyled li,
.doctor-list .list-unstyled li {
  list-style-type: none !important;
}

.doctor .list-unstyled li a.submenu {
  text-decoration: none;
  color: #000;
  font-size: 0.875rem;
  text-transform: capitalize;
}

.doctor .list-unstyled li a.submenu:after {
  position: absolute;
  content: "\002b";
  right: 0;
  margin-top: -5px;
  padding-right: 0.875rem;
  font-size: 1.3125rem;
  font-weight: 600;
  color: #ccc;
}

.doctor .list-unstyled li a.expand:after {
  position: absolute;
  content: "\2013";
  right: 0;
  margin-top: -5px;
  padding-right: 1rem;
  font-size: 1.3125rem;
  font-weight: 600;
  color: #ccc;
}

.doctor .children ul li a {
  color: #00813e;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 3px;
  text-transform: capitalize;
}

.doctor .children ul li a:hover {
  text-decoration: underline;
}

.doctor .nav-link {
  color: #00813e !important;
}

.doctor .nav-link:hover {
  color: #000 !important;
}

.doctor .show-more {
  color: #00813e;
  font-size: 0.875rem;
}

.doctor .hide {
  display: none;
}

.doctor .search-bar-left input[type="text"] {
  padding-top: 5px;
  padding-bottom: 6px;
  padding-left: 0.9375rem;
  border: none;
  margin-top: 0.9375rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  border: #ccc solid 1px;
  border-radius: 50px;
  width: 100%;
  text-indent: 1.25rem;
}

.doctor .search-bar-left i {
  position: absolute;
  top: 22px;
  left: 1.6875rem;
  color: #ccc;
}

.doctor .list-unstyled li ul {
  margin-left: 0;
  padding-left: 0.75rem;
}

.treatment {
  background: linear-gradient(90deg, #fdfdfd 20%, #fdfdfd 10%);
}

.treatment .nav-pills .nav-link {
  border: solid 1px #dee2e6 !important;
  border-left: solid 1px #fff !important;
  border-right: none !important;
  border-radius: 0 !important;
  font-size: 0.9375rem;
  font-weight: 500;
  padding-top: 8px;
  padding-bottom: 0.625rem;
  columns: #b2b2b2;
  letter-spacing: 1px;
  color: #222;
  text-shadow: 0 1px #627199;
}

.treatment .nav-pills .nav-link:not(:last-of-type) {
  border-bottom: none !important;
}

.treatment .nav-pills .active {
  background: linear-gradient(to right, #f9f9f9, #fff) !important;
  color: var(--blueColor) !important;
  position: relative;
  border-left: solid 4px var(--blueColor) !important;
}

.treatment .nav-pills a:hover {
  color: var(--blueColor);
}

.treatment .nav-pills a.active:after1 {
  content: "";
  position: absolute;
  right: 0;
  top: 5%;
  width: 0;
  height: 0;
  border: 26px solid transparent;
  border-left-color: #eee;
  border-right: 0;
  margin-top: -4px;
  margin-right: -1.6875rem;
}

.treatment .nav-pills .active i {
  border: solid #ccc;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  text-align: right;
  position: absolute;
  right: 0.9375rem;
  top: 1.0625rem;
}

.treatment .nav-pills .active .right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  text-align: right;
}

.treatment .h1 {
  font-size: 2.3125rem;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.3px;
  margin-bottom: 2.1875rem;
  text-transform: uppercase;
  text-shadow: 0 1px #627199;
  text-decoration-color: #222;
  line-height: 2.9rem;
  width: 100%;
}

.treatment .h2 {
  font-size: 1.3125rem;
  font-weight: 600;
  color: #222;
  letter-spacing: 1px;
  margin-bottom: 1.1875rem;
  text-transform: uppercase;
  text-decoration: underline;
  text-shadow: 0 1px #627199;
  text-decoration-color: #222;
  line-height: 1.25rem;
  width: 100%;
}

.treatment hr {
  background-image: linear-gradient(
    to right,
    #f5f5f5 52%,
    #f5f5f5 52%
  ) !important;
  height: 1px;
  width: 20%;
  margin-bottom: 1.0625rem;
}

.treatment .intro ol li {
  padding: 0;
}

.treatment .intro ol li p {
  margin-bottom: 7px !important;
}

.treatment .intro h6 {
  font-size: 15px;
  font-weight: 600;
  padding: 0 0 0 10px;
  margin: 0;
}

.treatment .intro p {
  padding: 0 0 0 10px;
  margin: 0;
  color: #a1a1a1;
}

.treatment .intro p1 {
  display: table;
  padding: 0;
  margin: 0;
  width: 100% !important;
  border: solid 1px #dee2e6 !important;
  font-size: 0.875rem;
}

.treatment ul {
  padding-left: 1.25rem !important;
  margin-left: 0 !important;
}

.treatment .intro p:not(:last-of-type) {
  border-bottom: none !important;
}

.treatment .intro p .cell {
  display: table-cell;
  padding: 0.75rem;
}

.treatment .intro p .cell:first-child {
  border-right: 1px solid #dee2e6 !important;
  width: 30%;
  font-weight: 600;
}

.pages ul.parent > li > a {
  color: var(--blueColor);
  font-size: 0.9375rem;
  font-weight: 510;
}

.pages ul.parent > li::before {
  width: 0px;
  height: 0px;
}

.pages ul.parent > li > a:hover {
  text-decoration: none;
}

.pages .list-unstyled .list-unstyled {
  padding: 0.9375rem 0;
  list-style-image: url(../img/ul-nav.png);
  list-style-position: inside;
  border-top: solid 1px #00813e;
}

.pages .list-unstyled .list-unstyled li {
  margin: 2px 0.9375rem;
  border-bottom: dotted 1px #ccc;
}

.pages .list-unstyled .list-unstyled li a {
  color: #636363;
  font-size: 0.875rem;
  padding-left: 3px;
  text-transform: capitalize;
}

.page-footer .rate-box h4 {
  color: #333;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.3px;
  word-spacing: 0;
}

.page-footer .rate-box h5 {
  color: #b2b2b2;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.3px;
  word-spacing: 0;
}

.page-footer .rate-box .rating-stars {
  color: #b2b2b2;
  font-size: 1.7rem;
  text-decoration: none;
}

.page-footer .rate-box .rating-stars span {
  cursor: pointer;
}

.page-footer .rate-box .rating-stars .fa:hover {
  color: #ff533d;
}

.page-footer .rate-box .rating-result {
  color: #b2b2b2;
  font-size: 0.79rem;
}

.page-footer .rate-box .checked {
  color: #ff533d;
}

.page-footer {
  color: #b2b2b2;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  background: #343a40;
  line-height: 1.375rem;
}

.page-footer a {
  color: #b2b2b2;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 23px;
  text-transform: capitalize;
}

.page-footer a:hover {
  color: #b2b2b2;
}

.page-footer .social-box {
  background: #00813e;
  color: #e1e1e1;
  padding: 1.25rem 0;
}

.page-footer .social-box .social-links a i {
  vertical-align: middle;
  margin: 3px;
  font-size: 1.25rem;
}

.page-footer .social-box .border-x {
  border-left: dotted 2px #cbcbcc;
  border-right: dotted 2px #cbcbcc;
}

.page-footer h6 {
  font-size: 0.875rem;
}

.page-footer hr {
  border: solid 1px #6c757d;
  width: 4.375rem;
  margin: auto;
  margin-top: 0;
  margin-bottom: 1.25rem;
  display: inline-block;
}

.page-footer small {
  font-size: 0.75rem;
}

.testimonial-box {
  border: 1px solid #ccc;
  padding: 20px;
  margin-bottom: 20px;
}

.testimonial-box .quote span i {
  font-size: 1.5625rem;
  margin-right: 0.625rem;
  color: var(--blueColor);
}

.testimonial-box img {
  width: 100%;
  border: 5px #ccc solid;
}

.testimonial-box i {
  font-size: 90%;
}

.testimonial-box blockquote {
  font-size: 90%;
}

.contact-section i {
  font-size: 18px;
  margin-right: 10px;
}

.map iframe {
  width: 100%;
  height: 400px;
}

.contact-info {
  display: flex;
}

.contact-info span:first-of-type {
  width: 40px;
}

.whatsapp-panel-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60;
}

.about-section {
  padding: 50px;
}

.about-section span {
  font-size: 6rem;
  color: #747669;
  font-family: "quentin";
  opacity: 0.5;
  margin-bottom: -20px;
  display: block;
}

.about-section .team-box {
  background: #fff;
  border: 1px solid #ccc;
  padding: 25px;
  border-radius: 10px;
  display: block;
  color: #000;
  margin-top: 30px;
}

.about-section .team-box img {
  width: 100%;
  border: 1px solid #ccc;
}

.about-section .team-box h6 {
  font-weight: bold;
}

.about-section .team-box p {
  margin-bottom: 0px;
}

.about-section-2 {
  padding: 50px;
  background: antiquewhite;
}

.about-section-2 span {
  font-size: 10rem;
  color: #747669;
  font-family: "quentin";
  opacity: 0.5;
  margin-top: -100px;
  display: block;
}

.about-section-2 h2 {
  text-align: right;
  margin-top: 20px;
}

.inner-banner-section {
  width: 100%;
}

.inner-banner-section img {
  width: 100%;
}

.inner-header-section {
  background: linear-gradient(45deg, #8b7948, transparent);
  color: #fff;
  position: relative;
  padding: 50px 0px;
}

.inner-header-section img {
  width: 100%;
}

.inner-header-banner-section {
  position: relative;
  padding: 0px;
}
.inner-header-banner-section img {
  width: 100%;
}

.franchise-form-section {
  padding: 50px 0px;
}

.franchise-form-section .franchise-table thead th {
  background: #3d3d3d;
  color: #fff;
  font-weight: bold;
}

.franchise-partner-section {
  padding: 80px 0px;
  background: var(--moreLightPinkColor);
}

.franchise-partner-section .reason-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  position: relative;
  height: 120px;
}

.franchise-partner-section .reason-box p {
  margin-left: 20px;
}

.franchise-partner-section .reason-box span {
  font-size: 5rem;
  position: absolute;
  top: 1px;
  left: -25px;
  font-style: italic;
  font-weight: bold;
  color: var(--darkPinkColor);
}

.form-control {
  border-radius: 0px;
  padding: 24px 12px;
}

.form-control-select {
  border-radius: 0px;
  padding: 6px 12px;
  height: 50px;
}

.franchise-section-2 {
  padding: 50px 0px;
  background: antiquewhite;
}

.franchise-section-2 span {
  font-size: 8rem;
  color: #747669;
  font-family: "quentin";
  opacity: 0.2;
  display: block;
}

.franchise-section-2 h2 {
  margin-top: -50px;
}

.meet-us-section {
  padding: 50px 0px;
}

.meet-us-section .meet-box {
  background: #ecdec1;
  padding: 40px;
  margin-top: 30px;
  padding-top: 30px;
}

.meet-us-section .meet-box .contact-info-section h4 {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d1b476;
}

.meet-us-section .meet-box .contact-info-section ul {
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.meet-us-section .meet-box .contact-info-section ul li {
  list-style: none;
  display: flex;
  gap: 20px;
}

.meet-us-section .meet-box .contact-info-section ul li i {
  font-size: 18px;
}

.meet-us-section .meet-box .contact-info-section ul li a {
  color: var(--darkGrayColor);
}

.meet-us-section .meet-box .contact-info-section ul li a:hover {
  text-decoration: underline;
}

.map-section iframe {
  width: 100%;
  height: 500px;
}

.appointment-form {
  background: var(--moreLightPinkColor);
  box-shadow: 0 10px 50px rgba(178, 89, 89, 0.25);
  padding: 40px;
  border-radius: 20px;
}

.appointment-form .form-control {
  margin-bottom: 25px;
  border-radius: 10px;
}

.appointment-form select.form-control {
  padding: 0px 5px;
  height: 50px;
}

.select-form-control {
  padding: 0px 5px;
  height: 50px;
}

.service-section {
  padding: 50px;
}

.service-section-2 {
  padding: 50px;
  background: antiquewhite;
}

.service-section-2 span {
  font-size: 12rem;
  color: #747669;
  font-family: "quentin";
  opacity: 0.5;
  margin-top: -100px;
  display: block;
}

.service-section-2 .service-detail-box {
  padding-right: 30px;
}

.media-box {
  margin-bottom: 30px;
}

.media-box img {
  height: 100%;
}

.highlight {
  font-weight: bold;
  font-family: "Poppins", sans-serif !important;
  font-size: 0.875rem !important;
  line-height: 24px;
  color: #000 !important;
  margin-bottom: 0px !important;
  opacity: 1 !important;
}

.faq-section {
  padding: 40px 0px;
}

.faq-section .faq-wrapp-side .card {
  margin-bottom: 12px;
  background: transparent;
  border: 0px solid;
  background: var(--chardonnayColor);
}

.faq-section .card-header {
  background-color: transparent;
  border: 0px;
  color: #000;
  padding: 20px;
}

.faq-section .card-header h3 {
  font-size: 1rem;
  margin-bottom: 0px;
}

.faq-section .card-body {
  padding: 0px 20px;
}

.faq-section .faq-wrapp-side .card .card-header .card-link {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}

.blog-section {
  padding: 40px 0px;
}

.blog-section .col-md-4{
margin-bottom:30px;
}

.blog-wrapper{
height:100%
}

.blog-section .blog-wrapper {
  width: 100%;
  background: #fff;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}
.blog-section .blog-wrapper img {
  width: 100%;
}
.blog-section .blog-wrapper .blog-body {
  padding: 20px;
}
.blog-section .blog-wrapper h4 {
  font-size: 1.2rem;
}

.blog-section .blog-wrapper p {
  text-align: justify;
}
.blog-section .blog-wrapper a {
  font-weight: bold;
  color: var(--darkGrayColor);
  opacity: 0.8;
}
.blog-section .blog-wrapper:hover a {
  color: #000;
  opacity: 1;
}

.blog-section .blog-wrapper.blog-details-wrapper h4 {
  font-size: 1.8rem;
}

.blog-subscribe-box {
  background: var(--darkGrayColor);
  padding: 30px 20px;
  color: #fff;
}
.blog-subscribe-box h6 {
  text-transform: uppercase;
  text-align: center;
}

.blog-subscribe-box input {
  width: 100%;
  height: 40px;
  padding: 15px;
  font-size: 14px;
  margin-top: 5px;
}

.blog-subscribe-box button {
  background: #666;
  color: #fff;
  display: block;
  width: 100%;
  height: 40px;
  border: 0px;
  margin-top: 10px;
  text-transform: uppercase;
  font-size: 14px;
}

.confirmation-message {
  background-color: #ffffff;
  border: 2px solid #4caf50;
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 500px;
}

.confirmation-message h1 {
  color: #4caf50;
  font-size: 32px;
  margin-bottom: 20px;
}

.confirmation-message p {
  font-size: 18px;
  color: #333333;
}

.confirmation-message .icon {
  font-size: 48px;
  color: #4caf50;
  margin-bottom: 20px;
}

.thank-you-container {
  background-color: #fff;
  border-left: 6px solid #4caf50;
  border-right: 6px solid #4caf50;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
}

.thank-you-container .icon {
  font-size: 48px;
  color: #4caf50;
  margin-bottom: 15px;
}

.thank-you-container h1 {
  font-size: 28px;
  margin: 0 0 20px;
  color: #333;
}

.thank-you-container p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin: 10px 0;
}

.thank-you-container p:last-child {
  font-weight: bold;
  color: #4caf50;
}

.blog-inner-img {
  text-align: center;
  margin: 20px 0px;
}

.blog-inner-img img {
  width: 600px !important;
}
