* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-style: normal;
}

html,
body {
  overflow: auto;
}
.scroll-wrapper{
  overflow-y: auto;
   scroll-behavior: smooth;
}
:root {
  --primary-color: #212529;
  --secondary-color: #DE3703;
  --new-color:#152e4c;
  --black-color: #3F3F3F;
  --color-grey: #444;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--color-grey);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

hr {
  margin: 0;
  opacity: 1;
  background-color: #ddd;
}

a,
a:hover {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin: 0;
  padding: 0;
  letter-spacing: 0px;
  font-size: 16px;
  line-height: 2;
  color: var(--black-color);
  font-weight: 400;
  margin-bottom: 10px
}

section {
  padding: 80px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading .title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 10px;
}

.section-heading .heading {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 5px;
}

.btn-theme {
  color: var(--black-color);
  border: 2px solid var(--black-color);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  border-radius: 8px;
  padding: 10px 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.btn-theme.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  border: 2px solid var(--primary-color);
}

.btn-theme.btn-secondary {
  background-color: var(--secondary-color);
  color: #fff;
  border: 2px solid var(--secondary-color);
}

.btn-theme.btn-secondary:hover {
  background-color: #fff;
  color: var(--secondary-color);
}

.btn-theme.btn-theme.btn-primary:hover {
  background-color: #fff;
  color: var(--primary-color);
}

.owl-theme .owl-dots {
  color: #DDDDDD;
}

.owl-theme .owl-dots .owl-dot.active span {
  width: 40px;
  height: 12px;
  background-color: var(--new-color);
  border-radius: 10;
  display: block;
}

/* Header */
.main-header {
  background-color: var(--primary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
}
.fixed-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}
/* .main-header::before {
  content: "";
  width: 35%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
  z-index: 1;
} */

.main-header::after {
  content: "";
  width: 80%;
  height: 1px;
  position: absolute;
  top: 42%;
  /* left: 0; */
  right: 0;
  background-color: #fff;
}

.main-header .logo-box {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: start;
  align-items: center;
  height: 100%;
}
.main-header .logo-box a{
  background: #fff;
       box-shadow: 1px 2px 4px 1px #0000003d;
    border-radius: 0 0 15px 15px;
    position: absolute;
    top: 0;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-header .logo-box img {
  max-width: 400px;
}

.main-header .header-contact-info,
.main-header .social-links {
  padding: 10px 0;
  height: 100%;
  display: flex;
}

.main-header .header-contact-info {
  padding-left:20px;
}

.main-header .header-contact-info ul {
  display: flex;
  justify-content: start;
  align-items: center;
}

.main-header .header-contact-info li {
  margin-right: 30px;
  display: flex;
  align-items: center;
}

.main-header .header-contact-info li i {
  color: #fff;
}

.main-header .header-contact-info li a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.main-header .social-links ul {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.main-header .social-links a {
  background-color: #fff;
  width: 26px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--black-color);
  font-size: 14px;
}

.main-header .social-links a:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

.main-header .nav-outer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
}

.main-header .nav-outer .main-menu .navbar-nav {
  flex-direction: row;
  gap:20px;
}

.main-header .nav-outer .navbar-nav li a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  padding: 22px 0;
  display: block;
}

.main-header .nav-outer ul li.menu-item-has-children {
  position: relative;
}

.main-header .nav-outer ul li.menu-item-has-children>a {
  padding-right: 30px;
  position: relative;
}

.main-header .nav-outer ul li.menu-item-has-children>a::after {
  content: "\ea4a";
  font-family: "boxicons";
  color: #fff;
  position: absolute;
  right: 0;
  font-size: 26px;
  line-height: 1;
  font-weight: 400;
}

.main-header .nav-outer ul li.menu-item-has-children .sub-menu {
  position: absolute;
  background-color: #fff;
  border: 5px;
  z-index: 999;
  width: 100%;
  transform: translateY(50px);
  min-width: 250px;
  opacity: 0;
  box-shadow: 0px 8px 24px 0px #959DA533;
  visibility: hidden;
  transition: all 0.3s ease;
}

.main-header .nav-outer ul li.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.main-header .nav-outer ul li.menu-item-has-children .sub-menu li a {
  padding: 10px;
  display: block;
  color: #333;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  border-bottom: 1px solid #ddd;
}

.main-header .nav-outer ul li.menu-item-has-children .sub-menu li a:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.main-header .nav-outer .btn-theme {
  padding: 8px 25px;
}
.mobile-header{
  display: none;
}
.mobile-header .bx-menu{
      font-size: 36px;
}
/* home banner */
.home-banner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #fff;
  background-color: #FDF4EB;
  /* padding: 0; */
}
.home-banner video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-banner .banner-content .sub-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  background-color: #fff;
  box-shadow: 0px 2px 2px 0px #00000040;
  color: var(--secondary-color);
  padding: 5px 15px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 15px;
}

.home-banner .banner-content h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--black-color);
}

.home-banner .banner-content p {
  color: var(--black-color);
}

