@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

:root {
  --navyBlue: #2e276b;
  --skyBlue: #1a98d5;
  --whiteColor: #ffffff;
  --greyColor: #d9d9d9;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "MyriadPro-Regular";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bebas Neue", sans-serif;
}

@font-face {
  font-family: "MyriadPro-Regular"; /* Name your font family */
  src: url("../fonts/MyriadPro-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

table p {
  margin: 0px;
  padding: 0px;
}

h1,
h2 {
  font-weight: 500;
}

a {
  color: var(--skyBlue);
  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;
}

.whiteColor {
  color: var(--whiteColor);
}

.text-skyBlue {
  color: var(--skyBlue);
}

.custom-select {
  font-size: 0.875rem !important;
}

.text-darkGray {
  color: var(--darkGrayColor);
}

.text-red {
  color: var(--redColor);
}

.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-small {
  padding: 0.25rem 1.5rem;
}

.btn-primary {
  border-radius: 50px;
  background: var(--skyBlue);
  border: 1px solid var(--skyBlue);
  transition: all 0.45s;
}

.btn-primary:hover {
  background: var(--navyBlue);
  border: 1px solid var(--navyBlue);
}

.badge-primary {
  background: var(--blueColor);
  border: 1px solid var(--blueColor);
}

.btn-outline-primary {
  border-radius: 50px;
  border: 2px solid var(--skyBlue);
  color: var(--skyBlue) !important;
  transition: all 0.45s;
  padding: 8px 40px;
}

.btn-outline-primary:hover {
  border: 2px solid var(--skyBlue);
  color: var(--whiteColor) !important;
  background: var(--skyBlue) !important;
}

p,
ul li,
ol li {
  color: var(--darkGrayColor);
  font-size: 1rem;
  line-height: 24px;
}

.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: 5rem;
  font-family: "Bebas Neue", sans-serif;
  margin-bottom: 20px;
}

.heading-4 {
  font-size: 2rem;
  font-family: "Bebas Neue", sans-serif;
  margin-bottom: 20px;
}

.container {
  max-width: 1250px;
}

/* Header */
header {
  width: 100%;
  z-index: 999;
  position: relative;
  top: 0;
  position: sticky;
  background: #fff;
}

header.active {
  background: #fff;
  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;
}

.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: 250px;
}

.menu-icon {
  display: none;
}

header nav > ul {
  display: flex;
  gap: 32px;
  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: var(--navyBlue);
  padding: 20px 0px;
  font-size: 14px;
  font-weight: bold;
  position: relative;
}
header nav > ul > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 2px;
  background: var(--skyBlue);
  transition: all 0.45s;
  width: 0px;
  transform: translateX(-50%);
  transform-origin: center;
}
header nav > ul > li > a:hover::after {
  width: 100%;
}
header nav > ul > li:last-child > a:hover::after {
  width: 0px;
}

/* header nav>ul>li>a:hover {
    color: var(--skyBlue);
} */

header nav > ul > li > ul {
  position: absolute;
  top: 200%;
  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:hover > ul {
  visibility: visible;
  opacity: 1;
}

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(--skyBlue);
  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%;
  position: relative;
}

.slider-section .welcome-down {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  z-index: 100;
}

.slider-section .welcome-down img {
  width: 100px;
}

.slider-section .carousel-indicators {
  top: 32px;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-end;
  margin-left: 5%;
  margin-right: 5%;
}

.slider-section .carousel-indicators li {
  width: 5px !important;
  height: 20px !important;
}

.slider-section .carousel-indicators li.active {
  background-color: var(--skyBlue);
}

.slider-section .carousel-caption {
    bottom: 32%;
    right: 10%;
    text-align: end;
}


.slider-section .carousel-caption h3 {
  font-size: 6rem;
  font-family: "Bebas Neue", sans-serif;
}

.slider-section img {
  width: 100%;
}

.slider-section .slider-item {
  padding-top: 150px;
  position: absolute;
  top: 0px;
  left: 200px;
}

.welcome-section {
  background: var(--lightChardonnayColor);
  position: relative;
}

.welcome-section p {
  margin-top: 50px;
  text-align: justify;
}

.welcome-section .container {
  color: #fff;
  position: absolute;
  top: 18%;
  left: 10%;
  width: 60%;
}

.machine-section {
  padding: 80px 0px;
}

.machine-section .machine-box {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  align-items: center;
}

.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: center;
}

.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: 40px 0px;
}

.testimonials-section h2 {
  font-size: 5rem !important;
}