.home-banner .banner-content ul {
  margin-top: 20px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
}

.home-banner .banner-content ul li {
  box-shadow: 0px 2px 6px 2px #0000001C;
  border: 1px solid #DDDDDD;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 10px 15px;
  width: 200px;
}

.home-banner .banner-content ul li img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin: auto;
  display: block;
}

.home-banner .banner-content ul li span {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--black-color);
  margin-top: 10px;
}

.home-banner .banner-content .btn-group {
  margin-top: 30px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
}

.home-banner .image-side {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 50%;
  height: 100%;

}

.home-banner .image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* footer */
.footer-section {
  background-color: var(--primary-color);
}

.footer-section .footer-middle {
  padding: 50px 0;
}

.footer-section .footer-middle .footer-about .footer-logo {
  width: 300px;
  height: auto;
  display: block;
  margin-bottom: 20px;
  background-color: #fff;
  padding: 5px;
  border-radius: 8px;
}

.footer-section .footer-middle .footer-about .footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-section .footer-middle .footer-about p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 300px;
}

.footer-section .footer-middle .footer-about .links-widget {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
}

.footer-section .footer-middle .footer-about .links-widget p {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  width: auto;
  max-width: 100%;
}

.footer-section .footer-middle .footer-about .links-widget .social-links {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

.footer-section .footer-middle .footer-about .links-widget .social-links a {
  background-color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--black-color);
  font-size: 16px;
}

.footer-section .footer-middle .footer-about .links-widget .social-links a:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

.footer-section .footer-middle .widget-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.footer-section .footer-middle .contact-info li {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 15px;
}

.footer-section .footer-middle .contact-info li i {
  color: #fff;
  font-size: 20px;
}

.footer-section .footer-middle .contact-info li a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.footer-section .footer-links ul li a {
  color: #fff;
  font-size: 16px;
  padding: 10px;
  display: block;
}

.footer-section .footer-links ul li a:hover {
  color: var(--secondary-color);
}

.footer-copyright {
  border-top: 1px solid #fff;
  padding: 10px 0;
}

.footer-copyright p {
  color: #fff;
  font-size: 14px;
  text-align: center;
  margin: 0;
}

/* section title */
.section-title {
  margin-bottom: 40px;
}

.section-title .sub-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--secondary-color);
  background-color: #fff;
  box-shadow: 0px 3.23px 11.29px 0px #00000026;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.section-title .title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--black-color);
  margin-bottom: 10px;
}

.section-title p {
  color: var(--black-color);
  font-weight: 500;
}

.section-title.text-white .title,
.section-title.text-white p {
  color: #fff;
}

.our-service .service-card {
  background-color: #fff;
  text-align: center;
  width: 100%;
  height: 100%;
}

.our-service .service-card .image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
}

.our-service .service-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.our-service .service-card .content {
  background-color: #fff;
  box-shadow: 1px 2px 4px 1px #00000029;
  position: relative;
  top: -25px;
  width: 100%;
  max-width: 90%;
  margin: auto;
  border-radius: 15px;
  padding: 20px 15px 50px;
  height: calc(100% - 250px);
  transition: all 0.3s ease;
}

.our-service .service-card .content h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--black-color);
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.our-service .service-card .content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #787878;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.our-service .service-card .content a {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
  color: var(--new-color);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.our-service .service-card:hover .image img {
  transform: scale(1.1);
}

.our-service .service-card:hover .content {
  background-color: var(--new-color);
}

.our-service .service-card:hover .content h4,
.our-service .service-card:hover .content p,
.our-service .service-card:hover .content a {
  color: #fff;
}

.condition-section {
  background-color: var(--primary-color);
}

.condition-section .condition-card {
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.condition-section .condition-card::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  display: block;
  background-color: var(--secondary-color);
  transform: scale(0);
  transform-origin: bottom;
  opacity: 0;
  transition: all 0.3s ease;
}

.condition-section .condition-card .image {
  width: 80px;
  height: 80px;
  margin: auto;
  background:#152e4c30;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  position: relative;
  z-index: 1;
}

.condition-section .condition-card .image::before {
  content: "";
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  left: -10px;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  display: block;
  border: 2px dashed var(--primary-color);
  transition: all 0.5s ease;
}

.condition-section .condition-card .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.condition-section .condition-card .content {
  position: relative;
  z-index: 1;
}

.condition-section .condition-card .content h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--primary-color);
  margin-top: 20px;
}

.condition-section .condition-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.condition-section .condition-card:hover .content h4 {
  color: #fff;
}

.condition-section .condition-card:hover .image {
  background: #fff;
}

.condition-section .condition-card:hover .image::before {
  border-color: #fff;
  rotate: 180deg;
}

.faq-section .accordion {
  background-color: #fff;
}

.faq-section .accordion .accordion-item {
  border: 0;
  border: 2px solid #b9b9b9;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
}

.accordion-item:has(.accordion-button:not(.collapsed)) {
  border: 2px solid var(--new-color);
}