.testimonials-section .owl-theme .owl-dots .owl-dot span,
.testimonials-section .owl-theme .owl-dots .owl-dot span {
  width: 20px;
  height: 5px;
  border-radius: 0px;
  transition: all 0.45s;
}
.testimonials-section .owl-theme .owl-dots .owl-dot.active span,
.testimonials-section .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--skyBlue);
}

.testimonials-section h2 {
  margin-bottom: 50px;
}

.testimonials-section p {
  color: #777;
  font-size: 80%;
  line-height: 18px;
  text-align: justify;
}

.testimonials-section .testimonials-box {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  display: block;
  color: #000;
  display: flex;
  position: relative;
}

.testimonials-section .testimonials-box .testimonial-footer {
  position: absolute;
  bottom: -10px;
  left: 15px;
}

.testimonials-section .testimonials-box img {
  width: 100%;
  margin-bottom: 20px;
  height: 260px;
  width: 260px;
}

.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 .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;
  text-align: center;
}

.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.webp) 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);
  position: relative;
}
.newsletter-section::after {
  content: "";
  position: absolute;
  top: 80px;
  left: 150px;
  width: 26%;
  height: 2px;
  background: #cccccc;
}
.newsletter-section::before {
  content: "";
  position: absolute;
  top: 80px;
  right: 150px;
  width: 26%;
  height: 2px;
  background: #cccccc;
}

.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 {
  color: var(--darkGrayColor);
  padding: 30px 0 10px 0;
}

footer h3 {
  font-size: 1.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: 0.75rem;
  margin-bottom: 2px;
}

footer ul li a {
  color: var(--darkGrayColor);
  transition: all 0.45s;
}

footer ul li a:hover {
  color: var(--skyBlue);
  /*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: 0px;
}

.social-icon-box ul.social-icons li {
  list-style: none;
}

.social-icon-box ul.social-icons li a {
  width: 60px;
  height: 60px;
  background: transparent;
  border: 2px solid #000;
  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: 35px;
}

.social-icon-box ul.social-icons li a:hover {
  background: #000;
  color: #fff !important;
}

.footer-2 {
  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.webp);
  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%;
}

.client-testimonials-box {
  padding-top: 30px;
}

.client-testimonials-box .client-testimonials-box-content {
  min-height: 275px;
  border: 1px solid #ccc;
  padding: 25px;
  width: 98%;
  margin: auto;
}

.client-testimonials-box .client-testi-star {
  width: 180px !important;
  margin: auto;
  margin-top: -50px;
  margin-bottom: 20px;
  background: #fff;
  padding: 10px;
}
.client-testimonials-box h6 {
  color: var(--skyBlue);
}

.testimonials-section .client-testimonials-box .testimonial-footer {
  position: absolute;
  bottom: 20px;
  left: 30px;
}

.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%;
}

.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: #000000;
}

.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%;
  /*-webkit-filter: grayscale(100%);*/
  /*filter: grayscale(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;
}

.half-overlay {
  position: absolute;
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
}

.founder-section {
  padding-top: 50px;
  background: url(../images/graphic-blue-founder.webp) no-repeat bottom -41px left -115px;
}

.founder-section p {
  color: #999;
}

.founder-section .founder-box {
  position: relative;
}

.founder-section .founder-box .heading-2 {
  line-height: 60px;
  font-size: 4rem;
  margin-top: 60px;
}

.founder-section .founder-box p {
  line-height: 17px;
  text-align: justify;
  font-size: 90%;
}

.founder-section .founder-box::before {
  position: absolute;
  top: -25px;
  left: -60px;
  content: "";
  background: url(../images/quote-left.webp) no-repeat;
  width: 60px;
  height: 53px;
}

.founder-section .founder-box::after {
  position: absolute;
  bottom: -25px;
  right: -60px;
  content: "";
  background: url(../images/quote-right.webp) no-repeat;
  width: 60px;
  height: 53px;
}

.founder-section .sign {
  float: right;
  margin-right: -120px;
  margin-top: 0px;
  width: 230px;
}

/* 25 dec styles begin here */
.core-value-section {
  padding: 120px 0px;
  background: url(../images/core-values.webp);
  background-size: cover;
  position: relative;
  z-index: 100;
}
.core-value-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255 255 255 / 67%);
  z-index: -1;
}
.core-value-section .owl-nav.disabled {
  display: block;
}