.faq-section .accordion .accordion-item .accordion-button {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-black)
}

.faq-section .accordion .accordion-item .accordion-button:not(.collapsed) {
  color: var(--new-color) !important;
  background: 0;
  border-top: 0;
  box-shadow: none;
  outline: none;
  font-weight: 600;
}

.accordion-button::after {
  content: "\+";
  font-family: "Font Awesome 7 Free";
  background: none;
  font-weight: 900;
  font-size: 16px;
  width: 35px;
  height: 35px;
  line-height: 1;
  background:#152e4c30;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--new-color);
}

.accordion-button:not(.collapsed)::after {
  content: "\f068";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  background-image: none;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
}

.faq-section .accordion-body {
  padding-right: 40px;
  line-height: 1.8;
  color: #555;
  font-size: 16px
}

.faq-section .accordion-body p {
  color: var(--black-color);
  font-weight: 500;
}

.faq-section .accordion-body ul li {
  position: relative;
  padding-left: 20px
}

.faq-section .accordion-body ul li::before {
  content: "\ea2f";
  position: absolute;
  left: 0;
  top: 1px;
  bottom: 0;
  margin: auto;
  font-family: boxicons !important;
  font-weight: 600;
  font-size: 14px;
  height: 100%;
  color: var(--secoundary-color)
}

.faq-section .card-faq {
  background-color: var(--primary-color);
  border-radius: 20px;
  text-align: start;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  padding: 40px;
}

.faq-section .card-faq h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 10px;
}

.faq-section .card-faq p {
  color: #fff;
}

.award-section {
  border-top: 1px solid #ddd;
}

.award-section .items {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 220px;
  padding: 20px;
}

.award-section .items img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.partner-section {
  background-image: url(../images/awards-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.partner-section .partner-item img {
  width: 100%;
}

.practitioners .item {
  padding: 15px;
}

.practitioner-item {
  box-shadow: 0px 4px 10px 4px #67676757;
  border-bottom: 4px solid var(--new-color);
  border-radius: 10px;
  padding: 10px;
  overflow: hidden;
  background-color: #fff;
  height: 100%;
}

.practitioner-item .image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 10px;
}

.practitioner-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.practitioner-item .content {
  position: relative;
  padding-top: 25px;
  text-align: center;
}

.practitioner-item .content a {
  box-shadow: 0px 2.47px 2.47px 0px #00000040;
  background-color: var(--new-color);
  color: #fff;
  padding: 6px 30px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  margin: auto;
  width: max-content;
  transition: all 0.3s ease;
}

.practitioner-item .content a:hover {
  background-color: #fff;
  color: var(--secondary-color);
  box-shadow: 0px 2.47px 8px 0px #00000040;
}

.practitioner-item .content h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #000;
  margin-bottom: 0;
}

.practitioner-item .content span {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #556171;
}

.overview-home .section-title {
  margin: 0;
}

.overview-home .section-title p {
  font-weight: 400;
}

.overview-home .section-title .overview-card {
  margin-top: 20px;
}

.overview-home .section-title .overview-card ul {
  display: flex;
  justify-content: start;
  align-items: stretch;
  gap: 15px;
}

.overview-home .section-title .overview-card ul li {
  box-shadow: 0px 2px 6px 2px #0000001C;
  border: 1px solid #DDDDDD;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 10px 15px;
  width: 30%;
  flex-grow: 1;
  text-align: center;
}

.overview-home .section-title .overview-card ul li .count {
  color: var(--new-color);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  display: block;
  margin: 0;
}

.overview-home .section-title .overview-card ul li .text {
  font-size: 12px;
  font-weight: 600;
  color: var(--black-color);
}

.overview-home .image-outer {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
}

.overview-home .image-outer .image-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.overview-home .image-outer .image-left img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  object-fit: cover;
}

.overview-home .image-outer .image-right {
  width: 50%;
}

.overview-home .image-outer .image-right img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  object-fit: cover;
}

.why-choose {
  background-color: #F6F6F6;
}

.why-choose .items-1 .choose-card,
.why-choose .items-3 .choose-card {
  margin-top: 40px;
}

.why-choose .choose-card {
  text-align: center;
  padding: 40px 20px;
  height: 100%;
  position: relative;
}

.why-choose .items-1 .choose-card::after,
.why-choose .items-3 .choose-card::after {
  content: "";
  background-image: url(../images/curve-arrow.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 150px;
  height: 50px;
  position: absolute;
  right: -80px;
  top: 65px;
  display: block;
}

.why-choose .items-2 .choose-card::after {
  content: "";
  background-image: url(../images/curve-arrow-1.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 150px;
  height: 50px;
  position: absolute;
  right: -85px;
  top: 50px;
  display: block;
}

.why-choose .choose-card .icon {
  margin-bottom: 40px;
  position: relative;
}

.why-choose .choose-card .icon::before {
  content: "";
  width: 115px;
  height: 115px;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  border: 3px dashed #5D5F66;
  border-radius: 100px;
  transition: all 0.3s ease;
}
.why-choose .choose-card:hover .icon::before{
  border-color: var(--secondary-color);
}
.why-choose .choose-card .icon .inner-icon {
  width: 90px;
  height: 90px;
  margin: auto;
  background: #FFFFFF;
  box-shadow: 0px 6.27px 6.27px 0px #00000033;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
   transition: all 0.3s ease;
}
.why-choose .choose-card:hover .icon .inner-icon{
  background: var(--secondary-color);
}
.why-choose .choose-card .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
    transition: all 0.3s ease;
}
.why-choose .choose-card:hover .icon img{
  filter: contrast(0) brightness(10);
}
.why-choose .choose-card .why-no {
  background-color: var(--secondary-color);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 6%;
  right: 33%;
}

.why-choose .choose-card h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--black-color);
  max-width: 175px;
  text-align: center;
  margin: 0 auto 15px;
}

.why-choose .choose-card p {
  margin: 0;
  font-size: 14px;
}

.latest-news .blog-card.blog-card-large {
  background: #fff;
  border: 1px solid var(--secondary-color);
  box-shadow: 0px 4px 40px 0px #0000001A;
  border-radius: 40px;
  overflow: hidden;
  height: 100%;
}

.latest-news .blog-card.blog-card-large .big-thumb {
  width: 100%;
  overflow: hidden;
}

.latest-news .blog-card.blog-card-large .big-thumb img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}

.latest-news .blog-card.blog-card-large .blog-content {
  padding: 30px;
}

.latest-news .blog-card.blog-card-large .blog-content .date {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background-color: var(--secondary-color);
  padding: 5px 10px;
  border-radius: 5px;
}

.latest-news .blog-card.blog-card-large .blog-content .author {
  border: 1px solid var(--secondary-color);
  padding: 5px 10px;
  border-radius: 5px;
  color: var(--secondary-color);
  font-size: 12px;
  font-weight: 600;
}

.latest-news .blog-card.blog-card-large .blog-content h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.8;
  color: var(--black-color);
  margin: 10px 0;
}

.latest-news .blog-card.blog-card-large .blog-content h4 a {
  display: block;
}

.latest-news .blog-card.blog-card-large .blog-content h4 a:hover {
  color: var(--secondary-color);
}

.latest-news .blog-card.blog-card-large .blog-content .read-btn {
  color: var(--black-color);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 2px solid var(--black-color);
}

.latest-news .blog-card.blog-card-large .blog-content .read-btn:hover {
  color: var(--secondary-color);
}

.latest-news .card-blog-side {
  background: #fff;
  border: 1px solid var(--secondary-color);
  box-shadow: 0px 4px 40px 0px #0000001A;
  border-radius: 40px;
  overflow: hidden;
  height: 100%;
  padding: 40px;
  max-width: 650px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-between;
}

.latest-news .card-blog-side .card-blog {
  display: flex;
  gap: 20px;
  justify-content: start;
  align-items: center;
}

.latest-news .card-blog-side .card-blog .small-thumb {
  width: 200px;
  height: 130px;
  overflow: hidden;
  border-radius: 10px;
}

.latest-news .card-blog-side .card-blog .small-thumb img {
  width: 100%;
  height: 100%;
  object-position: left;
  object-fit: cover;
}

.latest-news .card-blog-side .card-blog .content {
  width: calc(100% - 220px);
}

.latest-news .card-blog-side .card-blog .content .date {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background-color: var(--secondary-color);
  padding: 5px 10px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.latest-news .card-blog-side .card-blog .content .author {
  border: 1px solid var(--secondary-color);
  padding: 5px 10px;
  border-radius: 5px;
  color: var(--secondary-color);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.latest-news .card-blog-side .card-blog .content h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--black-color);
  margin-bottom: 10px;
}

.latest-news .card-blog-side .card-blog .content h4 a {
  display: block;
}

.latest-news .card-blog-side .card-blog .content h4 a:hover {
  color: var(--secondary-color);
}

.latest-news .card-blog-side .card-blog .content .read-btn {
  color: var(--black-color);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 2px solid var(--black-color);
}

.latest-news .card-blog-side .card-blog .content .read-btn:hover {
  color: var(--secondary-color);
}

.blogs-section .blog-gird {
  background: #fff;
  border: 1px solid var(--secondary-color);
  box-shadow: 0px 4px 40px 0px #0000001A;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  padding: 10px;
  position: relative;
}

.blogs-section .blog-gird .big-thumb {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
}

.blogs-section .blog-gird .big-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blogs-section .blog-gird .blog-content {
  padding: 20px 10px 40px;
}

.blogs-section .blog-gird .blog-content .date {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background-color: var(--secondary-color);
  padding: 5px 10px;
  border-radius: 5px;
}

.blogs-section .blog-gird .blog-content .author {
  border: 1px solid var(--secondary-color);
  padding: 5px 10px;
  border-radius: 5px;
  color: var(--secondary-color);
  font-size: 12px;
  font-weight: 600;
}