.core-value-section .owl-nav .owl-prev {
  position: absolute;
  left: -100px;
  top: 100px;
}
.core-value-section .owl-nav .owl-next {
  position: absolute;
  right: -100px;
  top: 100px;
}
.core-value-section .owl-nav .owl-prev:hover,
.core-value-section .owl-nav .owl-next:hover {
  background: none;
}

.core-value-section .owl-nav .owl-prev span,
.core-value-section .owl-nav .owl-next span {
  color: #000;
  font-size: 100px;
}

.core-value-section .item {
  padding: 32px 50px;
  background: rgb(0, 0, 0, 0.6);
  min-height: 385px;
  transition: all 1s;
  cursor: pointer;
}

.core-value-section .item:hover {
  background: #000;
}

.core-value-section .item h3 {
  color: #ffffff;
  text-align: center;
}

.core-value-section .item p {
  color: #ccc;
  position: relative;
  text-align: justify;
}

.core-value-section .item p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 4px;
  background: var(--skyBlue);
  transform: translateX(-50%);
  transform-origin: center;
  transition: all 1s;
}

.core-value-section .item:hover p::before {
  width: 100%;
}

.core-value-section .item p::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 4px;
  background: var(--skyBlue);
  transform: translateX(-50%);
  transform-origin: center;
  transition: all 1s;
}

.core-value-section .item:hover p::after {
  width: 100%;
}

.core-value-section .item h3 {
  font-size: 3rem;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
  margin-bottom: 20px;
}

.core-value-section .item p {
  padding-top: 50px;
  padding-bottom: 50px;
  font-size: 17px;
}

.new-team-section {
  padding-top: 80px;
  padding-bottom: 65px;
  background: url(../images/team-graphic.webp) no-repeat bottom -199px left -197px;
}

.new-team-section.team-bg{
    background: url(../images/team-graphic.webp) no-repeat bottom -19px left -197px;
}


.home-new-team-section {
  padding-top: 80px;
  padding-bottom: 65px;
  background: url(../images/home-team-graphic.webp) no-repeat bottom -204px left -345px;
}

.new-team-section .row {
  min-height: 520px;
}

.new-team-section .team-box {
  transition: all 0.5s;
  margin-bottom: 160px;
  position: relative;
  cursor: pointer;
}

/* .new-team-section .team-box p {
  z-index: 100;
  display: none;
  color: #fff;
  transition: all 0.5s;
  position: absolute;
  top: 90%;
  left: 0;
  width: 100%;
  height: 200px;
  background: #bebebe;
  padding: 25px;
  padding-top:0px;
} */

.new-team-section .team-box p {
  color: #fff;
  transition: all 0.5s;
  height: 0px;
  transform: translateY(35px);
  text-align: justify;
}

/* .new-team-section .team-box:hover .team-info {
  background: #000;
} */

/* .new-team-section .team-box:hover p {
  background: #000;
  display: block;
} */

/* .new-team-section .team-box:hover p {
  height: 550px;
} */

.new-team-section .team-box img {
  width: 100%;
}

/* .new-team-section .team-box .team-info.top-team-box{
  z-index: 100000;
} */
.new-team-section .team-box .team-info {
  padding: 10px 20px;
  padding-top: 20px;
  background-color: #bebebe;
  transition: ease-in-out 0.5s;
  min-height: 140px;
  margin-bottom: 20px;
  position: absolute;
  /* z-index: 1000; */
  overflow: hidden;
  width: 100%;
}
.new-team-section .team-box .team-info h4 {
  text-transform: uppercase;
  margin-bottom: 0;
}
.new-team-section .team-box .team-info h4.team-name {
  color: #fff;
}
.new-team-section .team-box .team-info h4.designation {
  font-size: 18px;
}
/* .new-team-section .view-btn {
  margin-top: 50px;
} */
.new-team-section .view-btn .btn-custom {
  background: var(--skyBlue);
  color: #ffffff;
  border-radius: 25px;
  padding: 7px 32px;
  position: relative;
}

.new-team-section .main-team .team-collumn {
  margin-bottom: 40px;
  cursor: pointer;
}

.new-team-section .main-team .team-collumn img {
  width: 100%;
}
.new-team-section .main-team .team-collumn .team-text {
  padding: 30px;
  background: #d9d9d9;
  min-height: 144px;
  position: relative;
}
.new-team-section .right-arrow {
  position: absolute;
  right: 28px;
  bottom: 10px;
  cursor: pointer;
}

.new-team-section .main-team .team-collumn .team-text h3 {
  line-height: 27px;
}

.trophy-section {
  background: url(../images/trophy-bg.webp) no-repeat top center #000;
  padding: 85px 0px;
  background-size: contain;
  position: relative;
}