.blogs-section .blog-gird .blog-content h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--black-color);
  margin: 15px 0 10px;
}

.blogs-section .blog-gird .blog-content h4 a {
  display: block;
}

.blogs-section .blog-gird .blog-content h4 a:hover {
  color: var(--secondary-color);
}

.blogs-section .blog-gird .blog-content .read-btn {
  color: var(--black-color);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 2px solid var(--black-color);
  position: absolute;
  bottom: 20px;
}

.blogs-section .blog-gird .blog-content .read-btn:hover {
  color: var(--secondary-color);
}

/* blogs details */
.blog-details {
  padding: 60px 0
}

.blog-single-post {
  position: relative;
  margin-bottom: 40px
}

.blog-single-post.blog-salah .image img {
  width: auto;
  height: 500px
}

.blog-single-post .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px
}

.blog-single-post .image img {
  width: 100%;
}

.blog-single-post .lower-content {
  position: relative;
  padding: 30px;
  border: 1px solid #ebf2f3;
  border-top: 0;
  border-radius: 5px
}

.blog-single-post ul.post-meta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  margin-bottom: 13px
}

.blog-single-post .post-meta li {
  margin-right: 15px;
  padding-right: 15px;
  font-weight: 600;
  border-right: 1px solid #ddd
}

.blog-single-post .post-meta li i {
  margin-right: 8px;
  color: var(--primary-color)
}

.blog-single-post .post-meta li:last-child {
  border-right: 0
}


.blog-single-post h1 {
  font-size: 30px;
  line-height: 44px;
  color: #3f3f3f;
  font-weight: 600;
}

.blog-single-post h3 {
  font-size: 28px;
  line-height: 42px;
  color: #3f3f3f
}

.blog-single-post .text {
  margin-bottom: 40px
}

.blog-single-post .text ul {
  padding-left: 0
}

.blog-single-post .text ul li {
  list-style: none;
  margin-bottom: 10px;
  color: #3f3f3f;
  position: relative;
  padding-left: 30px
}

.blog-single-post .text ul li:before {
  color: var(--primary-color);
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0
}

.blog-single-post .text ol {
  list-style: auto
}

.blog-single-post .text ol li {
  list-style: inherit;
  margin-bottom: 15px;
  color: #3f3f3f;
  font-size: 16px
}

.blog-single-post .text b,
.blog-single-post .text strong {
  font-weight: 600;
  color: var(--color-black)
}

.blog-single-post .text h2 {
  position: relative;
  font-size: 28px;
  line-height: 44px;
  font-weight: 600;
  font-family: inherit;
  margin-bottom: 15px
}

.blog-single-post .text h3,
.blog-single-post .text h4,
.blog-single-post .text h5 {
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  font-family: inherit
}

.blog-single-post .text h3 {
  font-size: 24px
}

.blog-single-post .text h4 {
  font-size: 22px
}

.blog-single-post .text h5 {
  font-size: 20px
}

.blog-single-post .text h6 {
  position: relative;
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  font-family: inherit;
  margin-bottom: 15px
}

.blog-single-post .text table tr td,
.blog-single-post .text table tr th {
  border: 2px solid #ddd;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 500
}

.blog-single-post blockquote {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  color: #565872;
  margin-bottom: 30px
}

.blog-single-post blockquote:before {
  position: absolute;
  content: '';
  top: 0;
  width: 8px;
  bottom: 0;
  background: var(--primary-color);
  left: 0;
  border-radius: 5px
}

.widget {
  position: relative;
  margin-bottom: 50px
}

.widget_popular_post {
  position: relative;
  max-width: 350px;
  margin-left: auto
}

.widget .widget-title {
  position: relative;
  font-size: 20px;
  color: #3f3f3f;
  margin-bottom: 20px;
  font-weight: 600
}

.widget_popular_post .post-thumb {
  position: relative;
  margin-right: 15px;
  margin-bottom: 0;
  overflow: hidden
}

.widget_popular_post .post-thumb:before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgb(16 34 53/59%);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 10;
  pointer-events: none;
  transition: .3s ease-in
}

.widget_popular_post .post-thumb:hover:before {
  opacity: 1;
  width: 100%;
  height: 100%;
  border-radius: 0;
  -webkit-animation: .75s circle;
  animation: .75s circle
}

.widget_popular_post .post-thumb img {
  border-radius: 5px;
  float: left;
  height: 60px;
  width: 60px;
  object-fit: cover
}

.widget_popular_post .post {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  border: 1px solid #e3e3e3;
  padding: 14px;
  border-radius: 5px
}

.widget_popular_post .content {
  position: relative;
  width: calc(100% - 75px)
}

.widget_popular_post .content h5 {
  position: relative;
  font-size: 16px;
  margin-bottom: 3px;
  font-weight: 600;
  font-family: inherit
}

.widget_popular_post .content h5 a {
  color: #3f3f3f;
  transition: .5s
}

.widget_popular_post .content .post-info {
  font-size: 14px;
  color: #3f3f3f
}

.widget_popular_post .content .post-info i {
  margin-right: 4px;
  color: var(--primary-color)
}

.appointment-form {
  background-color: var(--primary-color);
}

.appointment-form .contact-info {
  margin-bottom: 20px;
}

.appointment-form .contact-info ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.appointment-form .contact-info ul li {
  position: relative;
  padding-left: 50px;
}

.appointment-form .contact-info ul li i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  background-color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--secondary-color);
}

.appointment-form .contact-info ul li span {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  display: block;
}

.appointment-form .contact-info ul li a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.appointment-form .clinic-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
}

.appointment-form .clinic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.appointment-form .clinic-map {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}

.appointment-form .clinic-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.appointment-form .form-box {
  height: 100%;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 4px 16px 4px #0000001C;
}

.appointment-form .form-box .form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--black-color);
  margin-bottom: 5px;
  display: block;
}

.appointment-form .form-box .form-control {
  border: 2px solid #ddd;
  height: 45px;
  border-radius: 5px !important;
  padding: 10px 15px 10px 50px;
  font-size: 14px;
  color: var(--black-color);
  margin-bottom: 15px;
}

.appointment-form .form-box textarea.form-control {
  height: 70px;
}

.appointment-form .form-box .input-group,
.appointment-form .form-box .input-group p {
  position: relative;
  margin: 0;
}

.appointment-form .form-box .input-group .input-group-text {
  position: absolute;
  left: 0;
  top: 0;
  background-color: transparent;
  border: none;
  color: var(--primary-color);
  font-size: 18px;
  width: 45px;
  height: 45px;
  z-index: 9;
}

.testimonial {
  background-image: url(../images/testiominial-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonial .google-rating {
  border: 1px solid #DDDDDD;
  box-shadow: 0px 8px 24px 0px #959DA533;
  background-color: #fff;
  border-radius: 5px;
  margin-top: 15px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 15px;
  gap: 12px;
}

.testimonial .google-rating .rating-box {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  padding-right: 10px;
  border-right: 1px solid #DDDDDD;
}

.testimonial .google-rating .rating-box .rating-value {
  text-align: start;
}

.testimonial .google-rating .rating-box span {
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  color: var(--black-color);
}

.testimonial .google-rating .rating-box .rating {
  color: #FBB204;
}

.testimonial .google-rating .rating-box .d-flex {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
}

.testimonial .google-rating .rating-box ul {
  display: flex;
  justify-content: start;
  align-items: center;
}

.testimonial .google-rating .rating-box ul li,
.testimonial .google-rating .rating-box ul li i {
  font-size: 10px;
  line-height: 1;
  color: #FBB204;
}

.testimonial .google-rating img {
  max-width: 100px;
}

.testimonial .google-rating span {
  color: var(--color-grey);
  font-weight: 600;
  font-size: 14px;
}

.testimonial .items {
  padding: 20px 15px;
}

.testimonial .textimonial-card {
  box-shadow: 0px 8px 15px 0px #959DA533;
  background-color: #fff;
  padding: 30px;
  min-height: 190px;
  height: 100%;
  border-radius: 10px;
}

.testimonial .textimonial-card ul {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.testimonial .textimonial-card ul li i {
  color: #FBB204;
  font-size: 18px;
  line-height: 1;
}

.testimonial .textimonial-card h4 {
  color: #3F3F3F;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 8px;
}

.testimonial .textimonial-card p {
  color: var(--primary-color);
  font-size: 15px;
}

.testimonial .textimonial-card .morecontent span {
  display: none;
}

.testimonial .textimonial-card p {
  margin: 0;
}

.testimonial .textimonial-card p a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: var(--secondary-color);
}

.testimonial .btn-theme {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 10px 25px;
}

.testimonial .btn-theme:hover {
  background-color: #fff;
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.image-gallery {
  background-color: #F6F6F6;
}

.image-gallery .gallery-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.image-gallery .gallery-image a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  font-size: 30px;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.image-gallery .gallery-image:hover a {
  opacity: 1;
}

.image-gallery .gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.section-banner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-banner .title {
  font-size: 40px;
}

.section-banner .breadcrumb {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #fff;
  padding: 8px 20px;
  border-radius: 100px;
  box-shadow: 0px 4px 16px 4px #0000001C;
  width: max-content;
  z-index: 99;
}

.section-banner .breadcrumb .breadcrumb-item {
  color: var(--black-color);
  font-size: 14px;
  font-weight: 500;
}

.section-banner .breadcrumb .breadcrumb-item.active {
  color: var(--secondary-color);
  font-weight: 600;
}

.contact-overview {
  background-color: #fbf6f2;
}

.contact-overview .section-title {
  margin: 0;
}

.contact-overview .section-title img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-top: 15px;
  border-radius: 10px;
}

.contact-overview .clinic-info {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding-left: 40px;
}

.contact-overview .clinic-info li {
  width: 45%;
  flex-grow: 1;
  height: 300px;
  background-color: #fff;
  box-shadow: 0px 4px 16px 4px #0000001C;
  border-radius: 15px;
  padding: 30px;
  position: relative;
}

.contact-overview .clinic-info li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 100%;
  width: 100%;
  background-color: var(--new-color);
  height: 0;
  border-radius: 999px 999px 0 0;
  transition: all 0.4s ease-in-out;
  background-size: 101% 101%;
}

.contact-overview .clinic-info li:hover::before {
  top: 0;
  border-radius: 15px;
  height: 100%;
}

.contact-overview .clinic-info li svg {
  width: 70px;
  height: 70px;
  margin-bottom: 50px;
  position: relative;
  transition: all 0.4s ease-in-out;
}

.contact-overview .clinic-info li:hover svg {
  color: #fff;
}

.contact-overview .clinic-info li span {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-color);
  line-height: 1.5;
  margin-bottom: 15px;
  position: relative;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
}