.trophy-section p {
  text-align: justify;
}

.trophy-section .trophy-info {
  padding: 40px;
  background: var(--greyColor);
  min-height: 580px;
}

.trophy-section .trophy-info h3 {
  font-size: 3.5rem;
  line-height: 58px;
}
.trophy-section .trophy-info h4 {
  font-size: 2rem;
}

.video-fluid-section,
.video-fluid-section img {
  width: 100%;
  position: relative;
}
.video-fluid-section .video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-fluid-section .video .video-play {
  width: 70px;
  height: 70px;
  display: flex;
  background: #fff;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: ease-in-out 0.5s;
  cursor: pointer;
}
.video-fluid-section .video .video-play:hover {
  box-shadow: 1px 1px 22px 3px #cac0ff;
}

.video-fluid-section .video .video-play i {
  font-size: 20px;
}

.footer-slide #runSlide {
  border-bottom: 3px solid #cccccc;
  padding-bottom: 15px;
}

.footer-slide #runSlide .item h4 {
  font-size: 21px;
}

.footer-slide .marquee-span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  padding: 0px 20px;
}

footer img.footer-logo {
  margin-top: 40px;
}

footer .contact-info-section .contact-info a {
  color: #000000;
}
footer .contact-info-section .contact-info form input,
.new-textarea .contact-info-section .contact-info form input {
  background: #cccccc;
  padding: 15px 12px;
}
footer .contact-info-section .contact-info form .sub-btn,
.new-textarea .contact-info-section .contact-info form .sub-btn {
  border-radius: 0;
  padding: 5px 10px;
  background: var(--skyBlue);
  color: #ffffff;
  margin-left: 5px;
}

.inner-banner {
  /* background-size: cover !important; */
  /* padding: 270px 0; */
  /* background-position: center -200px !important; */
  position: relative;
}

.inner-banner img {
  width: 100%;
}

.inner-banner h2 {
  margin-top: -120px;
  transform: translateY(36px);
  text-shadow: 2px 2px 2px #333;
}

.inner-banner h2 .whiteColor {
}

.inner-banner-center h2 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 45%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.started-section {
  background: #000000;
}
.started-section .excellence-logo img {
  width: 370px;
}
.started-section .excellence-para {
  color: var(--whiteColor);
  text-align: justify;
  font-weight: 200;
}

.started-section .how-start {
  position: relative;
  background: url(../images/how-start.webp);
  background-size: cover;
  padding: 270px 0;
  background-position: center;
}

.started-section .how-start h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* 
.started-section .icon-flex{
  display: flex;
  gap: 10px;
}
.started-section .icon-flex li a {
  font-size: 18px; 
}
*/

.core-value-section .vision-sec {
  padding: 20px;
  background: #dedede;
  margin-top: 45px;
}
.core-value-section .vision-sec h1 {
  font-size: 65px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 15px;
}
.core-value-section .vision-sec p {
  font-size: 16px;
  text-align: justify;
}