.contact-overview .clinic-info li a,
.contact-overview .clinic-info li .timing {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  position: relative;
  transition: all 0.4s ease-in-out;
}

.contact-overview .clinic-info li strong {
  font-weight: 600;
  color: var(--primary-color);
}

.contact-overview .clinic-info li a:hover {
  color: var(--secondary-color);
}

.contact-overview .clinic-info li:hover span,
.contact-overview .clinic-info li:hover a,
.contact-overview .clinic-info li:hover strong {
  color: #fff;
}

.appointment-form.contact-form {
  background-color: #fff;
}

.appointment-form.contact-form .row-box {
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 10px;
  box-shadow: 0px 4px 16px 4px #0000001C;
  overflow: hidden;
}

.appointment-form.contact-form .clinic-map {
  height: 100%;
  border-radius: 0;
}

.appointment-form.contact-form .row-box .form-box {
  box-shadow: none;
  padding: 30px 15px;
  background-color: var(--primary-color);
}

.appointment-form.contact-form .row-box .form-box h4 {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 25px;
}

.appointment-form.contact-form .row-box .form-box .form-label {
  margin-left: 10px;
  color: #fff;
}

.appointment-form.contact-form .row-box .form-box .form-control {
  height: 55px;
  border-radius: 50px !important;
  background-color: #fff9f7;
  border: 1px solid #9c9c9c;
  padding-left: 60px;
}

.appointment-form.contact-form .row-box .form-box textarea.form-control {
  border-radius: 20px !important;
  height: 100px;
}

.appointment-form.contact-form .row-box .form-box .input-group-text {
  height: 55px;
  left: 10px;
}

.health-tips-video .health-tips-box .image {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  position: relative
}

.health-tips-video .health-tips-box .image img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border: 1px solid #ddd;
  transform: scale(1)
}

.health-tips .health-slider .owl-stage {
  display: flex
}

.health-tips-video .health-slider .items {
  padding: 10px;
  height: 100%
}

.health-tips-video .health-tips-box {
  display: flex;
  flex-direction: column
}

.health-tips-video .health-slider .owl-stage-outer .owl-stage .owl-item.center .health-tips-box {
  transform: scale(1.1)
}

.health-tips-video .health-tips-box .title a {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  margin: auto;
  background: #fff;
  border-radius: 100px;
  width: fit-content;
  padding: 6px 10px 6px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: Poppins, sans-serif;
  line-height: 1;
  transition: .4s ease-in
}

.health-tips-video .health-tips-box .title a .bx-play {
  background: var(--secondary-color);
  border-radius: 100%;
  height: 34px;
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  padding-left: 3px
}

.health-tips-video .health-slider .health-tips-box .title a:hover {
  background: var(--secondary-color);
  color: #fff
}

.practitioner-container .image {
  width: 100%;
  height: 100%;
  max-width: 400px;
  border-radius: 20px;
  overflow: hidden;
}

.practitioner-container .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.practitioner-container .content-box h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.8;
  color: var(--black-color);
}

.practitioner-container .content-box h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--secondary-color);
  display:block;
  margin-bottom: 10px;
}

.about-banner {
  height: 470px;
}

.about-banner .banner-video {
  position: absolute;
  top: 0;
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 100%;
}

.about-banner .container {
  position: relative;
}

.about-banner .section-title .title,
.about-banner .section-title p {
  color: #fff;
}

.about-banner .breadcrumb {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #fff;
  padding: 8px 20px;
  border-radius: 100px;
  box-shadow: 0px 4px 16px 4px #0000001C;
  width: max-content;
  z-index: 99;
}

.about-banner .breadcrumb .breadcrumb-item {
  color: var(--black-color);
  font-size: 14px;
  font-weight: 500;
}

.about-banner .breadcrumb .breadcrumb-item.active {
  color: var(--secondary-color);
  font-weight: 600;
}