.core-value-section .vision-wrapper {
  background: #d9d9d9;
  margin-top: 50px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.core-value-section .vision-wrapper h2 {
  font-size: 4rem;
  padding: 0px 50px;
  margin-bottom: 0px;
}

.core-value-section .vision-wrapper p {
  margin-bottom: 0px;
  text-align: justify;
}

/* 25 dec styles end here */

.how-we-started-section {
  background: url(../images/how-we-started-bg.webp);
  padding: 80px 0px;
}

.how-we-started-section img {
  width: 100%;
}

.how-we-started-wrapper {
  display: flex;
}
.how-we-started-wrapper .how-we-started-left {
  width: 50%;
}
.how-we-started-wrapper .how-we-started-right {
  width: 50%;
}

.brands-section {
  padding: 80px 0px;
  background: url(../images/brand-graphic.webp) no-repeat bottom -70px left -197px;
}

.brands-section .brand-box {
  background: #d8d8d8;
  padding: 45px;
  min-height: 550px;
  display: block;
  position: relative;
  margin-bottom: 30px;
}

.brands-section .brand-box h2 {
  font-size: 2.4rem;
  font-weight: bold;
  height: 135px;
}

.brands-section .brand-box p {
  font-size: 1rem;
  text-align: justify;
}

.brands-section .brand-box .read-more {
  color: var(--bgBlue);
  position: absolute;
  bottom: 45px;
  left: 45px;
}

.csr-section {
  padding: 80px 0px;
  background: url(../images/csr-graphic.webp) no-repeat bottom -90px left -197px;
}

.journey-section {
  background:url(../images/csr-graphic.webp) no-repeat bottom -97px left -193px;
}

.csr-section .row {
  margin-bottom: 60px;
}

.csr-box-right {
  position: absolute;
  bottom: 0;
  left: 0;
  padding-left: 30px;
}
.csr-box-right h3 {
  color: var(--skyBlue);
  margin-bottom: 30px;
  font-size: 3rem;
}
.csr-box-right p {
  padding-right: 30px;
  text-align: justify;
}

.media-section {
  padding: 80px 0px;
  background: url(../images/media-graphic.webp) no-repeat bottom -75px left -197px;
}

.media-section h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.media-box {
  margin-bottom: 65px;
}

.media-box img {
  width: 100%;
}

.media-box h4 {
  margin-top: 30px;
  margin-bottom: 0px;
}

.media-box p {
  margin-top: 15px;
  text-align: justify;
}

.career-section {
  padding: 80px 0px;
  background: url(../images/career-graphic.webp) no-repeat bottom -62px left -197px;
}

.career-section .career-top-box {
  text-align: center;
}

.career-section .career-top-box h2 {
  font-size: 3rem;
  margin-top: 50px;
  margin-bottom: 50px;
}

.career-section .career-box {
  background: #d8d8d8;
  padding: 36px;
  min-height: 300px;
  width: 80%;
  margin: auto;
  display: block;
  position: relative;
  margin-bottom: 80px;
  text-align: center;
}

.career-section .career-box h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.career-section .career-box p {
  font-size: 1rem;
}

.career-section .career-box .read-more {
  color: var(--bgBlue);
  position: absolute;
  bottom: 45px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 65%;
}

.custom-modal .modal-header {
  border-bottom: 0px;
  padding-bottom: 0px;
}

.custom-modal .modal-content {
  background: none;
  background: rgb(0, 0, 0, 0.7);
  color: #ccc;
  text-align: justify;
  padding: 20px;
}

.custom-modal .close {
  color: #fff;
  opacity: 0.8;
}

.modal-backdrop.show {
  opacity: 0.3;
}

.careers-list {
  margin: 0px;
  padding: 0px;
  margin-left: 20px;
}

.careers-list li {
  margin-bottom: 10px;
}

.collapse-box-hide-content {
  display: none;
}

.core-value-section.core-value-section .item h3 {
  font-size: 3rem;
}

.core-value-section.core-value-section .item p {
  padding: 25px 0px;
}

.company-practice-section.core-value-section.core-value-section .item {
  min-height: 550px;
  text-align: center;
}

.company-practice-section.core-value-section.core-value-section .item h3 {
  font-size: 2rem;
  height: 80px;
}

.company-practice-section.core-value-section.core-value-section .item .btn {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 200px;
}

.about-new-section.welcome-section .container {
  color: #fff;
  width: 78%;
  left: 8%;
}

.success-stories-section {
  padding: 80px 0px;
  background: url(../images/brand-graphic.webp) no-repeat bottom -550px left -197px;
}

.success-stories-section .success-stories-box {
  background: #bebebe;
  padding: 0px;
  width: 100%;
  margin: auto;
  display: block;
  position: relative;
  margin-bottom: 30px;
}

.success-stories-section .success-stories-box .success-stories-box-body {
  padding: 18px;
  height: 210px;
}

.success-stories-section .success-stories-box .success-stories-box-body h4 {
  color: #fff;
}
.success-stories-section
  .success-stories-box
  .success-stories-box-body
  h4.text-skyBlue {
  color: var(--skyBlue);
}

.success-stories-section
  .success-stories-box
  .success-stories-box-body
  .team-name-2 {
  font-size: 1.3rem;
}

.success-stories-section .success-stories-box img {
  width: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.success-stories-section .success-stories-box h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.success-stories-section .success-stories-box p {
  font-size: 1rem;
}

.success-stories-section .success-stories-box .read-more {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 65%;
}

.journey-section .csr-box-right {
  position: static;
}

.journey-section .csr-box-right h3 {
  margin-bottom: 0px;
}

.journey-section .csr-box-right h4 {
  font-size: 2rem;
}

::-webkit-scrollbar {
  width: 0.5em;
  height: 2em;
}
::-webkit-scrollbar-button {
  background: #ccc;
}
::-webkit-scrollbar-track-piece {
  background: #888;
}
::-webkit-scrollbar-thumb {
  background: #eee;
}

.new-map-section{
    padding:50px 0;
}