.about-overview .image-box {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.about-overview .image-box img {
  width: 100%;
  height: 100%;
  object-fit: top;
  object-position: cover;
}

.about-overview .card-mission {
  width: 100%;
  height: 100%;
  /* background-color: #ffcbcb30; */
  padding: 25px 20px;
  border-radius: 0;
  text-align: start;
  border-right: 2px solid #0000000f;
}
.about-overview .col-md-4:last-of-type .card-mission{
  border: 0;
}
.about-overview .card-mission h4 {
  color: var(--new-color);
  position: relative;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-overview .card-mission p {
  color: #000;
  margin-bottom: 0;
}

.facilities {
  background-color: var(--primary-color);
  padding: 45px;
}

.facilities .image-side {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 50%;
}

.facilities .image-side img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.facilities .facilities-outer {
  margin-top: 30px;
}

.facilities .facilities-outer .card-facilities {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 10px;
  padding: 15px 10px 15px 85px;
  position: relative;
}

.facilities .facilities-outer .card-facilities:last-child {
  margin-bottom: 0;
}

.facilities .facilities-outer .card-facilities .icon {
  background: #fff;
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  width: 65px;
  height: 65px;
  border: 1px solid var(--new-color);
}

.facilities .facilities-outer .card-facilities .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.facilities .facilities-outer .card-facilities h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color:var(--new-color);
}

.facilities .facilities-outer .card-facilities p {
  margin: 0;
  color: #000;
  font-size: 14px;
}

.accessibility .card-access {
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 65px 25px 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 16px 4px #0000001C;
  text-align: center;
  position: relative;
  border-bottom: 4px solid var(--new-color);
  transform: translateY(0);
  transition: all 0.3s ease;
}

.accessibility .card-access .icon {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -25px;
  border-radius: 100px;
  padding: 15px;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--new-color);
  box-shadow: 0px 4px 16px 4px #0000001C;
}

.accessibility .card-access .icon img {
  width: 100%;
  height: 100%;
  filter: contrast(0) brightness(10);
  object-fit: contain;
}

.accessibility .card-access p {
  color: var(--primary-color);
  font-weight: 600;
  line-height: 1.7;
  font-size: 14px;
  margin-bottom: 0;
  margin-top: 0;
}
.accessibility .card-access:hover{
  transform: translateY(-10px);
}
.community .row{
  background-color: #152e4c;
  border-radius: 25px;
}
.community .section-title{
  padding: 40px 0 40px 40px;
}
.community .image{   
    width: 480px;
    height: 420px;
    position: absolute;
    bottom: 0;
    right: 50px;
}
.community .image img{
      width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

.stats{
  background-position: center;
  background-position: center;
  background-repeat: no-repeat;
}
.stats .card-stats{
  text-align: center;
}
.stats .card-stats img{
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter:contrast(0) brightness(10);
}
.stats .card-stats h4{
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  color: #ffa500;
  padding: 10px 0;
}
.stats .card-stats p{
  color: #fff;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}
.stats .card-stats .stat-number {
    display:inline-block;
    transition:0.4s ease;
    font-weight:700;
    font-size:34px;
}
.card-billing {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    width: 100%;
    height: 100px;
}
.card-billing img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.treatContent-area #contenttab {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px 0 rgba(0,0,0,.05);
    border: 1px solid #ddd;
    display: flex;
    gap: 10px;
    margin-top: 50px;
    width: 100%;
    max-width: 320px;
}

.treatContent-area #contenttab a {
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fbfbfb;
    padding: 14px
}

.treatContent-area #contenttab a.active {
    background: var(--secondary-color);
    border: 1px solid transparent;
    transition: background .3s ease-in-out
}

.treatContent-area .scrollspy-example h4 {
    margin-top: 20px;
    font-weight: 700;
    color: var(--new-color);
    margin-bottom: 20px;
}

.treatContent-area .scrollspy-example img {
    margin: 0
}

.treatContent-area .scrollspy-example .content-box {
    border-bottom: 1px solid #ccc;
    padding: 10px 0
}

.treatContent-area .scrollspy-example .content-box p {
    line-height: 1.8;
    margin-bottom: 15px
}

.treatContent-area .scrollspy-example .content-box:last-child {
    border-bottom: 0;
    padding-bottom: 0
}

.treatContent-area .scrollspy-example .content-box ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 15px;
    padding-left: 10px
}

.treatContent-area .scrollspy-example .content-box ul li {
    padding-left: 30px;
    position: relative;
    line-height: 1.8;
}

.treatContent-area .scrollspy-example .content-box ul li::before {
    content: "\ea51";
    color: var(--secondary-color);
    font-family: boxicons !important;
    position: absolute;
    left: 0;
    top: -2px;
    bottom: 0;
    font-size: 20px;
    display: flex;
    align-items: start
}

.treatContent-area .scrollspy-example .content-box hr {
    margin: 20px 0
}
/* Jab sticky mode on ho */
.is-fixed {
    position: fixed !important;
    top: 70px;
    width: inherit;
}

/* Jab sidebar niche boundary tak pahunch jaye */
.is-bottom {
    position: absolute !important;
    bottom: 0 !important;
    top: auto !important;
}